langflow-base-nightly 0.5.0.dev37__py3-none-any.whl → 0.5.0.dev39__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- langflow/__main__.py +1 -1
- langflow/alembic/versions/0882f9657f22_encrypt_existing_mcp_auth_settings_.py +122 -0
- langflow/alembic/versions/4e5980a44eaa_fix_date_times_again.py +24 -30
- langflow/alembic/versions/58b28437a398_modify_nullable.py +6 -6
- langflow/alembic/versions/79e675cb6752_change_datetime_type.py +24 -30
- langflow/alembic/versions/b2fa308044b5_add_unique_constraints.py +12 -13
- langflow/api/build.py +21 -26
- langflow/api/health_check_router.py +3 -3
- langflow/api/utils.py +3 -3
- langflow/api/v1/callback.py +2 -2
- langflow/api/v1/chat.py +19 -31
- langflow/api/v1/endpoints.py +10 -10
- langflow/api/v1/flows.py +1 -1
- langflow/api/v1/knowledge_bases.py +3 -3
- langflow/api/v1/mcp.py +12 -12
- langflow/api/v1/mcp_projects.py +405 -120
- langflow/api/v1/mcp_utils.py +8 -8
- langflow/api/v1/schemas.py +2 -7
- langflow/api/v1/store.py +1 -1
- langflow/api/v1/validate.py +2 -2
- langflow/api/v1/voice_mode.py +58 -62
- langflow/api/v2/files.py +2 -2
- langflow/api/v2/mcp.py +10 -9
- langflow/base/composio/composio_base.py +21 -2
- langflow/base/data/docling_utils.py +194 -0
- langflow/base/embeddings/aiml_embeddings.py +1 -1
- langflow/base/flow_processing/utils.py +1 -2
- langflow/base/io/__init__.py +0 -1
- langflow/base/langwatch/utils.py +2 -1
- langflow/base/mcp/util.py +49 -47
- langflow/base/prompts/api_utils.py +1 -1
- langflow/base/tools/flow_tool.py +2 -2
- langflow/base/tools/run_flow.py +2 -6
- langflow/components/FAISS/__init__.py +34 -0
- langflow/components/Notion/add_content_to_page.py +2 -2
- langflow/components/Notion/list_database_properties.py +2 -2
- langflow/components/Notion/list_pages.py +2 -2
- langflow/components/Notion/page_content_viewer.py +2 -2
- langflow/components/Notion/update_page_property.py +1 -1
- langflow/components/agentql/agentql_api.py +2 -10
- langflow/components/agents/agent.py +249 -55
- langflow/components/agents/mcp_component.py +14 -14
- langflow/components/anthropic/anthropic.py +5 -4
- langflow/components/assemblyai/assemblyai_get_subtitles.py +2 -2
- langflow/components/assemblyai/assemblyai_lemur.py +2 -2
- langflow/components/assemblyai/assemblyai_list_transcripts.py +2 -2
- langflow/components/assemblyai/assemblyai_poll_transcript.py +2 -2
- langflow/components/assemblyai/assemblyai_start_transcript.py +2 -2
- langflow/components/cassandra/__init__.py +40 -0
- langflow/components/chroma/__init__.py +34 -0
- langflow/components/clickhouse/__init__.py +34 -0
- langflow/components/couchbase/__init__.py +34 -0
- langflow/components/data/file.py +575 -55
- langflow/components/data/url.py +1 -1
- langflow/components/datastax/__init__.py +3 -3
- langflow/components/datastax/astra_assistant_manager.py +3 -3
- langflow/components/datastax/create_assistant.py +1 -2
- langflow/components/deactivated/merge_data.py +1 -2
- langflow/components/deactivated/sub_flow.py +6 -7
- langflow/components/deactivated/vectara_self_query.py +3 -3
- langflow/components/docling/__init__.py +0 -198
- langflow/components/docling/docling_inline.py +1 -1
- langflow/components/elastic/__init__.py +37 -0
- langflow/components/embeddings/text_embedder.py +3 -3
- langflow/components/firecrawl/firecrawl_extract_api.py +2 -9
- langflow/components/google/gmail.py +1 -1
- langflow/components/google/google_generative_ai.py +5 -11
- langflow/components/groq/groq.py +4 -3
- langflow/components/helpers/current_date.py +2 -3
- langflow/components/helpers/memory.py +1 -1
- langflow/components/ibm/watsonx.py +1 -1
- langflow/components/ibm/watsonx_embeddings.py +1 -1
- langflow/components/langwatch/langwatch.py +3 -3
- langflow/components/logic/flow_tool.py +2 -2
- langflow/components/logic/notify.py +1 -1
- langflow/components/logic/run_flow.py +2 -3
- langflow/components/logic/sub_flow.py +4 -5
- langflow/components/mem0/mem0_chat_memory.py +2 -8
- langflow/components/milvus/__init__.py +34 -0
- langflow/components/mongodb/__init__.py +34 -0
- langflow/components/nvidia/nvidia.py +3 -3
- langflow/components/olivya/olivya.py +7 -7
- langflow/components/ollama/ollama.py +9 -6
- langflow/components/perplexity/perplexity.py +3 -13
- langflow/components/pgvector/__init__.py +34 -0
- langflow/components/pinecone/__init__.py +34 -0
- langflow/components/processing/batch_run.py +8 -8
- langflow/components/processing/data_operations.py +2 -2
- langflow/components/processing/merge_data.py +1 -2
- langflow/components/processing/message_to_data.py +2 -3
- langflow/components/processing/parse_json_data.py +1 -1
- langflow/components/prototypes/python_function.py +2 -3
- langflow/components/qdrant/__init__.py +34 -0
- langflow/components/redis/__init__.py +36 -2
- langflow/components/redis/redis.py +75 -29
- langflow/components/redis/redis_chat.py +43 -0
- langflow/components/serpapi/serp.py +1 -1
- langflow/components/supabase/__init__.py +37 -0
- langflow/components/tavily/tavily_extract.py +1 -1
- langflow/components/tavily/tavily_search.py +1 -1
- langflow/components/tools/calculator.py +2 -2
- langflow/components/tools/python_code_structured_tool.py +3 -10
- langflow/components/tools/python_repl.py +2 -2
- langflow/components/tools/searxng.py +3 -3
- langflow/components/tools/serp_api.py +2 -2
- langflow/components/tools/tavily_search_tool.py +2 -2
- langflow/components/tools/yahoo_finance.py +1 -1
- langflow/components/twelvelabs/video_embeddings.py +4 -4
- langflow/components/upstash/__init__.py +34 -0
- langflow/components/vectara/__init__.py +37 -0
- langflow/components/vectorstores/__init__.py +0 -69
- langflow/components/vectorstores/local_db.py +2 -1
- langflow/components/weaviate/__init__.py +34 -0
- langflow/components/yahoosearch/yahoo.py +1 -1
- langflow/components/youtube/trending.py +3 -4
- langflow/custom/attributes.py +2 -1
- langflow/custom/code_parser/code_parser.py +1 -1
- langflow/custom/custom_component/base_component.py +1 -1
- langflow/custom/custom_component/component.py +16 -2
- langflow/custom/dependency_analyzer.py +165 -0
- langflow/custom/directory_reader/directory_reader.py +7 -7
- langflow/custom/directory_reader/utils.py +1 -2
- langflow/custom/utils.py +63 -45
- langflow/events/event_manager.py +1 -1
- langflow/frontend/assets/{SlackIcon-CnvyOamQ.js → SlackIcon-Cr3Q15Px.js} +1 -1
- langflow/frontend/assets/{Wikipedia-nyTEXdr2.js → Wikipedia-GxM5sPdM.js} +1 -1
- langflow/frontend/assets/{Wolfram-BYMQkNSq.js → Wolfram-BN3-VOCA.js} +1 -1
- langflow/frontend/assets/{index-DZTC5pdT.js → index-28oOcafk.js} +1 -1
- langflow/frontend/assets/{index-ChXJpBz4.js → index-2wSXqBtB.js} +1 -1
- langflow/frontend/assets/{index-BB15_iOb.js → index-3wW7BClE.js} +1 -1
- langflow/frontend/assets/{index-DKHNourL.js → index-6pyH3ZJB.js} +1 -1
- langflow/frontend/assets/{index-BvwZfF2i.js → index-AWCSdofD.js} +1 -1
- langflow/frontend/assets/{index-Bvxg4_ux.js → index-B2Zgv_xv.js} +1 -1
- langflow/frontend/assets/{index-Bd6WtbKA.js → index-B2ptVQGM.js} +1 -1
- langflow/frontend/assets/{index-C7QWbnLK.js → index-B3TANVes.js} +1 -1
- langflow/frontend/assets/{index-CpvYQ0ug.js → index-B4yCvZKV.js} +1 -1
- langflow/frontend/assets/{index-Dg-63Si_.js → index-BC65VuWx.js} +1 -1
- langflow/frontend/assets/{index-C6jri9Wm.js → index-BCDSei1q.js} +1 -1
- langflow/frontend/assets/{index-OazXJdEl.js → index-BJy50PvP.js} +1 -1
- langflow/frontend/assets/{index-CWdkbVsd.js → index-BKseQQ2I.js} +1 -1
- langflow/frontend/assets/{index-CaQ_H9ww.js → index-BLTxEeTi.js} +1 -1
- langflow/frontend/assets/{index-DGRMNe9n.js → index-BRg1f4Mu.js} +1 -1
- langflow/frontend/assets/{index-D8lOi1GI.js → index-BS8Vo8nc.js} +1 -1
- langflow/frontend/assets/{index-B748uLP1.js → index-BTKOU4xC.js} +1 -1
- langflow/frontend/assets/{index-Dqd4RjYA.js → index-BVwJDmw-.js} +1 -1
- langflow/frontend/assets/{index-DbMFlnHE.js → index-BWYuQ2Sj.js} +1 -1
- langflow/frontend/assets/{index-BEMw2Np8.js → index-BWdLILDG.js} +1 -1
- langflow/frontend/assets/{index-BmX5CoED.js → index-BZcw4827.js} +1 -1
- langflow/frontend/assets/{index-CyPvTB63.js → index-Bbi87Ve4.js} +1 -1
- langflow/frontend/assets/{index-BTEW9e8P.js → index-Bf0IYKLd.js} +1 -1
- langflow/frontend/assets/{index-BZgXW854.js → index-Bg5nrMRh.js} +1 -1
- langflow/frontend/assets/{index-BBxAPk1y.js → index-BiC280Nx.js} +1 -1
- langflow/frontend/assets/{index-BR0bkVqX.js → index-BiKKN6FR.js} +1 -1
- langflow/frontend/assets/{index-CTrt1Q_j.js → index-Bief6eyJ.js} +1 -1
- langflow/frontend/assets/{index-D5_DsUJc.js → index-BkXec1Yf.js} +1 -1
- langflow/frontend/assets/{index-CZQ9rXNa.js → index-Bnl6QHtP.js} +1 -1
- langflow/frontend/assets/{index-BChjg6Az.js → index-BpxbUiZD.js} +1979 -1979
- langflow/frontend/assets/{index-BOeo01QB.js → index-BrJV8psX.js} +1 -1
- langflow/frontend/assets/{index-DysKpOuj.js → index-BwLWcUXL.js} +1 -1
- langflow/frontend/assets/{index-Bnqod3vk.js → index-Bx7dBY26.js} +1 -1
- langflow/frontend/assets/{index-D3DDfngy.js → index-C-EdnFdA.js} +1 -1
- langflow/frontend/assets/{index-Bsa0xZyL.js → index-C-Xfg4cD.js} +1 -1
- langflow/frontend/assets/{index-BTrsh9LS.js → index-C1f2wMat.js} +1 -1
- langflow/frontend/assets/index-C1xroOlH.css +1 -0
- langflow/frontend/assets/{index-B1YN7oMV.js → index-C3KequvP.js} +1 -1
- langflow/frontend/assets/{index-DzW2mfkK.js → index-C3ZjKdCD.js} +1 -1
- langflow/frontend/assets/{index-ajRge-Mg.js → index-C3l0zYn0.js} +1 -1
- langflow/frontend/assets/{index-cvZdgWHQ.js → index-C3yvArUT.js} +1 -1
- langflow/frontend/assets/{index-C-2hghRJ.js → index-C9Cxnkl8.js} +1 -1
- langflow/frontend/assets/{index-BhIOhlCH.js → index-CBc8fEAE.js} +1 -1
- langflow/frontend/assets/{index-B3Sur4Z3.js → index-CBvrGgID.js} +1 -1
- langflow/frontend/assets/{index-CCePCqkT.js → index-CD-PqGCY.js} +1 -1
- langflow/frontend/assets/{index-8yMsjVV2.js → index-CGO1CiUr.js} +1 -1
- langflow/frontend/assets/{index-DF5VwgU6.js → index-CH5UVA9b.js} +1 -1
- langflow/frontend/assets/{index-dcnYpT9N.js → index-CLJeJYjH.js} +1 -1
- langflow/frontend/assets/{index-DfxYyS3M.js → index-CMZ79X-Y.js} +1 -1
- langflow/frontend/assets/{index-ya2uXE8v.js → index-CMzfJKiW.js} +1 -1
- langflow/frontend/assets/{index-DkelbYy7.js → index-CNw1H-Wc.js} +1 -1
- langflow/frontend/assets/{index-DytJENYD.js → index-CPHEscq9.js} +1 -1
- langflow/frontend/assets/{index-Bv8h2Z-q.js → index-CRPKJZw9.js} +1 -1
- langflow/frontend/assets/{index-D-9TI74R.js → index-CRPyCfYy.js} +1 -1
- langflow/frontend/assets/{index-BLGYN-9b.js → index-CRcMqCIj.js} +1 -1
- langflow/frontend/assets/{index-tVYiABdp.js → index-CUVDws8F.js} +1 -1
- langflow/frontend/assets/{index-CpcbQZIF.js → index-CVWQfRYZ.js} +1 -1
- langflow/frontend/assets/{index-DPCzHdsC.js → index-CVl6MbaM.js} +1 -1
- langflow/frontend/assets/{index-DkXy1WFo.js → index-CVwWoX99.js} +1 -1
- langflow/frontend/assets/{index-DK1Ptcc4.js → index-CWPzZtSx.js} +1 -1
- langflow/frontend/assets/{index-DHq8TQPB.js → index-CZqRL9DE.js} +1 -1
- langflow/frontend/assets/{index-DnEGCgih.js → index-CdIf07Rw.js} +1 -1
- langflow/frontend/assets/{index-BIQQCMvz.js → index-Cewy7JZE.js} +1 -1
- langflow/frontend/assets/{index-D8GJngXa.js → index-CfwLpbMM.js} +1 -1
- langflow/frontend/assets/{index-C_TdzfAn.js → index-CiR1dxI4.js} +1 -1
- langflow/frontend/assets/{index-BzL_EoKd.js → index-CiixOzDG.js} +1 -1
- langflow/frontend/assets/{index-Boso-xEw.js → index-ClsuDmR6.js} +1 -1
- langflow/frontend/assets/{index-8WdfSTTz.js → index-CmEYYRN1.js} +1 -1
- langflow/frontend/assets/{index-FUxmznS-.js → index-Co20d-eQ.js} +1 -1
- langflow/frontend/assets/{index-C82JjCPD.js → index-CpzXS6md.js} +1 -1
- langflow/frontend/assets/{index-DIDDfmlJ.js → index-Cqpzl1J4.js} +1 -1
- langflow/frontend/assets/{index-_UcqeEjm.js → index-CtVIONP2.js} +1 -1
- langflow/frontend/assets/{index-Gkrq-vzm.js → index-CuFXdTx4.js} +1 -1
- langflow/frontend/assets/{index-WPFivmdQ.js → index-Cyd2HtHK.js} +1 -1
- langflow/frontend/assets/{index-BFp_O-c9.js → index-D-1tA8Dt.js} +1 -1
- langflow/frontend/assets/{index-BqPpO6KG.js → index-D-KY3kkq.js} +1 -1
- langflow/frontend/assets/{index-Db71w3lq.js → index-D-_B1a8v.js} +1 -1
- langflow/frontend/assets/{index-BIzTEqFh.js → index-D14EWPyZ.js} +1 -1
- langflow/frontend/assets/{index-BbJjt5m4.js → index-D2N3l-cw.js} +1 -1
- langflow/frontend/assets/{index-DCRk27Tp.js → index-D5ETnvJa.js} +1 -1
- langflow/frontend/assets/{index-CvcEzq4x.js → index-D7kquVv2.js} +1 -1
- langflow/frontend/assets/{index-Q9vDw0Xl.js → index-DA6-bvgN.js} +1 -1
- langflow/frontend/assets/{index-l7bzB8Ex.js → index-DDWBeudF.js} +1 -1
- langflow/frontend/assets/{index-BCCGvqay.js → index-DDcMAaG4.js} +1 -1
- langflow/frontend/assets/{index-pCQ_yw8m.js → index-DHgomBdh.js} +1 -1
- langflow/frontend/assets/{index-BxEuHa76.js → index-DJP-ss47.js} +1 -1
- langflow/frontend/assets/{index-BbRm7beF.js → index-DQ7VYqQc.js} +1 -1
- langflow/frontend/assets/{index-Car-zdor.js → index-DTqbvGC0.js} +1 -1
- langflow/frontend/assets/{index-BRxvproo.js → index-DUpri6zF.js} +1 -1
- langflow/frontend/assets/{index-BQ6NUdMY.js → index-DV3utZDZ.js} +1 -1
- langflow/frontend/assets/{index-DjQETUy8.js → index-DXRfN4HV.js} +1 -1
- langflow/frontend/assets/{index-DfngcQxO.js → index-Db9dYSzy.js} +1 -1
- langflow/frontend/assets/{index-rXV1G1aB.js → index-DdtMEn6I.js} +1 -1
- langflow/frontend/assets/{index-DmMDPoi0.js → index-DfDhMHgQ.js} +1 -1
- langflow/frontend/assets/{index-DJB12jIC.js → index-Dfe7qfvf.js} +1 -1
- langflow/frontend/assets/{index-C_veJlEb.js → index-DhtZ5hx8.js} +1 -1
- langflow/frontend/assets/{index-CQMoqLAu.js → index-DiB3CTo8.js} +1 -1
- langflow/frontend/assets/{index-DVlceYFD.js → index-DiGWASY5.js} +1 -1
- langflow/frontend/assets/{index-Du_18NCU.js → index-Dl5amdBz.js} +1 -1
- langflow/frontend/assets/{index-CYDAYm-i.js → index-DlD4dXlZ.js} +1 -1
- langflow/frontend/assets/{index-CLPdN-q6.js → index-DmeiHnfl.js} +1 -1
- langflow/frontend/assets/index-Dmu-X5-4.js +1 -0
- langflow/frontend/assets/{index-BzEUlaw_.js → index-DpVWih90.js} +1 -1
- langflow/frontend/assets/{index-D6PSjHxP.js → index-DrDrcajG.js} +1 -1
- langflow/frontend/assets/{index-Dq5ilsem.js → index-Du-pc0KE.js} +1 -1
- langflow/frontend/assets/{index-CYe8Ipef.js → index-DwPkMTaY.js} +1 -1
- langflow/frontend/assets/{index-BVEZDXxS.js → index-DwQEZe3C.js} +1 -1
- langflow/frontend/assets/{index-BvT7L317.js → index-DyJFTK24.js} +1 -1
- langflow/frontend/assets/{index-HK3bVMYA.js → index-J38wh62w.js} +1 -1
- langflow/frontend/assets/{index-CCxGSSTT.js → index-Kwdl-e29.js} +1 -1
- langflow/frontend/assets/{index-BOB_zsjl.js → index-OwPvCmpW.js} +1 -1
- langflow/frontend/assets/{index-Dsps-jKu.js → index-Tw3Os-DN.js} +1 -1
- langflow/frontend/assets/{index-CFDvOtKC.js → index-X0guhYF8.js} +1 -1
- langflow/frontend/assets/{index-BX5D-USa.js → index-dJWNxIRH.js} +1 -1
- langflow/frontend/assets/{index-BRYjyhAd.js → index-dcJ8-agu.js} +1 -1
- langflow/frontend/assets/{index-Ui4xUImO.js → index-eo2mAtL-.js} +1 -1
- langflow/frontend/assets/{index-CxvP91st.js → index-hG24k5xJ.js} +1 -1
- langflow/frontend/assets/{index-CVQmT7ZL.js → index-h_aSZHf3.js} +1 -1
- langflow/frontend/assets/{index-BIXaW2aY.js → index-hbndqB9B.js} +1 -1
- langflow/frontend/assets/{index-DIkNW9Cd.js → index-iJngutFo.js} +1 -1
- langflow/frontend/assets/{index-BWmPX4iQ.js → index-lTpteg8t.js} +1 -1
- langflow/frontend/assets/{index-xuIrH2Dq.js → index-lZX9AvZW.js} +1 -1
- langflow/frontend/assets/{index-yCHsaqs8.js → index-m8QA6VNM.js} +1 -1
- langflow/frontend/assets/{index-BkPYpfgw.js → index-o0D2S7xW.js} +1 -1
- langflow/frontend/assets/{index-DpClkXIV.js → index-ovFJ_0J6.js} +1 -1
- langflow/frontend/assets/{index-CmplyEaa.js → index-pYJJOcma.js} +1 -1
- langflow/frontend/assets/{index-CJo_cyWW.js → index-sI75DsdM.js} +1 -1
- langflow/frontend/assets/{index-nVwHLjuV.js → index-xvFOmxx4.js} +1 -1
- langflow/frontend/assets/{index-LbYjHKkn.js → index-z3SRY-mX.js} +1 -1
- langflow/frontend/assets/lazyIconImports-D97HEZkE.js +2 -0
- langflow/frontend/assets/{use-post-add-user-BrBYH9eR.js → use-post-add-user-C0MdTpQ5.js} +1 -1
- langflow/frontend/index.html +2 -2
- langflow/graph/edge/base.py +2 -3
- langflow/graph/graph/base.py +15 -13
- langflow/graph/graph/constants.py +3 -0
- langflow/graph/utils.py +6 -6
- langflow/graph/vertex/base.py +4 -5
- langflow/graph/vertex/param_handler.py +1 -1
- langflow/graph/vertex/vertex_types.py +2 -2
- langflow/helpers/flow.py +1 -1
- langflow/initial_setup/setup.py +32 -30
- langflow/initial_setup/starter_projects/Basic Prompt Chaining.json +26 -0
- langflow/initial_setup/starter_projects/Basic Prompting.json +26 -0
- langflow/initial_setup/starter_projects/Blog Writer.json +58 -2
- langflow/initial_setup/starter_projects/Custom Component Generator.json +37 -2
- langflow/initial_setup/starter_projects/Document Q&A.json +27 -1
- langflow/initial_setup/starter_projects/Financial Report Parser.json +43 -0
- langflow/initial_setup/starter_projects/Hybrid Search RAG.json +83 -1
- langflow/initial_setup/starter_projects/Image Sentiment Analysis.json +43 -0
- langflow/initial_setup/starter_projects/Instagram Copywriter.json +51 -3
- langflow/initial_setup/starter_projects/Invoice Summarizer.json +40 -1
- langflow/initial_setup/starter_projects/Knowledge Ingestion.json +73 -2
- langflow/initial_setup/starter_projects/Knowledge Retrieval.json +63 -0
- langflow/initial_setup/starter_projects/Market Research.json +59 -3
- langflow/initial_setup/starter_projects/Meeting Summary.json +101 -6
- langflow/initial_setup/starter_projects/Memory Chatbot.json +37 -2
- langflow/initial_setup/starter_projects/News Aggregator.json +63 -3
- langflow/initial_setup/starter_projects/Nvidia Remix.json +69 -4
- langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +48 -1
- langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json +44 -1
- langflow/initial_setup/starter_projects/Price Deal Finder.json +57 -5
- langflow/initial_setup/starter_projects/Research Agent.json +42 -3
- langflow/initial_setup/starter_projects/Research Translation Loop.json +66 -0
- langflow/initial_setup/starter_projects/SEO Keyword Generator.json +17 -0
- langflow/initial_setup/starter_projects/SaaS Pricing.json +27 -1
- langflow/initial_setup/starter_projects/Search agent.json +40 -1
- langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +76 -7
- langflow/initial_setup/starter_projects/Simple Agent.json +59 -3
- langflow/initial_setup/starter_projects/Social Media Agent.json +77 -1
- langflow/initial_setup/starter_projects/Text Sentiment Analysis.json +35 -1
- langflow/initial_setup/starter_projects/Travel Planning Agents.json +51 -3
- langflow/initial_setup/starter_projects/Twitter Thread Generator.json +80 -0
- langflow/initial_setup/starter_projects/Vector Store RAG.json +110 -3
- langflow/initial_setup/starter_projects/Youtube Analysis.json +84 -3
- langflow/initial_setup/starter_projects/vector_store_rag.py +1 -1
- langflow/interface/components.py +23 -22
- langflow/interface/initialize/loading.py +5 -5
- langflow/interface/run.py +1 -1
- langflow/interface/utils.py +1 -1
- langflow/io/__init__.py +0 -1
- langflow/langflow_launcher.py +1 -1
- langflow/load/load.py +2 -7
- langflow/logging/__init__.py +0 -1
- langflow/logging/logger.py +191 -115
- langflow/logging/setup.py +1 -1
- langflow/main.py +37 -52
- langflow/memory.py +7 -7
- langflow/middleware.py +1 -1
- langflow/processing/process.py +6 -3
- langflow/schema/artifact.py +2 -2
- langflow/schema/data.py +10 -2
- langflow/schema/dataframe.py +1 -1
- langflow/schema/message.py +1 -1
- langflow/serialization/serialization.py +1 -1
- langflow/services/auth/mcp_encryption.py +104 -0
- langflow/services/auth/utils.py +2 -2
- langflow/services/cache/disk.py +1 -1
- langflow/services/cache/service.py +3 -3
- langflow/services/database/models/flow/model.py +2 -7
- langflow/services/database/models/transactions/crud.py +2 -2
- langflow/services/database/models/user/crud.py +2 -2
- langflow/services/database/service.py +8 -8
- langflow/services/database/utils.py +6 -5
- langflow/services/deps.py +2 -3
- langflow/services/factory.py +1 -1
- langflow/services/flow/flow_runner.py +7 -12
- langflow/services/job_queue/service.py +16 -15
- langflow/services/manager.py +3 -4
- langflow/services/settings/auth.py +1 -1
- langflow/services/settings/base.py +3 -8
- langflow/services/settings/feature_flags.py +1 -1
- langflow/services/settings/manager.py +1 -1
- langflow/services/settings/utils.py +1 -1
- langflow/services/socket/__init__.py +0 -1
- langflow/services/socket/service.py +3 -3
- langflow/services/socket/utils.py +4 -4
- langflow/services/state/service.py +1 -2
- langflow/services/storage/factory.py +1 -1
- langflow/services/storage/local.py +9 -8
- langflow/services/storage/s3.py +11 -10
- langflow/services/store/service.py +3 -3
- langflow/services/store/utils.py +3 -2
- langflow/services/task/temp_flow_cleanup.py +7 -7
- langflow/services/telemetry/service.py +10 -10
- langflow/services/tracing/arize_phoenix.py +2 -2
- langflow/services/tracing/langfuse.py +1 -1
- langflow/services/tracing/langsmith.py +1 -1
- langflow/services/tracing/langwatch.py +1 -1
- langflow/services/tracing/opik.py +1 -1
- langflow/services/tracing/service.py +25 -6
- langflow/services/tracing/traceloop.py +245 -0
- langflow/services/utils.py +7 -7
- langflow/services/variable/kubernetes.py +3 -3
- langflow/services/variable/kubernetes_secrets.py +2 -1
- langflow/services/variable/service.py +5 -5
- langflow/utils/component_utils.py +9 -6
- langflow/utils/util.py +5 -5
- langflow/utils/validate.py +3 -3
- langflow/utils/voice_utils.py +2 -2
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/METADATA +2 -1
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/RECORD +393 -374
- langflow/components/vectorstores/redis.py +0 -89
- langflow/frontend/assets/index-C26RqKWL.js +0 -1
- langflow/frontend/assets/index-CqS7zir1.css +0 -1
- langflow/frontend/assets/lazyIconImports-t6wEndt1.js +0 -2
- /langflow/components/{vectorstores → FAISS}/faiss.py +0 -0
- /langflow/components/{vectorstores → cassandra}/cassandra.py +0 -0
- /langflow/components/{datastax/cassandra.py → cassandra/cassandra_chat.py} +0 -0
- /langflow/components/{vectorstores → cassandra}/cassandra_graph.py +0 -0
- /langflow/components/{vectorstores → chroma}/chroma.py +0 -0
- /langflow/components/{vectorstores → clickhouse}/clickhouse.py +0 -0
- /langflow/components/{vectorstores → couchbase}/couchbase.py +0 -0
- /langflow/components/{vectorstores → datastax}/astradb.py +0 -0
- /langflow/components/{vectorstores → datastax}/astradb_graph.py +0 -0
- /langflow/components/{vectorstores → datastax}/graph_rag.py +0 -0
- /langflow/components/{vectorstores → datastax}/hcd.py +0 -0
- /langflow/components/{vectorstores → elastic}/elasticsearch.py +0 -0
- /langflow/components/{vectorstores → elastic}/opensearch.py +0 -0
- /langflow/components/{vectorstores → milvus}/milvus.py +0 -0
- /langflow/components/{vectorstores → mongodb}/mongodb_atlas.py +0 -0
- /langflow/components/{vectorstores → pgvector}/pgvector.py +0 -0
- /langflow/components/{vectorstores → pinecone}/pinecone.py +0 -0
- /langflow/components/{vectorstores → qdrant}/qdrant.py +0 -0
- /langflow/components/{vectorstores → supabase}/supabase.py +0 -0
- /langflow/components/{vectorstores → upstash}/upstash.py +0 -0
- /langflow/components/{vectorstores → vectara}/vectara.py +0 -0
- /langflow/components/{vectorstores → vectara}/vectara_rag.py +0 -0
- /langflow/components/{vectorstores → weaviate}/weaviate.py +0 -0
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/WHEEL +0 -0
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/entry_points.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as e,c as l,r as s}from"./index-BChjg6Az.js";const t=({className:r,...i})=>e.jsxs("svg",{className:l("dark:invert",r),width:"225",height:"225",viewBox:"0 0 225 225",fill:"none",xmlns:"http://www.w3.org/2000/svg",...i,children:[e.jsx("mask",{id:"mask0_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask0_13070_4340)",children:[e.jsx("g",{filter:"url(#filter0_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.882 -221.746 120.117 -119.206C137.15 -52.6304 77.7037 -62.5848 83.7299 -25.8396C87.9511 -0.101322 88.9044 19.4797 85.795 34.529C82.048 52.6636 80.9887 83.384 89.784 99.6795C104.975 127.824 115.931 158.366 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter1_f_13070_4340)",children:e.jsx("path",{d:"M-42.7886 -29.6695C-26.1866 -27.9249 -3.61291 -21.6434 28.8941 -7.51849C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-56.6506 157.189 5.60256 124.472 -60.9868 48.8517C-77.0297 30.6332 -66.9309 -32.2064 -42.7886 -29.6695Z",fill:"#84DBFF"})}),e.jsx("g",{filter:"url(#filter2_f_13070_4340)",children:e.jsx("path",{d:"M211.54 319.622C294.158 280.076 145.824 -6.64398 169.846 87.2493C185.443 148.21 131.01 139.095 136.528 172.742C140.074 194.365 141.101 211.242 139.048 224.523C136.218 242.823 135.097 274.442 143.746 290.816C156.852 315.632 167.858 340.531 211.54 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter3_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8499 113.382 104.046 88.866C137.935 72.949 140.641 108.159 159.807 101.321C164.007 99.8228 167.922 98.5641 171.584 97.5545C190.109 92.4472 233.488 87.3544 242.919 70.612C247.043 63.29 246.735 53.9698 235.875 39.3835Z",fill:"#FF4CE9"})}),e.jsx("g",{filter:"url(#filter4_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8296 204.469 25.3558 247.288 57.8261 238.086C79.9207 231.825 96.7819 228.505 109.681 228.432C125.904 228.34 150.315 227.197 164.296 218.969C190.597 203.492 221.619 192.136 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M-16.6948 6.97169C-16.6948 -6.15092 -6.05688 -16.7888 7.06569 -16.7888H204.33C217.452 -16.7888 228.09 -6.15092 228.09 6.9717V215.178C228.09 228.301 217.452 238.939 204.33 238.939H7.0657C-6.05688 238.939 -16.6948 228.301 -16.6948 215.178V6.97169Z",fill:"white"})]}),e.jsx("mask",{id:"mask1_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask1_13070_4340)",children:[e.jsx("g",{filter:"url(#filter5_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.8815 -221.746 120.116 -119.206C137.15 -52.6303 77.7031 -62.5847 83.7294 -25.8395C92.2696 26.2346 87.4336 53.1043 62.6367 68.2335C102.986 89.1354 93.4683 169.118 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter6_f_13070_4340)",children:e.jsx("path",{d:"M-126.644 -9.89283C-75.224 -3.16423 -93.0002 -60.4838 28.8942 -7.51843C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-12.7415 153.667 27.2247 108.648 -126.644 -9.89283Z",fill:"#3CC6FF"})}),e.jsx("g",{filter:"url(#filter7_f_13070_4340)",children:e.jsx("path",{d:"M211.541 319.622C294.159 280.076 145.825 -6.64398 169.848 87.2493C185.445 148.21 131.011 139.095 136.529 172.742C144.349 220.425 139.921 245.028 117.215 258.882C154.162 278.021 145.447 351.259 211.541 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter8_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8498 113.382 104.046 88.8661C137.935 72.9491 140.641 108.159 159.807 101.321C186.968 91.6309 202.245 91.9637 213.862 104.887C219.721 79.6947 264.53 77.8708 235.875 39.3835Z",fill:"#F900DA"})}),e.jsx("g",{filter:"url(#filter9_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8295 204.469 25.3557 247.288 57.8261 238.086C103.842 225.046 127.157 224.764 139.263 240.002C159.443 209.014 229.073 204.773 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M229.228 -54.4146H-72.6978V254.311H229.228V-54.4146Z",fill:"#090F1D"})]}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M64.3116 145.981C62.6561 145.981 60.9903 145.454 59.5831 144.377C56.1893 141.76 55.5478 136.886 58.1656 133.493L89.1338 93.2431C90.3961 91.598 92.2689 90.5322 94.3176 90.2736C96.4077 90.0045 98.4564 90.584 100.081 91.8773L129.259 114.796L154.785 81.8615C157.413 78.4574 162.276 77.8263 165.67 80.4751C169.064 83.1032 169.684 87.9766 167.056 91.36L136.74 130.471C135.478 132.106 133.615 133.172 131.566 133.42C129.497 133.699 127.448 133.099 125.814 131.827L96.656 108.919L70.468 142.95C68.9367 144.936 66.6397 145.981 64.3116 145.981Z",fill:"white"}),e.jsxs("defs",{children:[e.jsxs("filter",{id:"filter0_f_13070_4340",x:"-9.69949",y:"-232.433",width:"295.688",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter1_f_13070_4340",x:"-393.791",y:"-170.9",width:"631.774",height:"527.092",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter2_f_13070_4340",x:"51.233",y:"-16.4296",width:"270.498",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter3_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.143",height:"243.969",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter4_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"262.778",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter5_f_13070_4340",x:"-30.0833",y:"-232.433",width:"316.072",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter6_f_13070_4340",x:"-393.791",y:"-171.355",width:"631.774",height:"527.546",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter7_f_13070_4340",x:"32.3145",y:"-16.4296",width:"289.417",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter8_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.142",height:"246.642",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter9_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"263.378",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]})]})]}),n=s.forwardRef((r,i)=>e.jsx(t,{ref:i,...r}));export{n as AIMLIcon};
|
|
1
|
+
import{j as e,c as l,r as s}from"./index-BpxbUiZD.js";const t=({className:r,...i})=>e.jsxs("svg",{className:l("dark:invert",r),width:"225",height:"225",viewBox:"0 0 225 225",fill:"none",xmlns:"http://www.w3.org/2000/svg",...i,children:[e.jsx("mask",{id:"mask0_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask0_13070_4340)",children:[e.jsx("g",{filter:"url(#filter0_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.882 -221.746 120.117 -119.206C137.15 -52.6304 77.7037 -62.5848 83.7299 -25.8396C87.9511 -0.101322 88.9044 19.4797 85.795 34.529C82.048 52.6636 80.9887 83.384 89.784 99.6795C104.975 127.824 115.931 158.366 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter1_f_13070_4340)",children:e.jsx("path",{d:"M-42.7886 -29.6695C-26.1866 -27.9249 -3.61291 -21.6434 28.8941 -7.51849C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-56.6506 157.189 5.60256 124.472 -60.9868 48.8517C-77.0297 30.6332 -66.9309 -32.2064 -42.7886 -29.6695Z",fill:"#84DBFF"})}),e.jsx("g",{filter:"url(#filter2_f_13070_4340)",children:e.jsx("path",{d:"M211.54 319.622C294.158 280.076 145.824 -6.64398 169.846 87.2493C185.443 148.21 131.01 139.095 136.528 172.742C140.074 194.365 141.101 211.242 139.048 224.523C136.218 242.823 135.097 274.442 143.746 290.816C156.852 315.632 167.858 340.531 211.54 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter3_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8499 113.382 104.046 88.866C137.935 72.949 140.641 108.159 159.807 101.321C164.007 99.8228 167.922 98.5641 171.584 97.5545C190.109 92.4472 233.488 87.3544 242.919 70.612C247.043 63.29 246.735 53.9698 235.875 39.3835Z",fill:"#FF4CE9"})}),e.jsx("g",{filter:"url(#filter4_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8296 204.469 25.3558 247.288 57.8261 238.086C79.9207 231.825 96.7819 228.505 109.681 228.432C125.904 228.34 150.315 227.197 164.296 218.969C190.597 203.492 221.619 192.136 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M-16.6948 6.97169C-16.6948 -6.15092 -6.05688 -16.7888 7.06569 -16.7888H204.33C217.452 -16.7888 228.09 -6.15092 228.09 6.9717V215.178C228.09 228.301 217.452 238.939 204.33 238.939H7.0657C-6.05688 238.939 -16.6948 228.301 -16.6948 215.178V6.97169Z",fill:"white"})]}),e.jsx("mask",{id:"mask1_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask1_13070_4340)",children:[e.jsx("g",{filter:"url(#filter5_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.8815 -221.746 120.116 -119.206C137.15 -52.6303 77.7031 -62.5847 83.7294 -25.8395C92.2696 26.2346 87.4336 53.1043 62.6367 68.2335C102.986 89.1354 93.4683 169.118 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter6_f_13070_4340)",children:e.jsx("path",{d:"M-126.644 -9.89283C-75.224 -3.16423 -93.0002 -60.4838 28.8942 -7.51843C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-12.7415 153.667 27.2247 108.648 -126.644 -9.89283Z",fill:"#3CC6FF"})}),e.jsx("g",{filter:"url(#filter7_f_13070_4340)",children:e.jsx("path",{d:"M211.541 319.622C294.159 280.076 145.825 -6.64398 169.848 87.2493C185.445 148.21 131.011 139.095 136.529 172.742C144.349 220.425 139.921 245.028 117.215 258.882C154.162 278.021 145.447 351.259 211.541 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter8_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8498 113.382 104.046 88.8661C137.935 72.9491 140.641 108.159 159.807 101.321C186.968 91.6309 202.245 91.9637 213.862 104.887C219.721 79.6947 264.53 77.8708 235.875 39.3835Z",fill:"#F900DA"})}),e.jsx("g",{filter:"url(#filter9_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8295 204.469 25.3557 247.288 57.8261 238.086C103.842 225.046 127.157 224.764 139.263 240.002C159.443 209.014 229.073 204.773 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M229.228 -54.4146H-72.6978V254.311H229.228V-54.4146Z",fill:"#090F1D"})]}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M64.3116 145.981C62.6561 145.981 60.9903 145.454 59.5831 144.377C56.1893 141.76 55.5478 136.886 58.1656 133.493L89.1338 93.2431C90.3961 91.598 92.2689 90.5322 94.3176 90.2736C96.4077 90.0045 98.4564 90.584 100.081 91.8773L129.259 114.796L154.785 81.8615C157.413 78.4574 162.276 77.8263 165.67 80.4751C169.064 83.1032 169.684 87.9766 167.056 91.36L136.74 130.471C135.478 132.106 133.615 133.172 131.566 133.42C129.497 133.699 127.448 133.099 125.814 131.827L96.656 108.919L70.468 142.95C68.9367 144.936 66.6397 145.981 64.3116 145.981Z",fill:"white"}),e.jsxs("defs",{children:[e.jsxs("filter",{id:"filter0_f_13070_4340",x:"-9.69949",y:"-232.433",width:"295.688",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter1_f_13070_4340",x:"-393.791",y:"-170.9",width:"631.774",height:"527.092",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter2_f_13070_4340",x:"51.233",y:"-16.4296",width:"270.498",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter3_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.143",height:"243.969",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter4_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"262.778",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter5_f_13070_4340",x:"-30.0833",y:"-232.433",width:"316.072",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter6_f_13070_4340",x:"-393.791",y:"-171.355",width:"631.774",height:"527.546",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter7_f_13070_4340",x:"32.3145",y:"-16.4296",width:"289.417",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter8_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.142",height:"246.642",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter9_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"263.378",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]})]})]}),n=s.forwardRef((r,i)=>e.jsx(t,{ref:i,...r}));export{n as AIMLIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as l,r as c}from"./index-
|
|
1
|
+
import{j as l,r as c}from"./index-BpxbUiZD.js";const h=s=>l.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 87.3 78",xmlns:"http://www.w3.org/2000/svg",...s,children:[l.jsx("path",{d:"m6.6 66.85 3.85 6.65c.8 1.4 1.95 2.5 3.3 3.3l13.75-23.8h-27.5c0 1.55.4 3.1 1.2 4.5z",fill:"#0066da"}),l.jsx("path",{d:"m43.65 25-13.75-23.8c-1.35.8-2.5 1.9-3.3 3.3l-25.4 44a9.06 9.06 0 0 0 -1.2 4.5h27.5z",fill:"#00ac47"}),l.jsx("path",{d:"m73.55 76.8c1.35-.8 2.5-1.9 3.3-3.3l1.6-2.75 7.65-13.25c.8-1.4 1.2-2.95 1.2-4.5h-27.502l5.852 11.5z",fill:"#ea4335"}),l.jsx("path",{d:"m43.65 25 13.75-23.8c-1.35-.8-2.9-1.2-4.5-1.2h-18.5c-1.6 0-3.15.45-4.5 1.2z",fill:"#00832d"}),l.jsx("path",{d:"m59.8 53h-32.3l-13.75 23.8c1.35.8 2.9 1.2 4.5 1.2h50.8c1.6 0 3.15-.45 4.5-1.2z",fill:"#2684fc"}),l.jsx("path",{d:"m73.4 26.5-12.7-22c-.8-1.4-1.95-2.5-3.3-3.3l-13.75 23.8 16.15 28h27.45c0-1.55-.4-3.1-1.2-4.5z",fill:"#ffba00"})]}),e=c.forwardRef((s,t)=>l.jsx(h,{ref:t,...s}));export{e as GoogleDriveIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as s,r as e}from"./index-
|
|
1
|
+
import{j as s,r as e}from"./index-BpxbUiZD.js";const r=l=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"168.419 120.023 131.984 152.407",width:"1em",height:"1em",...l,children:[s.jsx("defs",{children:s.jsxs("linearGradient",{id:"QDrant_svg__a",x1:62.128,x2:41.202,y1:105.54,y2:105.54,gradientTransform:"translate(168.42 120.023)",gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#FF3364"}),s.jsx("stop",{offset:1,stopColor:"#C91540",stopOpacity:0})]})}),s.jsxs("g",{fillRule:"evenodd",clipRule:"evenodd",children:[s.jsx("path",{fill:"#24386c",d:"m272.21 260.113-3.038-83.784-5.504-22.089 36.735 3.889v101.35l-22.44 12.95z"}),s.jsx("path",{fill:"#7589be",d:"m300.4 158.123-22.44 12.96-46.308-10.158-54.203 22.069-9.03-24.871 32.99-19.05 33-19.05 32.99 19.05z"}),s.jsx("path",{fill:"#b2bfe8",d:"m168.42 158.123 22.44 12.96 13.008 38.686 43.921 35.142-13.378 27.512-33-19.051-32.99-19.05v-76.2"}),s.jsx("path",{fill:"#24386c",d:"m249.288 224.583-14.877 21.932v25.91l21.11-12.18 10.877-16.242"}),s.jsx("path",{fill:"#7589be",d:"m234.42 220.613-21.119-36.565 4.55-12.119 17.292-8.384 20.378 20.504z"}),s.jsx("path",{fill:"#b2bfe8",d:"m213.301 184.045 21.11 12.18v24.38l-19.524.84-11.81-15.08 10.224-22.32"}),s.jsx("path",{fill:"#24386c",d:"m234.411 196.223 21.11-12.179 14.367 23.922-17.386 14.365-18.09-1.727z"}),s.jsx("path",{fill:"#dc244c",d:"m255.521 260.243 22.44 12.181v-101.34l-21.78-12.57-21.77-12.57-21.78 12.57-21.77 12.57v50.289l21.77 12.57 21.78 12.571 21.11-12.191zm0-51.83-21.11 12.19-21.11-12.19v-24.37l21.11-12.19 21.11 12.19v24.37"})]}),s.jsx("path",{fill:"url(#QDrant_svg__a)",d:"M234.421 246.523v-25.914l-21-12.086v25.871l21 12.129Z"})]}),i=e.forwardRef((l,t)=>s.jsx(r,{ref:t,...l}));export{i as QDrantIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as i,r as t}from"./index-
|
|
1
|
+
import{j as i,r as t}from"./index-BpxbUiZD.js";const l=s=>i.jsxs("svg",{viewBox:"12 33 72 29",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[i.jsxs("g",{clipPath:"url(#clip0_702_1449)",children:[i.jsx("path",{d:"M38.0469 33H12V62.1892H38.0469L44.5902 57.1406V38.0485L38.0469 33ZM17.0478 38.0485H39.5424V57.1459H17.0478V38.0485Z",fill:s.isDark?"#ffffff":"#0A0A0A"}),i.jsx("path",{d:"M82.0705 38.2605V33.3243H58.2546L51.788 38.2605V45.038L58.2546 49.9742H79.0107V56.9286H53.076V61.8648H77.5334L84 56.9286V49.9742L77.5334 45.038H56.7772V38.2605H82.0705Z",fill:s.isDark?"#ffffff":"#0A0A0A"})]}),i.jsx("defs",{children:i.jsx("clipPath",{id:"clip0_702_1449",children:i.jsx("rect",{width:"96",height:"96",fill:"white"})})})]}),e=t.forwardRef((s,f)=>i.jsx(l,{ref:f,...s}));export{e as HCDIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as s,r as l}from"./index-BChjg6Az.js";const o=t=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 400 400",...t,children:[s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#1F40EC",strokeWidth:"0.3",d:"M0 400h400V0H0v400M309 70c1.51 3.05.22 12.12-1 15-1.59 3.78-5.54 6.06-8 9-1.39 1.94-2.5 4.1-4 6-2.5 3.17-5.5 6.18-8 9-6.8 7.65-12.65 15.97-19.25 23.75-6.6 7.79-14.08 15.83-20.05 23.95-5.98 8.12-14.06 16.33-19.62 24.38S209.03 197.03 218 206c5.77 5.77 11.26 12.37 16 19 19.93 19.93 34.05 46.05 54 66 6.34 6.34 16.48 15.66 20 24 1.22 2.88 2.5 11.96 1 15-2.93 5.93-18.16.66-25 2s-18.99-.59-27 0-18.47-.23-27 0-18.26-.02-27 0-18.24.17-27 0-18.37.48-27 0-18.74 1.1-27 0-19.61 2.46-27 0-1.63-16.73-3-24 .61-18.78 0-27 .27-18.37 0-27 .1-18.19 0-27 0-18.14 0-27-.1-18.19 0-27-.27-18.36 0-27-.61-18.77 0-27-1.36-19.7 0-27-4.4-21.53 3.03-23.97 18.7 1.04 26.97-.03 18.36.46 27 0 18.23.16 27 0 18.26-.02 27 0 18.47-.23 27 0 18.98-.59 27 0 20.15-1.34 27 0 22.07-3.92 25 2Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#B3BCFE",strokeWidth:"0.3",d:"M309 330c-3.09 4.37-14.39-.23-20 1s-15.46-.55-22 0-15.07-.24-22 0-14.94-.09-22 0-13.88.01-21 0c-7.11-.01-14.87.1-22 0s-15 .26-22 0-15.35.6-22 0-15.12 1.41-21 0-17.14 3.38-21.22-.78c-4.09-4.16.56-15.21-.78-21.22s.63-15.36 0-22 .27-14.02 0-21 .12-14.84 0-22 .04-14.78 0-22 0-14.81 0-22-.05-13.82 0-21-.12-14.83 0-22-.26-14.94 0-22-.59-15.24 0-22-1.37-14.87 0-21-3.08-16.84.33-21.67S108.17 70.31 114 69s15.45.61 22 0 14.07.25 21 0 14.89.09 22 0 14.85 0 22 0 14.94-.1 22 0 14.14-.28 21 0 15.5-.61 22 0 16.42-1.34 22 0 17.86-3.44 21 1c-2.93-5.92-18.15-.66-25-2s-18.98.59-27 0-18.47.23-27 0-18.26.02-27 0-18.23-.16-27 0-18.36-.46-27 0-18.73-1.07-27 0-19.54-2.41-26.97.03S93.36 84.7 92 92s.61 18.77 0 27 .27 18.36 0 27 .1 18.19 0 27 0 18.14 0 27-.1 18.19 0 27-.27 18.37 0 27-.61 18.78 0 27-1.37 19.73 0 27-4.39 21.54 3 24 18.74-1.1 27 0 18.37-.48 27 0 18.24-.17 27 0 18.26.02 27 0 18.47.23 27 0 18.99.59 27 0 20.16 1.34 27 0 22.07 3.93 25-2Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#F9FBFC",strokeWidth:"0.3",d:"M309 330c1.5-3.04.22-12.12-1-15-4.59-8.32-14.19-16.19-20-24-19.95-19.95-34.07-46.07-54-66-5.91-5.91-11.04-12.33-16-19-8.97-8.97 5.52-16.87 11.08-24.92s13.64-16.26 19.62-24.38c5.97-8.12 13.45-16.16 20.05-23.95 6.6-7.78 12.45-16.1 19.25-23.75 2.43-3.4 5.19-5.96 8-9 1.5-1.9 2.61-4.06 4-6 2.15-3.01 6.37-6.05 8-9 1.22-2.88 2.51-11.95 1-15-3.14-4.44-15.42.34-21-1s-15.5.61-22 0-15.14.28-22 0-13.94.1-21 0-14.85 0-22 0-14.89-.09-22 0-15.07-.25-22 0-14.45-.61-21 0-16.17-1.31-22 0-17.26-3.5-20.67 1.33S94.37 85.87 93 92s.59 14.24 0 21 .26 14.94 0 22 .12 14.83 0 22 .05 14.82 0 22 0 13.81 0 21-.04 14.78 0 22-.12 14.84 0 22-.27 15.02 0 22-.63 14.36 0 21-1.34 15.99 0 22-3.31 17.06.78 21.22c4.08 4.16 15.34-.63 21.22.78s14.35-.6 21 0 15-.26 22 0 14.87-.1 22 0 14.89-.01 22 0c7.12.01 13.94.09 21 0s15.07.24 22 0 15.46.55 22 0 16.39 1.23 22 0 16.91 3.37 20-1m-51-215c-2.29 2.9-4.57 5.37-7 8-5.42 7.43-12.17 15.15-17.77 22.23s-12.48 15.39-17.98 22.02c-5.51 6.62-13.11 20.83-19.5 12-6.38-8.83-11.22-14.46-17.5-22.5-6.29-8.03-12.51-14.62-18.5-22.5s-12-14.41-17.67-22.33C136.41 103.99 127.17 97.38 125 88h153c-4.11 10.08-13.68 17.86-20 27m-95 54c6.61 6.61 6.17 6.49 12.75 14.25s-4.87 9.23-12.75 7.75-20.09 1.82-27 0-21.9 4.32-24.92-2.08c-3.01-6.41.69-19.69-.08-26.92s-.83-20.11 0-27-3.46-21.54 1-26c2.14-2.14 9.68 9.8 12.92 13.08 3.23 3.28 9.11 10.83 12.83 15.17s8.05 11.13 12.17 15.83S158.88 164.17 163 169m13 46c-4.25 4.92-8.9 10.16-12.75 15.25s-8.47 10.71-12.5 15.5c-4.02 4.79-9.06 11.9-12.67 16.33s-9.81 11.94-12.83 15.17S115.17 294.17 112 291c-4.56-4.56-.02-17.98-1-25s-.28-19.48 0-27-1.72-19.96 0-27 16.55-1.95 23-3 20.25.27 27 0 22.27-2.42 15 6m41 21c2.47 3.01 5.42 5.99 8 9 18.47 21.62 37.64 43.9 53 67H125v-3c-.37-3.3 6.91-8.91 9-11 6.23-6.23 11.56-14.1 17-21 1.55-1.97 2.61-4.05 4-6 2.33-3.26 5.52-6.21 8-9 4.58-5.15 9-11.62 13.3-16.7 4.31-5.08 9.59-11.73 13.45-16.55 3.87-4.81 9.43-15.83 14.17-9.67S213.01 229.82 217 236Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#92A5EC",strokeWidth:"0.3",d:"M300 94c2.46-2.94 6.41-5.22 8-9-1.63 2.95-5.85 5.99-8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2042E9",strokeWidth:"0.3",d:"M251 123c2.21-3.03 4.42-5.42 7-8 6.32-9.14 15.89-16.92 20-27H125c2.17 9.38 11.41 15.99 17.08 23.92 5.67 7.92 11.68 14.45 17.67 22.33s12.21 14.47 18.5 22.5c6.28 8.04 11.12 13.67 17.5 22.5 6.39 8.83 13.99-5.38 19.5-12 5.5-6.63 12.38-14.94 17.98-22.02S245.58 130.43 251 123Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#90A2ED",strokeWidth:"0.3",d:"M288 109c2.5-2.82 5.5-5.83 8-9-2.81 3.04-5.57 5.6-8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2142E7",strokeWidth:"0.3",d:"M112 109c-2.96 4.91 1.34 14.11 0 20s.62 13.64 0 20 .31 13.37 0 20 .23 14.28 0 21h66c-2.26-8.2-10.6-13.7-15-21-4.12-4.83-8.96-11.22-13.08-15.92s-8.45-11.49-12.17-15.83-9.6-11.89-12.83-15.17c-3.24-3.28-10.78-15.22-12.92-13.08Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#B4BFFB",strokeWidth:"0.3",d:"M163 169c4.4 7.3 12.74 12.8 15 21h-66c.23-6.72-.31-14.37 0-21s-.62-13.64 0-20-1.34-14.11 0-20-2.96-15.09 0-20c-4.46 4.46-.17 19.11-1 26s-.77 19.77 0 27-2.93 20.51.08 26.92c3.02 6.4 18.01.26 24.92 2.08s19.12-1.48 27 0 19.33.01 12.75-7.75-6.14-7.64-12.75-14.25Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#667AD7",strokeWidth:"0.3",d:"M251 123c2.43-2.63 4.71-5.1 7-8-2.58 2.58-4.79 4.97-7 8Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#8CA1EB",strokeWidth:"0.3",d:"M234 225c-4.74-6.63-10.23-13.23-16-19 4.96 6.67 10.09 13.09 16 19Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#B4BEFC",strokeWidth:"0.3",d:"M112 291c-2.96-4.91 1.34-14.11 0-20s.62-13.64 0-20 .31-13.37 0-20 .23-14.28 0-21h66c.76 2.19-1.3 3.32-2 5 7.27-8.42-8.25-6.27-15-6s-20.55-1.05-27 0-21.28-4.04-23 3 .28 19.48 0 27-.98 19.98 0 27-3.56 20.44 1 25Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2143E7",strokeWidth:"0.3",d:"M112 291c3.17 3.17 10.23-10.52 13.25-13.75s9.22-10.74 12.83-15.17 8.65-11.54 12.67-16.33c4.03-4.79 8.65-10.41 12.5-15.5s8.5-10.33 12.75-15.25c.7-1.68 2.76-2.81 2-5h-66c.23 6.72-.31 14.37 0 21s-.62 13.64 0 20-1.34 14.11 0 20-2.96 15.09 0 20Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2041E9",strokeWidth:"0.3",d:"M163 262c-1.65 2.31-3.22 4.74-5 7-2.31 2.93-4.42 5.42-7 8-5.44 6.9-10.77 14.77-17 21-1.37 1.84-9.04 9.28-9 11v3h153c-15.36-23.1-34.53-45.38-53-67-2.96-2.96-5.72-5.47-8-9-3.99-6.18-8.34-10.76-13.08-16.92s-10.3 4.86-14.17 9.67c-3.86 4.82-9.14 11.47-13.45 16.55-4.3 5.08-8.72 11.55-13.3 16.7Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#546AC4",strokeWidth:"0.3",d:"M225 245c-2.58-3.01-5.53-5.99-8-9 2.28 3.53 5.04 6.04 8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#91A7EC",strokeWidth:"0.3",d:"M155 271c.76-.8 2.23-1.3 3-2 1.78-2.26 3.35-4.69 5-7-2.48 2.79-5.67 5.74-8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#5F73D3",strokeWidth:"0.3",d:"M155 271c-1.39 1.95-2.45 4.03-4 6 2.58-2.58 4.69-5.07 7-8-.77.7-2.24 1.2-3 2Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#8396E5",strokeWidth:"0.3",d:"M308 315c-3.52-8.34-13.66-17.66-20-24 5.81 7.81 15.41 15.68 20 24Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#99A6EF",strokeWidth:"0.3",d:"M125 309c-.04-1.72 7.63-9.16 9-11-2.09 2.09-9.37 7.7-9 11Z"}),s.jsx("path",{fill:"#1F40EC",stroke:"None",d:"M0 400h400V0H0v400M309 70c1.51 3.05.22 12.12-1 15-1.59 3.78-5.54 6.06-8 9-1.39 1.94-2.5 4.1-4 6-2.5 3.17-5.5 6.18-8 9-6.8 7.65-12.65 15.97-19.25 23.75-6.6 7.79-14.08 15.83-20.05 23.95-5.98 8.12-14.06 16.33-19.62 24.38S209.03 197.03 218 206c5.77 5.77 11.26 12.37 16 19 19.93 19.93 34.05 46.05 54 66 6.34 6.34 16.48 15.66 20 24 1.22 2.88 2.5 11.96 1 15-2.93 5.93-18.16.66-25 2s-18.99-.59-27 0-18.47-.23-27 0-18.26-.02-27 0-18.24.17-27 0-18.37.48-27 0-18.74 1.1-27 0-19.61 2.46-27 0-1.63-16.73-3-24 .61-18.78 0-27 .27-18.37 0-27 .1-18.19 0-27 0-18.14 0-27-.1-18.19 0-27-.27-18.36 0-27-.61-18.77 0-27-1.36-19.7 0-27-4.4-21.53 3.03-23.97 18.7 1.04 26.97-.03 18.36.46 27 0 18.23.16 27 0 18.26-.02 27 0 18.47-.23 27 0 18.98-.59 27 0 20.15-1.34 27 0 22.07-3.92 25 2Z"}),s.jsx("path",{fill:"#B3BCFE",stroke:"None",d:"M309 330c-3.09 4.37-14.39-.23-20 1s-15.46-.55-22 0-15.07-.24-22 0-14.94-.09-22 0-13.88.01-21 0c-7.11-.01-14.87.1-22 0s-15 .26-22 0-15.35.6-22 0-15.12 1.41-21 0-17.14 3.38-21.22-.78c-4.09-4.16.56-15.21-.78-21.22s.63-15.36 0-22 .27-14.02 0-21 .12-14.84 0-22 .04-14.78 0-22 0-14.81 0-22-.05-13.82 0-21-.12-14.83 0-22-.26-14.94 0-22-.59-15.24 0-22-1.37-14.87 0-21-3.08-16.84.33-21.67S108.17 70.31 114 69s15.45.61 22 0 14.07.25 21 0 14.89.09 22 0 14.85 0 22 0 14.94-.1 22 0 14.14-.28 21 0 15.5-.61 22 0 16.42-1.34 22 0 17.86-3.44 21 1c-2.93-5.92-18.15-.66-25-2s-18.98.59-27 0-18.47.23-27 0-18.26.02-27 0-18.23-.16-27 0-18.36-.46-27 0-18.73-1.07-27 0-19.54-2.41-26.97.03S93.36 84.7 92 92s.61 18.77 0 27 .27 18.36 0 27 .1 18.19 0 27 0 18.14 0 27-.1 18.19 0 27-.27 18.37 0 27-.61 18.78 0 27-1.37 19.73 0 27-4.39 21.54 3 24 18.74-1.1 27 0 18.37-.48 27 0 18.24-.17 27 0 18.26.02 27 0 18.47.23 27 0 18.99.59 27 0 20.16 1.34 27 0 22.07 3.93 25-2Z"}),s.jsx("path",{fill:"#F9FBFC",stroke:"None",d:"M309 330c1.5-3.04.22-12.12-1-15-4.59-8.32-14.19-16.19-20-24-19.95-19.95-34.07-46.07-54-66-5.91-5.91-11.04-12.33-16-19-8.97-8.97 5.52-16.87 11.08-24.92s13.64-16.26 19.62-24.38c5.97-8.12 13.45-16.16 20.05-23.95 6.6-7.78 12.45-16.1 19.25-23.75 2.43-3.4 5.19-5.96 8-9 1.5-1.9 2.61-4.06 4-6 2.15-3.01 6.37-6.05 8-9 1.22-2.88 2.51-11.95 1-15-3.14-4.44-15.42.34-21-1s-15.5.61-22 0-15.14.28-22 0-13.94.1-21 0-14.85 0-22 0-14.89-.09-22 0-15.07-.25-22 0-14.45-.61-21 0-16.17-1.31-22 0-17.26-3.5-20.67 1.33S94.37 85.87 93 92s.59 14.24 0 21 .26 14.94 0 22 .12 14.83 0 22 .05 14.82 0 22 0 13.81 0 21-.04 14.78 0 22-.12 14.84 0 22-.27 15.02 0 22-.63 14.36 0 21-1.34 15.99 0 22-3.31 17.06.78 21.22c4.08 4.16 15.34-.63 21.22.78s14.35-.6 21 0 15-.26 22 0 14.87-.1 22 0 14.89-.01 22 0c7.12.01 13.94.09 21 0s15.07.24 22 0 15.46.55 22 0 16.39 1.23 22 0 16.91 3.37 20-1m-51-215c-2.29 2.9-4.57 5.37-7 8-5.42 7.43-12.17 15.15-17.77 22.23s-12.48 15.39-17.98 22.02c-5.51 6.62-13.11 20.83-19.5 12-6.38-8.83-11.22-14.46-17.5-22.5-6.29-8.03-12.51-14.62-18.5-22.5s-12-14.41-17.67-22.33C136.41 103.99 127.17 97.38 125 88h153c-4.11 10.08-13.68 17.86-20 27m-95 54c6.61 6.61 6.17 6.49 12.75 14.25s-4.87 9.23-12.75 7.75-20.09 1.82-27 0-21.9 4.32-24.92-2.08c-3.01-6.41.69-19.69-.08-26.92s-.83-20.11 0-27-3.46-21.54 1-26c2.14-2.14 9.68 9.8 12.92 13.08 3.23 3.28 9.11 10.83 12.83 15.17s8.05 11.13 12.17 15.83S158.88 164.17 163 169m13 46c-4.25 4.92-8.9 10.16-12.75 15.25s-8.47 10.71-12.5 15.5c-4.02 4.79-9.06 11.9-12.67 16.33s-9.81 11.94-12.83 15.17S115.17 294.17 112 291c-4.56-4.56-.02-17.98-1-25s-.28-19.48 0-27-1.72-19.96 0-27 16.55-1.95 23-3 20.25.27 27 0 22.27-2.42 15 6m41 21c2.47 3.01 5.42 5.99 8 9 18.47 21.62 37.64 43.9 53 67H125v-3c-.37-3.3 6.91-8.91 9-11 6.23-6.23 11.56-14.1 17-21 1.55-1.97 2.61-4.05 4-6 2.33-3.26 5.52-6.21 8-9 4.58-5.15 9-11.62 13.3-16.7 4.31-5.08 9.59-11.73 13.45-16.55 3.87-4.81 9.43-15.83 14.17-9.67S213.01 229.82 217 236Z"}),s.jsx("path",{fill:"#92A5EC",stroke:"None",d:"M300 94c2.46-2.94 6.41-5.22 8-9-1.63 2.95-5.85 5.99-8 9Z"}),s.jsx("path",{fill:"#2042E9",stroke:"None",d:"M251 123c2.21-3.03 4.42-5.42 7-8 6.32-9.14 15.89-16.92 20-27H125c2.17 9.38 11.41 15.99 17.08 23.92 5.67 7.92 11.68 14.45 17.67 22.33s12.21 14.47 18.5 22.5c6.28 8.04 11.12 13.67 17.5 22.5 6.39 8.83 13.99-5.38 19.5-12 5.5-6.63 12.38-14.94 17.98-22.02S245.58 130.43 251 123Z"}),s.jsx("path",{fill:"#90A2ED",stroke:"None",d:"M288 109c2.5-2.82 5.5-5.83 8-9-2.81 3.04-5.57 5.6-8 9Z"}),s.jsx("path",{fill:"#2142E7",stroke:"None",d:"M112 109c-2.96 4.91 1.34 14.11 0 20s.62 13.64 0 20 .31 13.37 0 20 .23 14.28 0 21h66c-2.26-8.2-10.6-13.7-15-21-4.12-4.83-8.96-11.22-13.08-15.92s-8.45-11.49-12.17-15.83-9.6-11.89-12.83-15.17c-3.24-3.28-10.78-15.22-12.92-13.08Z"}),s.jsx("path",{fill:"#B4BFFB",stroke:"None",d:"M163 169c4.4 7.3 12.74 12.8 15 21h-66c.23-6.72-.31-14.37 0-21s-.62-13.64 0-20-1.34-14.11 0-20-2.96-15.09 0-20c-4.46 4.46-.17 19.11-1 26s-.77 19.77 0 27-2.93 20.51.08 26.92c3.02 6.4 18.01.26 24.92 2.08s19.12-1.48 27 0 19.33.01 12.75-7.75-6.14-7.64-12.75-14.25Z"}),s.jsx("path",{fill:"#667AD7",stroke:"None",d:"M251 123c2.43-2.63 4.71-5.1 7-8-2.58 2.58-4.79 4.97-7 8Z"}),s.jsx("path",{fill:"#8CA1EB",stroke:"None",d:"M234 225c-4.74-6.63-10.23-13.23-16-19 4.96 6.67 10.09 13.09 16 19Z"}),s.jsx("path",{fill:"#B4BEFC",stroke:"None",d:"M112 291c-2.96-4.91 1.34-14.11 0-20s.62-13.64 0-20 .31-13.37 0-20 .23-14.28 0-21h66c.76 2.19-1.3 3.32-2 5 7.27-8.42-8.25-6.27-15-6s-20.55-1.05-27 0-21.28-4.04-23 3 .28 19.48 0 27-.98 19.98 0 27-3.56 20.44 1 25Z"}),s.jsx("path",{fill:"#2143E7",stroke:"None",d:"M112 291c3.17 3.17 10.23-10.52 13.25-13.75s9.22-10.74 12.83-15.17 8.65-11.54 12.67-16.33c4.03-4.79 8.65-10.41 12.5-15.5s8.5-10.33 12.75-15.25c.7-1.68 2.76-2.81 2-5h-66c.23 6.72-.31 14.37 0 21s-.62 13.64 0 20-1.34 14.11 0 20-2.96 15.09 0 20Z"}),s.jsx("path",{fill:"#2041E9",stroke:"None",d:"M163 262c-1.65 2.31-3.22 4.74-5 7-2.31 2.93-4.42 5.42-7 8-5.44 6.9-10.77 14.77-17 21-1.37 1.84-9.04 9.28-9 11v3h153c-15.36-23.1-34.53-45.38-53-67-2.96-2.96-5.72-5.47-8-9-3.99-6.18-8.34-10.76-13.08-16.92s-10.3 4.86-14.17 9.67c-3.86 4.82-9.14 11.47-13.45 16.55-4.3 5.08-8.72 11.55-13.3 16.7Z"}),s.jsx("path",{fill:"#546AC4",stroke:"None",d:"M225 245c-2.58-3.01-5.53-5.99-8-9 2.28 3.53 5.04 6.04 8 9Z"}),s.jsx("path",{fill:"#91A7EC",stroke:"None",d:"M155 271c.76-.8 2.23-1.3 3-2 1.78-2.26 3.35-4.69 5-7-2.48 2.79-5.67 5.74-8 9Z"}),s.jsx("path",{fill:"#5F73D3",stroke:"None",d:"M155 271c-1.39 1.95-2.45 4.03-4 6 2.58-2.58 4.69-5.07 7-8-.77.7-2.24 1.2-3 2Z"}),s.jsx("path",{fill:"#8396E5",stroke:"None",d:"M308 315c-3.52-8.34-13.66-17.66-20-24 5.81 7.81 15.41 15.68 20 24Z"}),s.jsx("path",{fill:"#99A6EF",stroke:"None",d:"M125 309c-.04-1.72 7.63-9.16 9-11-2.09 2.09-9.37 7.7-9 11Z"})]}),i=l.forwardRef((t,c)=>s.jsx(o,{ref:c,...t}));export{i as ExaIcon};
|
|
1
|
+
import{j as s,r as l}from"./index-BpxbUiZD.js";const o=t=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 400 400",...t,children:[s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#1F40EC",strokeWidth:"0.3",d:"M0 400h400V0H0v400M309 70c1.51 3.05.22 12.12-1 15-1.59 3.78-5.54 6.06-8 9-1.39 1.94-2.5 4.1-4 6-2.5 3.17-5.5 6.18-8 9-6.8 7.65-12.65 15.97-19.25 23.75-6.6 7.79-14.08 15.83-20.05 23.95-5.98 8.12-14.06 16.33-19.62 24.38S209.03 197.03 218 206c5.77 5.77 11.26 12.37 16 19 19.93 19.93 34.05 46.05 54 66 6.34 6.34 16.48 15.66 20 24 1.22 2.88 2.5 11.96 1 15-2.93 5.93-18.16.66-25 2s-18.99-.59-27 0-18.47-.23-27 0-18.26-.02-27 0-18.24.17-27 0-18.37.48-27 0-18.74 1.1-27 0-19.61 2.46-27 0-1.63-16.73-3-24 .61-18.78 0-27 .27-18.37 0-27 .1-18.19 0-27 0-18.14 0-27-.1-18.19 0-27-.27-18.36 0-27-.61-18.77 0-27-1.36-19.7 0-27-4.4-21.53 3.03-23.97 18.7 1.04 26.97-.03 18.36.46 27 0 18.23.16 27 0 18.26-.02 27 0 18.47-.23 27 0 18.98-.59 27 0 20.15-1.34 27 0 22.07-3.92 25 2Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#B3BCFE",strokeWidth:"0.3",d:"M309 330c-3.09 4.37-14.39-.23-20 1s-15.46-.55-22 0-15.07-.24-22 0-14.94-.09-22 0-13.88.01-21 0c-7.11-.01-14.87.1-22 0s-15 .26-22 0-15.35.6-22 0-15.12 1.41-21 0-17.14 3.38-21.22-.78c-4.09-4.16.56-15.21-.78-21.22s.63-15.36 0-22 .27-14.02 0-21 .12-14.84 0-22 .04-14.78 0-22 0-14.81 0-22-.05-13.82 0-21-.12-14.83 0-22-.26-14.94 0-22-.59-15.24 0-22-1.37-14.87 0-21-3.08-16.84.33-21.67S108.17 70.31 114 69s15.45.61 22 0 14.07.25 21 0 14.89.09 22 0 14.85 0 22 0 14.94-.1 22 0 14.14-.28 21 0 15.5-.61 22 0 16.42-1.34 22 0 17.86-3.44 21 1c-2.93-5.92-18.15-.66-25-2s-18.98.59-27 0-18.47.23-27 0-18.26.02-27 0-18.23-.16-27 0-18.36-.46-27 0-18.73-1.07-27 0-19.54-2.41-26.97.03S93.36 84.7 92 92s.61 18.77 0 27 .27 18.36 0 27 .1 18.19 0 27 0 18.14 0 27-.1 18.19 0 27-.27 18.37 0 27-.61 18.78 0 27-1.37 19.73 0 27-4.39 21.54 3 24 18.74-1.1 27 0 18.37-.48 27 0 18.24-.17 27 0 18.26.02 27 0 18.47.23 27 0 18.99.59 27 0 20.16 1.34 27 0 22.07 3.93 25-2Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#F9FBFC",strokeWidth:"0.3",d:"M309 330c1.5-3.04.22-12.12-1-15-4.59-8.32-14.19-16.19-20-24-19.95-19.95-34.07-46.07-54-66-5.91-5.91-11.04-12.33-16-19-8.97-8.97 5.52-16.87 11.08-24.92s13.64-16.26 19.62-24.38c5.97-8.12 13.45-16.16 20.05-23.95 6.6-7.78 12.45-16.1 19.25-23.75 2.43-3.4 5.19-5.96 8-9 1.5-1.9 2.61-4.06 4-6 2.15-3.01 6.37-6.05 8-9 1.22-2.88 2.51-11.95 1-15-3.14-4.44-15.42.34-21-1s-15.5.61-22 0-15.14.28-22 0-13.94.1-21 0-14.85 0-22 0-14.89-.09-22 0-15.07-.25-22 0-14.45-.61-21 0-16.17-1.31-22 0-17.26-3.5-20.67 1.33S94.37 85.87 93 92s.59 14.24 0 21 .26 14.94 0 22 .12 14.83 0 22 .05 14.82 0 22 0 13.81 0 21-.04 14.78 0 22-.12 14.84 0 22-.27 15.02 0 22-.63 14.36 0 21-1.34 15.99 0 22-3.31 17.06.78 21.22c4.08 4.16 15.34-.63 21.22.78s14.35-.6 21 0 15-.26 22 0 14.87-.1 22 0 14.89-.01 22 0c7.12.01 13.94.09 21 0s15.07.24 22 0 15.46.55 22 0 16.39 1.23 22 0 16.91 3.37 20-1m-51-215c-2.29 2.9-4.57 5.37-7 8-5.42 7.43-12.17 15.15-17.77 22.23s-12.48 15.39-17.98 22.02c-5.51 6.62-13.11 20.83-19.5 12-6.38-8.83-11.22-14.46-17.5-22.5-6.29-8.03-12.51-14.62-18.5-22.5s-12-14.41-17.67-22.33C136.41 103.99 127.17 97.38 125 88h153c-4.11 10.08-13.68 17.86-20 27m-95 54c6.61 6.61 6.17 6.49 12.75 14.25s-4.87 9.23-12.75 7.75-20.09 1.82-27 0-21.9 4.32-24.92-2.08c-3.01-6.41.69-19.69-.08-26.92s-.83-20.11 0-27-3.46-21.54 1-26c2.14-2.14 9.68 9.8 12.92 13.08 3.23 3.28 9.11 10.83 12.83 15.17s8.05 11.13 12.17 15.83S158.88 164.17 163 169m13 46c-4.25 4.92-8.9 10.16-12.75 15.25s-8.47 10.71-12.5 15.5c-4.02 4.79-9.06 11.9-12.67 16.33s-9.81 11.94-12.83 15.17S115.17 294.17 112 291c-4.56-4.56-.02-17.98-1-25s-.28-19.48 0-27-1.72-19.96 0-27 16.55-1.95 23-3 20.25.27 27 0 22.27-2.42 15 6m41 21c2.47 3.01 5.42 5.99 8 9 18.47 21.62 37.64 43.9 53 67H125v-3c-.37-3.3 6.91-8.91 9-11 6.23-6.23 11.56-14.1 17-21 1.55-1.97 2.61-4.05 4-6 2.33-3.26 5.52-6.21 8-9 4.58-5.15 9-11.62 13.3-16.7 4.31-5.08 9.59-11.73 13.45-16.55 3.87-4.81 9.43-15.83 14.17-9.67S213.01 229.82 217 236Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#92A5EC",strokeWidth:"0.3",d:"M300 94c2.46-2.94 6.41-5.22 8-9-1.63 2.95-5.85 5.99-8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2042E9",strokeWidth:"0.3",d:"M251 123c2.21-3.03 4.42-5.42 7-8 6.32-9.14 15.89-16.92 20-27H125c2.17 9.38 11.41 15.99 17.08 23.92 5.67 7.92 11.68 14.45 17.67 22.33s12.21 14.47 18.5 22.5c6.28 8.04 11.12 13.67 17.5 22.5 6.39 8.83 13.99-5.38 19.5-12 5.5-6.63 12.38-14.94 17.98-22.02S245.58 130.43 251 123Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#90A2ED",strokeWidth:"0.3",d:"M288 109c2.5-2.82 5.5-5.83 8-9-2.81 3.04-5.57 5.6-8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2142E7",strokeWidth:"0.3",d:"M112 109c-2.96 4.91 1.34 14.11 0 20s.62 13.64 0 20 .31 13.37 0 20 .23 14.28 0 21h66c-2.26-8.2-10.6-13.7-15-21-4.12-4.83-8.96-11.22-13.08-15.92s-8.45-11.49-12.17-15.83-9.6-11.89-12.83-15.17c-3.24-3.28-10.78-15.22-12.92-13.08Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#B4BFFB",strokeWidth:"0.3",d:"M163 169c4.4 7.3 12.74 12.8 15 21h-66c.23-6.72-.31-14.37 0-21s-.62-13.64 0-20-1.34-14.11 0-20-2.96-15.09 0-20c-4.46 4.46-.17 19.11-1 26s-.77 19.77 0 27-2.93 20.51.08 26.92c3.02 6.4 18.01.26 24.92 2.08s19.12-1.48 27 0 19.33.01 12.75-7.75-6.14-7.64-12.75-14.25Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#667AD7",strokeWidth:"0.3",d:"M251 123c2.43-2.63 4.71-5.1 7-8-2.58 2.58-4.79 4.97-7 8Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#8CA1EB",strokeWidth:"0.3",d:"M234 225c-4.74-6.63-10.23-13.23-16-19 4.96 6.67 10.09 13.09 16 19Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#B4BEFC",strokeWidth:"0.3",d:"M112 291c-2.96-4.91 1.34-14.11 0-20s.62-13.64 0-20 .31-13.37 0-20 .23-14.28 0-21h66c.76 2.19-1.3 3.32-2 5 7.27-8.42-8.25-6.27-15-6s-20.55-1.05-27 0-21.28-4.04-23 3 .28 19.48 0 27-.98 19.98 0 27-3.56 20.44 1 25Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2143E7",strokeWidth:"0.3",d:"M112 291c3.17 3.17 10.23-10.52 13.25-13.75s9.22-10.74 12.83-15.17 8.65-11.54 12.67-16.33c4.03-4.79 8.65-10.41 12.5-15.5s8.5-10.33 12.75-15.25c.7-1.68 2.76-2.81 2-5h-66c.23 6.72-.31 14.37 0 21s-.62 13.64 0 20-1.34 14.11 0 20-2.96 15.09 0 20Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#2041E9",strokeWidth:"0.3",d:"M163 262c-1.65 2.31-3.22 4.74-5 7-2.31 2.93-4.42 5.42-7 8-5.44 6.9-10.77 14.77-17 21-1.37 1.84-9.04 9.28-9 11v3h153c-15.36-23.1-34.53-45.38-53-67-2.96-2.96-5.72-5.47-8-9-3.99-6.18-8.34-10.76-13.08-16.92s-10.3 4.86-14.17 9.67c-3.86 4.82-9.14 11.47-13.45 16.55-4.3 5.08-8.72 11.55-13.3 16.7Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#546AC4",strokeWidth:"0.3",d:"M225 245c-2.58-3.01-5.53-5.99-8-9 2.28 3.53 5.04 6.04 8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#91A7EC",strokeWidth:"0.3",d:"M155 271c.76-.8 2.23-1.3 3-2 1.78-2.26 3.35-4.69 5-7-2.48 2.79-5.67 5.74-8 9Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#5F73D3",strokeWidth:"0.3",d:"M155 271c-1.39 1.95-2.45 4.03-4 6 2.58-2.58 4.69-5.07 7-8-.77.7-2.24 1.2-3 2Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#8396E5",strokeWidth:"0.3",d:"M308 315c-3.52-8.34-13.66-17.66-20-24 5.81 7.81 15.41 15.68 20 24Z"}),s.jsx("path",{fill:"none",fillOpacity:"0",stroke:"#99A6EF",strokeWidth:"0.3",d:"M125 309c-.04-1.72 7.63-9.16 9-11-2.09 2.09-9.37 7.7-9 11Z"}),s.jsx("path",{fill:"#1F40EC",stroke:"None",d:"M0 400h400V0H0v400M309 70c1.51 3.05.22 12.12-1 15-1.59 3.78-5.54 6.06-8 9-1.39 1.94-2.5 4.1-4 6-2.5 3.17-5.5 6.18-8 9-6.8 7.65-12.65 15.97-19.25 23.75-6.6 7.79-14.08 15.83-20.05 23.95-5.98 8.12-14.06 16.33-19.62 24.38S209.03 197.03 218 206c5.77 5.77 11.26 12.37 16 19 19.93 19.93 34.05 46.05 54 66 6.34 6.34 16.48 15.66 20 24 1.22 2.88 2.5 11.96 1 15-2.93 5.93-18.16.66-25 2s-18.99-.59-27 0-18.47-.23-27 0-18.26-.02-27 0-18.24.17-27 0-18.37.48-27 0-18.74 1.1-27 0-19.61 2.46-27 0-1.63-16.73-3-24 .61-18.78 0-27 .27-18.37 0-27 .1-18.19 0-27 0-18.14 0-27-.1-18.19 0-27-.27-18.36 0-27-.61-18.77 0-27-1.36-19.7 0-27-4.4-21.53 3.03-23.97 18.7 1.04 26.97-.03 18.36.46 27 0 18.23.16 27 0 18.26-.02 27 0 18.47-.23 27 0 18.98-.59 27 0 20.15-1.34 27 0 22.07-3.92 25 2Z"}),s.jsx("path",{fill:"#B3BCFE",stroke:"None",d:"M309 330c-3.09 4.37-14.39-.23-20 1s-15.46-.55-22 0-15.07-.24-22 0-14.94-.09-22 0-13.88.01-21 0c-7.11-.01-14.87.1-22 0s-15 .26-22 0-15.35.6-22 0-15.12 1.41-21 0-17.14 3.38-21.22-.78c-4.09-4.16.56-15.21-.78-21.22s.63-15.36 0-22 .27-14.02 0-21 .12-14.84 0-22 .04-14.78 0-22 0-14.81 0-22-.05-13.82 0-21-.12-14.83 0-22-.26-14.94 0-22-.59-15.24 0-22-1.37-14.87 0-21-3.08-16.84.33-21.67S108.17 70.31 114 69s15.45.61 22 0 14.07.25 21 0 14.89.09 22 0 14.85 0 22 0 14.94-.1 22 0 14.14-.28 21 0 15.5-.61 22 0 16.42-1.34 22 0 17.86-3.44 21 1c-2.93-5.92-18.15-.66-25-2s-18.98.59-27 0-18.47.23-27 0-18.26.02-27 0-18.23-.16-27 0-18.36-.46-27 0-18.73-1.07-27 0-19.54-2.41-26.97.03S93.36 84.7 92 92s.61 18.77 0 27 .27 18.36 0 27 .1 18.19 0 27 0 18.14 0 27-.1 18.19 0 27-.27 18.37 0 27-.61 18.78 0 27-1.37 19.73 0 27-4.39 21.54 3 24 18.74-1.1 27 0 18.37-.48 27 0 18.24-.17 27 0 18.26.02 27 0 18.47.23 27 0 18.99.59 27 0 20.16 1.34 27 0 22.07 3.93 25-2Z"}),s.jsx("path",{fill:"#F9FBFC",stroke:"None",d:"M309 330c1.5-3.04.22-12.12-1-15-4.59-8.32-14.19-16.19-20-24-19.95-19.95-34.07-46.07-54-66-5.91-5.91-11.04-12.33-16-19-8.97-8.97 5.52-16.87 11.08-24.92s13.64-16.26 19.62-24.38c5.97-8.12 13.45-16.16 20.05-23.95 6.6-7.78 12.45-16.1 19.25-23.75 2.43-3.4 5.19-5.96 8-9 1.5-1.9 2.61-4.06 4-6 2.15-3.01 6.37-6.05 8-9 1.22-2.88 2.51-11.95 1-15-3.14-4.44-15.42.34-21-1s-15.5.61-22 0-15.14.28-22 0-13.94.1-21 0-14.85 0-22 0-14.89-.09-22 0-15.07-.25-22 0-14.45-.61-21 0-16.17-1.31-22 0-17.26-3.5-20.67 1.33S94.37 85.87 93 92s.59 14.24 0 21 .26 14.94 0 22 .12 14.83 0 22 .05 14.82 0 22 0 13.81 0 21-.04 14.78 0 22-.12 14.84 0 22-.27 15.02 0 22-.63 14.36 0 21-1.34 15.99 0 22-3.31 17.06.78 21.22c4.08 4.16 15.34-.63 21.22.78s14.35-.6 21 0 15-.26 22 0 14.87-.1 22 0 14.89-.01 22 0c7.12.01 13.94.09 21 0s15.07.24 22 0 15.46.55 22 0 16.39 1.23 22 0 16.91 3.37 20-1m-51-215c-2.29 2.9-4.57 5.37-7 8-5.42 7.43-12.17 15.15-17.77 22.23s-12.48 15.39-17.98 22.02c-5.51 6.62-13.11 20.83-19.5 12-6.38-8.83-11.22-14.46-17.5-22.5-6.29-8.03-12.51-14.62-18.5-22.5s-12-14.41-17.67-22.33C136.41 103.99 127.17 97.38 125 88h153c-4.11 10.08-13.68 17.86-20 27m-95 54c6.61 6.61 6.17 6.49 12.75 14.25s-4.87 9.23-12.75 7.75-20.09 1.82-27 0-21.9 4.32-24.92-2.08c-3.01-6.41.69-19.69-.08-26.92s-.83-20.11 0-27-3.46-21.54 1-26c2.14-2.14 9.68 9.8 12.92 13.08 3.23 3.28 9.11 10.83 12.83 15.17s8.05 11.13 12.17 15.83S158.88 164.17 163 169m13 46c-4.25 4.92-8.9 10.16-12.75 15.25s-8.47 10.71-12.5 15.5c-4.02 4.79-9.06 11.9-12.67 16.33s-9.81 11.94-12.83 15.17S115.17 294.17 112 291c-4.56-4.56-.02-17.98-1-25s-.28-19.48 0-27-1.72-19.96 0-27 16.55-1.95 23-3 20.25.27 27 0 22.27-2.42 15 6m41 21c2.47 3.01 5.42 5.99 8 9 18.47 21.62 37.64 43.9 53 67H125v-3c-.37-3.3 6.91-8.91 9-11 6.23-6.23 11.56-14.1 17-21 1.55-1.97 2.61-4.05 4-6 2.33-3.26 5.52-6.21 8-9 4.58-5.15 9-11.62 13.3-16.7 4.31-5.08 9.59-11.73 13.45-16.55 3.87-4.81 9.43-15.83 14.17-9.67S213.01 229.82 217 236Z"}),s.jsx("path",{fill:"#92A5EC",stroke:"None",d:"M300 94c2.46-2.94 6.41-5.22 8-9-1.63 2.95-5.85 5.99-8 9Z"}),s.jsx("path",{fill:"#2042E9",stroke:"None",d:"M251 123c2.21-3.03 4.42-5.42 7-8 6.32-9.14 15.89-16.92 20-27H125c2.17 9.38 11.41 15.99 17.08 23.92 5.67 7.92 11.68 14.45 17.67 22.33s12.21 14.47 18.5 22.5c6.28 8.04 11.12 13.67 17.5 22.5 6.39 8.83 13.99-5.38 19.5-12 5.5-6.63 12.38-14.94 17.98-22.02S245.58 130.43 251 123Z"}),s.jsx("path",{fill:"#90A2ED",stroke:"None",d:"M288 109c2.5-2.82 5.5-5.83 8-9-2.81 3.04-5.57 5.6-8 9Z"}),s.jsx("path",{fill:"#2142E7",stroke:"None",d:"M112 109c-2.96 4.91 1.34 14.11 0 20s.62 13.64 0 20 .31 13.37 0 20 .23 14.28 0 21h66c-2.26-8.2-10.6-13.7-15-21-4.12-4.83-8.96-11.22-13.08-15.92s-8.45-11.49-12.17-15.83-9.6-11.89-12.83-15.17c-3.24-3.28-10.78-15.22-12.92-13.08Z"}),s.jsx("path",{fill:"#B4BFFB",stroke:"None",d:"M163 169c4.4 7.3 12.74 12.8 15 21h-66c.23-6.72-.31-14.37 0-21s-.62-13.64 0-20-1.34-14.11 0-20-2.96-15.09 0-20c-4.46 4.46-.17 19.11-1 26s-.77 19.77 0 27-2.93 20.51.08 26.92c3.02 6.4 18.01.26 24.92 2.08s19.12-1.48 27 0 19.33.01 12.75-7.75-6.14-7.64-12.75-14.25Z"}),s.jsx("path",{fill:"#667AD7",stroke:"None",d:"M251 123c2.43-2.63 4.71-5.1 7-8-2.58 2.58-4.79 4.97-7 8Z"}),s.jsx("path",{fill:"#8CA1EB",stroke:"None",d:"M234 225c-4.74-6.63-10.23-13.23-16-19 4.96 6.67 10.09 13.09 16 19Z"}),s.jsx("path",{fill:"#B4BEFC",stroke:"None",d:"M112 291c-2.96-4.91 1.34-14.11 0-20s.62-13.64 0-20 .31-13.37 0-20 .23-14.28 0-21h66c.76 2.19-1.3 3.32-2 5 7.27-8.42-8.25-6.27-15-6s-20.55-1.05-27 0-21.28-4.04-23 3 .28 19.48 0 27-.98 19.98 0 27-3.56 20.44 1 25Z"}),s.jsx("path",{fill:"#2143E7",stroke:"None",d:"M112 291c3.17 3.17 10.23-10.52 13.25-13.75s9.22-10.74 12.83-15.17 8.65-11.54 12.67-16.33c4.03-4.79 8.65-10.41 12.5-15.5s8.5-10.33 12.75-15.25c.7-1.68 2.76-2.81 2-5h-66c.23 6.72-.31 14.37 0 21s-.62 13.64 0 20-1.34 14.11 0 20-2.96 15.09 0 20Z"}),s.jsx("path",{fill:"#2041E9",stroke:"None",d:"M163 262c-1.65 2.31-3.22 4.74-5 7-2.31 2.93-4.42 5.42-7 8-5.44 6.9-10.77 14.77-17 21-1.37 1.84-9.04 9.28-9 11v3h153c-15.36-23.1-34.53-45.38-53-67-2.96-2.96-5.72-5.47-8-9-3.99-6.18-8.34-10.76-13.08-16.92s-10.3 4.86-14.17 9.67c-3.86 4.82-9.14 11.47-13.45 16.55-4.3 5.08-8.72 11.55-13.3 16.7Z"}),s.jsx("path",{fill:"#546AC4",stroke:"None",d:"M225 245c-2.58-3.01-5.53-5.99-8-9 2.28 3.53 5.04 6.04 8 9Z"}),s.jsx("path",{fill:"#91A7EC",stroke:"None",d:"M155 271c.76-.8 2.23-1.3 3-2 1.78-2.26 3.35-4.69 5-7-2.48 2.79-5.67 5.74-8 9Z"}),s.jsx("path",{fill:"#5F73D3",stroke:"None",d:"M155 271c-1.39 1.95-2.45 4.03-4 6 2.58-2.58 4.69-5.07 7-8-.77.7-2.24 1.2-3 2Z"}),s.jsx("path",{fill:"#8396E5",stroke:"None",d:"M308 315c-3.52-8.34-13.66-17.66-20-24 5.81 7.81 15.41 15.68 20 24Z"}),s.jsx("path",{fill:"#99A6EF",stroke:"None",d:"M125 309c-.04-1.72 7.63-9.16 9-11-2.09 2.09-9.37 7.7-9 11Z"})]}),i=l.forwardRef((t,c)=>s.jsx(o,{ref:c,...t}));export{i as ExaIcon};
|