langflow-base-nightly 0.5.1.dev3__py3-none-any.whl → 0.5.1.dev5__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.
Files changed (935) hide show
  1. langflow/__init__.py +215 -0
  2. langflow/__main__.py +16 -2
  3. langflow/alembic/versions/006b3990db50_add_unique_constraints.py +4 -7
  4. langflow/alembic/versions/012fb73ac359_add_folder_table.py +4 -5
  5. langflow/alembic/versions/0ae3a2674f32_update_the_columns_that_need_to_change_.py +11 -20
  6. langflow/alembic/versions/0b8757876a7c_.py +4 -7
  7. langflow/alembic/versions/0d60fcbd4e8e_create_vertex_builds_table.py +4 -6
  8. langflow/alembic/versions/1a110b568907_replace_credential_table_with_variable.py +4 -5
  9. langflow/alembic/versions/1b8b740a6fa3_remove_fk_constraint_in_message_.py +32 -27
  10. langflow/alembic/versions/1c79524817ed_add_unique_constraints_per_user_in_.py +4 -5
  11. langflow/alembic/versions/1d90f8a0efe1_update_description_columns_type.py +4 -5
  12. langflow/alembic/versions/1eab2c3eb45e_event_error.py +14 -15
  13. langflow/alembic/versions/1ef9c4f3765d_.py +5 -10
  14. langflow/alembic/versions/1f4d6df60295_add_default_fields_column.py +4 -5
  15. langflow/alembic/versions/260dbcc8b680_adds_tables.py +4 -5
  16. langflow/alembic/versions/29fe8f1f806b_add_missing_index.py +4 -5
  17. langflow/alembic/versions/2ac71eb9c3ae_adds_credential_table.py +4 -7
  18. langflow/alembic/versions/3bb0ddf32dfb_add_unique_constraints_per_user_in_flow_.py +4 -5
  19. langflow/alembic/versions/4e5980a44eaa_fix_date_times_again.py +1 -2
  20. langflow/alembic/versions/58b28437a398_modify_nullable.py +1 -2
  21. langflow/alembic/versions/5ace73a7f223_new_remove_table_upgrade_op.py +6 -12
  22. langflow/alembic/versions/631faacf5da2_add_webhook_columns.py +4 -5
  23. langflow/alembic/versions/63b9c451fd30_add_icon_and_icon_bg_color_to_flow.py +4 -5
  24. langflow/alembic/versions/66f72f04a1de_add_mcp_support_with_project_settings_.py +21 -23
  25. langflow/alembic/versions/67cc006d50bf_add_profile_image_column.py +4 -5
  26. langflow/alembic/versions/6e7b581b5648_fix_nullable.py +4 -5
  27. langflow/alembic/versions/7843803a87b5_store_updates.py +4 -6
  28. langflow/alembic/versions/79e675cb6752_change_datetime_type.py +1 -2
  29. langflow/alembic/versions/7d2162acc8b2_adds_updated_at_and_folder_cols.py +4 -10
  30. langflow/alembic/versions/90be8e2ed91e_create_transactions_table.py +4 -6
  31. langflow/alembic/versions/93e2705fa8d6_add_column_save_path_to_flow.py +7 -9
  32. langflow/alembic/versions/a72f5cf9c2f9_add_endpoint_name_col.py +4 -5
  33. langflow/alembic/versions/b2fa308044b5_add_unique_constraints.py +1 -2
  34. langflow/alembic/versions/bc2f01c40e4a_new_fixes.py +4 -5
  35. langflow/alembic/versions/c153816fd85f_set_name_and_value_to_not_nullable.py +4 -5
  36. langflow/alembic/versions/d066bfd22890_add_message_table.py +4 -4
  37. langflow/alembic/versions/d2d475a1f7c0_add_tags_column_to_flow.py +12 -13
  38. langflow/alembic/versions/d3dbf656a499_add_gradient_column_in_flow.py +12 -12
  39. langflow/alembic/versions/d9a6ea21edcd_rename_default_folder.py +7 -10
  40. langflow/alembic/versions/dd9e0804ebd1_add_v2_file_table.py +8 -7
  41. langflow/alembic/versions/e3162c1804e6_add_persistent_locked_state.py +10 -10
  42. langflow/alembic/versions/e3bc869fa272_fix_nullable.py +4 -5
  43. langflow/alembic/versions/e56d87f8994a_add_optins_column_to_user.py +13 -14
  44. langflow/alembic/versions/e5a65ecff2cd_nullable_in_vertex_build.py +4 -5
  45. langflow/alembic/versions/eb5866d51fd2_change_columns_to_be_nullable.py +4 -5
  46. langflow/alembic/versions/eb5e72293a8e_add_error_and_edit_flags_to_message.py +4 -5
  47. langflow/alembic/versions/f3b2d1f1002d_add_column_access_type_to_flow.py +19 -15
  48. langflow/alembic/versions/f5ee9749d1a6_user_id_can_be_null_in_flow.py +4 -6
  49. langflow/alembic/versions/fd531f8868b1_fix_credential_table.py +5 -8
  50. langflow/api/build.py +5 -4
  51. langflow/api/health_check_router.py +1 -1
  52. langflow/api/limited_background_tasks.py +1 -1
  53. langflow/api/log_router.py +1 -2
  54. langflow/api/utils.py +2 -2
  55. langflow/api/v1/base.py +1 -2
  56. langflow/api/v1/callback.py +4 -9
  57. langflow/api/v1/chat.py +6 -7
  58. langflow/api/v1/endpoints.py +15 -15
  59. langflow/api/v1/files.py +1 -1
  60. langflow/api/v1/flows.py +1 -1
  61. langflow/api/v1/knowledge_bases.py +1 -1
  62. langflow/api/v1/mcp.py +1 -1
  63. langflow/api/v1/mcp_projects.py +14 -5
  64. langflow/api/v1/mcp_utils.py +3 -3
  65. langflow/api/v1/openai_responses.py +4 -4
  66. langflow/api/v1/schemas.py +3 -38
  67. langflow/api/v1/starter_projects.py +61 -3
  68. langflow/api/v1/store.py +1 -1
  69. langflow/api/v1/validate.py +3 -3
  70. langflow/api/v1/voice_mode.py +2 -2
  71. langflow/api/v2/files.py +1 -1
  72. langflow/api/v2/mcp.py +2 -2
  73. langflow/base/__init__.py +11 -0
  74. langflow/base/agents/__init__.py +3 -0
  75. langflow/base/data/__init__.py +2 -4
  76. langflow/base/data/utils.py +2 -197
  77. langflow/base/embeddings/__init__.py +3 -0
  78. langflow/base/io/__init__.py +7 -0
  79. langflow/base/io/chat.py +5 -18
  80. langflow/base/io/text.py +2 -21
  81. langflow/base/knowledge_bases/__init__.py +3 -0
  82. langflow/base/memory/__init__.py +3 -0
  83. langflow/base/models/__init__.py +2 -2
  84. langflow/base/models/openai_constants.py +6 -120
  85. langflow/base/prompts/__init__.py +3 -0
  86. langflow/base/prompts/api_utils.py +2 -223
  87. langflow/base/textsplitters/__init__.py +3 -0
  88. langflow/base/tools/__init__.py +3 -0
  89. langflow/base/vectorstores/__init__.py +3 -0
  90. langflow/components/__init__.py +7 -259
  91. langflow/components/agents.py +6 -0
  92. langflow/components/anthropic.py +6 -0
  93. langflow/components/data.py +6 -0
  94. langflow/components/helpers.py +6 -0
  95. langflow/components/knowledge_bases/ingestion.py +13 -14
  96. langflow/components/knowledge_bases/retrieval.py +8 -7
  97. langflow/components/openai.py +6 -0
  98. langflow/components/processing/__init__.py +1 -117
  99. langflow/components/processing/converter.py +3 -149
  100. langflow/custom/__init__.py +26 -3
  101. langflow/custom/custom_component/__init__.py +4 -0
  102. langflow/custom/custom_component/component.py +20 -1738
  103. langflow/custom/custom_component/component_with_cache.py +1 -8
  104. langflow/custom/custom_component/custom_component.py +1 -552
  105. langflow/custom/utils.py +1 -872
  106. langflow/custom/validate.py +1 -0
  107. langflow/events/event_manager.py +18 -108
  108. langflow/field_typing/__init__.py +6 -6
  109. langflow/field_typing/constants.py +87 -122
  110. langflow/field_typing/range_spec.py +2 -32
  111. langflow/frontend/assets/{SlackIcon-Cc7Qnzki.js → SlackIcon-v88osOTA.js} +1 -1
  112. langflow/frontend/assets/{Wikipedia-7ulMZY46.js → Wikipedia-DD_S2k00.js} +1 -1
  113. langflow/frontend/assets/{Wolfram-By9PGsHS.js → Wolfram-EO2C5noN.js} +1 -1
  114. langflow/frontend/assets/{index-DVLIDc2_.js → index-1Gv1mfvk.js} +1 -1
  115. langflow/frontend/assets/{index-MVW4HTEk.js → index-7v-bzlzf.js} +1 -1
  116. langflow/frontend/assets/{index-CUzlcce2.js → index-9CbMazbV.js} +1 -1
  117. langflow/frontend/assets/{index-CU16NJD7.js → index-B8ZHP8g2.js} +1 -1
  118. langflow/frontend/assets/{index-v8eXbWlM.js → index-B8y2e6vN.js} +1 -1
  119. langflow/frontend/assets/{index-BX_asvRB.js → index-BBRUGsyr.js} +1 -1
  120. langflow/frontend/assets/{index-9FL5xjkL.js → index-BGwqQwlh.js} +1 -1
  121. langflow/frontend/assets/{index-BAn-AzCS.js → index-BIq-k-FG.js} +1 -1
  122. langflow/frontend/assets/{index-D5c2nNvp.js → index-BSN73YP8.js} +1 -1
  123. langflow/frontend/assets/{index-DMCerPJM.js → index-BU8R8jRn.js} +1 -1
  124. langflow/frontend/assets/{index-CvSoff-8.js → index-BV6yx8ey.js} +1 -1
  125. langflow/frontend/assets/{index-BISPW-f6.js → index-BYIsg-Eh.js} +1 -1
  126. langflow/frontend/assets/{index-GzOGB_fo.js → index-B_ksDBSQ.js} +1 -1
  127. langflow/frontend/assets/{index-BIqEYjNT.js → index-Ba1UOZ9A.js} +1 -1
  128. langflow/frontend/assets/{index-ByxGmq5p.js → index-Ba9tKRQg.js} +1 -1
  129. langflow/frontend/assets/{index-BLEWsL1U.js → index-Bbfaw8ca.js} +1 -1
  130. langflow/frontend/assets/{index-C_MhBX6R.js → index-BbuGqvAx.js} +1 -1
  131. langflow/frontend/assets/{index-RH_I78z_.js → index-BeoXu1YX.js} +1 -1
  132. langflow/frontend/assets/{index-cYFKmtmg.js → index-BfjZmOnH.js} +1 -1
  133. langflow/frontend/assets/{index-Bm9i8F4W.js → index-Bjzy_HZB.js} +1 -1
  134. langflow/frontend/assets/{index-_szO7sta.js → index-BofEkpYB.js} +1 -1
  135. langflow/frontend/assets/{index-DP1oE6QB.js → index-Bp7Mty2H.js} +1 -1
  136. langflow/frontend/assets/{index-CeswGUz3.js → index-BqX1H6yK.js} +1 -1
  137. langflow/frontend/assets/{index-C8pI0lzi.js → index-BqtBAJAN.js} +1 -1
  138. langflow/frontend/assets/{index-BusCv3bR.js → index-Bsfraj7A.js} +1 -1
  139. langflow/frontend/assets/{index-BWnKMRFJ.js → index-BtFl7fER.js} +1 -1
  140. langflow/frontend/assets/{index-DnlVWWU8.js → index-BvX993Sv.js} +1 -1
  141. langflow/frontend/assets/{index-C676MS3I.js → index-BvgQ2vzM.js} +1 -1
  142. langflow/frontend/assets/{index-DJ6HD14g.js → index-BwY98u8n.js} +1 -1
  143. langflow/frontend/assets/{index-C51yNvIL.js → index-C-RIJAOS.js} +1 -1
  144. langflow/frontend/assets/{index-DiblXWmk.js → index-C1K6A38P.js} +1 -1
  145. langflow/frontend/assets/{index-Co__gFM1.js → index-C3Vwhx0t.js} +1 -1
  146. langflow/frontend/assets/{index-Coi86oqP.js → index-C5XUG_gr.js} +1 -1
  147. langflow/frontend/assets/{index-jwzN3Jd_.js → index-C6ouLG9o.js} +1 -1
  148. langflow/frontend/assets/{index-CQQ-4XMS.js → index-C7ZJ_Z6f.js} +1 -1
  149. langflow/frontend/assets/{index-Bl7RpmrB.js → index-CCOGIwGY.js} +1 -1
  150. langflow/frontend/assets/{index-CVkIdc6y.js → index-CCcye2rt.js} +1 -1
  151. langflow/frontend/assets/{index-bMhyLtgS.js → index-CFR4yJQB.js} +1 -1
  152. langflow/frontend/assets/{index-aAgSKWb3.js → index-CIGmPP0H.js} +1 -1
  153. langflow/frontend/assets/{index-BGt6jQ4x.js → index-CJmMEa6d.js} +1 -1
  154. langflow/frontend/assets/{index-DX7JcSMz.js → index-CJxD7lyU.js} +1 -1
  155. langflow/frontend/assets/{index-BZ-A4K98.js → index-CL_vu6ut.js} +1 -1
  156. langflow/frontend/assets/{index-BMpKFGhI.js → index-COf3UnBn.js} +1 -1
  157. langflow/frontend/assets/{index-xN8ogFdo.js → index-CV9650h_.js} +1 -1
  158. langflow/frontend/assets/{index-OsUvqIUr.js → index-CVDzych0.js} +1 -1
  159. langflow/frontend/assets/{index-BH7AyHxp.js → index-CWIHsC4D.js} +1 -1
  160. langflow/frontend/assets/{index-mjwtJmkP.js → index-CXCnFZ0L.js} +1 -1
  161. langflow/frontend/assets/{index-3jlSQi5Y.js → index-Ca_Pw_Dn.js} +1 -1
  162. langflow/frontend/assets/{index-D-SnFlhU.js → index-Cbb3bX9e.js} +1 -1
  163. langflow/frontend/assets/{index--e0oQqZh.js → index-CcJtOz-Z.js} +1 -1
  164. langflow/frontend/assets/{index-S-sc0Cm9.js → index-CfTbTHEv.js} +1 -1
  165. langflow/frontend/assets/{index-Deu8rlaZ.js → index-ChoxDAgX.js} +1 -1
  166. langflow/frontend/assets/{index-lnF9Eqr2.js → index-Cn4gw8aE.js} +1 -1
  167. langflow/frontend/assets/{index-C_NwzK6j.js → index-CnpLg4zX.js} +1 -1
  168. langflow/frontend/assets/{index-DznH7Jbq.js → index-Cpao2omG.js} +1 -1
  169. langflow/frontend/assets/{index-DpWrk8mA.js → index-CqoxM01j.js} +1 -1
  170. langflow/frontend/assets/{index-Bw-TIIC6.js → index-CrHf2Ic1.js} +1 -1
  171. langflow/frontend/assets/{index-DmYLDQag.js → index-CrV0uIjp.js} +1 -1
  172. langflow/frontend/assets/{index-Dp7ZQyL3.js → index-CssADaak.js} +1 -1
  173. langflow/frontend/assets/{index-CNh0rwur.js → index-CtJdNLy9.js} +1 -1
  174. langflow/frontend/assets/{index-Ca1b7Iag.js → index-CyeWD2dh.js} +1 -1
  175. langflow/frontend/assets/{index-DcApTyZ7.js → index-D1xzD7uc.js} +1 -1
  176. langflow/frontend/assets/{index-B3GvPjhD.js → index-D6MuXC4L.js} +1 -1
  177. langflow/frontend/assets/{index-Cw0UComa.js → index-D8w9zvIF.js} +1 -1
  178. langflow/frontend/assets/{index-C-2MRYoJ.js → index-D98Gn0A6.js} +1 -1
  179. langflow/frontend/assets/{index-aWnZIwHd.js → index-DBhjpWkf.js} +1 -1
  180. langflow/frontend/assets/{index-nw3WF9lY.js → index-DCCRJzcY.js} +1 -1
  181. langflow/frontend/assets/{index-RjeC0kaX.js → index-DCTRSkEW.js} +1 -1
  182. langflow/frontend/assets/{index-B_kBTgxV.js → index-DCUfitVj.js} +1 -1
  183. langflow/frontend/assets/{index-ChsGhZn3.js → index-DDdz-Xcl.js} +1 -1
  184. langflow/frontend/assets/{index-7yAHPRxv.js → index-DGdMwZjG.js} +1 -1
  185. langflow/frontend/assets/{index-DjQElpEg.js → index-DGtl2vMw.js} +1 -1
  186. langflow/frontend/assets/{index-BCXhKCOK.js → index-DHVdkrni.js} +1 -1
  187. langflow/frontend/assets/{index-S8uJXTOq.js → index-DJBWwjgl.js} +1 -1
  188. langflow/frontend/assets/{index-qiVTWUuf.js → index-DMAkJ_qX.js} +1 -1
  189. langflow/frontend/assets/{index-D-WStJI6.js → index-DMEvEQI5.js} +1 -1
  190. langflow/frontend/assets/{index-BhqVw9WQ.js → index-DNGRoOsp.js} +1 -1
  191. langflow/frontend/assets/{index-Cu7vC48Y.js → index-DNT_TUTa.js} +1 -1
  192. langflow/frontend/assets/{index-Bhcv5M0n.js → index-DQKOH_9K.js} +1 -1
  193. langflow/frontend/assets/{index-CLcaktde.js → index-DQhqqtqQ.js} +1 -1
  194. langflow/frontend/assets/{index-DZVgPCio.js → index-DRM7KKnG.js} +1 -1
  195. langflow/frontend/assets/{index-uybez8MR.js → index-DSCtl3a5.js} +1 -1
  196. langflow/frontend/assets/{index-CJ5A6STv.js → index-DSLNlm0Z.js} +1 -1
  197. langflow/frontend/assets/{index-Drg8me2a.js → index-DT-PspE-.js} +1 -1
  198. langflow/frontend/assets/{index-DsEZjOcp.js → index-DTpbH-p8.js} +1 -1
  199. langflow/frontend/assets/{index-DrXXKzpD.js → index-DWV6MsIq.js} +1 -1
  200. langflow/frontend/assets/{index-4JIEdyIM.js → index-DWeL4US_.js} +1 -1
  201. langflow/frontend/assets/{index-BlDsBQ_1.js → index-DYKZHhpU.js} +1 -1
  202. langflow/frontend/assets/{index-DFY8YFbC.js → index-DZyQHiMR.js} +1 -1
  203. langflow/frontend/assets/{index-CKPZpkQk.js → index-Dc6qVuSa.js} +1 -1
  204. langflow/frontend/assets/{index-yyAaYjLR.js → index-DkYuicnC.js} +1 -1
  205. langflow/frontend/assets/{index-DmVt5Jlx.js → index-Dlj_2mMs.js} +1 -1
  206. langflow/frontend/assets/{index-BvRIG6P5.js → index-DmGJUrEp.js} +1 -1
  207. langflow/frontend/assets/{index-BWFIrwW1.js → index-Dn6hpCAZ.js} +1 -1
  208. langflow/frontend/assets/{index-Cb5G9Ifd.js → index-DrJU8Fgb.js} +1 -1
  209. langflow/frontend/assets/{index-COoTCxvs.js → index-DsWfdCzp.js} +1 -1
  210. langflow/frontend/assets/{index-ZjeocHyu.js → index-DvCPWs2_.js} +1 -1
  211. langflow/frontend/assets/{index-B5LHnuQR.js → index-DvPVq7OP.js} +1 -1
  212. langflow/frontend/assets/{index-BnCnYnao.js → index-Dw71ufW4.js} +1 -1
  213. langflow/frontend/assets/{index-AALDfCyt.js → index-DxkJactf.js} +1 -1
  214. langflow/frontend/assets/{index-k9jP5chN.js → index-Dz2GTphU.js} +1 -1
  215. langflow/frontend/assets/{index-BdjfHsrf.js → index-Fvd524_c.js} +1 -1
  216. langflow/frontend/assets/{index-AKVkmT4S.js → index-GAQ0Mk2M.js} +1 -1
  217. langflow/frontend/assets/{index-BZSa2qz7.js → index-Hm5-4ItD.js} +1 -1
  218. langflow/frontend/assets/{index-DbfS_UH-.js → index-IT67FzsK.js} +1 -1
  219. langflow/frontend/assets/{index-BLXN681C.js → index-ItYiij1i.js} +1 -1
  220. langflow/frontend/assets/{index-CiklyQU3.js → index-IuR_FEdB.js} +1 -1
  221. langflow/frontend/assets/{index-xV6ystWy.js → index-Jj60FQkv.js} +1 -1
  222. langflow/frontend/assets/{index-C_157Mb-.js → index-LlvshmVz.js} +1 -1
  223. langflow/frontend/assets/{index-CDphUsa3.js → index-LwKh3I_W.js} +1 -1
  224. langflow/frontend/assets/{index-BrDz-PxE.js → index-N-xxmKKH.js} +1 -1
  225. langflow/frontend/assets/{index-BsdLyYMY.js → index-RwpaHIAH.js} +1 -1
  226. langflow/frontend/assets/{index-Cu2Xr6_j.js → index-TVvsp-xh.js} +1 -1
  227. langflow/frontend/assets/{index-CPiM2oyj.js → index-TdE2u9zP.js} +1 -1
  228. langflow/frontend/assets/{index-DOj_QWqG.js → index-_x-NkYeW.js} +1 -1
  229. langflow/frontend/assets/{index-YJsAl7vm.js → index-a-YclEbW.js} +1 -1
  230. langflow/frontend/assets/{index-5-CSw2-z.js → index-e9MFKUCo.js} +1 -1
  231. langflow/frontend/assets/{index-BSwBVwyF.js → index-krPr8f2F.js} +1 -1
  232. langflow/frontend/assets/{index-Df6psZEj.js → index-kveiUWuL.js} +1 -1
  233. langflow/frontend/assets/{index-CF4_Og1m.js → index-lE3oSjJi.js} +1 -1
  234. langflow/frontend/assets/{index-C6nzdeYx.js → index-lM3UYg7F.js} +1 -1
  235. langflow/frontend/assets/{index-C-wnbBBY.js → index-nsRk3qgA.js} +1 -1
  236. langflow/frontend/assets/{index-D234yKNJ.js → index-pBO0SZLD.js} +4 -4
  237. langflow/frontend/assets/{index-BMvp94tO.js → index-pbZHsbuE.js} +1 -1
  238. langflow/frontend/assets/{index-hg2y9OAt.js → index-sfX3aWyp.js} +1 -1
  239. langflow/frontend/assets/{index-DTCrijba.js → index-xQz-VJ0-.js} +1 -1
  240. langflow/frontend/assets/{index-SB4rw8D5.js → index-yfcsaHS6.js} +1 -1
  241. langflow/frontend/assets/{index-C-bjC2sz.js → index-zcGjo9fx.js} +1 -1
  242. langflow/frontend/assets/lazyIconImports-BjqDmNYG.js +2 -0
  243. langflow/frontend/assets/{use-post-add-user-JUeLDErC.js → use-post-add-user-w3vpKSOB.js} +1 -1
  244. langflow/frontend/index.html +1 -1
  245. langflow/graph/__init__.py +4 -4
  246. langflow/helpers/data.py +2 -2
  247. langflow/helpers/flow.py +9 -7
  248. langflow/helpers/user.py +2 -2
  249. langflow/initial_setup/setup.py +9 -9
  250. langflow/initial_setup/starter_projects/Basic Prompt Chaining.json +119 -41
  251. langflow/initial_setup/starter_projects/Basic Prompting.json +45 -19
  252. langflow/initial_setup/starter_projects/Blog Writer.json +53 -21
  253. langflow/initial_setup/starter_projects/Custom Component Generator.json +121 -97
  254. langflow/initial_setup/starter_projects/Document Q&A.json +46 -18
  255. langflow/initial_setup/starter_projects/Financial Report Parser.json +49 -17
  256. langflow/initial_setup/starter_projects/Hybrid Search RAG.json +89 -50
  257. langflow/initial_setup/starter_projects/Image Sentiment Analysis.json +86 -22
  258. langflow/initial_setup/starter_projects/Instagram Copywriter.json +210 -57
  259. langflow/initial_setup/starter_projects/Invoice Summarizer.json +132 -35
  260. langflow/initial_setup/starter_projects/Knowledge Ingestion.json +8 -8
  261. langflow/initial_setup/starter_projects/Knowledge Retrieval.json +8 -8
  262. langflow/initial_setup/starter_projects/Market Research.json +174 -48
  263. langflow/initial_setup/starter_projects/Meeting Summary.json +102 -38
  264. langflow/initial_setup/starter_projects/Memory Chatbot.json +49 -21
  265. langflow/initial_setup/starter_projects/News Aggregator.json +140 -39
  266. langflow/initial_setup/starter_projects/Nvidia Remix.json +153 -181
  267. langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +132 -35
  268. langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json +106 -43
  269. langflow/initial_setup/starter_projects/Price Deal Finder.json +136 -39
  270. langflow/initial_setup/starter_projects/Research Agent.json +206 -53
  271. langflow/initial_setup/starter_projects/Research Translation Loop.json +66 -34
  272. langflow/initial_setup/starter_projects/SEO Keyword Generator.json +41 -15
  273. langflow/initial_setup/starter_projects/SaaS Pricing.json +128 -31
  274. langflow/initial_setup/starter_projects/Search agent.json +132 -35
  275. langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +422 -98
  276. langflow/initial_setup/starter_projects/Simple Agent.json +150 -42
  277. langflow/initial_setup/starter_projects/Social Media Agent.json +150 -42
  278. langflow/initial_setup/starter_projects/Text Sentiment Analysis.json +120 -24
  279. langflow/initial_setup/starter_projects/Travel Planning Agents.json +418 -94
  280. langflow/initial_setup/starter_projects/Twitter Thread Generator.json +69 -37
  281. langflow/initial_setup/starter_projects/Vector Store RAG.json +66 -38
  282. langflow/initial_setup/starter_projects/Youtube Analysis.json +191 -51
  283. langflow/initial_setup/starter_projects/basic_prompting.py +4 -4
  284. langflow/initial_setup/starter_projects/blog_writer.py +5 -5
  285. langflow/initial_setup/starter_projects/complex_agent.py +8 -8
  286. langflow/initial_setup/starter_projects/document_qa.py +5 -5
  287. langflow/initial_setup/starter_projects/hierarchical_tasks_agent.py +8 -8
  288. langflow/initial_setup/starter_projects/memory_chatbot.py +6 -6
  289. langflow/initial_setup/starter_projects/sequential_tasks_agent.py +7 -7
  290. langflow/initial_setup/starter_projects/vector_store_rag.py +8 -8
  291. langflow/inputs/__init__.py +3 -2
  292. langflow/inputs/constants.py +3 -2
  293. langflow/inputs/input_mixin.py +49 -310
  294. langflow/inputs/inputs.py +72 -703
  295. langflow/inputs/validators.py +2 -18
  296. langflow/interface/__init__.py +4 -0
  297. langflow/interface/components.py +3 -491
  298. langflow/interface/initialize/loading.py +7 -6
  299. langflow/interface/listing.py +3 -25
  300. langflow/interface/run.py +1 -1
  301. langflow/interface/utils.py +3 -111
  302. langflow/io/__init__.py +2 -2
  303. langflow/io/schema.py +11 -302
  304. langflow/load/__init__.py +4 -2
  305. langflow/load/utils.py +2 -96
  306. langflow/logging/__init__.py +2 -1
  307. langflow/logging/setup.py +1 -1
  308. langflow/main.py +8 -5
  309. langflow/memory.py +12 -6
  310. langflow/middleware.py +1 -1
  311. langflow/processing/process.py +7 -7
  312. langflow/schema/__init__.py +22 -5
  313. langflow/schema/artifact.py +1 -1
  314. langflow/schema/data.py +5 -303
  315. langflow/schema/dataframe.py +2 -205
  316. langflow/schema/graph.py +4 -45
  317. langflow/schema/image.py +2 -67
  318. langflow/schema/message.py +6 -470
  319. langflow/schema/playground_events.py +5 -6
  320. langflow/schema/schema.py +24 -117
  321. langflow/serialization/constants.py +3 -2
  322. langflow/serialization/serialization.py +1 -1
  323. langflow/server.py +1 -2
  324. langflow/services/__init__.py +1 -2
  325. langflow/services/auth/mcp_encryption.py +1 -1
  326. langflow/services/auth/service.py +1 -1
  327. langflow/services/auth/utils.py +5 -5
  328. langflow/services/cache/disk.py +2 -2
  329. langflow/services/cache/factory.py +2 -2
  330. langflow/services/cache/service.py +2 -2
  331. langflow/services/cache/utils.py +0 -11
  332. langflow/services/database/factory.py +1 -1
  333. langflow/services/database/models/flow/model.py +1 -1
  334. langflow/services/database/models/message/crud.py +2 -1
  335. langflow/services/database/models/transactions/crud.py +1 -1
  336. langflow/services/database/models/user/crud.py +1 -1
  337. langflow/services/database/service.py +2 -2
  338. langflow/services/database/utils.py +1 -2
  339. langflow/services/deps.py +12 -17
  340. langflow/services/enhanced_manager.py +71 -0
  341. langflow/services/factory.py +14 -7
  342. langflow/services/flow/flow_runner.py +4 -4
  343. langflow/services/job_queue/service.py +2 -1
  344. langflow/services/manager.py +14 -130
  345. langflow/services/schema.py +0 -1
  346. langflow/services/session/service.py +3 -2
  347. langflow/services/settings/__init__.py +0 -3
  348. langflow/services/settings/base.py +16 -549
  349. langflow/services/settings/factory.py +2 -21
  350. langflow/services/settings/feature_flags.py +2 -11
  351. langflow/services/settings/service.py +2 -31
  352. langflow/services/shared_component_cache/factory.py +1 -1
  353. langflow/services/socket/service.py +1 -1
  354. langflow/services/socket/utils.py +1 -8
  355. langflow/services/state/factory.py +1 -1
  356. langflow/services/state/service.py +3 -2
  357. langflow/services/storage/factory.py +2 -2
  358. langflow/services/storage/local.py +1 -2
  359. langflow/services/storage/s3.py +1 -2
  360. langflow/services/storage/service.py +2 -1
  361. langflow/services/store/factory.py +1 -1
  362. langflow/services/store/service.py +2 -2
  363. langflow/services/store/utils.py +1 -2
  364. langflow/services/task/service.py +2 -1
  365. langflow/services/task/temp_flow_cleanup.py +1 -1
  366. langflow/services/telemetry/factory.py +1 -1
  367. langflow/services/telemetry/service.py +2 -3
  368. langflow/services/tracing/arize_phoenix.py +3 -3
  369. langflow/services/tracing/base.py +1 -1
  370. langflow/services/tracing/factory.py +1 -1
  371. langflow/services/tracing/langfuse.py +2 -2
  372. langflow/services/tracing/langsmith.py +2 -2
  373. langflow/services/tracing/langwatch.py +4 -4
  374. langflow/services/tracing/opik.py +2 -2
  375. langflow/services/tracing/service.py +17 -11
  376. langflow/services/tracing/traceloop.py +2 -2
  377. langflow/services/tracing/utils.py +1 -1
  378. langflow/services/utils.py +54 -9
  379. langflow/services/variable/factory.py +1 -1
  380. langflow/services/variable/kubernetes.py +2 -3
  381. langflow/services/variable/kubernetes_secrets.py +1 -2
  382. langflow/services/variable/service.py +2 -3
  383. langflow/template/__init__.py +2 -9
  384. langflow/template/field/__init__.py +3 -0
  385. langflow/template/field/base.py +2 -256
  386. langflow/template/frontend_node.py +3 -0
  387. langflow/template/utils.py +2 -216
  388. langflow/utils/constants.py +28 -204
  389. langflow/utils/lazy_load.py +3 -14
  390. langflow/utils/schemas.py +2 -3
  391. langflow/utils/template_validation.py +2 -2
  392. langflow/utils/util.py +59 -479
  393. langflow/utils/validate.py +2 -488
  394. langflow/utils/voice_utils.py +1 -2
  395. langflow/worker.py +1 -1
  396. {langflow_base_nightly-0.5.1.dev3.dist-info → langflow_base_nightly-0.5.1.dev5.dist-info}/METADATA +2 -1
  397. langflow_base_nightly-0.5.1.dev5.dist-info/RECORD +633 -0
  398. langflow/base/agents/agent.py +0 -267
  399. langflow/base/agents/callback.py +0 -130
  400. langflow/base/agents/context.py +0 -109
  401. langflow/base/agents/crewai/__init__.py +0 -0
  402. langflow/base/agents/crewai/crew.py +0 -231
  403. langflow/base/agents/crewai/tasks.py +0 -12
  404. langflow/base/agents/default_prompts.py +0 -23
  405. langflow/base/agents/errors.py +0 -15
  406. langflow/base/agents/events.py +0 -346
  407. langflow/base/agents/utils.py +0 -205
  408. langflow/base/astra_assistants/__init__.py +0 -0
  409. langflow/base/astra_assistants/util.py +0 -171
  410. langflow/base/chains/__init__.py +0 -0
  411. langflow/base/chains/model.py +0 -19
  412. langflow/base/composio/__init__.py +0 -0
  413. langflow/base/composio/composio_base.py +0 -1297
  414. langflow/base/compressors/__init__.py +0 -0
  415. langflow/base/compressors/model.py +0 -60
  416. langflow/base/constants.py +0 -46
  417. langflow/base/curl/__init__.py +0 -0
  418. langflow/base/curl/parse.py +0 -188
  419. langflow/base/data/base_file.py +0 -685
  420. langflow/base/data/docling_utils.py +0 -245
  421. langflow/base/document_transformers/__init__.py +0 -0
  422. langflow/base/document_transformers/model.py +0 -43
  423. langflow/base/embeddings/aiml_embeddings.py +0 -62
  424. langflow/base/embeddings/model.py +0 -26
  425. langflow/base/flow_processing/__init__.py +0 -0
  426. langflow/base/flow_processing/utils.py +0 -86
  427. langflow/base/huggingface/__init__.py +0 -0
  428. langflow/base/huggingface/model_bridge.py +0 -133
  429. langflow/base/langchain_utilities/__init__.py +0 -0
  430. langflow/base/langchain_utilities/model.py +0 -35
  431. langflow/base/langchain_utilities/spider_constants.py +0 -1
  432. langflow/base/langwatch/__init__.py +0 -0
  433. langflow/base/langwatch/utils.py +0 -18
  434. langflow/base/mcp/__init__.py +0 -0
  435. langflow/base/mcp/constants.py +0 -2
  436. langflow/base/mcp/util.py +0 -1524
  437. langflow/base/memory/memory.py +0 -49
  438. langflow/base/memory/model.py +0 -38
  439. langflow/base/models/aiml_constants.py +0 -51
  440. langflow/base/models/anthropic_constants.py +0 -47
  441. langflow/base/models/aws_constants.py +0 -151
  442. langflow/base/models/chat_result.py +0 -76
  443. langflow/base/models/google_generative_ai_constants.py +0 -70
  444. langflow/base/models/groq_constants.py +0 -134
  445. langflow/base/models/model.py +0 -375
  446. langflow/base/models/model_input_constants.py +0 -299
  447. langflow/base/models/model_metadata.py +0 -41
  448. langflow/base/models/model_utils.py +0 -8
  449. langflow/base/models/novita_constants.py +0 -35
  450. langflow/base/models/ollama_constants.py +0 -49
  451. langflow/base/models/sambanova_constants.py +0 -18
  452. langflow/base/processing/__init__.py +0 -0
  453. langflow/base/prompts/utils.py +0 -61
  454. langflow/base/textsplitters/model.py +0 -28
  455. langflow/base/tools/base.py +0 -26
  456. langflow/base/tools/component_tool.py +0 -324
  457. langflow/base/tools/constants.py +0 -49
  458. langflow/base/tools/flow_tool.py +0 -131
  459. langflow/base/tools/run_flow.py +0 -227
  460. langflow/base/vectorstores/model.py +0 -193
  461. langflow/base/vectorstores/utils.py +0 -22
  462. langflow/base/vectorstores/vector_store_connection_decorator.py +0 -52
  463. langflow/components/FAISS/__init__.py +0 -34
  464. langflow/components/FAISS/faiss.py +0 -111
  465. langflow/components/Notion/__init__.py +0 -19
  466. langflow/components/Notion/add_content_to_page.py +0 -269
  467. langflow/components/Notion/create_page.py +0 -94
  468. langflow/components/Notion/list_database_properties.py +0 -68
  469. langflow/components/Notion/list_pages.py +0 -122
  470. langflow/components/Notion/list_users.py +0 -77
  471. langflow/components/Notion/page_content_viewer.py +0 -93
  472. langflow/components/Notion/search.py +0 -111
  473. langflow/components/Notion/update_page_property.py +0 -114
  474. langflow/components/_importing.py +0 -37
  475. langflow/components/agentql/__init__.py +0 -3
  476. langflow/components/agentql/agentql_api.py +0 -151
  477. langflow/components/agents/__init__.py +0 -4
  478. langflow/components/agents/agent.py +0 -554
  479. langflow/components/agents/mcp_component.py +0 -501
  480. langflow/components/aiml/__init__.py +0 -37
  481. langflow/components/aiml/aiml.py +0 -112
  482. langflow/components/aiml/aiml_embeddings.py +0 -37
  483. langflow/components/amazon/__init__.py +0 -36
  484. langflow/components/amazon/amazon_bedrock_embedding.py +0 -109
  485. langflow/components/amazon/amazon_bedrock_model.py +0 -124
  486. langflow/components/amazon/s3_bucket_uploader.py +0 -211
  487. langflow/components/anthropic/__init__.py +0 -34
  488. langflow/components/anthropic/anthropic.py +0 -187
  489. langflow/components/apify/__init__.py +0 -5
  490. langflow/components/apify/apify_actor.py +0 -325
  491. langflow/components/arxiv/__init__.py +0 -3
  492. langflow/components/arxiv/arxiv.py +0 -163
  493. langflow/components/assemblyai/__init__.py +0 -46
  494. langflow/components/assemblyai/assemblyai_get_subtitles.py +0 -83
  495. langflow/components/assemblyai/assemblyai_lemur.py +0 -183
  496. langflow/components/assemblyai/assemblyai_list_transcripts.py +0 -95
  497. langflow/components/assemblyai/assemblyai_poll_transcript.py +0 -72
  498. langflow/components/assemblyai/assemblyai_start_transcript.py +0 -188
  499. langflow/components/azure/__init__.py +0 -37
  500. langflow/components/azure/azure_openai.py +0 -95
  501. langflow/components/azure/azure_openai_embeddings.py +0 -83
  502. langflow/components/baidu/__init__.py +0 -32
  503. langflow/components/baidu/baidu_qianfan_chat.py +0 -113
  504. langflow/components/bing/__init__.py +0 -3
  505. langflow/components/bing/bing_search_api.py +0 -61
  506. langflow/components/cassandra/__init__.py +0 -40
  507. langflow/components/cassandra/cassandra.py +0 -264
  508. langflow/components/cassandra/cassandra_chat.py +0 -92
  509. langflow/components/cassandra/cassandra_graph.py +0 -238
  510. langflow/components/chains/__init__.py +0 -0
  511. langflow/components/chroma/__init__.py +0 -34
  512. langflow/components/chroma/chroma.py +0 -167
  513. langflow/components/cleanlab/__init__.py +0 -40
  514. langflow/components/cleanlab/cleanlab_evaluator.py +0 -157
  515. langflow/components/cleanlab/cleanlab_rag_evaluator.py +0 -254
  516. langflow/components/cleanlab/cleanlab_remediator.py +0 -131
  517. langflow/components/clickhouse/__init__.py +0 -34
  518. langflow/components/clickhouse/clickhouse.py +0 -135
  519. langflow/components/cloudflare/__init__.py +0 -32
  520. langflow/components/cloudflare/cloudflare.py +0 -81
  521. langflow/components/cohere/__init__.py +0 -40
  522. langflow/components/cohere/cohere_embeddings.py +0 -81
  523. langflow/components/cohere/cohere_models.py +0 -46
  524. langflow/components/cohere/cohere_rerank.py +0 -51
  525. langflow/components/composio/__init__.py +0 -73
  526. langflow/components/composio/composio_api.py +0 -268
  527. langflow/components/composio/dropbox_compnent.py +0 -11
  528. langflow/components/composio/github_composio.py +0 -11
  529. langflow/components/composio/gmail_composio.py +0 -38
  530. langflow/components/composio/googlecalendar_composio.py +0 -11
  531. langflow/components/composio/googlemeet_composio.py +0 -11
  532. langflow/components/composio/googletasks_composio.py +0 -8
  533. langflow/components/composio/linear_composio.py +0 -11
  534. langflow/components/composio/outlook_composio.py +0 -11
  535. langflow/components/composio/reddit_composio.py +0 -11
  536. langflow/components/composio/slack_composio.py +0 -11
  537. langflow/components/composio/slackbot_composio.py +0 -11
  538. langflow/components/composio/supabase_composio.py +0 -11
  539. langflow/components/composio/todoist_composio.py +0 -11
  540. langflow/components/composio/youtube_composio.py +0 -11
  541. langflow/components/confluence/__init__.py +0 -3
  542. langflow/components/confluence/confluence.py +0 -84
  543. langflow/components/couchbase/__init__.py +0 -34
  544. langflow/components/couchbase/couchbase.py +0 -102
  545. langflow/components/crewai/__init__.py +0 -49
  546. langflow/components/crewai/crewai.py +0 -107
  547. langflow/components/crewai/hierarchical_crew.py +0 -46
  548. langflow/components/crewai/hierarchical_task.py +0 -44
  549. langflow/components/crewai/sequential_crew.py +0 -52
  550. langflow/components/crewai/sequential_task.py +0 -73
  551. langflow/components/crewai/sequential_task_agent.py +0 -143
  552. langflow/components/custom_component/__init__.py +0 -34
  553. langflow/components/custom_component/custom_component.py +0 -31
  554. langflow/components/data/__init__.py +0 -25
  555. langflow/components/data/api_request.py +0 -545
  556. langflow/components/data/csv_to_data.py +0 -95
  557. langflow/components/data/directory.py +0 -113
  558. langflow/components/data/file.py +0 -586
  559. langflow/components/data/json_to_data.py +0 -98
  560. langflow/components/data/news_search.py +0 -164
  561. langflow/components/data/rss.py +0 -69
  562. langflow/components/data/sql_executor.py +0 -99
  563. langflow/components/data/url.py +0 -299
  564. langflow/components/data/web_search.py +0 -112
  565. langflow/components/data/webhook.py +0 -56
  566. langflow/components/datastax/__init__.py +0 -70
  567. langflow/components/datastax/astra_assistant_manager.py +0 -306
  568. langflow/components/datastax/astra_db.py +0 -69
  569. langflow/components/datastax/astra_vectorize.py +0 -124
  570. langflow/components/datastax/astradb_cql.py +0 -314
  571. langflow/components/datastax/astradb_graph.py +0 -319
  572. langflow/components/datastax/astradb_tool.py +0 -414
  573. langflow/components/datastax/astradb_vectorstore.py +0 -1285
  574. langflow/components/datastax/create_assistant.py +0 -58
  575. langflow/components/datastax/create_thread.py +0 -32
  576. langflow/components/datastax/dotenv.py +0 -35
  577. langflow/components/datastax/get_assistant.py +0 -37
  578. langflow/components/datastax/getenvvar.py +0 -30
  579. langflow/components/datastax/graph_rag.py +0 -141
  580. langflow/components/datastax/hcd.py +0 -314
  581. langflow/components/datastax/list_assistants.py +0 -25
  582. langflow/components/datastax/run.py +0 -89
  583. langflow/components/deactivated/__init__.py +0 -19
  584. langflow/components/deactivated/amazon_kendra.py +0 -66
  585. langflow/components/deactivated/chat_litellm_model.py +0 -158
  586. langflow/components/deactivated/code_block_extractor.py +0 -26
  587. langflow/components/deactivated/documents_to_data.py +0 -22
  588. langflow/components/deactivated/embed.py +0 -16
  589. langflow/components/deactivated/extract_key_from_data.py +0 -46
  590. langflow/components/deactivated/json_document_builder.py +0 -59
  591. langflow/components/deactivated/list_flows.py +0 -20
  592. langflow/components/deactivated/mcp_sse.py +0 -61
  593. langflow/components/deactivated/mcp_stdio.py +0 -62
  594. langflow/components/deactivated/merge_data.py +0 -93
  595. langflow/components/deactivated/message.py +0 -37
  596. langflow/components/deactivated/metal.py +0 -54
  597. langflow/components/deactivated/multi_query.py +0 -59
  598. langflow/components/deactivated/retriever.py +0 -43
  599. langflow/components/deactivated/selective_passthrough.py +0 -77
  600. langflow/components/deactivated/should_run_next.py +0 -40
  601. langflow/components/deactivated/split_text.py +0 -63
  602. langflow/components/deactivated/store_message.py +0 -24
  603. langflow/components/deactivated/sub_flow.py +0 -124
  604. langflow/components/deactivated/vectara_self_query.py +0 -76
  605. langflow/components/deactivated/vector_store.py +0 -24
  606. langflow/components/deepseek/__init__.py +0 -34
  607. langflow/components/deepseek/deepseek.py +0 -136
  608. langflow/components/docling/__init__.py +0 -43
  609. langflow/components/docling/chunk_docling_document.py +0 -186
  610. langflow/components/docling/docling_inline.py +0 -235
  611. langflow/components/docling/docling_remote.py +0 -193
  612. langflow/components/docling/export_docling_document.py +0 -117
  613. langflow/components/documentloaders/__init__.py +0 -0
  614. langflow/components/duckduckgo/__init__.py +0 -3
  615. langflow/components/duckduckgo/duck_duck_go_search_run.py +0 -92
  616. langflow/components/elastic/__init__.py +0 -37
  617. langflow/components/elastic/elasticsearch.py +0 -267
  618. langflow/components/elastic/opensearch.py +0 -243
  619. langflow/components/embeddings/__init__.py +0 -37
  620. langflow/components/embeddings/similarity.py +0 -76
  621. langflow/components/embeddings/text_embedder.py +0 -64
  622. langflow/components/exa/__init__.py +0 -3
  623. langflow/components/exa/exa_search.py +0 -68
  624. langflow/components/firecrawl/__init__.py +0 -43
  625. langflow/components/firecrawl/firecrawl_crawl_api.py +0 -88
  626. langflow/components/firecrawl/firecrawl_extract_api.py +0 -136
  627. langflow/components/firecrawl/firecrawl_map_api.py +0 -89
  628. langflow/components/firecrawl/firecrawl_scrape_api.py +0 -73
  629. langflow/components/git/__init__.py +0 -4
  630. langflow/components/git/git.py +0 -262
  631. langflow/components/git/gitextractor.py +0 -196
  632. langflow/components/glean/__init__.py +0 -3
  633. langflow/components/glean/glean_search_api.py +0 -173
  634. langflow/components/google/__init__.py +0 -17
  635. langflow/components/google/gmail.py +0 -192
  636. langflow/components/google/google_bq_sql_executor.py +0 -157
  637. langflow/components/google/google_drive.py +0 -92
  638. langflow/components/google/google_drive_search.py +0 -152
  639. langflow/components/google/google_generative_ai.py +0 -147
  640. langflow/components/google/google_generative_ai_embeddings.py +0 -141
  641. langflow/components/google/google_oauth_token.py +0 -89
  642. langflow/components/google/google_search_api_core.py +0 -68
  643. langflow/components/google/google_serper_api_core.py +0 -74
  644. langflow/components/groq/__init__.py +0 -34
  645. langflow/components/groq/groq.py +0 -140
  646. langflow/components/helpers/__init__.py +0 -52
  647. langflow/components/helpers/calculator_core.py +0 -89
  648. langflow/components/helpers/create_list.py +0 -40
  649. langflow/components/helpers/current_date.py +0 -42
  650. langflow/components/helpers/id_generator.py +0 -42
  651. langflow/components/helpers/memory.py +0 -251
  652. langflow/components/helpers/output_parser.py +0 -45
  653. langflow/components/helpers/store_message.py +0 -90
  654. langflow/components/homeassistant/__init__.py +0 -7
  655. langflow/components/homeassistant/home_assistant_control.py +0 -152
  656. langflow/components/homeassistant/list_home_assistant_states.py +0 -137
  657. langflow/components/huggingface/__init__.py +0 -37
  658. langflow/components/huggingface/huggingface.py +0 -197
  659. langflow/components/huggingface/huggingface_inference_api.py +0 -106
  660. langflow/components/ibm/__init__.py +0 -34
  661. langflow/components/ibm/watsonx.py +0 -203
  662. langflow/components/ibm/watsonx_embeddings.py +0 -135
  663. langflow/components/icosacomputing/__init__.py +0 -5
  664. langflow/components/icosacomputing/combinatorial_reasoner.py +0 -84
  665. langflow/components/input_output/__init__.py +0 -38
  666. langflow/components/input_output/chat.py +0 -120
  667. langflow/components/input_output/chat_output.py +0 -200
  668. langflow/components/input_output/text.py +0 -27
  669. langflow/components/input_output/text_output.py +0 -29
  670. langflow/components/jigsawstack/__init__.py +0 -23
  671. langflow/components/jigsawstack/ai_scrape.py +0 -126
  672. langflow/components/jigsawstack/ai_web_search.py +0 -136
  673. langflow/components/jigsawstack/file_read.py +0 -115
  674. langflow/components/jigsawstack/file_upload.py +0 -94
  675. langflow/components/jigsawstack/image_generation.py +0 -205
  676. langflow/components/jigsawstack/nsfw.py +0 -60
  677. langflow/components/jigsawstack/object_detection.py +0 -124
  678. langflow/components/jigsawstack/sentiment.py +0 -112
  679. langflow/components/jigsawstack/text_to_sql.py +0 -90
  680. langflow/components/jigsawstack/text_translate.py +0 -77
  681. langflow/components/jigsawstack/vocr.py +0 -107
  682. langflow/components/langchain_utilities/__init__.py +0 -109
  683. langflow/components/langchain_utilities/character.py +0 -53
  684. langflow/components/langchain_utilities/conversation.py +0 -52
  685. langflow/components/langchain_utilities/csv_agent.py +0 -107
  686. langflow/components/langchain_utilities/fake_embeddings.py +0 -26
  687. langflow/components/langchain_utilities/html_link_extractor.py +0 -35
  688. langflow/components/langchain_utilities/json_agent.py +0 -45
  689. langflow/components/langchain_utilities/langchain_hub.py +0 -126
  690. langflow/components/langchain_utilities/language_recursive.py +0 -49
  691. langflow/components/langchain_utilities/language_semantic.py +0 -138
  692. langflow/components/langchain_utilities/llm_checker.py +0 -39
  693. langflow/components/langchain_utilities/llm_math.py +0 -42
  694. langflow/components/langchain_utilities/natural_language.py +0 -61
  695. langflow/components/langchain_utilities/openai_tools.py +0 -53
  696. langflow/components/langchain_utilities/openapi.py +0 -48
  697. langflow/components/langchain_utilities/recursive_character.py +0 -60
  698. langflow/components/langchain_utilities/retrieval_qa.py +0 -83
  699. langflow/components/langchain_utilities/runnable_executor.py +0 -137
  700. langflow/components/langchain_utilities/self_query.py +0 -80
  701. langflow/components/langchain_utilities/spider.py +0 -142
  702. langflow/components/langchain_utilities/sql.py +0 -40
  703. langflow/components/langchain_utilities/sql_database.py +0 -35
  704. langflow/components/langchain_utilities/sql_generator.py +0 -78
  705. langflow/components/langchain_utilities/tool_calling.py +0 -59
  706. langflow/components/langchain_utilities/vector_store_info.py +0 -49
  707. langflow/components/langchain_utilities/vector_store_router.py +0 -33
  708. langflow/components/langchain_utilities/xml_agent.py +0 -71
  709. langflow/components/langwatch/__init__.py +0 -3
  710. langflow/components/langwatch/langwatch.py +0 -278
  711. langflow/components/link_extractors/__init__.py +0 -0
  712. langflow/components/lmstudio/__init__.py +0 -34
  713. langflow/components/lmstudio/lmstudioembeddings.py +0 -89
  714. langflow/components/lmstudio/lmstudiomodel.py +0 -129
  715. langflow/components/logic/__init__.py +0 -52
  716. langflow/components/logic/conditional_router.py +0 -171
  717. langflow/components/logic/data_conditional_router.py +0 -125
  718. langflow/components/logic/flow_tool.py +0 -110
  719. langflow/components/logic/listen.py +0 -29
  720. langflow/components/logic/loop.py +0 -125
  721. langflow/components/logic/notify.py +0 -88
  722. langflow/components/logic/pass_message.py +0 -35
  723. langflow/components/logic/run_flow.py +0 -71
  724. langflow/components/logic/sub_flow.py +0 -114
  725. langflow/components/maritalk/__init__.py +0 -32
  726. langflow/components/maritalk/maritalk.py +0 -52
  727. langflow/components/mem0/__init__.py +0 -3
  728. langflow/components/mem0/mem0_chat_memory.py +0 -136
  729. langflow/components/milvus/__init__.py +0 -34
  730. langflow/components/milvus/milvus.py +0 -115
  731. langflow/components/mistral/__init__.py +0 -37
  732. langflow/components/mistral/mistral.py +0 -114
  733. langflow/components/mistral/mistral_embeddings.py +0 -58
  734. langflow/components/models/__init__.py +0 -34
  735. langflow/components/models/embedding_model.py +0 -114
  736. langflow/components/models/language_model.py +0 -144
  737. langflow/components/mongodb/__init__.py +0 -34
  738. langflow/components/mongodb/mongodb_atlas.py +0 -213
  739. langflow/components/needle/__init__.py +0 -3
  740. langflow/components/needle/needle.py +0 -104
  741. langflow/components/notdiamond/__init__.py +0 -36
  742. langflow/components/notdiamond/notdiamond.py +0 -228
  743. langflow/components/novita/__init__.py +0 -32
  744. langflow/components/novita/novita.py +0 -130
  745. langflow/components/nvidia/__init__.py +0 -57
  746. langflow/components/nvidia/nvidia.py +0 -157
  747. langflow/components/nvidia/nvidia_embedding.py +0 -77
  748. langflow/components/nvidia/nvidia_ingest.py +0 -317
  749. langflow/components/nvidia/nvidia_rerank.py +0 -63
  750. langflow/components/nvidia/system_assist.py +0 -65
  751. langflow/components/olivya/__init__.py +0 -3
  752. langflow/components/olivya/olivya.py +0 -116
  753. langflow/components/ollama/__init__.py +0 -37
  754. langflow/components/ollama/ollama.py +0 -330
  755. langflow/components/ollama/ollama_embeddings.py +0 -106
  756. langflow/components/openai/__init__.py +0 -37
  757. langflow/components/openai/openai.py +0 -100
  758. langflow/components/openai/openai_chat_model.py +0 -158
  759. langflow/components/openrouter/__init__.py +0 -32
  760. langflow/components/openrouter/openrouter.py +0 -202
  761. langflow/components/output_parsers/__init__.py +0 -0
  762. langflow/components/perplexity/__init__.py +0 -34
  763. langflow/components/perplexity/perplexity.py +0 -75
  764. langflow/components/pgvector/__init__.py +0 -34
  765. langflow/components/pgvector/pgvector.py +0 -72
  766. langflow/components/pinecone/__init__.py +0 -34
  767. langflow/components/pinecone/pinecone.py +0 -134
  768. langflow/components/processing/alter_metadata.py +0 -108
  769. langflow/components/processing/batch_run.py +0 -205
  770. langflow/components/processing/combine_text.py +0 -39
  771. langflow/components/processing/create_data.py +0 -110
  772. langflow/components/processing/data_operations.py +0 -438
  773. langflow/components/processing/data_to_dataframe.py +0 -70
  774. langflow/components/processing/dataframe_operations.py +0 -321
  775. langflow/components/processing/extract_key.py +0 -53
  776. langflow/components/processing/filter_data.py +0 -42
  777. langflow/components/processing/filter_data_values.py +0 -88
  778. langflow/components/processing/json_cleaner.py +0 -103
  779. langflow/components/processing/lambda_filter.py +0 -154
  780. langflow/components/processing/llm_router.py +0 -499
  781. langflow/components/processing/merge_data.py +0 -90
  782. langflow/components/processing/message_to_data.py +0 -36
  783. langflow/components/processing/parse_data.py +0 -70
  784. langflow/components/processing/parse_dataframe.py +0 -68
  785. langflow/components/processing/parse_json_data.py +0 -90
  786. langflow/components/processing/parser.py +0 -143
  787. langflow/components/processing/prompt.py +0 -67
  788. langflow/components/processing/python_repl_core.py +0 -98
  789. langflow/components/processing/regex.py +0 -82
  790. langflow/components/processing/save_file.py +0 -208
  791. langflow/components/processing/select_data.py +0 -48
  792. langflow/components/processing/split_text.py +0 -141
  793. langflow/components/processing/structured_output.py +0 -202
  794. langflow/components/processing/update_data.py +0 -160
  795. langflow/components/prototypes/__init__.py +0 -34
  796. langflow/components/prototypes/python_function.py +0 -73
  797. langflow/components/qdrant/__init__.py +0 -34
  798. langflow/components/qdrant/qdrant.py +0 -109
  799. langflow/components/redis/__init__.py +0 -37
  800. langflow/components/redis/redis.py +0 -89
  801. langflow/components/redis/redis_chat.py +0 -43
  802. langflow/components/sambanova/__init__.py +0 -32
  803. langflow/components/sambanova/sambanova.py +0 -84
  804. langflow/components/scrapegraph/__init__.py +0 -40
  805. langflow/components/scrapegraph/scrapegraph_markdownify_api.py +0 -64
  806. langflow/components/scrapegraph/scrapegraph_search_api.py +0 -64
  807. langflow/components/scrapegraph/scrapegraph_smart_scraper_api.py +0 -71
  808. langflow/components/searchapi/__init__.py +0 -36
  809. langflow/components/searchapi/search.py +0 -79
  810. langflow/components/serpapi/__init__.py +0 -3
  811. langflow/components/serpapi/serp.py +0 -115
  812. langflow/components/serper/__init__.py +0 -3
  813. langflow/components/serper/google_serper_api_core.py +0 -74
  814. langflow/components/supabase/__init__.py +0 -37
  815. langflow/components/supabase/supabase.py +0 -76
  816. langflow/components/tavily/__init__.py +0 -4
  817. langflow/components/tavily/tavily_extract.py +0 -117
  818. langflow/components/tavily/tavily_search.py +0 -212
  819. langflow/components/textsplitters/__init__.py +0 -0
  820. langflow/components/toolkits/__init__.py +0 -0
  821. langflow/components/tools/__init__.py +0 -72
  822. langflow/components/tools/calculator.py +0 -103
  823. langflow/components/tools/google_search_api.py +0 -45
  824. langflow/components/tools/google_serper_api.py +0 -115
  825. langflow/components/tools/python_code_structured_tool.py +0 -327
  826. langflow/components/tools/python_repl.py +0 -97
  827. langflow/components/tools/search_api.py +0 -87
  828. langflow/components/tools/searxng.py +0 -145
  829. langflow/components/tools/serp_api.py +0 -119
  830. langflow/components/tools/tavily_search_tool.py +0 -344
  831. langflow/components/tools/wikidata_api.py +0 -102
  832. langflow/components/tools/wikipedia_api.py +0 -49
  833. langflow/components/tools/yahoo_finance.py +0 -124
  834. langflow/components/twelvelabs/__init__.py +0 -52
  835. langflow/components/twelvelabs/convert_astra_results.py +0 -84
  836. langflow/components/twelvelabs/pegasus_index.py +0 -311
  837. langflow/components/twelvelabs/split_video.py +0 -291
  838. langflow/components/twelvelabs/text_embeddings.py +0 -57
  839. langflow/components/twelvelabs/twelvelabs_pegasus.py +0 -408
  840. langflow/components/twelvelabs/video_embeddings.py +0 -100
  841. langflow/components/twelvelabs/video_file.py +0 -179
  842. langflow/components/unstructured/__init__.py +0 -3
  843. langflow/components/unstructured/unstructured.py +0 -121
  844. langflow/components/upstash/__init__.py +0 -34
  845. langflow/components/upstash/upstash.py +0 -124
  846. langflow/components/vectara/__init__.py +0 -37
  847. langflow/components/vectara/vectara.py +0 -97
  848. langflow/components/vectara/vectara_rag.py +0 -164
  849. langflow/components/vectorstores/__init__.py +0 -34
  850. langflow/components/vectorstores/local_db.py +0 -261
  851. langflow/components/vertexai/__init__.py +0 -37
  852. langflow/components/vertexai/vertexai.py +0 -71
  853. langflow/components/vertexai/vertexai_embeddings.py +0 -67
  854. langflow/components/weaviate/__init__.py +0 -34
  855. langflow/components/weaviate/weaviate.py +0 -89
  856. langflow/components/wikipedia/__init__.py +0 -4
  857. langflow/components/wikipedia/wikidata.py +0 -86
  858. langflow/components/wikipedia/wikipedia.py +0 -53
  859. langflow/components/wolframalpha/__init__.py +0 -3
  860. langflow/components/wolframalpha/wolfram_alpha_api.py +0 -54
  861. langflow/components/xai/__init__.py +0 -32
  862. langflow/components/xai/xai.py +0 -167
  863. langflow/components/yahoosearch/__init__.py +0 -3
  864. langflow/components/yahoosearch/yahoo.py +0 -137
  865. langflow/components/youtube/__init__.py +0 -52
  866. langflow/components/youtube/channel.py +0 -227
  867. langflow/components/youtube/comments.py +0 -231
  868. langflow/components/youtube/playlist.py +0 -33
  869. langflow/components/youtube/search.py +0 -120
  870. langflow/components/youtube/trending.py +0 -285
  871. langflow/components/youtube/video_details.py +0 -263
  872. langflow/components/youtube/youtube_transcripts.py +0 -118
  873. langflow/components/zep/__init__.py +0 -3
  874. langflow/components/zep/zep.py +0 -44
  875. langflow/custom/attributes.py +0 -86
  876. langflow/custom/code_parser/__init__.py +0 -3
  877. langflow/custom/code_parser/code_parser.py +0 -361
  878. langflow/custom/custom_component/base_component.py +0 -118
  879. langflow/custom/dependency_analyzer.py +0 -165
  880. langflow/custom/directory_reader/__init__.py +0 -3
  881. langflow/custom/directory_reader/directory_reader.py +0 -359
  882. langflow/custom/directory_reader/utils.py +0 -171
  883. langflow/custom/eval.py +0 -12
  884. langflow/custom/schema.py +0 -32
  885. langflow/custom/tree_visitor.py +0 -21
  886. langflow/frontend/assets/lazyIconImports-Ci-S9xBA.js +0 -2
  887. langflow/graph/edge/__init__.py +0 -0
  888. langflow/graph/edge/base.py +0 -277
  889. langflow/graph/edge/schema.py +0 -119
  890. langflow/graph/edge/utils.py +0 -0
  891. langflow/graph/graph/__init__.py +0 -0
  892. langflow/graph/graph/ascii.py +0 -202
  893. langflow/graph/graph/base.py +0 -2185
  894. langflow/graph/graph/constants.py +0 -58
  895. langflow/graph/graph/runnable_vertices_manager.py +0 -133
  896. langflow/graph/graph/schema.py +0 -53
  897. langflow/graph/graph/state_model.py +0 -66
  898. langflow/graph/graph/utils.py +0 -1024
  899. langflow/graph/schema.py +0 -75
  900. langflow/graph/state/__init__.py +0 -0
  901. langflow/graph/state/model.py +0 -237
  902. langflow/graph/utils.py +0 -229
  903. langflow/graph/vertex/__init__.py +0 -0
  904. langflow/graph/vertex/base.py +0 -811
  905. langflow/graph/vertex/constants.py +0 -0
  906. langflow/graph/vertex/exceptions.py +0 -4
  907. langflow/graph/vertex/param_handler.py +0 -255
  908. langflow/graph/vertex/schema.py +0 -26
  909. langflow/graph/vertex/utils.py +0 -19
  910. langflow/graph/vertex/vertex_types.py +0 -489
  911. langflow/legacy_custom/__init__.py +0 -0
  912. langflow/legacy_custom/customs.py +0 -16
  913. langflow/load/load.py +0 -250
  914. langflow/logging/logger.py +0 -369
  915. langflow/processing/utils.py +0 -25
  916. langflow/schema/openai_responses_schemas.py +0 -74
  917. langflow/schema/serialize.py +0 -13
  918. langflow/services/chat/config.py +0 -2
  919. langflow/services/settings/auth.py +0 -130
  920. langflow/services/settings/constants.py +0 -31
  921. langflow/services/settings/manager.py +0 -49
  922. langflow/services/settings/utils.py +0 -40
  923. langflow/template/field/prompt.py +0 -2
  924. langflow/template/frontend_node/__init__.py +0 -6
  925. langflow/template/frontend_node/base.py +0 -212
  926. langflow/template/frontend_node/constants.py +0 -65
  927. langflow/template/frontend_node/custom_components.py +0 -97
  928. langflow/template/template/__init__.py +0 -0
  929. langflow/template/template/base.py +0 -99
  930. langflow/utils/async_helpers.py +0 -42
  931. langflow/utils/concurrency.py +0 -60
  932. langflow/utils/util_strings.py +0 -56
  933. langflow_base_nightly-0.5.1.dev3.dist-info/RECORD +0 -1159
  934. {langflow_base_nightly-0.5.1.dev3.dist-info → langflow_base_nightly-0.5.1.dev5.dist-info}/WHEEL +0 -0
  935. {langflow_base_nightly-0.5.1.dev3.dist-info → langflow_base_nightly-0.5.1.dev5.dist-info}/entry_points.txt +0 -0
@@ -1 +1 @@
1
- import{j as c,r}from"./index-D234yKNJ.js";const s=t=>c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"8.4 8.4 51.2 51.2",...t,children:c.jsx("path",{fill:"#0071BA",d:"M34 8.4C19.813 8.4 8.4 19.813 8.4 34S19.813 59.6 34 59.6 59.6 48.187 59.6 34 48.187 8.4 34 8.4zm9.493 13.226c.64.32 1.28.747 1.707 1.173 1.173 1.173 1.6 2.24 1.28 3.2l-5.44 7.467c-.106.32-.106 1.066 0 1.387l5.333 7.253c.107.32.213.96.107 1.28-.854 1.6-2.348 2.773-3.84 3.307-.32 0-.534 0-.747-.106l-7.253-5.333c-.32-.214-.854-.214-1.281-.107l-7.573 5.547c-.64.213-1.173.106-1.813-.32-1.387-.96-2.347-2.133-2.667-3.413 0-.427 0-.533.213-.747l5.333-7.359a1.705 1.705 0 0 0-.213-1.6l-5.12-6.934c-.106-.106-.106-.32-.213-.533.107-2.027 1.6-3.093 3.307-4.267.32-.107.854-.107 1.173 0l7.36 5.546c.427.107 1.174.107 1.494-.106L42 21.626c.533-.213.96-.106 1.387 0h.106z"})}),l=r.forwardRef((t,o)=>c.jsx(s,{ref:o,...t}));export{l as IFixIcon};
1
+ import{j as c,r}from"./index-pBO0SZLD.js";const s=t=>c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"8.4 8.4 51.2 51.2",...t,children:c.jsx("path",{fill:"#0071BA",d:"M34 8.4C19.813 8.4 8.4 19.813 8.4 34S19.813 59.6 34 59.6 59.6 48.187 59.6 34 48.187 8.4 34 8.4zm9.493 13.226c.64.32 1.28.747 1.707 1.173 1.173 1.173 1.6 2.24 1.28 3.2l-5.44 7.467c-.106.32-.106 1.066 0 1.387l5.333 7.253c.107.32.213.96.107 1.28-.854 1.6-2.348 2.773-3.84 3.307-.32 0-.534 0-.747-.106l-7.253-5.333c-.32-.214-.854-.214-1.281-.107l-7.573 5.547c-.64.213-1.173.106-1.813-.32-1.387-.96-2.347-2.133-2.667-3.413 0-.427 0-.533.213-.747l5.333-7.359a1.705 1.705 0 0 0-.213-1.6l-5.12-6.934c-.106-.106-.106-.32-.213-.533.107-2.027 1.6-3.093 3.307-4.267.32-.107.854-.107 1.173 0l7.36 5.546c.427.107 1.174.107 1.494-.106L42 21.626c.533-.213.96-.106 1.387 0h.106z"})}),l=r.forwardRef((t,o)=>c.jsx(s,{ref:o,...t}));export{l as IFixIcon};
@@ -1 +1 @@
1
- import{j as s,r as t}from"./index-D234yKNJ.js";const r=o=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 800 800",width:"1em",height:"1em",...o,children:[s.jsxs("radialGradient",{id:"Facebook_Messenger_logo_2020_svg__a",cx:101.9,cy:809,r:1.1,gradientTransform:"matrix(800 0 0 -800 -81386 648000)",gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,style:{stopColor:"#09f"}}),s.jsx("stop",{offset:.6,style:{stopColor:"#a033ff"}}),s.jsx("stop",{offset:.9,style:{stopColor:"#ff5280"}}),s.jsx("stop",{offset:1,style:{stopColor:"#ff7061"}})]}),s.jsx("path",{fill:"url(#Facebook_Messenger_logo_2020_svg__a)",d:"M400 0C174.7 0 0 165.1 0 388c0 116.6 47.8 217.4 125.6 287 6.5 5.8 10.5 14 10.7 22.8l2.2 71.2a32 32 0 0 0 44.9 28.3l79.4-35c6.7-3 14.3-3.5 21.4-1.6 36.5 10 75.3 15.4 115.8 15.4 225.3 0 400-165.1 400-388S625.3 0 400 0z"}),s.jsx("path",{fill:"#FFF",d:"m159.8 501.5 117.5-186.4a60 60 0 0 1 86.8-16l93.5 70.1a24 24 0 0 0 28.9-.1l126.2-95.8c16.8-12.8 38.8 7.4 27.6 25.3L522.7 484.9a60 60 0 0 1-86.8 16l-93.5-70.1a24 24 0 0 0-28.9.1l-126.2 95.8c-16.8 12.8-38.8-7.3-27.5-25.2z"})]}),l=t.forwardRef((o,e)=>s.jsx(r,{ref:e,...o}));export{l as FBIcon};
1
+ import{j as s,r as t}from"./index-pBO0SZLD.js";const r=o=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 800 800",width:"1em",height:"1em",...o,children:[s.jsxs("radialGradient",{id:"Facebook_Messenger_logo_2020_svg__a",cx:101.9,cy:809,r:1.1,gradientTransform:"matrix(800 0 0 -800 -81386 648000)",gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,style:{stopColor:"#09f"}}),s.jsx("stop",{offset:.6,style:{stopColor:"#a033ff"}}),s.jsx("stop",{offset:.9,style:{stopColor:"#ff5280"}}),s.jsx("stop",{offset:1,style:{stopColor:"#ff7061"}})]}),s.jsx("path",{fill:"url(#Facebook_Messenger_logo_2020_svg__a)",d:"M400 0C174.7 0 0 165.1 0 388c0 116.6 47.8 217.4 125.6 287 6.5 5.8 10.5 14 10.7 22.8l2.2 71.2a32 32 0 0 0 44.9 28.3l79.4-35c6.7-3 14.3-3.5 21.4-1.6 36.5 10 75.3 15.4 115.8 15.4 225.3 0 400-165.1 400-388S625.3 0 400 0z"}),s.jsx("path",{fill:"#FFF",d:"m159.8 501.5 117.5-186.4a60 60 0 0 1 86.8-16l93.5 70.1a24 24 0 0 0 28.9-.1l126.2-95.8c16.8-12.8 38.8 7.4 27.6 25.3L522.7 484.9a60 60 0 0 1-86.8 16l-93.5-70.1a24 24 0 0 0-28.9.1l-126.2 95.8c-16.8 12.8-38.8-7.3-27.5-25.2z"})]}),l=t.forwardRef((o,e)=>s.jsx(r,{ref:e,...o}));export{l as FBIcon};
@@ -1 +1 @@
1
- import{j as l,r as v}from"./index-D234yKNJ.js";const s=a=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 42 52",...a,children:[l.jsx("path",{fill:"#fff",d:"M0 12.383v28.652c0 .357.19.688.5.866l16.595 9.58a.993.993 0 001 0l19.184-11.072a1 1 0 00.5-.866V10.887a.998.998 0 00-.5-.866l-6.111-3.526a.999.999 0 00-.999 0l-2.874 1.659V4.837a.998.998 0 00-.5-.866L20.684.442a1.003 1.003 0 00-1 0l-5.903 3.409a1 1 0 00-.5.866v7.44l-.36.208v-.493a1 1 0 00-.5-.866L7.405 8.107a1.005 1.005 0 00-1 0l-5.904 3.41a.998.998 0 00-.501.866z"}),l.jsx("path",{fill:"#213B41",d:"M0 12.383v28.652c0 .357.19.688.5.866l16.595 9.58a.993.993 0 001 0l19.184-11.072a1 1 0 00.5-.866V10.887a.998.998 0 00-.5-.866l-6.111-3.526a.999.999 0 00-.999 0l-2.874 1.659V4.837a.998.998 0 00-.5-.866L20.684.442a1.003 1.003 0 00-1 0l-5.903 3.409a1 1 0 00-.5.866v7.44l-.36.208v-.493a1 1 0 00-.5-.866L7.405 8.107a1.005 1.005 0 00-1 0l-5.904 3.41a.998.998 0 00-.501.866zm1.5.865l4.019 2.318v7.728c0 .01.005.019.006.029a.363.363 0 00.009.065.46.46 0 00.043.128c.005.009.004.019.01.028.004.007.013.01.017.017a.464.464 0 00.12.125c.017.012.027.03.046.041l5.466 3.159c.007.004.016.002.024.006.068.035.142.06.224.06a.49.49 0 00.225-.059c.019-.01.034-.023.052-.035a.503.503 0 00.129-.127c.008-.012.021-.016.029-.029.005-.009.005-.02.01-.028.015-.03.022-.061.031-.094.009-.033.018-.065.02-.099 0-.01.006-.019.006-.029v-7.15l5.11 2.949v27.498L1.5 40.747V13.248zm34.278-2.361l-4.899 2.831-5.111-2.952.776-.449 4.124-2.38 5.11 2.95zM25.293 4.836l-4.902 2.829-5.11-2.949 4.902-2.832 5.11 2.952zM10.92 11.872l-4.901 2.829-4.018-2.318 4.903-2.832 4.016 2.321zm10.036 4.638l3.312-1.909v4.187c0 .021.01.039.012.06a.384.384 0 00.062.186c.016.027.031.054.053.078.022.026.049.047.076.068.018.013.028.03.047.041l5.36 3.093-5.88 3.394v-7.151c0-.01-.005-.019-.006-.029a.48.48 0 00-.051-.192c-.005-.009-.004-.02-.01-.028-.006-.009-.014-.014-.02-.022a.512.512 0 00-.142-.142c-.009-.006-.013-.015-.022-.02l-2.791-1.614zm4.312-4.877l5.111 2.952v6.863l-5.111-2.949v-6.866zm-12.782 6.804l4.903-2.833 5.109 2.952-4.903 2.829-5.109-2.948zm-1.501 7.15l-3.966-2.292 3.966-2.29v4.582zm1.435-11.202l1.86-1.074 2.542 1.466-4.402 2.543v-2.935zm2.36-8.803l5.111 2.949v6.863l-5.111-2.949V5.582z"})]}),r=v.forwardRef((a,c)=>l.jsx(s,{ref:c,...a}));export{r as LangwatchIcon};
1
+ import{j as l,r as v}from"./index-pBO0SZLD.js";const s=a=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 42 52",...a,children:[l.jsx("path",{fill:"#fff",d:"M0 12.383v28.652c0 .357.19.688.5.866l16.595 9.58a.993.993 0 001 0l19.184-11.072a1 1 0 00.5-.866V10.887a.998.998 0 00-.5-.866l-6.111-3.526a.999.999 0 00-.999 0l-2.874 1.659V4.837a.998.998 0 00-.5-.866L20.684.442a1.003 1.003 0 00-1 0l-5.903 3.409a1 1 0 00-.5.866v7.44l-.36.208v-.493a1 1 0 00-.5-.866L7.405 8.107a1.005 1.005 0 00-1 0l-5.904 3.41a.998.998 0 00-.501.866z"}),l.jsx("path",{fill:"#213B41",d:"M0 12.383v28.652c0 .357.19.688.5.866l16.595 9.58a.993.993 0 001 0l19.184-11.072a1 1 0 00.5-.866V10.887a.998.998 0 00-.5-.866l-6.111-3.526a.999.999 0 00-.999 0l-2.874 1.659V4.837a.998.998 0 00-.5-.866L20.684.442a1.003 1.003 0 00-1 0l-5.903 3.409a1 1 0 00-.5.866v7.44l-.36.208v-.493a1 1 0 00-.5-.866L7.405 8.107a1.005 1.005 0 00-1 0l-5.904 3.41a.998.998 0 00-.501.866zm1.5.865l4.019 2.318v7.728c0 .01.005.019.006.029a.363.363 0 00.009.065.46.46 0 00.043.128c.005.009.004.019.01.028.004.007.013.01.017.017a.464.464 0 00.12.125c.017.012.027.03.046.041l5.466 3.159c.007.004.016.002.024.006.068.035.142.06.224.06a.49.49 0 00.225-.059c.019-.01.034-.023.052-.035a.503.503 0 00.129-.127c.008-.012.021-.016.029-.029.005-.009.005-.02.01-.028.015-.03.022-.061.031-.094.009-.033.018-.065.02-.099 0-.01.006-.019.006-.029v-7.15l5.11 2.949v27.498L1.5 40.747V13.248zm34.278-2.361l-4.899 2.831-5.111-2.952.776-.449 4.124-2.38 5.11 2.95zM25.293 4.836l-4.902 2.829-5.11-2.949 4.902-2.832 5.11 2.952zM10.92 11.872l-4.901 2.829-4.018-2.318 4.903-2.832 4.016 2.321zm10.036 4.638l3.312-1.909v4.187c0 .021.01.039.012.06a.384.384 0 00.062.186c.016.027.031.054.053.078.022.026.049.047.076.068.018.013.028.03.047.041l5.36 3.093-5.88 3.394v-7.151c0-.01-.005-.019-.006-.029a.48.48 0 00-.051-.192c-.005-.009-.004-.02-.01-.028-.006-.009-.014-.014-.02-.022a.512.512 0 00-.142-.142c-.009-.006-.013-.015-.022-.02l-2.791-1.614zm4.312-4.877l5.111 2.952v6.863l-5.111-2.949v-6.866zm-12.782 6.804l4.903-2.833 5.109 2.952-4.903 2.829-5.109-2.948zm-1.501 7.15l-3.966-2.292 3.966-2.29v4.582zm1.435-11.202l1.86-1.074 2.542 1.466-4.402 2.543v-2.935zm2.36-8.803l5.111 2.949v6.863l-5.111-2.949V5.582z"})]}),r=v.forwardRef((a,c)=>l.jsx(s,{ref:c,...a}));export{r as LangwatchIcon};
@@ -1 +1 @@
1
- import{j as l,r as s}from"./index-D234yKNJ.js";const e=o=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",width:"23px",height:"23px",children:[l.jsx("rect",{width:"16",height:"16",x:"12",y:"16",fill:"#fff",transform:"rotate(-90 20 24)"}),l.jsx("polygon",{fill:"#1e88e5",points:"3,17 3,31 8,32 13,31 13,17 8,16"}),l.jsx("path",{fill:"#4caf50",d:"M37,24v14c0,1.657-1.343,3-3,3H13l-1-5l1-5h14v-7l5-1L37,24z"}),l.jsx("path",{fill:"#fbc02d",d:"M37,10v14H27v-7H13l-1-5l1-5h21C35.657,7,37,8.343,37,10z"}),l.jsx("path",{fill:"#1565c0",d:"M13,31v10H6c-1.657,0-3-1.343-3-3v-7H13z"}),l.jsx("polygon",{fill:"#e53935",points:"13,7 13,17 3,17"}),l.jsx("polygon",{fill:"#2e7d32",points:"38,24 37,32.45 27,24 37,15.55"}),l.jsx("path",{fill:"#4caf50",d:"M46,10.11v27.78c0,0.84-0.98,1.31-1.63,0.78L37,32.45v-16.9l7.37-6.22C45.02,8.8,46,9.27,46,10.11z"})]}),p=s.forwardRef((o,t)=>l.jsx(e,{ref:t,...o}));export{p as GooglemeetIcon};
1
+ import{j as l,r as s}from"./index-pBO0SZLD.js";const e=o=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",width:"23px",height:"23px",children:[l.jsx("rect",{width:"16",height:"16",x:"12",y:"16",fill:"#fff",transform:"rotate(-90 20 24)"}),l.jsx("polygon",{fill:"#1e88e5",points:"3,17 3,31 8,32 13,31 13,17 8,16"}),l.jsx("path",{fill:"#4caf50",d:"M37,24v14c0,1.657-1.343,3-3,3H13l-1-5l1-5h14v-7l5-1L37,24z"}),l.jsx("path",{fill:"#fbc02d",d:"M37,10v14H27v-7H13l-1-5l1-5h21C35.657,7,37,8.343,37,10z"}),l.jsx("path",{fill:"#1565c0",d:"M13,31v10H6c-1.657,0-3-1.343-3-3v-7H13z"}),l.jsx("polygon",{fill:"#e53935",points:"13,7 13,17 3,17"}),l.jsx("polygon",{fill:"#2e7d32",points:"38,24 37,32.45 27,24 37,15.55"}),l.jsx("path",{fill:"#4caf50",d:"M46,10.11v27.78c0,0.84-0.98,1.31-1.63,0.78L37,32.45v-16.9l7.37-6.22C45.02,8.8,46,9.27,46,10.11z"})]}),p=s.forwardRef((o,t)=>l.jsx(e,{ref:t,...o}));export{p as GooglemeetIcon};
@@ -1 +1 @@
1
- import{j as o,r}from"./index-D234yKNJ.js";const p=s=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",x:"0",y:"0",version:"1.1",viewBox:"0 0 588.1 604.9",...s,children:[o.jsxs("linearGradient",{id:"SVGOLIV_1_",x1:"465.383",x2:"912.298",y1:"2359.246",y2:"2617.273",gradientTransform:"matrix(-.239 .2282 .2631 .0186 -197.96 95.535)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_1_)",strokeMiterlimit:"10",strokeWidth:"10.3319",d:"M202.8 350.2c3.8 3.6 9.7 6 17.1 7.1 16.4 2.4 38.8-2 61.6-8.3 19.4-5.4 41.7-13 60.3-24.9 43.4-27.6 43.6-53.3 25.6-68.2-25.5-21-80.3-10.5-119.9 21.7-26.8 21.8-52.4 47.8-48.7 65.1.4 3 1.9 5.4 4 7.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000028318286484138508780000010327150227960584361_",x1:"649.932",x2:"1096.701",y1:"2194.804",y2:"2452.747",gradientTransform:"matrix(-.2358 .2682 .3092 -.0232 -221.463 118.996)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000028318286484138508780000010327150227960584361_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M196.8 365.1c5 3.1 12.3 4.5 21.1 4.4 19.5-.2 44.7-8.2 70-18.2 21.6-8.5 46.1-19.8 65.5-34.7 45.4-34.7 40.9-60.7 17.2-72.8-33.5-17.1-95.2 2.2-135.4 41-27.1 26.2-52.1 56.5-44.6 73.4 1.2 2.9 3.3 5.2 6.2 6.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000132773528077608087620000000941740443662469009_",x1:"780.542",x2:"1227.455",y1:"2011.592",y2:"2269.617",gradientTransform:"matrix(-.2246 .3079 .355 -.0728 -244.354 146.45)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000132773528077608087620000000941740443662469009_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M192.6 381.2c6.4 2.3 15.2 2.6 25.4 1.1 22.6-3.4 50.5-15.4 78-29.5 23.5-12.1 49.9-27.3 69.7-45.4 46.3-42.2 36.4-67.7 6.6-76.1-42.1-11.9-110.3 17.5-149.8 63-26.7 30.7-50.2 65.2-38.3 81.1 1.9 2.5 4.7 4.5 8.4 5.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000147183726487581896660000016077111679480586641_",x1:"861.41",x2:"1308.205",y1:"1816.571",y2:"2074.529",gradientTransform:"matrix(-.2043 .3462 .3991 -.13 -265.915 177.717)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000147183726487581896660000016077111679480586641_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M190.6 398c7.9 1.3 18.1.2 29.7-3 25.6-7 55.8-23.6 85.2-42.2 25.1-15.9 53-35.5 72.7-56.9 46-50 29.8-74-6.4-77.7-51.1-5.3-124.9 35.2-162.4 87.4-25.3 35.2-46.3 73.8-29.6 87.9 2.7 2.3 6.4 3.7 10.8 4.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000031911910229338081120000000029962339121350590_",x1:"899.682",x2:"1346.457",y1:"1617.081",y2:"1875.026",gradientTransform:"matrix(-.1737 .3815 .4399 -.1947 -285.295 212.66)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000031911910229338081120000000029962339121350590_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M191.5 415.2c9.4 0 21.1-2.7 33.9-7.7 28.5-11.1 60.5-32.7 91.2-56.1 26.2-20 55-44.2 74-68.9 44.3-57.7 21-79.4-21.7-77.3-60.4 2.9-138.7 55.4-172.7 114-22.9 39.5-40.2 81.7-18.2 93.3q5.4 2.7 13.5 2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000013179304289864300650000010789520586139200134_",x1:"901.453",x2:"1348.278",y1:"1419.033",y2:"1677.008",gradientTransform:"matrix(-.1316 .4122 .4753 -.2665 -301.284 251.039)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000013179304289864300650000010789520586139200134_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M195.6 432.5c10.9-1.5 24-6.1 38-13.2 31.1-15.8 64.3-42.6 95.7-71.1 26.8-24.4 55.8-53.4 73.3-81.3 40.8-65.2 9.8-83.3-39.5-74.5-69.6 12.5-150.9 78-179.7 142.4-19.4 43.5-31.7 88.8-4 97 4.5 1.3 10 1.5 16.2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000077314713149883013570000008498170906235921843_",x1:"872.247",x2:"1319.061",y1:"1227.275",y2:"1485.243",gradientTransform:"matrix(-.0771 .4365 .5032 -.3444 -312.808 292.205)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000077314713149883013570000008498170906235921843_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M203.6 449.2c12.4-3.2 26.8-10 41.7-19.4 33.2-20.9 66.8-53.2 98.1-87 26.7-28.9 55-62.7 70.2-93.6 35.5-72.3-3.9-85.5-59.6-68.8-78.6 23.7-161 102.7-182.6 172.2-14.5 47-20.4 94.5 13.2 98.4 5.5.7 12 0 19-1.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000065756110155121615190000003343827430780919682_",x1:"818.489",x2:"1265.246",y1:"1045.168",y2:"1303.103",gradientTransform:"matrix(-.0092 .4522 .5214 -.4275 -318.684 335.613)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000065756110155121615190000003343827430780919682_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M216 464.8c13.8-5.2 29.3-14.3 44.9-26.2 34.7-26.3 67.9-64.2 97.9-103.3 25.7-33.4 52.4-72 64.3-105.5 27.9-78.5-20.3-85.6-81.9-59.8-87 36.5-168.2 129.2-180.4 202.7-8.2 49.6-6.4 98.5 33.4 97 6.6-.2 13.9-1.9 21.8-4.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000012469361102575799340000003264233064296944020_",x1:"745.461",x2:"1192.29",y1:"876.299",y2:"1134.277",gradientTransform:"matrix(.0725 .4572 .5271 -.514 -317.426 380.176)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000012469361102575799340000003264233064296944020_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M233.2 478.5c15.1-7.5 31.4-19.1 47.4-33.5 35.5-32.1 67.1-75.6 94.8-119.7 23.7-37.7 47.6-80.9 55.3-116.6 18-83.6-39.4-83-106.1-47.2-94.4 50.6-171.7 157.1-172.4 233.1-.4 51.3 10.7 100.3 56.7 92.4 7.5-1.3 15.7-4.2 24.3-8.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000060019446214792813530000001840114263871061921_",x1:"658.243",x2:"1105.071",y1:"722.469",y2:"980.445",gradientTransform:"matrix(.1684 .4492 .5179 -.6022 -307.826 424.98)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000060019446214792813530000001840114263871061921_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M255.8 489.6c16.2-9.9 32.9-24.3 48.9-41.4 35.4-38 64-86.9 88.1-135.8 20.6-41.8 40.4-89.1 42.8-126.4 5.5-87.1-61-77.4-132-30.6C203.2 221.5 133 341.1 146.2 417.9c8.9 51.8 30.9 99.4 82.9 84.1 8.5-2.5 17.5-6.7 26.7-12.4z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000106138383444935956710000011214948857413435783_",x1:"561.238",x2:"1008.009",y1:"585.184",y2:"843.127",gradientTransform:"matrix(.2784 .4259 .491 -.6896 -288.431 468.608)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000106138383444935956710000011214948857413435783_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M284 497.2c17-12.6 33.8-29.7 49.2-49.5 34.1-43.9 58.4-97.8 77.4-150.9 16.2-45.4 30.6-96.3 26.5-134.2-9.6-88.6-85.1-68.2-159-9.8C173.7 235.4 114 367.2 143.5 442.4c19.9 50.8 54.3 95.2 111.8 71.5 9.4-3.8 19.1-9.5 28.7-16.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000049930197591990372350000017738021054741380767_",x1:"458.886",x2:"905.647",y1:"465.171",y2:"723.109",gradientTransform:"matrix(.4019 .3848 .4436 -.7734 -257.83 509.47)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000049930197591990372350000017738021054741380767_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M318.2 500.4c17.4-15.4 33.8-35.3 48-57.7 31.5-49.7 49.8-107.9 62.1-164.5 10.5-48.4 17.8-101.9 6-139.5-27.4-87.8-111.3-55.2-186.4 15.5-106.2 100-151.2 242.3-103.1 313.4 32.5 48 80.6 87.3 143.1 54.3 10.2-5.5 20.4-12.8 30.3-21.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000041984961206652126170000010685195358269274023_",x1:"354.636",x2:"801.419",y1:"362.583",y2:"620.533",gradientTransform:"matrix(.5378 .3236 .3731 -.8503 -214.764 545.752)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000041984961206652126170000010685195358269274023_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M358.6 498c17.4-18.3 32.8-41 45.2-65.9 27.5-55.1 38.1-116.7 41.9-175.7 3.3-50.4 2-105.6-18.6-141.5-48.1-84.1-139.7-37.8-214 45.4C108.1 278.1 82 428.7 151 492.7c46.6 43.2 109.7 75.2 176.2 31.8 11-7.1 21.5-16 31.4-26.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000046333153451202103420000007209590310843223729_",x1:"251.45",x2:"698.253",y1:"277.221",y2:"535.183",gradientTransform:"matrix(.6844 .2403 .2771 -.9165 -158.123 575.43)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000046333153451202103420000007209590310843223729_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M405 489.3c16.8-21.2 30.6-46.6 40.4-73.6 21.8-60 22.8-123.7 16.4-183.8-5.4-51.3-17.2-106.7-47.7-139.7-71.4-77.1-169.3-15.8-240.3 79.9-100.3 135.4-103 291.3-11 344.8 62.1 36.1 141.3 58.2 210.6 4 11.5-8.8 22.1-19.5 31.6-31.6z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000085214784022730279250000004563241609719432855_",x1:"151.621",x2:"598.429",y1:"208.348",y2:"466.313",gradientTransform:"matrix(.8395 .133 .1533 -.9679 -86.762 596.322)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000085214784022730279250000004563241609719432855_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M457.4 473c15.6-24.1 27-51.8 33.4-80.6 14.3-63.9 3.7-128.3-14.8-187.8-15.8-50.9-39.6-104.8-81.1-133.1-97.2-66.3-199.7 11-264.5 118.9-91.6 152.4-66 310.1 50.7 349.3 78.8 26.5 174.9 36.1 245.5-29.6 11.6-10.9 21.9-23.4 30.8-37.1z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000140707760598298352560000014678655576441594297_",x1:"57.255",x2:"504.045",y1:"154.911",y2:"412.866",gradientTransform:"matrix(1 0 0 -1 0 606)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000140707760598298352560000014678655576441594297_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M515.2 448.3c13.7-26.7 21.8-56.5 24-86.6 4.8-66.7-19.3-129.9-51.7-186.9-27.7-48.8-65.3-99.3-118.8-121.2-125.1-51.3-230 43-285.5 162-78.4 168.3-19.6 323 123.2 343.9 96.4 14.1 209.9 8.5 279.8-69 11.6-12.7 21.2-27 29-42.2z"})]}),e=r.forwardRef((s,t)=>o.jsx(p,{ref:t,...s}));export{e as OlivyaIcon};
1
+ import{j as o,r}from"./index-pBO0SZLD.js";const p=s=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",x:"0",y:"0",version:"1.1",viewBox:"0 0 588.1 604.9",...s,children:[o.jsxs("linearGradient",{id:"SVGOLIV_1_",x1:"465.383",x2:"912.298",y1:"2359.246",y2:"2617.273",gradientTransform:"matrix(-.239 .2282 .2631 .0186 -197.96 95.535)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_1_)",strokeMiterlimit:"10",strokeWidth:"10.3319",d:"M202.8 350.2c3.8 3.6 9.7 6 17.1 7.1 16.4 2.4 38.8-2 61.6-8.3 19.4-5.4 41.7-13 60.3-24.9 43.4-27.6 43.6-53.3 25.6-68.2-25.5-21-80.3-10.5-119.9 21.7-26.8 21.8-52.4 47.8-48.7 65.1.4 3 1.9 5.4 4 7.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000028318286484138508780000010327150227960584361_",x1:"649.932",x2:"1096.701",y1:"2194.804",y2:"2452.747",gradientTransform:"matrix(-.2358 .2682 .3092 -.0232 -221.463 118.996)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000028318286484138508780000010327150227960584361_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M196.8 365.1c5 3.1 12.3 4.5 21.1 4.4 19.5-.2 44.7-8.2 70-18.2 21.6-8.5 46.1-19.8 65.5-34.7 45.4-34.7 40.9-60.7 17.2-72.8-33.5-17.1-95.2 2.2-135.4 41-27.1 26.2-52.1 56.5-44.6 73.4 1.2 2.9 3.3 5.2 6.2 6.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000132773528077608087620000000941740443662469009_",x1:"780.542",x2:"1227.455",y1:"2011.592",y2:"2269.617",gradientTransform:"matrix(-.2246 .3079 .355 -.0728 -244.354 146.45)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000132773528077608087620000000941740443662469009_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M192.6 381.2c6.4 2.3 15.2 2.6 25.4 1.1 22.6-3.4 50.5-15.4 78-29.5 23.5-12.1 49.9-27.3 69.7-45.4 46.3-42.2 36.4-67.7 6.6-76.1-42.1-11.9-110.3 17.5-149.8 63-26.7 30.7-50.2 65.2-38.3 81.1 1.9 2.5 4.7 4.5 8.4 5.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000147183726487581896660000016077111679480586641_",x1:"861.41",x2:"1308.205",y1:"1816.571",y2:"2074.529",gradientTransform:"matrix(-.2043 .3462 .3991 -.13 -265.915 177.717)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000147183726487581896660000016077111679480586641_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M190.6 398c7.9 1.3 18.1.2 29.7-3 25.6-7 55.8-23.6 85.2-42.2 25.1-15.9 53-35.5 72.7-56.9 46-50 29.8-74-6.4-77.7-51.1-5.3-124.9 35.2-162.4 87.4-25.3 35.2-46.3 73.8-29.6 87.9 2.7 2.3 6.4 3.7 10.8 4.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000031911910229338081120000000029962339121350590_",x1:"899.682",x2:"1346.457",y1:"1617.081",y2:"1875.026",gradientTransform:"matrix(-.1737 .3815 .4399 -.1947 -285.295 212.66)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000031911910229338081120000000029962339121350590_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M191.5 415.2c9.4 0 21.1-2.7 33.9-7.7 28.5-11.1 60.5-32.7 91.2-56.1 26.2-20 55-44.2 74-68.9 44.3-57.7 21-79.4-21.7-77.3-60.4 2.9-138.7 55.4-172.7 114-22.9 39.5-40.2 81.7-18.2 93.3q5.4 2.7 13.5 2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000013179304289864300650000010789520586139200134_",x1:"901.453",x2:"1348.278",y1:"1419.033",y2:"1677.008",gradientTransform:"matrix(-.1316 .4122 .4753 -.2665 -301.284 251.039)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000013179304289864300650000010789520586139200134_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M195.6 432.5c10.9-1.5 24-6.1 38-13.2 31.1-15.8 64.3-42.6 95.7-71.1 26.8-24.4 55.8-53.4 73.3-81.3 40.8-65.2 9.8-83.3-39.5-74.5-69.6 12.5-150.9 78-179.7 142.4-19.4 43.5-31.7 88.8-4 97 4.5 1.3 10 1.5 16.2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000077314713149883013570000008498170906235921843_",x1:"872.247",x2:"1319.061",y1:"1227.275",y2:"1485.243",gradientTransform:"matrix(-.0771 .4365 .5032 -.3444 -312.808 292.205)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000077314713149883013570000008498170906235921843_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M203.6 449.2c12.4-3.2 26.8-10 41.7-19.4 33.2-20.9 66.8-53.2 98.1-87 26.7-28.9 55-62.7 70.2-93.6 35.5-72.3-3.9-85.5-59.6-68.8-78.6 23.7-161 102.7-182.6 172.2-14.5 47-20.4 94.5 13.2 98.4 5.5.7 12 0 19-1.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000065756110155121615190000003343827430780919682_",x1:"818.489",x2:"1265.246",y1:"1045.168",y2:"1303.103",gradientTransform:"matrix(-.0092 .4522 .5214 -.4275 -318.684 335.613)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000065756110155121615190000003343827430780919682_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M216 464.8c13.8-5.2 29.3-14.3 44.9-26.2 34.7-26.3 67.9-64.2 97.9-103.3 25.7-33.4 52.4-72 64.3-105.5 27.9-78.5-20.3-85.6-81.9-59.8-87 36.5-168.2 129.2-180.4 202.7-8.2 49.6-6.4 98.5 33.4 97 6.6-.2 13.9-1.9 21.8-4.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000012469361102575799340000003264233064296944020_",x1:"745.461",x2:"1192.29",y1:"876.299",y2:"1134.277",gradientTransform:"matrix(.0725 .4572 .5271 -.514 -317.426 380.176)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000012469361102575799340000003264233064296944020_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M233.2 478.5c15.1-7.5 31.4-19.1 47.4-33.5 35.5-32.1 67.1-75.6 94.8-119.7 23.7-37.7 47.6-80.9 55.3-116.6 18-83.6-39.4-83-106.1-47.2-94.4 50.6-171.7 157.1-172.4 233.1-.4 51.3 10.7 100.3 56.7 92.4 7.5-1.3 15.7-4.2 24.3-8.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000060019446214792813530000001840114263871061921_",x1:"658.243",x2:"1105.071",y1:"722.469",y2:"980.445",gradientTransform:"matrix(.1684 .4492 .5179 -.6022 -307.826 424.98)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000060019446214792813530000001840114263871061921_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M255.8 489.6c16.2-9.9 32.9-24.3 48.9-41.4 35.4-38 64-86.9 88.1-135.8 20.6-41.8 40.4-89.1 42.8-126.4 5.5-87.1-61-77.4-132-30.6C203.2 221.5 133 341.1 146.2 417.9c8.9 51.8 30.9 99.4 82.9 84.1 8.5-2.5 17.5-6.7 26.7-12.4z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000106138383444935956710000011214948857413435783_",x1:"561.238",x2:"1008.009",y1:"585.184",y2:"843.127",gradientTransform:"matrix(.2784 .4259 .491 -.6896 -288.431 468.608)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000106138383444935956710000011214948857413435783_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M284 497.2c17-12.6 33.8-29.7 49.2-49.5 34.1-43.9 58.4-97.8 77.4-150.9 16.2-45.4 30.6-96.3 26.5-134.2-9.6-88.6-85.1-68.2-159-9.8C173.7 235.4 114 367.2 143.5 442.4c19.9 50.8 54.3 95.2 111.8 71.5 9.4-3.8 19.1-9.5 28.7-16.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000049930197591990372350000017738021054741380767_",x1:"458.886",x2:"905.647",y1:"465.171",y2:"723.109",gradientTransform:"matrix(.4019 .3848 .4436 -.7734 -257.83 509.47)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000049930197591990372350000017738021054741380767_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M318.2 500.4c17.4-15.4 33.8-35.3 48-57.7 31.5-49.7 49.8-107.9 62.1-164.5 10.5-48.4 17.8-101.9 6-139.5-27.4-87.8-111.3-55.2-186.4 15.5-106.2 100-151.2 242.3-103.1 313.4 32.5 48 80.6 87.3 143.1 54.3 10.2-5.5 20.4-12.8 30.3-21.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000041984961206652126170000010685195358269274023_",x1:"354.636",x2:"801.419",y1:"362.583",y2:"620.533",gradientTransform:"matrix(.5378 .3236 .3731 -.8503 -214.764 545.752)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000041984961206652126170000010685195358269274023_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M358.6 498c17.4-18.3 32.8-41 45.2-65.9 27.5-55.1 38.1-116.7 41.9-175.7 3.3-50.4 2-105.6-18.6-141.5-48.1-84.1-139.7-37.8-214 45.4C108.1 278.1 82 428.7 151 492.7c46.6 43.2 109.7 75.2 176.2 31.8 11-7.1 21.5-16 31.4-26.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000046333153451202103420000007209590310843223729_",x1:"251.45",x2:"698.253",y1:"277.221",y2:"535.183",gradientTransform:"matrix(.6844 .2403 .2771 -.9165 -158.123 575.43)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000046333153451202103420000007209590310843223729_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M405 489.3c16.8-21.2 30.6-46.6 40.4-73.6 21.8-60 22.8-123.7 16.4-183.8-5.4-51.3-17.2-106.7-47.7-139.7-71.4-77.1-169.3-15.8-240.3 79.9-100.3 135.4-103 291.3-11 344.8 62.1 36.1 141.3 58.2 210.6 4 11.5-8.8 22.1-19.5 31.6-31.6z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000085214784022730279250000004563241609719432855_",x1:"151.621",x2:"598.429",y1:"208.348",y2:"466.313",gradientTransform:"matrix(.8395 .133 .1533 -.9679 -86.762 596.322)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000085214784022730279250000004563241609719432855_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M457.4 473c15.6-24.1 27-51.8 33.4-80.6 14.3-63.9 3.7-128.3-14.8-187.8-15.8-50.9-39.6-104.8-81.1-133.1-97.2-66.3-199.7 11-264.5 118.9-91.6 152.4-66 310.1 50.7 349.3 78.8 26.5 174.9 36.1 245.5-29.6 11.6-10.9 21.9-23.4 30.8-37.1z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000140707760598298352560000014678655576441594297_",x1:"57.255",x2:"504.045",y1:"154.911",y2:"412.866",gradientTransform:"matrix(1 0 0 -1 0 606)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000140707760598298352560000014678655576441594297_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M515.2 448.3c13.7-26.7 21.8-56.5 24-86.6 4.8-66.7-19.3-129.9-51.7-186.9-27.7-48.8-65.3-99.3-118.8-121.2-125.1-51.3-230 43-285.5 162-78.4 168.3-19.6 323 123.2 343.9 96.4 14.1 209.9 8.5 279.8-69 11.6-12.7 21.2-27 29-42.2z"})]}),e=r.forwardRef((s,t)=>o.jsx(p,{ref:t,...s}));export{e as OlivyaIcon};
@@ -1 +1 @@
1
- import{j as C,r as o}from"./index-D234yKNJ.js";const r=s=>C.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"400",height:"400",viewBox:"0 0 400 400",fill:"none",...s,children:[C.jsx("path",{d:"M320 301.762C320 310.012 313.25 316.762 305 316.762H95C86.75 316.762 80 310.012 80 301.762V211.762C80 203.512 84.77 191.993 90.61 186.153L189.39 87.3725C195.22 81.5425 204.77 81.5425 210.6 87.3725L309.39 186.162C315.22 191.992 320 203.522 320 211.772V301.772V301.762Z",fill:"#F2F4F9"}),C.jsx("path",{d:"M309.39 186.153L210.61 87.3725C204.78 81.5425 195.23 81.5425 189.4 87.3725L90.61 186.153C84.78 191.983 80 203.512 80 211.762V301.762C80 310.012 86.75 316.762 95 316.762H187.27L146.64 276.132C144.55 276.852 142.32 277.262 140 277.262C128.7 277.262 119.5 268.062 119.5 256.762C119.5 245.462 128.7 236.262 140 236.262C151.3 236.262 160.5 245.462 160.5 256.762C160.5 259.092 160.09 261.322 159.37 263.412L191 295.042V179.162C184.2 175.822 179.5 168.842 179.5 160.772C179.5 149.472 188.7 140.272 200 140.272C211.3 140.272 220.5 149.472 220.5 160.772C220.5 168.842 215.8 175.822 209 179.162V260.432L240.46 228.972C239.84 227.012 239.5 224.932 239.5 222.772C239.5 211.472 248.7 202.272 260 202.272C271.3 202.272 280.5 211.472 280.5 222.772C280.5 234.072 271.3 243.272 260 243.272C257.5 243.272 255.12 242.802 252.91 241.982L209 285.892V316.772H305C313.25 316.772 320 310.022 320 301.772V211.772C320 203.522 315.23 192.002 309.39 186.162V186.153Z",fill:"#18BCF2"})]}),i=o.forwardRef((s,t)=>C.jsx(r,{ref:t,...s}));export{i as HomeAssistantIcon};
1
+ import{j as C,r as o}from"./index-pBO0SZLD.js";const r=s=>C.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"400",height:"400",viewBox:"0 0 400 400",fill:"none",...s,children:[C.jsx("path",{d:"M320 301.762C320 310.012 313.25 316.762 305 316.762H95C86.75 316.762 80 310.012 80 301.762V211.762C80 203.512 84.77 191.993 90.61 186.153L189.39 87.3725C195.22 81.5425 204.77 81.5425 210.6 87.3725L309.39 186.162C315.22 191.992 320 203.522 320 211.772V301.772V301.762Z",fill:"#F2F4F9"}),C.jsx("path",{d:"M309.39 186.153L210.61 87.3725C204.78 81.5425 195.23 81.5425 189.4 87.3725L90.61 186.153C84.78 191.983 80 203.512 80 211.762V301.762C80 310.012 86.75 316.762 95 316.762H187.27L146.64 276.132C144.55 276.852 142.32 277.262 140 277.262C128.7 277.262 119.5 268.062 119.5 256.762C119.5 245.462 128.7 236.262 140 236.262C151.3 236.262 160.5 245.462 160.5 256.762C160.5 259.092 160.09 261.322 159.37 263.412L191 295.042V179.162C184.2 175.822 179.5 168.842 179.5 160.772C179.5 149.472 188.7 140.272 200 140.272C211.3 140.272 220.5 149.472 220.5 160.772C220.5 168.842 215.8 175.822 209 179.162V260.432L240.46 228.972C239.84 227.012 239.5 224.932 239.5 222.772C239.5 211.472 248.7 202.272 260 202.272C271.3 202.272 280.5 211.472 280.5 222.772C280.5 234.072 271.3 243.272 260 243.272C257.5 243.272 255.12 242.802 252.91 241.982L209 285.892V316.772H305C313.25 316.772 320 310.022 320 301.772V211.772C320 203.522 315.23 192.002 309.39 186.162V186.153Z",fill:"#18BCF2"})]}),i=o.forwardRef((s,t)=>C.jsx(r,{ref:t,...s}));export{i as HomeAssistantIcon};
@@ -1 +1 @@
1
- import{j as h,r as o}from"./index-D234yKNJ.js";const r=s=>h.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",height:"2222",viewBox:"0 0 9 8",width:"2500",...s,children:[h.jsx("path",{d:"m0 7h1v1h-1z",fill:"#f00"}),h.jsx("path",{d:"m0 0h1v7h-1zm2 0h1v8h-1zm2 0h1v8h-1zm2 0h1v8h-1zm2 3.25h1v1.5h-1z",fill:"#fc0"})]}),i=o.forwardRef((s,t)=>h.jsx(r,{ref:t,...s}));export{i as ClickhouseIcon};
1
+ import{j as h,r as o}from"./index-pBO0SZLD.js";const r=s=>h.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",height:"2222",viewBox:"0 0 9 8",width:"2500",...s,children:[h.jsx("path",{d:"m0 7h1v1h-1z",fill:"#f00"}),h.jsx("path",{d:"m0 0h1v7h-1zm2 0h1v8h-1zm2 0h1v8h-1zm2 0h1v8h-1zm2 3.25h1v1.5h-1z",fill:"#fc0"})]}),i=o.forwardRef((s,t)=>h.jsx(r,{ref:t,...s}));export{i as ClickhouseIcon};
@@ -1 +1 @@
1
- import{j as c,r}from"./index-D234yKNJ.js";const e=s=>c.jsxs("svg",{viewBox:"0 0 16 16",width:"23px",height:"23px",...s,children:[c.jsx("path",{fill:"#fe3155",d:"M8,0c4.418,0,8,3.582,8,8s-3.582,8-8,8s-8-3.582-8-8S3.582,0,8,0z"}),c.jsx("path",{fill:"#fff",d:"M12.124,6.875c-0.285,0.009-0.558,0.127-0.766,0.324c-0.911-0.62-1.98-0.96-3.08-0.984l0.52-2.496 l1.711,0.36c0.047,0.44,0.442,0.758,0.882,0.711c0.438-0.049,0.756-0.442,0.709-0.882c-0.047-0.44-0.442-0.758-0.88-0.709 c-0.253,0.025-0.48,0.173-0.605,0.391l-1.96-0.391C8.522,3.167,8.387,3.251,8.358,3.387c0,0.002,0,0.002,0,0.004L7.767,6.167 c-1.113,0.016-2.198,0.36-3.12,0.984c-0.469-0.442-1.209-0.42-1.651,0.051c-0.442,0.471-0.42,1.209,0.053,1.651 c0.091,0.085,0.196,0.16,0.313,0.211c-0.007,0.118-0.007,0.235,0,0.353c0,1.791,2.089,3.249,4.664,3.249 c2.576,0,4.664-1.456,4.664-3.249c0.007-0.118,0.007-0.234,0-0.353c0.402-0.2,0.655-0.615,0.645-1.064 C13.311,7.356,12.771,6.853,12.124,6.875z M5.335,8.8c0-0.442,0.358-0.8,0.802-0.8c0.442,0,0.8,0.358,0.8,0.8s-0.358,0.8-0.8,0.8 S5.335,9.242,5.335,8.8z M9.971,11C9.616,11.328,8.988,11.616,8,11.616S6.384,11.328,6.029,11c-0.073-0.067-0.062-0.227,0.031-0.304 c0.078-0.065,0.193-0.065,0.275,0c0.48,0.353,1.07,0.48,1.665,0.48s1.185-0.127,1.665-0.48c0.082-0.065,0.196-0.065,0.275,0 C10.033,10.773,10.044,10.933,9.971,11z M9.842,9.6C9.4,9.6,9.04,9.242,9.04,8.8C9.042,8.358,9.4,8,9.842,8 c0.442,0,0.8,0.358,0.8,0.8S10.284,9.6,9.842,9.6z"})]}),x=r.forwardRef((s,t)=>c.jsx(e,{ref:t,...s}));export{x as RedditIcon};
1
+ import{j as c,r}from"./index-pBO0SZLD.js";const e=s=>c.jsxs("svg",{viewBox:"0 0 16 16",width:"23px",height:"23px",...s,children:[c.jsx("path",{fill:"#fe3155",d:"M8,0c4.418,0,8,3.582,8,8s-3.582,8-8,8s-8-3.582-8-8S3.582,0,8,0z"}),c.jsx("path",{fill:"#fff",d:"M12.124,6.875c-0.285,0.009-0.558,0.127-0.766,0.324c-0.911-0.62-1.98-0.96-3.08-0.984l0.52-2.496 l1.711,0.36c0.047,0.44,0.442,0.758,0.882,0.711c0.438-0.049,0.756-0.442,0.709-0.882c-0.047-0.44-0.442-0.758-0.88-0.709 c-0.253,0.025-0.48,0.173-0.605,0.391l-1.96-0.391C8.522,3.167,8.387,3.251,8.358,3.387c0,0.002,0,0.002,0,0.004L7.767,6.167 c-1.113,0.016-2.198,0.36-3.12,0.984c-0.469-0.442-1.209-0.42-1.651,0.051c-0.442,0.471-0.42,1.209,0.053,1.651 c0.091,0.085,0.196,0.16,0.313,0.211c-0.007,0.118-0.007,0.235,0,0.353c0,1.791,2.089,3.249,4.664,3.249 c2.576,0,4.664-1.456,4.664-3.249c0.007-0.118,0.007-0.234,0-0.353c0.402-0.2,0.655-0.615,0.645-1.064 C13.311,7.356,12.771,6.853,12.124,6.875z M5.335,8.8c0-0.442,0.358-0.8,0.802-0.8c0.442,0,0.8,0.358,0.8,0.8s-0.358,0.8-0.8,0.8 S5.335,9.242,5.335,8.8z M9.971,11C9.616,11.328,8.988,11.616,8,11.616S6.384,11.328,6.029,11c-0.073-0.067-0.062-0.227,0.031-0.304 c0.078-0.065,0.193-0.065,0.275,0c0.48,0.353,1.07,0.48,1.665,0.48s1.185-0.127,1.665-0.48c0.082-0.065,0.196-0.065,0.275,0 C10.033,10.773,10.044,10.933,9.971,11z M9.842,9.6C9.4,9.6,9.04,9.242,9.04,8.8C9.042,8.358,9.4,8,9.842,8 c0.442,0,0.8,0.358,0.8,0.8S10.284,9.6,9.842,9.6z"})]}),x=r.forwardRef((s,t)=>c.jsx(e,{ref:t,...s}));export{x as RedditIcon};
@@ -1 +1 @@
1
- import{j as C,r}from"./index-D234yKNJ.js";const s=t=>C.jsxs("svg",{width:"189",height:"267",viewBox:"0 0 189 267",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[C.jsx("path",{d:"M0 0 C3.06321791 1.91292239 5.45079154 4.4596893 8 7 C9.8508184 8.67038411 11.70529484 10.33671987 13.5625 12 C19.07787808 17.02522109 24.35027634 22.28150765 29.57250977 27.609375 C32.5939679 30.67417964 35.65891534 33.61406295 38.921875 36.421875 C44.10950064 40.89742443 48.84688739 45.79856111 53.64453125 50.68359375 C57.66464894 54.7478078 61.77436223 58.6065472 66.10742188 62.33447266 C69.03335456 64.90938401 71.7678273 67.66002342 74.5 70.4375 C75.03625 70.97826172 75.5725 71.51902344 76.125 72.07617188 C77.41904036 73.38176617 78.70988174 74.69052996 80 76 C85.1426468 72.38920544 89.62711213 68.50001906 94.0078125 64 C96.51837733 61.47958982 99.17224396 59.16742137 101.8671875 56.84765625 C104.27376821 54.7628345 106.63764945 52.63478467 109 50.5 C112.61267904 47.23977745 116.25488991 44.01856435 119.92578125 40.82421875 C123.18551949 37.95736798 126.39410784 35.03411516 129.60546875 32.11328125 C137.34815391 25.28001424 137.34815391 25.28001424 142.94140625 24.8359375 C147.68501605 25.2139861 150.92781614 27.76028741 154 31.3125 C155.40950462 35.10054368 155.12155084 37.10755883 154 41 C152.30245093 43.92391532 150.18101072 46.42400308 148 49 C147.20078125 49.9590625 146.4015625 50.918125 145.578125 51.90625 C141.73758129 56.49222765 137.83764358 61.02721854 133.9375 65.5625 C132.91664207 66.74997885 131.89580867 67.9374788 130.875 69.125 C130.37033203 69.71144287 129.86566406 70.29788574 129.34570312 70.90209961 C125.56250432 75.31070693 121.89219438 79.80216286 118.25 84.328125 C116.60361094 86.28321201 114.94893747 88.13940053 113.1875 89.984375 C112.71908691 90.47848877 112.25067383 90.97260254 111.76806641 91.48168945 C110.44753599 92.86169697 109.11091734 94.22625694 107.7734375 95.58984375 C105.75436851 97.76886089 105.75436851 97.76886089 106.20043945 99.96386719 C107.12781134 102.32547986 108.10653192 103.33925864 110.01953125 104.98828125 C110.62990234 105.53033203 111.24027344 106.07238281 111.86914062 106.63085938 C113.15221419 107.7411371 114.43605365 108.85053043 115.72070312 109.95898438 C120.98419941 114.63703406 125.20355106 119.50756986 126 126.8125 C126.39670106 133.89951089 124.33863378 139.25535341 119.75 144.640625 C115.09293989 149.38287524 110.12237597 153.76847203 105 158 C106.68194618 162.08046114 109.55174447 165.11242756 112.4375 168.375 C116.6887433 173.24873759 120.79185883 178.19789081 124.75 183.3125 C128.36095871 187.96976162 132.0872841 192.4431192 136.05078125 196.80859375 C139.0059196 200.13090359 141.78077766 203.59472771 144.58203125 207.046875 C147.18689495 210.22825942 149.83680038 213.36750392 152.5 216.5 C174.41458074 242.31754315 174.41458074 242.31754315 174.359375 249.89453125 C173.72418186 253.61593453 171.66020984 255.40312849 169 258 C165.42531796 259.78734102 161.88841712 259.7132973 158 259 C154.81886665 257.21398234 152.51475627 254.61583168 150 252 C148.16575643 250.15670764 146.32431564 248.32075561 144.48291016 246.48461914 C143.19316842 245.19376584 141.90867844 243.89763652 140.63037109 242.59545898 C137.57807883 239.49762816 134.49130224 236.51694439 131.1875 233.6875 C125.045697 228.39160973 119.46681442 222.50937991 113.77734375 216.73828125 C109.32800024 212.25007884 104.84027886 207.92397219 100.04101562 203.81396484 C95.84677314 200.08630675 91.9465789 196.04848406 88 192.0625 C87.12988281 191.18787109 86.25976562 190.31324219 85.36328125 189.41210938 C83.23986451 187.27702551 81.11883622 185.13962795 79 183 C66.53706738 193.64275245 54.66097258 204.87551527 42.74902344 216.12597656 C40.58433793 218.16908254 38.41736707 220.2097394 36.25 222.25 C35.59499512 222.86955566 34.93999023 223.48911133 34.26513672 224.12744141 C24.96226945 232.87780705 24.96226945 232.87780705 20.0625 233.5 C15.83463627 233.28421111 13.25895481 231.71579568 10 229 C7.97726442 225.96589663 7.68473731 225.14629 7.625 221.6875 C7.59664062 220.94886719 7.56828125 220.21023437 7.5390625 219.44921875 C8.70198438 213.26996437 14.26594664 208.07700408 18.1875 203.3125 C19.05568359 202.25095703 19.05568359 202.25095703 19.94140625 201.16796875 C21.62520208 199.10999607 23.31228961 197.05476264 25 195 C26.50026653 193.16688477 28.00030305 191.33358124 29.5 189.5 C30.19738281 188.64792969 30.89476562 187.79585937 31.61328125 186.91796875 C32.40089844 185.95503906 33.18851563 184.99210938 34 184 C34.51095215 183.37561035 35.0219043 182.7512207 35.54833984 182.10791016 C37.2631234 180.01084685 38.97549716 177.9118338 40.6875 175.8125 C41.22246094 175.15894531 41.75742187 174.50539062 42.30859375 173.83203125 C45.99323207 169.30831688 49.53193307 164.69163386 53 160 C51.17188813 155.96414496 48.49925756 153.5927788 45.1875 150.75 C39.31894548 145.55520052 33.77936878 140.06794267 32.7265625 131.87109375 C32.43131564 124.7965247 33.71729015 119.69441791 38 114 C42.70916137 109.02981655 47.83299974 104.48552008 53 100 C50.45314999 96.07956795 47.8040917 92.4143982 44.8125 88.8125 C44.0184375 87.85214844 43.224375 86.89179687 42.40625 85.90234375 C41.6121875 84.94457031 40.818125 83.98679687 40 83 C38.60288993 81.29271065 37.20705815 79.58437445 35.8125 77.875 C34.20900796 75.9161092 32.60495761 73.95768918 31 72 C30.47744629 71.36255859 29.95489258 70.72511719 29.41650391 70.06835938 C23.43211199 62.77290531 17.4398864 55.48851816 11.3125 48.3125 C7.07791917 43.34685767 3.01358082 38.26531056 -0.99438477 33.11547852 C-4.68613817 28.37504538 -8.47899503 23.7298921 -12.3203125 19.109375 C-14.95707497 15.7980919 -15.39046315 13.37231751 -15.359375 9.10546875 C-14.72418186 5.38406547 -12.66020984 3.59687151 -10 1 C-6.68887676 -0.65556162 -3.55295081 -0.73967125 0 0 Z",fill:"#AF1A19",transform:"translate(15,4)"}),C.jsx("path",{d:"M0 0 C1.77292382 2.0010015 3.35426839 3.98107573 4.9375 6.125 C5.92044262 7.41744879 6.90621055 8.70775285 7.89453125 9.99609375 C8.65950928 10.99358643 8.65950928 10.99358643 9.43994141 12.01123047 C11.90511947 15.15385026 14.50707228 18.17191237 17.125 21.1875 C22.19048007 27.04131904 27.11677661 32.99286012 32 39 C39.38114532 48.0518617 46.83456186 57.0208033 54.51757812 65.81835938 C58.16253268 70.00264136 61.68299856 74.26425914 65.12109375 78.62109375 C70.8953038 85.93189192 76.88178655 93.0648837 82.91333008 100.16333008 C86.56128527 104.4630923 90.13418611 108.82012196 93.69140625 113.1953125 C95.78056796 115.73341421 97.90125206 118.23888412 100.03759766 120.73706055 C104.35967315 125.7940547 108.56718347 130.9152143 112.625 136.1875 C113.05095459 136.74034668 113.47690918 137.29319336 113.91577148 137.86279297 C117.10891324 142.05062764 118.39874896 144.49045563 118.359375 149.89453125 C117.72418186 153.61593453 115.66020984 155.40312849 113 158 C109.42531796 159.78734102 105.88841712 159.7132973 102 159 C98.81886665 157.21398234 96.51475627 154.61583168 94 152 C92.16575643 150.15670764 90.32431564 148.32075561 88.48291016 146.48461914 C87.19316842 145.19376584 85.90867844 143.89763652 84.63037109 142.59545898 C81.57807883 139.49762816 78.49130224 136.51694439 75.1875 133.6875 C69.045697 128.39160973 63.46681442 122.50937991 57.77734375 116.73828125 C53.32800024 112.25007884 48.84027886 107.92397219 44.04101562 103.81396484 C39.84677314 100.08630675 35.9465789 96.04848406 32 92.0625 C31.12988281 91.18787109 30.25976562 90.31324219 29.36328125 89.41210938 C27.23986451 87.27702551 25.11883622 85.13962795 23 83 C10.53706738 93.64275245 -1.33902742 104.87551527 -13.25097656 116.12597656 C-15.41566207 118.16908254 -17.58263293 120.2097394 -19.75 122.25 C-20.40500488 122.86955566 -21.06000977 123.48911133 -21.73486328 124.12744141 C-31.03773055 132.87780705 -31.03773055 132.87780705 -35.9375 133.5 C-40.16536373 133.28421111 -42.74104519 131.71579568 -46 129 C-48.02273558 125.96589663 -48.31526269 125.14629 -48.375 121.6875 C-48.40335938 120.94886719 -48.43171875 120.21023437 -48.4609375 119.44921875 C-47.29801562 113.26996437 -41.73405336 108.07700408 -37.8125 103.3125 C-37.23371094 102.60480469 -36.65492187 101.89710938 -36.05859375 101.16796875 C-34.37479792 99.10999607 -32.68771039 97.05476264 -31 95 C-29.49973347 93.16688477 -27.99969695 91.33358124 -26.5 89.5 C-25.80261719 88.64792969 -25.10523437 87.79585938 -24.38671875 86.91796875 C-23.59910156 85.95503906 -22.81148437 84.99210937 -22 84 C-21.48904785 83.37561035 -20.9780957 82.7512207 -20.45166016 82.10791016 C-18.7368766 80.01084685 -17.02450284 77.9118338 -15.3125 75.8125 C-14.77753906 75.15894531 -14.24257813 74.50539063 -13.69140625 73.83203125 C-10.00676793 69.30831688 -6.46806693 64.69163386 -3 60 C-4.82811187 55.96414496 -7.50074244 53.5927788 -10.8125 50.75 C-16.68105452 45.55520052 -22.22063122 40.06794267 -23.2734375 31.87109375 C-23.56911298 24.78625433 -22.27103486 19.71062017 -18 14 C-5.11044938 0 -5.11044938 0 0 0 Z",fill:"#BCB8B3",transform:"translate(71,104)"}),C.jsx("path",{d:"M0 0 C3.36663199 2.12244191 5.8875061 4.10627134 7 8 C7 14.68990211 4.12088479 18.13281324 0 23 C-0.79921875 23.9590625 -1.5984375 24.918125 -2.421875 25.90625 C-6.26241871 30.49222765 -10.16235642 35.02721854 -14.0625 39.5625 C-15.08335793 40.74997885 -16.10419133 41.9374788 -17.125 43.125 C-17.62966797 43.71144287 -18.13433594 44.29788574 -18.65429688 44.90209961 C-21.70155483 48.45310616 -24.68395801 52.04744275 -27.625 55.6875 C-30.7860604 59.56253397 -33.99852427 63.38043951 -37.3125 67.125 C-38.11300781 68.03507812 -38.91351563 68.94515625 -39.73828125 69.8828125 C-42.93761411 72.87769749 -42.93761411 72.87769749 -46 73 C-48.38183594 71.18579102 -48.38183594 71.18579102 -50.984375 68.50390625 C-51.44483215 68.03637436 -51.90528931 67.56884247 -52.37969971 67.08714294 C-53.84859761 65.59024181 -55.2991807 64.07690962 -56.75 62.5625 C-57.74233158 61.5450932 -58.73580829 60.52880197 -59.73046875 59.51367188 C-62.16706933 57.02192521 -64.58753329 54.51514503 -67 52 C-65.10694916 47.8213276 -62.24895283 45.20414928 -58.875 42.1875 C-58.28678467 41.65342529 -57.69856934 41.11935059 -57.0925293 40.5690918 C-53.41665177 37.24084365 -49.70693728 33.95168678 -45.95703125 30.70703125 C-43.6144085 28.66366569 -41.30726578 26.58319141 -39 24.5 C-35.38732096 21.23977745 -31.74511009 18.01856435 -28.07421875 14.82421875 C-24.81448051 11.95736798 -21.60589216 9.03411516 -18.39453125 6.11328125 C-12.24775018 0.6884712 -8.39784462 -2.13226524 0 0 Z",fill:"#BCB8B3",transform:"translate(163,30)"}),C.jsx("path",{d:"M0 0 C4.14995519 0.83282899 5.82461266 2.54123182 8.75 5.625 C12.46350949 9.45918483 16.24225919 13.07223275 20.30859375 16.52734375 C21.94783789 17.95458403 23.48225476 19.44512338 25 21 C23.66604327 23.99602215 22.24215997 25.96601609 19.83203125 28.1796875 C19.19394531 28.77136719 18.55585937 29.36304688 17.8984375 29.97265625 C17.21007812 30.60042969 16.52171875 31.22820312 15.8125 31.875 C15.09707031 32.53628906 14.38164063 33.19757813 13.64453125 33.87890625 C12.15775053 35.25313139 10.66895765 36.62518258 9.17822266 37.99511719 C5.93590964 40.97941157 2.71865107 43.99024037 -0.5 47 C-1.72653391 48.14325984 -2.95309671 49.28648869 -4.1796875 50.4296875 C-6.90063691 52.96876667 -9.61260187 55.51712125 -12.3203125 58.0703125 C-13.03896484 58.74707031 -13.75761719 59.42382812 -14.49804688 60.12109375 C-15.87842565 61.42161591 -17.25741626 62.72361364 -18.63476562 64.02734375 C-28.03430558 72.87737214 -28.03430558 72.87737214 -32.9375 73.5 C-37.16536373 73.28421111 -39.74104519 71.71579568 -43 69 C-45.02273558 65.96589663 -45.31526269 65.14629 -45.375 61.6875 C-45.40335938 60.94886719 -45.43171875 60.21023437 -45.4609375 59.44921875 C-44.29801562 53.26996437 -38.73405336 48.07700408 -34.8125 43.3125 C-34.23371094 42.60480469 -33.65492187 41.89710938 -33.05859375 41.16796875 C-31.37479792 39.10999607 -29.68771039 37.05476264 -28 35 C-26.49973347 33.16688477 -24.99969695 31.33358124 -23.5 29.5 C-22.80261719 28.64792969 -22.10523437 27.79585937 -21.38671875 26.91796875 C-20.59910156 25.95503906 -19.81148437 24.99210937 -19 24 C-18.48904785 23.37561035 -17.9780957 22.7512207 -17.45166016 22.10791016 C-15.7368766 20.01084685 -14.02450284 17.9118338 -12.3125 15.8125 C-11.77753906 15.15894531 -11.24257813 14.50539062 -10.69140625 13.83203125 C-7.00676793 9.30831688 -3.46806693 4.69163386 0 0 Z",fill:"#AE1919",transform:"translate(68,164)"}),C.jsx("path",{d:"M0 0 C1.32 0.33 2.64 0.66 4 1 C3.195625 1.61875 2.39125 2.2375 1.5625 2.875 C-1.03874519 4.74164041 -1.03874519 4.74164041 -2 7 C-1.67 7.99 -1.34 8.98 -1 10 C-1.99 10 -2.98 10 -4 10 C-4.22429688 10.73605469 -4.44859375 11.47210938 -4.6796875 12.23046875 C-6.29264462 15.61386106 -8.1508051 17.06278848 -11.125 19.3125 C-12.03507812 20.00988281 -12.94515625 20.70726562 -13.8828125 21.42578125 C-14.93082031 22.20501953 -14.93082031 22.20501953 -16 23 C-16 18.73826628 -13.51054098 16.78157935 -10.8125 13.75 C-9.80008934 12.58636728 -8.78964856 11.42101755 -7.78125 10.25390625 C-7.29785156 9.69461426 -6.81445312 9.13532227 -6.31640625 8.55908203 C-4.01353537 5.8316834 -1.9941694 2.95687186 0 0 Z",fill:"#921115",transform:"translate(68,164)"}),C.jsx("path",{d:"M0 0 C3.46125202 1.94219077 6.20719483 3.96666141 8.98828125 6.79296875 C9.69404297 7.50517578 10.39980469 8.21738281 11.12695312 8.95117188 C11.84818359 9.68916016 12.56941406 10.42714844 13.3125 11.1875 C14.05306641 11.93708984 14.79363281 12.68667969 15.55664062 13.45898438 C17.37571712 15.30153282 19.18994389 17.14859662 21 19 C20.67 19.66 20.34 20.32 20 21 C19.56131592 20.54560547 19.12263184 20.09121094 18.6706543 19.62304688 C16.68411205 17.57425281 14.68604501 15.53708444 12.6875 13.5 C11.99720703 12.78457031 11.30691406 12.06914063 10.59570312 11.33203125 C9.92861328 10.65527344 9.26152344 9.97851562 8.57421875 9.28125 C7.96151123 8.65283203 7.34880371 8.02441406 6.7175293 7.37695312 C4.97678075 5.68724689 4.97678075 5.68724689 2 6 C2 4.68 2 3.36 2 2 C1.34 2 0.68 2 0 2 C0 1.34 0 0.68 0 0 Z",fill:"#860F0D",transform:"translate(74,61)"}),C.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C-9.33712984 12.70615034 -9.33712984 12.70615034 -16 17 C-14.14285714 9.42857143 -14.14285714 9.42857143 -11 7 C-10.34 7.66 -9.68 8.32 -9 9 C-6.03 6.03 -3.06 3.06 0 0 Z",fill:"#911012",transform:"translate(80,196)"}),C.jsx("path",{d:"M0 0 C1.32 0.33 2.64 0.66 4 1 C3.195625 1.61875 2.39125 2.2375 1.5625 2.875 C-1.03874519 4.74164041 -1.03874519 4.74164041 -2 7 C-1.67 7.99 -1.34 8.98 -1 10 C-1.99 10 -2.98 10 -4 10 C-4.66 11.32 -5.32 12.64 -6 14 C-6.33 13.01 -6.66 12.02 -7 11 C-6.34 10.34 -5.68 9.68 -5 9 C-4.690625 8.21625 -4.38125 7.4325 -4.0625 6.625 C-3.00983103 4.02428842 -1.76321255 2.16394268 0 0 Z",fill:"#A01616",transform:"translate(68,164)"}),C.jsx("path",{d:"M0 0 C1.75 1.875 1.75 1.875 2 4.5625 C1.9175 5.325625 1.835 6.08875 1.75 6.875 C-2.0452131 5.38402342 -3.86042731 3.11799151 -6.25 -0.125 C-3.56681527 -1.17910828 -2.63145757 -1.31572879 0 0 Z",fill:"#C6A6A0",transform:"translate(82.25,169.125)"}),C.jsx("path",{d:"M0 0 C3.36591866 1.44253657 5.51047079 3.33264727 8 6 C7.67 6.66 7.34 7.32 7 8 C4.03 7.505 4.03 7.505 1 7 C1.33 6.01 1.66 5.02 2 4 C1.34 3.67 0.68 3.34 0 3 C0 2.01 0 1.02 0 0 Z",fill:"#A52423",transform:"translate(85,179)"}),C.jsx("path",{d:"M0 0 C1.98 1.65 3.96 3.3 6 5 C4.68 5.33 3.36 5.66 2 6 C1.34 4.02 0.68 2.04 0 0 Z M0 6 C0.66 6 1.32 6 2 6 C2.66 7.65 3.32 9.3 4 11 C3.01 11 2.02 11 1 11 C0.67 9.35 0.34 7.7 0 6 Z",fill:"#9B1817",transform:"translate(26,14)"}),C.jsx("path",{d:"M0 0 C0.66 1.32 1.32 2.64 2 4 C1.34 4.66 0.68 5.32 0 6 C-1.32 6 -2.64 6 -4 6 C-6.20067421 6.93283296 -6.20067421 6.93283296 -8 8 C-7.04578192 6.85073734 -6.08647955 5.70569459 -5.125 4.5625 C-4.59132813 3.92441406 -4.05765625 3.28632812 -3.5078125 2.62890625 C-2 1 -2 1 0 0 Z",fill:"#B4B2AD",transform:"translate(122,57)"}),C.jsx("path",{d:"M0 0 C4.18423892 3.50897269 8.19588166 7.08060535 12 11 C7.71844354 10.08252362 4.87588097 9.2651614 2.3125 5.5625 C1 3 1 3 0 0 Z",fill:"#8C1317",transform:"translate(40,28)"}),C.jsx("path",{d:"M0 0 C9.1 4.2 9.1 4.2 11.375 8.75 C11.58125 9.4925 11.7875 10.235 12 11 C8.57472113 9.52651292 6.35044942 7.59092154 3.75 4.9375 C3.04359375 4.22464844 2.3371875 3.51179687 1.609375 2.77734375 C0 1 0 1 0 0 Z",fill:"#B1AFAB",transform:"translate(138,229)"}),C.jsx("path",{d:"M0 0 C0.78375 0.185625 1.5675 0.37125 2.375 0.5625 C4.97089775 1.25962266 4.97089775 1.25962266 7 0 C7.99 0.66 8.98 1.32 10 2 C8.68 2.99 7.36 3.98 6 5 C2.83884224 3.63016497 2.0072908 3.0109362 0 0 Z",fill:"#C3A7A2",transform:"translate(113,98)"}),C.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C-1.96 4.465 -1.96 4.465 -6 8 C-6.66 7.67 -7.32 7.34 -8 7 C-7.67 5.35 -7.34 3.7 -7 2 C-6.01 2.33 -5.02 2.66 -4 3 C-1.80961577 1.62831762 -1.80961577 1.62831762 0 0 Z",fill:"#8A1013",transform:"translate(126,154)"}),C.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C1.54625 1.5775 1.0925 2.155 0.625 2.75 C-0.84113516 4.7800333 -1.94857784 6.73539843 -3 9 C-3.66 7.68 -4.32 6.36 -5 5 C-3.35 3.35 -1.7 1.7 0 0 Z",fill:"#B9A7A1",transform:"translate(101,75)"}),C.jsx("path",{d:"M0 0 C1.32 0.66 2.64 1.32 4 2 C3.34 2.66 2.68 3.32 2 4 C2 4.99 2 5.98 2 7 C0.35 5.35 -1.3 3.7 -3 2 C-2.01 1.34 -1.02 0.68 0 0 Z",fill:"#C4B3AE",transform:"translate(90,177)"}),C.jsx("path",{d:"M0 0 C2.04119788 1.61594832 4.04072937 3.2856382 6 5 C6 5.66 6 6.32 6 7 C3.03 6.505 3.03 6.505 0 6 C0.66 5.67 1.32 5.34 2 5 C2 4.34 2 3.68 2 3 C1.34 3 0.68 3 0 3 C0 2.01 0 1.02 0 0 Z",fill:"#C6AAA2",transform:"translate(113,157)"}),C.jsx("path",{d:"M0 0 C1.98 0.66 3.96 1.32 6 2 C6.33 3.65 6.66 5.3 7 7 C5.83040013 6.02433888 4.66438823 5.044375 3.5 4.0625 C2.8503125 3.51722656 2.200625 2.97195312 1.53125 2.41015625 C1.0259375 1.94480469 0.520625 1.47945312 0 1 C0 0.67 0 0.34 0 0 Z",fill:"#B1AFAB",transform:"translate(110,202)"}),C.jsx("path",{d:"M0 0 C2.97 0.495 2.97 0.495 6 1 C6 1.99 6 2.98 6 4 C6.66 4.33 7.32 4.66 8 5 C5 5 5 5 2.3125 2.5 C1.549375 1.675 0.78625 0.85 0 0 Z",fill:"#CBA19D",transform:"translate(69,163)"})]}),n=r.forwardRef((t,a)=>C.jsx(s,{ref:a,...t}));export{n as ArXivIcon,n as default};
1
+ import{j as C,r}from"./index-pBO0SZLD.js";const s=t=>C.jsxs("svg",{width:"189",height:"267",viewBox:"0 0 189 267",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[C.jsx("path",{d:"M0 0 C3.06321791 1.91292239 5.45079154 4.4596893 8 7 C9.8508184 8.67038411 11.70529484 10.33671987 13.5625 12 C19.07787808 17.02522109 24.35027634 22.28150765 29.57250977 27.609375 C32.5939679 30.67417964 35.65891534 33.61406295 38.921875 36.421875 C44.10950064 40.89742443 48.84688739 45.79856111 53.64453125 50.68359375 C57.66464894 54.7478078 61.77436223 58.6065472 66.10742188 62.33447266 C69.03335456 64.90938401 71.7678273 67.66002342 74.5 70.4375 C75.03625 70.97826172 75.5725 71.51902344 76.125 72.07617188 C77.41904036 73.38176617 78.70988174 74.69052996 80 76 C85.1426468 72.38920544 89.62711213 68.50001906 94.0078125 64 C96.51837733 61.47958982 99.17224396 59.16742137 101.8671875 56.84765625 C104.27376821 54.7628345 106.63764945 52.63478467 109 50.5 C112.61267904 47.23977745 116.25488991 44.01856435 119.92578125 40.82421875 C123.18551949 37.95736798 126.39410784 35.03411516 129.60546875 32.11328125 C137.34815391 25.28001424 137.34815391 25.28001424 142.94140625 24.8359375 C147.68501605 25.2139861 150.92781614 27.76028741 154 31.3125 C155.40950462 35.10054368 155.12155084 37.10755883 154 41 C152.30245093 43.92391532 150.18101072 46.42400308 148 49 C147.20078125 49.9590625 146.4015625 50.918125 145.578125 51.90625 C141.73758129 56.49222765 137.83764358 61.02721854 133.9375 65.5625 C132.91664207 66.74997885 131.89580867 67.9374788 130.875 69.125 C130.37033203 69.71144287 129.86566406 70.29788574 129.34570312 70.90209961 C125.56250432 75.31070693 121.89219438 79.80216286 118.25 84.328125 C116.60361094 86.28321201 114.94893747 88.13940053 113.1875 89.984375 C112.71908691 90.47848877 112.25067383 90.97260254 111.76806641 91.48168945 C110.44753599 92.86169697 109.11091734 94.22625694 107.7734375 95.58984375 C105.75436851 97.76886089 105.75436851 97.76886089 106.20043945 99.96386719 C107.12781134 102.32547986 108.10653192 103.33925864 110.01953125 104.98828125 C110.62990234 105.53033203 111.24027344 106.07238281 111.86914062 106.63085938 C113.15221419 107.7411371 114.43605365 108.85053043 115.72070312 109.95898438 C120.98419941 114.63703406 125.20355106 119.50756986 126 126.8125 C126.39670106 133.89951089 124.33863378 139.25535341 119.75 144.640625 C115.09293989 149.38287524 110.12237597 153.76847203 105 158 C106.68194618 162.08046114 109.55174447 165.11242756 112.4375 168.375 C116.6887433 173.24873759 120.79185883 178.19789081 124.75 183.3125 C128.36095871 187.96976162 132.0872841 192.4431192 136.05078125 196.80859375 C139.0059196 200.13090359 141.78077766 203.59472771 144.58203125 207.046875 C147.18689495 210.22825942 149.83680038 213.36750392 152.5 216.5 C174.41458074 242.31754315 174.41458074 242.31754315 174.359375 249.89453125 C173.72418186 253.61593453 171.66020984 255.40312849 169 258 C165.42531796 259.78734102 161.88841712 259.7132973 158 259 C154.81886665 257.21398234 152.51475627 254.61583168 150 252 C148.16575643 250.15670764 146.32431564 248.32075561 144.48291016 246.48461914 C143.19316842 245.19376584 141.90867844 243.89763652 140.63037109 242.59545898 C137.57807883 239.49762816 134.49130224 236.51694439 131.1875 233.6875 C125.045697 228.39160973 119.46681442 222.50937991 113.77734375 216.73828125 C109.32800024 212.25007884 104.84027886 207.92397219 100.04101562 203.81396484 C95.84677314 200.08630675 91.9465789 196.04848406 88 192.0625 C87.12988281 191.18787109 86.25976562 190.31324219 85.36328125 189.41210938 C83.23986451 187.27702551 81.11883622 185.13962795 79 183 C66.53706738 193.64275245 54.66097258 204.87551527 42.74902344 216.12597656 C40.58433793 218.16908254 38.41736707 220.2097394 36.25 222.25 C35.59499512 222.86955566 34.93999023 223.48911133 34.26513672 224.12744141 C24.96226945 232.87780705 24.96226945 232.87780705 20.0625 233.5 C15.83463627 233.28421111 13.25895481 231.71579568 10 229 C7.97726442 225.96589663 7.68473731 225.14629 7.625 221.6875 C7.59664062 220.94886719 7.56828125 220.21023437 7.5390625 219.44921875 C8.70198438 213.26996437 14.26594664 208.07700408 18.1875 203.3125 C19.05568359 202.25095703 19.05568359 202.25095703 19.94140625 201.16796875 C21.62520208 199.10999607 23.31228961 197.05476264 25 195 C26.50026653 193.16688477 28.00030305 191.33358124 29.5 189.5 C30.19738281 188.64792969 30.89476562 187.79585937 31.61328125 186.91796875 C32.40089844 185.95503906 33.18851563 184.99210938 34 184 C34.51095215 183.37561035 35.0219043 182.7512207 35.54833984 182.10791016 C37.2631234 180.01084685 38.97549716 177.9118338 40.6875 175.8125 C41.22246094 175.15894531 41.75742187 174.50539062 42.30859375 173.83203125 C45.99323207 169.30831688 49.53193307 164.69163386 53 160 C51.17188813 155.96414496 48.49925756 153.5927788 45.1875 150.75 C39.31894548 145.55520052 33.77936878 140.06794267 32.7265625 131.87109375 C32.43131564 124.7965247 33.71729015 119.69441791 38 114 C42.70916137 109.02981655 47.83299974 104.48552008 53 100 C50.45314999 96.07956795 47.8040917 92.4143982 44.8125 88.8125 C44.0184375 87.85214844 43.224375 86.89179687 42.40625 85.90234375 C41.6121875 84.94457031 40.818125 83.98679687 40 83 C38.60288993 81.29271065 37.20705815 79.58437445 35.8125 77.875 C34.20900796 75.9161092 32.60495761 73.95768918 31 72 C30.47744629 71.36255859 29.95489258 70.72511719 29.41650391 70.06835938 C23.43211199 62.77290531 17.4398864 55.48851816 11.3125 48.3125 C7.07791917 43.34685767 3.01358082 38.26531056 -0.99438477 33.11547852 C-4.68613817 28.37504538 -8.47899503 23.7298921 -12.3203125 19.109375 C-14.95707497 15.7980919 -15.39046315 13.37231751 -15.359375 9.10546875 C-14.72418186 5.38406547 -12.66020984 3.59687151 -10 1 C-6.68887676 -0.65556162 -3.55295081 -0.73967125 0 0 Z",fill:"#AF1A19",transform:"translate(15,4)"}),C.jsx("path",{d:"M0 0 C1.77292382 2.0010015 3.35426839 3.98107573 4.9375 6.125 C5.92044262 7.41744879 6.90621055 8.70775285 7.89453125 9.99609375 C8.65950928 10.99358643 8.65950928 10.99358643 9.43994141 12.01123047 C11.90511947 15.15385026 14.50707228 18.17191237 17.125 21.1875 C22.19048007 27.04131904 27.11677661 32.99286012 32 39 C39.38114532 48.0518617 46.83456186 57.0208033 54.51757812 65.81835938 C58.16253268 70.00264136 61.68299856 74.26425914 65.12109375 78.62109375 C70.8953038 85.93189192 76.88178655 93.0648837 82.91333008 100.16333008 C86.56128527 104.4630923 90.13418611 108.82012196 93.69140625 113.1953125 C95.78056796 115.73341421 97.90125206 118.23888412 100.03759766 120.73706055 C104.35967315 125.7940547 108.56718347 130.9152143 112.625 136.1875 C113.05095459 136.74034668 113.47690918 137.29319336 113.91577148 137.86279297 C117.10891324 142.05062764 118.39874896 144.49045563 118.359375 149.89453125 C117.72418186 153.61593453 115.66020984 155.40312849 113 158 C109.42531796 159.78734102 105.88841712 159.7132973 102 159 C98.81886665 157.21398234 96.51475627 154.61583168 94 152 C92.16575643 150.15670764 90.32431564 148.32075561 88.48291016 146.48461914 C87.19316842 145.19376584 85.90867844 143.89763652 84.63037109 142.59545898 C81.57807883 139.49762816 78.49130224 136.51694439 75.1875 133.6875 C69.045697 128.39160973 63.46681442 122.50937991 57.77734375 116.73828125 C53.32800024 112.25007884 48.84027886 107.92397219 44.04101562 103.81396484 C39.84677314 100.08630675 35.9465789 96.04848406 32 92.0625 C31.12988281 91.18787109 30.25976562 90.31324219 29.36328125 89.41210938 C27.23986451 87.27702551 25.11883622 85.13962795 23 83 C10.53706738 93.64275245 -1.33902742 104.87551527 -13.25097656 116.12597656 C-15.41566207 118.16908254 -17.58263293 120.2097394 -19.75 122.25 C-20.40500488 122.86955566 -21.06000977 123.48911133 -21.73486328 124.12744141 C-31.03773055 132.87780705 -31.03773055 132.87780705 -35.9375 133.5 C-40.16536373 133.28421111 -42.74104519 131.71579568 -46 129 C-48.02273558 125.96589663 -48.31526269 125.14629 -48.375 121.6875 C-48.40335938 120.94886719 -48.43171875 120.21023437 -48.4609375 119.44921875 C-47.29801562 113.26996437 -41.73405336 108.07700408 -37.8125 103.3125 C-37.23371094 102.60480469 -36.65492187 101.89710938 -36.05859375 101.16796875 C-34.37479792 99.10999607 -32.68771039 97.05476264 -31 95 C-29.49973347 93.16688477 -27.99969695 91.33358124 -26.5 89.5 C-25.80261719 88.64792969 -25.10523437 87.79585938 -24.38671875 86.91796875 C-23.59910156 85.95503906 -22.81148437 84.99210937 -22 84 C-21.48904785 83.37561035 -20.9780957 82.7512207 -20.45166016 82.10791016 C-18.7368766 80.01084685 -17.02450284 77.9118338 -15.3125 75.8125 C-14.77753906 75.15894531 -14.24257813 74.50539063 -13.69140625 73.83203125 C-10.00676793 69.30831688 -6.46806693 64.69163386 -3 60 C-4.82811187 55.96414496 -7.50074244 53.5927788 -10.8125 50.75 C-16.68105452 45.55520052 -22.22063122 40.06794267 -23.2734375 31.87109375 C-23.56911298 24.78625433 -22.27103486 19.71062017 -18 14 C-5.11044938 0 -5.11044938 0 0 0 Z",fill:"#BCB8B3",transform:"translate(71,104)"}),C.jsx("path",{d:"M0 0 C3.36663199 2.12244191 5.8875061 4.10627134 7 8 C7 14.68990211 4.12088479 18.13281324 0 23 C-0.79921875 23.9590625 -1.5984375 24.918125 -2.421875 25.90625 C-6.26241871 30.49222765 -10.16235642 35.02721854 -14.0625 39.5625 C-15.08335793 40.74997885 -16.10419133 41.9374788 -17.125 43.125 C-17.62966797 43.71144287 -18.13433594 44.29788574 -18.65429688 44.90209961 C-21.70155483 48.45310616 -24.68395801 52.04744275 -27.625 55.6875 C-30.7860604 59.56253397 -33.99852427 63.38043951 -37.3125 67.125 C-38.11300781 68.03507812 -38.91351563 68.94515625 -39.73828125 69.8828125 C-42.93761411 72.87769749 -42.93761411 72.87769749 -46 73 C-48.38183594 71.18579102 -48.38183594 71.18579102 -50.984375 68.50390625 C-51.44483215 68.03637436 -51.90528931 67.56884247 -52.37969971 67.08714294 C-53.84859761 65.59024181 -55.2991807 64.07690962 -56.75 62.5625 C-57.74233158 61.5450932 -58.73580829 60.52880197 -59.73046875 59.51367188 C-62.16706933 57.02192521 -64.58753329 54.51514503 -67 52 C-65.10694916 47.8213276 -62.24895283 45.20414928 -58.875 42.1875 C-58.28678467 41.65342529 -57.69856934 41.11935059 -57.0925293 40.5690918 C-53.41665177 37.24084365 -49.70693728 33.95168678 -45.95703125 30.70703125 C-43.6144085 28.66366569 -41.30726578 26.58319141 -39 24.5 C-35.38732096 21.23977745 -31.74511009 18.01856435 -28.07421875 14.82421875 C-24.81448051 11.95736798 -21.60589216 9.03411516 -18.39453125 6.11328125 C-12.24775018 0.6884712 -8.39784462 -2.13226524 0 0 Z",fill:"#BCB8B3",transform:"translate(163,30)"}),C.jsx("path",{d:"M0 0 C4.14995519 0.83282899 5.82461266 2.54123182 8.75 5.625 C12.46350949 9.45918483 16.24225919 13.07223275 20.30859375 16.52734375 C21.94783789 17.95458403 23.48225476 19.44512338 25 21 C23.66604327 23.99602215 22.24215997 25.96601609 19.83203125 28.1796875 C19.19394531 28.77136719 18.55585937 29.36304688 17.8984375 29.97265625 C17.21007812 30.60042969 16.52171875 31.22820312 15.8125 31.875 C15.09707031 32.53628906 14.38164063 33.19757813 13.64453125 33.87890625 C12.15775053 35.25313139 10.66895765 36.62518258 9.17822266 37.99511719 C5.93590964 40.97941157 2.71865107 43.99024037 -0.5 47 C-1.72653391 48.14325984 -2.95309671 49.28648869 -4.1796875 50.4296875 C-6.90063691 52.96876667 -9.61260187 55.51712125 -12.3203125 58.0703125 C-13.03896484 58.74707031 -13.75761719 59.42382812 -14.49804688 60.12109375 C-15.87842565 61.42161591 -17.25741626 62.72361364 -18.63476562 64.02734375 C-28.03430558 72.87737214 -28.03430558 72.87737214 -32.9375 73.5 C-37.16536373 73.28421111 -39.74104519 71.71579568 -43 69 C-45.02273558 65.96589663 -45.31526269 65.14629 -45.375 61.6875 C-45.40335938 60.94886719 -45.43171875 60.21023437 -45.4609375 59.44921875 C-44.29801562 53.26996437 -38.73405336 48.07700408 -34.8125 43.3125 C-34.23371094 42.60480469 -33.65492187 41.89710938 -33.05859375 41.16796875 C-31.37479792 39.10999607 -29.68771039 37.05476264 -28 35 C-26.49973347 33.16688477 -24.99969695 31.33358124 -23.5 29.5 C-22.80261719 28.64792969 -22.10523437 27.79585937 -21.38671875 26.91796875 C-20.59910156 25.95503906 -19.81148437 24.99210937 -19 24 C-18.48904785 23.37561035 -17.9780957 22.7512207 -17.45166016 22.10791016 C-15.7368766 20.01084685 -14.02450284 17.9118338 -12.3125 15.8125 C-11.77753906 15.15894531 -11.24257813 14.50539062 -10.69140625 13.83203125 C-7.00676793 9.30831688 -3.46806693 4.69163386 0 0 Z",fill:"#AE1919",transform:"translate(68,164)"}),C.jsx("path",{d:"M0 0 C1.32 0.33 2.64 0.66 4 1 C3.195625 1.61875 2.39125 2.2375 1.5625 2.875 C-1.03874519 4.74164041 -1.03874519 4.74164041 -2 7 C-1.67 7.99 -1.34 8.98 -1 10 C-1.99 10 -2.98 10 -4 10 C-4.22429688 10.73605469 -4.44859375 11.47210938 -4.6796875 12.23046875 C-6.29264462 15.61386106 -8.1508051 17.06278848 -11.125 19.3125 C-12.03507812 20.00988281 -12.94515625 20.70726562 -13.8828125 21.42578125 C-14.93082031 22.20501953 -14.93082031 22.20501953 -16 23 C-16 18.73826628 -13.51054098 16.78157935 -10.8125 13.75 C-9.80008934 12.58636728 -8.78964856 11.42101755 -7.78125 10.25390625 C-7.29785156 9.69461426 -6.81445312 9.13532227 -6.31640625 8.55908203 C-4.01353537 5.8316834 -1.9941694 2.95687186 0 0 Z",fill:"#921115",transform:"translate(68,164)"}),C.jsx("path",{d:"M0 0 C3.46125202 1.94219077 6.20719483 3.96666141 8.98828125 6.79296875 C9.69404297 7.50517578 10.39980469 8.21738281 11.12695312 8.95117188 C11.84818359 9.68916016 12.56941406 10.42714844 13.3125 11.1875 C14.05306641 11.93708984 14.79363281 12.68667969 15.55664062 13.45898438 C17.37571712 15.30153282 19.18994389 17.14859662 21 19 C20.67 19.66 20.34 20.32 20 21 C19.56131592 20.54560547 19.12263184 20.09121094 18.6706543 19.62304688 C16.68411205 17.57425281 14.68604501 15.53708444 12.6875 13.5 C11.99720703 12.78457031 11.30691406 12.06914063 10.59570312 11.33203125 C9.92861328 10.65527344 9.26152344 9.97851562 8.57421875 9.28125 C7.96151123 8.65283203 7.34880371 8.02441406 6.7175293 7.37695312 C4.97678075 5.68724689 4.97678075 5.68724689 2 6 C2 4.68 2 3.36 2 2 C1.34 2 0.68 2 0 2 C0 1.34 0 0.68 0 0 Z",fill:"#860F0D",transform:"translate(74,61)"}),C.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C-9.33712984 12.70615034 -9.33712984 12.70615034 -16 17 C-14.14285714 9.42857143 -14.14285714 9.42857143 -11 7 C-10.34 7.66 -9.68 8.32 -9 9 C-6.03 6.03 -3.06 3.06 0 0 Z",fill:"#911012",transform:"translate(80,196)"}),C.jsx("path",{d:"M0 0 C1.32 0.33 2.64 0.66 4 1 C3.195625 1.61875 2.39125 2.2375 1.5625 2.875 C-1.03874519 4.74164041 -1.03874519 4.74164041 -2 7 C-1.67 7.99 -1.34 8.98 -1 10 C-1.99 10 -2.98 10 -4 10 C-4.66 11.32 -5.32 12.64 -6 14 C-6.33 13.01 -6.66 12.02 -7 11 C-6.34 10.34 -5.68 9.68 -5 9 C-4.690625 8.21625 -4.38125 7.4325 -4.0625 6.625 C-3.00983103 4.02428842 -1.76321255 2.16394268 0 0 Z",fill:"#A01616",transform:"translate(68,164)"}),C.jsx("path",{d:"M0 0 C1.75 1.875 1.75 1.875 2 4.5625 C1.9175 5.325625 1.835 6.08875 1.75 6.875 C-2.0452131 5.38402342 -3.86042731 3.11799151 -6.25 -0.125 C-3.56681527 -1.17910828 -2.63145757 -1.31572879 0 0 Z",fill:"#C6A6A0",transform:"translate(82.25,169.125)"}),C.jsx("path",{d:"M0 0 C3.36591866 1.44253657 5.51047079 3.33264727 8 6 C7.67 6.66 7.34 7.32 7 8 C4.03 7.505 4.03 7.505 1 7 C1.33 6.01 1.66 5.02 2 4 C1.34 3.67 0.68 3.34 0 3 C0 2.01 0 1.02 0 0 Z",fill:"#A52423",transform:"translate(85,179)"}),C.jsx("path",{d:"M0 0 C1.98 1.65 3.96 3.3 6 5 C4.68 5.33 3.36 5.66 2 6 C1.34 4.02 0.68 2.04 0 0 Z M0 6 C0.66 6 1.32 6 2 6 C2.66 7.65 3.32 9.3 4 11 C3.01 11 2.02 11 1 11 C0.67 9.35 0.34 7.7 0 6 Z",fill:"#9B1817",transform:"translate(26,14)"}),C.jsx("path",{d:"M0 0 C0.66 1.32 1.32 2.64 2 4 C1.34 4.66 0.68 5.32 0 6 C-1.32 6 -2.64 6 -4 6 C-6.20067421 6.93283296 -6.20067421 6.93283296 -8 8 C-7.04578192 6.85073734 -6.08647955 5.70569459 -5.125 4.5625 C-4.59132813 3.92441406 -4.05765625 3.28632812 -3.5078125 2.62890625 C-2 1 -2 1 0 0 Z",fill:"#B4B2AD",transform:"translate(122,57)"}),C.jsx("path",{d:"M0 0 C4.18423892 3.50897269 8.19588166 7.08060535 12 11 C7.71844354 10.08252362 4.87588097 9.2651614 2.3125 5.5625 C1 3 1 3 0 0 Z",fill:"#8C1317",transform:"translate(40,28)"}),C.jsx("path",{d:"M0 0 C9.1 4.2 9.1 4.2 11.375 8.75 C11.58125 9.4925 11.7875 10.235 12 11 C8.57472113 9.52651292 6.35044942 7.59092154 3.75 4.9375 C3.04359375 4.22464844 2.3371875 3.51179687 1.609375 2.77734375 C0 1 0 1 0 0 Z",fill:"#B1AFAB",transform:"translate(138,229)"}),C.jsx("path",{d:"M0 0 C0.78375 0.185625 1.5675 0.37125 2.375 0.5625 C4.97089775 1.25962266 4.97089775 1.25962266 7 0 C7.99 0.66 8.98 1.32 10 2 C8.68 2.99 7.36 3.98 6 5 C2.83884224 3.63016497 2.0072908 3.0109362 0 0 Z",fill:"#C3A7A2",transform:"translate(113,98)"}),C.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C-1.96 4.465 -1.96 4.465 -6 8 C-6.66 7.67 -7.32 7.34 -8 7 C-7.67 5.35 -7.34 3.7 -7 2 C-6.01 2.33 -5.02 2.66 -4 3 C-1.80961577 1.62831762 -1.80961577 1.62831762 0 0 Z",fill:"#8A1013",transform:"translate(126,154)"}),C.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C1.54625 1.5775 1.0925 2.155 0.625 2.75 C-0.84113516 4.7800333 -1.94857784 6.73539843 -3 9 C-3.66 7.68 -4.32 6.36 -5 5 C-3.35 3.35 -1.7 1.7 0 0 Z",fill:"#B9A7A1",transform:"translate(101,75)"}),C.jsx("path",{d:"M0 0 C1.32 0.66 2.64 1.32 4 2 C3.34 2.66 2.68 3.32 2 4 C2 4.99 2 5.98 2 7 C0.35 5.35 -1.3 3.7 -3 2 C-2.01 1.34 -1.02 0.68 0 0 Z",fill:"#C4B3AE",transform:"translate(90,177)"}),C.jsx("path",{d:"M0 0 C2.04119788 1.61594832 4.04072937 3.2856382 6 5 C6 5.66 6 6.32 6 7 C3.03 6.505 3.03 6.505 0 6 C0.66 5.67 1.32 5.34 2 5 C2 4.34 2 3.68 2 3 C1.34 3 0.68 3 0 3 C0 2.01 0 1.02 0 0 Z",fill:"#C6AAA2",transform:"translate(113,157)"}),C.jsx("path",{d:"M0 0 C1.98 0.66 3.96 1.32 6 2 C6.33 3.65 6.66 5.3 7 7 C5.83040013 6.02433888 4.66438823 5.044375 3.5 4.0625 C2.8503125 3.51722656 2.200625 2.97195312 1.53125 2.41015625 C1.0259375 1.94480469 0.520625 1.47945312 0 1 C0 0.67 0 0.34 0 0 Z",fill:"#B1AFAB",transform:"translate(110,202)"}),C.jsx("path",{d:"M0 0 C2.97 0.495 2.97 0.495 6 1 C6 1.99 6 2.98 6 4 C6.66 4.33 7.32 4.66 8 5 C5 5 5 5 2.3125 2.5 C1.549375 1.675 0.78625 0.85 0 0 Z",fill:"#CBA19D",transform:"translate(69,163)"})]}),n=r.forwardRef((t,a)=>C.jsx(s,{ref:a,...t}));export{n as ArXivIcon,n as default};
@@ -1 +1 @@
1
- import{j as o,r as s}from"./index-D234yKNJ.js";const a=({...r})=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg","aria-label":"groq logo",role:"img",viewBox:"0 0 24 24",fill:"none",className:"fill-foreground",...r,children:[o.jsx("path",{fill:"#F55036",d:"M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z"}),o.jsx("path",{fill:"#fff",d:"M12.002 6a4.118 4.118 0 0 0-4.118 4.108 4.118 4.118 0 0 0 4.118 4.109h1.354v-1.541h-1.354a2.574 2.574 0 0 1-2.574-2.568 2.574 2.574 0 0 1 2.574-2.568c1.42 0 2.58 1.152 2.58 2.568v3.784a2.58 2.58 0 0 1-2.555 2.567 2.558 2.558 0 0 1-1.791-.752l-1.092 1.09a4.095 4.095 0 0 0 2.855 1.202l.028.001h.029a4.118 4.118 0 0 0 4.061-4.09l.002-3.903A4.119 4.119 0 0 0 12.002 6Z"})]}),e=s.forwardRef((r,l)=>o.jsx(a,{ref:l,...r}));export{e as GroqIcon};
1
+ import{j as o,r as s}from"./index-pBO0SZLD.js";const a=({...r})=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg","aria-label":"groq logo",role:"img",viewBox:"0 0 24 24",fill:"none",className:"fill-foreground",...r,children:[o.jsx("path",{fill:"#F55036",d:"M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z"}),o.jsx("path",{fill:"#fff",d:"M12.002 6a4.118 4.118 0 0 0-4.118 4.108 4.118 4.118 0 0 0 4.118 4.109h1.354v-1.541h-1.354a2.574 2.574 0 0 1-2.574-2.568 2.574 2.574 0 0 1 2.574-2.568c1.42 0 2.58 1.152 2.58 2.568v3.784a2.58 2.58 0 0 1-2.555 2.567 2.558 2.558 0 0 1-1.791-.752l-1.092 1.09a4.095 4.095 0 0 0 2.855 1.202l.028.001h.029a4.118 4.118 0 0 0 4.061-4.09l.002-3.903A4.119 4.119 0 0 0 12.002 6Z"})]}),e=s.forwardRef((r,l)=>o.jsx(a,{ref:l,...r}));export{e as GroqIcon};
@@ -1 +1 @@
1
- import{j as e,c as a,r as l}from"./index-D234yKNJ.js";const t=({className:s,...r})=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",version:"1.2",viewBox:"0 0 24 24",className:a("h-4 w-4 stroke-[1.5]",s),...r,children:[e.jsx("title",{children:"snowflake-svg"}),e.jsx("path",{id:"Layer copy",className:"fill-none stroke-current",d:"m6 22.3l-4.4-4.4 4.4-4.3"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m11 17.9h-9.4"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m7.8 8.9h14.6"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m15.1 1.6v14.6"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m21 11.8l-2.9-2.9 2.9-2.9"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m9.3 6l2.9 2.9-2.9 2.9"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m18.1 3.1l-3 2.9-2.9-2.9"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m12.2 14.8l2.9-3 3 3"})]}),o=l.forwardRef((s,r)=>e.jsx(t,{ref:r,...s}));export{o as freezeAllIcon};
1
+ import{j as e,c as a,r as l}from"./index-pBO0SZLD.js";const t=({className:s,...r})=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",version:"1.2",viewBox:"0 0 24 24",className:a("h-4 w-4 stroke-[1.5]",s),...r,children:[e.jsx("title",{children:"snowflake-svg"}),e.jsx("path",{id:"Layer copy",className:"fill-none stroke-current",d:"m6 22.3l-4.4-4.4 4.4-4.3"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m11 17.9h-9.4"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m7.8 8.9h14.6"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m15.1 1.6v14.6"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m21 11.8l-2.9-2.9 2.9-2.9"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m9.3 6l2.9 2.9-2.9 2.9"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m18.1 3.1l-3 2.9-2.9-2.9"}),e.jsx("path",{id:"Layer",className:"fill-none stroke-current",d:"m12.2 14.8l2.9-3 3 3"})]}),o=l.forwardRef((s,r)=>e.jsx(t,{ref:r,...s}));export{o as freezeAllIcon};
@@ -1 +1 @@
1
- import{j as r,r as e}from"./index-D234yKNJ.js";const s=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.1051 4.16216 5.45425 2.25 8.25001 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75001 14.061M2.25 14.25V11.25M2.25 14.25H5.25M2.25 14.25L7.5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),c=e.forwardRef((o,t)=>r.jsx(s,{ref:t,...o}));export{c as SearchVectorIcon};
1
+ import{j as r,r as e}from"./index-pBO0SZLD.js";const s=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.1051 4.16216 5.45425 2.25 8.25001 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75001 14.061M2.25 14.25V11.25M2.25 14.25H5.25M2.25 14.25L7.5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),c=e.forwardRef((o,t)=>r.jsx(s,{ref:t,...o}));export{c as SearchVectorIcon};
@@ -1 +1 @@
1
- import{j as s,r as t}from"./index-D234yKNJ.js";const e=r=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 16 16",...r,children:[s.jsxs("g",{stroke:"#059669",strokeLinecap:"round",strokeLinejoin:"round",clipPath:"url(#clip0_4380_58979)",children:[s.jsx("path",{d:"M14.666 8a6.667 6.667 0 11-6.667-6.667"}),s.jsx("path",{strokeWidth:"1.25",d:"M14.833 1.5l-3.666 3.667L9.5 3.5"}),s.jsx("path",{d:"M8 1.333a9.667 9.667 0 000 13.333A9.667 9.667 0 0010.665 8M14.666 8H1.333"})]}),s.jsx("defs",{children:s.jsx("clipPath",{id:"clip0_4380_58979",children:s.jsx("path",{fill:"#fff",d:"M0 0H16V16H0z"})})})]}),n=t.forwardRef((r,o)=>s.jsx(e,{ref:o,...r}));export{n as GlobeOkIcon};
1
+ import{j as s,r as t}from"./index-pBO0SZLD.js";const e=r=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 16 16",...r,children:[s.jsxs("g",{stroke:"#059669",strokeLinecap:"round",strokeLinejoin:"round",clipPath:"url(#clip0_4380_58979)",children:[s.jsx("path",{d:"M14.666 8a6.667 6.667 0 11-6.667-6.667"}),s.jsx("path",{strokeWidth:"1.25",d:"M14.833 1.5l-3.666 3.667L9.5 3.5"}),s.jsx("path",{d:"M8 1.333a9.667 9.667 0 000 13.333A9.667 9.667 0 0010.665 8M14.666 8H1.333"})]}),s.jsx("defs",{children:s.jsx("clipPath",{id:"clip0_4380_58979",children:s.jsx("path",{fill:"#fff",d:"M0 0H16V16H0z"})})})]}),n=t.forwardRef((r,o)=>s.jsx(e,{ref:o,...r}));export{n as GlobeOkIcon};
@@ -1 +1 @@
1
- import{j as C,r as s}from"./index-D234yKNJ.js";const e=t=>C.jsxs("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[C.jsx("path",{d:"M26.2078 9.73763C26.435 9.38575 26.6922 8.97739 26.9048 8.65157C26.9964 8.50234 27.0232 8.32499 26.9796 8.15722C26.936 7.98946 26.8253 7.84451 26.6713 7.75319L22.1423 5.09887C22.0635 5.05261 21.9759 5.02173 21.8845 5.00805C21.7931 4.99437 21.6998 4.99815 21.6099 5.01918C21.5201 5.04021 21.4355 5.07806 21.3612 5.13052C21.2869 5.18299 21.2242 5.24902 21.177 5.32477C20.9578 5.68183 20.7345 6.03663 20.5073 6.3891C18.7136 9.20937 16.908 8.86531 13.6572 7.3848L9.15197 5.35084C9.06778 5.31274 8.97643 5.29112 8.88331 5.28724C8.79019 5.28336 8.6972 5.2973 8.60983 5.32825C8.52247 5.35919 8.44251 5.40651 8.37469 5.4674C8.30687 5.52828 8.25256 5.60151 8.21497 5.68273L6.05814 10.3276C5.98511 10.487 5.98071 10.6674 6.04589 10.8298C6.11107 10.9923 6.24062 11.124 6.40666 11.1964C7.35461 11.6221 9.23956 12.471 10.9366 13.2478C17.0476 16.068 22.2426 15.8795 26.2078 9.73763Z",fill:"#2584FF",stroke:"#2584FF",strokeWidth:"2"}),C.jsx("path",{d:"M5.09768 22.3445C5.31006 22.0231 5.56711 21.5948 5.79316 21.2629C9.76184 15.1191 14.9456 14.9323 21.0681 17.7532C22.5734 18.4435 24.0819 19.1272 25.5937 19.8043C25.7596 19.8767 25.889 20.0083 25.9542 20.1708C26.0193 20.3333 26.0149 20.5136 25.9419 20.673L23.7871 25.3173C23.7496 25.3987 23.6953 25.472 23.6275 25.5329C23.5596 25.5939 23.4797 25.6413 23.3923 25.6722C23.3049 25.7032 23.2119 25.7171 23.1187 25.7131C23.0256 25.7092 22.9343 25.6874 22.8501 25.6492L18.3318 23.6189C15.0841 22.136 13.2812 21.7937 11.4882 24.6145C11.2339 25.0124 11.0015 25.3868 10.8201 25.6753C10.7729 25.751 10.7103 25.817 10.6361 25.8695C10.5618 25.922 10.4773 25.9598 10.3876 25.9808C10.2978 26.0018 10.2046 26.0056 10.1132 25.9919C10.0219 25.9783 9.93439 25.9474 9.85573 25.9011L5.33012 23.248C5.17486 23.1565 5.06351 23.0105 5.02004 22.8415C4.97656 22.6726 5.00445 22.4941 5.09768 22.3445Z",fill:"#2584FF",stroke:"#2584FF",strokeWidth:"2"})]}),n=s.forwardRef((t,o)=>C.jsx(e,{ref:o,...t}));export{n as ConfluenceIcon};
1
+ import{j as C,r as s}from"./index-pBO0SZLD.js";const e=t=>C.jsxs("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[C.jsx("path",{d:"M26.2078 9.73763C26.435 9.38575 26.6922 8.97739 26.9048 8.65157C26.9964 8.50234 27.0232 8.32499 26.9796 8.15722C26.936 7.98946 26.8253 7.84451 26.6713 7.75319L22.1423 5.09887C22.0635 5.05261 21.9759 5.02173 21.8845 5.00805C21.7931 4.99437 21.6998 4.99815 21.6099 5.01918C21.5201 5.04021 21.4355 5.07806 21.3612 5.13052C21.2869 5.18299 21.2242 5.24902 21.177 5.32477C20.9578 5.68183 20.7345 6.03663 20.5073 6.3891C18.7136 9.20937 16.908 8.86531 13.6572 7.3848L9.15197 5.35084C9.06778 5.31274 8.97643 5.29112 8.88331 5.28724C8.79019 5.28336 8.6972 5.2973 8.60983 5.32825C8.52247 5.35919 8.44251 5.40651 8.37469 5.4674C8.30687 5.52828 8.25256 5.60151 8.21497 5.68273L6.05814 10.3276C5.98511 10.487 5.98071 10.6674 6.04589 10.8298C6.11107 10.9923 6.24062 11.124 6.40666 11.1964C7.35461 11.6221 9.23956 12.471 10.9366 13.2478C17.0476 16.068 22.2426 15.8795 26.2078 9.73763Z",fill:"#2584FF",stroke:"#2584FF",strokeWidth:"2"}),C.jsx("path",{d:"M5.09768 22.3445C5.31006 22.0231 5.56711 21.5948 5.79316 21.2629C9.76184 15.1191 14.9456 14.9323 21.0681 17.7532C22.5734 18.4435 24.0819 19.1272 25.5937 19.8043C25.7596 19.8767 25.889 20.0083 25.9542 20.1708C26.0193 20.3333 26.0149 20.5136 25.9419 20.673L23.7871 25.3173C23.7496 25.3987 23.6953 25.472 23.6275 25.5329C23.5596 25.5939 23.4797 25.6413 23.3923 25.6722C23.3049 25.7032 23.2119 25.7171 23.1187 25.7131C23.0256 25.7092 22.9343 25.6874 22.8501 25.6492L18.3318 23.6189C15.0841 22.136 13.2812 21.7937 11.4882 24.6145C11.2339 25.0124 11.0015 25.3868 10.8201 25.6753C10.7729 25.751 10.7103 25.817 10.6361 25.8695C10.5618 25.922 10.4773 25.9598 10.3876 25.9808C10.2978 26.0018 10.2046 26.0056 10.1132 25.9919C10.0219 25.9783 9.93439 25.9474 9.85573 25.9011L5.33012 23.248C5.17486 23.1565 5.06351 23.0105 5.02004 22.8415C4.97656 22.6726 5.00445 22.4941 5.09768 22.3445Z",fill:"#2584FF",stroke:"#2584FF",strokeWidth:"2"})]}),n=s.forwardRef((t,o)=>C.jsx(e,{ref:o,...t}));export{n as ConfluenceIcon};