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,4 +1,4 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-BWnKMRFJ.js","./use-post-add-user-JUeLDErC.js","./index-BGt6jQ4x.js"])))=>i.map(i=>d[i]);
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-BtFl7fER.js","./use-post-add-user-w3vpKSOB.js","./index-CJmMEa6d.js"])))=>i.map(i=>d[i]);
2
2
  var GZi=Object.defineProperty;var Eer=e=>{throw TypeError(e)};var XZi=(e,t,n)=>t in e?GZi(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var yl=(e,t,n)=>XZi(e,typeof t!="symbol"?t+"":t,n),MWt=(e,t,n)=>t.has(e)||Eer("Cannot "+n);var le=(e,t,n)=>(MWt(e,t,"read from private field"),n?n.call(e):t.get(e)),ht=(e,t,n)=>t.has(e)?Eer("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,n),et=(e,t,n,i)=>(MWt(e,t,"write to private field"),i?i.call(e,n):t.set(e,n),n),at=(e,t,n)=>(MWt(e,t,"access private method"),n);var Y5=(e,t,n,i)=>({set _(s){et(e,t,s,n)},get _(){return le(e,t,i)}});function wyr(e,t){for(var n=0;n<t.length;n++){const i=t[n];if(typeof i!="string"&&!Array.isArray(i)){for(const s in i)if(s!=="default"&&!(s in e)){const a=Object.getOwnPropertyDescriptor(i,s);a&&Object.defineProperty(e,s,a.get?a:{enumerable:!0,get:()=>i[s]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))i(s);new MutationObserver(s=>{for(const a of s)if(a.type==="childList")for(const l of a.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&i(l)}).observe(document,{childList:!0,subtree:!0});function n(s){const a={};return s.integrity&&(a.integrity=s.integrity),s.referrerPolicy&&(a.referrerPolicy=s.referrerPolicy),s.crossOrigin==="use-credentials"?a.credentials="include":s.crossOrigin==="anonymous"?a.credentials="omit":a.credentials="same-origin",a}function i(s){if(s.ep)return;s.ep=!0;const a=n(s);fetch(s.href,a)}})();var ye=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function b4(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function _mt(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var n=function i(){return this instanceof i?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(i){var s=Object.getOwnPropertyDescriptor(e,i);Object.defineProperty(n,i,s.get?s:{enumerable:!0,get:function(){return e[i]}})}),n}var KZi={exports:{}};(function(e,t){(function(){function n(p){var g=s;s[p]||(s[p]={}),g=s[p],(!g.define||!g.define.packaged)&&(a.original=g.define,g.define=a,g.define.packaged=!0),(!g.require||!g.require.packaged)&&(u.original=g.require,g.require=u,g.require.packaged=!0)}var i="ace",s=function(){return this}();!s&&typeof window<"u"&&(s=window);var a=function(p,g,m){if(typeof p!="string"){a.original?a.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace());return}arguments.length==2&&(m=g),a.modules[p]||(a.payloads[p]=m,a.modules[p]=null)};a.modules={},a.payloads={};var l=function(p,g,m){if(typeof g=="string"){var v=f(p,g);if(v!=null)return m&&m(),v}else if(Object.prototype.toString.call(g)==="[object Array]"){for(var y=[],T=0,_=g.length;T<_;++T){var O=f(p,g[T]);if(O==null&&u.original)return;y.push(O)}return m&&m.apply(null,y)||!0}},u=function(p,g){var m=l("",p,g);return m==null&&u.original?u.original.apply(this,arguments):m},d=function(p,g){if(g.indexOf("!")!==-1){var m=g.split("!");return d(p,m[0])+"!"+d(p,m[1])}if(g.charAt(0)=="."){var v=p.split("/").slice(0,-1).join("/");for(g=v+"/"+g;g.indexOf(".")!==-1&&y!=g;){var y=g;g=g.replace(/\/\.\//,"/").replace(/[^\/]+\/\.\.\//,"")}}return g},f=function(p,g){g=d(p,g);var m=a.modules[g];if(!m){if(m=a.payloads[g],typeof m=="function"){var v={},y={id:g,uri:"",exports:v,packaged:!0},T=function(O,S){return l(g,O,S)},_=m(T,v,y);v=_||y.exports,a.modules[g]=v,delete a.payloads[g]}m=a.modules[g]=v||m}return m};n(i)})(),ace.define("ace/lib/es6-shim",["require","exports","module"],function(n,i,s){function a(l,u,d){Object.defineProperty(l,u,{value:d,enumerable:!1,writable:!0,configurable:!0})}String.prototype.startsWith||a(String.prototype,"startsWith",function(l,u){return u=u||0,this.lastIndexOf(l,u)===u}),String.prototype.endsWith||a(String.prototype,"endsWith",function(l,u){var d=this;(u===void 0||u>d.length)&&(u=d.length),u-=l.length;var f=d.indexOf(l,u);return f!==-1&&f===u}),String.prototype.repeat||a(String.prototype,"repeat",function(l){for(var u="",d=this;l>0;)l&1&&(u+=d),(l>>=1)&&(d+=d);return u}),String.prototype.includes||a(String.prototype,"includes",function(l,u){return this.indexOf(l,u)!=-1}),Object.assign||(Object.assign=function(l){if(l==null)throw new TypeError("Cannot convert undefined or null to object");for(var u=Object(l),d=1;d<arguments.length;d++){var f=arguments[d];f!=null&&Object.keys(f).forEach(function(p){u[p]=f[p]})}return u}),Object.values||(Object.values=function(l){return Object.keys(l).map(function(u){return l[u]})}),Array.prototype.find||a(Array.prototype,"find",function(l){for(var u=this.length,d=arguments[1],f=0;f<u;f++){var p=this[f];if(l.call(d,p,f,this))return p}}),Array.prototype.findIndex||a(Array.prototype,"findIndex",function(l){for(var u=this.length,d=arguments[1],f=0;f<u;f++){var p=this[f];if(l.call(d,p,f,this))return f}}),Array.prototype.includes||a(Array.prototype,"includes",function(l,u){return this.indexOf(l,u)!=-1}),Array.prototype.fill||a(Array.prototype,"fill",function(l){for(var u=this,d=u.length>>>0,f=arguments[1],p=f>>0,g=p<0?Math.max(d+p,0):Math.min(p,d),m=arguments[2],v=m===void 0?d:m>>0,y=v<0?Math.max(d+v,0):Math.min(v,d);g<y;)u[g]=l,g++;return u}),Array.of||a(Array,"of",function(){return Array.prototype.slice.call(arguments)})}),ace.define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/es6-shim"],function(n,i,s){n("./es6-shim")}),ace.define("ace/lib/deep_copy",["require","exports","module"],function(n,i,s){i.deepCopy=function a(l){if(typeof l!="object"||!l)return l;var u;if(Array.isArray(l)){u=[];for(var d=0;d<l.length;d++)u[d]=a(l[d]);return u}if(Object.prototype.toString.call(l)!=="[object Object]")return l;u={};for(var d in l)u[d]=a(l[d]);return u}}),ace.define("ace/lib/lang",["require","exports","module","ace/lib/deep_copy"],function(n,i,s){i.last=function(u){return u[u.length-1]},i.stringReverse=function(u){return u.split("").reverse().join("")},i.stringRepeat=function(u,d){for(var f="";d>0;)d&1&&(f+=u),(d>>=1)&&(u+=u);return f};var a=/^\s\s*/,l=/\s\s*$/;i.stringTrimLeft=function(u){return u.replace(a,"")},i.stringTrimRight=function(u){return u.replace(l,"")},i.copyObject=function(u){var d={};for(var f in u)d[f]=u[f];return d},i.copyArray=function(u){for(var d=[],f=0,p=u.length;f<p;f++)u[f]&&typeof u[f]=="object"?d[f]=this.copyObject(u[f]):d[f]=u[f];return d},i.deepCopy=n("./deep_copy").deepCopy,i.arrayToMap=function(u){for(var d={},f=0;f<u.length;f++)d[u[f]]=1;return d},i.createMap=function(u){var d=Object.create(null);for(var f in u)d[f]=u[f];return d},i.arrayRemove=function(u,d){for(var f=0;f<=u.length;f++)d===u[f]&&u.splice(f,1)},i.escapeRegExp=function(u){return u.replace(/([.*+?^${}()|[\]\/\\])/g,"\\$1")},i.escapeHTML=function(u){return(""+u).replace(/&/g,"&#38;").replace(/"/g,"&#34;").replace(/'/g,"&#39;").replace(/</g,"&#60;")},i.getMatchOffsets=function(u,d){var f=[];return u.replace(d,function(p){f.push({offset:arguments[arguments.length-2],length:p.length})}),f},i.deferredCall=function(u){var d=null,f=function(){d=null,u()},p=function(g){return p.cancel(),d=setTimeout(f,g||0),p};return p.schedule=p,p.call=function(){return this.cancel(),u(),p},p.cancel=function(){return clearTimeout(d),d=null,p},p.isPending=function(){return d},p},i.delayedCall=function(u,d){var f=null,p=function(){f=null,u()},g=function(m){f==null&&(f=setTimeout(p,m||d))};return g.delay=function(m){f&&clearTimeout(f),f=setTimeout(p,m||d)},g.schedule=g,g.call=function(){this.cancel(),u()},g.cancel=function(){f&&clearTimeout(f),f=null},g.isPending=function(){return f},g},i.supportsLookbehind=function(){try{new RegExp("(?<=.)")}catch{return!1}return!0},i.skipEmptyMatch=function(u,d,f){return f&&u.codePointAt(d)>65535?2:1}}),ace.define("ace/lib/useragent",["require","exports","module"],function(n,i,s){i.OS={LINUX:"LINUX",MAC:"MAC",WINDOWS:"WINDOWS"},i.getOS=function(){return i.isMac?i.OS.MAC:i.isLinux?i.OS.LINUX:i.OS.WINDOWS};var a=typeof navigator=="object"?navigator:{},l=(/mac|win|linux/i.exec(a.platform)||["other"])[0].toLowerCase(),u=a.userAgent||"",d=a.appName||"";i.isWin=l=="win",i.isMac=l=="mac",i.isLinux=l=="linux",i.isIE=d=="Microsoft Internet Explorer"||d.indexOf("MSAppHost")>=0?parseFloat((u.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((u.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),i.isOldIE=i.isIE&&i.isIE<9,i.isGecko=i.isMozilla=u.match(/ Gecko\/\d+/),i.isOpera=typeof opera=="object"&&Object.prototype.toString.call(window.opera)=="[object Opera]",i.isWebKit=parseFloat(u.split("WebKit/")[1])||void 0,i.isChrome=parseFloat(u.split(" Chrome/")[1])||void 0,i.isSafari=parseFloat(u.split(" Safari/")[1])&&!i.isChrome||void 0,i.isEdge=parseFloat(u.split(" Edge/")[1])||void 0,i.isAIR=u.indexOf("AdobeAIR")>=0,i.isAndroid=u.indexOf("Android")>=0,i.isChromeOS=u.indexOf(" CrOS ")>=0,i.isIOS=/iPad|iPhone|iPod/.test(u)&&!window.MSStream,i.isIOS&&(i.isMac=!0),i.isMobile=i.isIOS||i.isAndroid}),ace.define("ace/lib/dom",["require","exports","module","ace/lib/useragent"],function(n,i,s){function a(){var m=p;p=null,m&&m.forEach(function(v){l(v[0],v[1])})}function l(m,v,y){if(!(typeof document>"u")){if(p){if(y)a();else if(y===!1)return p.push([m,v])}if(!f){var T=y;!y||!y.getRootNode?T=document:(T=y.getRootNode(),(!T||T==y)&&(T=document));var _=T.ownerDocument||T;if(v&&i.hasCssString(v,T))return null;v&&(m+=`
3
3
  /*# sourceURL=ace/css/`+v+" */");var O=i.createElement("style");O.appendChild(_.createTextNode(m)),v&&(O.id=v),T==_&&(T=i.getDocumentHead(_)),T.insertBefore(O,T.firstChild)}}}var u=n("./useragent"),d="http://www.w3.org/1999/xhtml";i.buildDom=function m(v,y,T){if(typeof v=="string"&&v){var _=document.createTextNode(v);return y&&y.appendChild(_),_}if(!Array.isArray(v))return v&&v.appendChild&&y&&y.appendChild(v),v;if(typeof v[0]!="string"||!v[0]){for(var O=[],S=0;S<v.length;S++){var C=m(v[S],y,T);C&&O.push(C)}return O}var L=document.createElement(v[0]),k=v[1],E=1;k&&typeof k=="object"&&!Array.isArray(k)&&(E=2);for(var S=E;S<v.length;S++)m(v[S],L,T);return E==2&&Object.keys(k).forEach(function(R){var P=k[R];R==="class"?L.className=Array.isArray(P)?P.join(" "):P:typeof P=="function"||R=="value"||R[0]=="$"?L[R]=P:R==="ref"?T&&(T[P]=L):R==="style"?typeof P=="string"&&(L.style.cssText=P):P!=null&&L.setAttribute(R,P)}),y&&y.appendChild(L),L},i.getDocumentHead=function(m){return m||(m=document),m.head||m.getElementsByTagName("head")[0]||m.documentElement},i.createElement=function(m,v){return document.createElementNS?document.createElementNS(v||d,m):document.createElement(m)},i.removeChildren=function(m){m.innerHTML=""},i.createTextNode=function(m,v){var y=v?v.ownerDocument:document;return y.createTextNode(m)},i.createFragment=function(m){var v=m?m.ownerDocument:document;return v.createDocumentFragment()},i.hasCssClass=function(m,v){var y=(m.className+"").split(/\s+/g);return y.indexOf(v)!==-1},i.addCssClass=function(m,v){i.hasCssClass(m,v)||(m.className+=" "+v)},i.removeCssClass=function(m,v){for(var y=m.className.split(/\s+/g);;){var T=y.indexOf(v);if(T==-1)break;y.splice(T,1)}m.className=y.join(" ")},i.toggleCssClass=function(m,v){for(var y=m.className.split(/\s+/g),T=!0;;){var _=y.indexOf(v);if(_==-1)break;T=!1,y.splice(_,1)}return T&&y.push(v),m.className=y.join(" "),T},i.setCssClass=function(m,v,y){y?i.addCssClass(m,v):i.removeCssClass(m,v)},i.hasCssString=function(m,v){var y=0,T;if(v=v||document,T=v.querySelectorAll("style")){for(;y<T.length;)if(T[y++].id===m)return!0}},i.removeElementById=function(m,v){v=v||document,v.getElementById(m)&&v.getElementById(m).remove()};var f,p=[];if(i.useStrictCSP=function(m){f=m,m==0?a():p||(p=[])},i.importCssString=l,i.importCssStylsheet=function(m,v){i.buildDom(["link",{rel:"stylesheet",href:m}],i.getDocumentHead(v))},i.scrollbarWidth=function(m){var v=i.createElement("ace_inner");v.style.width="100%",v.style.minWidth="0px",v.style.height="200px",v.style.display="block";var y=i.createElement("ace_outer"),T=y.style;T.position="absolute",T.left="-10000px",T.overflow="hidden",T.width="200px",T.minWidth="0px",T.height="150px",T.display="block",y.appendChild(v);var _=m&&m.documentElement||document&&document.documentElement;if(!_)return 0;_.appendChild(y);var O=v.offsetWidth;T.overflow="scroll";var S=v.offsetWidth;return O===S&&(S=y.clientWidth),_.removeChild(y),O-S},i.computedStyle=function(m,v){return window.getComputedStyle(m,"")||{}},i.setStyle=function(m,v,y){m[v]!==y&&(m[v]=y)},i.HAS_CSS_ANIMATION=!1,i.HAS_CSS_TRANSFORMS=!1,i.HI_DPI=u.isWin?typeof window<"u"&&window.devicePixelRatio>=1.5:!0,u.isChromeOS&&(i.HI_DPI=!1),typeof document<"u"){var g=document.createElement("div");i.HI_DPI&&g.style.transform!==void 0&&(i.HAS_CSS_TRANSFORMS=!0),!u.isEdge&&typeof g.style.animationName<"u"&&(i.HAS_CSS_ANIMATION=!0),g=null}i.HAS_CSS_TRANSFORMS?i.translate=function(m,v,y){m.style.transform="translate("+Math.round(v)+"px, "+Math.round(y)+"px)"}:i.translate=function(m,v,y){m.style.top=Math.round(y)+"px",m.style.left=Math.round(v)+"px"}}),ace.define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(n,i,s){var a=n("./dom");i.get=function(l,u){var d=new XMLHttpRequest;d.open("GET",l,!0),d.onreadystatechange=function(){d.readyState===4&&u(d.responseText)},d.send(null)},i.loadScript=function(l,u){var d=a.getDocumentHead(),f=document.createElement("script");f.src=l,d.appendChild(f),f.onload=f.onreadystatechange=function(p,g){(g||!f.readyState||f.readyState=="loaded"||f.readyState=="complete")&&(f=f.onload=f.onreadystatechange=null,g||u())}},i.qualifyURL=function(l){var u=document.createElement("a");return u.href=l,u.href}}),ace.define("ace/lib/oop",["require","exports","module"],function(n,i,s){i.inherits=function(a,l){a.super_=l,a.prototype=Object.create(l.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}})},i.mixin=function(a,l){for(var u in l)a[u]=l[u];return a},i.implement=function(a,l){i.mixin(a,l)}}),ace.define("ace/lib/event_emitter",["require","exports","module"],function(n,i,s){var a={},l=function(){this.propagationStopped=!0},u=function(){this.defaultPrevented=!0};a._emit=a._dispatchEvent=function(d,f){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var p=this._eventRegistry[d]||[],g=this._defaultHandlers[d];if(!(!p.length&&!g)){(typeof f!="object"||!f)&&(f={}),f.type||(f.type=d),f.stopPropagation||(f.stopPropagation=l),f.preventDefault||(f.preventDefault=u),p=p.slice();for(var m=0;m<p.length&&(p[m](f,this),!f.propagationStopped);m++);if(g&&!f.defaultPrevented)return g(f,this)}},a._signal=function(d,f){var p=(this._eventRegistry||{})[d];if(p){p=p.slice();for(var g=0;g<p.length;g++)p[g](f,this)}},a.once=function(d,f){var p=this;if(this.on(d,function g(){p.off(d,g),f.apply(null,arguments)}),!f)return new Promise(function(g){f=g})},a.setDefaultHandler=function(d,f){var p=this._defaultHandlers;if(p||(p=this._defaultHandlers={_disabled_:{}}),p[d]){var g=p[d],m=p._disabled_[d];m||(p._disabled_[d]=m=[]),m.push(g);var v=m.indexOf(f);v!=-1&&m.splice(v,1)}p[d]=f},a.removeDefaultHandler=function(d,f){var p=this._defaultHandlers;if(p){var g=p._disabled_[d];if(p[d]==f)g&&this.setDefaultHandler(d,g.pop());else if(g){var m=g.indexOf(f);m!=-1&&g.splice(m,1)}}},a.on=a.addEventListener=function(d,f,p){this._eventRegistry=this._eventRegistry||{};var g=this._eventRegistry[d];return g||(g=this._eventRegistry[d]=[]),g.indexOf(f)==-1&&g[p?"unshift":"push"](f),f},a.off=a.removeListener=a.removeEventListener=function(d,f){this._eventRegistry=this._eventRegistry||{};var p=this._eventRegistry[d];if(p){var g=p.indexOf(f);g!==-1&&p.splice(g,1)}},a.removeAllListeners=function(d){d||(this._eventRegistry=this._defaultHandlers=void 0),this._eventRegistry&&(this._eventRegistry[d]=void 0),this._defaultHandlers&&(this._defaultHandlers[d]=void 0)},i.EventEmitter=a}),ace.define("ace/lib/report_error",["require","exports","module"],function(n,i,s){i.reportError=function(a,l){var u=new Error(a);u.data=l,typeof console=="object"&&console.error&&console.error(u),setTimeout(function(){throw u})}}),ace.define("ace/lib/default_english_messages",["require","exports","module"],function(n,i,s){var a={"autocomplete.popup.aria-roledescription":"Autocomplete suggestions","autocomplete.popup.aria-label":"Autocomplete suggestions","autocomplete.popup.item.aria-roledescription":"item","autocomplete.loading":"Loading...","editor.scroller.aria-roledescription":"editor","editor.scroller.aria-label":"Editor content, press Enter to start editing, press Escape to exit","editor.gutter.aria-roledescription":"editor gutter","editor.gutter.aria-label":"Editor gutter, press Enter to interact with controls using arrow keys, press Escape to exit","error-marker.good-state":"Looks good!","prompt.recently-used":"Recently used","prompt.other-commands":"Other commands","prompt.no-matching-commands":"No matching commands","search-box.find.placeholder":"Search for","search-box.find-all.text":"All","search-box.replace.placeholder":"Replace with","search-box.replace-next.text":"Replace","search-box.replace-all.text":"All","search-box.toggle-replace.title":"Toggle Replace mode","search-box.toggle-regexp.title":"RegExp Search","search-box.toggle-case.title":"CaseSensitive Search","search-box.toggle-whole-word.title":"Whole Word Search","search-box.toggle-in-selection.title":"Search In Selection","search-box.search-counter":"$0 of $1","text-input.aria-roledescription":"editor","text-input.aria-label":"Cursor at row $0","gutter.code-folding.range.aria-label":"Toggle code folding, rows $0 through $1","gutter.code-folding.closed.aria-label":"Toggle code folding, rows $0 through $1","gutter.code-folding.open.aria-label":"Toggle code folding, row $0","gutter.code-folding.closed.title":"Unfold code","gutter.code-folding.open.title":"Fold code","gutter.annotation.aria-label.error":"Error, read annotations row $0","gutter.annotation.aria-label.warning":"Warning, read annotations row $0","gutter.annotation.aria-label.info":"Info, read annotations row $0","inline-fold.closed.title":"Unfold code","gutter-tooltip.aria-label.error.singular":"error","gutter-tooltip.aria-label.error.plural":"errors","gutter-tooltip.aria-label.warning.singular":"warning","gutter-tooltip.aria-label.warning.plural":"warnings","gutter-tooltip.aria-label.info.singular":"information message","gutter-tooltip.aria-label.info.plural":"information messages","gutter.annotation.aria-label.security":"Security finding, read annotations row $0","gutter.annotation.aria-label.hint":"Suggestion, read annotations row $0","gutter-tooltip.aria-label.security.singular":"security finding","gutter-tooltip.aria-label.security.plural":"security findings","gutter-tooltip.aria-label.hint.singular":"suggestion","gutter-tooltip.aria-label.hint.plural":"suggestions","editor.tooltip.disable-editing":"Editing is disabled"};i.defaultEnglishMessages=a}),ace.define("ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter","ace/lib/report_error","ace/lib/default_english_messages"],function(n,i,s){"no use strict";function a(y){typeof console<"u"&&console.warn&&console.warn.apply(console,arguments)}var l=n("./oop"),u=n("./event_emitter").EventEmitter,d=n("./report_error").reportError,f=n("./default_english_messages").defaultEnglishMessages,p={setOptions:function(y){Object.keys(y).forEach(function(T){this.setOption(T,y[T])},this)},getOptions:function(y){var T={};if(y)Array.isArray(y)||(y=Object.keys(y));else{var _=this.$options;y=Object.keys(_).filter(function(O){return!_[O].hidden})}return y.forEach(function(O){T[O]=this.getOption(O)},this),T},setOption:function(y,T){if(this["$"+y]!==T){var _=this.$options[y];if(!_)return a('misspelled option "'+y+'"');if(_.forwardTo)return this[_.forwardTo]&&this[_.forwardTo].setOption(y,T);_.handlesSet||(this["$"+y]=T),_&&_.set&&_.set.call(this,T)}},getOption:function(y){var T=this.$options[y];return T?T.forwardTo?this[T.forwardTo]&&this[T.forwardTo].getOption(y):T&&T.get?T.get.call(this):this["$"+y]:a('misspelled option "'+y+'"')}},g,m,v=function(){function y(){this.$defaultOptions={},g=f,m="dollarSigns"}return y.prototype.defineOptions=function(T,_,O){return T.$options||(this.$defaultOptions[_]=T.$options={}),Object.keys(O).forEach(function(S){var C=O[S];typeof C=="string"&&(C={forwardTo:C}),C.name||(C.name=S),T.$options[C.name]=C,"initialValue"in C&&(T["$"+C.name]=C.initialValue)}),l.implement(T,p),this},y.prototype.resetOptions=function(T){Object.keys(T.$options).forEach(function(_){var O=T.$options[_];"value"in O&&T.setOption(_,O.value)})},y.prototype.setDefaultValue=function(T,_,O){if(!T){for(T in this.$defaultOptions)if(this.$defaultOptions[T][_])break;if(!this.$defaultOptions[T][_])return!1}var S=this.$defaultOptions[T]||(this.$defaultOptions[T]={});S[_]&&(S.forwardTo?this.setDefaultValue(S.forwardTo,_,O):S[_].value=O)},y.prototype.setDefaultValues=function(T,_){Object.keys(_).forEach(function(O){this.setDefaultValue(T,O,_[O])},this)},y.prototype.setMessages=function(T,_){g=T,_&&_.placeholders&&(m=_.placeholders)},y.prototype.nls=function(T,_,O){g[T]||(a("No message found for the key '"+T+"' in messages with id "+g.$id+", trying to find a translation for the default string '"+_+"'."),g[_]||a("No message found for the default string '"+_+"' in the provided messages. Falling back to the default English message."));var S=g[T]||g[_]||_;return O&&(m==="dollarSigns"&&(S=S.replace(/\$(\$|[\d]+)/g,function(C,L){return L=="$"?"$":O[L]})),m==="curlyBrackets"&&(S=S.replace(/\{([^\}]+)\}/g,function(C,L){return O[L]}))),S},y}();v.prototype.warn=a,v.prototype.reportError=d,l.implement(v.prototype,u),i.AppConfig=v}),ace.define("ace/theme/textmate-css",["require","exports","module"],function(n,i,s){s.exports=`.ace-tm .ace_gutter {
4
4
  background: #f0f0f0;
@@ -9098,7 +9098,7 @@ Consider installing the package or pass your own 'workerFactory' to ELK's constr
9098
9098
  *
9099
9099
  * This source code is licensed under the ISC license.
9100
9100
  * See the LICENSE file in the root directory of this source tree.
9101
- */const jDo=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:Nve,AArrowDownIcon:Nve,AArrowUp:Dve,AArrowUpIcon:Dve,ALargeSmall:Pve,ALargeSmallIcon:Pve,Accessibility:Ive,AccessibilityIcon:Ive,Activity:jve,ActivityIcon:jve,ActivitySquare:iH,ActivitySquareIcon:iH,AirVent:qve,AirVentIcon:qve,Airplay:Fve,AirplayIcon:Fve,AlarmCheck:Hj,AlarmCheckIcon:Hj,AlarmClock:Bve,AlarmClockCheck:Hj,AlarmClockCheckIcon:Hj,AlarmClockIcon:Bve,AlarmClockMinus:Bj,AlarmClockMinusIcon:Bj,AlarmClockOff:Hve,AlarmClockOffIcon:Hve,AlarmClockPlus:Wj,AlarmClockPlusIcon:Wj,AlarmMinus:Bj,AlarmMinusIcon:Bj,AlarmPlus:Wj,AlarmPlusIcon:Wj,AlarmSmoke:Wve,AlarmSmokeIcon:Wve,Album:$ve,AlbumIcon:$ve,AlertCircle:bq,AlertCircleIcon:bq,AlertOctagon:NF,AlertOctagonIcon:NF,AlertTriangle:sB,AlertTriangleIcon:sB,AlignCenter:Gve,AlignCenterHorizontal:Vve,AlignCenterHorizontalIcon:Vve,AlignCenterIcon:Gve,AlignCenterVertical:Uve,AlignCenterVerticalIcon:Uve,AlignEndHorizontal:Xve,AlignEndHorizontalIcon:Xve,AlignEndVertical:Kve,AlignEndVerticalIcon:Kve,AlignHorizontalDistributeCenter:Yve,AlignHorizontalDistributeCenterIcon:Yve,AlignHorizontalDistributeEnd:Zve,AlignHorizontalDistributeEndIcon:Zve,AlignHorizontalDistributeStart:Jve,AlignHorizontalDistributeStartIcon:Jve,AlignHorizontalJustifyCenter:e9e,AlignHorizontalJustifyCenterIcon:e9e,AlignHorizontalJustifyEnd:t9e,AlignHorizontalJustifyEndIcon:t9e,AlignHorizontalJustifyStart:n9e,AlignHorizontalJustifyStartIcon:n9e,AlignHorizontalSpaceAround:r9e,AlignHorizontalSpaceAroundIcon:r9e,AlignHorizontalSpaceBetween:i9e,AlignHorizontalSpaceBetweenIcon:i9e,AlignJustify:s9e,AlignJustifyIcon:s9e,AlignLeft:o9e,AlignLeftIcon:o9e,AlignRight:a9e,AlignRightIcon:a9e,AlignStartHorizontal:l9e,AlignStartHorizontalIcon:l9e,AlignStartVertical:c9e,AlignStartVerticalIcon:c9e,AlignVerticalDistributeCenter:u9e,AlignVerticalDistributeCenterIcon:u9e,AlignVerticalDistributeEnd:d9e,AlignVerticalDistributeEndIcon:d9e,AlignVerticalDistributeStart:h9e,AlignVerticalDistributeStartIcon:h9e,AlignVerticalJustifyCenter:f9e,AlignVerticalJustifyCenterIcon:f9e,AlignVerticalJustifyEnd:p9e,AlignVerticalJustifyEndIcon:p9e,AlignVerticalJustifyStart:g9e,AlignVerticalJustifyStartIcon:g9e,AlignVerticalSpaceAround:m9e,AlignVerticalSpaceAroundIcon:m9e,AlignVerticalSpaceBetween:b9e,AlignVerticalSpaceBetweenIcon:b9e,Ambulance:v9e,AmbulanceIcon:v9e,Ampersand:y9e,AmpersandIcon:y9e,Ampersands:T9e,AmpersandsIcon:T9e,Amphora:M9e,AmphoraIcon:M9e,Anchor:w9e,AnchorIcon:w9e,Angry:O9e,AngryIcon:O9e,Annoyed:_9e,AnnoyedIcon:_9e,Antenna:A9e,AntennaIcon:A9e,Anvil:x9e,AnvilIcon:x9e,Aperture:S9e,ApertureIcon:S9e,AppWindow:Q9e,AppWindowIcon:Q9e,AppWindowMac:C9e,AppWindowMacIcon:C9e,Apple:E9e,AppleIcon:E9e,Archive:k9e,ArchiveIcon:k9e,ArchiveRestore:z9e,ArchiveRestoreIcon:z9e,ArchiveX:L9e,ArchiveXIcon:L9e,AreaChart:iq,AreaChartIcon:iq,Armchair:R9e,ArmchairIcon:R9e,ArrowBigDown:D9e,ArrowBigDownDash:N9e,ArrowBigDownDashIcon:N9e,ArrowBigDownIcon:D9e,ArrowBigLeft:I9e,ArrowBigLeftDash:P9e,ArrowBigLeftDashIcon:P9e,ArrowBigLeftIcon:I9e,ArrowBigRight:q9e,ArrowBigRightDash:j9e,ArrowBigRightDashIcon:j9e,ArrowBigRightIcon:q9e,ArrowBigUp:H9e,ArrowBigUpDash:F9e,ArrowBigUpDashIcon:F9e,ArrowBigUpIcon:H9e,ArrowDown:Z9e,ArrowDown01:B9e,ArrowDown01Icon:B9e,ArrowDown10:W9e,ArrowDown10Icon:W9e,ArrowDownAZ:$j,ArrowDownAZIcon:$j,ArrowDownAz:$j,ArrowDownAzIcon:$j,ArrowDownCircle:vq,ArrowDownCircleIcon:vq,ArrowDownFromLine:$9e,ArrowDownFromLineIcon:$9e,ArrowDownIcon:Z9e,ArrowDownLeft:V9e,ArrowDownLeftFromCircle:Tq,ArrowDownLeftFromCircleIcon:Tq,ArrowDownLeftFromSquare:cH,ArrowDownLeftFromSquareIcon:cH,ArrowDownLeftIcon:V9e,ArrowDownLeftSquare:oH,ArrowDownLeftSquareIcon:oH,ArrowDownNarrowWide:U9e,ArrowDownNarrowWideIcon:U9e,ArrowDownRight:X9e,ArrowDownRightFromCircle:Mq,ArrowDownRightFromCircleIcon:Mq,ArrowDownRightFromSquare:uH,ArrowDownRightFromSquareIcon:uH,ArrowDownRightIcon:X9e,ArrowDownRightSquare:sH,ArrowDownRightSquareIcon:sH,ArrowDownSquare:aH,ArrowDownSquareIcon:aH,ArrowDownToDot:G9e,ArrowDownToDotIcon:G9e,ArrowDownToLine:K9e,ArrowDownToLineIcon:K9e,ArrowDownUp:Y9e,ArrowDownUpIcon:Y9e,ArrowDownWideNarrow:Uj,ArrowDownWideNarrowIcon:Uj,ArrowDownZA:Vj,ArrowDownZAIcon:Vj,ArrowDownZa:Vj,ArrowDownZaIcon:Vj,ArrowLeft:nye,ArrowLeftCircle:yq,ArrowLeftCircleIcon:yq,ArrowLeftFromLine:J9e,ArrowLeftFromLineIcon:J9e,ArrowLeftIcon:nye,ArrowLeftRight:eye,ArrowLeftRightIcon:eye,ArrowLeftSquare:lH,ArrowLeftSquareIcon:lH,ArrowLeftToLine:tye,ArrowLeftToLineIcon:tye,ArrowRight:sye,ArrowRightCircle:Oq,ArrowRightCircleIcon:Oq,ArrowRightFromLine:rye,ArrowRightFromLineIcon:rye,ArrowRightIcon:sye,ArrowRightLeft:iye,ArrowRightLeftIcon:iye,ArrowRightSquare:hH,ArrowRightSquareIcon:hH,ArrowRightToLine:oye,ArrowRightToLineIcon:oye,ArrowUp:mye,ArrowUp01:aye,ArrowUp01Icon:aye,ArrowUp10:lye,ArrowUp10Icon:lye,ArrowUpAZ:Gj,ArrowUpAZIcon:Gj,ArrowUpAz:Gj,ArrowUpAzIcon:Gj,ArrowUpCircle:Aq,ArrowUpCircleIcon:Aq,ArrowUpDown:cye,ArrowUpDownIcon:cye,ArrowUpFromDot:uye,ArrowUpFromDotIcon:uye,ArrowUpFromLine:dye,ArrowUpFromLineIcon:dye,ArrowUpIcon:mye,ArrowUpLeft:hye,ArrowUpLeftFromCircle:wq,ArrowUpLeftFromCircleIcon:wq,ArrowUpLeftFromSquare:dH,ArrowUpLeftFromSquareIcon:dH,ArrowUpLeftIcon:hye,ArrowUpLeftSquare:fH,ArrowUpLeftSquareIcon:fH,ArrowUpNarrowWide:Xj,ArrowUpNarrowWideIcon:Xj,ArrowUpRight:fye,ArrowUpRightFromCircle:_q,ArrowUpRightFromCircleIcon:_q,ArrowUpRightFromSquare:pH,ArrowUpRightFromSquareIcon:pH,ArrowUpRightIcon:fye,ArrowUpRightSquare:gH,ArrowUpRightSquareIcon:gH,ArrowUpSquare:mH,ArrowUpSquareIcon:mH,ArrowUpToLine:pye,ArrowUpToLineIcon:pye,ArrowUpWideNarrow:gye,ArrowUpWideNarrowIcon:gye,ArrowUpZA:Kj,ArrowUpZAIcon:Kj,ArrowUpZa:Kj,ArrowUpZaIcon:Kj,ArrowsUpFromLine:bye,ArrowsUpFromLineIcon:bye,Asterisk:vye,AsteriskIcon:vye,AsteriskSquare:bH,AsteriskSquareIcon:bH,AtSign:yye,AtSignIcon:yye,Atom:Tye,AtomIcon:Tye,AudioLines:Mye,AudioLinesIcon:Mye,AudioWaveform:wye,AudioWaveformIcon:wye,Award:_ye,AwardIcon:_ye,Axe:Oye,AxeIcon:Oye,Axis3D:Yj,Axis3DIcon:Yj,Axis3d:Yj,Axis3dIcon:Yj,Baby:xye,BabyIcon:xye,Backpack:Aye,BackpackIcon:Aye,Badge:Fye,BadgeAlert:Cye,BadgeAlertIcon:Cye,BadgeCent:Sye,BadgeCentIcon:Sye,BadgeCheck:Zj,BadgeCheckIcon:Zj,BadgeDollarSign:zye,BadgeDollarSignIcon:zye,BadgeEuro:Qye,BadgeEuroIcon:Qye,BadgeHelp:Eye,BadgeHelpIcon:Eye,BadgeIcon:Fye,BadgeIndianRupee:Lye,BadgeIndianRupeeIcon:Lye,BadgeInfo:kye,BadgeInfoIcon:kye,BadgeJapaneseYen:Rye,BadgeJapaneseYenIcon:Rye,BadgeMinus:Nye,BadgeMinusIcon:Nye,BadgePercent:Dye,BadgePercentIcon:Dye,BadgePlus:Pye,BadgePlusIcon:Pye,BadgePoundSterling:jye,BadgePoundSterlingIcon:jye,BadgeRussianRuble:Iye,BadgeRussianRubleIcon:Iye,BadgeSwissFranc:qye,BadgeSwissFrancIcon:qye,BadgeX:Hye,BadgeXIcon:Hye,BaggageClaim:Bye,BaggageClaimIcon:Bye,Ban:Wye,BanIcon:Wye,Banana:$ye,BananaIcon:$ye,Bandage:Vye,BandageIcon:Vye,Banknote:Kye,BanknoteArrowDown:Uye,BanknoteArrowDownIcon:Uye,BanknoteArrowUp:Gye,BanknoteArrowUpIcon:Gye,BanknoteIcon:Kye,BanknoteX:Xye,BanknoteXIcon:Xye,BarChart:hq,BarChart2:fq,BarChart2Icon:fq,BarChart3:uq,BarChart3Icon:uq,BarChart4:cq,BarChart4Icon:cq,BarChartBig:lq,BarChartBigIcon:lq,BarChartHorizontal:sq,BarChartHorizontalBig:oq,BarChartHorizontalBigIcon:oq,BarChartHorizontalIcon:sq,BarChartIcon:hq,Barcode:Yye,BarcodeIcon:Yye,Baseline:Zye,BaselineIcon:Zye,Bath:Jye,BathIcon:Jye,Battery:sTe,BatteryCharging:eTe,BatteryChargingIcon:eTe,BatteryFull:tTe,BatteryFullIcon:tTe,BatteryIcon:sTe,BatteryLow:nTe,BatteryLowIcon:nTe,BatteryMedium:rTe,BatteryMediumIcon:rTe,BatteryPlus:iTe,BatteryPlusIcon:iTe,BatteryWarning:oTe,BatteryWarningIcon:oTe,Beaker:lTe,BeakerIcon:lTe,Bean:uTe,BeanIcon:uTe,BeanOff:aTe,BeanOffIcon:aTe,Bed:hTe,BedDouble:cTe,BedDoubleIcon:cTe,BedIcon:hTe,BedSingle:dTe,BedSingleIcon:dTe,Beef:fTe,BeefIcon:fTe,Beer:pTe,BeerIcon:pTe,BeerOff:gTe,BeerOffIcon:gTe,Bell:wTe,BellDot:mTe,BellDotIcon:mTe,BellElectric:bTe,BellElectricIcon:bTe,BellIcon:wTe,BellMinus:vTe,BellMinusIcon:vTe,BellOff:yTe,BellOffIcon:yTe,BellPlus:TTe,BellPlusIcon:TTe,BellRing:MTe,BellRingIcon:MTe,BetweenHorizonalEnd:Jj,BetweenHorizonalEndIcon:Jj,BetweenHorizonalStart:eq,BetweenHorizonalStartIcon:eq,BetweenHorizontalEnd:Jj,BetweenHorizontalEndIcon:Jj,BetweenHorizontalStart:eq,BetweenHorizontalStartIcon:eq,BetweenVerticalEnd:_Te,BetweenVerticalEndIcon:_Te,BetweenVerticalStart:OTe,BetweenVerticalStartIcon:OTe,BicepsFlexed:ATe,BicepsFlexedIcon:ATe,Bike:xTe,BikeIcon:xTe,Binary:STe,BinaryIcon:STe,Binoculars:CTe,BinocularsIcon:CTe,Biohazard:QTe,BiohazardIcon:QTe,Bird:zTe,BirdIcon:zTe,Bitcoin:ETe,BitcoinIcon:ETe,Blend:kTe,BlendIcon:kTe,Blinds:LTe,BlindsIcon:LTe,Blocks:RTe,BlocksIcon:RTe,Bluetooth:ITe,BluetoothConnected:NTe,BluetoothConnectedIcon:NTe,BluetoothIcon:ITe,BluetoothOff:DTe,BluetoothOffIcon:DTe,BluetoothSearching:PTe,BluetoothSearchingIcon:PTe,Bold:jTe,BoldIcon:jTe,Bolt:qTe,BoltIcon:qTe,Bomb:FTe,BombIcon:FTe,Bone:HTe,BoneIcon:HTe,Book:dMe,BookA:BTe,BookAIcon:BTe,BookAudio:WTe,BookAudioIcon:WTe,BookCheck:$Te,BookCheckIcon:$Te,BookCopy:VTe,BookCopyIcon:VTe,BookDashed:tq,BookDashedIcon:tq,BookDown:UTe,BookDownIcon:UTe,BookHeadphones:GTe,BookHeadphonesIcon:GTe,BookHeart:XTe,BookHeartIcon:XTe,BookIcon:dMe,BookImage:KTe,BookImageIcon:KTe,BookKey:ZTe,BookKeyIcon:ZTe,BookLock:YTe,BookLockIcon:YTe,BookMarked:JTe,BookMarkedIcon:JTe,BookMinus:eMe,BookMinusIcon:eMe,BookOpen:rMe,BookOpenCheck:tMe,BookOpenCheckIcon:tMe,BookOpenIcon:rMe,BookOpenText:nMe,BookOpenTextIcon:nMe,BookPlus:iMe,BookPlusIcon:iMe,BookTemplate:tq,BookTemplateIcon:tq,BookText:oMe,BookTextIcon:oMe,BookType:sMe,BookTypeIcon:sMe,BookUp:cMe,BookUp2:aMe,BookUp2Icon:aMe,BookUpIcon:cMe,BookUser:lMe,BookUserIcon:lMe,BookX:uMe,BookXIcon:uMe,Bookmark:mMe,BookmarkCheck:hMe,BookmarkCheckIcon:hMe,BookmarkIcon:mMe,BookmarkMinus:pMe,BookmarkMinusIcon:pMe,BookmarkPlus:fMe,BookmarkPlusIcon:fMe,BookmarkX:gMe,BookmarkXIcon:gMe,BoomBox:bMe,BoomBoxIcon:bMe,Bot:TMe,BotIcon:TMe,BotMessageSquare:vMe,BotMessageSquareIcon:vMe,BotOff:yMe,BotOffIcon:yMe,BowArrow:MMe,BowArrowIcon:MMe,Box:wMe,BoxIcon:wMe,BoxSelect:CH,BoxSelectIcon:CH,Boxes:_Me,BoxesIcon:_Me,Braces:nq,BracesIcon:nq,Brackets:OMe,BracketsIcon:OMe,Brain:SMe,BrainCircuit:AMe,BrainCircuitIcon:AMe,BrainCog:xMe,BrainCogIcon:xMe,BrainIcon:SMe,BrickWall:QMe,BrickWallFire:CMe,BrickWallFireIcon:CMe,BrickWallIcon:QMe,Briefcase:kMe,BriefcaseBusiness:zMe,BriefcaseBusinessIcon:zMe,BriefcaseConveyorBelt:EMe,BriefcaseConveyorBeltIcon:EMe,BriefcaseIcon:kMe,BriefcaseMedical:LMe,BriefcaseMedicalIcon:LMe,BringToFront:RMe,BringToFrontIcon:RMe,Brush:NMe,BrushIcon:NMe,Bubbles:DMe,BubblesIcon:DMe,Bug:jMe,BugIcon:jMe,BugOff:PMe,BugOffIcon:PMe,BugPlay:IMe,BugPlayIcon:IMe,Building:FMe,Building2:qMe,Building2Icon:qMe,BuildingIcon:FMe,Bus:BMe,BusFront:HMe,BusFrontIcon:HMe,BusIcon:BMe,Cable:$Me,CableCar:WMe,CableCarIcon:WMe,CableIcon:$Me,Cake:UMe,CakeIcon:UMe,CakeSlice:VMe,CakeSliceIcon:VMe,Calculator:GMe,CalculatorIcon:GMe,Calendar:gwe,Calendar1:XMe,Calendar1Icon:XMe,CalendarArrowDown:KMe,CalendarArrowDownIcon:KMe,CalendarArrowUp:YMe,CalendarArrowUpIcon:YMe,CalendarCheck:JMe,CalendarCheck2:ZMe,CalendarCheck2Icon:ZMe,CalendarCheckIcon:JMe,CalendarClock:ewe,CalendarClockIcon:ewe,CalendarCog:twe,CalendarCogIcon:twe,CalendarDays:nwe,CalendarDaysIcon:nwe,CalendarFold:rwe,CalendarFoldIcon:rwe,CalendarHeart:iwe,CalendarHeartIcon:iwe,CalendarIcon:gwe,CalendarMinus:swe,CalendarMinus2:owe,CalendarMinus2Icon:owe,CalendarMinusIcon:swe,CalendarOff:awe,CalendarOffIcon:awe,CalendarPlus:cwe,CalendarPlus2:lwe,CalendarPlus2Icon:lwe,CalendarPlusIcon:cwe,CalendarRange:uwe,CalendarRangeIcon:uwe,CalendarSearch:dwe,CalendarSearchIcon:dwe,CalendarSync:hwe,CalendarSyncIcon:hwe,CalendarX:pwe,CalendarX2:fwe,CalendarX2Icon:fwe,CalendarXIcon:pwe,Camera:vwe,CameraIcon:vwe,CameraOff:mwe,CameraOffIcon:mwe,CandlestickChart:aq,CandlestickChartIcon:aq,Candy:Twe,CandyCane:bwe,CandyCaneIcon:bwe,CandyIcon:Twe,CandyOff:ywe,CandyOffIcon:ywe,Cannabis:Mwe,CannabisIcon:Mwe,Captions:rq,CaptionsIcon:rq,CaptionsOff:wwe,CaptionsOffIcon:wwe,Car:Owe,CarFront:_we,CarFrontIcon:_we,CarIcon:Owe,CarTaxiFront:Awe,CarTaxiFrontIcon:Awe,Caravan:xwe,CaravanIcon:xwe,Carrot:Cwe,CarrotIcon:Cwe,CaseLower:Swe,CaseLowerIcon:Swe,CaseSensitive:Qwe,CaseSensitiveIcon:Qwe,CaseUpper:zwe,CaseUpperIcon:zwe,CassetteTape:Ewe,CassetteTapeIcon:Ewe,Cast:Lwe,CastIcon:Lwe,Castle:kwe,CastleIcon:kwe,Cat:Rwe,CatIcon:Rwe,Cctv:Nwe,CctvIcon:Nwe,ChartArea:iq,ChartAreaIcon:iq,ChartBar:sq,ChartBarBig:oq,ChartBarBigIcon:oq,ChartBarDecreasing:Dwe,ChartBarDecreasingIcon:Dwe,ChartBarIcon:sq,ChartBarIncreasing:Pwe,ChartBarIncreasingIcon:Pwe,ChartBarStacked:Iwe,ChartBarStackedIcon:Iwe,ChartCandlestick:aq,ChartCandlestickIcon:aq,ChartColumn:uq,ChartColumnBig:lq,ChartColumnBigIcon:lq,ChartColumnDecreasing:jwe,ChartColumnDecreasingIcon:jwe,ChartColumnIcon:uq,ChartColumnIncreasing:cq,ChartColumnIncreasingIcon:cq,ChartColumnStacked:qwe,ChartColumnStackedIcon:qwe,ChartGantt:Fwe,ChartGanttIcon:Fwe,ChartLine:dq,ChartLineIcon:dq,ChartNetwork:Hwe,ChartNetworkIcon:Hwe,ChartNoAxesColumn:fq,ChartNoAxesColumnDecreasing:Bwe,ChartNoAxesColumnDecreasingIcon:Bwe,ChartNoAxesColumnIcon:fq,ChartNoAxesColumnIncreasing:hq,ChartNoAxesColumnIncreasingIcon:hq,ChartNoAxesCombined:Wwe,ChartNoAxesCombinedIcon:Wwe,ChartNoAxesGantt:pq,ChartNoAxesGanttIcon:pq,ChartPie:gq,ChartPieIcon:gq,ChartScatter:mq,ChartScatterIcon:mq,ChartSpline:$we,ChartSplineIcon:$we,Check:Fle,CheckCheck:Vwe,CheckCheckIcon:Vwe,CheckCircle:Sq,CheckCircle2:xq,CheckCircle2Icon:xq,CheckCircleIcon:Sq,CheckIcon:Fle,CheckSquare:yH,CheckSquare2:TH,CheckSquare2Icon:TH,CheckSquareIcon:yH,ChefHat:Uwe,ChefHatIcon:Uwe,Cherry:Gwe,CherryIcon:Gwe,ChevronDown:tee,ChevronDownCircle:Cq,ChevronDownCircleIcon:Cq,ChevronDownIcon:tee,ChevronDownSquare:MH,ChevronDownSquareIcon:MH,ChevronFirst:Xwe,ChevronFirstIcon:Xwe,ChevronLast:Kwe,ChevronLastIcon:Kwe,ChevronLeft:Ywe,ChevronLeftCircle:Qq,ChevronLeftCircleIcon:Qq,ChevronLeftIcon:Ywe,ChevronLeftSquare:wH,ChevronLeftSquareIcon:wH,ChevronRight:Zwe,ChevronRightCircle:zq,ChevronRightCircleIcon:zq,ChevronRightIcon:Zwe,ChevronRightSquare:_H,ChevronRightSquareIcon:_H,ChevronUp:Hle,ChevronUpCircle:Eq,ChevronUpCircleIcon:Eq,ChevronUpIcon:Hle,ChevronUpSquare:OH,ChevronUpSquareIcon:OH,ChevronsDown:Jwe,ChevronsDownIcon:Jwe,ChevronsDownUp:e_e,ChevronsDownUpIcon:e_e,ChevronsLeft:r_e,ChevronsLeftIcon:r_e,ChevronsLeftRight:n_e,ChevronsLeftRightEllipsis:t_e,ChevronsLeftRightEllipsisIcon:t_e,ChevronsLeftRightIcon:n_e,ChevronsRight:o_e,ChevronsRightIcon:o_e,ChevronsRightLeft:i_e,ChevronsRightLeftIcon:i_e,ChevronsUp:s_e,ChevronsUpDown:Ble,ChevronsUpDownIcon:Ble,ChevronsUpIcon:s_e,Chrome:a_e,ChromeIcon:a_e,Church:l_e,ChurchIcon:l_e,Cigarette:c_e,CigaretteIcon:c_e,CigaretteOff:u_e,CigaretteOffIcon:u_e,Circle:Wle,CircleAlert:bq,CircleAlertIcon:bq,CircleArrowDown:vq,CircleArrowDownIcon:vq,CircleArrowLeft:yq,CircleArrowLeftIcon:yq,CircleArrowOutDownLeft:Tq,CircleArrowOutDownLeftIcon:Tq,CircleArrowOutDownRight:Mq,CircleArrowOutDownRightIcon:Mq,CircleArrowOutUpLeft:wq,CircleArrowOutUpLeftIcon:wq,CircleArrowOutUpRight:_q,CircleArrowOutUpRightIcon:_q,CircleArrowRight:Oq,CircleArrowRightIcon:Oq,CircleArrowUp:Aq,CircleArrowUpIcon:Aq,CircleCheck:xq,CircleCheckBig:Sq,CircleCheckBigIcon:Sq,CircleCheckIcon:xq,CircleChevronDown:Cq,CircleChevronDownIcon:Cq,CircleChevronLeft:Qq,CircleChevronLeftIcon:Qq,CircleChevronRight:zq,CircleChevronRightIcon:zq,CircleChevronUp:Eq,CircleChevronUpIcon:Eq,CircleDashed:d_e,CircleDashedIcon:d_e,CircleDivide:Lq,CircleDivideIcon:Lq,CircleDollarSign:h_e,CircleDollarSignIcon:h_e,CircleDot:g_e,CircleDotDashed:f_e,CircleDotDashedIcon:f_e,CircleDotIcon:g_e,CircleEllipsis:p_e,CircleEllipsisIcon:p_e,CircleEqual:m_e,CircleEqualIcon:m_e,CircleFadingArrowUp:b_e,CircleFadingArrowUpIcon:b_e,CircleFadingPlus:v_e,CircleFadingPlusIcon:v_e,CircleGauge:kq,CircleGaugeIcon:kq,CircleHelp:Rq,CircleHelpIcon:Rq,CircleIcon:Wle,CircleMinus:Nq,CircleMinusIcon:Nq,CircleOff:y_e,CircleOffIcon:y_e,CircleParking:Pq,CircleParkingIcon:Pq,CircleParkingOff:Dq,CircleParkingOffIcon:Dq,CirclePause:Iq,CirclePauseIcon:Iq,CirclePercent:qq,CirclePercentIcon:qq,CirclePlay:jq,CirclePlayIcon:jq,CirclePlus:Fq,CirclePlusIcon:Fq,CirclePower:Hq,CirclePowerIcon:Hq,CircleSlash:T_e,CircleSlash2:Bq,CircleSlash2Icon:Bq,CircleSlashIcon:T_e,CircleSlashed:Bq,CircleSlashedIcon:Bq,CircleSmall:M_e,CircleSmallIcon:M_e,CircleStop:Wq,CircleStopIcon:Wq,CircleUser:Vq,CircleUserIcon:Vq,CircleUserRound:$q,CircleUserRoundIcon:$q,CircleX:vk,CircleXIcon:vk,CircuitBoard:w_e,CircuitBoardIcon:w_e,Citrus:__e,CitrusIcon:__e,Clapperboard:O_e,ClapperboardIcon:O_e,Clipboard:k_e,ClipboardCheck:A_e,ClipboardCheckIcon:A_e,ClipboardCopy:x_e,ClipboardCopyIcon:x_e,ClipboardEdit:Gq,ClipboardEditIcon:Gq,ClipboardIcon:k_e,ClipboardList:S_e,ClipboardListIcon:S_e,ClipboardMinus:C_e,ClipboardMinusIcon:C_e,ClipboardPaste:Q_e,ClipboardPasteIcon:Q_e,ClipboardPen:Gq,ClipboardPenIcon:Gq,ClipboardPenLine:Uq,ClipboardPenLineIcon:Uq,ClipboardPlus:E_e,ClipboardPlusIcon:E_e,ClipboardSignature:Uq,ClipboardSignatureIcon:Uq,ClipboardType:z_e,ClipboardTypeIcon:z_e,ClipboardX:L_e,ClipboardXIcon:L_e,Clock:K_e,Clock1:R_e,Clock10:N_e,Clock10Icon:N_e,Clock11:D_e,Clock11Icon:D_e,Clock12:P_e,Clock12Icon:P_e,Clock1Icon:R_e,Clock2:I_e,Clock2Icon:I_e,Clock3:j_e,Clock3Icon:j_e,Clock4:q_e,Clock4Icon:q_e,Clock5:F_e,Clock5Icon:F_e,Clock6:H_e,Clock6Icon:H_e,Clock7:B_e,Clock7Icon:B_e,Clock8:W_e,Clock8Icon:W_e,Clock9:$_e,Clock9Icon:$_e,ClockAlert:V_e,ClockAlertIcon:V_e,ClockArrowDown:U_e,ClockArrowDownIcon:U_e,ClockArrowUp:G_e,ClockArrowUpIcon:G_e,ClockFading:X_e,ClockFadingIcon:X_e,ClockIcon:K_e,Cloud:dOe,CloudAlert:Y_e,CloudAlertIcon:Y_e,CloudCog:Z_e,CloudCogIcon:Z_e,CloudDownload:Xq,CloudDownloadIcon:Xq,CloudDrizzle:J_e,CloudDrizzleIcon:J_e,CloudFog:eOe,CloudFogIcon:eOe,CloudHail:tOe,CloudHailIcon:tOe,CloudIcon:dOe,CloudLightning:nOe,CloudLightningIcon:nOe,CloudMoon:iOe,CloudMoonIcon:iOe,CloudMoonRain:rOe,CloudMoonRainIcon:rOe,CloudOff:oOe,CloudOffIcon:oOe,CloudRain:aOe,CloudRainIcon:aOe,CloudRainWind:sOe,CloudRainWindIcon:sOe,CloudSnow:lOe,CloudSnowIcon:lOe,CloudSun:uOe,CloudSunIcon:uOe,CloudSunRain:cOe,CloudSunRainIcon:cOe,CloudUpload:Kq,CloudUploadIcon:Kq,Cloudy:hOe,CloudyIcon:hOe,Clover:fOe,CloverIcon:fOe,Club:pOe,ClubIcon:pOe,Code:$le,Code2:Yq,Code2Icon:Yq,CodeIcon:$le,CodeSquare:AH,CodeSquareIcon:AH,CodeXml:Yq,CodeXmlIcon:Yq,Codepen:gOe,CodepenIcon:gOe,Codesandbox:mOe,CodesandboxIcon:mOe,Coffee:bOe,CoffeeIcon:bOe,Cog:vOe,CogIcon:vOe,Coins:yOe,CoinsIcon:yOe,Columns:Zq,Columns2:Zq,Columns2Icon:Zq,Columns3:Jq,Columns3Cog:YO,Columns3CogIcon:YO,Columns3Icon:Jq,Columns4:TOe,Columns4Icon:TOe,ColumnsIcon:Zq,ColumnsSettings:YO,ColumnsSettingsIcon:YO,Combine:MOe,CombineIcon:MOe,Command:wOe,CommandIcon:wOe,Compass:_Oe,CompassIcon:_Oe,Component:OOe,ComponentIcon:OOe,Computer:AOe,ComputerIcon:AOe,ConciergeBell:xOe,ConciergeBellIcon:xOe,Cone:SOe,ConeIcon:SOe,Construction:COe,ConstructionIcon:COe,Contact:QOe,Contact2:eF,Contact2Icon:eF,ContactIcon:QOe,ContactRound:eF,ContactRoundIcon:eF,Container:zOe,ContainerIcon:zOe,Contrast:EOe,ContrastIcon:EOe,Cookie:LOe,CookieIcon:LOe,CookingPot:kOe,CookingPotIcon:kOe,Copy:jOe,CopyCheck:ROe,CopyCheckIcon:ROe,CopyIcon:jOe,CopyMinus:NOe,CopyMinusIcon:NOe,CopyPlus:DOe,CopyPlusIcon:DOe,CopySlash:POe,CopySlashIcon:POe,CopyX:IOe,CopyXIcon:IOe,Copyleft:qOe,CopyleftIcon:qOe,Copyright:FOe,CopyrightIcon:FOe,CornerDownLeft:HOe,CornerDownLeftIcon:HOe,CornerDownRight:BOe,CornerDownRightIcon:BOe,CornerLeftDown:WOe,CornerLeftDownIcon:WOe,CornerLeftUp:$Oe,CornerLeftUpIcon:$Oe,CornerRightDown:VOe,CornerRightDownIcon:VOe,CornerRightUp:UOe,CornerRightUpIcon:UOe,CornerUpLeft:GOe,CornerUpLeftIcon:GOe,CornerUpRight:XOe,CornerUpRightIcon:XOe,Cpu:KOe,CpuIcon:KOe,CreativeCommons:YOe,CreativeCommonsIcon:YOe,CreditCard:ZOe,CreditCardIcon:ZOe,Croissant:JOe,CroissantIcon:JOe,Crop:eAe,CropIcon:eAe,Cross:tAe,CrossIcon:tAe,Crosshair:nAe,CrosshairIcon:nAe,Crown:rAe,CrownIcon:rAe,Cuboid:iAe,CuboidIcon:iAe,CupSoda:oAe,CupSodaIcon:oAe,CurlyBraces:nq,CurlyBracesIcon:nq,Currency:sAe,CurrencyIcon:sAe,Cylinder:aAe,CylinderIcon:aAe,Dam:lAe,DamIcon:lAe,Database:dAe,DatabaseBackup:cAe,DatabaseBackupIcon:cAe,DatabaseIcon:dAe,DatabaseZap:uAe,DatabaseZapIcon:uAe,DecimalsArrowLeft:hAe,DecimalsArrowLeftIcon:hAe,DecimalsArrowRight:fAe,DecimalsArrowRightIcon:fAe,Delete:pAe,DeleteIcon:pAe,Dessert:gAe,DessertIcon:gAe,Diameter:mAe,DiameterIcon:mAe,Diamond:yAe,DiamondIcon:yAe,DiamondMinus:bAe,DiamondMinusIcon:bAe,DiamondPercent:tF,DiamondPercentIcon:tF,DiamondPlus:vAe,DiamondPlusIcon:vAe,Dice1:TAe,Dice1Icon:TAe,Dice2:MAe,Dice2Icon:MAe,Dice3:wAe,Dice3Icon:wAe,Dice4:_Ae,Dice4Icon:_Ae,Dice5:OAe,Dice5Icon:OAe,Dice6:AAe,Dice6Icon:AAe,Dices:xAe,DicesIcon:xAe,Diff:SAe,DiffIcon:SAe,Disc:zAe,Disc2:CAe,Disc2Icon:CAe,Disc3:QAe,Disc3Icon:QAe,DiscAlbum:EAe,DiscAlbumIcon:EAe,DiscIcon:zAe,Divide:LAe,DivideCircle:Lq,DivideCircleIcon:Lq,DivideIcon:LAe,DivideSquare:QH,DivideSquareIcon:QH,Dna:RAe,DnaIcon:RAe,DnaOff:kAe,DnaOffIcon:kAe,Dock:NAe,DockIcon:NAe,Dog:DAe,DogIcon:DAe,DollarSign:PAe,DollarSignIcon:PAe,Donut:IAe,DonutIcon:IAe,DoorClosed:jAe,DoorClosedIcon:jAe,DoorOpen:qAe,DoorOpenIcon:qAe,Dot:FAe,DotIcon:FAe,DotSquare:zH,DotSquareIcon:zH,Download:HAe,DownloadCloud:Xq,DownloadCloudIcon:Xq,DownloadIcon:HAe,DraftingCompass:BAe,DraftingCompassIcon:BAe,Drama:WAe,DramaIcon:WAe,Dribbble:$Ae,DribbbleIcon:$Ae,Drill:VAe,DrillIcon:VAe,Droplet:GAe,DropletIcon:GAe,DropletOff:UAe,DropletOffIcon:UAe,Droplets:XAe,DropletsIcon:XAe,Drum:KAe,DrumIcon:KAe,Drumstick:YAe,DrumstickIcon:YAe,Dumbbell:ZAe,DumbbellIcon:ZAe,Ear:exe,EarIcon:exe,EarOff:JAe,EarOffIcon:JAe,Earth:nF,EarthIcon:nF,EarthLock:txe,EarthLockIcon:txe,Eclipse:nxe,EclipseIcon:nxe,Edit:rv,Edit2:UF,Edit2Icon:UF,Edit3:VF,Edit3Icon:VF,EditIcon:rv,Egg:oxe,EggFried:rxe,EggFriedIcon:rxe,EggIcon:oxe,EggOff:ixe,EggOffIcon:ixe,Ellipsis:rF,EllipsisIcon:rF,EllipsisVertical:iF,EllipsisVerticalIcon:iF,Equal:cxe,EqualApproximately:sxe,EqualApproximatelyIcon:sxe,EqualIcon:cxe,EqualNot:axe,EqualNotIcon:axe,EqualSquare:EH,EqualSquareIcon:EH,Eraser:lxe,EraserIcon:lxe,EthernetPort:uxe,EthernetPortIcon:uxe,Euro:dxe,EuroIcon:dxe,Expand:hxe,ExpandIcon:hxe,ExternalLink:nee,ExternalLinkIcon:nee,Eye:gxe,EyeClosed:fxe,EyeClosedIcon:fxe,EyeIcon:gxe,EyeOff:pxe,EyeOffIcon:pxe,Facebook:mxe,FacebookIcon:mxe,Factory:bxe,FactoryIcon:bxe,Fan:vxe,FanIcon:vxe,FastForward:yxe,FastForwardIcon:yxe,Feather:Mxe,FeatherIcon:Mxe,Fence:Txe,FenceIcon:Txe,FerrisWheel:wxe,FerrisWheelIcon:wxe,Figma:_xe,FigmaIcon:_xe,File:ySe,FileArchive:Oxe,FileArchiveIcon:Oxe,FileAudio:xxe,FileAudio2:Axe,FileAudio2Icon:Axe,FileAudioIcon:xxe,FileAxis3D:oF,FileAxis3DIcon:oF,FileAxis3d:oF,FileAxis3dIcon:oF,FileBadge:Cxe,FileBadge2:Sxe,FileBadge2Icon:Sxe,FileBadgeIcon:Cxe,FileBarChart:sF,FileBarChart2:aF,FileBarChart2Icon:aF,FileBarChartIcon:sF,FileBox:Qxe,FileBoxIcon:Qxe,FileChartColumn:aF,FileChartColumnIcon:aF,FileChartColumnIncreasing:sF,FileChartColumnIncreasingIcon:sF,FileChartLine:lF,FileChartLineIcon:lF,FileChartPie:cF,FileChartPieIcon:cF,FileCheck:Exe,FileCheck2:zxe,FileCheck2Icon:zxe,FileCheckIcon:Exe,FileClock:Lxe,FileClockIcon:Lxe,FileCode:Rxe,FileCode2:kxe,FileCode2Icon:kxe,FileCodeIcon:Rxe,FileCog:uF,FileCog2:uF,FileCog2Icon:uF,FileCogIcon:uF,FileDiff:Nxe,FileDiffIcon:Nxe,FileDigit:Dxe,FileDigitIcon:Dxe,FileDown:Pxe,FileDownIcon:Pxe,FileEdit:hF,FileEditIcon:hF,FileHeart:Ixe,FileHeartIcon:Ixe,FileIcon:ySe,FileImage:jxe,FileImageIcon:jxe,FileInput:qxe,FileInputIcon:qxe,FileJson:Hxe,FileJson2:Fxe,FileJson2Icon:Fxe,FileJsonIcon:Hxe,FileKey:Wxe,FileKey2:Bxe,FileKey2Icon:Bxe,FileKeyIcon:Wxe,FileLineChart:lF,FileLineChartIcon:lF,FileLock:Vxe,FileLock2:$xe,FileLock2Icon:$xe,FileLockIcon:Vxe,FileMinus:Gxe,FileMinus2:Uxe,FileMinus2Icon:Uxe,FileMinusIcon:Gxe,FileMusic:Xxe,FileMusicIcon:Xxe,FileOutput:Kxe,FileOutputIcon:Kxe,FilePen:hF,FilePenIcon:hF,FilePenLine:dF,FilePenLineIcon:dF,FilePieChart:cF,FilePieChartIcon:cF,FilePlus:Zxe,FilePlus2:Yxe,FilePlus2Icon:Yxe,FilePlusIcon:Zxe,FileQuestion:Jxe,FileQuestionIcon:Jxe,FileScan:eSe,FileScanIcon:eSe,FileSearch:nSe,FileSearch2:tSe,FileSearch2Icon:tSe,FileSearchIcon:nSe,FileSignature:dF,FileSignatureIcon:dF,FileSliders:rSe,FileSlidersIcon:rSe,FileSpreadsheet:iSe,FileSpreadsheetIcon:iSe,FileStack:oSe,FileStackIcon:oSe,FileSymlink:sSe,FileSymlinkIcon:sSe,FileTerminal:aSe,FileTerminalIcon:aSe,FileText:lSe,FileTextIcon:lSe,FileType:uSe,FileType2:cSe,FileType2Icon:cSe,FileTypeIcon:uSe,FileUp:dSe,FileUpIcon:dSe,FileUser:fSe,FileUserIcon:fSe,FileVideo:pSe,FileVideo2:hSe,FileVideo2Icon:hSe,FileVideoIcon:pSe,FileVolume:mSe,FileVolume2:gSe,FileVolume2Icon:gSe,FileVolumeIcon:mSe,FileWarning:bSe,FileWarningIcon:bSe,FileX:TSe,FileX2:vSe,FileX2Icon:vSe,FileXIcon:TSe,Files:MSe,FilesIcon:MSe,Film:wSe,FilmIcon:wSe,Filter:gF,FilterIcon:gF,FilterX:mF,FilterXIcon:mF,Fingerprint:_Se,FingerprintIcon:_Se,FireExtinguisher:OSe,FireExtinguisherIcon:OSe,Fish:SSe,FishIcon:SSe,FishOff:ASe,FishOffIcon:ASe,FishSymbol:xSe,FishSymbolIcon:xSe,Flag:ESe,FlagIcon:ESe,FlagOff:CSe,FlagOffIcon:CSe,FlagTriangleLeft:QSe,FlagTriangleLeftIcon:QSe,FlagTriangleRight:zSe,FlagTriangleRightIcon:zSe,Flame:kSe,FlameIcon:kSe,FlameKindling:LSe,FlameKindlingIcon:LSe,Flashlight:NSe,FlashlightIcon:NSe,FlashlightOff:RSe,FlashlightOffIcon:RSe,FlaskConical:PSe,FlaskConicalIcon:PSe,FlaskConicalOff:DSe,FlaskConicalOffIcon:DSe,FlaskRound:ISe,FlaskRoundIcon:ISe,FlipHorizontal:qSe,FlipHorizontal2:jSe,FlipHorizontal2Icon:jSe,FlipHorizontalIcon:qSe,FlipVertical:HSe,FlipVertical2:FSe,FlipVertical2Icon:FSe,FlipVerticalIcon:HSe,Flower:WSe,Flower2:BSe,Flower2Icon:BSe,FlowerIcon:WSe,Focus:$Se,FocusIcon:$Se,FoldHorizontal:VSe,FoldHorizontalIcon:VSe,FoldVertical:USe,FoldVerticalIcon:USe,Folder:MCe,FolderArchive:GSe,FolderArchiveIcon:GSe,FolderCheck:XSe,FolderCheckIcon:XSe,FolderClock:KSe,FolderClockIcon:KSe,FolderClosed:YSe,FolderClosedIcon:YSe,FolderCode:ZSe,FolderCodeIcon:ZSe,FolderCog:fF,FolderCog2:fF,FolderCog2Icon:fF,FolderCogIcon:fF,FolderDot:JSe,FolderDotIcon:JSe,FolderDown:eCe,FolderDownIcon:eCe,FolderEdit:pF,FolderEditIcon:pF,FolderGit:nCe,FolderGit2:tCe,FolderGit2Icon:tCe,FolderGitIcon:nCe,FolderHeart:rCe,FolderHeartIcon:rCe,FolderIcon:MCe,FolderInput:iCe,FolderInputIcon:iCe,FolderKanban:oCe,FolderKanbanIcon:oCe,FolderKey:sCe,FolderKeyIcon:sCe,FolderLock:aCe,FolderLockIcon:aCe,FolderMinus:lCe,FolderMinusIcon:lCe,FolderOpen:uCe,FolderOpenDot:cCe,FolderOpenDotIcon:cCe,FolderOpenIcon:uCe,FolderOutput:dCe,FolderOutputIcon:dCe,FolderPen:pF,FolderPenIcon:pF,FolderPlus:hCe,FolderPlusIcon:hCe,FolderRoot:fCe,FolderRootIcon:fCe,FolderSearch:gCe,FolderSearch2:pCe,FolderSearch2Icon:pCe,FolderSearchIcon:gCe,FolderSymlink:mCe,FolderSymlinkIcon:mCe,FolderSync:bCe,FolderSyncIcon:bCe,FolderTree:vCe,FolderTreeIcon:vCe,FolderUp:yCe,FolderUpIcon:yCe,FolderX:TCe,FolderXIcon:TCe,Folders:wCe,FoldersIcon:wCe,Footprints:_Ce,FootprintsIcon:_Ce,ForkKnife:bB,ForkKnifeCrossed:mB,ForkKnifeCrossedIcon:mB,ForkKnifeIcon:bB,Forklift:OCe,ForkliftIcon:OCe,FormInput:XF,FormInputIcon:XF,Forward:ACe,ForwardIcon:ACe,Frame:xCe,FrameIcon:xCe,Framer:SCe,FramerIcon:SCe,Frown:CCe,FrownIcon:CCe,Fuel:QCe,FuelIcon:QCe,Fullscreen:zCe,FullscreenIcon:zCe,FunctionSquare:LH,FunctionSquareIcon:LH,Funnel:gF,FunnelIcon:gF,FunnelPlus:ECe,FunnelPlusIcon:ECe,FunnelX:mF,FunnelXIcon:mF,GalleryHorizontal:kCe,GalleryHorizontalEnd:LCe,GalleryHorizontalEndIcon:LCe,GalleryHorizontalIcon:kCe,GalleryThumbnails:RCe,GalleryThumbnailsIcon:RCe,GalleryVertical:DCe,GalleryVerticalEnd:NCe,GalleryVerticalEndIcon:NCe,GalleryVerticalIcon:DCe,Gamepad:ICe,Gamepad2:PCe,Gamepad2Icon:PCe,GamepadIcon:ICe,GanttChart:pq,GanttChartIcon:pq,GanttChartSquare:JO,GanttChartSquareIcon:JO,Gauge:jCe,GaugeCircle:kq,GaugeCircleIcon:kq,GaugeIcon:jCe,Gavel:qCe,GavelIcon:qCe,Gem:FCe,GemIcon:FCe,Ghost:HCe,GhostIcon:HCe,Gift:BCe,GiftIcon:BCe,GitBranch:WCe,GitBranchIcon:WCe,GitBranchPlus:$Ce,GitBranchPlusIcon:$Ce,GitCommit:bF,GitCommitHorizontal:bF,GitCommitHorizontalIcon:bF,GitCommitIcon:bF,GitCommitVertical:VCe,GitCommitVerticalIcon:VCe,GitCompare:GCe,GitCompareArrows:UCe,GitCompareArrowsIcon:UCe,GitCompareIcon:GCe,GitFork:XCe,GitForkIcon:XCe,GitGraph:KCe,GitGraphIcon:KCe,GitMerge:YCe,GitMergeIcon:YCe,GitPullRequest:rQe,GitPullRequestArrow:eQe,GitPullRequestArrowIcon:eQe,GitPullRequestClosed:ZCe,GitPullRequestClosedIcon:ZCe,GitPullRequestCreate:tQe,GitPullRequestCreateArrow:JCe,GitPullRequestCreateArrowIcon:JCe,GitPullRequestCreateIcon:tQe,GitPullRequestDraft:nQe,GitPullRequestDraftIcon:nQe,GitPullRequestIcon:rQe,Github:iQe,GithubIcon:iQe,Gitlab:sQe,GitlabIcon:sQe,GlassWater:oQe,GlassWaterIcon:oQe,Glasses:aQe,GlassesIcon:aQe,Globe:cQe,Globe2:nF,Globe2Icon:nF,GlobeIcon:cQe,GlobeLock:lQe,GlobeLockIcon:lQe,Goal:uQe,GoalIcon:uQe,Grab:dQe,GrabIcon:dQe,GraduationCap:fQe,GraduationCapIcon:fQe,Grape:hQe,GrapeIcon:hQe,Grid:ZO,Grid2X2:MF,Grid2X2Check:vF,Grid2X2CheckIcon:vF,Grid2X2Icon:MF,Grid2X2Plus:yF,Grid2X2PlusIcon:yF,Grid2X2X:TF,Grid2X2XIcon:TF,Grid2x2:MF,Grid2x2Check:vF,Grid2x2CheckIcon:vF,Grid2x2Icon:MF,Grid2x2Plus:yF,Grid2x2PlusIcon:yF,Grid2x2X:TF,Grid2x2XIcon:TF,Grid3X3:ZO,Grid3X3Icon:ZO,Grid3x3:ZO,Grid3x3Icon:ZO,GridIcon:ZO,Grip:mQe,GripHorizontal:pQe,GripHorizontalIcon:pQe,GripIcon:mQe,GripVertical:gQe,GripVerticalIcon:gQe,Group:bQe,GroupIcon:bQe,Guitar:vQe,GuitarIcon:vQe,Ham:yQe,HamIcon:yQe,Hammer:TQe,HammerIcon:TQe,Hand:AQe,HandCoins:MQe,HandCoinsIcon:MQe,HandHeart:wQe,HandHeartIcon:wQe,HandHelping:wF,HandHelpingIcon:wF,HandIcon:AQe,HandMetal:_Qe,HandMetalIcon:_Qe,HandPlatter:OQe,HandPlatterIcon:OQe,Handshake:SQe,HandshakeIcon:SQe,HardDrive:QQe,HardDriveDownload:xQe,HardDriveDownloadIcon:xQe,HardDriveIcon:QQe,HardDriveUpload:CQe,HardDriveUploadIcon:CQe,HardHat:zQe,HardHatIcon:zQe,Hash:EQe,HashIcon:EQe,Haze:LQe,HazeIcon:LQe,HdmiPort:kQe,HdmiPortIcon:kQe,Heading:qQe,Heading1:RQe,Heading1Icon:RQe,Heading2:NQe,Heading2Icon:NQe,Heading3:DQe,Heading3Icon:DQe,Heading4:PQe,Heading4Icon:PQe,Heading5:IQe,Heading5Icon:IQe,Heading6:jQe,Heading6Icon:jQe,HeadingIcon:qQe,HeadphoneOff:FQe,HeadphoneOffIcon:FQe,Headphones:HQe,HeadphonesIcon:HQe,Headset:BQe,HeadsetIcon:BQe,Heart:KQe,HeartCrack:WQe,HeartCrackIcon:WQe,HeartHandshake:$Qe,HeartHandshakeIcon:$Qe,HeartIcon:KQe,HeartMinus:VQe,HeartMinusIcon:VQe,HeartOff:UQe,HeartOffIcon:UQe,HeartPlus:GQe,HeartPlusIcon:GQe,HeartPulse:XQe,HeartPulseIcon:XQe,Heater:YQe,HeaterIcon:YQe,HelpCircle:Rq,HelpCircleIcon:Rq,HelpingHand:wF,HelpingHandIcon:wF,Hexagon:ZQe,HexagonIcon:ZQe,Highlighter:JQe,HighlighterIcon:JQe,History:eze,HistoryIcon:eze,Home:_F,HomeIcon:_F,Hop:nze,HopIcon:nze,HopOff:tze,HopOffIcon:tze,Hospital:rze,HospitalIcon:rze,Hotel:ize,HotelIcon:ize,Hourglass:oze,HourglassIcon:oze,House:_F,HouseIcon:_F,HousePlug:sze,HousePlugIcon:sze,HousePlus:aze,HousePlusIcon:aze,HouseWifi:lze,HouseWifiIcon:lze,IceCream:AF,IceCream2:OF,IceCream2Icon:OF,IceCreamBowl:OF,IceCreamBowlIcon:OF,IceCreamCone:AF,IceCreamConeIcon:AF,IceCreamIcon:AF,Icon:Txr,IdCard:uze,IdCardIcon:uze,Image:mze,ImageDown:cze,ImageDownIcon:cze,ImageIcon:mze,ImageMinus:dze,ImageMinusIcon:dze,ImageOff:hze,ImageOffIcon:hze,ImagePlay:fze,ImagePlayIcon:fze,ImagePlus:pze,ImagePlusIcon:pze,ImageUp:gze,ImageUpIcon:gze,ImageUpscale:bze,ImageUpscaleIcon:bze,Images:vze,ImagesIcon:vze,Import:yze,ImportIcon:yze,Inbox:Tze,InboxIcon:Tze,Indent:SF,IndentDecrease:xF,IndentDecreaseIcon:xF,IndentIcon:SF,IndentIncrease:SF,IndentIncreaseIcon:SF,IndianRupee:Mze,IndianRupeeIcon:Mze,Infinity:wze,InfinityIcon:wze,Info:_ze,InfoIcon:_ze,Inspect:IH,InspectIcon:IH,InspectionPanel:Oze,InspectionPanelIcon:Oze,Instagram:Aze,InstagramIcon:Aze,Italic:xze,ItalicIcon:xze,IterationCcw:Sze,IterationCcwIcon:Sze,IterationCw:Cze,IterationCwIcon:Cze,JapaneseYen:zze,JapaneseYenIcon:zze,Joystick:Qze,JoystickIcon:Qze,Kanban:Eze,KanbanIcon:Eze,KanbanSquare:kH,KanbanSquareDashed:xH,KanbanSquareDashedIcon:xH,KanbanSquareIcon:kH,Key:Rze,KeyIcon:Rze,KeyRound:Lze,KeyRoundIcon:Lze,KeySquare:kze,KeySquareIcon:kze,Keyboard:Pze,KeyboardIcon:Pze,KeyboardMusic:Nze,KeyboardMusicIcon:Nze,KeyboardOff:Dze,KeyboardOffIcon:Dze,Lamp:Bze,LampCeiling:Ize,LampCeilingIcon:Ize,LampDesk:jze,LampDeskIcon:jze,LampFloor:qze,LampFloorIcon:qze,LampIcon:Bze,LampWallDown:Fze,LampWallDownIcon:Fze,LampWallUp:Hze,LampWallUpIcon:Hze,LandPlot:Wze,LandPlotIcon:Wze,Landmark:$ze,LandmarkIcon:$ze,Languages:Vze,LanguagesIcon:Vze,Laptop:Gze,Laptop2:CF,Laptop2Icon:CF,LaptopIcon:Gze,LaptopMinimal:CF,LaptopMinimalCheck:Uze,LaptopMinimalCheckIcon:Uze,LaptopMinimalIcon:CF,Lasso:Kze,LassoIcon:Kze,LassoSelect:Xze,LassoSelectIcon:Xze,Laugh:Yze,LaughIcon:Yze,Layers:QF,Layers2:Zze,Layers2Icon:Zze,Layers3:QF,Layers3Icon:QF,LayersIcon:QF,Layout:$F,LayoutDashboard:Jze,LayoutDashboardIcon:Jze,LayoutGrid:eEe,LayoutGridIcon:eEe,LayoutIcon:$F,LayoutList:tEe,LayoutListIcon:tEe,LayoutPanelLeft:nEe,LayoutPanelLeftIcon:nEe,LayoutPanelTop:rEe,LayoutPanelTopIcon:rEe,LayoutTemplate:iEe,LayoutTemplateIcon:iEe,Leaf:oEe,LeafIcon:oEe,LeafyGreen:sEe,LeafyGreenIcon:sEe,Lectern:aEe,LecternIcon:aEe,LetterText:cEe,LetterTextIcon:cEe,Library:uEe,LibraryBig:lEe,LibraryBigIcon:lEe,LibraryIcon:uEe,LibrarySquare:RH,LibrarySquareIcon:RH,LifeBuoy:dEe,LifeBuoyIcon:dEe,Ligature:hEe,LigatureIcon:hEe,Lightbulb:pEe,LightbulbIcon:pEe,LightbulbOff:fEe,LightbulbOffIcon:fEe,LineChart:dq,LineChartIcon:dq,Link:bEe,Link2:mEe,Link2Icon:mEe,Link2Off:gEe,Link2OffIcon:gEe,LinkIcon:bEe,Linkedin:vEe,LinkedinIcon:vEe,List:NEe,ListCheck:yEe,ListCheckIcon:yEe,ListChecks:TEe,ListChecksIcon:TEe,ListCollapse:MEe,ListCollapseIcon:MEe,ListEnd:wEe,ListEndIcon:wEe,ListFilter:OEe,ListFilterIcon:OEe,ListFilterPlus:_Ee,ListFilterPlusIcon:_Ee,ListIcon:NEe,ListMinus:AEe,ListMinusIcon:AEe,ListMusic:xEe,ListMusicIcon:xEe,ListOrdered:SEe,ListOrderedIcon:SEe,ListPlus:CEe,ListPlusIcon:CEe,ListRestart:QEe,ListRestartIcon:QEe,ListStart:zEe,ListStartIcon:zEe,ListTodo:EEe,ListTodoIcon:EEe,ListTree:LEe,ListTreeIcon:LEe,ListVideo:kEe,ListVideoIcon:kEe,ListX:REe,ListXIcon:REe,Loader:PEe,Loader2:zF,Loader2Icon:zF,LoaderCircle:zF,LoaderCircleIcon:zF,LoaderIcon:PEe,LoaderPinwheel:DEe,LoaderPinwheelIcon:DEe,Locate:qEe,LocateFixed:IEe,LocateFixedIcon:IEe,LocateIcon:qEe,LocateOff:jEe,LocateOffIcon:jEe,LocationEdit:FEe,LocationEditIcon:FEe,Lock:BEe,LockIcon:BEe,LockKeyhole:HEe,LockKeyholeIcon:HEe,LockKeyholeOpen:EF,LockKeyholeOpenIcon:EF,LockOpen:LF,LockOpenIcon:LF,LogIn:WEe,LogInIcon:WEe,LogOut:$Ee,LogOutIcon:$Ee,Logs:VEe,LogsIcon:VEe,Lollipop:UEe,LollipopIcon:UEe,LucideAArrowDown:Nve,LucideAArrowUp:Dve,LucideALargeSmall:Pve,LucideAccessibility:Ive,LucideActivity:jve,LucideActivitySquare:iH,LucideAirVent:qve,LucideAirplay:Fve,LucideAlarmCheck:Hj,LucideAlarmClock:Bve,LucideAlarmClockCheck:Hj,LucideAlarmClockMinus:Bj,LucideAlarmClockOff:Hve,LucideAlarmClockPlus:Wj,LucideAlarmMinus:Bj,LucideAlarmPlus:Wj,LucideAlarmSmoke:Wve,LucideAlbum:$ve,LucideAlertCircle:bq,LucideAlertOctagon:NF,LucideAlertTriangle:sB,LucideAlignCenter:Gve,LucideAlignCenterHorizontal:Vve,LucideAlignCenterVertical:Uve,LucideAlignEndHorizontal:Xve,LucideAlignEndVertical:Kve,LucideAlignHorizontalDistributeCenter:Yve,LucideAlignHorizontalDistributeEnd:Zve,LucideAlignHorizontalDistributeStart:Jve,LucideAlignHorizontalJustifyCenter:e9e,LucideAlignHorizontalJustifyEnd:t9e,LucideAlignHorizontalJustifyStart:n9e,LucideAlignHorizontalSpaceAround:r9e,LucideAlignHorizontalSpaceBetween:i9e,LucideAlignJustify:s9e,LucideAlignLeft:o9e,LucideAlignRight:a9e,LucideAlignStartHorizontal:l9e,LucideAlignStartVertical:c9e,LucideAlignVerticalDistributeCenter:u9e,LucideAlignVerticalDistributeEnd:d9e,LucideAlignVerticalDistributeStart:h9e,LucideAlignVerticalJustifyCenter:f9e,LucideAlignVerticalJustifyEnd:p9e,LucideAlignVerticalJustifyStart:g9e,LucideAlignVerticalSpaceAround:m9e,LucideAlignVerticalSpaceBetween:b9e,LucideAmbulance:v9e,LucideAmpersand:y9e,LucideAmpersands:T9e,LucideAmphora:M9e,LucideAnchor:w9e,LucideAngry:O9e,LucideAnnoyed:_9e,LucideAntenna:A9e,LucideAnvil:x9e,LucideAperture:S9e,LucideAppWindow:Q9e,LucideAppWindowMac:C9e,LucideApple:E9e,LucideArchive:k9e,LucideArchiveRestore:z9e,LucideArchiveX:L9e,LucideAreaChart:iq,LucideArmchair:R9e,LucideArrowBigDown:D9e,LucideArrowBigDownDash:N9e,LucideArrowBigLeft:I9e,LucideArrowBigLeftDash:P9e,LucideArrowBigRight:q9e,LucideArrowBigRightDash:j9e,LucideArrowBigUp:H9e,LucideArrowBigUpDash:F9e,LucideArrowDown:Z9e,LucideArrowDown01:B9e,LucideArrowDown10:W9e,LucideArrowDownAZ:$j,LucideArrowDownAz:$j,LucideArrowDownCircle:vq,LucideArrowDownFromLine:$9e,LucideArrowDownLeft:V9e,LucideArrowDownLeftFromCircle:Tq,LucideArrowDownLeftFromSquare:cH,LucideArrowDownLeftSquare:oH,LucideArrowDownNarrowWide:U9e,LucideArrowDownRight:X9e,LucideArrowDownRightFromCircle:Mq,LucideArrowDownRightFromSquare:uH,LucideArrowDownRightSquare:sH,LucideArrowDownSquare:aH,LucideArrowDownToDot:G9e,LucideArrowDownToLine:K9e,LucideArrowDownUp:Y9e,LucideArrowDownWideNarrow:Uj,LucideArrowDownZA:Vj,LucideArrowDownZa:Vj,LucideArrowLeft:nye,LucideArrowLeftCircle:yq,LucideArrowLeftFromLine:J9e,LucideArrowLeftRight:eye,LucideArrowLeftSquare:lH,LucideArrowLeftToLine:tye,LucideArrowRight:sye,LucideArrowRightCircle:Oq,LucideArrowRightFromLine:rye,LucideArrowRightLeft:iye,LucideArrowRightSquare:hH,LucideArrowRightToLine:oye,LucideArrowUp:mye,LucideArrowUp01:aye,LucideArrowUp10:lye,LucideArrowUpAZ:Gj,LucideArrowUpAz:Gj,LucideArrowUpCircle:Aq,LucideArrowUpDown:cye,LucideArrowUpFromDot:uye,LucideArrowUpFromLine:dye,LucideArrowUpLeft:hye,LucideArrowUpLeftFromCircle:wq,LucideArrowUpLeftFromSquare:dH,LucideArrowUpLeftSquare:fH,LucideArrowUpNarrowWide:Xj,LucideArrowUpRight:fye,LucideArrowUpRightFromCircle:_q,LucideArrowUpRightFromSquare:pH,LucideArrowUpRightSquare:gH,LucideArrowUpSquare:mH,LucideArrowUpToLine:pye,LucideArrowUpWideNarrow:gye,LucideArrowUpZA:Kj,LucideArrowUpZa:Kj,LucideArrowsUpFromLine:bye,LucideAsterisk:vye,LucideAsteriskSquare:bH,LucideAtSign:yye,LucideAtom:Tye,LucideAudioLines:Mye,LucideAudioWaveform:wye,LucideAward:_ye,LucideAxe:Oye,LucideAxis3D:Yj,LucideAxis3d:Yj,LucideBaby:xye,LucideBackpack:Aye,LucideBadge:Fye,LucideBadgeAlert:Cye,LucideBadgeCent:Sye,LucideBadgeCheck:Zj,LucideBadgeDollarSign:zye,LucideBadgeEuro:Qye,LucideBadgeHelp:Eye,LucideBadgeIndianRupee:Lye,LucideBadgeInfo:kye,LucideBadgeJapaneseYen:Rye,LucideBadgeMinus:Nye,LucideBadgePercent:Dye,LucideBadgePlus:Pye,LucideBadgePoundSterling:jye,LucideBadgeRussianRuble:Iye,LucideBadgeSwissFranc:qye,LucideBadgeX:Hye,LucideBaggageClaim:Bye,LucideBan:Wye,LucideBanana:$ye,LucideBandage:Vye,LucideBanknote:Kye,LucideBanknoteArrowDown:Uye,LucideBanknoteArrowUp:Gye,LucideBanknoteX:Xye,LucideBarChart:hq,LucideBarChart2:fq,LucideBarChart3:uq,LucideBarChart4:cq,LucideBarChartBig:lq,LucideBarChartHorizontal:sq,LucideBarChartHorizontalBig:oq,LucideBarcode:Yye,LucideBaseline:Zye,LucideBath:Jye,LucideBattery:sTe,LucideBatteryCharging:eTe,LucideBatteryFull:tTe,LucideBatteryLow:nTe,LucideBatteryMedium:rTe,LucideBatteryPlus:iTe,LucideBatteryWarning:oTe,LucideBeaker:lTe,LucideBean:uTe,LucideBeanOff:aTe,LucideBed:hTe,LucideBedDouble:cTe,LucideBedSingle:dTe,LucideBeef:fTe,LucideBeer:pTe,LucideBeerOff:gTe,LucideBell:wTe,LucideBellDot:mTe,LucideBellElectric:bTe,LucideBellMinus:vTe,LucideBellOff:yTe,LucideBellPlus:TTe,LucideBellRing:MTe,LucideBetweenHorizonalEnd:Jj,LucideBetweenHorizonalStart:eq,LucideBetweenHorizontalEnd:Jj,LucideBetweenHorizontalStart:eq,LucideBetweenVerticalEnd:_Te,LucideBetweenVerticalStart:OTe,LucideBicepsFlexed:ATe,LucideBike:xTe,LucideBinary:STe,LucideBinoculars:CTe,LucideBiohazard:QTe,LucideBird:zTe,LucideBitcoin:ETe,LucideBlend:kTe,LucideBlinds:LTe,LucideBlocks:RTe,LucideBluetooth:ITe,LucideBluetoothConnected:NTe,LucideBluetoothOff:DTe,LucideBluetoothSearching:PTe,LucideBold:jTe,LucideBolt:qTe,LucideBomb:FTe,LucideBone:HTe,LucideBook:dMe,LucideBookA:BTe,LucideBookAudio:WTe,LucideBookCheck:$Te,LucideBookCopy:VTe,LucideBookDashed:tq,LucideBookDown:UTe,LucideBookHeadphones:GTe,LucideBookHeart:XTe,LucideBookImage:KTe,LucideBookKey:ZTe,LucideBookLock:YTe,LucideBookMarked:JTe,LucideBookMinus:eMe,LucideBookOpen:rMe,LucideBookOpenCheck:tMe,LucideBookOpenText:nMe,LucideBookPlus:iMe,LucideBookTemplate:tq,LucideBookText:oMe,LucideBookType:sMe,LucideBookUp:cMe,LucideBookUp2:aMe,LucideBookUser:lMe,LucideBookX:uMe,LucideBookmark:mMe,LucideBookmarkCheck:hMe,LucideBookmarkMinus:pMe,LucideBookmarkPlus:fMe,LucideBookmarkX:gMe,LucideBoomBox:bMe,LucideBot:TMe,LucideBotMessageSquare:vMe,LucideBotOff:yMe,LucideBowArrow:MMe,LucideBox:wMe,LucideBoxSelect:CH,LucideBoxes:_Me,LucideBraces:nq,LucideBrackets:OMe,LucideBrain:SMe,LucideBrainCircuit:AMe,LucideBrainCog:xMe,LucideBrickWall:QMe,LucideBrickWallFire:CMe,LucideBriefcase:kMe,LucideBriefcaseBusiness:zMe,LucideBriefcaseConveyorBelt:EMe,LucideBriefcaseMedical:LMe,LucideBringToFront:RMe,LucideBrush:NMe,LucideBubbles:DMe,LucideBug:jMe,LucideBugOff:PMe,LucideBugPlay:IMe,LucideBuilding:FMe,LucideBuilding2:qMe,LucideBus:BMe,LucideBusFront:HMe,LucideCable:$Me,LucideCableCar:WMe,LucideCake:UMe,LucideCakeSlice:VMe,LucideCalculator:GMe,LucideCalendar:gwe,LucideCalendar1:XMe,LucideCalendarArrowDown:KMe,LucideCalendarArrowUp:YMe,LucideCalendarCheck:JMe,LucideCalendarCheck2:ZMe,LucideCalendarClock:ewe,LucideCalendarCog:twe,LucideCalendarDays:nwe,LucideCalendarFold:rwe,LucideCalendarHeart:iwe,LucideCalendarMinus:swe,LucideCalendarMinus2:owe,LucideCalendarOff:awe,LucideCalendarPlus:cwe,LucideCalendarPlus2:lwe,LucideCalendarRange:uwe,LucideCalendarSearch:dwe,LucideCalendarSync:hwe,LucideCalendarX:pwe,LucideCalendarX2:fwe,LucideCamera:vwe,LucideCameraOff:mwe,LucideCandlestickChart:aq,LucideCandy:Twe,LucideCandyCane:bwe,LucideCandyOff:ywe,LucideCannabis:Mwe,LucideCaptions:rq,LucideCaptionsOff:wwe,LucideCar:Owe,LucideCarFront:_we,LucideCarTaxiFront:Awe,LucideCaravan:xwe,LucideCarrot:Cwe,LucideCaseLower:Swe,LucideCaseSensitive:Qwe,LucideCaseUpper:zwe,LucideCassetteTape:Ewe,LucideCast:Lwe,LucideCastle:kwe,LucideCat:Rwe,LucideCctv:Nwe,LucideChartArea:iq,LucideChartBar:sq,LucideChartBarBig:oq,LucideChartBarDecreasing:Dwe,LucideChartBarIncreasing:Pwe,LucideChartBarStacked:Iwe,LucideChartCandlestick:aq,LucideChartColumn:uq,LucideChartColumnBig:lq,LucideChartColumnDecreasing:jwe,LucideChartColumnIncreasing:cq,LucideChartColumnStacked:qwe,LucideChartGantt:Fwe,LucideChartLine:dq,LucideChartNetwork:Hwe,LucideChartNoAxesColumn:fq,LucideChartNoAxesColumnDecreasing:Bwe,LucideChartNoAxesColumnIncreasing:hq,LucideChartNoAxesCombined:Wwe,LucideChartNoAxesGantt:pq,LucideChartPie:gq,LucideChartScatter:mq,LucideChartSpline:$we,LucideCheck:Fle,LucideCheckCheck:Vwe,LucideCheckCircle:Sq,LucideCheckCircle2:xq,LucideCheckSquare:yH,LucideCheckSquare2:TH,LucideChefHat:Uwe,LucideCherry:Gwe,LucideChevronDown:tee,LucideChevronDownCircle:Cq,LucideChevronDownSquare:MH,LucideChevronFirst:Xwe,LucideChevronLast:Kwe,LucideChevronLeft:Ywe,LucideChevronLeftCircle:Qq,LucideChevronLeftSquare:wH,LucideChevronRight:Zwe,LucideChevronRightCircle:zq,LucideChevronRightSquare:_H,LucideChevronUp:Hle,LucideChevronUpCircle:Eq,LucideChevronUpSquare:OH,LucideChevronsDown:Jwe,LucideChevronsDownUp:e_e,LucideChevronsLeft:r_e,LucideChevronsLeftRight:n_e,LucideChevronsLeftRightEllipsis:t_e,LucideChevronsRight:o_e,LucideChevronsRightLeft:i_e,LucideChevronsUp:s_e,LucideChevronsUpDown:Ble,LucideChrome:a_e,LucideChurch:l_e,LucideCigarette:c_e,LucideCigaretteOff:u_e,LucideCircle:Wle,LucideCircleAlert:bq,LucideCircleArrowDown:vq,LucideCircleArrowLeft:yq,LucideCircleArrowOutDownLeft:Tq,LucideCircleArrowOutDownRight:Mq,LucideCircleArrowOutUpLeft:wq,LucideCircleArrowOutUpRight:_q,LucideCircleArrowRight:Oq,LucideCircleArrowUp:Aq,LucideCircleCheck:xq,LucideCircleCheckBig:Sq,LucideCircleChevronDown:Cq,LucideCircleChevronLeft:Qq,LucideCircleChevronRight:zq,LucideCircleChevronUp:Eq,LucideCircleDashed:d_e,LucideCircleDivide:Lq,LucideCircleDollarSign:h_e,LucideCircleDot:g_e,LucideCircleDotDashed:f_e,LucideCircleEllipsis:p_e,LucideCircleEqual:m_e,LucideCircleFadingArrowUp:b_e,LucideCircleFadingPlus:v_e,LucideCircleGauge:kq,LucideCircleHelp:Rq,LucideCircleMinus:Nq,LucideCircleOff:y_e,LucideCircleParking:Pq,LucideCircleParkingOff:Dq,LucideCirclePause:Iq,LucideCirclePercent:qq,LucideCirclePlay:jq,LucideCirclePlus:Fq,LucideCirclePower:Hq,LucideCircleSlash:T_e,LucideCircleSlash2:Bq,LucideCircleSlashed:Bq,LucideCircleSmall:M_e,LucideCircleStop:Wq,LucideCircleUser:Vq,LucideCircleUserRound:$q,LucideCircleX:vk,LucideCircuitBoard:w_e,LucideCitrus:__e,LucideClapperboard:O_e,LucideClipboard:k_e,LucideClipboardCheck:A_e,LucideClipboardCopy:x_e,LucideClipboardEdit:Gq,LucideClipboardList:S_e,LucideClipboardMinus:C_e,LucideClipboardPaste:Q_e,LucideClipboardPen:Gq,LucideClipboardPenLine:Uq,LucideClipboardPlus:E_e,LucideClipboardSignature:Uq,LucideClipboardType:z_e,LucideClipboardX:L_e,LucideClock:K_e,LucideClock1:R_e,LucideClock10:N_e,LucideClock11:D_e,LucideClock12:P_e,LucideClock2:I_e,LucideClock3:j_e,LucideClock4:q_e,LucideClock5:F_e,LucideClock6:H_e,LucideClock7:B_e,LucideClock8:W_e,LucideClock9:$_e,LucideClockAlert:V_e,LucideClockArrowDown:U_e,LucideClockArrowUp:G_e,LucideClockFading:X_e,LucideCloud:dOe,LucideCloudAlert:Y_e,LucideCloudCog:Z_e,LucideCloudDownload:Xq,LucideCloudDrizzle:J_e,LucideCloudFog:eOe,LucideCloudHail:tOe,LucideCloudLightning:nOe,LucideCloudMoon:iOe,LucideCloudMoonRain:rOe,LucideCloudOff:oOe,LucideCloudRain:aOe,LucideCloudRainWind:sOe,LucideCloudSnow:lOe,LucideCloudSun:uOe,LucideCloudSunRain:cOe,LucideCloudUpload:Kq,LucideCloudy:hOe,LucideClover:fOe,LucideClub:pOe,LucideCode:$le,LucideCode2:Yq,LucideCodeSquare:AH,LucideCodeXml:Yq,LucideCodepen:gOe,LucideCodesandbox:mOe,LucideCoffee:bOe,LucideCog:vOe,LucideCoins:yOe,LucideColumns:Zq,LucideColumns2:Zq,LucideColumns3:Jq,LucideColumns3Cog:YO,LucideColumns4:TOe,LucideColumnsSettings:YO,LucideCombine:MOe,LucideCommand:wOe,LucideCompass:_Oe,LucideComponent:OOe,LucideComputer:AOe,LucideConciergeBell:xOe,LucideCone:SOe,LucideConstruction:COe,LucideContact:QOe,LucideContact2:eF,LucideContactRound:eF,LucideContainer:zOe,LucideContrast:EOe,LucideCookie:LOe,LucideCookingPot:kOe,LucideCopy:jOe,LucideCopyCheck:ROe,LucideCopyMinus:NOe,LucideCopyPlus:DOe,LucideCopySlash:POe,LucideCopyX:IOe,LucideCopyleft:qOe,LucideCopyright:FOe,LucideCornerDownLeft:HOe,LucideCornerDownRight:BOe,LucideCornerLeftDown:WOe,LucideCornerLeftUp:$Oe,LucideCornerRightDown:VOe,LucideCornerRightUp:UOe,LucideCornerUpLeft:GOe,LucideCornerUpRight:XOe,LucideCpu:KOe,LucideCreativeCommons:YOe,LucideCreditCard:ZOe,LucideCroissant:JOe,LucideCrop:eAe,LucideCross:tAe,LucideCrosshair:nAe,LucideCrown:rAe,LucideCuboid:iAe,LucideCupSoda:oAe,LucideCurlyBraces:nq,LucideCurrency:sAe,LucideCylinder:aAe,LucideDam:lAe,LucideDatabase:dAe,LucideDatabaseBackup:cAe,LucideDatabaseZap:uAe,LucideDecimalsArrowLeft:hAe,LucideDecimalsArrowRight:fAe,LucideDelete:pAe,LucideDessert:gAe,LucideDiameter:mAe,LucideDiamond:yAe,LucideDiamondMinus:bAe,LucideDiamondPercent:tF,LucideDiamondPlus:vAe,LucideDice1:TAe,LucideDice2:MAe,LucideDice3:wAe,LucideDice4:_Ae,LucideDice5:OAe,LucideDice6:AAe,LucideDices:xAe,LucideDiff:SAe,LucideDisc:zAe,LucideDisc2:CAe,LucideDisc3:QAe,LucideDiscAlbum:EAe,LucideDivide:LAe,LucideDivideCircle:Lq,LucideDivideSquare:QH,LucideDna:RAe,LucideDnaOff:kAe,LucideDock:NAe,LucideDog:DAe,LucideDollarSign:PAe,LucideDonut:IAe,LucideDoorClosed:jAe,LucideDoorOpen:qAe,LucideDot:FAe,LucideDotSquare:zH,LucideDownload:HAe,LucideDownloadCloud:Xq,LucideDraftingCompass:BAe,LucideDrama:WAe,LucideDribbble:$Ae,LucideDrill:VAe,LucideDroplet:GAe,LucideDropletOff:UAe,LucideDroplets:XAe,LucideDrum:KAe,LucideDrumstick:YAe,LucideDumbbell:ZAe,LucideEar:exe,LucideEarOff:JAe,LucideEarth:nF,LucideEarthLock:txe,LucideEclipse:nxe,LucideEdit:rv,LucideEdit2:UF,LucideEdit3:VF,LucideEgg:oxe,LucideEggFried:rxe,LucideEggOff:ixe,LucideEllipsis:rF,LucideEllipsisVertical:iF,LucideEqual:cxe,LucideEqualApproximately:sxe,LucideEqualNot:axe,LucideEqualSquare:EH,LucideEraser:lxe,LucideEthernetPort:uxe,LucideEuro:dxe,LucideExpand:hxe,LucideExternalLink:nee,LucideEye:gxe,LucideEyeClosed:fxe,LucideEyeOff:pxe,LucideFacebook:mxe,LucideFactory:bxe,LucideFan:vxe,LucideFastForward:yxe,LucideFeather:Mxe,LucideFence:Txe,LucideFerrisWheel:wxe,LucideFigma:_xe,LucideFile:ySe,LucideFileArchive:Oxe,LucideFileAudio:xxe,LucideFileAudio2:Axe,LucideFileAxis3D:oF,LucideFileAxis3d:oF,LucideFileBadge:Cxe,LucideFileBadge2:Sxe,LucideFileBarChart:sF,LucideFileBarChart2:aF,LucideFileBox:Qxe,LucideFileChartColumn:aF,LucideFileChartColumnIncreasing:sF,LucideFileChartLine:lF,LucideFileChartPie:cF,LucideFileCheck:Exe,LucideFileCheck2:zxe,LucideFileClock:Lxe,LucideFileCode:Rxe,LucideFileCode2:kxe,LucideFileCog:uF,LucideFileCog2:uF,LucideFileDiff:Nxe,LucideFileDigit:Dxe,LucideFileDown:Pxe,LucideFileEdit:hF,LucideFileHeart:Ixe,LucideFileImage:jxe,LucideFileInput:qxe,LucideFileJson:Hxe,LucideFileJson2:Fxe,LucideFileKey:Wxe,LucideFileKey2:Bxe,LucideFileLineChart:lF,LucideFileLock:Vxe,LucideFileLock2:$xe,LucideFileMinus:Gxe,LucideFileMinus2:Uxe,LucideFileMusic:Xxe,LucideFileOutput:Kxe,LucideFilePen:hF,LucideFilePenLine:dF,LucideFilePieChart:cF,LucideFilePlus:Zxe,LucideFilePlus2:Yxe,LucideFileQuestion:Jxe,LucideFileScan:eSe,LucideFileSearch:nSe,LucideFileSearch2:tSe,LucideFileSignature:dF,LucideFileSliders:rSe,LucideFileSpreadsheet:iSe,LucideFileStack:oSe,LucideFileSymlink:sSe,LucideFileTerminal:aSe,LucideFileText:lSe,LucideFileType:uSe,LucideFileType2:cSe,LucideFileUp:dSe,LucideFileUser:fSe,LucideFileVideo:pSe,LucideFileVideo2:hSe,LucideFileVolume:mSe,LucideFileVolume2:gSe,LucideFileWarning:bSe,LucideFileX:TSe,LucideFileX2:vSe,LucideFiles:MSe,LucideFilm:wSe,LucideFilter:gF,LucideFilterX:mF,LucideFingerprint:_Se,LucideFireExtinguisher:OSe,LucideFish:SSe,LucideFishOff:ASe,LucideFishSymbol:xSe,LucideFlag:ESe,LucideFlagOff:CSe,LucideFlagTriangleLeft:QSe,LucideFlagTriangleRight:zSe,LucideFlame:kSe,LucideFlameKindling:LSe,LucideFlashlight:NSe,LucideFlashlightOff:RSe,LucideFlaskConical:PSe,LucideFlaskConicalOff:DSe,LucideFlaskRound:ISe,LucideFlipHorizontal:qSe,LucideFlipHorizontal2:jSe,LucideFlipVertical:HSe,LucideFlipVertical2:FSe,LucideFlower:WSe,LucideFlower2:BSe,LucideFocus:$Se,LucideFoldHorizontal:VSe,LucideFoldVertical:USe,LucideFolder:MCe,LucideFolderArchive:GSe,LucideFolderCheck:XSe,LucideFolderClock:KSe,LucideFolderClosed:YSe,LucideFolderCode:ZSe,LucideFolderCog:fF,LucideFolderCog2:fF,LucideFolderDot:JSe,LucideFolderDown:eCe,LucideFolderEdit:pF,LucideFolderGit:nCe,LucideFolderGit2:tCe,LucideFolderHeart:rCe,LucideFolderInput:iCe,LucideFolderKanban:oCe,LucideFolderKey:sCe,LucideFolderLock:aCe,LucideFolderMinus:lCe,LucideFolderOpen:uCe,LucideFolderOpenDot:cCe,LucideFolderOutput:dCe,LucideFolderPen:pF,LucideFolderPlus:hCe,LucideFolderRoot:fCe,LucideFolderSearch:gCe,LucideFolderSearch2:pCe,LucideFolderSymlink:mCe,LucideFolderSync:bCe,LucideFolderTree:vCe,LucideFolderUp:yCe,LucideFolderX:TCe,LucideFolders:wCe,LucideFootprints:_Ce,LucideForkKnife:bB,LucideForkKnifeCrossed:mB,LucideForklift:OCe,LucideFormInput:XF,LucideForward:ACe,LucideFrame:xCe,LucideFramer:SCe,LucideFrown:CCe,LucideFuel:QCe,LucideFullscreen:zCe,LucideFunctionSquare:LH,LucideFunnel:gF,LucideFunnelPlus:ECe,LucideFunnelX:mF,LucideGalleryHorizontal:kCe,LucideGalleryHorizontalEnd:LCe,LucideGalleryThumbnails:RCe,LucideGalleryVertical:DCe,LucideGalleryVerticalEnd:NCe,LucideGamepad:ICe,LucideGamepad2:PCe,LucideGanttChart:pq,LucideGanttChartSquare:JO,LucideGauge:jCe,LucideGaugeCircle:kq,LucideGavel:qCe,LucideGem:FCe,LucideGhost:HCe,LucideGift:BCe,LucideGitBranch:WCe,LucideGitBranchPlus:$Ce,LucideGitCommit:bF,LucideGitCommitHorizontal:bF,LucideGitCommitVertical:VCe,LucideGitCompare:GCe,LucideGitCompareArrows:UCe,LucideGitFork:XCe,LucideGitGraph:KCe,LucideGitMerge:YCe,LucideGitPullRequest:rQe,LucideGitPullRequestArrow:eQe,LucideGitPullRequestClosed:ZCe,LucideGitPullRequestCreate:tQe,LucideGitPullRequestCreateArrow:JCe,LucideGitPullRequestDraft:nQe,LucideGithub:iQe,LucideGitlab:sQe,LucideGlassWater:oQe,LucideGlasses:aQe,LucideGlobe:cQe,LucideGlobe2:nF,LucideGlobeLock:lQe,LucideGoal:uQe,LucideGrab:dQe,LucideGraduationCap:fQe,LucideGrape:hQe,LucideGrid:ZO,LucideGrid2X2:MF,LucideGrid2X2Check:vF,LucideGrid2X2Plus:yF,LucideGrid2X2X:TF,LucideGrid2x2:MF,LucideGrid2x2Check:vF,LucideGrid2x2Plus:yF,LucideGrid2x2X:TF,LucideGrid3X3:ZO,LucideGrid3x3:ZO,LucideGrip:mQe,LucideGripHorizontal:pQe,LucideGripVertical:gQe,LucideGroup:bQe,LucideGuitar:vQe,LucideHam:yQe,LucideHammer:TQe,LucideHand:AQe,LucideHandCoins:MQe,LucideHandHeart:wQe,LucideHandHelping:wF,LucideHandMetal:_Qe,LucideHandPlatter:OQe,LucideHandshake:SQe,LucideHardDrive:QQe,LucideHardDriveDownload:xQe,LucideHardDriveUpload:CQe,LucideHardHat:zQe,LucideHash:EQe,LucideHaze:LQe,LucideHdmiPort:kQe,LucideHeading:qQe,LucideHeading1:RQe,LucideHeading2:NQe,LucideHeading3:DQe,LucideHeading4:PQe,LucideHeading5:IQe,LucideHeading6:jQe,LucideHeadphoneOff:FQe,LucideHeadphones:HQe,LucideHeadset:BQe,LucideHeart:KQe,LucideHeartCrack:WQe,LucideHeartHandshake:$Qe,LucideHeartMinus:VQe,LucideHeartOff:UQe,LucideHeartPlus:GQe,LucideHeartPulse:XQe,LucideHeater:YQe,LucideHelpCircle:Rq,LucideHelpingHand:wF,LucideHexagon:ZQe,LucideHighlighter:JQe,LucideHistory:eze,LucideHome:_F,LucideHop:nze,LucideHopOff:tze,LucideHospital:rze,LucideHotel:ize,LucideHourglass:oze,LucideHouse:_F,LucideHousePlug:sze,LucideHousePlus:aze,LucideHouseWifi:lze,LucideIceCream:AF,LucideIceCream2:OF,LucideIceCreamBowl:OF,LucideIceCreamCone:AF,LucideIdCard:uze,LucideImage:mze,LucideImageDown:cze,LucideImageMinus:dze,LucideImageOff:hze,LucideImagePlay:fze,LucideImagePlus:pze,LucideImageUp:gze,LucideImageUpscale:bze,LucideImages:vze,LucideImport:yze,LucideInbox:Tze,LucideIndent:SF,LucideIndentDecrease:xF,LucideIndentIncrease:SF,LucideIndianRupee:Mze,LucideInfinity:wze,LucideInfo:_ze,LucideInspect:IH,LucideInspectionPanel:Oze,LucideInstagram:Aze,LucideItalic:xze,LucideIterationCcw:Sze,LucideIterationCw:Cze,LucideJapaneseYen:zze,LucideJoystick:Qze,LucideKanban:Eze,LucideKanbanSquare:kH,LucideKanbanSquareDashed:xH,LucideKey:Rze,LucideKeyRound:Lze,LucideKeySquare:kze,LucideKeyboard:Pze,LucideKeyboardMusic:Nze,LucideKeyboardOff:Dze,LucideLamp:Bze,LucideLampCeiling:Ize,LucideLampDesk:jze,LucideLampFloor:qze,LucideLampWallDown:Fze,LucideLampWallUp:Hze,LucideLandPlot:Wze,LucideLandmark:$ze,LucideLanguages:Vze,LucideLaptop:Gze,LucideLaptop2:CF,LucideLaptopMinimal:CF,LucideLaptopMinimalCheck:Uze,LucideLasso:Kze,LucideLassoSelect:Xze,LucideLaugh:Yze,LucideLayers:QF,LucideLayers2:Zze,LucideLayers3:QF,LucideLayout:$F,LucideLayoutDashboard:Jze,LucideLayoutGrid:eEe,LucideLayoutList:tEe,LucideLayoutPanelLeft:nEe,LucideLayoutPanelTop:rEe,LucideLayoutTemplate:iEe,LucideLeaf:oEe,LucideLeafyGreen:sEe,LucideLectern:aEe,LucideLetterText:cEe,LucideLibrary:uEe,LucideLibraryBig:lEe,LucideLibrarySquare:RH,LucideLifeBuoy:dEe,LucideLigature:hEe,LucideLightbulb:pEe,LucideLightbulbOff:fEe,LucideLineChart:dq,LucideLink:bEe,LucideLink2:mEe,LucideLink2Off:gEe,LucideLinkedin:vEe,LucideList:NEe,LucideListCheck:yEe,LucideListChecks:TEe,LucideListCollapse:MEe,LucideListEnd:wEe,LucideListFilter:OEe,LucideListFilterPlus:_Ee,LucideListMinus:AEe,LucideListMusic:xEe,LucideListOrdered:SEe,LucideListPlus:CEe,LucideListRestart:QEe,LucideListStart:zEe,LucideListTodo:EEe,LucideListTree:LEe,LucideListVideo:kEe,LucideListX:REe,LucideLoader:PEe,LucideLoader2:zF,LucideLoaderCircle:zF,LucideLoaderPinwheel:DEe,LucideLocate:qEe,LucideLocateFixed:IEe,LucideLocateOff:jEe,LucideLocationEdit:FEe,LucideLock:BEe,LucideLockKeyhole:HEe,LucideLockKeyholeOpen:EF,LucideLockOpen:LF,LucideLogIn:WEe,LucideLogOut:$Ee,LucideLogs:VEe,LucideLollipop:UEe,LucideLuggage:GEe,LucideMSquare:NH,LucideMagnet:XEe,LucideMail:iLe,LucideMailCheck:YEe,LucideMailMinus:KEe,LucideMailOpen:ZEe,LucideMailPlus:JEe,LucideMailQuestion:eLe,LucideMailSearch:tLe,LucideMailWarning:nLe,LucideMailX:rLe,LucideMailbox:oLe,LucideMails:sLe,LucideMap:TLe,LucideMapPin:bLe,LucideMapPinCheck:lLe,LucideMapPinCheckInside:aLe,LucideMapPinHouse:cLe,LucideMapPinMinus:dLe,LucideMapPinMinusInside:uLe,LucideMapPinOff:hLe,LucideMapPinPlus:pLe,LucideMapPinPlusInside:fLe,LucideMapPinX:mLe,LucideMapPinXInside:gLe,LucideMapPinned:vLe,LucideMapPlus:yLe,LucideMars:wLe,LucideMarsStroke:MLe,LucideMartini:_Le,LucideMaximize:ALe,LucideMaximize2:OLe,LucideMedal:xLe,LucideMegaphone:SLe,LucideMegaphoneOff:CLe,LucideMeh:QLe,LucideMemoryStick:zLe,LucideMenu:ELe,LucideMenuSquare:DH,LucideMerge:LLe,LucideMessageCircle:BLe,LucideMessageCircleCode:kLe,LucideMessageCircleDashed:RLe,LucideMessageCircleHeart:NLe,LucideMessageCircleMore:DLe,LucideMessageCircleOff:PLe,LucideMessageCirclePlus:ILe,LucideMessageCircleQuestion:jLe,LucideMessageCircleReply:qLe,LucideMessageCircleWarning:FLe,LucideMessageCircleX:HLe,LucideMessageSquare:oke,LucideMessageSquareCode:WLe,LucideMessageSquareDashed:$Le,LucideMessageSquareDiff:VLe,LucideMessageSquareDot:ULe,LucideMessageSquareHeart:GLe,LucideMessageSquareLock:XLe,LucideMessageSquareMore:KLe,LucideMessageSquareOff:YLe,LucideMessageSquarePlus:ZLe,LucideMessageSquareQuote:JLe,LucideMessageSquareReply:eke,LucideMessageSquareShare:tke,LucideMessageSquareText:nke,LucideMessageSquareWarning:rke,LucideMessageSquareX:ike,LucideMessagesSquare:ske,LucideMic:lke,LucideMic2:kF,LucideMicOff:ake,LucideMicVocal:kF,LucideMicrochip:cke,LucideMicroscope:uke,LucideMicrowave:dke,LucideMilestone:hke,LucideMilk:pke,LucideMilkOff:fke,LucideMinimize:mke,LucideMinimize2:gke,LucideMinus:ree,LucideMinusCircle:Nq,LucideMinusSquare:PH,LucideMonitor:Cke,LucideMonitorCheck:bke,LucideMonitorCog:yke,LucideMonitorDot:vke,LucideMonitorDown:Tke,LucideMonitorOff:Mke,LucideMonitorPause:wke,LucideMonitorPlay:Oke,LucideMonitorSmartphone:_ke,LucideMonitorSpeaker:Ake,LucideMonitorStop:xke,LucideMonitorUp:Ske,LucideMonitorX:Qke,LucideMoon:Eke,LucideMoonStar:zke,LucideMoreHorizontal:rF,LucideMoreVertical:iF,LucideMountain:kke,LucideMountainSnow:Lke,LucideMouse:jke,LucideMouseOff:Rke,LucideMousePointer:Ike,LucideMousePointer2:Nke,LucideMousePointerBan:Dke,LucideMousePointerClick:Pke,LucideMousePointerSquareDashed:SH,LucideMove:Zke,LucideMove3D:RF,LucideMove3d:RF,LucideMoveDiagonal:Fke,LucideMoveDiagonal2:qke,LucideMoveDown:Wke,LucideMoveDownLeft:Hke,LucideMoveDownRight:Bke,LucideMoveHorizontal:$ke,LucideMoveLeft:Vke,LucideMoveRight:Uke,LucideMoveUp:Yke,LucideMoveUpLeft:Gke,LucideMoveUpRight:Xke,LucideMoveVertical:Kke,LucideMusic:nRe,LucideMusic2:Jke,LucideMusic3:eRe,LucideMusic4:tRe,LucideNavigation:sRe,LucideNavigation2:iRe,LucideNavigation2Off:rRe,LucideNavigationOff:oRe,LucideNetwork:aRe,LucideNewspaper:lRe,LucideNfc:cRe,LucideNonBinary:uRe,LucideNotebook:fRe,LucideNotebookPen:dRe,LucideNotebookTabs:hRe,LucideNotebookText:gRe,LucideNotepadText:mRe,LucideNotepadTextDashed:pRe,LucideNut:vRe,LucideNutOff:bRe,LucideOctagon:TRe,LucideOctagonAlert:NF,LucideOctagonMinus:yRe,LucideOctagonPause:DF,LucideOctagonX:PF,LucideOmega:MRe,LucideOption:_Re,LucideOrbit:wRe,LucideOrigami:ORe,LucideOutdent:xF,LucidePackage:ERe,LucidePackage2:ARe,LucidePackageCheck:xRe,LucidePackageMinus:SRe,LucidePackageOpen:CRe,LucidePackagePlus:QRe,LucidePackageSearch:zRe,LucidePackageX:LRe,LucidePaintBucket:kRe,LucidePaintRoller:RRe,LucidePaintbrush:NRe,LucidePaintbrush2:IF,LucidePaintbrushVertical:IF,LucidePalette:DRe,LucidePalmtree:oB,LucidePanelBottom:jRe,LucidePanelBottomClose:PRe,LucidePanelBottomDashed:jF,LucidePanelBottomInactive:jF,LucidePanelBottomOpen:IRe,LucidePanelLeft:yk,LucidePanelLeftClose:qF,LucidePanelLeftDashed:FF,LucidePanelLeftInactive:FF,LucidePanelLeftOpen:HF,LucidePanelRight:HRe,LucidePanelRightClose:qRe,LucidePanelRightDashed:BF,LucidePanelRightInactive:BF,LucidePanelRightOpen:FRe,LucidePanelTop:$Re,LucidePanelTopClose:BRe,LucidePanelTopDashed:WF,LucidePanelTopInactive:WF,LucidePanelTopOpen:WRe,LucidePanelsLeftBottom:VRe,LucidePanelsLeftRight:Jq,LucidePanelsRightBottom:URe,LucidePanelsTopBottom:ZF,LucidePanelsTopLeft:$F,LucidePaperclip:GRe,LucideParentheses:XRe,LucideParkingCircle:Pq,LucideParkingCircleOff:Dq,LucideParkingMeter:KRe,LucideParkingSquare:qH,LucideParkingSquareOff:jH,LucidePartyPopper:YRe,LucidePause:ZRe,LucidePauseCircle:Iq,LucidePauseOctagon:DF,LucidePawPrint:JRe,LucidePcCase:eNe,LucidePen:UF,LucidePenBox:rv,LucidePenLine:VF,LucidePenOff:tNe,LucidePenSquare:rv,LucidePenTool:nNe,LucidePencil:oNe,LucidePencilLine:rNe,LucidePencilOff:iNe,LucidePencilRuler:sNe,LucidePentagon:aNe,LucidePercent:lNe,LucidePercentCircle:qq,LucidePercentDiamond:tF,LucidePercentSquare:FH,LucidePersonStanding:cNe,LucidePhilippinePeso:uNe,LucidePhone:bNe,LucidePhoneCall:dNe,LucidePhoneForwarded:hNe,LucidePhoneIncoming:fNe,LucidePhoneMissed:pNe,LucidePhoneOff:gNe,LucidePhoneOutgoing:mNe,LucidePi:vNe,LucidePiSquare:HH,LucidePiano:yNe,LucidePickaxe:TNe,LucidePictureInPicture:wNe,LucidePictureInPicture2:MNe,LucidePieChart:gq,LucidePiggyBank:_Ne,LucidePilcrow:xNe,LucidePilcrowLeft:ONe,LucidePilcrowRight:ANe,LucidePilcrowSquare:BH,LucidePill:CNe,LucidePillBottle:SNe,LucidePin:zNe,LucidePinOff:QNe,LucidePipette:ENe,LucidePizza:kNe,LucidePlane:NNe,LucidePlaneLanding:LNe,LucidePlaneTakeoff:RNe,LucidePlay:DNe,LucidePlayCircle:jq,LucidePlaySquare:WH,LucidePlug:INe,LucidePlug2:PNe,LucidePlugZap:GF,LucidePlugZap2:GF,LucidePlus:iee,LucidePlusCircle:Fq,LucidePlusSquare:$H,LucidePocket:qNe,LucidePocketKnife:jNe,LucidePodcast:FNe,LucidePointer:HNe,LucidePointerOff:BNe,LucidePopcorn:WNe,LucidePopsicle:$Ne,LucidePoundSterling:UNe,LucidePower:GNe,LucidePowerCircle:Hq,LucidePowerOff:VNe,LucidePowerSquare:VH,LucidePresentation:XNe,LucidePrinter:YNe,LucidePrinterCheck:KNe,LucideProjector:ZNe,LucideProportions:JNe,LucidePuzzle:eDe,LucidePyramid:tDe,LucideQrCode:nDe,LucideQuote:rDe,LucideRabbit:iDe,LucideRadar:oDe,LucideRadiation:sDe,LucideRadical:aDe,LucideRadio:uDe,LucideRadioReceiver:lDe,LucideRadioTower:cDe,LucideRadius:dDe,LucideRailSymbol:hDe,LucideRainbow:fDe,LucideRat:pDe,LucideRatio:gDe,LucideReceipt:ODe,LucideReceiptCent:bDe,LucideReceiptEuro:mDe,LucideReceiptIndianRupee:vDe,LucideReceiptJapaneseYen:yDe,LucideReceiptPoundSterling:TDe,LucideReceiptRussianRuble:MDe,LucideReceiptSwissFranc:wDe,LucideReceiptText:_De,LucideRectangleEllipsis:XF,LucideRectangleGoggles:ADe,LucideRectangleHorizontal:xDe,LucideRectangleVertical:SDe,LucideRecycle:CDe,LucideRedo:LDe,LucideRedo2:QDe,LucideRedoDot:zDe,LucideRefreshCcw:kDe,LucideRefreshCcwDot:EDe,LucideRefreshCw:NDe,LucideRefreshCwOff:RDe,LucideRefrigerator:DDe,LucideRegex:IDe,LucideRemoveFormatting:PDe,LucideRepeat:FDe,LucideRepeat1:jDe,LucideRepeat2:qDe,LucideReplace:BDe,LucideReplaceAll:HDe,LucideReply:$De,LucideReplyAll:WDe,LucideRewind:VDe,LucideRibbon:UDe,LucideRocket:XDe,LucideRockingChair:GDe,LucideRollerCoaster:KDe,LucideRotate3D:KF,LucideRotate3d:KF,LucideRotateCcw:JDe,LucideRotateCcwKey:YDe,LucideRotateCcwSquare:ZDe,LucideRotateCw:tPe,LucideRotateCwSquare:ePe,LucideRoute:rPe,LucideRouteOff:nPe,LucideRouter:iPe,LucideRows:YF,LucideRows2:YF,LucideRows3:ZF,LucideRows4:oPe,LucideRss:sPe,LucideRuler:lPe,LucideRulerDimensionLine:aPe,LucideRussianRuble:cPe,LucideSailboat:uPe,LucideSalad:dPe,LucideSandwich:hPe,LucideSatellite:pPe,LucideSatelliteDish:fPe,LucideSaudiRiyal:gPe,LucideSave:vPe,LucideSaveAll:mPe,LucideSaveOff:bPe,LucideScale:yPe,LucideScale3D:JF,LucideScale3d:JF,LucideScaling:TPe,LucideScan:QPe,LucideScanBarcode:MPe,LucideScanEye:wPe,LucideScanFace:_Pe,LucideScanHeart:OPe,LucideScanLine:APe,LucideScanQrCode:xPe,LucideScanSearch:SPe,LucideScanText:CPe,LucideScatterChart:mq,LucideSchool:zPe,LucideSchool2:lB,LucideScissors:LPe,LucideScissorsLineDashed:EPe,LucideScissorsSquare:UH,LucideScissorsSquareDashedBottom:vH,LucideScreenShare:RPe,LucideScreenShareOff:kPe,LucideScroll:DPe,LucideScrollText:NPe,LucideSearch:Vle,LucideSearchCheck:PPe,LucideSearchCode:IPe,LucideSearchSlash:jPe,LucideSearchX:qPe,LucideSection:FPe,LucideSend:BPe,LucideSendHorizonal:eH,LucideSendHorizontal:eH,LucideSendToBack:HPe,LucideSeparatorHorizontal:WPe,LucideSeparatorVertical:$Pe,LucideServer:XPe,LucideServerCog:VPe,LucideServerCrash:UPe,LucideServerOff:GPe,LucideSettings:YPe,LucideSettings2:KPe,LucideShapes:ZPe,LucideShare:eIe,LucideShare2:JPe,LucideSheet:tIe,LucideShell:nIe,LucideShield:fIe,LucideShieldAlert:rIe,LucideShieldBan:iIe,LucideShieldCheck:oIe,LucideShieldClose:tH,LucideShieldEllipsis:sIe,LucideShieldHalf:aIe,LucideShieldMinus:lIe,LucideShieldOff:cIe,LucideShieldPlus:uIe,LucideShieldQuestion:dIe,LucideShieldUser:hIe,LucideShieldX:tH,LucideShip:gIe,LucideShipWheel:pIe,LucideShirt:mIe,LucideShoppingBag:bIe,LucideShoppingBasket:vIe,LucideShoppingCart:TIe,LucideShovel:yIe,LucideShowerHead:MIe,LucideShredder:wIe,LucideShrimp:_Ie,LucideShrink:AIe,LucideShrub:OIe,LucideShuffle:xIe,LucideSidebar:yk,LucideSidebarClose:qF,LucideSidebarOpen:HF,LucideSigma:SIe,LucideSigmaSquare:GH,LucideSignal:LIe,LucideSignalHigh:CIe,LucideSignalLow:QIe,LucideSignalMedium:zIe,LucideSignalZero:EIe,LucideSignature:kIe,LucideSignpost:NIe,LucideSignpostBig:RIe,LucideSiren:DIe,LucideSkipBack:PIe,LucideSkipForward:IIe,LucideSkull:jIe,LucideSlack:qIe,LucideSlash:FIe,LucideSlashSquare:XH,LucideSlice:HIe,LucideSliders:nH,LucideSlidersHorizontal:BIe,LucideSlidersVertical:nH,LucideSmartphone:VIe,LucideSmartphoneCharging:WIe,LucideSmartphoneNfc:$Ie,LucideSmile:GIe,LucideSmilePlus:UIe,LucideSnail:XIe,LucideSnowflake:KIe,LucideSofa:YIe,LucideSortAsc:Xj,LucideSortDesc:Uj,LucideSoup:ZIe,LucideSpace:JIe,LucideSpade:eje,LucideSparkle:tje,LucideSparkles:rH,LucideSpeaker:nje,LucideSpeech:rje,LucideSpellCheck:sje,LucideSpellCheck2:ije,LucideSpline:aje,LucideSplinePointer:oje,LucideSplit:lje,LucideSplitSquareHorizontal:KH,LucideSplitSquareVertical:YH,LucideSprayCan:cje,LucideSprout:uje,LucideSquare:bje,LucideSquareActivity:iH,LucideSquareArrowDown:aH,LucideSquareArrowDownLeft:oH,LucideSquareArrowDownRight:sH,LucideSquareArrowLeft:lH,LucideSquareArrowOutDownLeft:cH,LucideSquareArrowOutDownRight:uH,LucideSquareArrowOutUpLeft:dH,LucideSquareArrowOutUpRight:pH,LucideSquareArrowRight:hH,LucideSquareArrowUp:mH,LucideSquareArrowUpLeft:fH,LucideSquareArrowUpRight:gH,LucideSquareAsterisk:bH,LucideSquareBottomDashedScissors:vH,LucideSquareChartGantt:JO,LucideSquareCheck:TH,LucideSquareCheckBig:yH,LucideSquareChevronDown:MH,LucideSquareChevronLeft:wH,LucideSquareChevronRight:_H,LucideSquareChevronUp:OH,LucideSquareCode:AH,LucideSquareDashed:CH,LucideSquareDashedBottom:hje,LucideSquareDashedBottomCode:dje,LucideSquareDashedKanban:xH,LucideSquareDashedMousePointer:SH,LucideSquareDivide:QH,LucideSquareDot:zH,LucideSquareEqual:EH,LucideSquareFunction:LH,LucideSquareGanttChart:JO,LucideSquareKanban:kH,LucideSquareLibrary:RH,LucideSquareM:NH,LucideSquareMenu:DH,LucideSquareMinus:PH,LucideSquareMousePointer:IH,LucideSquareParking:qH,LucideSquareParkingOff:jH,LucideSquarePen:rv,LucideSquarePercent:FH,LucideSquarePi:HH,LucideSquarePilcrow:BH,LucideSquarePlay:WH,LucideSquarePlus:$H,LucideSquarePower:VH,LucideSquareRadical:fje,LucideSquareRoundCorner:pje,LucideSquareScissors:UH,LucideSquareSigma:GH,LucideSquareSlash:XH,LucideSquareSplitHorizontal:KH,LucideSquareSplitVertical:YH,LucideSquareSquare:gje,LucideSquareStack:mje,LucideSquareTerminal:ZH,LucideSquareUser:eB,LucideSquareUserRound:JH,LucideSquareX:tB,LucideSquaresExclude:vje,LucideSquaresIntersect:yje,LucideSquaresSubtract:Tje,LucideSquaresUnite:Mje,LucideSquircle:wje,LucideSquirrel:_je,LucideStamp:Oje,LucideStar:Sje,LucideStarHalf:Aje,LucideStarOff:xje,LucideStars:rH,LucideStepBack:Cje,LucideStepForward:Qje,LucideStethoscope:zje,LucideSticker:Eje,LucideStickyNote:Lje,LucideStopCircle:Wq,LucideStore:kje,LucideStretchHorizontal:Rje,LucideStretchVertical:Nje,LucideStrikethrough:Dje,LucideSubscript:Pje,LucideSubtitles:rq,LucideSun:Hje,LucideSunDim:Ije,LucideSunMedium:jje,LucideSunMoon:qje,LucideSunSnow:Fje,LucideSunrise:Bje,LucideSunset:Wje,LucideSuperscript:$je,LucideSwatchBook:Vje,LucideSwissFranc:Uje,LucideSwitchCamera:Gje,LucideSword:Xje,LucideSwords:Kje,LucideSyringe:Yje,LucideTable:oqe,LucideTable2:Zje,LucideTableCellsMerge:Jje,LucideTableCellsSplit:eqe,LucideTableColumnsSplit:tqe,LucideTableConfig:YO,LucideTableOfContents:nqe,LucideTableProperties:rqe,LucideTableRowsSplit:iqe,LucideTablet:lqe,LucideTabletSmartphone:sqe,LucideTablets:aqe,LucideTag:cqe,LucideTags:uqe,LucideTally1:dqe,LucideTally2:hqe,LucideTally3:fqe,LucideTally4:pqe,LucideTally5:gqe,LucideTangent:mqe,LucideTarget:bqe,LucideTelescope:vqe,LucideTent:Tqe,LucideTentTree:yqe,LucideTerminal:Mqe,LucideTerminalSquare:ZH,LucideTestTube:wqe,LucideTestTube2:nB,LucideTestTubeDiagonal:nB,LucideTestTubes:_qe,LucideText:Cqe,LucideTextCursor:Aqe,LucideTextCursorInput:Oqe,LucideTextQuote:xqe,LucideTextSearch:Sqe,LucideTextSelect:rB,LucideTextSelection:rB,LucideTheater:Qqe,LucideThermometer:Lqe,LucideThermometerSnowflake:zqe,LucideThermometerSun:Eqe,LucideThumbsDown:kqe,LucideThumbsUp:Rqe,LucideTicket:Fqe,LucideTicketCheck:Nqe,LucideTicketMinus:Dqe,LucideTicketPercent:Pqe,LucideTicketPlus:Iqe,LucideTicketSlash:jqe,LucideTicketX:qqe,LucideTickets:Bqe,LucideTicketsPlane:Hqe,LucideTimer:Vqe,LucideTimerOff:Wqe,LucideTimerReset:$qe,LucideToggleLeft:Uqe,LucideToggleRight:Gqe,LucideToilet:Xqe,LucideTornado:Kqe,LucideTorus:Yqe,LucideTouchpad:Jqe,LucideTouchpadOff:Zqe,LucideTowerControl:eFe,LucideToyBrick:tFe,LucideTractor:nFe,LucideTrafficCone:rFe,LucideTrain:iB,LucideTrainFront:oFe,LucideTrainFrontTunnel:iFe,LucideTrainTrack:aFe,LucideTramFront:iB,LucideTransgender:sFe,LucideTrash:lFe,LucideTrash2:Ule,LucideTreeDeciduous:cFe,LucideTreePalm:oB,LucideTreePine:uFe,LucideTrees:dFe,LucideTrello:hFe,LucideTrendingDown:fFe,LucideTrendingUp:gFe,LucideTrendingUpDown:pFe,LucideTriangle:vFe,LucideTriangleAlert:sB,LucideTriangleDashed:mFe,LucideTriangleRight:bFe,LucideTrophy:yFe,LucideTruck:MFe,LucideTruckElectric:TFe,LucideTurtle:wFe,LucideTv:OFe,LucideTv2:aB,LucideTvMinimal:aB,LucideTvMinimalPlay:_Fe,LucideTwitch:AFe,LucideTwitter:xFe,LucideType:SFe,LucideTypeOutline:CFe,LucideUmbrella:zFe,LucideUmbrellaOff:QFe,LucideUnderline:EFe,LucideUndo:kFe,LucideUndo2:LFe,LucideUndoDot:RFe,LucideUnfoldHorizontal:NFe,LucideUnfoldVertical:DFe,LucideUngroup:PFe,LucideUniversity:lB,LucideUnlink:jFe,LucideUnlink2:IFe,LucideUnlock:LF,LucideUnlockKeyhole:EF,LucideUnplug:qFe,LucideUpload:FFe,LucideUploadCloud:Kq,LucideUsb:HFe,LucideUser:JFe,LucideUser2:pB,LucideUserCheck:BFe,LucideUserCheck2:cB,LucideUserCircle:Vq,LucideUserCircle2:$q,LucideUserCog:WFe,LucideUserCog2:uB,LucideUserLock:$Fe,LucideUserMinus:VFe,LucideUserMinus2:dB,LucideUserPen:UFe,LucideUserPlus:GFe,LucideUserPlus2:hB,LucideUserRound:pB,LucideUserRoundCheck:cB,LucideUserRoundCog:uB,LucideUserRoundMinus:dB,LucideUserRoundPen:XFe,LucideUserRoundPlus:hB,LucideUserRoundSearch:KFe,LucideUserRoundX:fB,LucideUserSearch:YFe,LucideUserSquare:eB,LucideUserSquare2:JH,LucideUserX:ZFe,LucideUserX2:fB,LucideUsers:eHe,LucideUsers2:gB,LucideUsersRound:gB,LucideUtensils:bB,LucideUtensilsCrossed:mB,LucideUtilityPole:tHe,LucideVariable:nHe,LucideVault:rHe,LucideVegan:iHe,LucideVenetianMask:oHe,LucideVenus:aHe,LucideVenusAndMars:sHe,LucideVerified:Zj,LucideVibrate:cHe,LucideVibrateOff:lHe,LucideVideo:dHe,LucideVideoOff:uHe,LucideVideotape:hHe,LucideView:fHe,LucideVoicemail:pHe,LucideVolleyball:gHe,LucideVolume:THe,LucideVolume1:mHe,LucideVolume2:bHe,LucideVolumeOff:vHe,LucideVolumeX:yHe,LucideVote:MHe,LucideWallet:_He,LucideWallet2:vB,LucideWalletCards:wHe,LucideWalletMinimal:vB,LucideWallpaper:OHe,LucideWand:AHe,LucideWand2:yB,LucideWandSparkles:yB,LucideWarehouse:xHe,LucideWashingMachine:SHe,LucideWatch:CHe,LucideWaves:zHe,LucideWavesLadder:QHe,LucideWaypoints:EHe,LucideWebcam:LHe,LucideWebhook:NHe,LucideWebhookOff:kHe,LucideWeight:RHe,LucideWheat:PHe,LucideWheatOff:DHe,LucideWholeWord:IHe,LucideWifi:WHe,LucideWifiHigh:jHe,LucideWifiLow:qHe,LucideWifiOff:FHe,LucideWifiPen:HHe,LucideWifiZero:BHe,LucideWind:VHe,LucideWindArrowDown:$He,LucideWine:UHe,LucideWineOff:GHe,LucideWorkflow:XHe,LucideWorm:KHe,LucideWrapText:YHe,LucideWrench:ZHe,LucideX:Gle,LucideXCircle:vk,LucideXOctagon:PF,LucideXSquare:tB,LucideYoutube:JHe,LucideZap:tBe,LucideZapOff:eBe,LucideZoomIn:nBe,LucideZoomOut:rBe,Luggage:GEe,LuggageIcon:GEe,MSquare:NH,MSquareIcon:NH,Magnet:XEe,MagnetIcon:XEe,Mail:iLe,MailCheck:YEe,MailCheckIcon:YEe,MailIcon:iLe,MailMinus:KEe,MailMinusIcon:KEe,MailOpen:ZEe,MailOpenIcon:ZEe,MailPlus:JEe,MailPlusIcon:JEe,MailQuestion:eLe,MailQuestionIcon:eLe,MailSearch:tLe,MailSearchIcon:tLe,MailWarning:nLe,MailWarningIcon:nLe,MailX:rLe,MailXIcon:rLe,Mailbox:oLe,MailboxIcon:oLe,Mails:sLe,MailsIcon:sLe,Map:TLe,MapIcon:TLe,MapPin:bLe,MapPinCheck:lLe,MapPinCheckIcon:lLe,MapPinCheckInside:aLe,MapPinCheckInsideIcon:aLe,MapPinHouse:cLe,MapPinHouseIcon:cLe,MapPinIcon:bLe,MapPinMinus:dLe,MapPinMinusIcon:dLe,MapPinMinusInside:uLe,MapPinMinusInsideIcon:uLe,MapPinOff:hLe,MapPinOffIcon:hLe,MapPinPlus:pLe,MapPinPlusIcon:pLe,MapPinPlusInside:fLe,MapPinPlusInsideIcon:fLe,MapPinX:mLe,MapPinXIcon:mLe,MapPinXInside:gLe,MapPinXInsideIcon:gLe,MapPinned:vLe,MapPinnedIcon:vLe,MapPlus:yLe,MapPlusIcon:yLe,Mars:wLe,MarsIcon:wLe,MarsStroke:MLe,MarsStrokeIcon:MLe,Martini:_Le,MartiniIcon:_Le,Maximize:ALe,Maximize2:OLe,Maximize2Icon:OLe,MaximizeIcon:ALe,Medal:xLe,MedalIcon:xLe,Megaphone:SLe,MegaphoneIcon:SLe,MegaphoneOff:CLe,MegaphoneOffIcon:CLe,Meh:QLe,MehIcon:QLe,MemoryStick:zLe,MemoryStickIcon:zLe,Menu:ELe,MenuIcon:ELe,MenuSquare:DH,MenuSquareIcon:DH,Merge:LLe,MergeIcon:LLe,MessageCircle:BLe,MessageCircleCode:kLe,MessageCircleCodeIcon:kLe,MessageCircleDashed:RLe,MessageCircleDashedIcon:RLe,MessageCircleHeart:NLe,MessageCircleHeartIcon:NLe,MessageCircleIcon:BLe,MessageCircleMore:DLe,MessageCircleMoreIcon:DLe,MessageCircleOff:PLe,MessageCircleOffIcon:PLe,MessageCirclePlus:ILe,MessageCirclePlusIcon:ILe,MessageCircleQuestion:jLe,MessageCircleQuestionIcon:jLe,MessageCircleReply:qLe,MessageCircleReplyIcon:qLe,MessageCircleWarning:FLe,MessageCircleWarningIcon:FLe,MessageCircleX:HLe,MessageCircleXIcon:HLe,MessageSquare:oke,MessageSquareCode:WLe,MessageSquareCodeIcon:WLe,MessageSquareDashed:$Le,MessageSquareDashedIcon:$Le,MessageSquareDiff:VLe,MessageSquareDiffIcon:VLe,MessageSquareDot:ULe,MessageSquareDotIcon:ULe,MessageSquareHeart:GLe,MessageSquareHeartIcon:GLe,MessageSquareIcon:oke,MessageSquareLock:XLe,MessageSquareLockIcon:XLe,MessageSquareMore:KLe,MessageSquareMoreIcon:KLe,MessageSquareOff:YLe,MessageSquareOffIcon:YLe,MessageSquarePlus:ZLe,MessageSquarePlusIcon:ZLe,MessageSquareQuote:JLe,MessageSquareQuoteIcon:JLe,MessageSquareReply:eke,MessageSquareReplyIcon:eke,MessageSquareShare:tke,MessageSquareShareIcon:tke,MessageSquareText:nke,MessageSquareTextIcon:nke,MessageSquareWarning:rke,MessageSquareWarningIcon:rke,MessageSquareX:ike,MessageSquareXIcon:ike,MessagesSquare:ske,MessagesSquareIcon:ske,Mic:lke,Mic2:kF,Mic2Icon:kF,MicIcon:lke,MicOff:ake,MicOffIcon:ake,MicVocal:kF,MicVocalIcon:kF,Microchip:cke,MicrochipIcon:cke,Microscope:uke,MicroscopeIcon:uke,Microwave:dke,MicrowaveIcon:dke,Milestone:hke,MilestoneIcon:hke,Milk:pke,MilkIcon:pke,MilkOff:fke,MilkOffIcon:fke,Minimize:mke,Minimize2:gke,Minimize2Icon:gke,MinimizeIcon:mke,Minus:ree,MinusCircle:Nq,MinusCircleIcon:Nq,MinusIcon:ree,MinusSquare:PH,MinusSquareIcon:PH,Monitor:Cke,MonitorCheck:bke,MonitorCheckIcon:bke,MonitorCog:yke,MonitorCogIcon:yke,MonitorDot:vke,MonitorDotIcon:vke,MonitorDown:Tke,MonitorDownIcon:Tke,MonitorIcon:Cke,MonitorOff:Mke,MonitorOffIcon:Mke,MonitorPause:wke,MonitorPauseIcon:wke,MonitorPlay:Oke,MonitorPlayIcon:Oke,MonitorSmartphone:_ke,MonitorSmartphoneIcon:_ke,MonitorSpeaker:Ake,MonitorSpeakerIcon:Ake,MonitorStop:xke,MonitorStopIcon:xke,MonitorUp:Ske,MonitorUpIcon:Ske,MonitorX:Qke,MonitorXIcon:Qke,Moon:Eke,MoonIcon:Eke,MoonStar:zke,MoonStarIcon:zke,MoreHorizontal:rF,MoreHorizontalIcon:rF,MoreVertical:iF,MoreVerticalIcon:iF,Mountain:kke,MountainIcon:kke,MountainSnow:Lke,MountainSnowIcon:Lke,Mouse:jke,MouseIcon:jke,MouseOff:Rke,MouseOffIcon:Rke,MousePointer:Ike,MousePointer2:Nke,MousePointer2Icon:Nke,MousePointerBan:Dke,MousePointerBanIcon:Dke,MousePointerClick:Pke,MousePointerClickIcon:Pke,MousePointerIcon:Ike,MousePointerSquareDashed:SH,MousePointerSquareDashedIcon:SH,Move:Zke,Move3D:RF,Move3DIcon:RF,Move3d:RF,Move3dIcon:RF,MoveDiagonal:Fke,MoveDiagonal2:qke,MoveDiagonal2Icon:qke,MoveDiagonalIcon:Fke,MoveDown:Wke,MoveDownIcon:Wke,MoveDownLeft:Hke,MoveDownLeftIcon:Hke,MoveDownRight:Bke,MoveDownRightIcon:Bke,MoveHorizontal:$ke,MoveHorizontalIcon:$ke,MoveIcon:Zke,MoveLeft:Vke,MoveLeftIcon:Vke,MoveRight:Uke,MoveRightIcon:Uke,MoveUp:Yke,MoveUpIcon:Yke,MoveUpLeft:Gke,MoveUpLeftIcon:Gke,MoveUpRight:Xke,MoveUpRightIcon:Xke,MoveVertical:Kke,MoveVerticalIcon:Kke,Music:nRe,Music2:Jke,Music2Icon:Jke,Music3:eRe,Music3Icon:eRe,Music4:tRe,Music4Icon:tRe,MusicIcon:nRe,Navigation:sRe,Navigation2:iRe,Navigation2Icon:iRe,Navigation2Off:rRe,Navigation2OffIcon:rRe,NavigationIcon:sRe,NavigationOff:oRe,NavigationOffIcon:oRe,Network:aRe,NetworkIcon:aRe,Newspaper:lRe,NewspaperIcon:lRe,Nfc:cRe,NfcIcon:cRe,NonBinary:uRe,NonBinaryIcon:uRe,Notebook:fRe,NotebookIcon:fRe,NotebookPen:dRe,NotebookPenIcon:dRe,NotebookTabs:hRe,NotebookTabsIcon:hRe,NotebookText:gRe,NotebookTextIcon:gRe,NotepadText:mRe,NotepadTextDashed:pRe,NotepadTextDashedIcon:pRe,NotepadTextIcon:mRe,Nut:vRe,NutIcon:vRe,NutOff:bRe,NutOffIcon:bRe,Octagon:TRe,OctagonAlert:NF,OctagonAlertIcon:NF,OctagonIcon:TRe,OctagonMinus:yRe,OctagonMinusIcon:yRe,OctagonPause:DF,OctagonPauseIcon:DF,OctagonX:PF,OctagonXIcon:PF,Omega:MRe,OmegaIcon:MRe,Option:_Re,OptionIcon:_Re,Orbit:wRe,OrbitIcon:wRe,Origami:ORe,OrigamiIcon:ORe,Outdent:xF,OutdentIcon:xF,Package:ERe,Package2:ARe,Package2Icon:ARe,PackageCheck:xRe,PackageCheckIcon:xRe,PackageIcon:ERe,PackageMinus:SRe,PackageMinusIcon:SRe,PackageOpen:CRe,PackageOpenIcon:CRe,PackagePlus:QRe,PackagePlusIcon:QRe,PackageSearch:zRe,PackageSearchIcon:zRe,PackageX:LRe,PackageXIcon:LRe,PaintBucket:kRe,PaintBucketIcon:kRe,PaintRoller:RRe,PaintRollerIcon:RRe,Paintbrush:NRe,Paintbrush2:IF,Paintbrush2Icon:IF,PaintbrushIcon:NRe,PaintbrushVertical:IF,PaintbrushVerticalIcon:IF,Palette:DRe,PaletteIcon:DRe,Palmtree:oB,PalmtreeIcon:oB,PanelBottom:jRe,PanelBottomClose:PRe,PanelBottomCloseIcon:PRe,PanelBottomDashed:jF,PanelBottomDashedIcon:jF,PanelBottomIcon:jRe,PanelBottomInactive:jF,PanelBottomInactiveIcon:jF,PanelBottomOpen:IRe,PanelBottomOpenIcon:IRe,PanelLeft:yk,PanelLeftClose:qF,PanelLeftCloseIcon:qF,PanelLeftDashed:FF,PanelLeftDashedIcon:FF,PanelLeftIcon:yk,PanelLeftInactive:FF,PanelLeftInactiveIcon:FF,PanelLeftOpen:HF,PanelLeftOpenIcon:HF,PanelRight:HRe,PanelRightClose:qRe,PanelRightCloseIcon:qRe,PanelRightDashed:BF,PanelRightDashedIcon:BF,PanelRightIcon:HRe,PanelRightInactive:BF,PanelRightInactiveIcon:BF,PanelRightOpen:FRe,PanelRightOpenIcon:FRe,PanelTop:$Re,PanelTopClose:BRe,PanelTopCloseIcon:BRe,PanelTopDashed:WF,PanelTopDashedIcon:WF,PanelTopIcon:$Re,PanelTopInactive:WF,PanelTopInactiveIcon:WF,PanelTopOpen:WRe,PanelTopOpenIcon:WRe,PanelsLeftBottom:VRe,PanelsLeftBottomIcon:VRe,PanelsLeftRight:Jq,PanelsLeftRightIcon:Jq,PanelsRightBottom:URe,PanelsRightBottomIcon:URe,PanelsTopBottom:ZF,PanelsTopBottomIcon:ZF,PanelsTopLeft:$F,PanelsTopLeftIcon:$F,Paperclip:GRe,PaperclipIcon:GRe,Parentheses:XRe,ParenthesesIcon:XRe,ParkingCircle:Pq,ParkingCircleIcon:Pq,ParkingCircleOff:Dq,ParkingCircleOffIcon:Dq,ParkingMeter:KRe,ParkingMeterIcon:KRe,ParkingSquare:qH,ParkingSquareIcon:qH,ParkingSquareOff:jH,ParkingSquareOffIcon:jH,PartyPopper:YRe,PartyPopperIcon:YRe,Pause:ZRe,PauseCircle:Iq,PauseCircleIcon:Iq,PauseIcon:ZRe,PauseOctagon:DF,PauseOctagonIcon:DF,PawPrint:JRe,PawPrintIcon:JRe,PcCase:eNe,PcCaseIcon:eNe,Pen:UF,PenBox:rv,PenBoxIcon:rv,PenIcon:UF,PenLine:VF,PenLineIcon:VF,PenOff:tNe,PenOffIcon:tNe,PenSquare:rv,PenSquareIcon:rv,PenTool:nNe,PenToolIcon:nNe,Pencil:oNe,PencilIcon:oNe,PencilLine:rNe,PencilLineIcon:rNe,PencilOff:iNe,PencilOffIcon:iNe,PencilRuler:sNe,PencilRulerIcon:sNe,Pentagon:aNe,PentagonIcon:aNe,Percent:lNe,PercentCircle:qq,PercentCircleIcon:qq,PercentDiamond:tF,PercentDiamondIcon:tF,PercentIcon:lNe,PercentSquare:FH,PercentSquareIcon:FH,PersonStanding:cNe,PersonStandingIcon:cNe,PhilippinePeso:uNe,PhilippinePesoIcon:uNe,Phone:bNe,PhoneCall:dNe,PhoneCallIcon:dNe,PhoneForwarded:hNe,PhoneForwardedIcon:hNe,PhoneIcon:bNe,PhoneIncoming:fNe,PhoneIncomingIcon:fNe,PhoneMissed:pNe,PhoneMissedIcon:pNe,PhoneOff:gNe,PhoneOffIcon:gNe,PhoneOutgoing:mNe,PhoneOutgoingIcon:mNe,Pi:vNe,PiIcon:vNe,PiSquare:HH,PiSquareIcon:HH,Piano:yNe,PianoIcon:yNe,Pickaxe:TNe,PickaxeIcon:TNe,PictureInPicture:wNe,PictureInPicture2:MNe,PictureInPicture2Icon:MNe,PictureInPictureIcon:wNe,PieChart:gq,PieChartIcon:gq,PiggyBank:_Ne,PiggyBankIcon:_Ne,Pilcrow:xNe,PilcrowIcon:xNe,PilcrowLeft:ONe,PilcrowLeftIcon:ONe,PilcrowRight:ANe,PilcrowRightIcon:ANe,PilcrowSquare:BH,PilcrowSquareIcon:BH,Pill:CNe,PillBottle:SNe,PillBottleIcon:SNe,PillIcon:CNe,Pin:zNe,PinIcon:zNe,PinOff:QNe,PinOffIcon:QNe,Pipette:ENe,PipetteIcon:ENe,Pizza:kNe,PizzaIcon:kNe,Plane:NNe,PlaneIcon:NNe,PlaneLanding:LNe,PlaneLandingIcon:LNe,PlaneTakeoff:RNe,PlaneTakeoffIcon:RNe,Play:DNe,PlayCircle:jq,PlayCircleIcon:jq,PlayIcon:DNe,PlaySquare:WH,PlaySquareIcon:WH,Plug:INe,Plug2:PNe,Plug2Icon:PNe,PlugIcon:INe,PlugZap:GF,PlugZap2:GF,PlugZap2Icon:GF,PlugZapIcon:GF,Plus:iee,PlusCircle:Fq,PlusCircleIcon:Fq,PlusIcon:iee,PlusSquare:$H,PlusSquareIcon:$H,Pocket:qNe,PocketIcon:qNe,PocketKnife:jNe,PocketKnifeIcon:jNe,Podcast:FNe,PodcastIcon:FNe,Pointer:HNe,PointerIcon:HNe,PointerOff:BNe,PointerOffIcon:BNe,Popcorn:WNe,PopcornIcon:WNe,Popsicle:$Ne,PopsicleIcon:$Ne,PoundSterling:UNe,PoundSterlingIcon:UNe,Power:GNe,PowerCircle:Hq,PowerCircleIcon:Hq,PowerIcon:GNe,PowerOff:VNe,PowerOffIcon:VNe,PowerSquare:VH,PowerSquareIcon:VH,Presentation:XNe,PresentationIcon:XNe,Printer:YNe,PrinterCheck:KNe,PrinterCheckIcon:KNe,PrinterIcon:YNe,Projector:ZNe,ProjectorIcon:ZNe,Proportions:JNe,ProportionsIcon:JNe,Puzzle:eDe,PuzzleIcon:eDe,Pyramid:tDe,PyramidIcon:tDe,QrCode:nDe,QrCodeIcon:nDe,Quote:rDe,QuoteIcon:rDe,Rabbit:iDe,RabbitIcon:iDe,Radar:oDe,RadarIcon:oDe,Radiation:sDe,RadiationIcon:sDe,Radical:aDe,RadicalIcon:aDe,Radio:uDe,RadioIcon:uDe,RadioReceiver:lDe,RadioReceiverIcon:lDe,RadioTower:cDe,RadioTowerIcon:cDe,Radius:dDe,RadiusIcon:dDe,RailSymbol:hDe,RailSymbolIcon:hDe,Rainbow:fDe,RainbowIcon:fDe,Rat:pDe,RatIcon:pDe,Ratio:gDe,RatioIcon:gDe,Receipt:ODe,ReceiptCent:bDe,ReceiptCentIcon:bDe,ReceiptEuro:mDe,ReceiptEuroIcon:mDe,ReceiptIcon:ODe,ReceiptIndianRupee:vDe,ReceiptIndianRupeeIcon:vDe,ReceiptJapaneseYen:yDe,ReceiptJapaneseYenIcon:yDe,ReceiptPoundSterling:TDe,ReceiptPoundSterlingIcon:TDe,ReceiptRussianRuble:MDe,ReceiptRussianRubleIcon:MDe,ReceiptSwissFranc:wDe,ReceiptSwissFrancIcon:wDe,ReceiptText:_De,ReceiptTextIcon:_De,RectangleEllipsis:XF,RectangleEllipsisIcon:XF,RectangleGoggles:ADe,RectangleGogglesIcon:ADe,RectangleHorizontal:xDe,RectangleHorizontalIcon:xDe,RectangleVertical:SDe,RectangleVerticalIcon:SDe,Recycle:CDe,RecycleIcon:CDe,Redo:LDe,Redo2:QDe,Redo2Icon:QDe,RedoDot:zDe,RedoDotIcon:zDe,RedoIcon:LDe,RefreshCcw:kDe,RefreshCcwDot:EDe,RefreshCcwDotIcon:EDe,RefreshCcwIcon:kDe,RefreshCw:NDe,RefreshCwIcon:NDe,RefreshCwOff:RDe,RefreshCwOffIcon:RDe,Refrigerator:DDe,RefrigeratorIcon:DDe,Regex:IDe,RegexIcon:IDe,RemoveFormatting:PDe,RemoveFormattingIcon:PDe,Repeat:FDe,Repeat1:jDe,Repeat1Icon:jDe,Repeat2:qDe,Repeat2Icon:qDe,RepeatIcon:FDe,Replace:BDe,ReplaceAll:HDe,ReplaceAllIcon:HDe,ReplaceIcon:BDe,Reply:$De,ReplyAll:WDe,ReplyAllIcon:WDe,ReplyIcon:$De,Rewind:VDe,RewindIcon:VDe,Ribbon:UDe,RibbonIcon:UDe,Rocket:XDe,RocketIcon:XDe,RockingChair:GDe,RockingChairIcon:GDe,RollerCoaster:KDe,RollerCoasterIcon:KDe,Rotate3D:KF,Rotate3DIcon:KF,Rotate3d:KF,Rotate3dIcon:KF,RotateCcw:JDe,RotateCcwIcon:JDe,RotateCcwKey:YDe,RotateCcwKeyIcon:YDe,RotateCcwSquare:ZDe,RotateCcwSquareIcon:ZDe,RotateCw:tPe,RotateCwIcon:tPe,RotateCwSquare:ePe,RotateCwSquareIcon:ePe,Route:rPe,RouteIcon:rPe,RouteOff:nPe,RouteOffIcon:nPe,Router:iPe,RouterIcon:iPe,Rows:YF,Rows2:YF,Rows2Icon:YF,Rows3:ZF,Rows3Icon:ZF,Rows4:oPe,Rows4Icon:oPe,RowsIcon:YF,Rss:sPe,RssIcon:sPe,Ruler:lPe,RulerDimensionLine:aPe,RulerDimensionLineIcon:aPe,RulerIcon:lPe,RussianRuble:cPe,RussianRubleIcon:cPe,Sailboat:uPe,SailboatIcon:uPe,Salad:dPe,SaladIcon:dPe,Sandwich:hPe,SandwichIcon:hPe,Satellite:pPe,SatelliteDish:fPe,SatelliteDishIcon:fPe,SatelliteIcon:pPe,SaudiRiyal:gPe,SaudiRiyalIcon:gPe,Save:vPe,SaveAll:mPe,SaveAllIcon:mPe,SaveIcon:vPe,SaveOff:bPe,SaveOffIcon:bPe,Scale:yPe,Scale3D:JF,Scale3DIcon:JF,Scale3d:JF,Scale3dIcon:JF,ScaleIcon:yPe,Scaling:TPe,ScalingIcon:TPe,Scan:QPe,ScanBarcode:MPe,ScanBarcodeIcon:MPe,ScanEye:wPe,ScanEyeIcon:wPe,ScanFace:_Pe,ScanFaceIcon:_Pe,ScanHeart:OPe,ScanHeartIcon:OPe,ScanIcon:QPe,ScanLine:APe,ScanLineIcon:APe,ScanQrCode:xPe,ScanQrCodeIcon:xPe,ScanSearch:SPe,ScanSearchIcon:SPe,ScanText:CPe,ScanTextIcon:CPe,ScatterChart:mq,ScatterChartIcon:mq,School:zPe,School2:lB,School2Icon:lB,SchoolIcon:zPe,Scissors:LPe,ScissorsIcon:LPe,ScissorsLineDashed:EPe,ScissorsLineDashedIcon:EPe,ScissorsSquare:UH,ScissorsSquareDashedBottom:vH,ScissorsSquareDashedBottomIcon:vH,ScissorsSquareIcon:UH,ScreenShare:RPe,ScreenShareIcon:RPe,ScreenShareOff:kPe,ScreenShareOffIcon:kPe,Scroll:DPe,ScrollIcon:DPe,ScrollText:NPe,ScrollTextIcon:NPe,Search:Vle,SearchCheck:PPe,SearchCheckIcon:PPe,SearchCode:IPe,SearchCodeIcon:IPe,SearchIcon:Vle,SearchSlash:jPe,SearchSlashIcon:jPe,SearchX:qPe,SearchXIcon:qPe,Section:FPe,SectionIcon:FPe,Send:BPe,SendHorizonal:eH,SendHorizonalIcon:eH,SendHorizontal:eH,SendHorizontalIcon:eH,SendIcon:BPe,SendToBack:HPe,SendToBackIcon:HPe,SeparatorHorizontal:WPe,SeparatorHorizontalIcon:WPe,SeparatorVertical:$Pe,SeparatorVerticalIcon:$Pe,Server:XPe,ServerCog:VPe,ServerCogIcon:VPe,ServerCrash:UPe,ServerCrashIcon:UPe,ServerIcon:XPe,ServerOff:GPe,ServerOffIcon:GPe,Settings:YPe,Settings2:KPe,Settings2Icon:KPe,SettingsIcon:YPe,Shapes:ZPe,ShapesIcon:ZPe,Share:eIe,Share2:JPe,Share2Icon:JPe,ShareIcon:eIe,Sheet:tIe,SheetIcon:tIe,Shell:nIe,ShellIcon:nIe,Shield:fIe,ShieldAlert:rIe,ShieldAlertIcon:rIe,ShieldBan:iIe,ShieldBanIcon:iIe,ShieldCheck:oIe,ShieldCheckIcon:oIe,ShieldClose:tH,ShieldCloseIcon:tH,ShieldEllipsis:sIe,ShieldEllipsisIcon:sIe,ShieldHalf:aIe,ShieldHalfIcon:aIe,ShieldIcon:fIe,ShieldMinus:lIe,ShieldMinusIcon:lIe,ShieldOff:cIe,ShieldOffIcon:cIe,ShieldPlus:uIe,ShieldPlusIcon:uIe,ShieldQuestion:dIe,ShieldQuestionIcon:dIe,ShieldUser:hIe,ShieldUserIcon:hIe,ShieldX:tH,ShieldXIcon:tH,Ship:gIe,ShipIcon:gIe,ShipWheel:pIe,ShipWheelIcon:pIe,Shirt:mIe,ShirtIcon:mIe,ShoppingBag:bIe,ShoppingBagIcon:bIe,ShoppingBasket:vIe,ShoppingBasketIcon:vIe,ShoppingCart:TIe,ShoppingCartIcon:TIe,Shovel:yIe,ShovelIcon:yIe,ShowerHead:MIe,ShowerHeadIcon:MIe,Shredder:wIe,ShredderIcon:wIe,Shrimp:_Ie,ShrimpIcon:_Ie,Shrink:AIe,ShrinkIcon:AIe,Shrub:OIe,ShrubIcon:OIe,Shuffle:xIe,ShuffleIcon:xIe,Sidebar:yk,SidebarClose:qF,SidebarCloseIcon:qF,SidebarIcon:yk,SidebarOpen:HF,SidebarOpenIcon:HF,Sigma:SIe,SigmaIcon:SIe,SigmaSquare:GH,SigmaSquareIcon:GH,Signal:LIe,SignalHigh:CIe,SignalHighIcon:CIe,SignalIcon:LIe,SignalLow:QIe,SignalLowIcon:QIe,SignalMedium:zIe,SignalMediumIcon:zIe,SignalZero:EIe,SignalZeroIcon:EIe,Signature:kIe,SignatureIcon:kIe,Signpost:NIe,SignpostBig:RIe,SignpostBigIcon:RIe,SignpostIcon:NIe,Siren:DIe,SirenIcon:DIe,SkipBack:PIe,SkipBackIcon:PIe,SkipForward:IIe,SkipForwardIcon:IIe,Skull:jIe,SkullIcon:jIe,Slack:qIe,SlackIcon:qIe,Slash:FIe,SlashIcon:FIe,SlashSquare:XH,SlashSquareIcon:XH,Slice:HIe,SliceIcon:HIe,Sliders:nH,SlidersHorizontal:BIe,SlidersHorizontalIcon:BIe,SlidersIcon:nH,SlidersVertical:nH,SlidersVerticalIcon:nH,Smartphone:VIe,SmartphoneCharging:WIe,SmartphoneChargingIcon:WIe,SmartphoneIcon:VIe,SmartphoneNfc:$Ie,SmartphoneNfcIcon:$Ie,Smile:GIe,SmileIcon:GIe,SmilePlus:UIe,SmilePlusIcon:UIe,Snail:XIe,SnailIcon:XIe,Snowflake:KIe,SnowflakeIcon:KIe,Sofa:YIe,SofaIcon:YIe,SortAsc:Xj,SortAscIcon:Xj,SortDesc:Uj,SortDescIcon:Uj,Soup:ZIe,SoupIcon:ZIe,Space:JIe,SpaceIcon:JIe,Spade:eje,SpadeIcon:eje,Sparkle:tje,SparkleIcon:tje,Sparkles:rH,SparklesIcon:rH,Speaker:nje,SpeakerIcon:nje,Speech:rje,SpeechIcon:rje,SpellCheck:sje,SpellCheck2:ije,SpellCheck2Icon:ije,SpellCheckIcon:sje,Spline:aje,SplineIcon:aje,SplinePointer:oje,SplinePointerIcon:oje,Split:lje,SplitIcon:lje,SplitSquareHorizontal:KH,SplitSquareHorizontalIcon:KH,SplitSquareVertical:YH,SplitSquareVerticalIcon:YH,SprayCan:cje,SprayCanIcon:cje,Sprout:uje,SproutIcon:uje,Square:bje,SquareActivity:iH,SquareActivityIcon:iH,SquareArrowDown:aH,SquareArrowDownIcon:aH,SquareArrowDownLeft:oH,SquareArrowDownLeftIcon:oH,SquareArrowDownRight:sH,SquareArrowDownRightIcon:sH,SquareArrowLeft:lH,SquareArrowLeftIcon:lH,SquareArrowOutDownLeft:cH,SquareArrowOutDownLeftIcon:cH,SquareArrowOutDownRight:uH,SquareArrowOutDownRightIcon:uH,SquareArrowOutUpLeft:dH,SquareArrowOutUpLeftIcon:dH,SquareArrowOutUpRight:pH,SquareArrowOutUpRightIcon:pH,SquareArrowRight:hH,SquareArrowRightIcon:hH,SquareArrowUp:mH,SquareArrowUpIcon:mH,SquareArrowUpLeft:fH,SquareArrowUpLeftIcon:fH,SquareArrowUpRight:gH,SquareArrowUpRightIcon:gH,SquareAsterisk:bH,SquareAsteriskIcon:bH,SquareBottomDashedScissors:vH,SquareBottomDashedScissorsIcon:vH,SquareChartGantt:JO,SquareChartGanttIcon:JO,SquareCheck:TH,SquareCheckBig:yH,SquareCheckBigIcon:yH,SquareCheckIcon:TH,SquareChevronDown:MH,SquareChevronDownIcon:MH,SquareChevronLeft:wH,SquareChevronLeftIcon:wH,SquareChevronRight:_H,SquareChevronRightIcon:_H,SquareChevronUp:OH,SquareChevronUpIcon:OH,SquareCode:AH,SquareCodeIcon:AH,SquareDashed:CH,SquareDashedBottom:hje,SquareDashedBottomCode:dje,SquareDashedBottomCodeIcon:dje,SquareDashedBottomIcon:hje,SquareDashedIcon:CH,SquareDashedKanban:xH,SquareDashedKanbanIcon:xH,SquareDashedMousePointer:SH,SquareDashedMousePointerIcon:SH,SquareDivide:QH,SquareDivideIcon:QH,SquareDot:zH,SquareDotIcon:zH,SquareEqual:EH,SquareEqualIcon:EH,SquareFunction:LH,SquareFunctionIcon:LH,SquareGanttChart:JO,SquareGanttChartIcon:JO,SquareIcon:bje,SquareKanban:kH,SquareKanbanIcon:kH,SquareLibrary:RH,SquareLibraryIcon:RH,SquareM:NH,SquareMIcon:NH,SquareMenu:DH,SquareMenuIcon:DH,SquareMinus:PH,SquareMinusIcon:PH,SquareMousePointer:IH,SquareMousePointerIcon:IH,SquareParking:qH,SquareParkingIcon:qH,SquareParkingOff:jH,SquareParkingOffIcon:jH,SquarePen:rv,SquarePenIcon:rv,SquarePercent:FH,SquarePercentIcon:FH,SquarePi:HH,SquarePiIcon:HH,SquarePilcrow:BH,SquarePilcrowIcon:BH,SquarePlay:WH,SquarePlayIcon:WH,SquarePlus:$H,SquarePlusIcon:$H,SquarePower:VH,SquarePowerIcon:VH,SquareRadical:fje,SquareRadicalIcon:fje,SquareRoundCorner:pje,SquareRoundCornerIcon:pje,SquareScissors:UH,SquareScissorsIcon:UH,SquareSigma:GH,SquareSigmaIcon:GH,SquareSlash:XH,SquareSlashIcon:XH,SquareSplitHorizontal:KH,SquareSplitHorizontalIcon:KH,SquareSplitVertical:YH,SquareSplitVerticalIcon:YH,SquareSquare:gje,SquareSquareIcon:gje,SquareStack:mje,SquareStackIcon:mje,SquareTerminal:ZH,SquareTerminalIcon:ZH,SquareUser:eB,SquareUserIcon:eB,SquareUserRound:JH,SquareUserRoundIcon:JH,SquareX:tB,SquareXIcon:tB,SquaresExclude:vje,SquaresExcludeIcon:vje,SquaresIntersect:yje,SquaresIntersectIcon:yje,SquaresSubtract:Tje,SquaresSubtractIcon:Tje,SquaresUnite:Mje,SquaresUniteIcon:Mje,Squircle:wje,SquircleIcon:wje,Squirrel:_je,SquirrelIcon:_je,Stamp:Oje,StampIcon:Oje,Star:Sje,StarHalf:Aje,StarHalfIcon:Aje,StarIcon:Sje,StarOff:xje,StarOffIcon:xje,Stars:rH,StarsIcon:rH,StepBack:Cje,StepBackIcon:Cje,StepForward:Qje,StepForwardIcon:Qje,Stethoscope:zje,StethoscopeIcon:zje,Sticker:Eje,StickerIcon:Eje,StickyNote:Lje,StickyNoteIcon:Lje,StopCircle:Wq,StopCircleIcon:Wq,Store:kje,StoreIcon:kje,StretchHorizontal:Rje,StretchHorizontalIcon:Rje,StretchVertical:Nje,StretchVerticalIcon:Nje,Strikethrough:Dje,StrikethroughIcon:Dje,Subscript:Pje,SubscriptIcon:Pje,Subtitles:rq,SubtitlesIcon:rq,Sun:Hje,SunDim:Ije,SunDimIcon:Ije,SunIcon:Hje,SunMedium:jje,SunMediumIcon:jje,SunMoon:qje,SunMoonIcon:qje,SunSnow:Fje,SunSnowIcon:Fje,Sunrise:Bje,SunriseIcon:Bje,Sunset:Wje,SunsetIcon:Wje,Superscript:$je,SuperscriptIcon:$je,SwatchBook:Vje,SwatchBookIcon:Vje,SwissFranc:Uje,SwissFrancIcon:Uje,SwitchCamera:Gje,SwitchCameraIcon:Gje,Sword:Xje,SwordIcon:Xje,Swords:Kje,SwordsIcon:Kje,Syringe:Yje,SyringeIcon:Yje,Table:oqe,Table2:Zje,Table2Icon:Zje,TableCellsMerge:Jje,TableCellsMergeIcon:Jje,TableCellsSplit:eqe,TableCellsSplitIcon:eqe,TableColumnsSplit:tqe,TableColumnsSplitIcon:tqe,TableConfig:YO,TableConfigIcon:YO,TableIcon:oqe,TableOfContents:nqe,TableOfContentsIcon:nqe,TableProperties:rqe,TablePropertiesIcon:rqe,TableRowsSplit:iqe,TableRowsSplitIcon:iqe,Tablet:lqe,TabletIcon:lqe,TabletSmartphone:sqe,TabletSmartphoneIcon:sqe,Tablets:aqe,TabletsIcon:aqe,Tag:cqe,TagIcon:cqe,Tags:uqe,TagsIcon:uqe,Tally1:dqe,Tally1Icon:dqe,Tally2:hqe,Tally2Icon:hqe,Tally3:fqe,Tally3Icon:fqe,Tally4:pqe,Tally4Icon:pqe,Tally5:gqe,Tally5Icon:gqe,Tangent:mqe,TangentIcon:mqe,Target:bqe,TargetIcon:bqe,Telescope:vqe,TelescopeIcon:vqe,Tent:Tqe,TentIcon:Tqe,TentTree:yqe,TentTreeIcon:yqe,Terminal:Mqe,TerminalIcon:Mqe,TerminalSquare:ZH,TerminalSquareIcon:ZH,TestTube:wqe,TestTube2:nB,TestTube2Icon:nB,TestTubeDiagonal:nB,TestTubeDiagonalIcon:nB,TestTubeIcon:wqe,TestTubes:_qe,TestTubesIcon:_qe,Text:Cqe,TextCursor:Aqe,TextCursorIcon:Aqe,TextCursorInput:Oqe,TextCursorInputIcon:Oqe,TextIcon:Cqe,TextQuote:xqe,TextQuoteIcon:xqe,TextSearch:Sqe,TextSearchIcon:Sqe,TextSelect:rB,TextSelectIcon:rB,TextSelection:rB,TextSelectionIcon:rB,Theater:Qqe,TheaterIcon:Qqe,Thermometer:Lqe,ThermometerIcon:Lqe,ThermometerSnowflake:zqe,ThermometerSnowflakeIcon:zqe,ThermometerSun:Eqe,ThermometerSunIcon:Eqe,ThumbsDown:kqe,ThumbsDownIcon:kqe,ThumbsUp:Rqe,ThumbsUpIcon:Rqe,Ticket:Fqe,TicketCheck:Nqe,TicketCheckIcon:Nqe,TicketIcon:Fqe,TicketMinus:Dqe,TicketMinusIcon:Dqe,TicketPercent:Pqe,TicketPercentIcon:Pqe,TicketPlus:Iqe,TicketPlusIcon:Iqe,TicketSlash:jqe,TicketSlashIcon:jqe,TicketX:qqe,TicketXIcon:qqe,Tickets:Bqe,TicketsIcon:Bqe,TicketsPlane:Hqe,TicketsPlaneIcon:Hqe,Timer:Vqe,TimerIcon:Vqe,TimerOff:Wqe,TimerOffIcon:Wqe,TimerReset:$qe,TimerResetIcon:$qe,ToggleLeft:Uqe,ToggleLeftIcon:Uqe,ToggleRight:Gqe,ToggleRightIcon:Gqe,Toilet:Xqe,ToiletIcon:Xqe,Tornado:Kqe,TornadoIcon:Kqe,Torus:Yqe,TorusIcon:Yqe,Touchpad:Jqe,TouchpadIcon:Jqe,TouchpadOff:Zqe,TouchpadOffIcon:Zqe,TowerControl:eFe,TowerControlIcon:eFe,ToyBrick:tFe,ToyBrickIcon:tFe,Tractor:nFe,TractorIcon:nFe,TrafficCone:rFe,TrafficConeIcon:rFe,Train:iB,TrainFront:oFe,TrainFrontIcon:oFe,TrainFrontTunnel:iFe,TrainFrontTunnelIcon:iFe,TrainIcon:iB,TrainTrack:aFe,TrainTrackIcon:aFe,TramFront:iB,TramFrontIcon:iB,Transgender:sFe,TransgenderIcon:sFe,Trash:lFe,Trash2:Ule,Trash2Icon:Ule,TrashIcon:lFe,TreeDeciduous:cFe,TreeDeciduousIcon:cFe,TreePalm:oB,TreePalmIcon:oB,TreePine:uFe,TreePineIcon:uFe,Trees:dFe,TreesIcon:dFe,Trello:hFe,TrelloIcon:hFe,TrendingDown:fFe,TrendingDownIcon:fFe,TrendingUp:gFe,TrendingUpDown:pFe,TrendingUpDownIcon:pFe,TrendingUpIcon:gFe,Triangle:vFe,TriangleAlert:sB,TriangleAlertIcon:sB,TriangleDashed:mFe,TriangleDashedIcon:mFe,TriangleIcon:vFe,TriangleRight:bFe,TriangleRightIcon:bFe,Trophy:yFe,TrophyIcon:yFe,Truck:MFe,TruckElectric:TFe,TruckElectricIcon:TFe,TruckIcon:MFe,Turtle:wFe,TurtleIcon:wFe,Tv:OFe,Tv2:aB,Tv2Icon:aB,TvIcon:OFe,TvMinimal:aB,TvMinimalIcon:aB,TvMinimalPlay:_Fe,TvMinimalPlayIcon:_Fe,Twitch:AFe,TwitchIcon:AFe,Twitter:xFe,TwitterIcon:xFe,Type:SFe,TypeIcon:SFe,TypeOutline:CFe,TypeOutlineIcon:CFe,Umbrella:zFe,UmbrellaIcon:zFe,UmbrellaOff:QFe,UmbrellaOffIcon:QFe,Underline:EFe,UnderlineIcon:EFe,Undo:kFe,Undo2:LFe,Undo2Icon:LFe,UndoDot:RFe,UndoDotIcon:RFe,UndoIcon:kFe,UnfoldHorizontal:NFe,UnfoldHorizontalIcon:NFe,UnfoldVertical:DFe,UnfoldVerticalIcon:DFe,Ungroup:PFe,UngroupIcon:PFe,University:lB,UniversityIcon:lB,Unlink:jFe,Unlink2:IFe,Unlink2Icon:IFe,UnlinkIcon:jFe,Unlock:LF,UnlockIcon:LF,UnlockKeyhole:EF,UnlockKeyholeIcon:EF,Unplug:qFe,UnplugIcon:qFe,Upload:FFe,UploadCloud:Kq,UploadCloudIcon:Kq,UploadIcon:FFe,Usb:HFe,UsbIcon:HFe,User:JFe,User2:pB,User2Icon:pB,UserCheck:BFe,UserCheck2:cB,UserCheck2Icon:cB,UserCheckIcon:BFe,UserCircle:Vq,UserCircle2:$q,UserCircle2Icon:$q,UserCircleIcon:Vq,UserCog:WFe,UserCog2:uB,UserCog2Icon:uB,UserCogIcon:WFe,UserIcon:JFe,UserLock:$Fe,UserLockIcon:$Fe,UserMinus:VFe,UserMinus2:dB,UserMinus2Icon:dB,UserMinusIcon:VFe,UserPen:UFe,UserPenIcon:UFe,UserPlus:GFe,UserPlus2:hB,UserPlus2Icon:hB,UserPlusIcon:GFe,UserRound:pB,UserRoundCheck:cB,UserRoundCheckIcon:cB,UserRoundCog:uB,UserRoundCogIcon:uB,UserRoundIcon:pB,UserRoundMinus:dB,UserRoundMinusIcon:dB,UserRoundPen:XFe,UserRoundPenIcon:XFe,UserRoundPlus:hB,UserRoundPlusIcon:hB,UserRoundSearch:KFe,UserRoundSearchIcon:KFe,UserRoundX:fB,UserRoundXIcon:fB,UserSearch:YFe,UserSearchIcon:YFe,UserSquare:eB,UserSquare2:JH,UserSquare2Icon:JH,UserSquareIcon:eB,UserX:ZFe,UserX2:fB,UserX2Icon:fB,UserXIcon:ZFe,Users:eHe,Users2:gB,Users2Icon:gB,UsersIcon:eHe,UsersRound:gB,UsersRoundIcon:gB,Utensils:bB,UtensilsCrossed:mB,UtensilsCrossedIcon:mB,UtensilsIcon:bB,UtilityPole:tHe,UtilityPoleIcon:tHe,Variable:nHe,VariableIcon:nHe,Vault:rHe,VaultIcon:rHe,Vegan:iHe,VeganIcon:iHe,VenetianMask:oHe,VenetianMaskIcon:oHe,Venus:aHe,VenusAndMars:sHe,VenusAndMarsIcon:sHe,VenusIcon:aHe,Verified:Zj,VerifiedIcon:Zj,Vibrate:cHe,VibrateIcon:cHe,VibrateOff:lHe,VibrateOffIcon:lHe,Video:dHe,VideoIcon:dHe,VideoOff:uHe,VideoOffIcon:uHe,Videotape:hHe,VideotapeIcon:hHe,View:fHe,ViewIcon:fHe,Voicemail:pHe,VoicemailIcon:pHe,Volleyball:gHe,VolleyballIcon:gHe,Volume:THe,Volume1:mHe,Volume1Icon:mHe,Volume2:bHe,Volume2Icon:bHe,VolumeIcon:THe,VolumeOff:vHe,VolumeOffIcon:vHe,VolumeX:yHe,VolumeXIcon:yHe,Vote:MHe,VoteIcon:MHe,Wallet:_He,Wallet2:vB,Wallet2Icon:vB,WalletCards:wHe,WalletCardsIcon:wHe,WalletIcon:_He,WalletMinimal:vB,WalletMinimalIcon:vB,Wallpaper:OHe,WallpaperIcon:OHe,Wand:AHe,Wand2:yB,Wand2Icon:yB,WandIcon:AHe,WandSparkles:yB,WandSparklesIcon:yB,Warehouse:xHe,WarehouseIcon:xHe,WashingMachine:SHe,WashingMachineIcon:SHe,Watch:CHe,WatchIcon:CHe,Waves:zHe,WavesIcon:zHe,WavesLadder:QHe,WavesLadderIcon:QHe,Waypoints:EHe,WaypointsIcon:EHe,Webcam:LHe,WebcamIcon:LHe,Webhook:NHe,WebhookIcon:NHe,WebhookOff:kHe,WebhookOffIcon:kHe,Weight:RHe,WeightIcon:RHe,Wheat:PHe,WheatIcon:PHe,WheatOff:DHe,WheatOffIcon:DHe,WholeWord:IHe,WholeWordIcon:IHe,Wifi:WHe,WifiHigh:jHe,WifiHighIcon:jHe,WifiIcon:WHe,WifiLow:qHe,WifiLowIcon:qHe,WifiOff:FHe,WifiOffIcon:FHe,WifiPen:HHe,WifiPenIcon:HHe,WifiZero:BHe,WifiZeroIcon:BHe,Wind:VHe,WindArrowDown:$He,WindArrowDownIcon:$He,WindIcon:VHe,Wine:UHe,WineIcon:UHe,WineOff:GHe,WineOffIcon:GHe,Workflow:XHe,WorkflowIcon:XHe,Worm:KHe,WormIcon:KHe,WrapText:YHe,WrapTextIcon:YHe,Wrench:ZHe,WrenchIcon:ZHe,X:Gle,XCircle:vk,XCircleIcon:vk,XIcon:Gle,XOctagon:PF,XOctagonIcon:PF,XSquare:tB,XSquareIcon:tB,Youtube:JHe,YoutubeIcon:JHe,Zap:tBe,ZapIcon:tBe,ZapOff:eBe,ZapOffIcon:eBe,ZoomIn:nBe,ZoomInIcon:nBe,ZoomOut:rBe,ZoomOutIcon:rBe,createLucideIcon:oe,icons:IDo},Symbol.toStringTag,{value:"Module"})),qDo=$.forwardRef((e,t)=>Q.jsxs(Q.Fragment,{children:[Q.jsx("svg",{width:"0",height:"0",style:{position:"absolute"},children:Q.jsx("defs",{children:Q.jsxs("linearGradient",{id:"grad1",x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:[Q.jsx("stop",{className:"gradient-start",offset:"0%"}),Q.jsx("stop",{className:"gradient-end",offset:"100%"})]})})}),Q.jsx($le,{stroke:"url(#grad1)",ref:t,...e})]})),qti=$.forwardRef((e,t)=>Q.jsx(Q.Fragment,{children:Q.jsx(mt,{name:"Save",stroke:"url(#x-gradient)",ref:t,...e})})),Qrn=e=>Q.jsxs(Q.Fragment,{children:[Q.jsx("svg",{width:"0",height:"0",style:{position:"absolute"},children:Q.jsx("defs",{children:Q.jsxs("linearGradient",{id:"grad3",x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:[Q.jsx("stop",{className:"gradient-start",offset:"0%"}),Q.jsx("stop",{className:"gradient-end",offset:"100%"})]})})}),Q.jsx(mt,{name:"Combine",stroke:`${e.disabled?"#64748B":"url(#grad3)"}`,...e})]}),FDo=$.forwardRef((e,t)=>Q.jsxs(Q.Fragment,{children:[Q.jsx("svg",{width:"0",height:"0",style:{position:"absolute"},children:Q.jsx("defs",{children:Q.jsxs("linearGradient",{id:"grad4",x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:[Q.jsx("stop",{className:"gradient-start",offset:"0%"}),Q.jsx("stop",{className:"gradient-end",offset:"100%"})]})})}),Q.jsx(mt,{name:"Ungroup",stroke:"url(#grad4)",ref:t,...e})]})),pl1=Object.freeze(Object.defineProperty({__proto__:null,GradientGroup:Qrn,GradientInfinity:qDo,GradientSave:qti,GradientUngroup:FDo},Symbol.toStringTag,{value:"Module"})),kpt=new Map,Jar=["bg-gradient-to-br from-gray-800 via-rose-700 to-violet-900","bg-gradient-to-br from-green-200 via-green-300 to-blue-500","bg-gradient-to-br from-yellow-200 via-yellow-400 to-yellow-700","bg-gradient-to-br from-green-200 via-green-400 to-purple-700","bg-gradient-to-br from-blue-100 via-blue-300 to-blue-500","bg-gradient-to-br from-purple-400 to-yellow-400","bg-gradient-to-br from-red-800 via-yellow-600 to-yellow-500","bg-gradient-to-br from-blue-300 via-green-200 to-yellow-300","bg-gradient-to-br from-blue-700 via-blue-800 to-gray-900","bg-gradient-to-br from-green-300 to-purple-400","bg-gradient-to-br from-yellow-200 via-pink-200 to-pink-400","bg-gradient-to-br from-green-500 to-green-700","bg-gradient-to-br from-rose-400 via-fuchsia-500 to-indigo-500","bg-gradient-to-br from-sky-400 to-blue-500","bg-gradient-to-br from-green-200 via-green-400 to-green-500","bg-gradient-to-br from-red-400 via-gray-300 to-blue-500","bg-gradient-to-br from-gray-900 to-gray-600 bg-gradient-to-r","bg-gradient-to-br from-rose-500 via-red-400 to-red-500","bg-gradient-to-br from-fuchsia-600 to-pink-600","bg-gradient-to-br from-emerald-500 to-lime-600","bg-gradient-to-br from-rose-500 to-indigo-700","bg-gradient-to-br bg-gradient-to-tr from-violet-500 to-orange-300","bg-gradient-to-br from-gray-900 via-purple-900 to-violet-600","bg-gradient-to-br from-yellow-200 via-red-500 to-fuchsia-500","bg-gradient-to-br from-sky-400 to-indigo-900","bg-gradient-to-br from-amber-200 via-violet-600 to-sky-900","bg-gradient-to-br from-amber-700 via-orange-300 to-rose-800","bg-gradient-to-br from-gray-300 via-fuchsia-600 to-orange-600","bg-gradient-to-br from-fuchsia-500 via-red-600 to-orange-400","bg-gradient-to-br from-sky-400 via-rose-400 to-lime-400","bg-gradient-to-br from-lime-600 via-yellow-300 to-red-600"],b$=["bg-neon-fuschia text-white","bg-digital-orchid text-plasma-purple","bg-plasma-purple text-digital-orchid","bg-electric-blue text-holo-frost","bg-holo-frost text-electric-blue","bg-terminal-green text-cosmic-void"],p7={inputs:"#10B981",outputs:"#AA2411",data:"#198BF6",prompts:"#4367BF",models:"#ab11ab",model_specs:"#6344BE",chains:"#FE7500",list:"#9AAE42",agents:"#903BBE",Olivya:"#00413B",tools:"#00fbfc",memories:"#F5B85A",saved_components:"#a5B85A",advanced:"#000000",chat:"#198BF6",thought:"#272541",embeddings:"#42BAA7",documentloaders:"#7AAE42",vectorstores:"#AA8742",vectorsearch:"#AA8742",textsplitters:"#B47CB5",toolkits:"#DB2C2C",wrappers:"#E6277A",notion:"#000000",Notion:"#000000",AssemblyAI:"#213ED7",assemblyai:"#213ED7",helpers:"#31A3CC",prototypes:"#E6277A",astra_assistants:"#272541",langchain_utilities:"#31A3CC",output_parsers:"#E6A627",retrievers:"#e6b25a",str:"#4F46E5",Text:"#4F46E5",unknown:"#9CA3AF",Document:"#65a30d",Data:"#dc2626",Message:"#4f46e5",number:"#7E22CF",Prompt:"#7c3aed",Embeddings:"#10b981",BaseLanguageModel:"#c026d3",LanguageModel:"#c026d3",Agent:"#903BBE",AgentExecutor:"#903BBE",Tool:"#00fbfc"},dg={inputs:"emerald",outputs:"red",data:"sky",prompts:"blue",models:"fuchsia",model_specs:"violet",chains:"orange",list:"lime",agents:"purple",tools:"cyan",memories:"amber",saved_components:"lime",advanced:"slate",chat:"sky",thought:"zinc",embeddings:"teal",documentloaders:"lime",vectorstores:"yellow",vectorsearch:"yellow",textsplitters:"fuchsia",toolkits:"red",wrappers:"rose",notion:"slate",Notion:"slate",AssemblyAI:"blue",assemblyai:"blue",helpers:"cyan",prototypes:"rose",astra_assistants:"indigo",langchain_utilities:"sky",output_parsers:"yellow",retrievers:"yellow",str:"indigo",number:"purple",Text:"indigo",unknown:"gray",Document:"lime",Data:"red",Message:"indigo",Prompt:"violet",Embeddings:"emerald",BaseLanguageModel:"fuchsia",LanguageModel:"fuchsia",Agent:"purple",AgentExecutor:"purple",Tool:"cyan",BaseChatMemory:"cyan",BaseChatMessageHistory:"orange",Memory:"orange",DataFrame:"pink"},y5t={json:{icon:"FileJson",color:"text-datatype-indigo dark:text-datatype-indigo-foreground"},csv:{icon:"FileChartColumn",color:"text-datatype-emerald dark:text-datatype-emerald-foreground"},txt:{icon:"FileType",color:"text-datatype-purple dark:text-datatype-purple-foreground"},pdf:{icon:"File",color:"text-datatype-red dark:text-datatype-red-foreground"}},HDo=[{display_name:"Saved",name:"saved_components",icon:"GradientSave"},{display_name:"Input / Output",name:"input_output",icon:"Cable"},{display_name:"Agents",name:"agents",icon:"Bot"},{display_name:"Models",name:"models",icon:"BrainCog"},{display_name:"Data",name:"data",icon:"Database"},{display_name:"Knowledge Bases",name:"knowledge_bases",icon:"Library"},{display_name:"Vector Stores",name:"vectorstores",icon:"Layers"},{display_name:"Processing",name:"processing",icon:"ListFilter"},{display_name:"Logic",name:"logic",icon:"ArrowRightLeft"},{display_name:"Helpers",name:"helpers",icon:"Wand2"},{display_name:"Inputs",name:"inputs",icon:"Download"},{display_name:"Outputs",name:"outputs",icon:"Upload"},{display_name:"Prompts",name:"prompts",icon:"braces"},{display_name:"Chains",name:"chains",icon:"Link"},{display_name:"Loaders",name:"documentloaders",icon:"Paperclip"},{display_name:"Link Extractors",name:"link_extractors",icon:"Link2"},{display_name:"Output Parsers",name:"output_parsers",icon:"Compass"},{display_name:"Prototypes",name:"prototypes",icon:"FlaskConical"},{display_name:"Retrievers",name:"retrievers",icon:"FileSearch"},{display_name:"Text Splitters",name:"textsplitters",icon:"Scissors"},{display_name:"Toolkits",name:"toolkits",icon:"Package2"},{display_name:"Tools",name:"tools",icon:"Hammer"}],Fti=[{display_name:"AI/ML API",name:"aiml",icon:"AIML"},{display_name:"AgentQL",name:"agentql",icon:"AgentQL"},{display_name:"Language Models",name:"languagemodels",icon:"BrainCircuit"},{display_name:"Embeddings",name:"embeddings",icon:"Binary"},{display_name:"Memories",name:"memories",icon:"Cpu"},{display_name:"Amazon",name:"amazon",icon:"Amazon"},{display_name:"Anthropic",name:"anthropic",icon:"Anthropic"},{display_name:"Apify",name:"apify",icon:"Apify"},{display_name:"arXiv",name:"arxiv",icon:"arXiv"},{display_name:"AssemblyAI",name:"assemblyai",icon:"AssemblyAI"},{display_name:"Azure",name:"azure",icon:"Azure"},{display_name:"Baidu",name:"baidu",icon:"BaiduQianfan"},{display_name:"Bing",name:"bing",icon:"Bing"},{display_name:"Cassandra",name:"cassandra",icon:"Cassandra"},{display_name:"Chroma",name:"chroma",icon:"Chroma"},{display_name:"ClickHouse",name:"clickhouse",icon:"Clickhouse"},{display_name:"Cleanlab",name:"cleanlab",icon:"Cleanlab"},{display_name:"Cloudflare",name:"cloudflare",icon:"Cloudflare"},{display_name:"Cohere",name:"cohere",icon:"Cohere"},{display_name:"Composio",name:"composio",icon:"Composio"},{display_name:"Confluence",name:"confluence",icon:"Confluence"},{display_name:"Couchbase",name:"couchbase",icon:"Couchbase"},{display_name:"CrewAI",name:"crewai",icon:"CrewAI"},{display_name:"DataStax",name:"datastax",icon:"AstraDB"},{display_name:"DeepSeek",name:"deepseek",icon:"DeepSeek"},{display_name:"Docling",name:"docling",icon:"Docling"},{display_name:"DuckDuckGo",name:"duckduckgo",icon:"DuckDuckGo"},{display_name:"Elastic",name:"elastic",icon:"ElasticsearchStore"},{display_name:"Exa",name:"exa",icon:"Exa"},{display_name:"FAISS",name:"FAISS",icon:"FAISS"},{display_name:"Firecrawl",name:"firecrawl",icon:"FirecrawlCrawlApi"},{display_name:"Git",name:"git",icon:"GitLoader"},{display_name:"Glean",name:"glean",icon:"Glean"},{display_name:"Gmail",name:"gmail",icon:"Gmail"},{display_name:"Google",name:"google",icon:"Google"},{display_name:"Groq",name:"groq",icon:"Groq"},{display_name:"Home Assistant",name:"homeassistant",icon:"HomeAssistant"},{display_name:"Hugging Face",name:"huggingface",icon:"HuggingFace"},{display_name:"IBM",name:"ibm",icon:"WatsonxAI"},{display_name:"Icosa Computing",name:"icosacomputing",icon:"Icosa"},{display_name:"JigsawStack",name:"jigsawstack",icon:"JigsawStack"},{display_name:"LangChain",name:"langchain_utilities",icon:"LangChain"},{display_name:"LangWatch",name:"langwatch",icon:"Langwatch"},{display_name:"LMStudio",name:"lmstudio",icon:"LMStudio"},{display_name:"MariTalk",name:"maritalk",icon:"Maritalk"},{display_name:"Mem0",name:"mem0",icon:"Mem0"},{display_name:"Memories",name:"memories",icon:"Cpu"},{display_name:"Milvus",name:"milvus",icon:"Milvus"},{display_name:"MistralAI",name:"mistral",icon:"MistralAI"},{display_name:"MongoDB",name:"mongodb",icon:"MongoDB"},{display_name:"Needle",name:"needle",icon:"Needle"},{display_name:"Not Diamond",name:"notdiamond",icon:"NotDiamond"},{display_name:"Notion",name:"Notion",icon:"Notion"},{display_name:"Novita",name:"novita",icon:"Novita"},{display_name:"NVIDIA",name:"nvidia",icon:"NVIDIA"},{display_name:"Olivya",name:"olivya",icon:"Olivya"},{display_name:"Ollama",name:"ollama",icon:"Ollama"},{display_name:"OpenAI",name:"openai",icon:"OpenAI"},{display_name:"OpenRouter",name:"openrouter",icon:"OpenRouter"},{display_name:"Perplexity",name:"perplexity",icon:"Perplexity"},{display_name:"pgvector",name:"pgvector",icon:"cpu"},{display_name:"Pinecone",name:"pinecone",icon:"Pinecone"},{display_name:"Qdrant",name:"qdrant",icon:"Qdrant"},{display_name:"Redis",name:"redis",icon:"Redis"},{display_name:"SambaNova",name:"sambanova",icon:"SambaNova"},{display_name:"ScrapeGraph AI",name:"scrapegraph",icon:"ScrapeGraph"},{display_name:"SearchApi",name:"searchapi",icon:"SearchAPI"},{display_name:"SerpApi",name:"serpapi",icon:"SerpSearch"},{display_name:"Serper",name:"serper",icon:"Serper"},{display_name:"Supabase",name:"supabase",icon:"Supabase"},{display_name:"Tavily",name:"tavily",icon:"TavilyIcon"},{display_name:"TwelveLabs",name:"twelvelabs",icon:"TwelveLabs"},{display_name:"Unstructured",name:"unstructured",icon:"Unstructured"},{display_name:"Upstash",name:"upstash",icon:"Upstash"},{display_name:"Vectara",name:"vectara",icon:"Vectara"},{display_name:"Vector Stores",name:"vectorstores",icon:"Layers"},{display_name:"Weaviate",name:"weaviate",icon:"Weaviate"},{display_name:"Vertex AI",name:"vertexai",icon:"VertexAI"},{display_name:"Wikipedia",name:"wikipedia",icon:"Wikipedia"},{display_name:"WolframAlpha",name:"wolframalpha",icon:"WolframAlphaAPI"},{display_name:"xAI",name:"xai",icon:"xAI"},{display_name:"Yahoo! Finance",name:"yahoosearch",icon:"trending-up"},{display_name:"YouTube",name:"youtube",icon:"YouTube"},{display_name:"Zep",name:"zep",icon:"ZepMemory"}],BDo={saved_components:"GradientSave",input_output:"Cable",inputs:"Download",outputs:"Upload",prompts:"Braces",data:"Database",models:"BrainCircuit",helpers:"Wand2",vectorstores:"Layers",embeddings:"Binary",agents:"Bot",astra_assistants:"Sparkles",chains:"Link",documentloaders:"Paperclip",langchain_utilities:"PocketKnife",link_extractors:"Link2",memories:"Cpu",output_parsers:"Compass",prototypes:"FlaskConical",retrievers:"FileSearch",textsplitters:"Scissors",toolkits:"Package2",tools:"Hammer",custom:"Edit",custom_components:"GradientInfinity"},Hti={input_output:"Cable",inputs:"Download",outputs:"Upload",prompts:"Braces",data:"Database",models:"BrainCog",helpers:"Wand2",vectorstores:"Layers",embeddings:"Binary",agents:"Bot",astra_assistants:"Sparkles",chains:"Link",documentloaders:"Paperclip",langchain_utilities:"PocketKnife",link_extractors:"Link2",memories:"Cpu",output_parsers:"Compass",prototypes:"FlaskConical",retrievers:"FileSearch",textsplitters:"Scissors",toolkits:"Package2",tools:"Hammer",custom_components:"GradientInfinity",ChatInput:"MessagesSquare",ChatOutput:"MessagesSquare",Outlook:"Outlook",Linear:"Linear",Reddit:"Reddit",Googlemaps:"Googlemaps",Todoist:"Todoist",Zoom:"Zoom",AIML:"AI/ML",AgentQL:"AgentQL",LanguageModels:"BrainCircuit",EmbeddingModels:"Binary",AirbyteJSONLoader:"Airbyte",AmazonBedrockEmbeddings:"AWS",Amazon:"AWS",arXiv:"ArXiv",assemblyai:"AssemblyAI",athenaIcon:"Athena",AzureChatOpenAi:"OpenAI",AzureOpenAiEmbeddings:"Azure",AzureOpenAiModel:"Azure",BaiduQianfan:"QianFanChat",BingSearchAPIWrapper:"Bing",BingSearchRun:"Bing",ChatAnthropic:"Anthropic",ChatOllama:"Ollama",ChatOllamaModel:"Ollama",ChatOpenAI:"OpenAI",ChatVertexAI:"VertexAI",ChevronsUpDownIcon:"ChevronsUpDown",ClearMessageHistory:"FileClock",CohereEmbeddings:"Cohere",Discord:"FaDiscord",ElasticsearchStore:"ElasticsearchStore",EverNoteLoader:"Evernote",ExaSearch:"Exa",FacebookChatLoader:"FacebookMessenger",FAISS:"Meta",FaissSearch:"Meta",FirecrawlCrawlApi:"Firecrawl",FirecrawlExtractApi:"Firecrawl",FirecrawlMapApi:"Firecrawl",FirecrawlScrapeApi:"Firecrawl",GitbookLoader:"GitBook",GoogleGenerativeAI:"GoogleGenerativeAI",Googlesheets:"Googlesheets",GoogleSearchAPI:"Google",GoogleSearchAPIWrapper:"Google",Googlemeet:"Googlemeet",GoogleTasks:"GoogleTasks",GoogleSearchResults:"Google",GoogleSearchRun:"Google",GoogleSerperAPI:"Google",group_components:"GradientUngroup",HNLoader:"HackerNews",HuggingFaceEmbeddings:"HuggingFace",HuggingFaceHub:"HuggingFace",IFixitLoader:"IFixIt",ListFlows:"Group",MistralAI:"Mistral",MongoDBAtlasVectorSearch:"MongoDB",MongoDBChatMessageHistory:"MongoDB",notion:"Notion",NotionDirectoryLoader:"Notion",NotDiamond:"NotDiamond",Notify:"Bell",novita:"Novita",OllamaEmbeddings:"Ollama",OpenAIEmbeddings:"OpenAI",PostgresChatMessageHistory:"Postgres",Qdrant:"QDrant",RedisSearch:"Redis",Share3:"Share",Share4:"Share2",SlackDirectoryLoader:"Slack",SpiderTool:"Spider",SupabaseVectorStore:"Supabase",TavilyIcon:"Tavily",VertexAIEmbeddings:"VertexAI",WikipediaAPIWrapper:"WikipediaAPI",WikipediaQueryRun:"WikipediaAPI",WolframAlphaAPI:"Wolfram",WolframAlphaAPIWrapper:"Wolfram",WolframAlphaQueryRun:"Wolfram",model_specs:"FileSliders",advanced:"Laptop2",chat:"MessageCircle",saved_components:"GradientSave",vectorsearch:"TextSearch",wrappers:"Gift",unknown:"HelpCircle",custom:"Edit",ThumbDownIconCustom:"ThumbDownCustom",ThumbUpIconCustom:"ThumbUpCustom",ScrapeGraphAI:"ScrapeGraph",ScrapeGraphSmartScraperApi:"ScrapeGraph",ScrapeGraphMarkdownifyApi:"ScrapeGraph",note:"StickyNote"},Bti=e=>{const t={AlertCircle:"circle-alert",AlertTriangle:"triangle-alert",TerminalSquare:"square-terminal",Wand2:"wand-sparkles"},n=e.replace(/Icon/g,"").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/(\d)/g,"-$1").replace(/\s+/g,"-").toLowerCase();return t[e]||n},Wti=ee(()=>import("./lazyIconImports-Ci-S9xBA.js"),[],import.meta.url).then(e=>e.lazyIconsMapping),zrn={GradientSave:qti,BotMessageSquareIcon:mxr,FaApple:gxr,FaDiscord:ude,FaGithub:dde,TwitterLogoIcon:V5o},WDo=e=>kpt.get(e),$Do=async e=>{const t=a=>(kpt.set(e,a),a);if(kpt.has(e))return kpt.get(e);const n=Hti[e];if(zrn[n||e])return t(zrn[n||e]);if(vxr(n||e))return t(bxr[n||e]);const i=await Wti;if(i[n||e])return t($.lazy(i[n||e]));const s=Bti(n||e);if(m5t[s])try{return t($.lazy(m5t[s]))}catch{}return t($.lazy(()=>Promise.resolve({default:()=>null})))},$ti=async e=>{const t=Hti[e]||e,n=await Wti;return!!(zrn[t]||vxr(t)||n[t]||m5t[Bti(t)])},mt=$.memo($.forwardRef(({name:e,className:t,iconColor:n,stroke:i,strokeWidth:s,id:a="",skipFallback:l=!1,dataTestId:u=""},d)=>{const{dark:f}=c2(),[p,g]=$.useState(!1),[m,v]=$.useState(!1),[y,T]=$.useState(WDo(e));$.useEffect(()=>{v(!1),T(null),g(!1);let C=!0,L=null;return e&&typeof e=="string"&&($Do(e).then(k=>{C&&(T(k),g(!1))}).catch(k=>{C&&(console.error(`Error loading icon ${e}:`,k),v(!0),g(!1))}),L=setTimeout(()=>{C&&g(!0)},30)),()=>{C=!1,L&&clearTimeout(L)}},[e]);const _={strokeWidth:s??1.5,...i&&{stroke:i},...n&&{color:n,stroke:i}},O=$.useCallback(()=>{v(!0)},[]);if(!y||m)return l?null:Q.jsx("div",{className:pt(t,"flex items-center justify-center"),"data-testid":u||(a?`${a}-placeholder`:"icon-placeholder")});const S=p?Q.jsx("div",{className:pt(t,"flex items-center justify-center"),children:Q.jsx(l6,{className:"h-4 w-4"})}):Q.jsx("div",{className:t});return Q.jsx($.Suspense,{fallback:l?void 0:S,children:Q.jsx(VDo,{onError:O,children:y!=null&&y.render||y!=null&&y._payload?Q.jsx(y,{className:t,style:_,ref:d,isDark:f,"data-testid":u||(a?`${a}-${e}`:`icon-${e}`)}):Q.jsx("div",{className:t,style:_,"data-testid":u||(a?`${a}-${e}`:`icon-${e}`),children:y})})})}));let VDo=class extends nr.Component{componentDidCatch(t){this.props.onError()}render(){return this.props.children}};const _bt=e=>Array.isArray(e),UDo=e=>e&&typeof e=="object"&&!_bt(e),GDo=e=>typeof e=="string";function M3(e){return(...t)=>{const n=t.map(a=>Z4(a)),i=n[0],s=n[1];return n.length===1?a=>e(i(a)):n.length===2?a=>e(i(a),s(a)):a=>e(...n.map(l=>l(a)))}}const hZ={pipe:(...e)=>{const t=e.map(n=>Z4(n));return n=>t.reduce((i,s)=>s(i),n)},object:e=>{const t=Object.keys(e).map(n=>[n,Z4(e[n])]);return n=>{const i={};for(const[s,a]of t)i[s]=a(n);return i}},array:(...e)=>{const t=e.map(n=>Z4(n));return n=>t.map(i=>i(n))},get:(...e)=>{if(e.length===0)return t=>t??null;if(e.length===1){const t=e[0];return n=>(n==null?void 0:n[t])??null}return t=>{let n=t;for(const i of e)n=n==null?void 0:n[i];return n??null}},map:e=>{const t=Z4(e);return n=>n.map(t)},mapObject:e=>{const t=Z4(e);return n=>{const i={};for(const s of Object.keys(n)){const a=t({key:s,value:n[s]});i[a.key]=a.value}return i}},mapKeys:e=>{const t=Z4(e);return n=>{const i={};for(const s of Object.keys(n)){const a=t(s);i[a]=n[s]}return i}},mapValues:e=>{const t=Z4(e);return n=>{const i={};for(const s of Object.keys(n))i[s]=t(n[s]);return i}},filter:e=>{const t=Z4(e);return n=>n.filter(i=>e1r(t(i)))},sort:(e=["get"],t)=>{const n=Z4(e),i=t==="desc"?-1:1;function s(a,l){const u=n(a),d=n(l);return u>d?i:u<d?-i:0}return a=>a.slice().sort(s)},reverse:()=>e=>e.toReversed(),pick:(...e)=>{const t=e.map(([i,...s])=>[s[s.length-1],hZ.get(...s)]),n=(i,s)=>{const a={};for(const[l,u]of s)a[l]=u(i);return a};return i=>_bt(i)?i.map(s=>n(s,t)):n(i,t)},groupBy:e=>{const t=Z4(e);return n=>{const i={};for(const s of n){const a=t(s);i[a]?i[a].push(s):i[a]=[s]}return i}},keyBy:e=>{const t=Z4(e);return n=>{const i={};for(const s of n){const a=t(s);a in i||(i[a]=s)}return i}},flatten:()=>e=>e.flat(),join:(e="")=>t=>t.join(e),split:M3((e,t)=>t!==void 0?e.split(t):e.trim().split(/\s+/)),substring:M3((e,t,n)=>e.slice(Math.max(t,0),n)),uniq:()=>e=>[...new Set(e)],uniqBy:e=>t=>Object.values(hZ.keyBy(e)(t)),limit:e=>t=>t.slice(0,Math.max(e,0)),size:()=>e=>e.length,keys:()=>Object.keys,values:()=>Object.values,prod:()=>e=>e.reduce((t,n)=>t*n),sum:()=>e=>e.reduce((t,n)=>t+n),average:()=>e=>hZ.sum()(e)/e.length,min:()=>e=>Math.min(...e),max:()=>e=>Math.max(...e),and:M3((e,t)=>!!(e&&t)),or:M3((e,t)=>!!(e||t)),not:M3(e=>!e),exists:e=>{const t=e.slice(1),n=t.pop(),i=hZ.get(...t);return s=>{const a=i(s);return!!a&&Object.hasOwnProperty.call(a,n)}},if:(e,t,n)=>{const i=Z4(e),s=Z4(t),a=Z4(n);return l=>e1r(i(l))?s(l):a(l)},in:(e,t)=>{const n=Z4(e),i=Z4(t);return s=>i(s).includes(n(s))},"not in":(e,t)=>{const n=hZ.in(e,t);return i=>!n(i)},regex:(e,t,n)=>{const i=new RegExp(t,n),s=Z4(e);return a=>i.test(s(a))},eq:M3((e,t)=>e===t),gt:M3((e,t)=>e>t),gte:M3((e,t)=>e>=t),lt:M3((e,t)=>e<t),lte:M3((e,t)=>e<=t),ne:M3((e,t)=>e!==t),add:M3((e,t)=>e+t),subtract:M3((e,t)=>e-t),multiply:M3((e,t)=>e*t),divide:M3((e,t)=>e/t),pow:M3((e,t)=>e**t),mod:M3((e,t)=>e%t),abs:M3(Math.abs),round:M3((e,t=0)=>+`${Math.round(+`${e}e${t}`)}e${-t}`),number:M3(e=>{const t=Number(e);return Number.isNaN(Number(e))?null:t}),string:M3(String)},e1r=e=>e!==null&&e!==0&&e!==!1,y2t=[];function Z4(e,t){y2t.unshift({...hZ,...y2t[0]});try{const n=_bt(e)?XDo(e,y2t[0]):UDo(e)?Vti(`Function notation ["object", {...}] expected but got ${JSON.stringify(e)}`):()=>e;return i=>{try{return n(i)}catch(s){throw s.jsonquery=[{data:i,query:e},...s.jsonquery??[]],s}}}finally{y2t.shift()}}function XDo(e,t){const[n,...i]=e,s=t[n];return s||Vti(`Unknown function '${n}'`),s(...i)}function Vti(e){throw new Error(e)}const Uti={and:"and",or:"or",eq:"==",gt:">",gte:">=",lt:"<",lte:"<=",ne:"!=",add:"+",subtract:"-",multiply:"*",divide:"/",pow:"^",mod:"%",in:"in","not in":"not in"},KDo=/^[a-zA-Z_$][a-zA-Z\d_$]*$/,YDo=/^[a-zA-Z_$][a-zA-Z\d_$]*/,ZDo=/^"(?:[^"\\]|\\.)*"/,JDo=/^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?/,ePo=/^(0|[1-9][0-9]*)/,tPo=/^(true|false|null)/,nPo=/^[ \n\t\r]+/;function Gti(e,t){const n={...Uti},i=Object.keys(n).sort((R,P)=>P.length-R.length),s=()=>{S();const R=a();if(S(),e[k]==="|"){const P=[R];for(;e[k]==="|";)k++,S(),P.push(a());return["pipe",...P]}return R},a=()=>{const R=l();S();for(const P of i){const D=n[P];if(e.substring(k,k+D.length)===D){k+=D.length,S();const q=l();return[P,R,q]}}return R},l=()=>{if(e[k]==="("){k++;const R=s();return C(")"),R}return u()},u=()=>{if(e[k]==="."){const R=[];for(;e[k]===".";)k++,R.push(g()??m()??y()??L("Property expected"));return["get",...R]}return d()},d=()=>{const R=k,P=m();if(S(),!P||e[k]!=="(")return k=R,f();k++,!hZ[P]&&L(`Unknown function '${P}'`),S();const D=e[k]!==")"?[s()]:[];for(;k<e.length&&e[k]!==")";)S(),C(","),D.push(s());return C(")"),[P,...D]},f=()=>{if(e[k]==="{"){k++,S();const R={};let P=!0;for(;k<e.length&&e[k]!=="}";){P?P=!1:(C(","),S());const D=g()??m()??y()??L("Key expected");S(),C(":"),R[D]=s()}return C("}"),["object",R]}return p()},p=()=>{if(e[k]==="["){k++,S();const R=[];let P=!0;for(;k<e.length&&e[k]!=="]";)P?P=!1:(C(","),S()),R.push(s());return C("]"),["array",...R]}return g()??v()??T()},g=()=>O(ZDo,JSON.parse),m=()=>O(YDo,R=>R),v=()=>O(JDo,JSON.parse),y=()=>O(ePo,JSON.parse),T=()=>{const R=O(tPo,JSON.parse);if(R!==void 0)return R;L("Value expected")},_=()=>{S(),k<e.length&&L(`Unexpected part '${e.substring(k)}'`)},O=(R,P)=>{const D=e.substring(k).match(R);if(D)return k+=D[0].length,P(D[0])},S=()=>O(nPo,R=>R),C=R=>{e[k]!==R&&L(`Character '${R}' expected`),k++},L=(R,P=k)=>{throw new SyntaxError(`${R} (pos: ${P})`)};let k=0;const E=s();return _(),E}const rPo=40,iPo=" ",oPo=(e,t)=>{const n=iPo,i=(f,p)=>_bt(f)?s(f,p):JSON.stringify(f),s=(f,p)=>{var g;const[m,...v]=f;if(m==="get"&&v.length>0)return l(v);if(m==="pipe"){const O=v.map(S=>i(S,p+n));return d(O,[""," | ",""],["",`
9101
+ */const jDo=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:Nve,AArrowDownIcon:Nve,AArrowUp:Dve,AArrowUpIcon:Dve,ALargeSmall:Pve,ALargeSmallIcon:Pve,Accessibility:Ive,AccessibilityIcon:Ive,Activity:jve,ActivityIcon:jve,ActivitySquare:iH,ActivitySquareIcon:iH,AirVent:qve,AirVentIcon:qve,Airplay:Fve,AirplayIcon:Fve,AlarmCheck:Hj,AlarmCheckIcon:Hj,AlarmClock:Bve,AlarmClockCheck:Hj,AlarmClockCheckIcon:Hj,AlarmClockIcon:Bve,AlarmClockMinus:Bj,AlarmClockMinusIcon:Bj,AlarmClockOff:Hve,AlarmClockOffIcon:Hve,AlarmClockPlus:Wj,AlarmClockPlusIcon:Wj,AlarmMinus:Bj,AlarmMinusIcon:Bj,AlarmPlus:Wj,AlarmPlusIcon:Wj,AlarmSmoke:Wve,AlarmSmokeIcon:Wve,Album:$ve,AlbumIcon:$ve,AlertCircle:bq,AlertCircleIcon:bq,AlertOctagon:NF,AlertOctagonIcon:NF,AlertTriangle:sB,AlertTriangleIcon:sB,AlignCenter:Gve,AlignCenterHorizontal:Vve,AlignCenterHorizontalIcon:Vve,AlignCenterIcon:Gve,AlignCenterVertical:Uve,AlignCenterVerticalIcon:Uve,AlignEndHorizontal:Xve,AlignEndHorizontalIcon:Xve,AlignEndVertical:Kve,AlignEndVerticalIcon:Kve,AlignHorizontalDistributeCenter:Yve,AlignHorizontalDistributeCenterIcon:Yve,AlignHorizontalDistributeEnd:Zve,AlignHorizontalDistributeEndIcon:Zve,AlignHorizontalDistributeStart:Jve,AlignHorizontalDistributeStartIcon:Jve,AlignHorizontalJustifyCenter:e9e,AlignHorizontalJustifyCenterIcon:e9e,AlignHorizontalJustifyEnd:t9e,AlignHorizontalJustifyEndIcon:t9e,AlignHorizontalJustifyStart:n9e,AlignHorizontalJustifyStartIcon:n9e,AlignHorizontalSpaceAround:r9e,AlignHorizontalSpaceAroundIcon:r9e,AlignHorizontalSpaceBetween:i9e,AlignHorizontalSpaceBetweenIcon:i9e,AlignJustify:s9e,AlignJustifyIcon:s9e,AlignLeft:o9e,AlignLeftIcon:o9e,AlignRight:a9e,AlignRightIcon:a9e,AlignStartHorizontal:l9e,AlignStartHorizontalIcon:l9e,AlignStartVertical:c9e,AlignStartVerticalIcon:c9e,AlignVerticalDistributeCenter:u9e,AlignVerticalDistributeCenterIcon:u9e,AlignVerticalDistributeEnd:d9e,AlignVerticalDistributeEndIcon:d9e,AlignVerticalDistributeStart:h9e,AlignVerticalDistributeStartIcon:h9e,AlignVerticalJustifyCenter:f9e,AlignVerticalJustifyCenterIcon:f9e,AlignVerticalJustifyEnd:p9e,AlignVerticalJustifyEndIcon:p9e,AlignVerticalJustifyStart:g9e,AlignVerticalJustifyStartIcon:g9e,AlignVerticalSpaceAround:m9e,AlignVerticalSpaceAroundIcon:m9e,AlignVerticalSpaceBetween:b9e,AlignVerticalSpaceBetweenIcon:b9e,Ambulance:v9e,AmbulanceIcon:v9e,Ampersand:y9e,AmpersandIcon:y9e,Ampersands:T9e,AmpersandsIcon:T9e,Amphora:M9e,AmphoraIcon:M9e,Anchor:w9e,AnchorIcon:w9e,Angry:O9e,AngryIcon:O9e,Annoyed:_9e,AnnoyedIcon:_9e,Antenna:A9e,AntennaIcon:A9e,Anvil:x9e,AnvilIcon:x9e,Aperture:S9e,ApertureIcon:S9e,AppWindow:Q9e,AppWindowIcon:Q9e,AppWindowMac:C9e,AppWindowMacIcon:C9e,Apple:E9e,AppleIcon:E9e,Archive:k9e,ArchiveIcon:k9e,ArchiveRestore:z9e,ArchiveRestoreIcon:z9e,ArchiveX:L9e,ArchiveXIcon:L9e,AreaChart:iq,AreaChartIcon:iq,Armchair:R9e,ArmchairIcon:R9e,ArrowBigDown:D9e,ArrowBigDownDash:N9e,ArrowBigDownDashIcon:N9e,ArrowBigDownIcon:D9e,ArrowBigLeft:I9e,ArrowBigLeftDash:P9e,ArrowBigLeftDashIcon:P9e,ArrowBigLeftIcon:I9e,ArrowBigRight:q9e,ArrowBigRightDash:j9e,ArrowBigRightDashIcon:j9e,ArrowBigRightIcon:q9e,ArrowBigUp:H9e,ArrowBigUpDash:F9e,ArrowBigUpDashIcon:F9e,ArrowBigUpIcon:H9e,ArrowDown:Z9e,ArrowDown01:B9e,ArrowDown01Icon:B9e,ArrowDown10:W9e,ArrowDown10Icon:W9e,ArrowDownAZ:$j,ArrowDownAZIcon:$j,ArrowDownAz:$j,ArrowDownAzIcon:$j,ArrowDownCircle:vq,ArrowDownCircleIcon:vq,ArrowDownFromLine:$9e,ArrowDownFromLineIcon:$9e,ArrowDownIcon:Z9e,ArrowDownLeft:V9e,ArrowDownLeftFromCircle:Tq,ArrowDownLeftFromCircleIcon:Tq,ArrowDownLeftFromSquare:cH,ArrowDownLeftFromSquareIcon:cH,ArrowDownLeftIcon:V9e,ArrowDownLeftSquare:oH,ArrowDownLeftSquareIcon:oH,ArrowDownNarrowWide:U9e,ArrowDownNarrowWideIcon:U9e,ArrowDownRight:X9e,ArrowDownRightFromCircle:Mq,ArrowDownRightFromCircleIcon:Mq,ArrowDownRightFromSquare:uH,ArrowDownRightFromSquareIcon:uH,ArrowDownRightIcon:X9e,ArrowDownRightSquare:sH,ArrowDownRightSquareIcon:sH,ArrowDownSquare:aH,ArrowDownSquareIcon:aH,ArrowDownToDot:G9e,ArrowDownToDotIcon:G9e,ArrowDownToLine:K9e,ArrowDownToLineIcon:K9e,ArrowDownUp:Y9e,ArrowDownUpIcon:Y9e,ArrowDownWideNarrow:Uj,ArrowDownWideNarrowIcon:Uj,ArrowDownZA:Vj,ArrowDownZAIcon:Vj,ArrowDownZa:Vj,ArrowDownZaIcon:Vj,ArrowLeft:nye,ArrowLeftCircle:yq,ArrowLeftCircleIcon:yq,ArrowLeftFromLine:J9e,ArrowLeftFromLineIcon:J9e,ArrowLeftIcon:nye,ArrowLeftRight:eye,ArrowLeftRightIcon:eye,ArrowLeftSquare:lH,ArrowLeftSquareIcon:lH,ArrowLeftToLine:tye,ArrowLeftToLineIcon:tye,ArrowRight:sye,ArrowRightCircle:Oq,ArrowRightCircleIcon:Oq,ArrowRightFromLine:rye,ArrowRightFromLineIcon:rye,ArrowRightIcon:sye,ArrowRightLeft:iye,ArrowRightLeftIcon:iye,ArrowRightSquare:hH,ArrowRightSquareIcon:hH,ArrowRightToLine:oye,ArrowRightToLineIcon:oye,ArrowUp:mye,ArrowUp01:aye,ArrowUp01Icon:aye,ArrowUp10:lye,ArrowUp10Icon:lye,ArrowUpAZ:Gj,ArrowUpAZIcon:Gj,ArrowUpAz:Gj,ArrowUpAzIcon:Gj,ArrowUpCircle:Aq,ArrowUpCircleIcon:Aq,ArrowUpDown:cye,ArrowUpDownIcon:cye,ArrowUpFromDot:uye,ArrowUpFromDotIcon:uye,ArrowUpFromLine:dye,ArrowUpFromLineIcon:dye,ArrowUpIcon:mye,ArrowUpLeft:hye,ArrowUpLeftFromCircle:wq,ArrowUpLeftFromCircleIcon:wq,ArrowUpLeftFromSquare:dH,ArrowUpLeftFromSquareIcon:dH,ArrowUpLeftIcon:hye,ArrowUpLeftSquare:fH,ArrowUpLeftSquareIcon:fH,ArrowUpNarrowWide:Xj,ArrowUpNarrowWideIcon:Xj,ArrowUpRight:fye,ArrowUpRightFromCircle:_q,ArrowUpRightFromCircleIcon:_q,ArrowUpRightFromSquare:pH,ArrowUpRightFromSquareIcon:pH,ArrowUpRightIcon:fye,ArrowUpRightSquare:gH,ArrowUpRightSquareIcon:gH,ArrowUpSquare:mH,ArrowUpSquareIcon:mH,ArrowUpToLine:pye,ArrowUpToLineIcon:pye,ArrowUpWideNarrow:gye,ArrowUpWideNarrowIcon:gye,ArrowUpZA:Kj,ArrowUpZAIcon:Kj,ArrowUpZa:Kj,ArrowUpZaIcon:Kj,ArrowsUpFromLine:bye,ArrowsUpFromLineIcon:bye,Asterisk:vye,AsteriskIcon:vye,AsteriskSquare:bH,AsteriskSquareIcon:bH,AtSign:yye,AtSignIcon:yye,Atom:Tye,AtomIcon:Tye,AudioLines:Mye,AudioLinesIcon:Mye,AudioWaveform:wye,AudioWaveformIcon:wye,Award:_ye,AwardIcon:_ye,Axe:Oye,AxeIcon:Oye,Axis3D:Yj,Axis3DIcon:Yj,Axis3d:Yj,Axis3dIcon:Yj,Baby:xye,BabyIcon:xye,Backpack:Aye,BackpackIcon:Aye,Badge:Fye,BadgeAlert:Cye,BadgeAlertIcon:Cye,BadgeCent:Sye,BadgeCentIcon:Sye,BadgeCheck:Zj,BadgeCheckIcon:Zj,BadgeDollarSign:zye,BadgeDollarSignIcon:zye,BadgeEuro:Qye,BadgeEuroIcon:Qye,BadgeHelp:Eye,BadgeHelpIcon:Eye,BadgeIcon:Fye,BadgeIndianRupee:Lye,BadgeIndianRupeeIcon:Lye,BadgeInfo:kye,BadgeInfoIcon:kye,BadgeJapaneseYen:Rye,BadgeJapaneseYenIcon:Rye,BadgeMinus:Nye,BadgeMinusIcon:Nye,BadgePercent:Dye,BadgePercentIcon:Dye,BadgePlus:Pye,BadgePlusIcon:Pye,BadgePoundSterling:jye,BadgePoundSterlingIcon:jye,BadgeRussianRuble:Iye,BadgeRussianRubleIcon:Iye,BadgeSwissFranc:qye,BadgeSwissFrancIcon:qye,BadgeX:Hye,BadgeXIcon:Hye,BaggageClaim:Bye,BaggageClaimIcon:Bye,Ban:Wye,BanIcon:Wye,Banana:$ye,BananaIcon:$ye,Bandage:Vye,BandageIcon:Vye,Banknote:Kye,BanknoteArrowDown:Uye,BanknoteArrowDownIcon:Uye,BanknoteArrowUp:Gye,BanknoteArrowUpIcon:Gye,BanknoteIcon:Kye,BanknoteX:Xye,BanknoteXIcon:Xye,BarChart:hq,BarChart2:fq,BarChart2Icon:fq,BarChart3:uq,BarChart3Icon:uq,BarChart4:cq,BarChart4Icon:cq,BarChartBig:lq,BarChartBigIcon:lq,BarChartHorizontal:sq,BarChartHorizontalBig:oq,BarChartHorizontalBigIcon:oq,BarChartHorizontalIcon:sq,BarChartIcon:hq,Barcode:Yye,BarcodeIcon:Yye,Baseline:Zye,BaselineIcon:Zye,Bath:Jye,BathIcon:Jye,Battery:sTe,BatteryCharging:eTe,BatteryChargingIcon:eTe,BatteryFull:tTe,BatteryFullIcon:tTe,BatteryIcon:sTe,BatteryLow:nTe,BatteryLowIcon:nTe,BatteryMedium:rTe,BatteryMediumIcon:rTe,BatteryPlus:iTe,BatteryPlusIcon:iTe,BatteryWarning:oTe,BatteryWarningIcon:oTe,Beaker:lTe,BeakerIcon:lTe,Bean:uTe,BeanIcon:uTe,BeanOff:aTe,BeanOffIcon:aTe,Bed:hTe,BedDouble:cTe,BedDoubleIcon:cTe,BedIcon:hTe,BedSingle:dTe,BedSingleIcon:dTe,Beef:fTe,BeefIcon:fTe,Beer:pTe,BeerIcon:pTe,BeerOff:gTe,BeerOffIcon:gTe,Bell:wTe,BellDot:mTe,BellDotIcon:mTe,BellElectric:bTe,BellElectricIcon:bTe,BellIcon:wTe,BellMinus:vTe,BellMinusIcon:vTe,BellOff:yTe,BellOffIcon:yTe,BellPlus:TTe,BellPlusIcon:TTe,BellRing:MTe,BellRingIcon:MTe,BetweenHorizonalEnd:Jj,BetweenHorizonalEndIcon:Jj,BetweenHorizonalStart:eq,BetweenHorizonalStartIcon:eq,BetweenHorizontalEnd:Jj,BetweenHorizontalEndIcon:Jj,BetweenHorizontalStart:eq,BetweenHorizontalStartIcon:eq,BetweenVerticalEnd:_Te,BetweenVerticalEndIcon:_Te,BetweenVerticalStart:OTe,BetweenVerticalStartIcon:OTe,BicepsFlexed:ATe,BicepsFlexedIcon:ATe,Bike:xTe,BikeIcon:xTe,Binary:STe,BinaryIcon:STe,Binoculars:CTe,BinocularsIcon:CTe,Biohazard:QTe,BiohazardIcon:QTe,Bird:zTe,BirdIcon:zTe,Bitcoin:ETe,BitcoinIcon:ETe,Blend:kTe,BlendIcon:kTe,Blinds:LTe,BlindsIcon:LTe,Blocks:RTe,BlocksIcon:RTe,Bluetooth:ITe,BluetoothConnected:NTe,BluetoothConnectedIcon:NTe,BluetoothIcon:ITe,BluetoothOff:DTe,BluetoothOffIcon:DTe,BluetoothSearching:PTe,BluetoothSearchingIcon:PTe,Bold:jTe,BoldIcon:jTe,Bolt:qTe,BoltIcon:qTe,Bomb:FTe,BombIcon:FTe,Bone:HTe,BoneIcon:HTe,Book:dMe,BookA:BTe,BookAIcon:BTe,BookAudio:WTe,BookAudioIcon:WTe,BookCheck:$Te,BookCheckIcon:$Te,BookCopy:VTe,BookCopyIcon:VTe,BookDashed:tq,BookDashedIcon:tq,BookDown:UTe,BookDownIcon:UTe,BookHeadphones:GTe,BookHeadphonesIcon:GTe,BookHeart:XTe,BookHeartIcon:XTe,BookIcon:dMe,BookImage:KTe,BookImageIcon:KTe,BookKey:ZTe,BookKeyIcon:ZTe,BookLock:YTe,BookLockIcon:YTe,BookMarked:JTe,BookMarkedIcon:JTe,BookMinus:eMe,BookMinusIcon:eMe,BookOpen:rMe,BookOpenCheck:tMe,BookOpenCheckIcon:tMe,BookOpenIcon:rMe,BookOpenText:nMe,BookOpenTextIcon:nMe,BookPlus:iMe,BookPlusIcon:iMe,BookTemplate:tq,BookTemplateIcon:tq,BookText:oMe,BookTextIcon:oMe,BookType:sMe,BookTypeIcon:sMe,BookUp:cMe,BookUp2:aMe,BookUp2Icon:aMe,BookUpIcon:cMe,BookUser:lMe,BookUserIcon:lMe,BookX:uMe,BookXIcon:uMe,Bookmark:mMe,BookmarkCheck:hMe,BookmarkCheckIcon:hMe,BookmarkIcon:mMe,BookmarkMinus:pMe,BookmarkMinusIcon:pMe,BookmarkPlus:fMe,BookmarkPlusIcon:fMe,BookmarkX:gMe,BookmarkXIcon:gMe,BoomBox:bMe,BoomBoxIcon:bMe,Bot:TMe,BotIcon:TMe,BotMessageSquare:vMe,BotMessageSquareIcon:vMe,BotOff:yMe,BotOffIcon:yMe,BowArrow:MMe,BowArrowIcon:MMe,Box:wMe,BoxIcon:wMe,BoxSelect:CH,BoxSelectIcon:CH,Boxes:_Me,BoxesIcon:_Me,Braces:nq,BracesIcon:nq,Brackets:OMe,BracketsIcon:OMe,Brain:SMe,BrainCircuit:AMe,BrainCircuitIcon:AMe,BrainCog:xMe,BrainCogIcon:xMe,BrainIcon:SMe,BrickWall:QMe,BrickWallFire:CMe,BrickWallFireIcon:CMe,BrickWallIcon:QMe,Briefcase:kMe,BriefcaseBusiness:zMe,BriefcaseBusinessIcon:zMe,BriefcaseConveyorBelt:EMe,BriefcaseConveyorBeltIcon:EMe,BriefcaseIcon:kMe,BriefcaseMedical:LMe,BriefcaseMedicalIcon:LMe,BringToFront:RMe,BringToFrontIcon:RMe,Brush:NMe,BrushIcon:NMe,Bubbles:DMe,BubblesIcon:DMe,Bug:jMe,BugIcon:jMe,BugOff:PMe,BugOffIcon:PMe,BugPlay:IMe,BugPlayIcon:IMe,Building:FMe,Building2:qMe,Building2Icon:qMe,BuildingIcon:FMe,Bus:BMe,BusFront:HMe,BusFrontIcon:HMe,BusIcon:BMe,Cable:$Me,CableCar:WMe,CableCarIcon:WMe,CableIcon:$Me,Cake:UMe,CakeIcon:UMe,CakeSlice:VMe,CakeSliceIcon:VMe,Calculator:GMe,CalculatorIcon:GMe,Calendar:gwe,Calendar1:XMe,Calendar1Icon:XMe,CalendarArrowDown:KMe,CalendarArrowDownIcon:KMe,CalendarArrowUp:YMe,CalendarArrowUpIcon:YMe,CalendarCheck:JMe,CalendarCheck2:ZMe,CalendarCheck2Icon:ZMe,CalendarCheckIcon:JMe,CalendarClock:ewe,CalendarClockIcon:ewe,CalendarCog:twe,CalendarCogIcon:twe,CalendarDays:nwe,CalendarDaysIcon:nwe,CalendarFold:rwe,CalendarFoldIcon:rwe,CalendarHeart:iwe,CalendarHeartIcon:iwe,CalendarIcon:gwe,CalendarMinus:swe,CalendarMinus2:owe,CalendarMinus2Icon:owe,CalendarMinusIcon:swe,CalendarOff:awe,CalendarOffIcon:awe,CalendarPlus:cwe,CalendarPlus2:lwe,CalendarPlus2Icon:lwe,CalendarPlusIcon:cwe,CalendarRange:uwe,CalendarRangeIcon:uwe,CalendarSearch:dwe,CalendarSearchIcon:dwe,CalendarSync:hwe,CalendarSyncIcon:hwe,CalendarX:pwe,CalendarX2:fwe,CalendarX2Icon:fwe,CalendarXIcon:pwe,Camera:vwe,CameraIcon:vwe,CameraOff:mwe,CameraOffIcon:mwe,CandlestickChart:aq,CandlestickChartIcon:aq,Candy:Twe,CandyCane:bwe,CandyCaneIcon:bwe,CandyIcon:Twe,CandyOff:ywe,CandyOffIcon:ywe,Cannabis:Mwe,CannabisIcon:Mwe,Captions:rq,CaptionsIcon:rq,CaptionsOff:wwe,CaptionsOffIcon:wwe,Car:Owe,CarFront:_we,CarFrontIcon:_we,CarIcon:Owe,CarTaxiFront:Awe,CarTaxiFrontIcon:Awe,Caravan:xwe,CaravanIcon:xwe,Carrot:Cwe,CarrotIcon:Cwe,CaseLower:Swe,CaseLowerIcon:Swe,CaseSensitive:Qwe,CaseSensitiveIcon:Qwe,CaseUpper:zwe,CaseUpperIcon:zwe,CassetteTape:Ewe,CassetteTapeIcon:Ewe,Cast:Lwe,CastIcon:Lwe,Castle:kwe,CastleIcon:kwe,Cat:Rwe,CatIcon:Rwe,Cctv:Nwe,CctvIcon:Nwe,ChartArea:iq,ChartAreaIcon:iq,ChartBar:sq,ChartBarBig:oq,ChartBarBigIcon:oq,ChartBarDecreasing:Dwe,ChartBarDecreasingIcon:Dwe,ChartBarIcon:sq,ChartBarIncreasing:Pwe,ChartBarIncreasingIcon:Pwe,ChartBarStacked:Iwe,ChartBarStackedIcon:Iwe,ChartCandlestick:aq,ChartCandlestickIcon:aq,ChartColumn:uq,ChartColumnBig:lq,ChartColumnBigIcon:lq,ChartColumnDecreasing:jwe,ChartColumnDecreasingIcon:jwe,ChartColumnIcon:uq,ChartColumnIncreasing:cq,ChartColumnIncreasingIcon:cq,ChartColumnStacked:qwe,ChartColumnStackedIcon:qwe,ChartGantt:Fwe,ChartGanttIcon:Fwe,ChartLine:dq,ChartLineIcon:dq,ChartNetwork:Hwe,ChartNetworkIcon:Hwe,ChartNoAxesColumn:fq,ChartNoAxesColumnDecreasing:Bwe,ChartNoAxesColumnDecreasingIcon:Bwe,ChartNoAxesColumnIcon:fq,ChartNoAxesColumnIncreasing:hq,ChartNoAxesColumnIncreasingIcon:hq,ChartNoAxesCombined:Wwe,ChartNoAxesCombinedIcon:Wwe,ChartNoAxesGantt:pq,ChartNoAxesGanttIcon:pq,ChartPie:gq,ChartPieIcon:gq,ChartScatter:mq,ChartScatterIcon:mq,ChartSpline:$we,ChartSplineIcon:$we,Check:Fle,CheckCheck:Vwe,CheckCheckIcon:Vwe,CheckCircle:Sq,CheckCircle2:xq,CheckCircle2Icon:xq,CheckCircleIcon:Sq,CheckIcon:Fle,CheckSquare:yH,CheckSquare2:TH,CheckSquare2Icon:TH,CheckSquareIcon:yH,ChefHat:Uwe,ChefHatIcon:Uwe,Cherry:Gwe,CherryIcon:Gwe,ChevronDown:tee,ChevronDownCircle:Cq,ChevronDownCircleIcon:Cq,ChevronDownIcon:tee,ChevronDownSquare:MH,ChevronDownSquareIcon:MH,ChevronFirst:Xwe,ChevronFirstIcon:Xwe,ChevronLast:Kwe,ChevronLastIcon:Kwe,ChevronLeft:Ywe,ChevronLeftCircle:Qq,ChevronLeftCircleIcon:Qq,ChevronLeftIcon:Ywe,ChevronLeftSquare:wH,ChevronLeftSquareIcon:wH,ChevronRight:Zwe,ChevronRightCircle:zq,ChevronRightCircleIcon:zq,ChevronRightIcon:Zwe,ChevronRightSquare:_H,ChevronRightSquareIcon:_H,ChevronUp:Hle,ChevronUpCircle:Eq,ChevronUpCircleIcon:Eq,ChevronUpIcon:Hle,ChevronUpSquare:OH,ChevronUpSquareIcon:OH,ChevronsDown:Jwe,ChevronsDownIcon:Jwe,ChevronsDownUp:e_e,ChevronsDownUpIcon:e_e,ChevronsLeft:r_e,ChevronsLeftIcon:r_e,ChevronsLeftRight:n_e,ChevronsLeftRightEllipsis:t_e,ChevronsLeftRightEllipsisIcon:t_e,ChevronsLeftRightIcon:n_e,ChevronsRight:o_e,ChevronsRightIcon:o_e,ChevronsRightLeft:i_e,ChevronsRightLeftIcon:i_e,ChevronsUp:s_e,ChevronsUpDown:Ble,ChevronsUpDownIcon:Ble,ChevronsUpIcon:s_e,Chrome:a_e,ChromeIcon:a_e,Church:l_e,ChurchIcon:l_e,Cigarette:c_e,CigaretteIcon:c_e,CigaretteOff:u_e,CigaretteOffIcon:u_e,Circle:Wle,CircleAlert:bq,CircleAlertIcon:bq,CircleArrowDown:vq,CircleArrowDownIcon:vq,CircleArrowLeft:yq,CircleArrowLeftIcon:yq,CircleArrowOutDownLeft:Tq,CircleArrowOutDownLeftIcon:Tq,CircleArrowOutDownRight:Mq,CircleArrowOutDownRightIcon:Mq,CircleArrowOutUpLeft:wq,CircleArrowOutUpLeftIcon:wq,CircleArrowOutUpRight:_q,CircleArrowOutUpRightIcon:_q,CircleArrowRight:Oq,CircleArrowRightIcon:Oq,CircleArrowUp:Aq,CircleArrowUpIcon:Aq,CircleCheck:xq,CircleCheckBig:Sq,CircleCheckBigIcon:Sq,CircleCheckIcon:xq,CircleChevronDown:Cq,CircleChevronDownIcon:Cq,CircleChevronLeft:Qq,CircleChevronLeftIcon:Qq,CircleChevronRight:zq,CircleChevronRightIcon:zq,CircleChevronUp:Eq,CircleChevronUpIcon:Eq,CircleDashed:d_e,CircleDashedIcon:d_e,CircleDivide:Lq,CircleDivideIcon:Lq,CircleDollarSign:h_e,CircleDollarSignIcon:h_e,CircleDot:g_e,CircleDotDashed:f_e,CircleDotDashedIcon:f_e,CircleDotIcon:g_e,CircleEllipsis:p_e,CircleEllipsisIcon:p_e,CircleEqual:m_e,CircleEqualIcon:m_e,CircleFadingArrowUp:b_e,CircleFadingArrowUpIcon:b_e,CircleFadingPlus:v_e,CircleFadingPlusIcon:v_e,CircleGauge:kq,CircleGaugeIcon:kq,CircleHelp:Rq,CircleHelpIcon:Rq,CircleIcon:Wle,CircleMinus:Nq,CircleMinusIcon:Nq,CircleOff:y_e,CircleOffIcon:y_e,CircleParking:Pq,CircleParkingIcon:Pq,CircleParkingOff:Dq,CircleParkingOffIcon:Dq,CirclePause:Iq,CirclePauseIcon:Iq,CirclePercent:qq,CirclePercentIcon:qq,CirclePlay:jq,CirclePlayIcon:jq,CirclePlus:Fq,CirclePlusIcon:Fq,CirclePower:Hq,CirclePowerIcon:Hq,CircleSlash:T_e,CircleSlash2:Bq,CircleSlash2Icon:Bq,CircleSlashIcon:T_e,CircleSlashed:Bq,CircleSlashedIcon:Bq,CircleSmall:M_e,CircleSmallIcon:M_e,CircleStop:Wq,CircleStopIcon:Wq,CircleUser:Vq,CircleUserIcon:Vq,CircleUserRound:$q,CircleUserRoundIcon:$q,CircleX:vk,CircleXIcon:vk,CircuitBoard:w_e,CircuitBoardIcon:w_e,Citrus:__e,CitrusIcon:__e,Clapperboard:O_e,ClapperboardIcon:O_e,Clipboard:k_e,ClipboardCheck:A_e,ClipboardCheckIcon:A_e,ClipboardCopy:x_e,ClipboardCopyIcon:x_e,ClipboardEdit:Gq,ClipboardEditIcon:Gq,ClipboardIcon:k_e,ClipboardList:S_e,ClipboardListIcon:S_e,ClipboardMinus:C_e,ClipboardMinusIcon:C_e,ClipboardPaste:Q_e,ClipboardPasteIcon:Q_e,ClipboardPen:Gq,ClipboardPenIcon:Gq,ClipboardPenLine:Uq,ClipboardPenLineIcon:Uq,ClipboardPlus:E_e,ClipboardPlusIcon:E_e,ClipboardSignature:Uq,ClipboardSignatureIcon:Uq,ClipboardType:z_e,ClipboardTypeIcon:z_e,ClipboardX:L_e,ClipboardXIcon:L_e,Clock:K_e,Clock1:R_e,Clock10:N_e,Clock10Icon:N_e,Clock11:D_e,Clock11Icon:D_e,Clock12:P_e,Clock12Icon:P_e,Clock1Icon:R_e,Clock2:I_e,Clock2Icon:I_e,Clock3:j_e,Clock3Icon:j_e,Clock4:q_e,Clock4Icon:q_e,Clock5:F_e,Clock5Icon:F_e,Clock6:H_e,Clock6Icon:H_e,Clock7:B_e,Clock7Icon:B_e,Clock8:W_e,Clock8Icon:W_e,Clock9:$_e,Clock9Icon:$_e,ClockAlert:V_e,ClockAlertIcon:V_e,ClockArrowDown:U_e,ClockArrowDownIcon:U_e,ClockArrowUp:G_e,ClockArrowUpIcon:G_e,ClockFading:X_e,ClockFadingIcon:X_e,ClockIcon:K_e,Cloud:dOe,CloudAlert:Y_e,CloudAlertIcon:Y_e,CloudCog:Z_e,CloudCogIcon:Z_e,CloudDownload:Xq,CloudDownloadIcon:Xq,CloudDrizzle:J_e,CloudDrizzleIcon:J_e,CloudFog:eOe,CloudFogIcon:eOe,CloudHail:tOe,CloudHailIcon:tOe,CloudIcon:dOe,CloudLightning:nOe,CloudLightningIcon:nOe,CloudMoon:iOe,CloudMoonIcon:iOe,CloudMoonRain:rOe,CloudMoonRainIcon:rOe,CloudOff:oOe,CloudOffIcon:oOe,CloudRain:aOe,CloudRainIcon:aOe,CloudRainWind:sOe,CloudRainWindIcon:sOe,CloudSnow:lOe,CloudSnowIcon:lOe,CloudSun:uOe,CloudSunIcon:uOe,CloudSunRain:cOe,CloudSunRainIcon:cOe,CloudUpload:Kq,CloudUploadIcon:Kq,Cloudy:hOe,CloudyIcon:hOe,Clover:fOe,CloverIcon:fOe,Club:pOe,ClubIcon:pOe,Code:$le,Code2:Yq,Code2Icon:Yq,CodeIcon:$le,CodeSquare:AH,CodeSquareIcon:AH,CodeXml:Yq,CodeXmlIcon:Yq,Codepen:gOe,CodepenIcon:gOe,Codesandbox:mOe,CodesandboxIcon:mOe,Coffee:bOe,CoffeeIcon:bOe,Cog:vOe,CogIcon:vOe,Coins:yOe,CoinsIcon:yOe,Columns:Zq,Columns2:Zq,Columns2Icon:Zq,Columns3:Jq,Columns3Cog:YO,Columns3CogIcon:YO,Columns3Icon:Jq,Columns4:TOe,Columns4Icon:TOe,ColumnsIcon:Zq,ColumnsSettings:YO,ColumnsSettingsIcon:YO,Combine:MOe,CombineIcon:MOe,Command:wOe,CommandIcon:wOe,Compass:_Oe,CompassIcon:_Oe,Component:OOe,ComponentIcon:OOe,Computer:AOe,ComputerIcon:AOe,ConciergeBell:xOe,ConciergeBellIcon:xOe,Cone:SOe,ConeIcon:SOe,Construction:COe,ConstructionIcon:COe,Contact:QOe,Contact2:eF,Contact2Icon:eF,ContactIcon:QOe,ContactRound:eF,ContactRoundIcon:eF,Container:zOe,ContainerIcon:zOe,Contrast:EOe,ContrastIcon:EOe,Cookie:LOe,CookieIcon:LOe,CookingPot:kOe,CookingPotIcon:kOe,Copy:jOe,CopyCheck:ROe,CopyCheckIcon:ROe,CopyIcon:jOe,CopyMinus:NOe,CopyMinusIcon:NOe,CopyPlus:DOe,CopyPlusIcon:DOe,CopySlash:POe,CopySlashIcon:POe,CopyX:IOe,CopyXIcon:IOe,Copyleft:qOe,CopyleftIcon:qOe,Copyright:FOe,CopyrightIcon:FOe,CornerDownLeft:HOe,CornerDownLeftIcon:HOe,CornerDownRight:BOe,CornerDownRightIcon:BOe,CornerLeftDown:WOe,CornerLeftDownIcon:WOe,CornerLeftUp:$Oe,CornerLeftUpIcon:$Oe,CornerRightDown:VOe,CornerRightDownIcon:VOe,CornerRightUp:UOe,CornerRightUpIcon:UOe,CornerUpLeft:GOe,CornerUpLeftIcon:GOe,CornerUpRight:XOe,CornerUpRightIcon:XOe,Cpu:KOe,CpuIcon:KOe,CreativeCommons:YOe,CreativeCommonsIcon:YOe,CreditCard:ZOe,CreditCardIcon:ZOe,Croissant:JOe,CroissantIcon:JOe,Crop:eAe,CropIcon:eAe,Cross:tAe,CrossIcon:tAe,Crosshair:nAe,CrosshairIcon:nAe,Crown:rAe,CrownIcon:rAe,Cuboid:iAe,CuboidIcon:iAe,CupSoda:oAe,CupSodaIcon:oAe,CurlyBraces:nq,CurlyBracesIcon:nq,Currency:sAe,CurrencyIcon:sAe,Cylinder:aAe,CylinderIcon:aAe,Dam:lAe,DamIcon:lAe,Database:dAe,DatabaseBackup:cAe,DatabaseBackupIcon:cAe,DatabaseIcon:dAe,DatabaseZap:uAe,DatabaseZapIcon:uAe,DecimalsArrowLeft:hAe,DecimalsArrowLeftIcon:hAe,DecimalsArrowRight:fAe,DecimalsArrowRightIcon:fAe,Delete:pAe,DeleteIcon:pAe,Dessert:gAe,DessertIcon:gAe,Diameter:mAe,DiameterIcon:mAe,Diamond:yAe,DiamondIcon:yAe,DiamondMinus:bAe,DiamondMinusIcon:bAe,DiamondPercent:tF,DiamondPercentIcon:tF,DiamondPlus:vAe,DiamondPlusIcon:vAe,Dice1:TAe,Dice1Icon:TAe,Dice2:MAe,Dice2Icon:MAe,Dice3:wAe,Dice3Icon:wAe,Dice4:_Ae,Dice4Icon:_Ae,Dice5:OAe,Dice5Icon:OAe,Dice6:AAe,Dice6Icon:AAe,Dices:xAe,DicesIcon:xAe,Diff:SAe,DiffIcon:SAe,Disc:zAe,Disc2:CAe,Disc2Icon:CAe,Disc3:QAe,Disc3Icon:QAe,DiscAlbum:EAe,DiscAlbumIcon:EAe,DiscIcon:zAe,Divide:LAe,DivideCircle:Lq,DivideCircleIcon:Lq,DivideIcon:LAe,DivideSquare:QH,DivideSquareIcon:QH,Dna:RAe,DnaIcon:RAe,DnaOff:kAe,DnaOffIcon:kAe,Dock:NAe,DockIcon:NAe,Dog:DAe,DogIcon:DAe,DollarSign:PAe,DollarSignIcon:PAe,Donut:IAe,DonutIcon:IAe,DoorClosed:jAe,DoorClosedIcon:jAe,DoorOpen:qAe,DoorOpenIcon:qAe,Dot:FAe,DotIcon:FAe,DotSquare:zH,DotSquareIcon:zH,Download:HAe,DownloadCloud:Xq,DownloadCloudIcon:Xq,DownloadIcon:HAe,DraftingCompass:BAe,DraftingCompassIcon:BAe,Drama:WAe,DramaIcon:WAe,Dribbble:$Ae,DribbbleIcon:$Ae,Drill:VAe,DrillIcon:VAe,Droplet:GAe,DropletIcon:GAe,DropletOff:UAe,DropletOffIcon:UAe,Droplets:XAe,DropletsIcon:XAe,Drum:KAe,DrumIcon:KAe,Drumstick:YAe,DrumstickIcon:YAe,Dumbbell:ZAe,DumbbellIcon:ZAe,Ear:exe,EarIcon:exe,EarOff:JAe,EarOffIcon:JAe,Earth:nF,EarthIcon:nF,EarthLock:txe,EarthLockIcon:txe,Eclipse:nxe,EclipseIcon:nxe,Edit:rv,Edit2:UF,Edit2Icon:UF,Edit3:VF,Edit3Icon:VF,EditIcon:rv,Egg:oxe,EggFried:rxe,EggFriedIcon:rxe,EggIcon:oxe,EggOff:ixe,EggOffIcon:ixe,Ellipsis:rF,EllipsisIcon:rF,EllipsisVertical:iF,EllipsisVerticalIcon:iF,Equal:cxe,EqualApproximately:sxe,EqualApproximatelyIcon:sxe,EqualIcon:cxe,EqualNot:axe,EqualNotIcon:axe,EqualSquare:EH,EqualSquareIcon:EH,Eraser:lxe,EraserIcon:lxe,EthernetPort:uxe,EthernetPortIcon:uxe,Euro:dxe,EuroIcon:dxe,Expand:hxe,ExpandIcon:hxe,ExternalLink:nee,ExternalLinkIcon:nee,Eye:gxe,EyeClosed:fxe,EyeClosedIcon:fxe,EyeIcon:gxe,EyeOff:pxe,EyeOffIcon:pxe,Facebook:mxe,FacebookIcon:mxe,Factory:bxe,FactoryIcon:bxe,Fan:vxe,FanIcon:vxe,FastForward:yxe,FastForwardIcon:yxe,Feather:Mxe,FeatherIcon:Mxe,Fence:Txe,FenceIcon:Txe,FerrisWheel:wxe,FerrisWheelIcon:wxe,Figma:_xe,FigmaIcon:_xe,File:ySe,FileArchive:Oxe,FileArchiveIcon:Oxe,FileAudio:xxe,FileAudio2:Axe,FileAudio2Icon:Axe,FileAudioIcon:xxe,FileAxis3D:oF,FileAxis3DIcon:oF,FileAxis3d:oF,FileAxis3dIcon:oF,FileBadge:Cxe,FileBadge2:Sxe,FileBadge2Icon:Sxe,FileBadgeIcon:Cxe,FileBarChart:sF,FileBarChart2:aF,FileBarChart2Icon:aF,FileBarChartIcon:sF,FileBox:Qxe,FileBoxIcon:Qxe,FileChartColumn:aF,FileChartColumnIcon:aF,FileChartColumnIncreasing:sF,FileChartColumnIncreasingIcon:sF,FileChartLine:lF,FileChartLineIcon:lF,FileChartPie:cF,FileChartPieIcon:cF,FileCheck:Exe,FileCheck2:zxe,FileCheck2Icon:zxe,FileCheckIcon:Exe,FileClock:Lxe,FileClockIcon:Lxe,FileCode:Rxe,FileCode2:kxe,FileCode2Icon:kxe,FileCodeIcon:Rxe,FileCog:uF,FileCog2:uF,FileCog2Icon:uF,FileCogIcon:uF,FileDiff:Nxe,FileDiffIcon:Nxe,FileDigit:Dxe,FileDigitIcon:Dxe,FileDown:Pxe,FileDownIcon:Pxe,FileEdit:hF,FileEditIcon:hF,FileHeart:Ixe,FileHeartIcon:Ixe,FileIcon:ySe,FileImage:jxe,FileImageIcon:jxe,FileInput:qxe,FileInputIcon:qxe,FileJson:Hxe,FileJson2:Fxe,FileJson2Icon:Fxe,FileJsonIcon:Hxe,FileKey:Wxe,FileKey2:Bxe,FileKey2Icon:Bxe,FileKeyIcon:Wxe,FileLineChart:lF,FileLineChartIcon:lF,FileLock:Vxe,FileLock2:$xe,FileLock2Icon:$xe,FileLockIcon:Vxe,FileMinus:Gxe,FileMinus2:Uxe,FileMinus2Icon:Uxe,FileMinusIcon:Gxe,FileMusic:Xxe,FileMusicIcon:Xxe,FileOutput:Kxe,FileOutputIcon:Kxe,FilePen:hF,FilePenIcon:hF,FilePenLine:dF,FilePenLineIcon:dF,FilePieChart:cF,FilePieChartIcon:cF,FilePlus:Zxe,FilePlus2:Yxe,FilePlus2Icon:Yxe,FilePlusIcon:Zxe,FileQuestion:Jxe,FileQuestionIcon:Jxe,FileScan:eSe,FileScanIcon:eSe,FileSearch:nSe,FileSearch2:tSe,FileSearch2Icon:tSe,FileSearchIcon:nSe,FileSignature:dF,FileSignatureIcon:dF,FileSliders:rSe,FileSlidersIcon:rSe,FileSpreadsheet:iSe,FileSpreadsheetIcon:iSe,FileStack:oSe,FileStackIcon:oSe,FileSymlink:sSe,FileSymlinkIcon:sSe,FileTerminal:aSe,FileTerminalIcon:aSe,FileText:lSe,FileTextIcon:lSe,FileType:uSe,FileType2:cSe,FileType2Icon:cSe,FileTypeIcon:uSe,FileUp:dSe,FileUpIcon:dSe,FileUser:fSe,FileUserIcon:fSe,FileVideo:pSe,FileVideo2:hSe,FileVideo2Icon:hSe,FileVideoIcon:pSe,FileVolume:mSe,FileVolume2:gSe,FileVolume2Icon:gSe,FileVolumeIcon:mSe,FileWarning:bSe,FileWarningIcon:bSe,FileX:TSe,FileX2:vSe,FileX2Icon:vSe,FileXIcon:TSe,Files:MSe,FilesIcon:MSe,Film:wSe,FilmIcon:wSe,Filter:gF,FilterIcon:gF,FilterX:mF,FilterXIcon:mF,Fingerprint:_Se,FingerprintIcon:_Se,FireExtinguisher:OSe,FireExtinguisherIcon:OSe,Fish:SSe,FishIcon:SSe,FishOff:ASe,FishOffIcon:ASe,FishSymbol:xSe,FishSymbolIcon:xSe,Flag:ESe,FlagIcon:ESe,FlagOff:CSe,FlagOffIcon:CSe,FlagTriangleLeft:QSe,FlagTriangleLeftIcon:QSe,FlagTriangleRight:zSe,FlagTriangleRightIcon:zSe,Flame:kSe,FlameIcon:kSe,FlameKindling:LSe,FlameKindlingIcon:LSe,Flashlight:NSe,FlashlightIcon:NSe,FlashlightOff:RSe,FlashlightOffIcon:RSe,FlaskConical:PSe,FlaskConicalIcon:PSe,FlaskConicalOff:DSe,FlaskConicalOffIcon:DSe,FlaskRound:ISe,FlaskRoundIcon:ISe,FlipHorizontal:qSe,FlipHorizontal2:jSe,FlipHorizontal2Icon:jSe,FlipHorizontalIcon:qSe,FlipVertical:HSe,FlipVertical2:FSe,FlipVertical2Icon:FSe,FlipVerticalIcon:HSe,Flower:WSe,Flower2:BSe,Flower2Icon:BSe,FlowerIcon:WSe,Focus:$Se,FocusIcon:$Se,FoldHorizontal:VSe,FoldHorizontalIcon:VSe,FoldVertical:USe,FoldVerticalIcon:USe,Folder:MCe,FolderArchive:GSe,FolderArchiveIcon:GSe,FolderCheck:XSe,FolderCheckIcon:XSe,FolderClock:KSe,FolderClockIcon:KSe,FolderClosed:YSe,FolderClosedIcon:YSe,FolderCode:ZSe,FolderCodeIcon:ZSe,FolderCog:fF,FolderCog2:fF,FolderCog2Icon:fF,FolderCogIcon:fF,FolderDot:JSe,FolderDotIcon:JSe,FolderDown:eCe,FolderDownIcon:eCe,FolderEdit:pF,FolderEditIcon:pF,FolderGit:nCe,FolderGit2:tCe,FolderGit2Icon:tCe,FolderGitIcon:nCe,FolderHeart:rCe,FolderHeartIcon:rCe,FolderIcon:MCe,FolderInput:iCe,FolderInputIcon:iCe,FolderKanban:oCe,FolderKanbanIcon:oCe,FolderKey:sCe,FolderKeyIcon:sCe,FolderLock:aCe,FolderLockIcon:aCe,FolderMinus:lCe,FolderMinusIcon:lCe,FolderOpen:uCe,FolderOpenDot:cCe,FolderOpenDotIcon:cCe,FolderOpenIcon:uCe,FolderOutput:dCe,FolderOutputIcon:dCe,FolderPen:pF,FolderPenIcon:pF,FolderPlus:hCe,FolderPlusIcon:hCe,FolderRoot:fCe,FolderRootIcon:fCe,FolderSearch:gCe,FolderSearch2:pCe,FolderSearch2Icon:pCe,FolderSearchIcon:gCe,FolderSymlink:mCe,FolderSymlinkIcon:mCe,FolderSync:bCe,FolderSyncIcon:bCe,FolderTree:vCe,FolderTreeIcon:vCe,FolderUp:yCe,FolderUpIcon:yCe,FolderX:TCe,FolderXIcon:TCe,Folders:wCe,FoldersIcon:wCe,Footprints:_Ce,FootprintsIcon:_Ce,ForkKnife:bB,ForkKnifeCrossed:mB,ForkKnifeCrossedIcon:mB,ForkKnifeIcon:bB,Forklift:OCe,ForkliftIcon:OCe,FormInput:XF,FormInputIcon:XF,Forward:ACe,ForwardIcon:ACe,Frame:xCe,FrameIcon:xCe,Framer:SCe,FramerIcon:SCe,Frown:CCe,FrownIcon:CCe,Fuel:QCe,FuelIcon:QCe,Fullscreen:zCe,FullscreenIcon:zCe,FunctionSquare:LH,FunctionSquareIcon:LH,Funnel:gF,FunnelIcon:gF,FunnelPlus:ECe,FunnelPlusIcon:ECe,FunnelX:mF,FunnelXIcon:mF,GalleryHorizontal:kCe,GalleryHorizontalEnd:LCe,GalleryHorizontalEndIcon:LCe,GalleryHorizontalIcon:kCe,GalleryThumbnails:RCe,GalleryThumbnailsIcon:RCe,GalleryVertical:DCe,GalleryVerticalEnd:NCe,GalleryVerticalEndIcon:NCe,GalleryVerticalIcon:DCe,Gamepad:ICe,Gamepad2:PCe,Gamepad2Icon:PCe,GamepadIcon:ICe,GanttChart:pq,GanttChartIcon:pq,GanttChartSquare:JO,GanttChartSquareIcon:JO,Gauge:jCe,GaugeCircle:kq,GaugeCircleIcon:kq,GaugeIcon:jCe,Gavel:qCe,GavelIcon:qCe,Gem:FCe,GemIcon:FCe,Ghost:HCe,GhostIcon:HCe,Gift:BCe,GiftIcon:BCe,GitBranch:WCe,GitBranchIcon:WCe,GitBranchPlus:$Ce,GitBranchPlusIcon:$Ce,GitCommit:bF,GitCommitHorizontal:bF,GitCommitHorizontalIcon:bF,GitCommitIcon:bF,GitCommitVertical:VCe,GitCommitVerticalIcon:VCe,GitCompare:GCe,GitCompareArrows:UCe,GitCompareArrowsIcon:UCe,GitCompareIcon:GCe,GitFork:XCe,GitForkIcon:XCe,GitGraph:KCe,GitGraphIcon:KCe,GitMerge:YCe,GitMergeIcon:YCe,GitPullRequest:rQe,GitPullRequestArrow:eQe,GitPullRequestArrowIcon:eQe,GitPullRequestClosed:ZCe,GitPullRequestClosedIcon:ZCe,GitPullRequestCreate:tQe,GitPullRequestCreateArrow:JCe,GitPullRequestCreateArrowIcon:JCe,GitPullRequestCreateIcon:tQe,GitPullRequestDraft:nQe,GitPullRequestDraftIcon:nQe,GitPullRequestIcon:rQe,Github:iQe,GithubIcon:iQe,Gitlab:sQe,GitlabIcon:sQe,GlassWater:oQe,GlassWaterIcon:oQe,Glasses:aQe,GlassesIcon:aQe,Globe:cQe,Globe2:nF,Globe2Icon:nF,GlobeIcon:cQe,GlobeLock:lQe,GlobeLockIcon:lQe,Goal:uQe,GoalIcon:uQe,Grab:dQe,GrabIcon:dQe,GraduationCap:fQe,GraduationCapIcon:fQe,Grape:hQe,GrapeIcon:hQe,Grid:ZO,Grid2X2:MF,Grid2X2Check:vF,Grid2X2CheckIcon:vF,Grid2X2Icon:MF,Grid2X2Plus:yF,Grid2X2PlusIcon:yF,Grid2X2X:TF,Grid2X2XIcon:TF,Grid2x2:MF,Grid2x2Check:vF,Grid2x2CheckIcon:vF,Grid2x2Icon:MF,Grid2x2Plus:yF,Grid2x2PlusIcon:yF,Grid2x2X:TF,Grid2x2XIcon:TF,Grid3X3:ZO,Grid3X3Icon:ZO,Grid3x3:ZO,Grid3x3Icon:ZO,GridIcon:ZO,Grip:mQe,GripHorizontal:pQe,GripHorizontalIcon:pQe,GripIcon:mQe,GripVertical:gQe,GripVerticalIcon:gQe,Group:bQe,GroupIcon:bQe,Guitar:vQe,GuitarIcon:vQe,Ham:yQe,HamIcon:yQe,Hammer:TQe,HammerIcon:TQe,Hand:AQe,HandCoins:MQe,HandCoinsIcon:MQe,HandHeart:wQe,HandHeartIcon:wQe,HandHelping:wF,HandHelpingIcon:wF,HandIcon:AQe,HandMetal:_Qe,HandMetalIcon:_Qe,HandPlatter:OQe,HandPlatterIcon:OQe,Handshake:SQe,HandshakeIcon:SQe,HardDrive:QQe,HardDriveDownload:xQe,HardDriveDownloadIcon:xQe,HardDriveIcon:QQe,HardDriveUpload:CQe,HardDriveUploadIcon:CQe,HardHat:zQe,HardHatIcon:zQe,Hash:EQe,HashIcon:EQe,Haze:LQe,HazeIcon:LQe,HdmiPort:kQe,HdmiPortIcon:kQe,Heading:qQe,Heading1:RQe,Heading1Icon:RQe,Heading2:NQe,Heading2Icon:NQe,Heading3:DQe,Heading3Icon:DQe,Heading4:PQe,Heading4Icon:PQe,Heading5:IQe,Heading5Icon:IQe,Heading6:jQe,Heading6Icon:jQe,HeadingIcon:qQe,HeadphoneOff:FQe,HeadphoneOffIcon:FQe,Headphones:HQe,HeadphonesIcon:HQe,Headset:BQe,HeadsetIcon:BQe,Heart:KQe,HeartCrack:WQe,HeartCrackIcon:WQe,HeartHandshake:$Qe,HeartHandshakeIcon:$Qe,HeartIcon:KQe,HeartMinus:VQe,HeartMinusIcon:VQe,HeartOff:UQe,HeartOffIcon:UQe,HeartPlus:GQe,HeartPlusIcon:GQe,HeartPulse:XQe,HeartPulseIcon:XQe,Heater:YQe,HeaterIcon:YQe,HelpCircle:Rq,HelpCircleIcon:Rq,HelpingHand:wF,HelpingHandIcon:wF,Hexagon:ZQe,HexagonIcon:ZQe,Highlighter:JQe,HighlighterIcon:JQe,History:eze,HistoryIcon:eze,Home:_F,HomeIcon:_F,Hop:nze,HopIcon:nze,HopOff:tze,HopOffIcon:tze,Hospital:rze,HospitalIcon:rze,Hotel:ize,HotelIcon:ize,Hourglass:oze,HourglassIcon:oze,House:_F,HouseIcon:_F,HousePlug:sze,HousePlugIcon:sze,HousePlus:aze,HousePlusIcon:aze,HouseWifi:lze,HouseWifiIcon:lze,IceCream:AF,IceCream2:OF,IceCream2Icon:OF,IceCreamBowl:OF,IceCreamBowlIcon:OF,IceCreamCone:AF,IceCreamConeIcon:AF,IceCreamIcon:AF,Icon:Txr,IdCard:uze,IdCardIcon:uze,Image:mze,ImageDown:cze,ImageDownIcon:cze,ImageIcon:mze,ImageMinus:dze,ImageMinusIcon:dze,ImageOff:hze,ImageOffIcon:hze,ImagePlay:fze,ImagePlayIcon:fze,ImagePlus:pze,ImagePlusIcon:pze,ImageUp:gze,ImageUpIcon:gze,ImageUpscale:bze,ImageUpscaleIcon:bze,Images:vze,ImagesIcon:vze,Import:yze,ImportIcon:yze,Inbox:Tze,InboxIcon:Tze,Indent:SF,IndentDecrease:xF,IndentDecreaseIcon:xF,IndentIcon:SF,IndentIncrease:SF,IndentIncreaseIcon:SF,IndianRupee:Mze,IndianRupeeIcon:Mze,Infinity:wze,InfinityIcon:wze,Info:_ze,InfoIcon:_ze,Inspect:IH,InspectIcon:IH,InspectionPanel:Oze,InspectionPanelIcon:Oze,Instagram:Aze,InstagramIcon:Aze,Italic:xze,ItalicIcon:xze,IterationCcw:Sze,IterationCcwIcon:Sze,IterationCw:Cze,IterationCwIcon:Cze,JapaneseYen:zze,JapaneseYenIcon:zze,Joystick:Qze,JoystickIcon:Qze,Kanban:Eze,KanbanIcon:Eze,KanbanSquare:kH,KanbanSquareDashed:xH,KanbanSquareDashedIcon:xH,KanbanSquareIcon:kH,Key:Rze,KeyIcon:Rze,KeyRound:Lze,KeyRoundIcon:Lze,KeySquare:kze,KeySquareIcon:kze,Keyboard:Pze,KeyboardIcon:Pze,KeyboardMusic:Nze,KeyboardMusicIcon:Nze,KeyboardOff:Dze,KeyboardOffIcon:Dze,Lamp:Bze,LampCeiling:Ize,LampCeilingIcon:Ize,LampDesk:jze,LampDeskIcon:jze,LampFloor:qze,LampFloorIcon:qze,LampIcon:Bze,LampWallDown:Fze,LampWallDownIcon:Fze,LampWallUp:Hze,LampWallUpIcon:Hze,LandPlot:Wze,LandPlotIcon:Wze,Landmark:$ze,LandmarkIcon:$ze,Languages:Vze,LanguagesIcon:Vze,Laptop:Gze,Laptop2:CF,Laptop2Icon:CF,LaptopIcon:Gze,LaptopMinimal:CF,LaptopMinimalCheck:Uze,LaptopMinimalCheckIcon:Uze,LaptopMinimalIcon:CF,Lasso:Kze,LassoIcon:Kze,LassoSelect:Xze,LassoSelectIcon:Xze,Laugh:Yze,LaughIcon:Yze,Layers:QF,Layers2:Zze,Layers2Icon:Zze,Layers3:QF,Layers3Icon:QF,LayersIcon:QF,Layout:$F,LayoutDashboard:Jze,LayoutDashboardIcon:Jze,LayoutGrid:eEe,LayoutGridIcon:eEe,LayoutIcon:$F,LayoutList:tEe,LayoutListIcon:tEe,LayoutPanelLeft:nEe,LayoutPanelLeftIcon:nEe,LayoutPanelTop:rEe,LayoutPanelTopIcon:rEe,LayoutTemplate:iEe,LayoutTemplateIcon:iEe,Leaf:oEe,LeafIcon:oEe,LeafyGreen:sEe,LeafyGreenIcon:sEe,Lectern:aEe,LecternIcon:aEe,LetterText:cEe,LetterTextIcon:cEe,Library:uEe,LibraryBig:lEe,LibraryBigIcon:lEe,LibraryIcon:uEe,LibrarySquare:RH,LibrarySquareIcon:RH,LifeBuoy:dEe,LifeBuoyIcon:dEe,Ligature:hEe,LigatureIcon:hEe,Lightbulb:pEe,LightbulbIcon:pEe,LightbulbOff:fEe,LightbulbOffIcon:fEe,LineChart:dq,LineChartIcon:dq,Link:bEe,Link2:mEe,Link2Icon:mEe,Link2Off:gEe,Link2OffIcon:gEe,LinkIcon:bEe,Linkedin:vEe,LinkedinIcon:vEe,List:NEe,ListCheck:yEe,ListCheckIcon:yEe,ListChecks:TEe,ListChecksIcon:TEe,ListCollapse:MEe,ListCollapseIcon:MEe,ListEnd:wEe,ListEndIcon:wEe,ListFilter:OEe,ListFilterIcon:OEe,ListFilterPlus:_Ee,ListFilterPlusIcon:_Ee,ListIcon:NEe,ListMinus:AEe,ListMinusIcon:AEe,ListMusic:xEe,ListMusicIcon:xEe,ListOrdered:SEe,ListOrderedIcon:SEe,ListPlus:CEe,ListPlusIcon:CEe,ListRestart:QEe,ListRestartIcon:QEe,ListStart:zEe,ListStartIcon:zEe,ListTodo:EEe,ListTodoIcon:EEe,ListTree:LEe,ListTreeIcon:LEe,ListVideo:kEe,ListVideoIcon:kEe,ListX:REe,ListXIcon:REe,Loader:PEe,Loader2:zF,Loader2Icon:zF,LoaderCircle:zF,LoaderCircleIcon:zF,LoaderIcon:PEe,LoaderPinwheel:DEe,LoaderPinwheelIcon:DEe,Locate:qEe,LocateFixed:IEe,LocateFixedIcon:IEe,LocateIcon:qEe,LocateOff:jEe,LocateOffIcon:jEe,LocationEdit:FEe,LocationEditIcon:FEe,Lock:BEe,LockIcon:BEe,LockKeyhole:HEe,LockKeyholeIcon:HEe,LockKeyholeOpen:EF,LockKeyholeOpenIcon:EF,LockOpen:LF,LockOpenIcon:LF,LogIn:WEe,LogInIcon:WEe,LogOut:$Ee,LogOutIcon:$Ee,Logs:VEe,LogsIcon:VEe,Lollipop:UEe,LollipopIcon:UEe,LucideAArrowDown:Nve,LucideAArrowUp:Dve,LucideALargeSmall:Pve,LucideAccessibility:Ive,LucideActivity:jve,LucideActivitySquare:iH,LucideAirVent:qve,LucideAirplay:Fve,LucideAlarmCheck:Hj,LucideAlarmClock:Bve,LucideAlarmClockCheck:Hj,LucideAlarmClockMinus:Bj,LucideAlarmClockOff:Hve,LucideAlarmClockPlus:Wj,LucideAlarmMinus:Bj,LucideAlarmPlus:Wj,LucideAlarmSmoke:Wve,LucideAlbum:$ve,LucideAlertCircle:bq,LucideAlertOctagon:NF,LucideAlertTriangle:sB,LucideAlignCenter:Gve,LucideAlignCenterHorizontal:Vve,LucideAlignCenterVertical:Uve,LucideAlignEndHorizontal:Xve,LucideAlignEndVertical:Kve,LucideAlignHorizontalDistributeCenter:Yve,LucideAlignHorizontalDistributeEnd:Zve,LucideAlignHorizontalDistributeStart:Jve,LucideAlignHorizontalJustifyCenter:e9e,LucideAlignHorizontalJustifyEnd:t9e,LucideAlignHorizontalJustifyStart:n9e,LucideAlignHorizontalSpaceAround:r9e,LucideAlignHorizontalSpaceBetween:i9e,LucideAlignJustify:s9e,LucideAlignLeft:o9e,LucideAlignRight:a9e,LucideAlignStartHorizontal:l9e,LucideAlignStartVertical:c9e,LucideAlignVerticalDistributeCenter:u9e,LucideAlignVerticalDistributeEnd:d9e,LucideAlignVerticalDistributeStart:h9e,LucideAlignVerticalJustifyCenter:f9e,LucideAlignVerticalJustifyEnd:p9e,LucideAlignVerticalJustifyStart:g9e,LucideAlignVerticalSpaceAround:m9e,LucideAlignVerticalSpaceBetween:b9e,LucideAmbulance:v9e,LucideAmpersand:y9e,LucideAmpersands:T9e,LucideAmphora:M9e,LucideAnchor:w9e,LucideAngry:O9e,LucideAnnoyed:_9e,LucideAntenna:A9e,LucideAnvil:x9e,LucideAperture:S9e,LucideAppWindow:Q9e,LucideAppWindowMac:C9e,LucideApple:E9e,LucideArchive:k9e,LucideArchiveRestore:z9e,LucideArchiveX:L9e,LucideAreaChart:iq,LucideArmchair:R9e,LucideArrowBigDown:D9e,LucideArrowBigDownDash:N9e,LucideArrowBigLeft:I9e,LucideArrowBigLeftDash:P9e,LucideArrowBigRight:q9e,LucideArrowBigRightDash:j9e,LucideArrowBigUp:H9e,LucideArrowBigUpDash:F9e,LucideArrowDown:Z9e,LucideArrowDown01:B9e,LucideArrowDown10:W9e,LucideArrowDownAZ:$j,LucideArrowDownAz:$j,LucideArrowDownCircle:vq,LucideArrowDownFromLine:$9e,LucideArrowDownLeft:V9e,LucideArrowDownLeftFromCircle:Tq,LucideArrowDownLeftFromSquare:cH,LucideArrowDownLeftSquare:oH,LucideArrowDownNarrowWide:U9e,LucideArrowDownRight:X9e,LucideArrowDownRightFromCircle:Mq,LucideArrowDownRightFromSquare:uH,LucideArrowDownRightSquare:sH,LucideArrowDownSquare:aH,LucideArrowDownToDot:G9e,LucideArrowDownToLine:K9e,LucideArrowDownUp:Y9e,LucideArrowDownWideNarrow:Uj,LucideArrowDownZA:Vj,LucideArrowDownZa:Vj,LucideArrowLeft:nye,LucideArrowLeftCircle:yq,LucideArrowLeftFromLine:J9e,LucideArrowLeftRight:eye,LucideArrowLeftSquare:lH,LucideArrowLeftToLine:tye,LucideArrowRight:sye,LucideArrowRightCircle:Oq,LucideArrowRightFromLine:rye,LucideArrowRightLeft:iye,LucideArrowRightSquare:hH,LucideArrowRightToLine:oye,LucideArrowUp:mye,LucideArrowUp01:aye,LucideArrowUp10:lye,LucideArrowUpAZ:Gj,LucideArrowUpAz:Gj,LucideArrowUpCircle:Aq,LucideArrowUpDown:cye,LucideArrowUpFromDot:uye,LucideArrowUpFromLine:dye,LucideArrowUpLeft:hye,LucideArrowUpLeftFromCircle:wq,LucideArrowUpLeftFromSquare:dH,LucideArrowUpLeftSquare:fH,LucideArrowUpNarrowWide:Xj,LucideArrowUpRight:fye,LucideArrowUpRightFromCircle:_q,LucideArrowUpRightFromSquare:pH,LucideArrowUpRightSquare:gH,LucideArrowUpSquare:mH,LucideArrowUpToLine:pye,LucideArrowUpWideNarrow:gye,LucideArrowUpZA:Kj,LucideArrowUpZa:Kj,LucideArrowsUpFromLine:bye,LucideAsterisk:vye,LucideAsteriskSquare:bH,LucideAtSign:yye,LucideAtom:Tye,LucideAudioLines:Mye,LucideAudioWaveform:wye,LucideAward:_ye,LucideAxe:Oye,LucideAxis3D:Yj,LucideAxis3d:Yj,LucideBaby:xye,LucideBackpack:Aye,LucideBadge:Fye,LucideBadgeAlert:Cye,LucideBadgeCent:Sye,LucideBadgeCheck:Zj,LucideBadgeDollarSign:zye,LucideBadgeEuro:Qye,LucideBadgeHelp:Eye,LucideBadgeIndianRupee:Lye,LucideBadgeInfo:kye,LucideBadgeJapaneseYen:Rye,LucideBadgeMinus:Nye,LucideBadgePercent:Dye,LucideBadgePlus:Pye,LucideBadgePoundSterling:jye,LucideBadgeRussianRuble:Iye,LucideBadgeSwissFranc:qye,LucideBadgeX:Hye,LucideBaggageClaim:Bye,LucideBan:Wye,LucideBanana:$ye,LucideBandage:Vye,LucideBanknote:Kye,LucideBanknoteArrowDown:Uye,LucideBanknoteArrowUp:Gye,LucideBanknoteX:Xye,LucideBarChart:hq,LucideBarChart2:fq,LucideBarChart3:uq,LucideBarChart4:cq,LucideBarChartBig:lq,LucideBarChartHorizontal:sq,LucideBarChartHorizontalBig:oq,LucideBarcode:Yye,LucideBaseline:Zye,LucideBath:Jye,LucideBattery:sTe,LucideBatteryCharging:eTe,LucideBatteryFull:tTe,LucideBatteryLow:nTe,LucideBatteryMedium:rTe,LucideBatteryPlus:iTe,LucideBatteryWarning:oTe,LucideBeaker:lTe,LucideBean:uTe,LucideBeanOff:aTe,LucideBed:hTe,LucideBedDouble:cTe,LucideBedSingle:dTe,LucideBeef:fTe,LucideBeer:pTe,LucideBeerOff:gTe,LucideBell:wTe,LucideBellDot:mTe,LucideBellElectric:bTe,LucideBellMinus:vTe,LucideBellOff:yTe,LucideBellPlus:TTe,LucideBellRing:MTe,LucideBetweenHorizonalEnd:Jj,LucideBetweenHorizonalStart:eq,LucideBetweenHorizontalEnd:Jj,LucideBetweenHorizontalStart:eq,LucideBetweenVerticalEnd:_Te,LucideBetweenVerticalStart:OTe,LucideBicepsFlexed:ATe,LucideBike:xTe,LucideBinary:STe,LucideBinoculars:CTe,LucideBiohazard:QTe,LucideBird:zTe,LucideBitcoin:ETe,LucideBlend:kTe,LucideBlinds:LTe,LucideBlocks:RTe,LucideBluetooth:ITe,LucideBluetoothConnected:NTe,LucideBluetoothOff:DTe,LucideBluetoothSearching:PTe,LucideBold:jTe,LucideBolt:qTe,LucideBomb:FTe,LucideBone:HTe,LucideBook:dMe,LucideBookA:BTe,LucideBookAudio:WTe,LucideBookCheck:$Te,LucideBookCopy:VTe,LucideBookDashed:tq,LucideBookDown:UTe,LucideBookHeadphones:GTe,LucideBookHeart:XTe,LucideBookImage:KTe,LucideBookKey:ZTe,LucideBookLock:YTe,LucideBookMarked:JTe,LucideBookMinus:eMe,LucideBookOpen:rMe,LucideBookOpenCheck:tMe,LucideBookOpenText:nMe,LucideBookPlus:iMe,LucideBookTemplate:tq,LucideBookText:oMe,LucideBookType:sMe,LucideBookUp:cMe,LucideBookUp2:aMe,LucideBookUser:lMe,LucideBookX:uMe,LucideBookmark:mMe,LucideBookmarkCheck:hMe,LucideBookmarkMinus:pMe,LucideBookmarkPlus:fMe,LucideBookmarkX:gMe,LucideBoomBox:bMe,LucideBot:TMe,LucideBotMessageSquare:vMe,LucideBotOff:yMe,LucideBowArrow:MMe,LucideBox:wMe,LucideBoxSelect:CH,LucideBoxes:_Me,LucideBraces:nq,LucideBrackets:OMe,LucideBrain:SMe,LucideBrainCircuit:AMe,LucideBrainCog:xMe,LucideBrickWall:QMe,LucideBrickWallFire:CMe,LucideBriefcase:kMe,LucideBriefcaseBusiness:zMe,LucideBriefcaseConveyorBelt:EMe,LucideBriefcaseMedical:LMe,LucideBringToFront:RMe,LucideBrush:NMe,LucideBubbles:DMe,LucideBug:jMe,LucideBugOff:PMe,LucideBugPlay:IMe,LucideBuilding:FMe,LucideBuilding2:qMe,LucideBus:BMe,LucideBusFront:HMe,LucideCable:$Me,LucideCableCar:WMe,LucideCake:UMe,LucideCakeSlice:VMe,LucideCalculator:GMe,LucideCalendar:gwe,LucideCalendar1:XMe,LucideCalendarArrowDown:KMe,LucideCalendarArrowUp:YMe,LucideCalendarCheck:JMe,LucideCalendarCheck2:ZMe,LucideCalendarClock:ewe,LucideCalendarCog:twe,LucideCalendarDays:nwe,LucideCalendarFold:rwe,LucideCalendarHeart:iwe,LucideCalendarMinus:swe,LucideCalendarMinus2:owe,LucideCalendarOff:awe,LucideCalendarPlus:cwe,LucideCalendarPlus2:lwe,LucideCalendarRange:uwe,LucideCalendarSearch:dwe,LucideCalendarSync:hwe,LucideCalendarX:pwe,LucideCalendarX2:fwe,LucideCamera:vwe,LucideCameraOff:mwe,LucideCandlestickChart:aq,LucideCandy:Twe,LucideCandyCane:bwe,LucideCandyOff:ywe,LucideCannabis:Mwe,LucideCaptions:rq,LucideCaptionsOff:wwe,LucideCar:Owe,LucideCarFront:_we,LucideCarTaxiFront:Awe,LucideCaravan:xwe,LucideCarrot:Cwe,LucideCaseLower:Swe,LucideCaseSensitive:Qwe,LucideCaseUpper:zwe,LucideCassetteTape:Ewe,LucideCast:Lwe,LucideCastle:kwe,LucideCat:Rwe,LucideCctv:Nwe,LucideChartArea:iq,LucideChartBar:sq,LucideChartBarBig:oq,LucideChartBarDecreasing:Dwe,LucideChartBarIncreasing:Pwe,LucideChartBarStacked:Iwe,LucideChartCandlestick:aq,LucideChartColumn:uq,LucideChartColumnBig:lq,LucideChartColumnDecreasing:jwe,LucideChartColumnIncreasing:cq,LucideChartColumnStacked:qwe,LucideChartGantt:Fwe,LucideChartLine:dq,LucideChartNetwork:Hwe,LucideChartNoAxesColumn:fq,LucideChartNoAxesColumnDecreasing:Bwe,LucideChartNoAxesColumnIncreasing:hq,LucideChartNoAxesCombined:Wwe,LucideChartNoAxesGantt:pq,LucideChartPie:gq,LucideChartScatter:mq,LucideChartSpline:$we,LucideCheck:Fle,LucideCheckCheck:Vwe,LucideCheckCircle:Sq,LucideCheckCircle2:xq,LucideCheckSquare:yH,LucideCheckSquare2:TH,LucideChefHat:Uwe,LucideCherry:Gwe,LucideChevronDown:tee,LucideChevronDownCircle:Cq,LucideChevronDownSquare:MH,LucideChevronFirst:Xwe,LucideChevronLast:Kwe,LucideChevronLeft:Ywe,LucideChevronLeftCircle:Qq,LucideChevronLeftSquare:wH,LucideChevronRight:Zwe,LucideChevronRightCircle:zq,LucideChevronRightSquare:_H,LucideChevronUp:Hle,LucideChevronUpCircle:Eq,LucideChevronUpSquare:OH,LucideChevronsDown:Jwe,LucideChevronsDownUp:e_e,LucideChevronsLeft:r_e,LucideChevronsLeftRight:n_e,LucideChevronsLeftRightEllipsis:t_e,LucideChevronsRight:o_e,LucideChevronsRightLeft:i_e,LucideChevronsUp:s_e,LucideChevronsUpDown:Ble,LucideChrome:a_e,LucideChurch:l_e,LucideCigarette:c_e,LucideCigaretteOff:u_e,LucideCircle:Wle,LucideCircleAlert:bq,LucideCircleArrowDown:vq,LucideCircleArrowLeft:yq,LucideCircleArrowOutDownLeft:Tq,LucideCircleArrowOutDownRight:Mq,LucideCircleArrowOutUpLeft:wq,LucideCircleArrowOutUpRight:_q,LucideCircleArrowRight:Oq,LucideCircleArrowUp:Aq,LucideCircleCheck:xq,LucideCircleCheckBig:Sq,LucideCircleChevronDown:Cq,LucideCircleChevronLeft:Qq,LucideCircleChevronRight:zq,LucideCircleChevronUp:Eq,LucideCircleDashed:d_e,LucideCircleDivide:Lq,LucideCircleDollarSign:h_e,LucideCircleDot:g_e,LucideCircleDotDashed:f_e,LucideCircleEllipsis:p_e,LucideCircleEqual:m_e,LucideCircleFadingArrowUp:b_e,LucideCircleFadingPlus:v_e,LucideCircleGauge:kq,LucideCircleHelp:Rq,LucideCircleMinus:Nq,LucideCircleOff:y_e,LucideCircleParking:Pq,LucideCircleParkingOff:Dq,LucideCirclePause:Iq,LucideCirclePercent:qq,LucideCirclePlay:jq,LucideCirclePlus:Fq,LucideCirclePower:Hq,LucideCircleSlash:T_e,LucideCircleSlash2:Bq,LucideCircleSlashed:Bq,LucideCircleSmall:M_e,LucideCircleStop:Wq,LucideCircleUser:Vq,LucideCircleUserRound:$q,LucideCircleX:vk,LucideCircuitBoard:w_e,LucideCitrus:__e,LucideClapperboard:O_e,LucideClipboard:k_e,LucideClipboardCheck:A_e,LucideClipboardCopy:x_e,LucideClipboardEdit:Gq,LucideClipboardList:S_e,LucideClipboardMinus:C_e,LucideClipboardPaste:Q_e,LucideClipboardPen:Gq,LucideClipboardPenLine:Uq,LucideClipboardPlus:E_e,LucideClipboardSignature:Uq,LucideClipboardType:z_e,LucideClipboardX:L_e,LucideClock:K_e,LucideClock1:R_e,LucideClock10:N_e,LucideClock11:D_e,LucideClock12:P_e,LucideClock2:I_e,LucideClock3:j_e,LucideClock4:q_e,LucideClock5:F_e,LucideClock6:H_e,LucideClock7:B_e,LucideClock8:W_e,LucideClock9:$_e,LucideClockAlert:V_e,LucideClockArrowDown:U_e,LucideClockArrowUp:G_e,LucideClockFading:X_e,LucideCloud:dOe,LucideCloudAlert:Y_e,LucideCloudCog:Z_e,LucideCloudDownload:Xq,LucideCloudDrizzle:J_e,LucideCloudFog:eOe,LucideCloudHail:tOe,LucideCloudLightning:nOe,LucideCloudMoon:iOe,LucideCloudMoonRain:rOe,LucideCloudOff:oOe,LucideCloudRain:aOe,LucideCloudRainWind:sOe,LucideCloudSnow:lOe,LucideCloudSun:uOe,LucideCloudSunRain:cOe,LucideCloudUpload:Kq,LucideCloudy:hOe,LucideClover:fOe,LucideClub:pOe,LucideCode:$le,LucideCode2:Yq,LucideCodeSquare:AH,LucideCodeXml:Yq,LucideCodepen:gOe,LucideCodesandbox:mOe,LucideCoffee:bOe,LucideCog:vOe,LucideCoins:yOe,LucideColumns:Zq,LucideColumns2:Zq,LucideColumns3:Jq,LucideColumns3Cog:YO,LucideColumns4:TOe,LucideColumnsSettings:YO,LucideCombine:MOe,LucideCommand:wOe,LucideCompass:_Oe,LucideComponent:OOe,LucideComputer:AOe,LucideConciergeBell:xOe,LucideCone:SOe,LucideConstruction:COe,LucideContact:QOe,LucideContact2:eF,LucideContactRound:eF,LucideContainer:zOe,LucideContrast:EOe,LucideCookie:LOe,LucideCookingPot:kOe,LucideCopy:jOe,LucideCopyCheck:ROe,LucideCopyMinus:NOe,LucideCopyPlus:DOe,LucideCopySlash:POe,LucideCopyX:IOe,LucideCopyleft:qOe,LucideCopyright:FOe,LucideCornerDownLeft:HOe,LucideCornerDownRight:BOe,LucideCornerLeftDown:WOe,LucideCornerLeftUp:$Oe,LucideCornerRightDown:VOe,LucideCornerRightUp:UOe,LucideCornerUpLeft:GOe,LucideCornerUpRight:XOe,LucideCpu:KOe,LucideCreativeCommons:YOe,LucideCreditCard:ZOe,LucideCroissant:JOe,LucideCrop:eAe,LucideCross:tAe,LucideCrosshair:nAe,LucideCrown:rAe,LucideCuboid:iAe,LucideCupSoda:oAe,LucideCurlyBraces:nq,LucideCurrency:sAe,LucideCylinder:aAe,LucideDam:lAe,LucideDatabase:dAe,LucideDatabaseBackup:cAe,LucideDatabaseZap:uAe,LucideDecimalsArrowLeft:hAe,LucideDecimalsArrowRight:fAe,LucideDelete:pAe,LucideDessert:gAe,LucideDiameter:mAe,LucideDiamond:yAe,LucideDiamondMinus:bAe,LucideDiamondPercent:tF,LucideDiamondPlus:vAe,LucideDice1:TAe,LucideDice2:MAe,LucideDice3:wAe,LucideDice4:_Ae,LucideDice5:OAe,LucideDice6:AAe,LucideDices:xAe,LucideDiff:SAe,LucideDisc:zAe,LucideDisc2:CAe,LucideDisc3:QAe,LucideDiscAlbum:EAe,LucideDivide:LAe,LucideDivideCircle:Lq,LucideDivideSquare:QH,LucideDna:RAe,LucideDnaOff:kAe,LucideDock:NAe,LucideDog:DAe,LucideDollarSign:PAe,LucideDonut:IAe,LucideDoorClosed:jAe,LucideDoorOpen:qAe,LucideDot:FAe,LucideDotSquare:zH,LucideDownload:HAe,LucideDownloadCloud:Xq,LucideDraftingCompass:BAe,LucideDrama:WAe,LucideDribbble:$Ae,LucideDrill:VAe,LucideDroplet:GAe,LucideDropletOff:UAe,LucideDroplets:XAe,LucideDrum:KAe,LucideDrumstick:YAe,LucideDumbbell:ZAe,LucideEar:exe,LucideEarOff:JAe,LucideEarth:nF,LucideEarthLock:txe,LucideEclipse:nxe,LucideEdit:rv,LucideEdit2:UF,LucideEdit3:VF,LucideEgg:oxe,LucideEggFried:rxe,LucideEggOff:ixe,LucideEllipsis:rF,LucideEllipsisVertical:iF,LucideEqual:cxe,LucideEqualApproximately:sxe,LucideEqualNot:axe,LucideEqualSquare:EH,LucideEraser:lxe,LucideEthernetPort:uxe,LucideEuro:dxe,LucideExpand:hxe,LucideExternalLink:nee,LucideEye:gxe,LucideEyeClosed:fxe,LucideEyeOff:pxe,LucideFacebook:mxe,LucideFactory:bxe,LucideFan:vxe,LucideFastForward:yxe,LucideFeather:Mxe,LucideFence:Txe,LucideFerrisWheel:wxe,LucideFigma:_xe,LucideFile:ySe,LucideFileArchive:Oxe,LucideFileAudio:xxe,LucideFileAudio2:Axe,LucideFileAxis3D:oF,LucideFileAxis3d:oF,LucideFileBadge:Cxe,LucideFileBadge2:Sxe,LucideFileBarChart:sF,LucideFileBarChart2:aF,LucideFileBox:Qxe,LucideFileChartColumn:aF,LucideFileChartColumnIncreasing:sF,LucideFileChartLine:lF,LucideFileChartPie:cF,LucideFileCheck:Exe,LucideFileCheck2:zxe,LucideFileClock:Lxe,LucideFileCode:Rxe,LucideFileCode2:kxe,LucideFileCog:uF,LucideFileCog2:uF,LucideFileDiff:Nxe,LucideFileDigit:Dxe,LucideFileDown:Pxe,LucideFileEdit:hF,LucideFileHeart:Ixe,LucideFileImage:jxe,LucideFileInput:qxe,LucideFileJson:Hxe,LucideFileJson2:Fxe,LucideFileKey:Wxe,LucideFileKey2:Bxe,LucideFileLineChart:lF,LucideFileLock:Vxe,LucideFileLock2:$xe,LucideFileMinus:Gxe,LucideFileMinus2:Uxe,LucideFileMusic:Xxe,LucideFileOutput:Kxe,LucideFilePen:hF,LucideFilePenLine:dF,LucideFilePieChart:cF,LucideFilePlus:Zxe,LucideFilePlus2:Yxe,LucideFileQuestion:Jxe,LucideFileScan:eSe,LucideFileSearch:nSe,LucideFileSearch2:tSe,LucideFileSignature:dF,LucideFileSliders:rSe,LucideFileSpreadsheet:iSe,LucideFileStack:oSe,LucideFileSymlink:sSe,LucideFileTerminal:aSe,LucideFileText:lSe,LucideFileType:uSe,LucideFileType2:cSe,LucideFileUp:dSe,LucideFileUser:fSe,LucideFileVideo:pSe,LucideFileVideo2:hSe,LucideFileVolume:mSe,LucideFileVolume2:gSe,LucideFileWarning:bSe,LucideFileX:TSe,LucideFileX2:vSe,LucideFiles:MSe,LucideFilm:wSe,LucideFilter:gF,LucideFilterX:mF,LucideFingerprint:_Se,LucideFireExtinguisher:OSe,LucideFish:SSe,LucideFishOff:ASe,LucideFishSymbol:xSe,LucideFlag:ESe,LucideFlagOff:CSe,LucideFlagTriangleLeft:QSe,LucideFlagTriangleRight:zSe,LucideFlame:kSe,LucideFlameKindling:LSe,LucideFlashlight:NSe,LucideFlashlightOff:RSe,LucideFlaskConical:PSe,LucideFlaskConicalOff:DSe,LucideFlaskRound:ISe,LucideFlipHorizontal:qSe,LucideFlipHorizontal2:jSe,LucideFlipVertical:HSe,LucideFlipVertical2:FSe,LucideFlower:WSe,LucideFlower2:BSe,LucideFocus:$Se,LucideFoldHorizontal:VSe,LucideFoldVertical:USe,LucideFolder:MCe,LucideFolderArchive:GSe,LucideFolderCheck:XSe,LucideFolderClock:KSe,LucideFolderClosed:YSe,LucideFolderCode:ZSe,LucideFolderCog:fF,LucideFolderCog2:fF,LucideFolderDot:JSe,LucideFolderDown:eCe,LucideFolderEdit:pF,LucideFolderGit:nCe,LucideFolderGit2:tCe,LucideFolderHeart:rCe,LucideFolderInput:iCe,LucideFolderKanban:oCe,LucideFolderKey:sCe,LucideFolderLock:aCe,LucideFolderMinus:lCe,LucideFolderOpen:uCe,LucideFolderOpenDot:cCe,LucideFolderOutput:dCe,LucideFolderPen:pF,LucideFolderPlus:hCe,LucideFolderRoot:fCe,LucideFolderSearch:gCe,LucideFolderSearch2:pCe,LucideFolderSymlink:mCe,LucideFolderSync:bCe,LucideFolderTree:vCe,LucideFolderUp:yCe,LucideFolderX:TCe,LucideFolders:wCe,LucideFootprints:_Ce,LucideForkKnife:bB,LucideForkKnifeCrossed:mB,LucideForklift:OCe,LucideFormInput:XF,LucideForward:ACe,LucideFrame:xCe,LucideFramer:SCe,LucideFrown:CCe,LucideFuel:QCe,LucideFullscreen:zCe,LucideFunctionSquare:LH,LucideFunnel:gF,LucideFunnelPlus:ECe,LucideFunnelX:mF,LucideGalleryHorizontal:kCe,LucideGalleryHorizontalEnd:LCe,LucideGalleryThumbnails:RCe,LucideGalleryVertical:DCe,LucideGalleryVerticalEnd:NCe,LucideGamepad:ICe,LucideGamepad2:PCe,LucideGanttChart:pq,LucideGanttChartSquare:JO,LucideGauge:jCe,LucideGaugeCircle:kq,LucideGavel:qCe,LucideGem:FCe,LucideGhost:HCe,LucideGift:BCe,LucideGitBranch:WCe,LucideGitBranchPlus:$Ce,LucideGitCommit:bF,LucideGitCommitHorizontal:bF,LucideGitCommitVertical:VCe,LucideGitCompare:GCe,LucideGitCompareArrows:UCe,LucideGitFork:XCe,LucideGitGraph:KCe,LucideGitMerge:YCe,LucideGitPullRequest:rQe,LucideGitPullRequestArrow:eQe,LucideGitPullRequestClosed:ZCe,LucideGitPullRequestCreate:tQe,LucideGitPullRequestCreateArrow:JCe,LucideGitPullRequestDraft:nQe,LucideGithub:iQe,LucideGitlab:sQe,LucideGlassWater:oQe,LucideGlasses:aQe,LucideGlobe:cQe,LucideGlobe2:nF,LucideGlobeLock:lQe,LucideGoal:uQe,LucideGrab:dQe,LucideGraduationCap:fQe,LucideGrape:hQe,LucideGrid:ZO,LucideGrid2X2:MF,LucideGrid2X2Check:vF,LucideGrid2X2Plus:yF,LucideGrid2X2X:TF,LucideGrid2x2:MF,LucideGrid2x2Check:vF,LucideGrid2x2Plus:yF,LucideGrid2x2X:TF,LucideGrid3X3:ZO,LucideGrid3x3:ZO,LucideGrip:mQe,LucideGripHorizontal:pQe,LucideGripVertical:gQe,LucideGroup:bQe,LucideGuitar:vQe,LucideHam:yQe,LucideHammer:TQe,LucideHand:AQe,LucideHandCoins:MQe,LucideHandHeart:wQe,LucideHandHelping:wF,LucideHandMetal:_Qe,LucideHandPlatter:OQe,LucideHandshake:SQe,LucideHardDrive:QQe,LucideHardDriveDownload:xQe,LucideHardDriveUpload:CQe,LucideHardHat:zQe,LucideHash:EQe,LucideHaze:LQe,LucideHdmiPort:kQe,LucideHeading:qQe,LucideHeading1:RQe,LucideHeading2:NQe,LucideHeading3:DQe,LucideHeading4:PQe,LucideHeading5:IQe,LucideHeading6:jQe,LucideHeadphoneOff:FQe,LucideHeadphones:HQe,LucideHeadset:BQe,LucideHeart:KQe,LucideHeartCrack:WQe,LucideHeartHandshake:$Qe,LucideHeartMinus:VQe,LucideHeartOff:UQe,LucideHeartPlus:GQe,LucideHeartPulse:XQe,LucideHeater:YQe,LucideHelpCircle:Rq,LucideHelpingHand:wF,LucideHexagon:ZQe,LucideHighlighter:JQe,LucideHistory:eze,LucideHome:_F,LucideHop:nze,LucideHopOff:tze,LucideHospital:rze,LucideHotel:ize,LucideHourglass:oze,LucideHouse:_F,LucideHousePlug:sze,LucideHousePlus:aze,LucideHouseWifi:lze,LucideIceCream:AF,LucideIceCream2:OF,LucideIceCreamBowl:OF,LucideIceCreamCone:AF,LucideIdCard:uze,LucideImage:mze,LucideImageDown:cze,LucideImageMinus:dze,LucideImageOff:hze,LucideImagePlay:fze,LucideImagePlus:pze,LucideImageUp:gze,LucideImageUpscale:bze,LucideImages:vze,LucideImport:yze,LucideInbox:Tze,LucideIndent:SF,LucideIndentDecrease:xF,LucideIndentIncrease:SF,LucideIndianRupee:Mze,LucideInfinity:wze,LucideInfo:_ze,LucideInspect:IH,LucideInspectionPanel:Oze,LucideInstagram:Aze,LucideItalic:xze,LucideIterationCcw:Sze,LucideIterationCw:Cze,LucideJapaneseYen:zze,LucideJoystick:Qze,LucideKanban:Eze,LucideKanbanSquare:kH,LucideKanbanSquareDashed:xH,LucideKey:Rze,LucideKeyRound:Lze,LucideKeySquare:kze,LucideKeyboard:Pze,LucideKeyboardMusic:Nze,LucideKeyboardOff:Dze,LucideLamp:Bze,LucideLampCeiling:Ize,LucideLampDesk:jze,LucideLampFloor:qze,LucideLampWallDown:Fze,LucideLampWallUp:Hze,LucideLandPlot:Wze,LucideLandmark:$ze,LucideLanguages:Vze,LucideLaptop:Gze,LucideLaptop2:CF,LucideLaptopMinimal:CF,LucideLaptopMinimalCheck:Uze,LucideLasso:Kze,LucideLassoSelect:Xze,LucideLaugh:Yze,LucideLayers:QF,LucideLayers2:Zze,LucideLayers3:QF,LucideLayout:$F,LucideLayoutDashboard:Jze,LucideLayoutGrid:eEe,LucideLayoutList:tEe,LucideLayoutPanelLeft:nEe,LucideLayoutPanelTop:rEe,LucideLayoutTemplate:iEe,LucideLeaf:oEe,LucideLeafyGreen:sEe,LucideLectern:aEe,LucideLetterText:cEe,LucideLibrary:uEe,LucideLibraryBig:lEe,LucideLibrarySquare:RH,LucideLifeBuoy:dEe,LucideLigature:hEe,LucideLightbulb:pEe,LucideLightbulbOff:fEe,LucideLineChart:dq,LucideLink:bEe,LucideLink2:mEe,LucideLink2Off:gEe,LucideLinkedin:vEe,LucideList:NEe,LucideListCheck:yEe,LucideListChecks:TEe,LucideListCollapse:MEe,LucideListEnd:wEe,LucideListFilter:OEe,LucideListFilterPlus:_Ee,LucideListMinus:AEe,LucideListMusic:xEe,LucideListOrdered:SEe,LucideListPlus:CEe,LucideListRestart:QEe,LucideListStart:zEe,LucideListTodo:EEe,LucideListTree:LEe,LucideListVideo:kEe,LucideListX:REe,LucideLoader:PEe,LucideLoader2:zF,LucideLoaderCircle:zF,LucideLoaderPinwheel:DEe,LucideLocate:qEe,LucideLocateFixed:IEe,LucideLocateOff:jEe,LucideLocationEdit:FEe,LucideLock:BEe,LucideLockKeyhole:HEe,LucideLockKeyholeOpen:EF,LucideLockOpen:LF,LucideLogIn:WEe,LucideLogOut:$Ee,LucideLogs:VEe,LucideLollipop:UEe,LucideLuggage:GEe,LucideMSquare:NH,LucideMagnet:XEe,LucideMail:iLe,LucideMailCheck:YEe,LucideMailMinus:KEe,LucideMailOpen:ZEe,LucideMailPlus:JEe,LucideMailQuestion:eLe,LucideMailSearch:tLe,LucideMailWarning:nLe,LucideMailX:rLe,LucideMailbox:oLe,LucideMails:sLe,LucideMap:TLe,LucideMapPin:bLe,LucideMapPinCheck:lLe,LucideMapPinCheckInside:aLe,LucideMapPinHouse:cLe,LucideMapPinMinus:dLe,LucideMapPinMinusInside:uLe,LucideMapPinOff:hLe,LucideMapPinPlus:pLe,LucideMapPinPlusInside:fLe,LucideMapPinX:mLe,LucideMapPinXInside:gLe,LucideMapPinned:vLe,LucideMapPlus:yLe,LucideMars:wLe,LucideMarsStroke:MLe,LucideMartini:_Le,LucideMaximize:ALe,LucideMaximize2:OLe,LucideMedal:xLe,LucideMegaphone:SLe,LucideMegaphoneOff:CLe,LucideMeh:QLe,LucideMemoryStick:zLe,LucideMenu:ELe,LucideMenuSquare:DH,LucideMerge:LLe,LucideMessageCircle:BLe,LucideMessageCircleCode:kLe,LucideMessageCircleDashed:RLe,LucideMessageCircleHeart:NLe,LucideMessageCircleMore:DLe,LucideMessageCircleOff:PLe,LucideMessageCirclePlus:ILe,LucideMessageCircleQuestion:jLe,LucideMessageCircleReply:qLe,LucideMessageCircleWarning:FLe,LucideMessageCircleX:HLe,LucideMessageSquare:oke,LucideMessageSquareCode:WLe,LucideMessageSquareDashed:$Le,LucideMessageSquareDiff:VLe,LucideMessageSquareDot:ULe,LucideMessageSquareHeart:GLe,LucideMessageSquareLock:XLe,LucideMessageSquareMore:KLe,LucideMessageSquareOff:YLe,LucideMessageSquarePlus:ZLe,LucideMessageSquareQuote:JLe,LucideMessageSquareReply:eke,LucideMessageSquareShare:tke,LucideMessageSquareText:nke,LucideMessageSquareWarning:rke,LucideMessageSquareX:ike,LucideMessagesSquare:ske,LucideMic:lke,LucideMic2:kF,LucideMicOff:ake,LucideMicVocal:kF,LucideMicrochip:cke,LucideMicroscope:uke,LucideMicrowave:dke,LucideMilestone:hke,LucideMilk:pke,LucideMilkOff:fke,LucideMinimize:mke,LucideMinimize2:gke,LucideMinus:ree,LucideMinusCircle:Nq,LucideMinusSquare:PH,LucideMonitor:Cke,LucideMonitorCheck:bke,LucideMonitorCog:yke,LucideMonitorDot:vke,LucideMonitorDown:Tke,LucideMonitorOff:Mke,LucideMonitorPause:wke,LucideMonitorPlay:Oke,LucideMonitorSmartphone:_ke,LucideMonitorSpeaker:Ake,LucideMonitorStop:xke,LucideMonitorUp:Ske,LucideMonitorX:Qke,LucideMoon:Eke,LucideMoonStar:zke,LucideMoreHorizontal:rF,LucideMoreVertical:iF,LucideMountain:kke,LucideMountainSnow:Lke,LucideMouse:jke,LucideMouseOff:Rke,LucideMousePointer:Ike,LucideMousePointer2:Nke,LucideMousePointerBan:Dke,LucideMousePointerClick:Pke,LucideMousePointerSquareDashed:SH,LucideMove:Zke,LucideMove3D:RF,LucideMove3d:RF,LucideMoveDiagonal:Fke,LucideMoveDiagonal2:qke,LucideMoveDown:Wke,LucideMoveDownLeft:Hke,LucideMoveDownRight:Bke,LucideMoveHorizontal:$ke,LucideMoveLeft:Vke,LucideMoveRight:Uke,LucideMoveUp:Yke,LucideMoveUpLeft:Gke,LucideMoveUpRight:Xke,LucideMoveVertical:Kke,LucideMusic:nRe,LucideMusic2:Jke,LucideMusic3:eRe,LucideMusic4:tRe,LucideNavigation:sRe,LucideNavigation2:iRe,LucideNavigation2Off:rRe,LucideNavigationOff:oRe,LucideNetwork:aRe,LucideNewspaper:lRe,LucideNfc:cRe,LucideNonBinary:uRe,LucideNotebook:fRe,LucideNotebookPen:dRe,LucideNotebookTabs:hRe,LucideNotebookText:gRe,LucideNotepadText:mRe,LucideNotepadTextDashed:pRe,LucideNut:vRe,LucideNutOff:bRe,LucideOctagon:TRe,LucideOctagonAlert:NF,LucideOctagonMinus:yRe,LucideOctagonPause:DF,LucideOctagonX:PF,LucideOmega:MRe,LucideOption:_Re,LucideOrbit:wRe,LucideOrigami:ORe,LucideOutdent:xF,LucidePackage:ERe,LucidePackage2:ARe,LucidePackageCheck:xRe,LucidePackageMinus:SRe,LucidePackageOpen:CRe,LucidePackagePlus:QRe,LucidePackageSearch:zRe,LucidePackageX:LRe,LucidePaintBucket:kRe,LucidePaintRoller:RRe,LucidePaintbrush:NRe,LucidePaintbrush2:IF,LucidePaintbrushVertical:IF,LucidePalette:DRe,LucidePalmtree:oB,LucidePanelBottom:jRe,LucidePanelBottomClose:PRe,LucidePanelBottomDashed:jF,LucidePanelBottomInactive:jF,LucidePanelBottomOpen:IRe,LucidePanelLeft:yk,LucidePanelLeftClose:qF,LucidePanelLeftDashed:FF,LucidePanelLeftInactive:FF,LucidePanelLeftOpen:HF,LucidePanelRight:HRe,LucidePanelRightClose:qRe,LucidePanelRightDashed:BF,LucidePanelRightInactive:BF,LucidePanelRightOpen:FRe,LucidePanelTop:$Re,LucidePanelTopClose:BRe,LucidePanelTopDashed:WF,LucidePanelTopInactive:WF,LucidePanelTopOpen:WRe,LucidePanelsLeftBottom:VRe,LucidePanelsLeftRight:Jq,LucidePanelsRightBottom:URe,LucidePanelsTopBottom:ZF,LucidePanelsTopLeft:$F,LucidePaperclip:GRe,LucideParentheses:XRe,LucideParkingCircle:Pq,LucideParkingCircleOff:Dq,LucideParkingMeter:KRe,LucideParkingSquare:qH,LucideParkingSquareOff:jH,LucidePartyPopper:YRe,LucidePause:ZRe,LucidePauseCircle:Iq,LucidePauseOctagon:DF,LucidePawPrint:JRe,LucidePcCase:eNe,LucidePen:UF,LucidePenBox:rv,LucidePenLine:VF,LucidePenOff:tNe,LucidePenSquare:rv,LucidePenTool:nNe,LucidePencil:oNe,LucidePencilLine:rNe,LucidePencilOff:iNe,LucidePencilRuler:sNe,LucidePentagon:aNe,LucidePercent:lNe,LucidePercentCircle:qq,LucidePercentDiamond:tF,LucidePercentSquare:FH,LucidePersonStanding:cNe,LucidePhilippinePeso:uNe,LucidePhone:bNe,LucidePhoneCall:dNe,LucidePhoneForwarded:hNe,LucidePhoneIncoming:fNe,LucidePhoneMissed:pNe,LucidePhoneOff:gNe,LucidePhoneOutgoing:mNe,LucidePi:vNe,LucidePiSquare:HH,LucidePiano:yNe,LucidePickaxe:TNe,LucidePictureInPicture:wNe,LucidePictureInPicture2:MNe,LucidePieChart:gq,LucidePiggyBank:_Ne,LucidePilcrow:xNe,LucidePilcrowLeft:ONe,LucidePilcrowRight:ANe,LucidePilcrowSquare:BH,LucidePill:CNe,LucidePillBottle:SNe,LucidePin:zNe,LucidePinOff:QNe,LucidePipette:ENe,LucidePizza:kNe,LucidePlane:NNe,LucidePlaneLanding:LNe,LucidePlaneTakeoff:RNe,LucidePlay:DNe,LucidePlayCircle:jq,LucidePlaySquare:WH,LucidePlug:INe,LucidePlug2:PNe,LucidePlugZap:GF,LucidePlugZap2:GF,LucidePlus:iee,LucidePlusCircle:Fq,LucidePlusSquare:$H,LucidePocket:qNe,LucidePocketKnife:jNe,LucidePodcast:FNe,LucidePointer:HNe,LucidePointerOff:BNe,LucidePopcorn:WNe,LucidePopsicle:$Ne,LucidePoundSterling:UNe,LucidePower:GNe,LucidePowerCircle:Hq,LucidePowerOff:VNe,LucidePowerSquare:VH,LucidePresentation:XNe,LucidePrinter:YNe,LucidePrinterCheck:KNe,LucideProjector:ZNe,LucideProportions:JNe,LucidePuzzle:eDe,LucidePyramid:tDe,LucideQrCode:nDe,LucideQuote:rDe,LucideRabbit:iDe,LucideRadar:oDe,LucideRadiation:sDe,LucideRadical:aDe,LucideRadio:uDe,LucideRadioReceiver:lDe,LucideRadioTower:cDe,LucideRadius:dDe,LucideRailSymbol:hDe,LucideRainbow:fDe,LucideRat:pDe,LucideRatio:gDe,LucideReceipt:ODe,LucideReceiptCent:bDe,LucideReceiptEuro:mDe,LucideReceiptIndianRupee:vDe,LucideReceiptJapaneseYen:yDe,LucideReceiptPoundSterling:TDe,LucideReceiptRussianRuble:MDe,LucideReceiptSwissFranc:wDe,LucideReceiptText:_De,LucideRectangleEllipsis:XF,LucideRectangleGoggles:ADe,LucideRectangleHorizontal:xDe,LucideRectangleVertical:SDe,LucideRecycle:CDe,LucideRedo:LDe,LucideRedo2:QDe,LucideRedoDot:zDe,LucideRefreshCcw:kDe,LucideRefreshCcwDot:EDe,LucideRefreshCw:NDe,LucideRefreshCwOff:RDe,LucideRefrigerator:DDe,LucideRegex:IDe,LucideRemoveFormatting:PDe,LucideRepeat:FDe,LucideRepeat1:jDe,LucideRepeat2:qDe,LucideReplace:BDe,LucideReplaceAll:HDe,LucideReply:$De,LucideReplyAll:WDe,LucideRewind:VDe,LucideRibbon:UDe,LucideRocket:XDe,LucideRockingChair:GDe,LucideRollerCoaster:KDe,LucideRotate3D:KF,LucideRotate3d:KF,LucideRotateCcw:JDe,LucideRotateCcwKey:YDe,LucideRotateCcwSquare:ZDe,LucideRotateCw:tPe,LucideRotateCwSquare:ePe,LucideRoute:rPe,LucideRouteOff:nPe,LucideRouter:iPe,LucideRows:YF,LucideRows2:YF,LucideRows3:ZF,LucideRows4:oPe,LucideRss:sPe,LucideRuler:lPe,LucideRulerDimensionLine:aPe,LucideRussianRuble:cPe,LucideSailboat:uPe,LucideSalad:dPe,LucideSandwich:hPe,LucideSatellite:pPe,LucideSatelliteDish:fPe,LucideSaudiRiyal:gPe,LucideSave:vPe,LucideSaveAll:mPe,LucideSaveOff:bPe,LucideScale:yPe,LucideScale3D:JF,LucideScale3d:JF,LucideScaling:TPe,LucideScan:QPe,LucideScanBarcode:MPe,LucideScanEye:wPe,LucideScanFace:_Pe,LucideScanHeart:OPe,LucideScanLine:APe,LucideScanQrCode:xPe,LucideScanSearch:SPe,LucideScanText:CPe,LucideScatterChart:mq,LucideSchool:zPe,LucideSchool2:lB,LucideScissors:LPe,LucideScissorsLineDashed:EPe,LucideScissorsSquare:UH,LucideScissorsSquareDashedBottom:vH,LucideScreenShare:RPe,LucideScreenShareOff:kPe,LucideScroll:DPe,LucideScrollText:NPe,LucideSearch:Vle,LucideSearchCheck:PPe,LucideSearchCode:IPe,LucideSearchSlash:jPe,LucideSearchX:qPe,LucideSection:FPe,LucideSend:BPe,LucideSendHorizonal:eH,LucideSendHorizontal:eH,LucideSendToBack:HPe,LucideSeparatorHorizontal:WPe,LucideSeparatorVertical:$Pe,LucideServer:XPe,LucideServerCog:VPe,LucideServerCrash:UPe,LucideServerOff:GPe,LucideSettings:YPe,LucideSettings2:KPe,LucideShapes:ZPe,LucideShare:eIe,LucideShare2:JPe,LucideSheet:tIe,LucideShell:nIe,LucideShield:fIe,LucideShieldAlert:rIe,LucideShieldBan:iIe,LucideShieldCheck:oIe,LucideShieldClose:tH,LucideShieldEllipsis:sIe,LucideShieldHalf:aIe,LucideShieldMinus:lIe,LucideShieldOff:cIe,LucideShieldPlus:uIe,LucideShieldQuestion:dIe,LucideShieldUser:hIe,LucideShieldX:tH,LucideShip:gIe,LucideShipWheel:pIe,LucideShirt:mIe,LucideShoppingBag:bIe,LucideShoppingBasket:vIe,LucideShoppingCart:TIe,LucideShovel:yIe,LucideShowerHead:MIe,LucideShredder:wIe,LucideShrimp:_Ie,LucideShrink:AIe,LucideShrub:OIe,LucideShuffle:xIe,LucideSidebar:yk,LucideSidebarClose:qF,LucideSidebarOpen:HF,LucideSigma:SIe,LucideSigmaSquare:GH,LucideSignal:LIe,LucideSignalHigh:CIe,LucideSignalLow:QIe,LucideSignalMedium:zIe,LucideSignalZero:EIe,LucideSignature:kIe,LucideSignpost:NIe,LucideSignpostBig:RIe,LucideSiren:DIe,LucideSkipBack:PIe,LucideSkipForward:IIe,LucideSkull:jIe,LucideSlack:qIe,LucideSlash:FIe,LucideSlashSquare:XH,LucideSlice:HIe,LucideSliders:nH,LucideSlidersHorizontal:BIe,LucideSlidersVertical:nH,LucideSmartphone:VIe,LucideSmartphoneCharging:WIe,LucideSmartphoneNfc:$Ie,LucideSmile:GIe,LucideSmilePlus:UIe,LucideSnail:XIe,LucideSnowflake:KIe,LucideSofa:YIe,LucideSortAsc:Xj,LucideSortDesc:Uj,LucideSoup:ZIe,LucideSpace:JIe,LucideSpade:eje,LucideSparkle:tje,LucideSparkles:rH,LucideSpeaker:nje,LucideSpeech:rje,LucideSpellCheck:sje,LucideSpellCheck2:ije,LucideSpline:aje,LucideSplinePointer:oje,LucideSplit:lje,LucideSplitSquareHorizontal:KH,LucideSplitSquareVertical:YH,LucideSprayCan:cje,LucideSprout:uje,LucideSquare:bje,LucideSquareActivity:iH,LucideSquareArrowDown:aH,LucideSquareArrowDownLeft:oH,LucideSquareArrowDownRight:sH,LucideSquareArrowLeft:lH,LucideSquareArrowOutDownLeft:cH,LucideSquareArrowOutDownRight:uH,LucideSquareArrowOutUpLeft:dH,LucideSquareArrowOutUpRight:pH,LucideSquareArrowRight:hH,LucideSquareArrowUp:mH,LucideSquareArrowUpLeft:fH,LucideSquareArrowUpRight:gH,LucideSquareAsterisk:bH,LucideSquareBottomDashedScissors:vH,LucideSquareChartGantt:JO,LucideSquareCheck:TH,LucideSquareCheckBig:yH,LucideSquareChevronDown:MH,LucideSquareChevronLeft:wH,LucideSquareChevronRight:_H,LucideSquareChevronUp:OH,LucideSquareCode:AH,LucideSquareDashed:CH,LucideSquareDashedBottom:hje,LucideSquareDashedBottomCode:dje,LucideSquareDashedKanban:xH,LucideSquareDashedMousePointer:SH,LucideSquareDivide:QH,LucideSquareDot:zH,LucideSquareEqual:EH,LucideSquareFunction:LH,LucideSquareGanttChart:JO,LucideSquareKanban:kH,LucideSquareLibrary:RH,LucideSquareM:NH,LucideSquareMenu:DH,LucideSquareMinus:PH,LucideSquareMousePointer:IH,LucideSquareParking:qH,LucideSquareParkingOff:jH,LucideSquarePen:rv,LucideSquarePercent:FH,LucideSquarePi:HH,LucideSquarePilcrow:BH,LucideSquarePlay:WH,LucideSquarePlus:$H,LucideSquarePower:VH,LucideSquareRadical:fje,LucideSquareRoundCorner:pje,LucideSquareScissors:UH,LucideSquareSigma:GH,LucideSquareSlash:XH,LucideSquareSplitHorizontal:KH,LucideSquareSplitVertical:YH,LucideSquareSquare:gje,LucideSquareStack:mje,LucideSquareTerminal:ZH,LucideSquareUser:eB,LucideSquareUserRound:JH,LucideSquareX:tB,LucideSquaresExclude:vje,LucideSquaresIntersect:yje,LucideSquaresSubtract:Tje,LucideSquaresUnite:Mje,LucideSquircle:wje,LucideSquirrel:_je,LucideStamp:Oje,LucideStar:Sje,LucideStarHalf:Aje,LucideStarOff:xje,LucideStars:rH,LucideStepBack:Cje,LucideStepForward:Qje,LucideStethoscope:zje,LucideSticker:Eje,LucideStickyNote:Lje,LucideStopCircle:Wq,LucideStore:kje,LucideStretchHorizontal:Rje,LucideStretchVertical:Nje,LucideStrikethrough:Dje,LucideSubscript:Pje,LucideSubtitles:rq,LucideSun:Hje,LucideSunDim:Ije,LucideSunMedium:jje,LucideSunMoon:qje,LucideSunSnow:Fje,LucideSunrise:Bje,LucideSunset:Wje,LucideSuperscript:$je,LucideSwatchBook:Vje,LucideSwissFranc:Uje,LucideSwitchCamera:Gje,LucideSword:Xje,LucideSwords:Kje,LucideSyringe:Yje,LucideTable:oqe,LucideTable2:Zje,LucideTableCellsMerge:Jje,LucideTableCellsSplit:eqe,LucideTableColumnsSplit:tqe,LucideTableConfig:YO,LucideTableOfContents:nqe,LucideTableProperties:rqe,LucideTableRowsSplit:iqe,LucideTablet:lqe,LucideTabletSmartphone:sqe,LucideTablets:aqe,LucideTag:cqe,LucideTags:uqe,LucideTally1:dqe,LucideTally2:hqe,LucideTally3:fqe,LucideTally4:pqe,LucideTally5:gqe,LucideTangent:mqe,LucideTarget:bqe,LucideTelescope:vqe,LucideTent:Tqe,LucideTentTree:yqe,LucideTerminal:Mqe,LucideTerminalSquare:ZH,LucideTestTube:wqe,LucideTestTube2:nB,LucideTestTubeDiagonal:nB,LucideTestTubes:_qe,LucideText:Cqe,LucideTextCursor:Aqe,LucideTextCursorInput:Oqe,LucideTextQuote:xqe,LucideTextSearch:Sqe,LucideTextSelect:rB,LucideTextSelection:rB,LucideTheater:Qqe,LucideThermometer:Lqe,LucideThermometerSnowflake:zqe,LucideThermometerSun:Eqe,LucideThumbsDown:kqe,LucideThumbsUp:Rqe,LucideTicket:Fqe,LucideTicketCheck:Nqe,LucideTicketMinus:Dqe,LucideTicketPercent:Pqe,LucideTicketPlus:Iqe,LucideTicketSlash:jqe,LucideTicketX:qqe,LucideTickets:Bqe,LucideTicketsPlane:Hqe,LucideTimer:Vqe,LucideTimerOff:Wqe,LucideTimerReset:$qe,LucideToggleLeft:Uqe,LucideToggleRight:Gqe,LucideToilet:Xqe,LucideTornado:Kqe,LucideTorus:Yqe,LucideTouchpad:Jqe,LucideTouchpadOff:Zqe,LucideTowerControl:eFe,LucideToyBrick:tFe,LucideTractor:nFe,LucideTrafficCone:rFe,LucideTrain:iB,LucideTrainFront:oFe,LucideTrainFrontTunnel:iFe,LucideTrainTrack:aFe,LucideTramFront:iB,LucideTransgender:sFe,LucideTrash:lFe,LucideTrash2:Ule,LucideTreeDeciduous:cFe,LucideTreePalm:oB,LucideTreePine:uFe,LucideTrees:dFe,LucideTrello:hFe,LucideTrendingDown:fFe,LucideTrendingUp:gFe,LucideTrendingUpDown:pFe,LucideTriangle:vFe,LucideTriangleAlert:sB,LucideTriangleDashed:mFe,LucideTriangleRight:bFe,LucideTrophy:yFe,LucideTruck:MFe,LucideTruckElectric:TFe,LucideTurtle:wFe,LucideTv:OFe,LucideTv2:aB,LucideTvMinimal:aB,LucideTvMinimalPlay:_Fe,LucideTwitch:AFe,LucideTwitter:xFe,LucideType:SFe,LucideTypeOutline:CFe,LucideUmbrella:zFe,LucideUmbrellaOff:QFe,LucideUnderline:EFe,LucideUndo:kFe,LucideUndo2:LFe,LucideUndoDot:RFe,LucideUnfoldHorizontal:NFe,LucideUnfoldVertical:DFe,LucideUngroup:PFe,LucideUniversity:lB,LucideUnlink:jFe,LucideUnlink2:IFe,LucideUnlock:LF,LucideUnlockKeyhole:EF,LucideUnplug:qFe,LucideUpload:FFe,LucideUploadCloud:Kq,LucideUsb:HFe,LucideUser:JFe,LucideUser2:pB,LucideUserCheck:BFe,LucideUserCheck2:cB,LucideUserCircle:Vq,LucideUserCircle2:$q,LucideUserCog:WFe,LucideUserCog2:uB,LucideUserLock:$Fe,LucideUserMinus:VFe,LucideUserMinus2:dB,LucideUserPen:UFe,LucideUserPlus:GFe,LucideUserPlus2:hB,LucideUserRound:pB,LucideUserRoundCheck:cB,LucideUserRoundCog:uB,LucideUserRoundMinus:dB,LucideUserRoundPen:XFe,LucideUserRoundPlus:hB,LucideUserRoundSearch:KFe,LucideUserRoundX:fB,LucideUserSearch:YFe,LucideUserSquare:eB,LucideUserSquare2:JH,LucideUserX:ZFe,LucideUserX2:fB,LucideUsers:eHe,LucideUsers2:gB,LucideUsersRound:gB,LucideUtensils:bB,LucideUtensilsCrossed:mB,LucideUtilityPole:tHe,LucideVariable:nHe,LucideVault:rHe,LucideVegan:iHe,LucideVenetianMask:oHe,LucideVenus:aHe,LucideVenusAndMars:sHe,LucideVerified:Zj,LucideVibrate:cHe,LucideVibrateOff:lHe,LucideVideo:dHe,LucideVideoOff:uHe,LucideVideotape:hHe,LucideView:fHe,LucideVoicemail:pHe,LucideVolleyball:gHe,LucideVolume:THe,LucideVolume1:mHe,LucideVolume2:bHe,LucideVolumeOff:vHe,LucideVolumeX:yHe,LucideVote:MHe,LucideWallet:_He,LucideWallet2:vB,LucideWalletCards:wHe,LucideWalletMinimal:vB,LucideWallpaper:OHe,LucideWand:AHe,LucideWand2:yB,LucideWandSparkles:yB,LucideWarehouse:xHe,LucideWashingMachine:SHe,LucideWatch:CHe,LucideWaves:zHe,LucideWavesLadder:QHe,LucideWaypoints:EHe,LucideWebcam:LHe,LucideWebhook:NHe,LucideWebhookOff:kHe,LucideWeight:RHe,LucideWheat:PHe,LucideWheatOff:DHe,LucideWholeWord:IHe,LucideWifi:WHe,LucideWifiHigh:jHe,LucideWifiLow:qHe,LucideWifiOff:FHe,LucideWifiPen:HHe,LucideWifiZero:BHe,LucideWind:VHe,LucideWindArrowDown:$He,LucideWine:UHe,LucideWineOff:GHe,LucideWorkflow:XHe,LucideWorm:KHe,LucideWrapText:YHe,LucideWrench:ZHe,LucideX:Gle,LucideXCircle:vk,LucideXOctagon:PF,LucideXSquare:tB,LucideYoutube:JHe,LucideZap:tBe,LucideZapOff:eBe,LucideZoomIn:nBe,LucideZoomOut:rBe,Luggage:GEe,LuggageIcon:GEe,MSquare:NH,MSquareIcon:NH,Magnet:XEe,MagnetIcon:XEe,Mail:iLe,MailCheck:YEe,MailCheckIcon:YEe,MailIcon:iLe,MailMinus:KEe,MailMinusIcon:KEe,MailOpen:ZEe,MailOpenIcon:ZEe,MailPlus:JEe,MailPlusIcon:JEe,MailQuestion:eLe,MailQuestionIcon:eLe,MailSearch:tLe,MailSearchIcon:tLe,MailWarning:nLe,MailWarningIcon:nLe,MailX:rLe,MailXIcon:rLe,Mailbox:oLe,MailboxIcon:oLe,Mails:sLe,MailsIcon:sLe,Map:TLe,MapIcon:TLe,MapPin:bLe,MapPinCheck:lLe,MapPinCheckIcon:lLe,MapPinCheckInside:aLe,MapPinCheckInsideIcon:aLe,MapPinHouse:cLe,MapPinHouseIcon:cLe,MapPinIcon:bLe,MapPinMinus:dLe,MapPinMinusIcon:dLe,MapPinMinusInside:uLe,MapPinMinusInsideIcon:uLe,MapPinOff:hLe,MapPinOffIcon:hLe,MapPinPlus:pLe,MapPinPlusIcon:pLe,MapPinPlusInside:fLe,MapPinPlusInsideIcon:fLe,MapPinX:mLe,MapPinXIcon:mLe,MapPinXInside:gLe,MapPinXInsideIcon:gLe,MapPinned:vLe,MapPinnedIcon:vLe,MapPlus:yLe,MapPlusIcon:yLe,Mars:wLe,MarsIcon:wLe,MarsStroke:MLe,MarsStrokeIcon:MLe,Martini:_Le,MartiniIcon:_Le,Maximize:ALe,Maximize2:OLe,Maximize2Icon:OLe,MaximizeIcon:ALe,Medal:xLe,MedalIcon:xLe,Megaphone:SLe,MegaphoneIcon:SLe,MegaphoneOff:CLe,MegaphoneOffIcon:CLe,Meh:QLe,MehIcon:QLe,MemoryStick:zLe,MemoryStickIcon:zLe,Menu:ELe,MenuIcon:ELe,MenuSquare:DH,MenuSquareIcon:DH,Merge:LLe,MergeIcon:LLe,MessageCircle:BLe,MessageCircleCode:kLe,MessageCircleCodeIcon:kLe,MessageCircleDashed:RLe,MessageCircleDashedIcon:RLe,MessageCircleHeart:NLe,MessageCircleHeartIcon:NLe,MessageCircleIcon:BLe,MessageCircleMore:DLe,MessageCircleMoreIcon:DLe,MessageCircleOff:PLe,MessageCircleOffIcon:PLe,MessageCirclePlus:ILe,MessageCirclePlusIcon:ILe,MessageCircleQuestion:jLe,MessageCircleQuestionIcon:jLe,MessageCircleReply:qLe,MessageCircleReplyIcon:qLe,MessageCircleWarning:FLe,MessageCircleWarningIcon:FLe,MessageCircleX:HLe,MessageCircleXIcon:HLe,MessageSquare:oke,MessageSquareCode:WLe,MessageSquareCodeIcon:WLe,MessageSquareDashed:$Le,MessageSquareDashedIcon:$Le,MessageSquareDiff:VLe,MessageSquareDiffIcon:VLe,MessageSquareDot:ULe,MessageSquareDotIcon:ULe,MessageSquareHeart:GLe,MessageSquareHeartIcon:GLe,MessageSquareIcon:oke,MessageSquareLock:XLe,MessageSquareLockIcon:XLe,MessageSquareMore:KLe,MessageSquareMoreIcon:KLe,MessageSquareOff:YLe,MessageSquareOffIcon:YLe,MessageSquarePlus:ZLe,MessageSquarePlusIcon:ZLe,MessageSquareQuote:JLe,MessageSquareQuoteIcon:JLe,MessageSquareReply:eke,MessageSquareReplyIcon:eke,MessageSquareShare:tke,MessageSquareShareIcon:tke,MessageSquareText:nke,MessageSquareTextIcon:nke,MessageSquareWarning:rke,MessageSquareWarningIcon:rke,MessageSquareX:ike,MessageSquareXIcon:ike,MessagesSquare:ske,MessagesSquareIcon:ske,Mic:lke,Mic2:kF,Mic2Icon:kF,MicIcon:lke,MicOff:ake,MicOffIcon:ake,MicVocal:kF,MicVocalIcon:kF,Microchip:cke,MicrochipIcon:cke,Microscope:uke,MicroscopeIcon:uke,Microwave:dke,MicrowaveIcon:dke,Milestone:hke,MilestoneIcon:hke,Milk:pke,MilkIcon:pke,MilkOff:fke,MilkOffIcon:fke,Minimize:mke,Minimize2:gke,Minimize2Icon:gke,MinimizeIcon:mke,Minus:ree,MinusCircle:Nq,MinusCircleIcon:Nq,MinusIcon:ree,MinusSquare:PH,MinusSquareIcon:PH,Monitor:Cke,MonitorCheck:bke,MonitorCheckIcon:bke,MonitorCog:yke,MonitorCogIcon:yke,MonitorDot:vke,MonitorDotIcon:vke,MonitorDown:Tke,MonitorDownIcon:Tke,MonitorIcon:Cke,MonitorOff:Mke,MonitorOffIcon:Mke,MonitorPause:wke,MonitorPauseIcon:wke,MonitorPlay:Oke,MonitorPlayIcon:Oke,MonitorSmartphone:_ke,MonitorSmartphoneIcon:_ke,MonitorSpeaker:Ake,MonitorSpeakerIcon:Ake,MonitorStop:xke,MonitorStopIcon:xke,MonitorUp:Ske,MonitorUpIcon:Ske,MonitorX:Qke,MonitorXIcon:Qke,Moon:Eke,MoonIcon:Eke,MoonStar:zke,MoonStarIcon:zke,MoreHorizontal:rF,MoreHorizontalIcon:rF,MoreVertical:iF,MoreVerticalIcon:iF,Mountain:kke,MountainIcon:kke,MountainSnow:Lke,MountainSnowIcon:Lke,Mouse:jke,MouseIcon:jke,MouseOff:Rke,MouseOffIcon:Rke,MousePointer:Ike,MousePointer2:Nke,MousePointer2Icon:Nke,MousePointerBan:Dke,MousePointerBanIcon:Dke,MousePointerClick:Pke,MousePointerClickIcon:Pke,MousePointerIcon:Ike,MousePointerSquareDashed:SH,MousePointerSquareDashedIcon:SH,Move:Zke,Move3D:RF,Move3DIcon:RF,Move3d:RF,Move3dIcon:RF,MoveDiagonal:Fke,MoveDiagonal2:qke,MoveDiagonal2Icon:qke,MoveDiagonalIcon:Fke,MoveDown:Wke,MoveDownIcon:Wke,MoveDownLeft:Hke,MoveDownLeftIcon:Hke,MoveDownRight:Bke,MoveDownRightIcon:Bke,MoveHorizontal:$ke,MoveHorizontalIcon:$ke,MoveIcon:Zke,MoveLeft:Vke,MoveLeftIcon:Vke,MoveRight:Uke,MoveRightIcon:Uke,MoveUp:Yke,MoveUpIcon:Yke,MoveUpLeft:Gke,MoveUpLeftIcon:Gke,MoveUpRight:Xke,MoveUpRightIcon:Xke,MoveVertical:Kke,MoveVerticalIcon:Kke,Music:nRe,Music2:Jke,Music2Icon:Jke,Music3:eRe,Music3Icon:eRe,Music4:tRe,Music4Icon:tRe,MusicIcon:nRe,Navigation:sRe,Navigation2:iRe,Navigation2Icon:iRe,Navigation2Off:rRe,Navigation2OffIcon:rRe,NavigationIcon:sRe,NavigationOff:oRe,NavigationOffIcon:oRe,Network:aRe,NetworkIcon:aRe,Newspaper:lRe,NewspaperIcon:lRe,Nfc:cRe,NfcIcon:cRe,NonBinary:uRe,NonBinaryIcon:uRe,Notebook:fRe,NotebookIcon:fRe,NotebookPen:dRe,NotebookPenIcon:dRe,NotebookTabs:hRe,NotebookTabsIcon:hRe,NotebookText:gRe,NotebookTextIcon:gRe,NotepadText:mRe,NotepadTextDashed:pRe,NotepadTextDashedIcon:pRe,NotepadTextIcon:mRe,Nut:vRe,NutIcon:vRe,NutOff:bRe,NutOffIcon:bRe,Octagon:TRe,OctagonAlert:NF,OctagonAlertIcon:NF,OctagonIcon:TRe,OctagonMinus:yRe,OctagonMinusIcon:yRe,OctagonPause:DF,OctagonPauseIcon:DF,OctagonX:PF,OctagonXIcon:PF,Omega:MRe,OmegaIcon:MRe,Option:_Re,OptionIcon:_Re,Orbit:wRe,OrbitIcon:wRe,Origami:ORe,OrigamiIcon:ORe,Outdent:xF,OutdentIcon:xF,Package:ERe,Package2:ARe,Package2Icon:ARe,PackageCheck:xRe,PackageCheckIcon:xRe,PackageIcon:ERe,PackageMinus:SRe,PackageMinusIcon:SRe,PackageOpen:CRe,PackageOpenIcon:CRe,PackagePlus:QRe,PackagePlusIcon:QRe,PackageSearch:zRe,PackageSearchIcon:zRe,PackageX:LRe,PackageXIcon:LRe,PaintBucket:kRe,PaintBucketIcon:kRe,PaintRoller:RRe,PaintRollerIcon:RRe,Paintbrush:NRe,Paintbrush2:IF,Paintbrush2Icon:IF,PaintbrushIcon:NRe,PaintbrushVertical:IF,PaintbrushVerticalIcon:IF,Palette:DRe,PaletteIcon:DRe,Palmtree:oB,PalmtreeIcon:oB,PanelBottom:jRe,PanelBottomClose:PRe,PanelBottomCloseIcon:PRe,PanelBottomDashed:jF,PanelBottomDashedIcon:jF,PanelBottomIcon:jRe,PanelBottomInactive:jF,PanelBottomInactiveIcon:jF,PanelBottomOpen:IRe,PanelBottomOpenIcon:IRe,PanelLeft:yk,PanelLeftClose:qF,PanelLeftCloseIcon:qF,PanelLeftDashed:FF,PanelLeftDashedIcon:FF,PanelLeftIcon:yk,PanelLeftInactive:FF,PanelLeftInactiveIcon:FF,PanelLeftOpen:HF,PanelLeftOpenIcon:HF,PanelRight:HRe,PanelRightClose:qRe,PanelRightCloseIcon:qRe,PanelRightDashed:BF,PanelRightDashedIcon:BF,PanelRightIcon:HRe,PanelRightInactive:BF,PanelRightInactiveIcon:BF,PanelRightOpen:FRe,PanelRightOpenIcon:FRe,PanelTop:$Re,PanelTopClose:BRe,PanelTopCloseIcon:BRe,PanelTopDashed:WF,PanelTopDashedIcon:WF,PanelTopIcon:$Re,PanelTopInactive:WF,PanelTopInactiveIcon:WF,PanelTopOpen:WRe,PanelTopOpenIcon:WRe,PanelsLeftBottom:VRe,PanelsLeftBottomIcon:VRe,PanelsLeftRight:Jq,PanelsLeftRightIcon:Jq,PanelsRightBottom:URe,PanelsRightBottomIcon:URe,PanelsTopBottom:ZF,PanelsTopBottomIcon:ZF,PanelsTopLeft:$F,PanelsTopLeftIcon:$F,Paperclip:GRe,PaperclipIcon:GRe,Parentheses:XRe,ParenthesesIcon:XRe,ParkingCircle:Pq,ParkingCircleIcon:Pq,ParkingCircleOff:Dq,ParkingCircleOffIcon:Dq,ParkingMeter:KRe,ParkingMeterIcon:KRe,ParkingSquare:qH,ParkingSquareIcon:qH,ParkingSquareOff:jH,ParkingSquareOffIcon:jH,PartyPopper:YRe,PartyPopperIcon:YRe,Pause:ZRe,PauseCircle:Iq,PauseCircleIcon:Iq,PauseIcon:ZRe,PauseOctagon:DF,PauseOctagonIcon:DF,PawPrint:JRe,PawPrintIcon:JRe,PcCase:eNe,PcCaseIcon:eNe,Pen:UF,PenBox:rv,PenBoxIcon:rv,PenIcon:UF,PenLine:VF,PenLineIcon:VF,PenOff:tNe,PenOffIcon:tNe,PenSquare:rv,PenSquareIcon:rv,PenTool:nNe,PenToolIcon:nNe,Pencil:oNe,PencilIcon:oNe,PencilLine:rNe,PencilLineIcon:rNe,PencilOff:iNe,PencilOffIcon:iNe,PencilRuler:sNe,PencilRulerIcon:sNe,Pentagon:aNe,PentagonIcon:aNe,Percent:lNe,PercentCircle:qq,PercentCircleIcon:qq,PercentDiamond:tF,PercentDiamondIcon:tF,PercentIcon:lNe,PercentSquare:FH,PercentSquareIcon:FH,PersonStanding:cNe,PersonStandingIcon:cNe,PhilippinePeso:uNe,PhilippinePesoIcon:uNe,Phone:bNe,PhoneCall:dNe,PhoneCallIcon:dNe,PhoneForwarded:hNe,PhoneForwardedIcon:hNe,PhoneIcon:bNe,PhoneIncoming:fNe,PhoneIncomingIcon:fNe,PhoneMissed:pNe,PhoneMissedIcon:pNe,PhoneOff:gNe,PhoneOffIcon:gNe,PhoneOutgoing:mNe,PhoneOutgoingIcon:mNe,Pi:vNe,PiIcon:vNe,PiSquare:HH,PiSquareIcon:HH,Piano:yNe,PianoIcon:yNe,Pickaxe:TNe,PickaxeIcon:TNe,PictureInPicture:wNe,PictureInPicture2:MNe,PictureInPicture2Icon:MNe,PictureInPictureIcon:wNe,PieChart:gq,PieChartIcon:gq,PiggyBank:_Ne,PiggyBankIcon:_Ne,Pilcrow:xNe,PilcrowIcon:xNe,PilcrowLeft:ONe,PilcrowLeftIcon:ONe,PilcrowRight:ANe,PilcrowRightIcon:ANe,PilcrowSquare:BH,PilcrowSquareIcon:BH,Pill:CNe,PillBottle:SNe,PillBottleIcon:SNe,PillIcon:CNe,Pin:zNe,PinIcon:zNe,PinOff:QNe,PinOffIcon:QNe,Pipette:ENe,PipetteIcon:ENe,Pizza:kNe,PizzaIcon:kNe,Plane:NNe,PlaneIcon:NNe,PlaneLanding:LNe,PlaneLandingIcon:LNe,PlaneTakeoff:RNe,PlaneTakeoffIcon:RNe,Play:DNe,PlayCircle:jq,PlayCircleIcon:jq,PlayIcon:DNe,PlaySquare:WH,PlaySquareIcon:WH,Plug:INe,Plug2:PNe,Plug2Icon:PNe,PlugIcon:INe,PlugZap:GF,PlugZap2:GF,PlugZap2Icon:GF,PlugZapIcon:GF,Plus:iee,PlusCircle:Fq,PlusCircleIcon:Fq,PlusIcon:iee,PlusSquare:$H,PlusSquareIcon:$H,Pocket:qNe,PocketIcon:qNe,PocketKnife:jNe,PocketKnifeIcon:jNe,Podcast:FNe,PodcastIcon:FNe,Pointer:HNe,PointerIcon:HNe,PointerOff:BNe,PointerOffIcon:BNe,Popcorn:WNe,PopcornIcon:WNe,Popsicle:$Ne,PopsicleIcon:$Ne,PoundSterling:UNe,PoundSterlingIcon:UNe,Power:GNe,PowerCircle:Hq,PowerCircleIcon:Hq,PowerIcon:GNe,PowerOff:VNe,PowerOffIcon:VNe,PowerSquare:VH,PowerSquareIcon:VH,Presentation:XNe,PresentationIcon:XNe,Printer:YNe,PrinterCheck:KNe,PrinterCheckIcon:KNe,PrinterIcon:YNe,Projector:ZNe,ProjectorIcon:ZNe,Proportions:JNe,ProportionsIcon:JNe,Puzzle:eDe,PuzzleIcon:eDe,Pyramid:tDe,PyramidIcon:tDe,QrCode:nDe,QrCodeIcon:nDe,Quote:rDe,QuoteIcon:rDe,Rabbit:iDe,RabbitIcon:iDe,Radar:oDe,RadarIcon:oDe,Radiation:sDe,RadiationIcon:sDe,Radical:aDe,RadicalIcon:aDe,Radio:uDe,RadioIcon:uDe,RadioReceiver:lDe,RadioReceiverIcon:lDe,RadioTower:cDe,RadioTowerIcon:cDe,Radius:dDe,RadiusIcon:dDe,RailSymbol:hDe,RailSymbolIcon:hDe,Rainbow:fDe,RainbowIcon:fDe,Rat:pDe,RatIcon:pDe,Ratio:gDe,RatioIcon:gDe,Receipt:ODe,ReceiptCent:bDe,ReceiptCentIcon:bDe,ReceiptEuro:mDe,ReceiptEuroIcon:mDe,ReceiptIcon:ODe,ReceiptIndianRupee:vDe,ReceiptIndianRupeeIcon:vDe,ReceiptJapaneseYen:yDe,ReceiptJapaneseYenIcon:yDe,ReceiptPoundSterling:TDe,ReceiptPoundSterlingIcon:TDe,ReceiptRussianRuble:MDe,ReceiptRussianRubleIcon:MDe,ReceiptSwissFranc:wDe,ReceiptSwissFrancIcon:wDe,ReceiptText:_De,ReceiptTextIcon:_De,RectangleEllipsis:XF,RectangleEllipsisIcon:XF,RectangleGoggles:ADe,RectangleGogglesIcon:ADe,RectangleHorizontal:xDe,RectangleHorizontalIcon:xDe,RectangleVertical:SDe,RectangleVerticalIcon:SDe,Recycle:CDe,RecycleIcon:CDe,Redo:LDe,Redo2:QDe,Redo2Icon:QDe,RedoDot:zDe,RedoDotIcon:zDe,RedoIcon:LDe,RefreshCcw:kDe,RefreshCcwDot:EDe,RefreshCcwDotIcon:EDe,RefreshCcwIcon:kDe,RefreshCw:NDe,RefreshCwIcon:NDe,RefreshCwOff:RDe,RefreshCwOffIcon:RDe,Refrigerator:DDe,RefrigeratorIcon:DDe,Regex:IDe,RegexIcon:IDe,RemoveFormatting:PDe,RemoveFormattingIcon:PDe,Repeat:FDe,Repeat1:jDe,Repeat1Icon:jDe,Repeat2:qDe,Repeat2Icon:qDe,RepeatIcon:FDe,Replace:BDe,ReplaceAll:HDe,ReplaceAllIcon:HDe,ReplaceIcon:BDe,Reply:$De,ReplyAll:WDe,ReplyAllIcon:WDe,ReplyIcon:$De,Rewind:VDe,RewindIcon:VDe,Ribbon:UDe,RibbonIcon:UDe,Rocket:XDe,RocketIcon:XDe,RockingChair:GDe,RockingChairIcon:GDe,RollerCoaster:KDe,RollerCoasterIcon:KDe,Rotate3D:KF,Rotate3DIcon:KF,Rotate3d:KF,Rotate3dIcon:KF,RotateCcw:JDe,RotateCcwIcon:JDe,RotateCcwKey:YDe,RotateCcwKeyIcon:YDe,RotateCcwSquare:ZDe,RotateCcwSquareIcon:ZDe,RotateCw:tPe,RotateCwIcon:tPe,RotateCwSquare:ePe,RotateCwSquareIcon:ePe,Route:rPe,RouteIcon:rPe,RouteOff:nPe,RouteOffIcon:nPe,Router:iPe,RouterIcon:iPe,Rows:YF,Rows2:YF,Rows2Icon:YF,Rows3:ZF,Rows3Icon:ZF,Rows4:oPe,Rows4Icon:oPe,RowsIcon:YF,Rss:sPe,RssIcon:sPe,Ruler:lPe,RulerDimensionLine:aPe,RulerDimensionLineIcon:aPe,RulerIcon:lPe,RussianRuble:cPe,RussianRubleIcon:cPe,Sailboat:uPe,SailboatIcon:uPe,Salad:dPe,SaladIcon:dPe,Sandwich:hPe,SandwichIcon:hPe,Satellite:pPe,SatelliteDish:fPe,SatelliteDishIcon:fPe,SatelliteIcon:pPe,SaudiRiyal:gPe,SaudiRiyalIcon:gPe,Save:vPe,SaveAll:mPe,SaveAllIcon:mPe,SaveIcon:vPe,SaveOff:bPe,SaveOffIcon:bPe,Scale:yPe,Scale3D:JF,Scale3DIcon:JF,Scale3d:JF,Scale3dIcon:JF,ScaleIcon:yPe,Scaling:TPe,ScalingIcon:TPe,Scan:QPe,ScanBarcode:MPe,ScanBarcodeIcon:MPe,ScanEye:wPe,ScanEyeIcon:wPe,ScanFace:_Pe,ScanFaceIcon:_Pe,ScanHeart:OPe,ScanHeartIcon:OPe,ScanIcon:QPe,ScanLine:APe,ScanLineIcon:APe,ScanQrCode:xPe,ScanQrCodeIcon:xPe,ScanSearch:SPe,ScanSearchIcon:SPe,ScanText:CPe,ScanTextIcon:CPe,ScatterChart:mq,ScatterChartIcon:mq,School:zPe,School2:lB,School2Icon:lB,SchoolIcon:zPe,Scissors:LPe,ScissorsIcon:LPe,ScissorsLineDashed:EPe,ScissorsLineDashedIcon:EPe,ScissorsSquare:UH,ScissorsSquareDashedBottom:vH,ScissorsSquareDashedBottomIcon:vH,ScissorsSquareIcon:UH,ScreenShare:RPe,ScreenShareIcon:RPe,ScreenShareOff:kPe,ScreenShareOffIcon:kPe,Scroll:DPe,ScrollIcon:DPe,ScrollText:NPe,ScrollTextIcon:NPe,Search:Vle,SearchCheck:PPe,SearchCheckIcon:PPe,SearchCode:IPe,SearchCodeIcon:IPe,SearchIcon:Vle,SearchSlash:jPe,SearchSlashIcon:jPe,SearchX:qPe,SearchXIcon:qPe,Section:FPe,SectionIcon:FPe,Send:BPe,SendHorizonal:eH,SendHorizonalIcon:eH,SendHorizontal:eH,SendHorizontalIcon:eH,SendIcon:BPe,SendToBack:HPe,SendToBackIcon:HPe,SeparatorHorizontal:WPe,SeparatorHorizontalIcon:WPe,SeparatorVertical:$Pe,SeparatorVerticalIcon:$Pe,Server:XPe,ServerCog:VPe,ServerCogIcon:VPe,ServerCrash:UPe,ServerCrashIcon:UPe,ServerIcon:XPe,ServerOff:GPe,ServerOffIcon:GPe,Settings:YPe,Settings2:KPe,Settings2Icon:KPe,SettingsIcon:YPe,Shapes:ZPe,ShapesIcon:ZPe,Share:eIe,Share2:JPe,Share2Icon:JPe,ShareIcon:eIe,Sheet:tIe,SheetIcon:tIe,Shell:nIe,ShellIcon:nIe,Shield:fIe,ShieldAlert:rIe,ShieldAlertIcon:rIe,ShieldBan:iIe,ShieldBanIcon:iIe,ShieldCheck:oIe,ShieldCheckIcon:oIe,ShieldClose:tH,ShieldCloseIcon:tH,ShieldEllipsis:sIe,ShieldEllipsisIcon:sIe,ShieldHalf:aIe,ShieldHalfIcon:aIe,ShieldIcon:fIe,ShieldMinus:lIe,ShieldMinusIcon:lIe,ShieldOff:cIe,ShieldOffIcon:cIe,ShieldPlus:uIe,ShieldPlusIcon:uIe,ShieldQuestion:dIe,ShieldQuestionIcon:dIe,ShieldUser:hIe,ShieldUserIcon:hIe,ShieldX:tH,ShieldXIcon:tH,Ship:gIe,ShipIcon:gIe,ShipWheel:pIe,ShipWheelIcon:pIe,Shirt:mIe,ShirtIcon:mIe,ShoppingBag:bIe,ShoppingBagIcon:bIe,ShoppingBasket:vIe,ShoppingBasketIcon:vIe,ShoppingCart:TIe,ShoppingCartIcon:TIe,Shovel:yIe,ShovelIcon:yIe,ShowerHead:MIe,ShowerHeadIcon:MIe,Shredder:wIe,ShredderIcon:wIe,Shrimp:_Ie,ShrimpIcon:_Ie,Shrink:AIe,ShrinkIcon:AIe,Shrub:OIe,ShrubIcon:OIe,Shuffle:xIe,ShuffleIcon:xIe,Sidebar:yk,SidebarClose:qF,SidebarCloseIcon:qF,SidebarIcon:yk,SidebarOpen:HF,SidebarOpenIcon:HF,Sigma:SIe,SigmaIcon:SIe,SigmaSquare:GH,SigmaSquareIcon:GH,Signal:LIe,SignalHigh:CIe,SignalHighIcon:CIe,SignalIcon:LIe,SignalLow:QIe,SignalLowIcon:QIe,SignalMedium:zIe,SignalMediumIcon:zIe,SignalZero:EIe,SignalZeroIcon:EIe,Signature:kIe,SignatureIcon:kIe,Signpost:NIe,SignpostBig:RIe,SignpostBigIcon:RIe,SignpostIcon:NIe,Siren:DIe,SirenIcon:DIe,SkipBack:PIe,SkipBackIcon:PIe,SkipForward:IIe,SkipForwardIcon:IIe,Skull:jIe,SkullIcon:jIe,Slack:qIe,SlackIcon:qIe,Slash:FIe,SlashIcon:FIe,SlashSquare:XH,SlashSquareIcon:XH,Slice:HIe,SliceIcon:HIe,Sliders:nH,SlidersHorizontal:BIe,SlidersHorizontalIcon:BIe,SlidersIcon:nH,SlidersVertical:nH,SlidersVerticalIcon:nH,Smartphone:VIe,SmartphoneCharging:WIe,SmartphoneChargingIcon:WIe,SmartphoneIcon:VIe,SmartphoneNfc:$Ie,SmartphoneNfcIcon:$Ie,Smile:GIe,SmileIcon:GIe,SmilePlus:UIe,SmilePlusIcon:UIe,Snail:XIe,SnailIcon:XIe,Snowflake:KIe,SnowflakeIcon:KIe,Sofa:YIe,SofaIcon:YIe,SortAsc:Xj,SortAscIcon:Xj,SortDesc:Uj,SortDescIcon:Uj,Soup:ZIe,SoupIcon:ZIe,Space:JIe,SpaceIcon:JIe,Spade:eje,SpadeIcon:eje,Sparkle:tje,SparkleIcon:tje,Sparkles:rH,SparklesIcon:rH,Speaker:nje,SpeakerIcon:nje,Speech:rje,SpeechIcon:rje,SpellCheck:sje,SpellCheck2:ije,SpellCheck2Icon:ije,SpellCheckIcon:sje,Spline:aje,SplineIcon:aje,SplinePointer:oje,SplinePointerIcon:oje,Split:lje,SplitIcon:lje,SplitSquareHorizontal:KH,SplitSquareHorizontalIcon:KH,SplitSquareVertical:YH,SplitSquareVerticalIcon:YH,SprayCan:cje,SprayCanIcon:cje,Sprout:uje,SproutIcon:uje,Square:bje,SquareActivity:iH,SquareActivityIcon:iH,SquareArrowDown:aH,SquareArrowDownIcon:aH,SquareArrowDownLeft:oH,SquareArrowDownLeftIcon:oH,SquareArrowDownRight:sH,SquareArrowDownRightIcon:sH,SquareArrowLeft:lH,SquareArrowLeftIcon:lH,SquareArrowOutDownLeft:cH,SquareArrowOutDownLeftIcon:cH,SquareArrowOutDownRight:uH,SquareArrowOutDownRightIcon:uH,SquareArrowOutUpLeft:dH,SquareArrowOutUpLeftIcon:dH,SquareArrowOutUpRight:pH,SquareArrowOutUpRightIcon:pH,SquareArrowRight:hH,SquareArrowRightIcon:hH,SquareArrowUp:mH,SquareArrowUpIcon:mH,SquareArrowUpLeft:fH,SquareArrowUpLeftIcon:fH,SquareArrowUpRight:gH,SquareArrowUpRightIcon:gH,SquareAsterisk:bH,SquareAsteriskIcon:bH,SquareBottomDashedScissors:vH,SquareBottomDashedScissorsIcon:vH,SquareChartGantt:JO,SquareChartGanttIcon:JO,SquareCheck:TH,SquareCheckBig:yH,SquareCheckBigIcon:yH,SquareCheckIcon:TH,SquareChevronDown:MH,SquareChevronDownIcon:MH,SquareChevronLeft:wH,SquareChevronLeftIcon:wH,SquareChevronRight:_H,SquareChevronRightIcon:_H,SquareChevronUp:OH,SquareChevronUpIcon:OH,SquareCode:AH,SquareCodeIcon:AH,SquareDashed:CH,SquareDashedBottom:hje,SquareDashedBottomCode:dje,SquareDashedBottomCodeIcon:dje,SquareDashedBottomIcon:hje,SquareDashedIcon:CH,SquareDashedKanban:xH,SquareDashedKanbanIcon:xH,SquareDashedMousePointer:SH,SquareDashedMousePointerIcon:SH,SquareDivide:QH,SquareDivideIcon:QH,SquareDot:zH,SquareDotIcon:zH,SquareEqual:EH,SquareEqualIcon:EH,SquareFunction:LH,SquareFunctionIcon:LH,SquareGanttChart:JO,SquareGanttChartIcon:JO,SquareIcon:bje,SquareKanban:kH,SquareKanbanIcon:kH,SquareLibrary:RH,SquareLibraryIcon:RH,SquareM:NH,SquareMIcon:NH,SquareMenu:DH,SquareMenuIcon:DH,SquareMinus:PH,SquareMinusIcon:PH,SquareMousePointer:IH,SquareMousePointerIcon:IH,SquareParking:qH,SquareParkingIcon:qH,SquareParkingOff:jH,SquareParkingOffIcon:jH,SquarePen:rv,SquarePenIcon:rv,SquarePercent:FH,SquarePercentIcon:FH,SquarePi:HH,SquarePiIcon:HH,SquarePilcrow:BH,SquarePilcrowIcon:BH,SquarePlay:WH,SquarePlayIcon:WH,SquarePlus:$H,SquarePlusIcon:$H,SquarePower:VH,SquarePowerIcon:VH,SquareRadical:fje,SquareRadicalIcon:fje,SquareRoundCorner:pje,SquareRoundCornerIcon:pje,SquareScissors:UH,SquareScissorsIcon:UH,SquareSigma:GH,SquareSigmaIcon:GH,SquareSlash:XH,SquareSlashIcon:XH,SquareSplitHorizontal:KH,SquareSplitHorizontalIcon:KH,SquareSplitVertical:YH,SquareSplitVerticalIcon:YH,SquareSquare:gje,SquareSquareIcon:gje,SquareStack:mje,SquareStackIcon:mje,SquareTerminal:ZH,SquareTerminalIcon:ZH,SquareUser:eB,SquareUserIcon:eB,SquareUserRound:JH,SquareUserRoundIcon:JH,SquareX:tB,SquareXIcon:tB,SquaresExclude:vje,SquaresExcludeIcon:vje,SquaresIntersect:yje,SquaresIntersectIcon:yje,SquaresSubtract:Tje,SquaresSubtractIcon:Tje,SquaresUnite:Mje,SquaresUniteIcon:Mje,Squircle:wje,SquircleIcon:wje,Squirrel:_je,SquirrelIcon:_je,Stamp:Oje,StampIcon:Oje,Star:Sje,StarHalf:Aje,StarHalfIcon:Aje,StarIcon:Sje,StarOff:xje,StarOffIcon:xje,Stars:rH,StarsIcon:rH,StepBack:Cje,StepBackIcon:Cje,StepForward:Qje,StepForwardIcon:Qje,Stethoscope:zje,StethoscopeIcon:zje,Sticker:Eje,StickerIcon:Eje,StickyNote:Lje,StickyNoteIcon:Lje,StopCircle:Wq,StopCircleIcon:Wq,Store:kje,StoreIcon:kje,StretchHorizontal:Rje,StretchHorizontalIcon:Rje,StretchVertical:Nje,StretchVerticalIcon:Nje,Strikethrough:Dje,StrikethroughIcon:Dje,Subscript:Pje,SubscriptIcon:Pje,Subtitles:rq,SubtitlesIcon:rq,Sun:Hje,SunDim:Ije,SunDimIcon:Ije,SunIcon:Hje,SunMedium:jje,SunMediumIcon:jje,SunMoon:qje,SunMoonIcon:qje,SunSnow:Fje,SunSnowIcon:Fje,Sunrise:Bje,SunriseIcon:Bje,Sunset:Wje,SunsetIcon:Wje,Superscript:$je,SuperscriptIcon:$je,SwatchBook:Vje,SwatchBookIcon:Vje,SwissFranc:Uje,SwissFrancIcon:Uje,SwitchCamera:Gje,SwitchCameraIcon:Gje,Sword:Xje,SwordIcon:Xje,Swords:Kje,SwordsIcon:Kje,Syringe:Yje,SyringeIcon:Yje,Table:oqe,Table2:Zje,Table2Icon:Zje,TableCellsMerge:Jje,TableCellsMergeIcon:Jje,TableCellsSplit:eqe,TableCellsSplitIcon:eqe,TableColumnsSplit:tqe,TableColumnsSplitIcon:tqe,TableConfig:YO,TableConfigIcon:YO,TableIcon:oqe,TableOfContents:nqe,TableOfContentsIcon:nqe,TableProperties:rqe,TablePropertiesIcon:rqe,TableRowsSplit:iqe,TableRowsSplitIcon:iqe,Tablet:lqe,TabletIcon:lqe,TabletSmartphone:sqe,TabletSmartphoneIcon:sqe,Tablets:aqe,TabletsIcon:aqe,Tag:cqe,TagIcon:cqe,Tags:uqe,TagsIcon:uqe,Tally1:dqe,Tally1Icon:dqe,Tally2:hqe,Tally2Icon:hqe,Tally3:fqe,Tally3Icon:fqe,Tally4:pqe,Tally4Icon:pqe,Tally5:gqe,Tally5Icon:gqe,Tangent:mqe,TangentIcon:mqe,Target:bqe,TargetIcon:bqe,Telescope:vqe,TelescopeIcon:vqe,Tent:Tqe,TentIcon:Tqe,TentTree:yqe,TentTreeIcon:yqe,Terminal:Mqe,TerminalIcon:Mqe,TerminalSquare:ZH,TerminalSquareIcon:ZH,TestTube:wqe,TestTube2:nB,TestTube2Icon:nB,TestTubeDiagonal:nB,TestTubeDiagonalIcon:nB,TestTubeIcon:wqe,TestTubes:_qe,TestTubesIcon:_qe,Text:Cqe,TextCursor:Aqe,TextCursorIcon:Aqe,TextCursorInput:Oqe,TextCursorInputIcon:Oqe,TextIcon:Cqe,TextQuote:xqe,TextQuoteIcon:xqe,TextSearch:Sqe,TextSearchIcon:Sqe,TextSelect:rB,TextSelectIcon:rB,TextSelection:rB,TextSelectionIcon:rB,Theater:Qqe,TheaterIcon:Qqe,Thermometer:Lqe,ThermometerIcon:Lqe,ThermometerSnowflake:zqe,ThermometerSnowflakeIcon:zqe,ThermometerSun:Eqe,ThermometerSunIcon:Eqe,ThumbsDown:kqe,ThumbsDownIcon:kqe,ThumbsUp:Rqe,ThumbsUpIcon:Rqe,Ticket:Fqe,TicketCheck:Nqe,TicketCheckIcon:Nqe,TicketIcon:Fqe,TicketMinus:Dqe,TicketMinusIcon:Dqe,TicketPercent:Pqe,TicketPercentIcon:Pqe,TicketPlus:Iqe,TicketPlusIcon:Iqe,TicketSlash:jqe,TicketSlashIcon:jqe,TicketX:qqe,TicketXIcon:qqe,Tickets:Bqe,TicketsIcon:Bqe,TicketsPlane:Hqe,TicketsPlaneIcon:Hqe,Timer:Vqe,TimerIcon:Vqe,TimerOff:Wqe,TimerOffIcon:Wqe,TimerReset:$qe,TimerResetIcon:$qe,ToggleLeft:Uqe,ToggleLeftIcon:Uqe,ToggleRight:Gqe,ToggleRightIcon:Gqe,Toilet:Xqe,ToiletIcon:Xqe,Tornado:Kqe,TornadoIcon:Kqe,Torus:Yqe,TorusIcon:Yqe,Touchpad:Jqe,TouchpadIcon:Jqe,TouchpadOff:Zqe,TouchpadOffIcon:Zqe,TowerControl:eFe,TowerControlIcon:eFe,ToyBrick:tFe,ToyBrickIcon:tFe,Tractor:nFe,TractorIcon:nFe,TrafficCone:rFe,TrafficConeIcon:rFe,Train:iB,TrainFront:oFe,TrainFrontIcon:oFe,TrainFrontTunnel:iFe,TrainFrontTunnelIcon:iFe,TrainIcon:iB,TrainTrack:aFe,TrainTrackIcon:aFe,TramFront:iB,TramFrontIcon:iB,Transgender:sFe,TransgenderIcon:sFe,Trash:lFe,Trash2:Ule,Trash2Icon:Ule,TrashIcon:lFe,TreeDeciduous:cFe,TreeDeciduousIcon:cFe,TreePalm:oB,TreePalmIcon:oB,TreePine:uFe,TreePineIcon:uFe,Trees:dFe,TreesIcon:dFe,Trello:hFe,TrelloIcon:hFe,TrendingDown:fFe,TrendingDownIcon:fFe,TrendingUp:gFe,TrendingUpDown:pFe,TrendingUpDownIcon:pFe,TrendingUpIcon:gFe,Triangle:vFe,TriangleAlert:sB,TriangleAlertIcon:sB,TriangleDashed:mFe,TriangleDashedIcon:mFe,TriangleIcon:vFe,TriangleRight:bFe,TriangleRightIcon:bFe,Trophy:yFe,TrophyIcon:yFe,Truck:MFe,TruckElectric:TFe,TruckElectricIcon:TFe,TruckIcon:MFe,Turtle:wFe,TurtleIcon:wFe,Tv:OFe,Tv2:aB,Tv2Icon:aB,TvIcon:OFe,TvMinimal:aB,TvMinimalIcon:aB,TvMinimalPlay:_Fe,TvMinimalPlayIcon:_Fe,Twitch:AFe,TwitchIcon:AFe,Twitter:xFe,TwitterIcon:xFe,Type:SFe,TypeIcon:SFe,TypeOutline:CFe,TypeOutlineIcon:CFe,Umbrella:zFe,UmbrellaIcon:zFe,UmbrellaOff:QFe,UmbrellaOffIcon:QFe,Underline:EFe,UnderlineIcon:EFe,Undo:kFe,Undo2:LFe,Undo2Icon:LFe,UndoDot:RFe,UndoDotIcon:RFe,UndoIcon:kFe,UnfoldHorizontal:NFe,UnfoldHorizontalIcon:NFe,UnfoldVertical:DFe,UnfoldVerticalIcon:DFe,Ungroup:PFe,UngroupIcon:PFe,University:lB,UniversityIcon:lB,Unlink:jFe,Unlink2:IFe,Unlink2Icon:IFe,UnlinkIcon:jFe,Unlock:LF,UnlockIcon:LF,UnlockKeyhole:EF,UnlockKeyholeIcon:EF,Unplug:qFe,UnplugIcon:qFe,Upload:FFe,UploadCloud:Kq,UploadCloudIcon:Kq,UploadIcon:FFe,Usb:HFe,UsbIcon:HFe,User:JFe,User2:pB,User2Icon:pB,UserCheck:BFe,UserCheck2:cB,UserCheck2Icon:cB,UserCheckIcon:BFe,UserCircle:Vq,UserCircle2:$q,UserCircle2Icon:$q,UserCircleIcon:Vq,UserCog:WFe,UserCog2:uB,UserCog2Icon:uB,UserCogIcon:WFe,UserIcon:JFe,UserLock:$Fe,UserLockIcon:$Fe,UserMinus:VFe,UserMinus2:dB,UserMinus2Icon:dB,UserMinusIcon:VFe,UserPen:UFe,UserPenIcon:UFe,UserPlus:GFe,UserPlus2:hB,UserPlus2Icon:hB,UserPlusIcon:GFe,UserRound:pB,UserRoundCheck:cB,UserRoundCheckIcon:cB,UserRoundCog:uB,UserRoundCogIcon:uB,UserRoundIcon:pB,UserRoundMinus:dB,UserRoundMinusIcon:dB,UserRoundPen:XFe,UserRoundPenIcon:XFe,UserRoundPlus:hB,UserRoundPlusIcon:hB,UserRoundSearch:KFe,UserRoundSearchIcon:KFe,UserRoundX:fB,UserRoundXIcon:fB,UserSearch:YFe,UserSearchIcon:YFe,UserSquare:eB,UserSquare2:JH,UserSquare2Icon:JH,UserSquareIcon:eB,UserX:ZFe,UserX2:fB,UserX2Icon:fB,UserXIcon:ZFe,Users:eHe,Users2:gB,Users2Icon:gB,UsersIcon:eHe,UsersRound:gB,UsersRoundIcon:gB,Utensils:bB,UtensilsCrossed:mB,UtensilsCrossedIcon:mB,UtensilsIcon:bB,UtilityPole:tHe,UtilityPoleIcon:tHe,Variable:nHe,VariableIcon:nHe,Vault:rHe,VaultIcon:rHe,Vegan:iHe,VeganIcon:iHe,VenetianMask:oHe,VenetianMaskIcon:oHe,Venus:aHe,VenusAndMars:sHe,VenusAndMarsIcon:sHe,VenusIcon:aHe,Verified:Zj,VerifiedIcon:Zj,Vibrate:cHe,VibrateIcon:cHe,VibrateOff:lHe,VibrateOffIcon:lHe,Video:dHe,VideoIcon:dHe,VideoOff:uHe,VideoOffIcon:uHe,Videotape:hHe,VideotapeIcon:hHe,View:fHe,ViewIcon:fHe,Voicemail:pHe,VoicemailIcon:pHe,Volleyball:gHe,VolleyballIcon:gHe,Volume:THe,Volume1:mHe,Volume1Icon:mHe,Volume2:bHe,Volume2Icon:bHe,VolumeIcon:THe,VolumeOff:vHe,VolumeOffIcon:vHe,VolumeX:yHe,VolumeXIcon:yHe,Vote:MHe,VoteIcon:MHe,Wallet:_He,Wallet2:vB,Wallet2Icon:vB,WalletCards:wHe,WalletCardsIcon:wHe,WalletIcon:_He,WalletMinimal:vB,WalletMinimalIcon:vB,Wallpaper:OHe,WallpaperIcon:OHe,Wand:AHe,Wand2:yB,Wand2Icon:yB,WandIcon:AHe,WandSparkles:yB,WandSparklesIcon:yB,Warehouse:xHe,WarehouseIcon:xHe,WashingMachine:SHe,WashingMachineIcon:SHe,Watch:CHe,WatchIcon:CHe,Waves:zHe,WavesIcon:zHe,WavesLadder:QHe,WavesLadderIcon:QHe,Waypoints:EHe,WaypointsIcon:EHe,Webcam:LHe,WebcamIcon:LHe,Webhook:NHe,WebhookIcon:NHe,WebhookOff:kHe,WebhookOffIcon:kHe,Weight:RHe,WeightIcon:RHe,Wheat:PHe,WheatIcon:PHe,WheatOff:DHe,WheatOffIcon:DHe,WholeWord:IHe,WholeWordIcon:IHe,Wifi:WHe,WifiHigh:jHe,WifiHighIcon:jHe,WifiIcon:WHe,WifiLow:qHe,WifiLowIcon:qHe,WifiOff:FHe,WifiOffIcon:FHe,WifiPen:HHe,WifiPenIcon:HHe,WifiZero:BHe,WifiZeroIcon:BHe,Wind:VHe,WindArrowDown:$He,WindArrowDownIcon:$He,WindIcon:VHe,Wine:UHe,WineIcon:UHe,WineOff:GHe,WineOffIcon:GHe,Workflow:XHe,WorkflowIcon:XHe,Worm:KHe,WormIcon:KHe,WrapText:YHe,WrapTextIcon:YHe,Wrench:ZHe,WrenchIcon:ZHe,X:Gle,XCircle:vk,XCircleIcon:vk,XIcon:Gle,XOctagon:PF,XOctagonIcon:PF,XSquare:tB,XSquareIcon:tB,Youtube:JHe,YoutubeIcon:JHe,Zap:tBe,ZapIcon:tBe,ZapOff:eBe,ZapOffIcon:eBe,ZoomIn:nBe,ZoomInIcon:nBe,ZoomOut:rBe,ZoomOutIcon:rBe,createLucideIcon:oe,icons:IDo},Symbol.toStringTag,{value:"Module"})),qDo=$.forwardRef((e,t)=>Q.jsxs(Q.Fragment,{children:[Q.jsx("svg",{width:"0",height:"0",style:{position:"absolute"},children:Q.jsx("defs",{children:Q.jsxs("linearGradient",{id:"grad1",x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:[Q.jsx("stop",{className:"gradient-start",offset:"0%"}),Q.jsx("stop",{className:"gradient-end",offset:"100%"})]})})}),Q.jsx($le,{stroke:"url(#grad1)",ref:t,...e})]})),qti=$.forwardRef((e,t)=>Q.jsx(Q.Fragment,{children:Q.jsx(mt,{name:"Save",stroke:"url(#x-gradient)",ref:t,...e})})),Qrn=e=>Q.jsxs(Q.Fragment,{children:[Q.jsx("svg",{width:"0",height:"0",style:{position:"absolute"},children:Q.jsx("defs",{children:Q.jsxs("linearGradient",{id:"grad3",x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:[Q.jsx("stop",{className:"gradient-start",offset:"0%"}),Q.jsx("stop",{className:"gradient-end",offset:"100%"})]})})}),Q.jsx(mt,{name:"Combine",stroke:`${e.disabled?"#64748B":"url(#grad3)"}`,...e})]}),FDo=$.forwardRef((e,t)=>Q.jsxs(Q.Fragment,{children:[Q.jsx("svg",{width:"0",height:"0",style:{position:"absolute"},children:Q.jsx("defs",{children:Q.jsxs("linearGradient",{id:"grad4",x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:[Q.jsx("stop",{className:"gradient-start",offset:"0%"}),Q.jsx("stop",{className:"gradient-end",offset:"100%"})]})})}),Q.jsx(mt,{name:"Ungroup",stroke:"url(#grad4)",ref:t,...e})]})),pl1=Object.freeze(Object.defineProperty({__proto__:null,GradientGroup:Qrn,GradientInfinity:qDo,GradientSave:qti,GradientUngroup:FDo},Symbol.toStringTag,{value:"Module"})),kpt=new Map,Jar=["bg-gradient-to-br from-gray-800 via-rose-700 to-violet-900","bg-gradient-to-br from-green-200 via-green-300 to-blue-500","bg-gradient-to-br from-yellow-200 via-yellow-400 to-yellow-700","bg-gradient-to-br from-green-200 via-green-400 to-purple-700","bg-gradient-to-br from-blue-100 via-blue-300 to-blue-500","bg-gradient-to-br from-purple-400 to-yellow-400","bg-gradient-to-br from-red-800 via-yellow-600 to-yellow-500","bg-gradient-to-br from-blue-300 via-green-200 to-yellow-300","bg-gradient-to-br from-blue-700 via-blue-800 to-gray-900","bg-gradient-to-br from-green-300 to-purple-400","bg-gradient-to-br from-yellow-200 via-pink-200 to-pink-400","bg-gradient-to-br from-green-500 to-green-700","bg-gradient-to-br from-rose-400 via-fuchsia-500 to-indigo-500","bg-gradient-to-br from-sky-400 to-blue-500","bg-gradient-to-br from-green-200 via-green-400 to-green-500","bg-gradient-to-br from-red-400 via-gray-300 to-blue-500","bg-gradient-to-br from-gray-900 to-gray-600 bg-gradient-to-r","bg-gradient-to-br from-rose-500 via-red-400 to-red-500","bg-gradient-to-br from-fuchsia-600 to-pink-600","bg-gradient-to-br from-emerald-500 to-lime-600","bg-gradient-to-br from-rose-500 to-indigo-700","bg-gradient-to-br bg-gradient-to-tr from-violet-500 to-orange-300","bg-gradient-to-br from-gray-900 via-purple-900 to-violet-600","bg-gradient-to-br from-yellow-200 via-red-500 to-fuchsia-500","bg-gradient-to-br from-sky-400 to-indigo-900","bg-gradient-to-br from-amber-200 via-violet-600 to-sky-900","bg-gradient-to-br from-amber-700 via-orange-300 to-rose-800","bg-gradient-to-br from-gray-300 via-fuchsia-600 to-orange-600","bg-gradient-to-br from-fuchsia-500 via-red-600 to-orange-400","bg-gradient-to-br from-sky-400 via-rose-400 to-lime-400","bg-gradient-to-br from-lime-600 via-yellow-300 to-red-600"],b$=["bg-neon-fuschia text-white","bg-digital-orchid text-plasma-purple","bg-plasma-purple text-digital-orchid","bg-electric-blue text-holo-frost","bg-holo-frost text-electric-blue","bg-terminal-green text-cosmic-void"],p7={inputs:"#10B981",outputs:"#AA2411",data:"#198BF6",prompts:"#4367BF",models:"#ab11ab",model_specs:"#6344BE",chains:"#FE7500",list:"#9AAE42",agents:"#903BBE",Olivya:"#00413B",tools:"#00fbfc",memories:"#F5B85A",saved_components:"#a5B85A",advanced:"#000000",chat:"#198BF6",thought:"#272541",embeddings:"#42BAA7",documentloaders:"#7AAE42",vectorstores:"#AA8742",vectorsearch:"#AA8742",textsplitters:"#B47CB5",toolkits:"#DB2C2C",wrappers:"#E6277A",notion:"#000000",Notion:"#000000",AssemblyAI:"#213ED7",assemblyai:"#213ED7",helpers:"#31A3CC",prototypes:"#E6277A",astra_assistants:"#272541",langchain_utilities:"#31A3CC",output_parsers:"#E6A627",retrievers:"#e6b25a",str:"#4F46E5",Text:"#4F46E5",unknown:"#9CA3AF",Document:"#65a30d",Data:"#dc2626",Message:"#4f46e5",number:"#7E22CF",Prompt:"#7c3aed",Embeddings:"#10b981",BaseLanguageModel:"#c026d3",LanguageModel:"#c026d3",Agent:"#903BBE",AgentExecutor:"#903BBE",Tool:"#00fbfc"},dg={inputs:"emerald",outputs:"red",data:"sky",prompts:"blue",models:"fuchsia",model_specs:"violet",chains:"orange",list:"lime",agents:"purple",tools:"cyan",memories:"amber",saved_components:"lime",advanced:"slate",chat:"sky",thought:"zinc",embeddings:"teal",documentloaders:"lime",vectorstores:"yellow",vectorsearch:"yellow",textsplitters:"fuchsia",toolkits:"red",wrappers:"rose",notion:"slate",Notion:"slate",AssemblyAI:"blue",assemblyai:"blue",helpers:"cyan",prototypes:"rose",astra_assistants:"indigo",langchain_utilities:"sky",output_parsers:"yellow",retrievers:"yellow",str:"indigo",number:"purple",Text:"indigo",unknown:"gray",Document:"lime",Data:"red",Message:"indigo",Prompt:"violet",Embeddings:"emerald",BaseLanguageModel:"fuchsia",LanguageModel:"fuchsia",Agent:"purple",AgentExecutor:"purple",Tool:"cyan",BaseChatMemory:"cyan",BaseChatMessageHistory:"orange",Memory:"orange",DataFrame:"pink"},y5t={json:{icon:"FileJson",color:"text-datatype-indigo dark:text-datatype-indigo-foreground"},csv:{icon:"FileChartColumn",color:"text-datatype-emerald dark:text-datatype-emerald-foreground"},txt:{icon:"FileType",color:"text-datatype-purple dark:text-datatype-purple-foreground"},pdf:{icon:"File",color:"text-datatype-red dark:text-datatype-red-foreground"}},HDo=[{display_name:"Saved",name:"saved_components",icon:"GradientSave"},{display_name:"Input / Output",name:"input_output",icon:"Cable"},{display_name:"Agents",name:"agents",icon:"Bot"},{display_name:"Models",name:"models",icon:"BrainCog"},{display_name:"Data",name:"data",icon:"Database"},{display_name:"Knowledge Bases",name:"knowledge_bases",icon:"Library"},{display_name:"Vector Stores",name:"vectorstores",icon:"Layers"},{display_name:"Processing",name:"processing",icon:"ListFilter"},{display_name:"Logic",name:"logic",icon:"ArrowRightLeft"},{display_name:"Helpers",name:"helpers",icon:"Wand2"},{display_name:"Inputs",name:"inputs",icon:"Download"},{display_name:"Outputs",name:"outputs",icon:"Upload"},{display_name:"Prompts",name:"prompts",icon:"braces"},{display_name:"Chains",name:"chains",icon:"Link"},{display_name:"Loaders",name:"documentloaders",icon:"Paperclip"},{display_name:"Link Extractors",name:"link_extractors",icon:"Link2"},{display_name:"Output Parsers",name:"output_parsers",icon:"Compass"},{display_name:"Prototypes",name:"prototypes",icon:"FlaskConical"},{display_name:"Retrievers",name:"retrievers",icon:"FileSearch"},{display_name:"Text Splitters",name:"textsplitters",icon:"Scissors"},{display_name:"Toolkits",name:"toolkits",icon:"Package2"},{display_name:"Tools",name:"tools",icon:"Hammer"}],Fti=[{display_name:"AI/ML API",name:"aiml",icon:"AIML"},{display_name:"AgentQL",name:"agentql",icon:"AgentQL"},{display_name:"Language Models",name:"languagemodels",icon:"BrainCircuit"},{display_name:"Embeddings",name:"embeddings",icon:"Binary"},{display_name:"Memories",name:"memories",icon:"Cpu"},{display_name:"Amazon",name:"amazon",icon:"Amazon"},{display_name:"Anthropic",name:"anthropic",icon:"Anthropic"},{display_name:"Apify",name:"apify",icon:"Apify"},{display_name:"arXiv",name:"arxiv",icon:"arXiv"},{display_name:"AssemblyAI",name:"assemblyai",icon:"AssemblyAI"},{display_name:"Azure",name:"azure",icon:"Azure"},{display_name:"Baidu",name:"baidu",icon:"BaiduQianfan"},{display_name:"Bing",name:"bing",icon:"Bing"},{display_name:"Cassandra",name:"cassandra",icon:"Cassandra"},{display_name:"Chroma",name:"chroma",icon:"Chroma"},{display_name:"ClickHouse",name:"clickhouse",icon:"Clickhouse"},{display_name:"Cleanlab",name:"cleanlab",icon:"Cleanlab"},{display_name:"Cloudflare",name:"cloudflare",icon:"Cloudflare"},{display_name:"Cohere",name:"cohere",icon:"Cohere"},{display_name:"Composio",name:"composio",icon:"Composio"},{display_name:"Confluence",name:"confluence",icon:"Confluence"},{display_name:"Couchbase",name:"couchbase",icon:"Couchbase"},{display_name:"CrewAI",name:"crewai",icon:"CrewAI"},{display_name:"DataStax",name:"datastax",icon:"AstraDB"},{display_name:"DeepSeek",name:"deepseek",icon:"DeepSeek"},{display_name:"Docling",name:"docling",icon:"Docling"},{display_name:"DuckDuckGo",name:"duckduckgo",icon:"DuckDuckGo"},{display_name:"Elastic",name:"elastic",icon:"ElasticsearchStore"},{display_name:"Exa",name:"exa",icon:"Exa"},{display_name:"FAISS",name:"FAISS",icon:"FAISS"},{display_name:"Firecrawl",name:"firecrawl",icon:"FirecrawlCrawlApi"},{display_name:"Git",name:"git",icon:"GitLoader"},{display_name:"Glean",name:"glean",icon:"Glean"},{display_name:"Gmail",name:"gmail",icon:"Gmail"},{display_name:"Google",name:"google",icon:"Google"},{display_name:"Groq",name:"groq",icon:"Groq"},{display_name:"Home Assistant",name:"homeassistant",icon:"HomeAssistant"},{display_name:"Hugging Face",name:"huggingface",icon:"HuggingFace"},{display_name:"IBM",name:"ibm",icon:"WatsonxAI"},{display_name:"Icosa Computing",name:"icosacomputing",icon:"Icosa"},{display_name:"JigsawStack",name:"jigsawstack",icon:"JigsawStack"},{display_name:"LangChain",name:"langchain_utilities",icon:"LangChain"},{display_name:"LangWatch",name:"langwatch",icon:"Langwatch"},{display_name:"LMStudio",name:"lmstudio",icon:"LMStudio"},{display_name:"MariTalk",name:"maritalk",icon:"Maritalk"},{display_name:"Mem0",name:"mem0",icon:"Mem0"},{display_name:"Memories",name:"memories",icon:"Cpu"},{display_name:"Milvus",name:"milvus",icon:"Milvus"},{display_name:"MistralAI",name:"mistral",icon:"MistralAI"},{display_name:"MongoDB",name:"mongodb",icon:"MongoDB"},{display_name:"Needle",name:"needle",icon:"Needle"},{display_name:"Not Diamond",name:"notdiamond",icon:"NotDiamond"},{display_name:"Notion",name:"Notion",icon:"Notion"},{display_name:"Novita",name:"novita",icon:"Novita"},{display_name:"NVIDIA",name:"nvidia",icon:"NVIDIA"},{display_name:"Olivya",name:"olivya",icon:"Olivya"},{display_name:"Ollama",name:"ollama",icon:"Ollama"},{display_name:"OpenAI",name:"openai",icon:"OpenAI"},{display_name:"OpenRouter",name:"openrouter",icon:"OpenRouter"},{display_name:"Perplexity",name:"perplexity",icon:"Perplexity"},{display_name:"pgvector",name:"pgvector",icon:"cpu"},{display_name:"Pinecone",name:"pinecone",icon:"Pinecone"},{display_name:"Qdrant",name:"qdrant",icon:"Qdrant"},{display_name:"Redis",name:"redis",icon:"Redis"},{display_name:"SambaNova",name:"sambanova",icon:"SambaNova"},{display_name:"ScrapeGraph AI",name:"scrapegraph",icon:"ScrapeGraph"},{display_name:"SearchApi",name:"searchapi",icon:"SearchAPI"},{display_name:"SerpApi",name:"serpapi",icon:"SerpSearch"},{display_name:"Serper",name:"serper",icon:"Serper"},{display_name:"Supabase",name:"supabase",icon:"Supabase"},{display_name:"Tavily",name:"tavily",icon:"TavilyIcon"},{display_name:"TwelveLabs",name:"twelvelabs",icon:"TwelveLabs"},{display_name:"Unstructured",name:"unstructured",icon:"Unstructured"},{display_name:"Upstash",name:"upstash",icon:"Upstash"},{display_name:"Vectara",name:"vectara",icon:"Vectara"},{display_name:"Vector Stores",name:"vectorstores",icon:"Layers"},{display_name:"Weaviate",name:"weaviate",icon:"Weaviate"},{display_name:"Vertex AI",name:"vertexai",icon:"VertexAI"},{display_name:"Wikipedia",name:"wikipedia",icon:"Wikipedia"},{display_name:"WolframAlpha",name:"wolframalpha",icon:"WolframAlphaAPI"},{display_name:"xAI",name:"xai",icon:"xAI"},{display_name:"Yahoo! Finance",name:"yahoosearch",icon:"trending-up"},{display_name:"YouTube",name:"youtube",icon:"YouTube"},{display_name:"Zep",name:"zep",icon:"ZepMemory"}],BDo={saved_components:"GradientSave",input_output:"Cable",inputs:"Download",outputs:"Upload",prompts:"Braces",data:"Database",models:"BrainCircuit",helpers:"Wand2",vectorstores:"Layers",embeddings:"Binary",agents:"Bot",astra_assistants:"Sparkles",chains:"Link",documentloaders:"Paperclip",langchain_utilities:"PocketKnife",link_extractors:"Link2",memories:"Cpu",output_parsers:"Compass",prototypes:"FlaskConical",retrievers:"FileSearch",textsplitters:"Scissors",toolkits:"Package2",tools:"Hammer",custom:"Edit",custom_components:"GradientInfinity"},Hti={input_output:"Cable",inputs:"Download",outputs:"Upload",prompts:"Braces",data:"Database",models:"BrainCog",helpers:"Wand2",vectorstores:"Layers",embeddings:"Binary",agents:"Bot",astra_assistants:"Sparkles",chains:"Link",documentloaders:"Paperclip",langchain_utilities:"PocketKnife",link_extractors:"Link2",memories:"Cpu",output_parsers:"Compass",prototypes:"FlaskConical",retrievers:"FileSearch",textsplitters:"Scissors",toolkits:"Package2",tools:"Hammer",custom_components:"GradientInfinity",ChatInput:"MessagesSquare",ChatOutput:"MessagesSquare",Outlook:"Outlook",Linear:"Linear",Reddit:"Reddit",Googlemaps:"Googlemaps",Todoist:"Todoist",Zoom:"Zoom",AIML:"AI/ML",AgentQL:"AgentQL",LanguageModels:"BrainCircuit",EmbeddingModels:"Binary",AirbyteJSONLoader:"Airbyte",AmazonBedrockEmbeddings:"AWS",Amazon:"AWS",arXiv:"ArXiv",assemblyai:"AssemblyAI",athenaIcon:"Athena",AzureChatOpenAi:"OpenAI",AzureOpenAiEmbeddings:"Azure",AzureOpenAiModel:"Azure",BaiduQianfan:"QianFanChat",BingSearchAPIWrapper:"Bing",BingSearchRun:"Bing",ChatAnthropic:"Anthropic",ChatOllama:"Ollama",ChatOllamaModel:"Ollama",ChatOpenAI:"OpenAI",ChatVertexAI:"VertexAI",ChevronsUpDownIcon:"ChevronsUpDown",ClearMessageHistory:"FileClock",CohereEmbeddings:"Cohere",Discord:"FaDiscord",ElasticsearchStore:"ElasticsearchStore",EverNoteLoader:"Evernote",ExaSearch:"Exa",FacebookChatLoader:"FacebookMessenger",FAISS:"Meta",FaissSearch:"Meta",FirecrawlCrawlApi:"Firecrawl",FirecrawlExtractApi:"Firecrawl",FirecrawlMapApi:"Firecrawl",FirecrawlScrapeApi:"Firecrawl",GitbookLoader:"GitBook",GoogleGenerativeAI:"GoogleGenerativeAI",Googlesheets:"Googlesheets",GoogleSearchAPI:"Google",GoogleSearchAPIWrapper:"Google",Googlemeet:"Googlemeet",GoogleTasks:"GoogleTasks",GoogleSearchResults:"Google",GoogleSearchRun:"Google",GoogleSerperAPI:"Google",group_components:"GradientUngroup",HNLoader:"HackerNews",HuggingFaceEmbeddings:"HuggingFace",HuggingFaceHub:"HuggingFace",IFixitLoader:"IFixIt",ListFlows:"Group",MistralAI:"Mistral",MongoDBAtlasVectorSearch:"MongoDB",MongoDBChatMessageHistory:"MongoDB",notion:"Notion",NotionDirectoryLoader:"Notion",NotDiamond:"NotDiamond",Notify:"Bell",novita:"Novita",OllamaEmbeddings:"Ollama",OpenAIEmbeddings:"OpenAI",PostgresChatMessageHistory:"Postgres",Qdrant:"QDrant",RedisSearch:"Redis",Share3:"Share",Share4:"Share2",SlackDirectoryLoader:"Slack",SpiderTool:"Spider",SupabaseVectorStore:"Supabase",TavilyIcon:"Tavily",VertexAIEmbeddings:"VertexAI",WikipediaAPIWrapper:"WikipediaAPI",WikipediaQueryRun:"WikipediaAPI",WolframAlphaAPI:"Wolfram",WolframAlphaAPIWrapper:"Wolfram",WolframAlphaQueryRun:"Wolfram",model_specs:"FileSliders",advanced:"Laptop2",chat:"MessageCircle",saved_components:"GradientSave",vectorsearch:"TextSearch",wrappers:"Gift",unknown:"HelpCircle",custom:"Edit",ThumbDownIconCustom:"ThumbDownCustom",ThumbUpIconCustom:"ThumbUpCustom",ScrapeGraphAI:"ScrapeGraph",ScrapeGraphSmartScraperApi:"ScrapeGraph",ScrapeGraphMarkdownifyApi:"ScrapeGraph",note:"StickyNote"},Bti=e=>{const t={AlertCircle:"circle-alert",AlertTriangle:"triangle-alert",TerminalSquare:"square-terminal",Wand2:"wand-sparkles"},n=e.replace(/Icon/g,"").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/(\d)/g,"-$1").replace(/\s+/g,"-").toLowerCase();return t[e]||n},Wti=ee(()=>import("./lazyIconImports-BjqDmNYG.js"),[],import.meta.url).then(e=>e.lazyIconsMapping),zrn={GradientSave:qti,BotMessageSquareIcon:mxr,FaApple:gxr,FaDiscord:ude,FaGithub:dde,TwitterLogoIcon:V5o},WDo=e=>kpt.get(e),$Do=async e=>{const t=a=>(kpt.set(e,a),a);if(kpt.has(e))return kpt.get(e);const n=Hti[e];if(zrn[n||e])return t(zrn[n||e]);if(vxr(n||e))return t(bxr[n||e]);const i=await Wti;if(i[n||e])return t($.lazy(i[n||e]));const s=Bti(n||e);if(m5t[s])try{return t($.lazy(m5t[s]))}catch{}return t($.lazy(()=>Promise.resolve({default:()=>null})))},$ti=async e=>{const t=Hti[e]||e,n=await Wti;return!!(zrn[t]||vxr(t)||n[t]||m5t[Bti(t)])},mt=$.memo($.forwardRef(({name:e,className:t,iconColor:n,stroke:i,strokeWidth:s,id:a="",skipFallback:l=!1,dataTestId:u=""},d)=>{const{dark:f}=c2(),[p,g]=$.useState(!1),[m,v]=$.useState(!1),[y,T]=$.useState(WDo(e));$.useEffect(()=>{v(!1),T(null),g(!1);let C=!0,L=null;return e&&typeof e=="string"&&($Do(e).then(k=>{C&&(T(k),g(!1))}).catch(k=>{C&&(console.error(`Error loading icon ${e}:`,k),v(!0),g(!1))}),L=setTimeout(()=>{C&&g(!0)},30)),()=>{C=!1,L&&clearTimeout(L)}},[e]);const _={strokeWidth:s??1.5,...i&&{stroke:i},...n&&{color:n,stroke:i}},O=$.useCallback(()=>{v(!0)},[]);if(!y||m)return l?null:Q.jsx("div",{className:pt(t,"flex items-center justify-center"),"data-testid":u||(a?`${a}-placeholder`:"icon-placeholder")});const S=p?Q.jsx("div",{className:pt(t,"flex items-center justify-center"),children:Q.jsx(l6,{className:"h-4 w-4"})}):Q.jsx("div",{className:t});return Q.jsx($.Suspense,{fallback:l?void 0:S,children:Q.jsx(VDo,{onError:O,children:y!=null&&y.render||y!=null&&y._payload?Q.jsx(y,{className:t,style:_,ref:d,isDark:f,"data-testid":u||(a?`${a}-${e}`:`icon-${e}`)}):Q.jsx("div",{className:t,style:_,"data-testid":u||(a?`${a}-${e}`:`icon-${e}`),children:y})})})}));let VDo=class extends nr.Component{componentDidCatch(t){this.props.onError()}render(){return this.props.children}};const _bt=e=>Array.isArray(e),UDo=e=>e&&typeof e=="object"&&!_bt(e),GDo=e=>typeof e=="string";function M3(e){return(...t)=>{const n=t.map(a=>Z4(a)),i=n[0],s=n[1];return n.length===1?a=>e(i(a)):n.length===2?a=>e(i(a),s(a)):a=>e(...n.map(l=>l(a)))}}const hZ={pipe:(...e)=>{const t=e.map(n=>Z4(n));return n=>t.reduce((i,s)=>s(i),n)},object:e=>{const t=Object.keys(e).map(n=>[n,Z4(e[n])]);return n=>{const i={};for(const[s,a]of t)i[s]=a(n);return i}},array:(...e)=>{const t=e.map(n=>Z4(n));return n=>t.map(i=>i(n))},get:(...e)=>{if(e.length===0)return t=>t??null;if(e.length===1){const t=e[0];return n=>(n==null?void 0:n[t])??null}return t=>{let n=t;for(const i of e)n=n==null?void 0:n[i];return n??null}},map:e=>{const t=Z4(e);return n=>n.map(t)},mapObject:e=>{const t=Z4(e);return n=>{const i={};for(const s of Object.keys(n)){const a=t({key:s,value:n[s]});i[a.key]=a.value}return i}},mapKeys:e=>{const t=Z4(e);return n=>{const i={};for(const s of Object.keys(n)){const a=t(s);i[a]=n[s]}return i}},mapValues:e=>{const t=Z4(e);return n=>{const i={};for(const s of Object.keys(n))i[s]=t(n[s]);return i}},filter:e=>{const t=Z4(e);return n=>n.filter(i=>e1r(t(i)))},sort:(e=["get"],t)=>{const n=Z4(e),i=t==="desc"?-1:1;function s(a,l){const u=n(a),d=n(l);return u>d?i:u<d?-i:0}return a=>a.slice().sort(s)},reverse:()=>e=>e.toReversed(),pick:(...e)=>{const t=e.map(([i,...s])=>[s[s.length-1],hZ.get(...s)]),n=(i,s)=>{const a={};for(const[l,u]of s)a[l]=u(i);return a};return i=>_bt(i)?i.map(s=>n(s,t)):n(i,t)},groupBy:e=>{const t=Z4(e);return n=>{const i={};for(const s of n){const a=t(s);i[a]?i[a].push(s):i[a]=[s]}return i}},keyBy:e=>{const t=Z4(e);return n=>{const i={};for(const s of n){const a=t(s);a in i||(i[a]=s)}return i}},flatten:()=>e=>e.flat(),join:(e="")=>t=>t.join(e),split:M3((e,t)=>t!==void 0?e.split(t):e.trim().split(/\s+/)),substring:M3((e,t,n)=>e.slice(Math.max(t,0),n)),uniq:()=>e=>[...new Set(e)],uniqBy:e=>t=>Object.values(hZ.keyBy(e)(t)),limit:e=>t=>t.slice(0,Math.max(e,0)),size:()=>e=>e.length,keys:()=>Object.keys,values:()=>Object.values,prod:()=>e=>e.reduce((t,n)=>t*n),sum:()=>e=>e.reduce((t,n)=>t+n),average:()=>e=>hZ.sum()(e)/e.length,min:()=>e=>Math.min(...e),max:()=>e=>Math.max(...e),and:M3((e,t)=>!!(e&&t)),or:M3((e,t)=>!!(e||t)),not:M3(e=>!e),exists:e=>{const t=e.slice(1),n=t.pop(),i=hZ.get(...t);return s=>{const a=i(s);return!!a&&Object.hasOwnProperty.call(a,n)}},if:(e,t,n)=>{const i=Z4(e),s=Z4(t),a=Z4(n);return l=>e1r(i(l))?s(l):a(l)},in:(e,t)=>{const n=Z4(e),i=Z4(t);return s=>i(s).includes(n(s))},"not in":(e,t)=>{const n=hZ.in(e,t);return i=>!n(i)},regex:(e,t,n)=>{const i=new RegExp(t,n),s=Z4(e);return a=>i.test(s(a))},eq:M3((e,t)=>e===t),gt:M3((e,t)=>e>t),gte:M3((e,t)=>e>=t),lt:M3((e,t)=>e<t),lte:M3((e,t)=>e<=t),ne:M3((e,t)=>e!==t),add:M3((e,t)=>e+t),subtract:M3((e,t)=>e-t),multiply:M3((e,t)=>e*t),divide:M3((e,t)=>e/t),pow:M3((e,t)=>e**t),mod:M3((e,t)=>e%t),abs:M3(Math.abs),round:M3((e,t=0)=>+`${Math.round(+`${e}e${t}`)}e${-t}`),number:M3(e=>{const t=Number(e);return Number.isNaN(Number(e))?null:t}),string:M3(String)},e1r=e=>e!==null&&e!==0&&e!==!1,y2t=[];function Z4(e,t){y2t.unshift({...hZ,...y2t[0]});try{const n=_bt(e)?XDo(e,y2t[0]):UDo(e)?Vti(`Function notation ["object", {...}] expected but got ${JSON.stringify(e)}`):()=>e;return i=>{try{return n(i)}catch(s){throw s.jsonquery=[{data:i,query:e},...s.jsonquery??[]],s}}}finally{y2t.shift()}}function XDo(e,t){const[n,...i]=e,s=t[n];return s||Vti(`Unknown function '${n}'`),s(...i)}function Vti(e){throw new Error(e)}const Uti={and:"and",or:"or",eq:"==",gt:">",gte:">=",lt:"<",lte:"<=",ne:"!=",add:"+",subtract:"-",multiply:"*",divide:"/",pow:"^",mod:"%",in:"in","not in":"not in"},KDo=/^[a-zA-Z_$][a-zA-Z\d_$]*$/,YDo=/^[a-zA-Z_$][a-zA-Z\d_$]*/,ZDo=/^"(?:[^"\\]|\\.)*"/,JDo=/^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?/,ePo=/^(0|[1-9][0-9]*)/,tPo=/^(true|false|null)/,nPo=/^[ \n\t\r]+/;function Gti(e,t){const n={...Uti},i=Object.keys(n).sort((R,P)=>P.length-R.length),s=()=>{S();const R=a();if(S(),e[k]==="|"){const P=[R];for(;e[k]==="|";)k++,S(),P.push(a());return["pipe",...P]}return R},a=()=>{const R=l();S();for(const P of i){const D=n[P];if(e.substring(k,k+D.length)===D){k+=D.length,S();const q=l();return[P,R,q]}}return R},l=()=>{if(e[k]==="("){k++;const R=s();return C(")"),R}return u()},u=()=>{if(e[k]==="."){const R=[];for(;e[k]===".";)k++,R.push(g()??m()??y()??L("Property expected"));return["get",...R]}return d()},d=()=>{const R=k,P=m();if(S(),!P||e[k]!=="(")return k=R,f();k++,!hZ[P]&&L(`Unknown function '${P}'`),S();const D=e[k]!==")"?[s()]:[];for(;k<e.length&&e[k]!==")";)S(),C(","),D.push(s());return C(")"),[P,...D]},f=()=>{if(e[k]==="{"){k++,S();const R={};let P=!0;for(;k<e.length&&e[k]!=="}";){P?P=!1:(C(","),S());const D=g()??m()??y()??L("Key expected");S(),C(":"),R[D]=s()}return C("}"),["object",R]}return p()},p=()=>{if(e[k]==="["){k++,S();const R=[];let P=!0;for(;k<e.length&&e[k]!=="]";)P?P=!1:(C(","),S()),R.push(s());return C("]"),["array",...R]}return g()??v()??T()},g=()=>O(ZDo,JSON.parse),m=()=>O(YDo,R=>R),v=()=>O(JDo,JSON.parse),y=()=>O(ePo,JSON.parse),T=()=>{const R=O(tPo,JSON.parse);if(R!==void 0)return R;L("Value expected")},_=()=>{S(),k<e.length&&L(`Unexpected part '${e.substring(k)}'`)},O=(R,P)=>{const D=e.substring(k).match(R);if(D)return k+=D[0].length,P(D[0])},S=()=>O(nPo,R=>R),C=R=>{e[k]!==R&&L(`Character '${R}' expected`),k++},L=(R,P=k)=>{throw new SyntaxError(`${R} (pos: ${P})`)};let k=0;const E=s();return _(),E}const rPo=40,iPo=" ",oPo=(e,t)=>{const n=iPo,i=(f,p)=>_bt(f)?s(f,p):JSON.stringify(f),s=(f,p)=>{var g;const[m,...v]=f;if(m==="get"&&v.length>0)return l(v);if(m==="pipe"){const O=v.map(S=>i(S,p+n));return d(O,[""," | ",""],["",`
9102
9102
  ${p+n}| `,""])}if(m==="object")return a(v[0],p);if(m==="array"){const O=v.map(S=>i(S,p));return d(O,["[",", ","]"],[`[
9103
9103
  ${p+n}`,`,
9104
9104
  ${p+n}`,`
@@ -15093,7 +15093,7 @@ build/static/js/bundle.min.js">
15093
15093
  return true;
15094
15094
  }
15095
15095
  }
15096
-
15096
+
15097
15097
  try {
15098
15098
  registerProcessor('stream_processor', StreamProcessor);
15099
15099
  } catch (e) {
@@ -15229,4 +15229,4 @@ ${p==null?void 0:p.stackTrace}`})}),Q.jsx(yQ,{condition:l==="text",children:Q.js
15229
15229
  ]
15230
15230
  }
15231
15231
  }
15232
- }`,Y="https://docs.langflow.org/mcp-server#connect-clients-to-use-the-servers-actions",ie="https://docs.langflow.org/mcp-server",te=$.useCallback(()=>{navigator.clipboard.writeText(Z).then(()=>{l(!0),setTimeout(()=>{l(!1)},1e3)}).catch(ve=>console.error("Failed to copy text: ",ve))},[Z]),ce=$.useCallback(()=>{p(!0),ZAr(`MCP Server ${e}`).then(ve=>{d(ve.api_key)}).catch(()=>{}).finally(()=>{p(!1)})},[e]),[pe,se]=$.useState([]),de=(S==null?void 0:S.auth_type)&&S.auth_type!=="none";return Q.jsxs("div",{children:[Q.jsx("div",{className:"flex justify-between gap-4 items-start",children:Q.jsxs("div",{children:[Q.jsx("div",{className:"pb-2 font-medium","data-testid":"mcp-server-title",children:"MCP Server"}),Q.jsxs("div",{className:"pb-4 text-mmd text-muted-foreground",children:["Access your Project's flows as Tools within a MCP Server. Learn more in our",Q.jsxs("a",{className:"text-accent-pink-foreground",href:ie,target:"_blank",rel:"noreferrer",children:[" ","Projects as MCP Servers guide."]})]})]})}),Q.jsxs("div",{className:"flex flex-col justify-between gap-8 xl:flex-row",children:[Q.jsxs("div",{className:"w-full xl:w-2/5",children:[Q.jsx("div",{className:"flex flex-row justify-between pt-1",children:Q.jsx(No,{content:"Flows in this project can be exposed as callable MCP tools.",side:"right",children:Q.jsxs("div",{className:"flex items-center text-mmd font-medium hover:cursor-help",children:["Flows/Tools",Q.jsx(mt,{name:"info",className:"ml-1.5 h-4 w-4 text-muted-foreground","aria-hidden":"true"})]})})}),Q.jsx("div",{className:"flex flex-row flex-wrap gap-2 pt-2",children:Q.jsx(I5i,{value:j,title:"MCP Server Tools",description:"Select tools to add to this server",handleOnNewValue:V,id:"mcp-server-tools",button_description:"Edit Tools",editNode:!1,isAction:!0,disabled:!1})})]}),Q.jsxs("div",{className:"flex flex-1 flex-col gap-4 overflow-hidden",children:[Q.jsxs("div",{className:"flex justify-between",children:[Q.jsxs("span",{className:"flex gap-2 items-center",children:["Auth:",de?Q.jsxs("span",{className:"text-accent-emerald-foreground flex gap-2 text-mmd items-center",children:[Q.jsx(mt,{name:"Check",className:"h-4 w-4 shrink-0"}),((ge=wfi[S.auth_type])==null?void 0:ge.label)||S.auth_type]}):Q.jsxs("span",{className:"text-accent-amber-foreground flex gap-2 text-mmd items-center",children:[Q.jsx(mt,{name:"AlertTriangle",className:"h-4 w-4 shrink-0"}),"None (public)"]})]}),Q.jsxs(Kn,{variant:"outline",size:"sm",onClick:()=>m(!0),children:[Q.jsx(mt,{name:"Fingerprint",className:"h-4 w-4 shrink-0"}),de?"Edit Auth":"Add Auth"]})]}),Q.jsx("div",{className:pt("flex flex-col",!1),children:Q.jsx("div",{className:"flex flex-row justify-start border-b border-border",children:[{name:"Auto install"},{name:"JSON"}].map(ve=>Q.jsx(Kn,{unstyled:!0,className:`flex h-6 flex-row items-end gap-2 text-nowrap border-b-2 border-border border-b-transparent !py-1 font-medium ${D===ve.name?"border-b-2 border-black dark:border-b-white":"text-muted-foreground hover:text-foreground"} px-3 py-2 text-[13px]`,onClick:()=>q(ve.name),children:Q.jsx("span",{children:ve.name})},ve.name))})}),D==="JSON"&&Q.jsxs(Q.Fragment,{children:[Q.jsxs("div",{className:"flex flex-col gap-4",children:[Q.jsx(XGe,{value:k,onValueChange:E,children:Q.jsx(a2e,{children:iyr.map(ve=>Q.jsxs(NR,{className:"flex items-center gap-2",value:ve.name,children:[Q.jsx(mt,{name:ve.icon,"aria-hidden":"true"}),ve.title]},ve.name))})}),Q.jsx("div",{className:"overflow-hidden rounded-lg border border-border",children:Q.jsx(r6i,{style:F,CodeTag:({children:ve})=>Q.jsx(Ivi,{isCopied:a,copyToClipboard:te,isAuthApiKey:R,apiKey:u,isGeneratingApiKey:f,generateApiKey:ce,children:ve}),language:"json",children:Z})})]}),Q.jsxs("div",{className:"px-2 text-mmd text-muted-foreground",children:["Add this config to your client of choice. Need help? See the"," ",Q.jsx("a",{href:Y,target:"_blank",rel:"noreferrer",className:"text-accent-pink-foreground",children:"setup guide"}),"."]})]}),D==="Auto install"&&Q.jsxs("div",{className:"flex flex-col gap-1",children:[!P&&Q.jsx("div",{className:"mb-2 rounded-md bg-amber-50 px-3 py-2 text-sm text-amber-800 dark:bg-amber-950 dark:text-amber-200",children:Q.jsxs("div",{className:"flex items-center gap-3",children:[Q.jsx(mt,{name:"AlertTriangle",className:"h-4 w-4 shrink-0"}),Q.jsx("span",{children:"One-click install is disabled because the Langflow server is not running on your local machine. Use the JSON tab to configure your client manually."})]})}),js1.map(ve=>Q.jsxs(Kn,{variant:"ghost",className:"group flex items-center justify-between disabled:text-foreground disabled:opacity-50",disabled:pe.includes(ve.name)||!P,onClick:()=>{se([...pe,ve.name]),C({client:ve.name},{onSuccess:()=>{v({title:`MCP Server installed successfully on ${ve.title}. You may need to restart your client to see the changes.`}),se(pe.filter(we=>we!==ve.name))},onError:we=>{y({title:`Failed to install MCP Server on ${ve.title}`,list:[we.message]}),se(pe.filter(Ie=>Ie!==ve.name))}})},children:[Q.jsxs("div",{className:"flex items-center gap-4 text-sm font-medium",children:[Q.jsx(mt,{name:ve.icon,className:pt("h-5 w-5"),"aria-hidden":"true"}),ve.title]}),Q.jsxs("div",{className:"relative h-4 w-4",children:[Q.jsx(mt,{name:L!=null&&L.includes(ve.name)?"Check":pe.includes(ve.name)?"Loader2":"Plus",className:pt("h-4 w-4 absolute top-0 left-0 opacity-100",pe.includes(ve.name)&&"animate-spin",(L==null?void 0:L.includes(ve.name))&&"group-hover:opacity-0")}),(L==null?void 0:L.includes(ve.name))&&Q.jsx(mt,{name:"RefreshCw",className:pt("h-4 w-4 absolute top-0 left-0 opacity-0 group-hover:opacity-100")})]})]},ve.name))]})]})]}),Q.jsx(Is1,{open:g,setOpen:m,authSettings:S,autoInstall:P,onSave:B,installedClients:L??[]})]})},Fs1=({folderName:e})=>Q.jsx(qs1,{folderName:e}),Hs1=e=>{const{mutate:t}=rs();return t(["useGetDownloadFlowsV2"],async s=>{if(!s)return;let a;if(s.ids.length===1){a=await So.get(`${Yo("FLOWS")}/${s.ids[0]}`);const l=[a.data],{flows:u}=cde(l),d=u[0];d&&g5t(d,d.name,d.description)}else{if(a=await fetch(`${Yo("FLOWS",{mode:"download/"})}`,{method:"POST",body:JSON.stringify(s.ids),headers:{"Content-Type":"application/json",Accept:"application/x-zip-compressed"}}),!a.ok)throw new Error(`Failed to download flows: ${a.statusText}`);const l=await a.blob(),u=URL.createObjectURL(l),d=a.headers.get("Content-Disposition");let f="flows.zip";if(d){const g=d.match(/filename=(.+)/);g&&g[1]&&(f=g[1].replace(/["']/g,""))}const p=document.createElement("a");return p.href=u,p.setAttribute("download",f),document.body.appendChild(p),p.click(),document.body.removeChild(p),URL.revokeObjectURL(u),{}}},e)},Bs1=({folderName:e="",flowType:t,setFlowType:n,view:i,setView:s,setNewProjectModal:a,setSearch:l,isEmptyFolder:u,selectedFlows:d})=>{const[f,p]=$.useState(""),g=Ffo,m=Di(E=>E.setSuccessData),v=$.useCallback(Eo.debounce(E=>{l(E)},1e3),[l]),{mutate:y,isPending:T}=Hs1(),{mutate:_,isPending:O}=Bdi();$.useEffect(()=>(v(f),()=>{v.cancel()}),[f,v]),$.useEffect(()=>{t==="components"&&g&&n("flows")},[t,g,n]);const S=E=>{p(E.target.value)},C=["mcp","flows"],L=()=>{y({ids:d}),m({title:"Flows downloaded successfully"})},k=()=>{_({flow_ids:d},{onSuccess:()=>{m({title:"Flows deleted successfully"})}})};return Q.jsxs(Q.Fragment,{children:[Q.jsxs("div",{className:"flex items-center pb-4 text-sm font-medium","data-testid":"mainpage_title",children:[Q.jsx("div",{className:"h-7 w-10 transition-all group-data-[open=true]/sidebar-wrapper:md:w-0 lg:hidden",children:Q.jsx("div",{className:"relative left-0 opacity-100 transition-all group-data-[open=true]/sidebar-wrapper:md:opacity-0",children:Q.jsx(t2e,{children:Q.jsx(mt,{name:"PanelLeftOpen","aria-hidden":"true",className:""})})})}),e]}),!u&&Q.jsxs(Q.Fragment,{children:[Q.jsxs("div",{className:pt("flex flex-row-reverse pb-4"),children:[Q.jsx("div",{className:"w-full border-b dark:border-border"}),C.map(E=>Q.jsx(Kn,{unstyled:!0,id:`${E}-btn`,"data-testid":`${E}-btn`,onClick:()=>{n(E)},className:`border-b ${t===E?"border-b-2 border-foreground text-foreground":"border-border text-muted-foreground hover:text-foreground"} text-nowrap px-2 pb-2 pt-1 text-mmd`,children:Q.jsx("div",{className:t===E?"-mb-px":"",children:E==="mcp"?"MCP Server":E.charAt(0).toUpperCase()+E.slice(1)})},E))]}),t!=="mcp"&&Q.jsxs("div",{className:"flex justify-between",children:[Q.jsxs("div",{className:"flex w-full xl:w-5/12",children:[Q.jsx(F1,{icon:"Search","data-testid":"search-store-input",type:"text",placeholder:`Search ${t}...`,className:"mr-2 !text-mmd",inputClassName:"!text-mmd",value:f,onChange:S}),Q.jsxs("div",{className:"relative mr-2 flex h-fit rounded-lg border border-muted bg-muted",children:[Q.jsx("div",{className:`absolute top-[2px] h-[32px] w-8 transform rounded-md bg-background shadow-md transition-transform duration-300 ${i==="list"?"left-[2px] translate-x-0":"left-[6px] translate-x-full"}`}),["list","grid"].map(E=>Q.jsx(Kn,{unstyled:!0,size:"icon",className:`group relative z-10 m-[2px] flex-1 rounded-lg p-2 ${i===E?"text-foreground":"text-muted-foreground hover:bg-muted"}`,onClick:()=>s(E),children:Q.jsx(mt,{name:E==="list"?"Menu":"LayoutGrid","aria-hidden":"true",className:"h-4 w-4 group-hover:text-foreground"})},E))]})]}),Q.jsxs("div",{className:"flex items-center",children:[Q.jsxs("div",{className:pt("flex w-0 items-center gap-2 overflow-hidden opacity-0 transition-all duration-300",d.length>0&&"w-36 opacity-100"),children:[Q.jsx(Kn,{variant:"outline",size:"iconMd",className:"h-8 w-8","data-testid":"download-bulk-btn",onClick:L,loading:T,children:Q.jsx(mt,{name:"Download"})}),Q.jsx(_V,{onConfirm:k,description:"flow"+(d.length>1?"s":""),note:"and "+(d.length>1?"their":"its")+" message history",children:Q.jsxs(Kn,{variant:"destructive",size:"iconMd",className:"px-2.5 !text-mmd","data-testid":"delete-bulk-btn",loading:O,children:[Q.jsx(mt,{name:"Trash2"}),"Delete"]})})]}),Q.jsx(No,{content:"New Flow",side:"bottom",children:Q.jsxs(Kn,{variant:"default",size:"iconMd",className:"z-50 px-2.5 !text-mmd",onClick:()=>a(!0),id:"new-project-btn","data-testid":"new-project-btn",children:[Q.jsx(mt,{name:"Plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{className:"hidden whitespace-nowrap font-semibold md:inline",children:"New Flow"})]})})]})]})]})]})};function Ws1({data:e}){return Q.jsx(Q.Fragment,{children:Q.jsx(hV,{draggable:!0,className:pt("group relative flex flex-col justify-between overflow-hidden transition-all hover:bg-muted/50 hover:shadow-md hover:dark:bg-[#ffffff10]"),children:Q.jsx("div",{children:Q.jsx(jte,{children:Q.jsx("div",{children:Q.jsxs(Gde,{className:"flex w-full items-start justify-between gap-3 text-xl",children:[Q.jsx(mt,{className:pt("visible flex-shrink-0",e.is_component?"mx-0.5 h-6 w-6 text-component-icon":"h-7 w-7 flex-shrink-0 text-flow-icon"),name:e.is_component?"ToyBrick":"Group"}),Q.jsx("div",{className:"w-full truncate pr-3",children:e.name})]})})})})})})}const $s1=e=>{const t=as(i=>i.getFlowById);return{onDragStart:$.useCallback(i=>{const s=Q.jsx(Ws1,{data:e}),a=document.createElement("div");a.style.transform="translate(-10000px, -10000px)",a.style.position="absolute",document.body.appendChild(a),i.dataTransfer.setDragImage(a,0,0),NMr(a).render(s),t(e.id)&&i.dataTransfer.setData("flow",JSON.stringify(e))},[e])}};function Vs1({open:e,setOpen:t,flowData:n}){return e?Q.jsxs(Xr,{open:e,setOpen:t,size:"small-update",className:"p-4",children:[Q.jsx(Xr.Header,{children:Q.jsx("span",{className:"text-base font-semibold",children:"Flow Details"})}),Q.jsx(Xr.Content,{children:Q.jsx(sdi,{flowData:n,close:()=>t(!1),open:e})})]}):Q.jsx(Q.Fragment,{})}const Us1=(e,t)=>$.useMemo(()=>{const i=a=>({all:"item",component:"component",flow:"flow"})[a]||"",s=a=>({all:"items",component:"components",flow:"flows"})[a]||"";return(e==null?void 0:e.length)===1?i(t):s(t)},[e,t]),Gs1=e=>{const t=g6(i=>i.types);return{getIcon:async()=>{var i,s,a,l,u,d;if(e.is_component&&((i=e.data)==null?void 0:i.nodes[0].type)==="genericNode"){const f=(s=e.data)==null?void 0:s.nodes[0].data.type,p=!!((l=(a=e.data)==null?void 0:a.nodes[0].data.node)!=null&&l.flow),g=(d=(u=e.data)==null?void 0:u.nodes[0].data.node)==null?void 0:d.icon,m=await $ti(f)?f:t[f];return g||(p?"group_components":m)}else return e.icon??"Workflow"}}},Xs1=e=>{if(!e)return"";const t=new Date(e),i=Math.abs(new Date().getTime()-t.getTime()),s=Math.floor(i/(1e3*60)),a=Math.floor(s/60),l=Math.floor(a/24),u=Math.floor(l/30),d=Math.floor(u/12);return d>0?d===1?`${d} year`:`${d} years`:u>0?u===1?`${u} month`:`${u} months`:l>0?l===1?`${l} day`:`${l} days`:a>0?a===1?`${a} hour`:`${a} hours`:s>0?s===1?`${s} minute`:`${s} minutes`:"less than a minute"},Ks1=(e,t,n,i,s,a)=>({handleSelectOptionsChange:$.useCallback(u=>{if(!((e==null?void 0:e.length)>0)){t({title:"No items selected",list:["Please select items to delete"]});return}u==="delete"?n(!0):u==="duplicate"?s():u==="export"?i():u==="edit"&&a()},[e,t,n,s,a,i])}),Ys1=({flowData:e,setOpenDelete:t,handleExport:n,handleEdit:i})=>{const s=Di(f=>f.setSuccessData),a=Di(f=>f.setErrorData),{handleDuplicate:l}=gvi({flow:e}),u=()=>{l().then(()=>s({title:`${e.is_component?"Component":"Flow"} duplicated successfully`}))},{handleSelectOptionsChange:d}=Ks1([e.id],a,t,n,u,i);return Q.jsxs(Q.Fragment,{children:[Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),d("edit")},className:"cursor-pointer","data-testid":"btn-edit-flow",children:[Q.jsx(mt,{name:"SquarePen","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Edit details"]}),Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),d("export")},className:"cursor-pointer","data-testid":"btn-download-json",children:[Q.jsx(mt,{name:"Download","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Export"]}),Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),d("duplicate")},className:"cursor-pointer","data-testid":"btn-duplicate-flow",children:[Q.jsx(mt,{name:"CopyPlus","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Duplicate"]}),Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),t(!0)},className:"cursor-pointer text-destructive","data-testid":"btn_delete_dropdown_menu",children:[Q.jsx(mt,{name:"Trash2","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Delete"]})]})},oyr=({flowData:e,selected:t,setSelected:n,shiftPressed:i})=>{const s=Cg(),[a,l]=$.useState(!1),u=Di(q=>q.setSuccessData),{deleteFlow:d}=fhn(),f=Di(q=>q.setErrorData),{folderId:p}=h5(),[g,m]=$.useState(!1),[v,y]=$.useState(!1),T=e.is_component??!1,{getIcon:_}=Gs1(e),O=`/flow/${e.id}${p?`/folder/${p}`:""}`,S=async()=>{i?n(!t):T||s(O)},C=()=>{d({id:[e.id]}).then(()=>{u({title:"Selected items deleted successfully"})}).catch(()=>{f({title:"Error deleting items",list:["Please try again"]})})},{onDragStart:L}=$s1(e),k=Us1([e==null?void 0:e.id],e.is_component?"component":"flow"),E=(e.gradient&&!isNaN(parseInt(e.gradient))?parseInt(e.gradient):j7t(e.gradient??e.id))%b$.length,R=()=>{e.is_component?(g5t(e,e.name,e.description),u({title:`${e.name} exported successfully`})):y(!0)},[P,D]=$.useState("");return $.useEffect(()=>{_().then(D)},[_]),Q.jsxs(Q.Fragment,{children:[Q.jsxs(hV,{draggable:!0,onDragStart:L,onClick:S,className:`flex flex-row bg-background ${T?"cursor-default":"cursor-pointer"} group justify-between rounded-lg border-none px-4 py-3 shadow-none hover:bg-muted`,"data-testid":"list-card",children:[Q.jsxs("div",{className:`flex min-w-0 ${T?"cursor-default":"cursor-pointer"} items-center gap-4`,children:[Q.jsxs("div",{className:"group/checkbox relative flex items-center",children:[Q.jsx("div",{className:pt("z-20 flex w-0 items-center transition-all duration-300",t&&"w-10"),children:Q.jsx(v2e,{checked:t,onCheckedChange:q=>n(q),onClick:q=>q.stopPropagation(),className:pt("ml-2 transition-opacity focus-visible:ring-0",!t&&"opacity-0 group-hover/checkbox:opacity-100"),"data-testid":`checkbox-${e.id}`})}),Q.jsx("div",{className:pt("item-center flex justify-center rounded-lg p-1.5 transition-opacity duration-200",b$[E],t?"duration-300":"group-hover/checkbox:pointer-events-none group-hover/checkbox:opacity-0"),children:Q.jsx(mt,{name:(e==null?void 0:e.icon)||P,"aria-hidden":"true",className:"flex h-5 w-5 items-center justify-center"})})]}),Q.jsx("div",{className:"flex min-w-0 flex-col justify-start",children:Q.jsxs("div",{className:"flex min-w-0 flex-wrap items-baseline gap-x-2 gap-y-1",children:[Q.jsx("div",{className:"flex min-w-0 flex-shrink truncate text-sm font-semibold","data-testid":"flow-name-div",children:Q.jsx("span",{className:"truncate","data-testid":`flow-name-${e.id}`,children:e.name})}),Q.jsx("div",{className:"flex min-w-0 flex-shrink text-xs text-muted-foreground",children:Q.jsxs("span",{className:"truncate",children:["Edited ",Xs1(e.updated_at)," ago"]})})]})})]}),Q.jsx("div",{className:"ml-5 flex items-center gap-2",children:Q.jsxs(QN,{children:[Q.jsx(zN,{asChild:!0,children:Q.jsx(Kn,{variant:"ghost",size:"iconMd","data-testid":"home-dropdown-menu",className:"group",children:Q.jsx(mt,{name:"Ellipsis","aria-hidden":"true",className:"h-5 w-5 text-muted-foreground group-hover:text-foreground"})})}),Q.jsx(zz,{className:"w-[185px]",sideOffset:5,side:"bottom",children:Q.jsx(Ys1,{flowData:e,setOpenDelete:l,handleExport:R,handleEdit:()=>{m(!0)}})})]})})]},e.id),a&&Q.jsx(_V,{open:a,setOpen:l,onConfirm:C,description:k,note:e.is_component?"":"and its message history"}),Q.jsx(c3n,{open:v,setOpen:y,flowData:e}),Q.jsx(Vs1,{open:g,setOpen:m,flowData:e})]})},ipt=()=>Q.jsxs("div",{className:"flex flex-row justify-between rounded-lg bg-background px-4 py-3",children:[Q.jsxs("div",{className:"flex min-w-0 items-center gap-4",children:[Q.jsx("div",{className:"flex h-[32px] w-[32px] items-center justify-center rounded-lg",children:Q.jsx(l6,{className:"h-full w-full rounded-lg"})}),Q.jsxs("div",{className:"flex min-w-0 flex-col justify-start gap-[7px]",children:[Q.jsxs("div",{className:"flex min-w-0 items-baseline max-md:flex-col",children:[Q.jsx(l6,{className:"h-4 w-[150px]"}),Q.jsx(l6,{className:"ml-2 h-4 w-[180px]"})]}),Q.jsx(l6,{className:"h-4 w-[250px]"})]})]}),Q.jsx("div",{className:"ml-5 flex items-center gap-2",children:Q.jsx(l6,{className:"h-6 w-6 rounded-md"})})]}),Zs1=""+new URL("temp-pat-1-BDqu2wpz.png",import.meta.url).href,Js1=""+new URL("temp-pat-2-C_RVvOE_.png",import.meta.url).href,ea1=""+new URL("temp-pat-3-Ci-rp5-q.png",import.meta.url).href,ta1=""+new URL("temp-pat-m-1-D-qJT-j4.png",import.meta.url).href,na1=""+new URL("temp-pat-m-2-BFhrICvh.png",import.meta.url).href,ra1=""+new URL("temp-pat-m-3-BJIIbDxb.png",import.meta.url).href;function ia1({bgImage:e,bgHorizontalImage:t,icon:n,category:i,flow:s}){const a=qte(),l=Cg(),{folderId:u}=h5(),d=ih(m=>m.myCollectionId),f=u??d,p=()=>{s?(Qte(s.data),a({flow:s}).then(m=>{l(`/flow/${m}/folder/${f}`)}),z3("New Flow Created",{template:`${s.name} Template`})):console.error("Flow template not found")},g=m=>{(m.key==="Enter"||m.key===" ")&&(m.preventDefault(),p())};return s?Q.jsxs("div",{className:"group relative flex h-full min-h-[200px] w-full cursor-pointer flex-col overflow-hidden rounded-3xl border focus-visible:border-ring md:min-h-[250px]",tabIndex:1,onKeyDown:g,onClick:p,children:[Q.jsxs("div",{className:"absolute inset-2 h-[calc(100%-16px)] w-[calc(100%-16px)] overflow-hidden rounded-2xl",children:[Q.jsx("img",{src:e,alt:`${s.name} Spiral`,className:"hidden h-full w-full object-cover transition-all duration-300 group-hover:scale-[102%] group-focus-visible:scale-[102%] lg:block"}),Q.jsx("img",{src:t,alt:`${s.name} Horizontal`,className:"block h-full w-full object-cover transition-all duration-300 group-hover:scale-[102%] group-focus-visible:scale-[102%] lg:hidden"})]}),Q.jsxs("div",{className:"card-shine-effect absolute inset-2 flex h-[calc(100%-16px)] min-w-[calc(100%-16px)] flex-col items-start gap-1 rounded-2xl p-4 text-white md:gap-3 lg:gap-4 lg:py-6",children:[Q.jsxs("div",{className:"flex items-center gap-2 text-zinc-400 mix-blend-plus-lighter",children:[Q.jsx(mt,{name:n,className:"h-4 w-4"}),Q.jsx("span",{className:"font-mono text-xs font-semibold uppercase tracking-wider",children:i})]}),Q.jsxs("div",{className:"flex w-full items-center justify-between",children:[Q.jsx("h3",{className:"line-clamp-3 text-lg font-bold lg:text-xl",children:s.name}),Q.jsx(mt,{name:"ArrowRight",className:"mr-3 h-5 w-5 shrink-0 translate-x-0 opacity-0 transition-all duration-300 group-hover:translate-x-3 group-hover:opacity-100 group-focus-visible:translate-x-3 group-focus-visible:opacity-100"})]}),Q.jsx("p",{className:"line-clamp-3 w-full overflow-hidden text-sm font-medium opacity-90",children:s.description})]})]}):Q.jsx(Q.Fragment,{})}function oa1(){const e=as(n=>n.examples),t=[{bgImage:Zs1,bgHorizontalImage:ta1,icon:"MessagesSquare",category:"prompting",flow:e.find(n=>n.name==="Basic Prompting")},{bgImage:Js1,bgHorizontalImage:na1,icon:"Database",category:"RAG",flow:e.find(n=>n.name==="Vector Store RAG")},{bgImage:ea1,bgHorizontalImage:ra1,icon:"Bot",category:"Agents",flow:e.find(n=>n.name==="Simple Agent")}];return Q.jsxs("div",{className:"flex flex-1 flex-col gap-4 md:gap-8",children:[Q.jsx(Xr.Header,{description:"Start with templates showcasing Langflow's Prompting, RAG, and Agent use cases.",children:"Get started"}),Q.jsx("div",{className:"grid min-h-0 flex-1 grid-cols-1 gap-4 lg:grid-cols-3",children:t.map((n,i)=>Q.jsx(ia1,{...n},i))})]})}function sa1({categories:e,currentTab:t,setCurrentTab:n}){const i=HGe();return Q.jsx(e2e,{collapsible:i?"icon":"none",className:"max-w-[230px]",children:Q.jsxs(n2e,{className:"gap-0 p-2",children:[Q.jsxs("div",{className:pt("relative flex items-center gap-2 px-2 py-3 md:px-4"),"data-testid":"modal-title",children:[Q.jsx(t2e,{className:pt("flex h-8 shrink-0 items-center rounded-md text-lg font-semibold leading-none tracking-tight text-primary outline-none ring-ring transition-[margin,opa] duration-200 ease-linear focus-visible:ring-1 md:hidden [&>svg]:size-4 [&>svg]:shrink-0")}),Q.jsx("div",{className:pt("text-base-semibold flex h-8 shrink-0 items-center rounded-md leading-none tracking-tight text-primary outline-none ring-ring transition-[margin,opa] duration-200 ease-linear focus-visible:ring-1 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0"),children:"Templates"})]}),e.map((s,a)=>Q.jsxs(gV,{children:[Q.jsx(BGe,{className:`${a===0?"hidden":"mb-1 text-sm font-semibold text-muted-foreground"}`,children:s.title}),Q.jsx(mV,{children:Q.jsx(bV,{children:s.items.map(l=>Q.jsx(Fte,{children:Q.jsxs(Sw,{onClick:()=>n(l.id),isActive:t===l.id,"data-testid":`side_nav_options_${l.title.toLowerCase().replace(/\s+/g,"-")}`,tooltip:l.title,children:[Q.jsx(mt,{name:l.icon,className:`h-4 w-4 stroke-2 ${t===l.id?"text-accent-pink-foreground":"text-muted-foreground"}`}),Q.jsx("span",{"data-testid":`category_title_${dee(l.title)}`,children:l.title})]})},l.id))})})]},a))]})})}function aa1({example:e,onClick:t}){const n=(e.gradient&&!isNaN(parseInt(e.gradient))?parseInt(e.gradient):j7t(e.gradient??e.name))%b$.length,i=s=>{(s.key==="Enter"||s.key===" ")&&(s.preventDefault(),t())};return Q.jsxs("div",{"data-testid":`template-${dee(e.name)}`,className:"group flex cursor-pointer gap-3 overflow-hidden rounded-md p-3 hover:bg-muted focus-visible:bg-muted",tabIndex:0,onKeyDown:i,onClick:t,children:[Q.jsx("div",{className:pt("relative h-20 w-20 shrink-0 overflow-hidden rounded-md p-4 outline-none ring-ring",b$[n]),children:Q.jsx(mt,{name:e.icon||"FileText",className:"absolute left-1/2 top-1/2 h-10 w-10 -translate-x-1/2 -translate-y-1/2 duration-300 group-hover:scale-105 group-focus-visible:scale-105"})}),Q.jsx("div",{className:"flex flex-1 flex-col justify-between",children:Q.jsxs("div",{"data-testid":"text_card_container",role:dee(e.name),children:[Q.jsxs("div",{className:"flex w-full items-center",children:[Q.jsx("h3",{className:"line-clamp-3 font-semibold","data-testid":`template_${dee(e.name)}`,children:e.name}),Q.jsx(mt,{name:"ArrowRight",className:"mr-3 h-5 w-5 shrink-0 translate-x-0 opacity-0 transition-all duration-300 group-hover:translate-x-3 group-hover:opacity-100 group-focus-visible:translate-x-3 group-focus-visible:opacity-100"})]}),Q.jsx("p",{className:"mt-2 line-clamp-2 text-sm text-muted-foreground",children:e.description})]})})]})}function la1({examples:e,onCardClick:t}){return Q.jsx(Q.Fragment,{children:Q.jsx("div",{className:"grid grid-cols-1 gap-6 lg:grid-cols-2",children:e.map((n,i)=>Q.jsx(aa1,{example:n,onClick:()=>t(n)},i))})})}function ca1({currentTab:e,categories:t}){const n=as(S=>S.examples).filter(S=>{var C;return((C=S.tags)==null?void 0:C.includes(e??""))||e==="all-templates"}),[i,s]=$.useState(""),[a,l]=$.useState(n),u=qte(),d=Cg(),{folderId:f}=h5(),p=ih(S=>S.myCollectionId),g=$.useRef(null),m=f??p,v=$.useMemo(()=>new px(n,{keys:["name","description"]}),[n]);$.useEffect(()=>{s("")},[e]),$.useEffect(()=>{if(i==="")l(n);else{const S=v.search(i);l(S.map(C=>C.item))}g.current&&(g.current.scrollTop=0)},[i,e]);const y=S=>{Qte(S.data),u({flow:S}).then(C=>{d(`/flow/${C}/folder/${m}`)}),z3("New Flow Created",{template:`${S.name} Template`})},T=()=>{s(""),O.current&&O.current.focus()},_=t.find(S=>S.id===e),O=$.useRef(null);return Q.jsxs("div",{className:"flex flex-1 flex-col gap-6 overflow-hidden",children:[Q.jsxs("div",{className:"relative mx-3 flex-1 grow-0 py-px",children:[Q.jsx(mt,{name:"Search",className:"absolute left-2.5 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground"}),Q.jsx(F1,{type:"search",placeholder:"Search...",icon:"SearchIcon","data-testid":"search-input-template",value:i,onChange:S=>s(S.target.value),ref:O,className:"w-3/4 rounded-lg bg-background lg:w-2/3"})]}),Q.jsx("div",{ref:g,className:"flex flex-1 flex-col gap-6 overflow-auto scrollbar-hide",children:_&&a.length>0?Q.jsx(la1,{examples:a,onCardClick:y}):Q.jsx("div",{className:"flex flex-col items-center justify-center px-4 py-12 text-center",children:Q.jsxs("p",{className:"text-sm text-secondary-foreground",children:["No templates found."," ",Q.jsx("a",{className:"cursor-pointer underline underline-offset-4",onClick:T,children:"Clear your search"})," ","and try a different query."]})})})]})}function ua1({open:e,setOpen:t}){const[n,i]=$.useState("get-started"),s=qte(),a=Cg(),{folderId:l}=h5(),u=[{title:"Templates",items:[{title:"Get started",icon:"SquarePlay",id:"get-started"},{title:"All templates",icon:"LayoutPanelTop",id:"all-templates"}]},{title:"Use Cases",items:[{title:"Assistants",icon:"BotMessageSquare",id:"assistants"},{title:"Classification",icon:"Tags",id:"classification"},{title:"Coding",icon:"TerminalIcon",id:"coding"},{title:"Content Generation",icon:"Newspaper",id:"content-generation"},{title:"Q&A",icon:"Database",id:"q-a"}]},{title:"Methodology",items:[{title:"Prompting",icon:"MessagesSquare",id:"chatbots"},{title:"RAG",icon:"Database",id:"rag"},{title:"Agents",icon:"Bot",id:"agents"}]}];return Q.jsx(Xr,{size:"templates",open:e,setOpen:t,className:"p-0",children:Q.jsx(Xr.Content,{className:"flex flex-col p-0",children:Q.jsx("div",{className:"flex h-full",children:Q.jsxs(Jde,{width:"15rem",defaultOpen:!1,children:[Q.jsx(sa1,{categories:u,currentTab:n,setCurrentTab:i}),Q.jsxs("main",{className:"flex flex-1 flex-col gap-4 overflow-auto p-6 md:gap-8",children:[n==="get-started"?Q.jsx(oa1,{}):Q.jsx(ca1,{currentTab:n,categories:u.flatMap(d=>d.items)}),Q.jsx(Xr.Footer,{children:Q.jsxs("div",{className:"flex w-full flex-col justify-between gap-4 pb-4 sm:flex-row sm:items-center",children:[Q.jsxs("div",{className:"flex flex-col items-start justify-center",children:[Q.jsx("div",{className:"font-semibold",children:"Start from scratch"}),Q.jsx("div",{className:"text-sm text-muted-foreground",children:"Begin with a fresh flow to build from scratch."})]}),Q.jsxs(Kn,{onClick:()=>{s().then(d=>{a(`/flow/${d}${l?`/folder/${l}`:""}`)}),z3("New Flow Created",{})},size:"sm","data-testid":"blank-flow",className:"shrink-0",children:[Q.jsx(mt,{name:"Plus",className:"h-4 w-4 shrink-0"}),"Blank Flow"]})]})})]})]})})})})}const i5n=({openModal:e=!1,setOpenModal:t=()=>{},openDeleteFolderModal:n=!1,setOpenDeleteFolderModal:i=()=>{},handleDeleteFolder:s=()=>{}})=>Q.jsxs(Q.Fragment,{children:[e&&Q.jsx(ua1,{open:e,setOpen:t}),n&&Q.jsx(_V,{open:n,setOpen:i,onConfirm:()=>{s(),i(!1)},description:"folder",note:"and all associated flows and components",children:Q.jsx(Q.Fragment,{})})]}),jvi=e=>{const t=Di(u=>u.setSuccessData),n=Di(u=>u.setErrorData),i=t5n(),s=$.useRef(0),a=1e3;return $.useCallback(u=>{if(u.preventDefault(),u.dataTransfer.types.every(d=>d==="Files")){const d=Date.now();if(d-s.current>=a){s.current=d;const f=Array.from(u.dataTransfer.files);i({files:f,isComponent:e==="components"?!0:e==="flows"?!1:void 0}).then(()=>{t({title:"All files uploaded successfully"})}).catch(p=>{console.error(p),n({title:HOr,list:[p.message]})})}}},[e,i,t,n])},da1=({setOpenModal:e})=>{const t=ih(n=>n.folders);return Q.jsx("div",{className:"m-0 flex w-full justify-center",children:Q.jsxs("div",{className:"absolute top-1/2 flex w-full -translate-y-1/2 flex-col items-center justify-center gap-2",children:[Q.jsx("h3",{className:"pt-5 font-chivo text-2xl font-semibold","data-testid":"mainpage_title",children:(t==null?void 0:t.length)>1?"Empty project":"Start building"}),Q.jsx("p",{className:"pb-5 text-sm text-secondary-foreground",children:"Begin with a template, or start from scratch."}),Q.jsxs(Kn,{variant:"default",onClick:()=>e(!0),id:"new-project-btn","data-testid":"new_project_btn_empty_page",children:[Q.jsx(mt,{name:"plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{className:"whitespace-nowrap font-semibold",children:"New Flow"})]})]})})},UY=({type:e})=>{var ie,te,ce,pe,se,de,fe,ge,ve,we,Ie,ze;const[t,n]=$.useState(()=>{const Ge=localStorage.getItem("view");return Ge==="grid"||Ge==="list"?Ge:"list"}),[i,s]=$.useState(!1),{folderId:a}=h5(),[l,u]=$.useState(1),[d,f]=$.useState(12),[p,g]=$.useState(""),m=Cg(),[v,y]=$.useState(e),T=ih(Ge=>Ge.myCollectionId),_=ih(Ge=>Ge.folders),O=((ie=_.find(Ge=>Ge.id===a))==null?void 0:ie.name)??((te=_[0])==null?void 0:te.name)??"",S=as(Ge=>Ge.flows);$.useEffect(()=>{a&&_&&_.length>0&&(_.find(it=>it.id===a)||(console.error("Invalid folderId, redirecting to /all"),m("/all")))},[a,_,m]);const{data:C,isLoading:L}=bs1({id:a??T,page:l,size:d,is_component:v==="components",is_flow:v==="flows",search:p}),k={flows:((ce=C==null?void 0:C.flows)==null?void 0:ce.items)??[],name:((pe=C==null?void 0:C.folder)==null?void 0:pe.name)??"",description:((se=C==null?void 0:C.folder)==null?void 0:se.description)??"",parent_id:((de=C==null?void 0:C.folder)==null?void 0:de.parent_id)??"",components:((fe=C==null?void 0:C.folder)==null?void 0:fe.components)??[],pagination:{page:((ge=C==null?void 0:C.flows)==null?void 0:ge.page)??1,size:((ve=C==null?void 0:C.flows)==null?void 0:ve.size)??12,total:((we=C==null?void 0:C.flows)==null?void 0:we.total)??0,pages:((Ie=C==null?void 0:C.flows)==null?void 0:Ie.pages)??0}};$.useEffect(()=>{localStorage.setItem("view",t)},[t]);const E=$.useCallback((Ge,it)=>{u(Ge),f(it)},[]),R=$.useCallback(Ge=>{g(Ge),u(1)},[]),P=(S==null?void 0:S.find(Ge=>Ge.folder_id===(a??T)&&Ge.is_component===!1))===void 0,D=jvi(P?void 0:v);$.useEffect(()=>{!P&&(S==null?void 0:S.find(Ge=>Ge.folder_id===(a??T)&&Ge.is_component===(v==="components")))===void 0&&(S==null?void 0:S.find(it=>it.folder_id===(a??T)&&it.is_component===(v==="flows")))!==void 0&&y(v==="flows"?"components":"flows")},[P]);const[q,V]=$.useState([]),[B,j]=$.useState(null),[F,W]=$.useState(!1),[U,Z]=$.useState(!1);$.useEffect(()=>{const Ge=Fe=>{Fe.target instanceof HTMLInputElement||Fe.target instanceof HTMLTextAreaElement||Fe.target instanceof HTMLElement&&Fe.target.isContentEditable||(Fe.key==="Shift"?W(!0):(!kZ&&Fe.key==="Control"||Fe.key==="Meta")&&Z(!0))},it=Fe=>{Fe.target instanceof HTMLInputElement||Fe.target instanceof HTMLTextAreaElement||Fe.target instanceof HTMLElement&&Fe.target.isContentEditable||(Fe.key==="Shift"?W(!1):(!kZ&&Fe.key==="Control"||Fe.key==="Meta")&&Z(!1))},Pe=()=>{W(!1),Z(!1)};return(v==="flows"||v==="components")&&(document.addEventListener("keydown",Ge),document.addEventListener("keyup",it),window.addEventListener("blur",Pe)),()=>{document.removeEventListener("keydown",Ge),document.removeEventListener("keyup",it),window.removeEventListener("blur",Pe),W(!1),Z(!1)}},[v]);const Y=$.useCallback((Ge,it,Pe)=>{if(j(Pe),F&&B!==null){const Fe=k.flows,He=Math.min(B,Pe),gt=Math.max(B,Pe),Se=Fe.slice(He,gt+1).map(We=>We.id);V(Ge?We=>Array.from(new Set([...We,...Se])):We=>We.filter(tt=>!Se.includes(tt)))}else V(Ge?[...q,it]:q.filter(Fe=>Fe!==it))},[q,B,k.flows,F]);return $.useEffect(()=>{V(Ge=>Ge.filter(it=>k.flows.some(Pe=>Pe.id===it)))},[(ze=C==null?void 0:C.flows)==null?void 0:ze.items]),$.useEffect(()=>()=>{W(!1),Z(!1)},[a]),Q.jsxs(n5n,{onFileDrop:v==="mcp"?void 0:D,dragMessage:`Drop your ${P?"flows or components":v} here`,children:[Q.jsx("div",{className:"flex h-full w-full flex-col overflow-y-auto","data-testid":"cards-wrapper",children:Q.jsxs("div",{className:"flex h-full w-full flex-col 3xl:container",children:[LWe,Q.jsx("div",{className:"flex flex-1 flex-col justify-start p-4",children:Q.jsxs("div",{className:"flex h-full flex-col justify-start",children:[Q.jsx(Bs1,{folderName:O,flowType:v,setFlowType:y,view:t,setView:n,setNewProjectModal:s,setSearch:R,isEmptyFolder:P,selectedFlows:q}),P?Q.jsx(da1,{setOpenModal:s}):Q.jsx("div",{className:"flex h-full flex-col",children:L?t==="grid"?Q.jsxs("div",{className:"mt-4 grid grid-cols-1 gap-1 md:grid-cols-2 lg:grid-cols-3",children:[Q.jsx(ipt,{}),Q.jsx(ipt,{})]}):Q.jsxs("div",{className:"mt-4 flex flex-col gap-1",children:[Q.jsx(ipt,{}),Q.jsx(ipt,{})]}):v==="mcp"?Q.jsx(Fs1,{folderName:O}):(v==="flows"||v==="components")&&k&&k.pagination.total>0?t==="grid"?Q.jsx("div",{className:"mt-4 grid grid-cols-1 gap-1 md:grid-cols-2 lg:grid-cols-3",children:k.flows.map((Ge,it)=>Q.jsx(oyr,{flowData:Ge,selected:q.includes(Ge.id),setSelected:Pe=>Y(Pe,Ge.id,it),shiftPressed:F||U},Ge.id))}):Q.jsx("div",{className:"mt-4 flex flex-col gap-1",children:k.flows.map((Ge,it)=>Q.jsx(oyr,{flowData:Ge,selected:q.includes(Ge.id),setSelected:Pe=>Y(Pe,Ge.id,it),shiftPressed:F||U},Ge.id))}):v==="flows"?Q.jsxs("div",{className:"pt-24 text-center text-sm text-secondary-foreground",children:["No flows in this project."," ",Q.jsx("a",{onClick:()=>s(!0),className:"cursor-pointer underline",children:"Create a new flow"}),", or browse the store."]}):Q.jsxs("div",{className:"pt-24 text-center text-sm text-secondary-foreground",children:["No saved or custom components. Learn more about"," ",Q.jsx("a",{href:"https://docs.langflow.org/components-custom-components",target:"_blank",rel:"noreferrer",className:"underline",children:"creating custom components"}),", or browse the store."]})})]})}),(v==="flows"||v==="components")&&!L&&!P&&k.pagination.total>=10&&Q.jsx("div",{className:"flex justify-end px-3 py-4",children:Q.jsx(hhn,{pageIndex:k.pagination.page,pageSize:k.pagination.size,rowsCount:[12,24,48,96],totalRowsCount:k.pagination.total,paginate:E,pages:k.pagination.pages,isComponent:v==="components"})})]})}),Q.jsx(i5n,{openModal:i,setOpenModal:s,openDeleteFolderModal:!1,setOpenDeleteFolderModal:()=>{},handleDeleteFolder:()=>{}})]})},ha1=({isOpen:e,onClose:t,knowledgeBase:n})=>!e||!n?null:Q.jsxs("div",{className:"flex h-full w-80 flex-col border-l bg-background",children:[Q.jsxs("div",{className:"flex items-center justify-between pt-4 px-4",children:[Q.jsx("h3",{className:"font-semibold",children:n.name}),Q.jsx(Kn,{variant:"ghost",size:"iconSm",onClick:t,children:Q.jsx(mt,{name:"X",className:"h-4 w-4"})})]}),Q.jsx("div",{className:"flex-1 overflow-y-auto pt-3",children:Q.jsxs("div",{className:"flex flex-col gap-4",children:[Q.jsx("div",{className:"px-4",children:Q.jsx("div",{className:"text-sm text-muted-foreground",children:"No description available."})}),Q.jsx(l5,{}),Q.jsxs("div",{className:"space-y-2 px-4",children:[Q.jsx("label",{className:"text-sm font-medium",children:"Embedding Provider"}),Q.jsx("div",{className:"flex items-center gap-2",children:Q.jsx("div",{className:"text-sm font-medium text-muted-foreground",children:n.embedding_model||"Unknown"})})]}),Q.jsxs("div",{className:"space-y-3 px-4",children:[Q.jsx("h4",{className:"text-sm font-medium",children:"Source Files"}),Q.jsx("div",{className:"text-sm text-muted-foreground",children:"No source files available."})]}),Q.jsxs("div",{className:"space-y-3 px-4",children:[Q.jsx("h4",{className:"text-sm font-medium",children:"Linked Flows"}),Q.jsx("div",{className:"text-sm text-muted-foreground",children:"No linked flows available."})]})]})})]}),fa1=(e,t)=>{const{mutate:n,queryClient:i}=rs();return n(["useDeleteKnowledgeBase"],async()=>(await So.delete(`${Yo("KNOWLEDGE_BASES")}/${e.kb_name}`)).data,{onSettled:(l,u,d,f)=>{var p;i.invalidateQueries({queryKey:["useGetKnowledgeBases"]}),(p=t==null?void 0:t.onSettled)==null||p.call(t,l,u,d,f)},...t})},pa1=e=>{const{query:t}=rs();return t(["useGetKnowledgeBases"],async()=>(await So.get(`${Yo("KNOWLEDGE_BASES")}/`)).data,{refetchOnWindowFocus:!1,...e})},y4t=e=>new Intl.NumberFormat().format(e),ga1=e=>`${y4t(Math.round(e))}`,ma1=(e,t)=>{const n="text-muted-foreground cursor-pointer select-text group-[.no-select-cells]:cursor-default group-[.no-select-cells]:select-none";return[{headerName:"Name",field:"name",flex:2,headerCheckboxSelection:!0,checkboxSelection:!0,editable:!0,filter:"agTextColumnFilter",cellClass:n,cellRenderer:i=>Q.jsx("div",{className:"flex items-center gap-3 font-medium",children:Q.jsx("div",{className:"flex flex-col",children:Q.jsx("div",{className:"text-sm font-medium",children:i.value})})})},{headerName:"Embedding Model",field:"embedding_provider",flex:1.2,filter:"agTextColumnFilter",editable:!1,cellClass:n,tooltipValueGetter:i=>i.data.embedding_model||"Unknown",valueGetter:i=>i.data.embedding_model||"Unknown"},{headerName:"Size",field:"size",flex:.8,valueFormatter:i=>Fde(i.value),editable:!1,cellClass:n},{headerName:"Words",field:"words",flex:.8,editable:!1,cellClass:n,valueFormatter:i=>y4t(i.value)},{headerName:"Characters",field:"characters",flex:1,editable:!1,cellClass:n,valueFormatter:i=>y4t(i.value)},{headerName:"Chunks",field:"chunks",flex:.7,editable:!1,cellClass:n,valueFormatter:i=>y4t(i.value)},{headerName:"Avg Chunks",field:"avg_chunk_size",flex:1,editable:!1,cellClass:n,valueFormatter:i=>ga1(i.value)},{maxWidth:60,editable:!1,resizable:!1,cellClass:"cursor-default",cellRenderer:i=>{const s=()=>{t&&t(i.data)};return Q.jsx("div",{className:"flex h-full cursor-default items-center justify-center",children:Q.jsx(Kn,{variant:"ghost",size:"iconMd",onClick:s,className:"hover:bg-destructive/10",children:Q.jsx(mt,{name:"Trash2",className:"h-4 w-4 text-destructive"})})})}}]},ba1=({handleCreateKnowledge:e})=>Q.jsxs("div",{className:"flex h-full w-full flex-col items-center justify-center gap-8 pb-8",children:[Q.jsxs("div",{className:"flex flex-col items-center gap-2",children:[Q.jsx("h3",{className:"text-2xl font-semibold",children:"Welcome to Knowledge Bases!"}),Q.jsx("p",{className:"text-lg text-secondary-foreground",children:"Create reusable knowledge bases that your agents can search and reference."})]}),Q.jsx("div",{className:"flex items-center gap-2",children:Q.jsxs(Kn,{onClick:e,className:"!px-3 md:!px-4 md:!pl-3.5",children:[Q.jsx(mt,{name:"Plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{className:"whitespace-nowrap font-semibold",children:"New Knowledge Base template"})]})})]}),va1=e=>{const{mutate:t,queryClient:n}=rs();return t(["useDeleteKnowledgeBases"],async a=>(await So.delete(`${Yo("KNOWLEDGE_BASES")}/`,{data:{kb_names:a.kb_names}})).data,{onSettled:(a,l,u,d)=>{var f;n.invalidateQueries({queryKey:["useGetKnowledgeBases"]}),(f=e==null?void 0:e.onSettled)==null||f.call(e,a,l,u,d)},...e})},ya1=({selectedFiles:e,quantitySelected:t,onDelete:n,onClearSelection:i})=>{const{setSuccessData:s,setErrorData:a}=Di(p=>({setSuccessData:p.setSuccessData,setErrorData:p.setErrorData})),l=va1({onSuccess:p=>{s({title:`${p.deleted_count} Knowledge Base(s) deleted successfully!`}),i()},onError:p=>{var g,m;a({title:"Failed to delete knowledge bases",list:[((m=(g=p==null?void 0:p.response)==null?void 0:g.data)==null?void 0:m.detail)||(p==null?void 0:p.message)||"An unknown error occurred"]}),i()}}),u=()=>{if(n)n();else{const p=e.map(g=>g.id);p.length>0&&!l.isPending&&l.mutate({kb_names:p})}},d=e.length>0,f=t>1?"s":"";return Q.jsx("div",{className:pt("pointer-events-none absolute top-1.5 z-50 flex h-8 w-full transition-opacity",d?"opacity-100":"opacity-0"),children:Q.jsxs("div",{className:pt("ml-12 flex h-full flex-1 items-center justify-between bg-background",d?"pointer-events-auto":"pointer-events-none"),children:[Q.jsxs("span",{className:"text-xs text-muted-foreground",children:[t," selected"]}),Q.jsx("div",{className:"flex items-center gap-2",children:Q.jsx(_V,{onConfirm:u,description:`knowledge base${f}`,children:Q.jsxs(Kn,{variant:"destructive",size:"iconMd",className:"px-2.5 !text-mmd","data-testid":"bulk-delete-kb-btn",children:[Q.jsx(mt,{name:"Trash2"}),"Delete"]})})})]})})},Ta1=({quickFilterText:e,setQuickFilterText:t,selectedFiles:n,setSelectedFiles:i,quantitySelected:s,setQuantitySelected:a,isShiftPressed:l,onRowClick:u})=>{const d=$.useRef(null),{setErrorData:f,setSuccessData:p}=Di(Y=>({setErrorData:Y.setErrorData,setSuccessData:Y.setSuccessData})),g=as(Y=>Y.examples),m=qte(),v=Cg(),{folderId:y}=h5(),T=ih(Y=>Y.myCollectionId),_=y??T,[O,S]=$.useState(!1),[C,L]=$.useState(null),{data:k,isLoading:E,error:R}=pa1(),P=fa1({kb_name:(C==null?void 0:C.id)||""},{onSuccess:()=>{p({title:`Knowledge Base "${C==null?void 0:C.name}" deleted successfully!`}),D()},onError:Y=>{var ie,te;f({title:"Failed to delete knowledge base",list:[((te=(ie=Y==null?void 0:Y.response)==null?void 0:ie.data)==null?void 0:te.detail)||(Y==null?void 0:Y.message)||"An unknown error occurred"]}),D()}});R&&f({title:"Failed to load knowledge bases",list:[(R==null?void 0:R.message)||"An unknown error occurred"]});const D=()=>{L(null),S(!1)},q=Y=>{p({title:"Knowledge Base renamed successfully!"})},V=Y=>{L(Y),S(!0)},B=()=>{C&&!P.isPending&&P.mutate()},j=Y=>{const ie=Y.api.getSelectedRows();i(ie),ie.length>0?a(ie.length):setTimeout(()=>{a(0)},300)},F=async()=>{const Y=g.find(ie=>ie.name==="Knowledge Ingestion");Y&&Y.data&&(Qte(Y.data),m({flow:Y}).then(ie=>{v(`/flow/${ie}/folder/${_}`)}),z3("New Flow Created",{template:`${Y.name} Template`}))},W=()=>{a(0),i([])},U=Y=>{var te;const ie=(te=Y.event)==null?void 0:te.target;ie&&!ie.closest("button")&&u&&u(Y.data)},Z=ma1(q,V);return E||!k||!Array.isArray(k)?Q.jsx("div",{className:"flex h-full w-full items-center justify-center",children:Q.jsx(Xw,{})}):k.length===0?Q.jsx(ba1,{handleCreateKnowledge:F}):Q.jsxs("div",{className:"flex h-full flex-col pb-4",children:[Q.jsxs("div",{className:"flex justify-between",children:[Q.jsx("div",{className:"flex w-full xl:w-5/12",children:Q.jsx(F1,{icon:"Search","data-testid":"search-kb-input",type:"text",placeholder:"Search knowledge bases...",className:"mr-2 w-full",value:e||"",onChange:Y=>t(Y.target.value)})}),Q.jsxs(Kn,{className:"flex items-center gap-2 font-semibold",onClick:F,children:[Q.jsx(mt,{name:"Plus"})," Create knowledge"]})]}),Q.jsx("div",{className:"flex h-full flex-col pt-4",children:Q.jsxs("div",{className:"relative h-full",children:[Q.jsx(Ky,{rowHeight:45,headerHeight:45,cellSelection:!1,tableOptions:{hide_options:!0},suppressRowClickSelection:!l,editable:[{field:"name",onUpdate:q,editableCell:!0}],rowSelection:"multiple",onSelectionChanged:j,onRowClicked:U,columnDefs:Z,rowData:k,className:pt("ag-no-border ag-knowledge-table group w-full",l&&s>0&&"no-select-cells"),pagination:!0,ref:d,quickFilterText:e,gridOptions:{stopEditingWhenCellsLoseFocus:!0,ensureDomOrder:!0,colResizeDefault:"shift"}}),Q.jsx(ya1,{selectedFiles:n,quantitySelected:s,onClearSelection:W})]})}),Q.jsx(_V,{open:O,setOpen:S,onConfirm:B,description:`knowledge base "${(C==null?void 0:C.name)||""}"`,note:"This action cannot be undone",children:Q.jsx(Q.Fragment,{})})]})},Ma1=()=>{const[e,t]=$.useState([]),[n,i]=$.useState(0),[s,a]=$.useState(!1),[l,u]=$.useState(""),[d,f]=$.useState(!1),[p,g]=$.useState(null),m=$.useRef(null);$.useEffect(()=>{const _=S=>{S.key==="Shift"&&a(!0)},O=S=>{S.key==="Shift"&&a(!1)};return window.addEventListener("keydown",_),window.addEventListener("keyup",O),()=>{window.removeEventListener("keydown",_),window.removeEventListener("keyup",O)}},[]),$.useEffect(()=>{const _=O=>{d&&m.current&&!m.current.contains(O.target)&&(O.target.closest(".ag-row")||y())};return d&&document.addEventListener("mousedown",_),()=>{document.removeEventListener("mousedown",_)}},[d]);const v=_=>{d?y():g(_)},y=()=>{f(!1),g(null)},T={quickFilterText:l,setQuickFilterText:u,selectedFiles:e,setSelectedFiles:t,quantitySelected:n,setQuantitySelected:i,isShiftPressed:s,onRowClick:v};return Q.jsxs("div",{className:"flex h-full w-full","data-testid":"cards-wrapper",children:[Q.jsx("div",{className:`flex h-full w-full flex-col overflow-y-auto transition-all duration-200 ${d?"mr-80":""}`,children:Q.jsx("div",{className:"flex h-full w-full flex-col xl:container",children:Q.jsx("div",{className:"flex flex-1 flex-col justify-start px-5 pt-10",children:Q.jsxs("div",{className:"flex h-full flex-col justify-start",children:[Q.jsxs("div",{className:"flex items-center pb-8 text-xl font-semibold","data-testid":"mainpage_title",children:[Q.jsx("div",{className:"h-7 w-10 transition-all group-data-[open=true]/sidebar-wrapper:md:w-0 lg:hidden",children:Q.jsx("div",{className:"relative left-0 opacity-100 transition-all group-data-[open=true]/sidebar-wrapper:md:opacity-0",children:Q.jsx(t2e,{children:Q.jsx(mt,{name:"PanelLeftOpen","aria-hidden":"true"})})})}),"Knowledge"]}),Q.jsx("div",{className:"flex h-full flex-col",children:Q.jsx(Ta1,{...T})})]})})})}),d&&Q.jsx("div",{ref:m,className:"fixed right-0 top-12 z-50 h-[calc(100vh-48px)]",children:Q.jsx(ha1,{isOpen:d,onClose:y,knowledgeBase:p})})]})},wa1=e=>{const{mutate:t,queryClient:n}=rs(),i=ih(u=>u.setFolders),s=ih(u=>u.folders);return t(["useDeleteFolders"],async({folder_id:u})=>(await So.delete(`${Yo("PROJECTS")}/${u}`),i(s.filter(d=>d.id!==u)),u),{...e,onSettled:u=>{n.refetchQueries({queryKey:["useGetFolders",u]})}})},_a1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePatchFolders"],async a=>{const l={name:a.data.name,description:a.data.description,flows_list:a.data.flows??[],components_list:a.data.components??[]};return(await So.patch(`${Yo("PROJECTS")}/${a.folderId}`,l)).data},{...e,onSettled:()=>{n.refetchQueries({queryKey:["useGetFolders"]})}})},Oa1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePostFolders"],async a=>{const l={name:a.data.name,description:a.data.description,flows_list:a.data.flows??[],components_list:a.data.components??[]};return(await So.post(`${Yo("PROJECTS")}/`,l)).data},{...e,onSuccess:()=>n.refetchQueries({queryKey:["useGetFolders"]})})},Aa1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePostUploadFolders"],async a=>(await So.post(`${Yo("PROJECTS")}/upload/`,a.formData)).data,{...e,onSettled:()=>{n.refetchQueries({queryKey:["useGetFolders"]})}})},xa1=()=>({responseType:"blob",headers:{Accept:"application/x-zip-compressed"}}),Sa1=(e,t,n,i)=>{var d,f,p;const s=new Blob([e.data],{type:"application/x-zip-compressed"}),a=window.URL.createObjectURL(s),l=document.createElement("a");l.href=a;const u=((p=(f=(d=e.headers)==null?void 0:d["content-disposition"])==null?void 0:f.split("filename=")[1])==null?void 0:p.replace(/['"]/g,""))??`${n||"flows"}.zip`;l.setAttribute("download",u),document.body.appendChild(l),l.click(),l.remove(),window.URL.revokeObjectURL(a),z3("Project Exported",{})},Ca1=e=>{const{mutate:t}=rs();return t(["useGetDownloadFolders"],async s=>await So.get(`${Yo("PROJECTS")}/download/${s.folderId}`,xa1()),e)},Qa1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePostUploadFlowToFolder"],async a=>(await So.post(`${Yo("FLOWS")}/upload/?folder_id=${encodeURIComponent(a.folderId)}`,a.flows)).data,{...e,onSettled:a=>{n.refetchQueries({queryKey:["useGetFolders"]}),n.refetchQueries({queryKey:["useGetFolder"]})}})},za1=e=>{const t=ih(T=>T.setFolderDragging),n=ih(T=>T.setFolderIdDragging),i=ih(T=>T.myCollectionId),s=Di(T=>T.setErrorData),a=Ite(),l=as(T=>T.flows),{mutate:u}=Qa1(),d=async(T,_)=>{if(T.dataTransfer.types.some(O=>O==="Files")&&T.dataTransfer.files&&T.dataTransfer.files.length>0){const O=T.dataTransfer.files[0];O.type==="application/json"?y(O,_):s({title:WOr,list:[$Or]})}},f=(T,_)=>{T.preventDefault(),T.dataTransfer.types.some(O=>O==="Files")&&t(!0),n(_)},p=(T,_)=>{T.dataTransfer.types.some(O=>O==="Files")&&t(!0),n(_),T.preventDefault()},g=T=>{T.preventDefault(),T.target===T.currentTarget&&(t(!1),n(""))},m=(T,_)=>{var O,S;if((O=T==null?void 0:T.dataTransfer)!=null&&O.getData("flow")){const C=JSON.parse((S=T==null?void 0:T.dataTransfer)==null?void 0:S.getData("flow"));if(C){v(C.id,_);return}}T.preventDefault(),d(T,_)},v=(T,_)=>{const O=l==null?void 0:l.find(k=>k.id===T);if(!O)throw new Error("Flow not found");const S={...O,folder_id:_},C=l==null?void 0:l.filter(k=>k.folder_id===i),L=rxr(S,C??[]);S.name=L,t(!1),n(""),a(S)},y=(T,_)=>{const O=new FormData;O.append("file",T),t(!1),n(""),u({flows:O,folderId:_})};return{dragOver:f,dragEnter:p,dragLeave:g,onDrop:m}};function syr(){return Q.jsx("div",{className:"flex h-9 w-full shrink-0 animate-pulse cursor-pointer items-center gap-4 rounded-md border bg-background px-2 opacity-100 lg:min-w-full",children:Q.jsx(l6,{className:"h-3 w-[40%]"})})}const Ea1=({userData:e,isGithubStarred:t,isDiscordJoined:n,handleDismissDialog:i})=>{const[s,a]=$.useState(t),[l,u]=$.useState(n),[d,f]=$.useState(!1),p=as(_=>_.flows),{mutate:g}=Ncn(),{mutate:m}=qUe();$.useEffect(()=>{e||g(null)},[e,g]);const v=p&&(p==null?void 0:p.length)>0,y=$.useMemo(()=>{var S,C;let O=0;return(S=e==null?void 0:e.optins)!=null&&S.github_starred&&(O+=33),(C=e==null?void 0:e.optins)!=null&&C.discord_clicked&&(O+=33),v&&(O+=33),O===99?100:Math.min(O,100)},[e==null?void 0:e.optins,v]),T=_=>{const O=(e==null?void 0:e.optins)??{};O[_]=!0,m({user_id:e==null?void 0:e.id,user:{optins:O}},{onSuccess:()=>{g({}),_==="github_starred"?(a(!0),window.open(gbt,"_blank","noopener,noreferrer")):_==="discord_clicked"?(u(!0),window.open(pbt,"_blank","noopener,noreferrer")):_==="dialog_dismissed"&&i()}})};return Q.jsxs("div",{className:"mt-3 h-[10.8rem] w-full",children:[Q.jsxs("div",{className:"mb-2 flex items-center justify-between",children:[Q.jsx("span",{className:"text-sm font-medium","data-testid":"get_started_progress_title",children:y>=100?Q.jsxs(Q.Fragment,{children:[Q.jsx("span",{children:"All Set"})," ",Q.jsx("span",{className:"pl-1",children:" 🎉 "})]}):"Get started"}),Q.jsx("button",{onClick:()=>T("dialog_dismissed"),className:"text-muted-foreground hover:text-foreground","data-testid":"close_get_started_dialog",children:Q.jsx(mt,{name:"X",className:"h-4 w-4"})})]}),Q.jsxs("div",{className:"mb-1 mt-2 flex items-center justify-between gap-3",children:[Q.jsx("div",{className:"h-1 w-full rounded-full bg-muted",children:Q.jsx("div",{className:"h-1 w-[33%] rounded-full bg-accent-pink-foreground",style:{width:`${y}%`}})}),Q.jsxs("span",{className:"text-sm text-muted-foreground","data-testid":"get_started_progress_percentage",children:[y,"%"]})]}),Q.jsxs("div",{className:"mt-2 space-y-1",children:[Q.jsx(Kn,{"data-testid":"github_starred_btn_get_started",unstyled:!0,className:pt("w-full",s&&"pointer-events-none"),onClick:_=>{if(s){_.preventDefault();return}T("github_starred")},children:Q.jsxs("div",{className:pt("flex items-center gap-2 rounded-md px-2 py-[10px] hover:bg-muted",s&&"pointer-events-none"),children:[s?Q.jsx("span",{"data-testid":"github_starred_icon_get_started",children:Q.jsx(mt,{name:"Check",className:"h-4 w-4 text-accent-emerald-foreground"})}):Q.jsx(dde,{className:"h-4 w-4"}),Q.jsx("span",{className:pt("text-sm",s&&"text-muted-foreground line-through"),children:"Star repo for updates"})]})}),Q.jsx(Kn,{"data-testid":"discord_joined_btn_get_started",unstyled:!0,className:pt("w-full",l&&"pointer-events-none"),onClick:_=>{if(l){_.preventDefault();return}T("discord_clicked")},children:Q.jsxs("div",{className:pt("flex items-center gap-2 rounded-md p-2 py-[10px] hover:bg-muted",l&&"pointer-events-none"),children:[l?Q.jsx("span",{"data-testid":"discord_joined_icon_get_started",children:Q.jsx(mt,{name:"Check",className:"h-4 w-4 text-accent-emerald-foreground"})}):Q.jsx(ude,{className:"h-4 w-4 text-[#5865F2]"}),Q.jsx("span",{className:pt("text-sm",l&&"text-muted-foreground line-through"),children:"Join the community"})]})}),Q.jsx(Kn,{unstyled:!0,className:pt("w-full",v&&"pointer-events-none"),onClick:()=>f(!0),children:Q.jsxs("div",{className:pt("flex items-center gap-2 rounded-md p-2 py-[10px] hover:bg-muted",v&&"pointer-events-none text-muted-foreground"),"data-testid":"create_flow_btn_get_started",children:[Q.jsx("span",{"data-testid":"create_flow_icon_get_started",children:Q.jsx(mt,{name:v?"Check":"Plus",className:pt("h-4 w-4 text-primary",v&&"text-accent-emerald-foreground")})}),Q.jsx("span",{className:pt("text-sm",v&&"line-through"),children:"Create a flow"})]})})]}),Q.jsx(i5n,{openModal:d,setOpenModal:f,openDeleteFolderModal:!1,setOpenDeleteFolderModal:()=>{},handleDeleteFolder:()=>{}})]})};function La1({userData:e,isGithubStarred:t,isDiscordJoined:n,handleDismissDialog:i}){return Q.jsx(Ea1,{userData:e,isGithubStarred:t,isDiscordJoined:n,handleDismissDialog:i})}const ka1=({onClick:e,disabled:t,loading:n})=>Q.jsx(No,{content:"Create new project",styleClasses:"z-50",children:Q.jsx(Kn,{variant:"ghost",size:"icon",className:"h-7 w-7 border-0 text-zinc-500 hover:bg-zinc-200 dark:text-zinc-400 dark:hover:bg-zinc-800 dark:hover:text-white",onClick:e,"data-testid":"add-project-button",disabled:t,loading:n,children:Q.jsx(mt,{name:"Plus",className:"h-4 w-4"})})}),Ra1=({onClick:e,disabled:t})=>Q.jsx(No,{content:"Upload a flow",styleClasses:"z-50",children:Q.jsx(Kn,{variant:"ghost",size:"icon",className:"h-7 w-7 border-0 text-zinc-500 hover:bg-zinc-200 dark:text-zinc-400 dark:hover:bg-zinc-800 dark:hover:text-white",onClick:e,"data-testid":"upload-project-button",disabled:t,children:Q.jsx(mt,{name:"Upload",className:"h-4 w-4"})})}),Na1=({handleUploadFlowsToFolder:e,isUpdatingFolder:t,isPending:n,addNewFolder:i})=>{var v,y,T;const s=Wc(_=>_.userData),[a,l]=$.useState((v=s==null?void 0:s.optins)==null?void 0:v.dialog_dismissed),[u,d]=$.useState((y=s==null?void 0:s.optins)==null?void 0:y.github_starred),[f,p]=$.useState((T=s==null?void 0:s.optins)==null?void 0:T.discord_clicked),{mutate:g}=qUe();$.useEffect(()=>{var _,O,S;s&&(l((_=s.optins)==null?void 0:_.dialog_dismissed),d((O=s.optins)==null?void 0:O.github_starred),p((S=s.optins)==null?void 0:S.discord_clicked))},[s]);const m=()=>{l(!0),g({user_id:s==null?void 0:s.id,user:{optins:{...s==null?void 0:s.optins,dialog_dismissed:!0}}})};return Q.jsxs(Q.Fragment,{children:[!a&&s&&Q.jsxs(Q.Fragment,{children:[Q.jsx(La1,{userData:s,isGithubStarred:u??!1,isDiscordJoined:f??!1,handleDismissDialog:m}),Q.jsx("div",{className:"-mx-4 mt-1 w-[280px]",children:Q.jsx("hr",{className:"border-t-1 w-full"})})]}),Q.jsxs("div",{className:"flex shrink-0 items-center justify-between gap-2 pt-2",children:[Q.jsx(t2e,{className:"lg:hidden",children:Q.jsx(mt,{name:"PanelLeftClose",className:"h-4 w-4"})}),Q.jsx("div",{className:"flex-1 text-sm font-medium",children:"Projects"}),Q.jsxs("div",{className:"flex items-center gap-1",children:[Q.jsx(Ra1,{onClick:e,disabled:t}),Q.jsx(ka1,{onClick:i,disabled:t,loading:n})]})]})]})},Da1=({handleEditFolderName:e,item:t,refInput:n,handleKeyDownFn:i,handleKeyDown:s,handleEditNameFolder:a,editFolderName:l,foldersNames:u})=>Q.jsx(Q.Fragment,{children:Q.jsx(F1,{className:"h-6 flex-1 text-xs focus:border-0",onChange:d=>{e(d,t.name)},maxLength:38,ref:n,onKeyDown:d=>{i(d,t),s(d,d.key,"")},autoFocus:!0,onBlur:d=>{var f,p,g,m;if(((f=d.relatedTarget)==null?void 0:f.id)===`options-trigger-${t.name}`){(p=n.current)==null||p.focus();return}((g=n.current)==null?void 0:g.value)!==t.name?a(t):l.edit=!1,(m=n.current)==null||m.blur()},value:u[t.name],id:`input-project-${t.name}`,"data-testid":"input-project"})}),Pa1=(e,t,n,i,s)=>{switch(e){case"delete":n(t);break;case"download":i(t.id);break;case"rename":s(t);break}},Ltn=({name:e,iconName:t})=>Q.jsxs("div",{className:pt(e==="Delete"?"text-destructive":"","flex items-center font-medium"),children:[Q.jsx(mt,{name:t,className:"mr-2 w-4"}),Q.jsx("span",{children:e})]}),Ia1=({item:e,index:t,handleDeleteFolder:n,handleDownloadFolder:i,handleSelectFolderToRename:s,checkPathName:a})=>Q.jsx("div",{children:Q.jsxs(GGe,{onValueChange:l=>Pa1(l,e,n,i,s),value:"",children:[Q.jsx(No,{content:"Options",side:"right",styleClasses:"z-50",children:Q.jsx(s2e,{className:"w-fit",id:`options-trigger-${e.name}`,"data-testid":"more-options-button",children:Q.jsx(mt,{name:"MoreHorizontal",className:pt("w-4 stroke-[1.5] px-0 text-muted-foreground group-hover/menu-button:block group-hover/menu-button:text-foreground",a(e.id)?"block":"hidden")})})}),Q.jsxs(Q8t,{align:"end",alignOffset:-16,position:"popper",children:[e.name!==bcn&&Q.jsx(cf,{id:"rename-button",value:"rename","data-testid":"btn-rename-project",className:"text-xs",children:Q.jsx(Ltn,{name:"Rename",iconName:"SquarePen"})}),Q.jsx(cf,{value:"download","data-testid":"btn-download-project",className:"text-xs",children:Q.jsx(Ltn,{name:"Download",iconName:"Download"})}),t>0&&Q.jsx(cf,{value:"delete","data-testid":"btn-delete-project",className:"text-xs",children:Q.jsx(Ltn,{name:"Delete",iconName:"Trash2"})})]})]})}),ja1=({handleChangeFolder:e,handleDeleteFolder:t,handleFilesClick:n})=>{var tt;const s=eV().pathname,a=ih(st=>st.folders),l=!a,u=$.useRef(null),d=Cg(),f=s.split("/"),p=s.split("/").length<4,g=s.includes("assets"),m=st=>p&&st===O&&!g?!0:f.includes(st),v=Di(st=>st.setErrorData),y=Di(st=>st.setSuccessData),T=HGe({maxWidth:1024}),_=ih(st=>st.folderIdDragging),O=ih(st=>st.myCollectionId),S=as(st=>st.takeSnapshot);h5().folderId;const{dragOver:C,dragEnter:L,dragLeave:k,onDrop:E}=za1(),R=t5n(),[P,D]=$.useState({}),[q,V]=$.useState(a.map(st=>({name:st.name,edit:!1}))??[]),B=!!f5t({queryKey:["useGetFolders"],exact:!1}),{mutate:j}=Ca1({}),{mutate:F,isPending:W}=Oa1(),{mutate:U}=_a1(),{mutate:Z}=Aa1(),Y=st=>{if(st===_)return"bg-accent text-accent-foreground"},ie=!!f5t({queryKey:["useGetFolder"],exact:!1}),te=!!YAr({mutationKey:["useDeleteFolders"]}),ce=B||ie||W||l||te,pe=()=>{rXe().then(st=>{(st==null?void 0:st.length)!==0&&fvi(st).then(bt=>{bt.every(Ht=>{var Vt;return(Vt=Ht.data)==null?void 0:Vt.nodes})?R({files:st}).then(()=>{y({title:"Uploaded successfully"})}):st.forEach(Ht=>{const Vt=new FormData;Vt.append("file",Ht),Z({formData:Vt},{onSuccess:()=>{y({title:"Project uploaded successfully."})},onError:tn=>{console.error(tn),v({title:"Error on uploading your project, try dragging it into an existing project.",list:[tn.response.data.message]})}})})})})},se=(st,bt)=>{j({folderId:st},{onSuccess:Ht=>{Sa1(Ht,st,bt)},onError:Ht=>{v({title:"An error occurred while downloading your project."})}})};function de(){F({data:{name:"New Project",parent_id:null,description:""}},{onSuccess:st=>{z3(),e(st.id)}})}function fe(st,bt){const{target:{value:Ht}}=st;D(Vt=>({...Vt,[bt]:Ht}))}$.useEffect(()=>{a&&a.length>0&&V(a.map(st=>({name:st.name,edit:!1})))},[a]);const ge=async st=>{var Ht,Vt;const bt=q.map(tn=>tn.name===st.name?{name:st.name,edit:!1}:{name:tn.name,edit:!1});if(V(bt),P[st.name].trim()!==""){D(rn=>({...rn,[st.name]:P[st.name]}));const tn={...st,name:P[st.name],flows:((Ht=st.flows)==null?void 0:Ht.length)>0?st.flows:[],components:((Vt=st.components)==null?void 0:Vt.length)>0?st.components:[]};U({data:tn,folderId:st.id},{onSuccess:rn=>{a.findIndex(Ce=>Ce.id===rn.id),[...a],D({}),V(a.map(Ce=>({name:Ce.name,edit:!1})))}})}else D(tn=>({...tn,[st.name]:st.name}))},ve=(st,bt)=>{bt.name!==bcn&&(st.stopPropagation(),st.preventDefault(),we(bt))},we=st=>{var bt;if(P[st.name]||D({[st.name]:st.name}),(bt=q.find(Ht=>Ht.name===st.name))!=null&&bt.name){const Ht=q.map(Vt=>Vt.name===st.name?{name:st.name,edit:!0}:{name:Vt.name,edit:!1});V(Ht),S();return}V(Ht=>[...Ht,{name:st.name,edit:!0}]),D(Ht=>({...Ht,[st.name]:st.name})),S()},Ie=(st,bt)=>{var Ht;if(st.key==="Escape"){const Vt=q.map(tn=>tn.name===bt.name?{name:bt.name,edit:!1}:{name:tn.name,edit:!1});V(Vt),D({}),V(a.map(tn=>({name:tn.name,edit:!1})))}st.key==="Enter"&&((Ht=u.current)==null||Ht.blur())},[ze,Ge]=$.useState(null),it=Wc(st=>st.userData),{mutate:Pe}=qUe(),Fe=(tt=it==null?void 0:it.optins)==null?void 0:tt.mcp_dialog_dismissed,[He,gt]=$.useState(Fe),Se=()=>{d("/assets/files")},We=()=>{d("/assets/knowledge-bases")};return Q.jsxs(e2e,{collapsible:T?"offcanvas":"none","data-testid":"project-sidebar",children:[Q.jsx(T8t,{className:"px-4 py-1",children:Q.jsx(Na1,{handleUploadFlowsToFolder:pe,isUpdatingFolder:ce,isPending:W,addNewFolder:de})}),Q.jsxs(n2e,{children:[Q.jsx(gV,{className:"p-4 py-2",children:Q.jsx(mV,{children:Q.jsx(bV,{children:l?Q.jsxs(Q.Fragment,{children:[Q.jsx(syr,{}),Q.jsx(syr,{})]}):a.map((st,bt)=>{const Ht=q==null?void 0:q.filter(Vt=>Vt.name===st.name)[0];return Q.jsx(Fte,{className:"group/menu-button",onMouseEnter:()=>Ge(st.id),onMouseLeave:()=>Ge(null),children:Q.jsxs("div",{className:"relative flex w-full",children:[Q.jsx(Sw,{size:"md",onDragOver:Vt=>C(Vt,st.id),onDragEnter:Vt=>L(Vt,st.id),onDragLeave:k,onDrop:Vt=>E(Vt,st.id),"data-testid":`sidebar-nav-${st.name}`,id:`sidebar-nav-${st.name}`,isActive:m(st.id),onClick:()=>e(st.id),className:pt("flex-grow pr-8",ze===st.id&&"bg-accent",Y(st.id)),children:Q.jsx("div",{onDoubleClick:Vt=>{ve(Vt,st)},className:"flex w-full items-center justify-between gap-2",children:Q.jsx("div",{className:"flex flex-1 items-center gap-2",children:Ht!=null&&Ht.edit&&!ce?Q.jsx(Da1,{handleEditFolderName:fe,item:st,refInput:u,handleKeyDownFn:Ie,handleEditNameFolder:ge,editFolderName:Ht,foldersNames:P,handleKeyDown:$Q}):Q.jsx("span",{className:"block w-0 grow truncate text-sm opacity-100",children:st.name})})})},st.id),Q.jsx("div",{className:"absolute right-2 top-[0.45rem] flex items-center hover:text-foreground",onClick:Vt=>Vt.stopPropagation(),children:Q.jsx(Ia1,{item:st,index:bt,handleDeleteFolder:t,handleDownloadFolder:()=>se(st.id,st.name),handleSelectFolderToRename:we,checkPathName:m})})]})},bt)})})})}),Q.jsx("div",{className:"flex-1"}),Hfo]}),Q.jsx(vhn,{className:"border-t",children:Q.jsxs("div",{className:"grid w-full items-center gap-2 p-2",children:[LWe," ",Q.jsxs(Sw,{onClick:We,size:"md",className:"text-sm",children:[Q.jsx(mt,{name:"Library",className:"h-4 w-4"}),"Knowledge"]}),Q.jsxs(Sw,{onClick:Se,size:"md",className:"text-sm",children:[Q.jsx(mt,{name:"File",className:"h-4 w-4"}),"My Files"]})]})})]})},qa1=""+new URL("logo_dark-_nccwgMn.png",import.meta.url).href,Fa1=""+new URL("logo_light-DKZjS8CD.png",import.meta.url).href;function Ha1({children:e,className:t,containerClassName:n}){return Q.jsxs("div",{className:pt("relative flex h-full w-full items-center justify-center bg-background",t),children:[Q.jsx("div",{className:pt("absolute inset-0","[background-size:20px_20px]","[background-image:radial-gradient(#d4d4d4_1px,transparent_1px)]","dark:[background-image:radial-gradient(#404040_1px,transparent_1px)]")}),Q.jsx("div",{className:pt("absolute inset-0 bg-gradient-to-b from-background/0 from-0% via-background/50 via-30% to-background to-50%",n)}),e]})}const Ba1="Welcome to Langflow",Wa1="Your new favorite way to ship Agents",$a1="Follow development, star the repo, and shape the future.",Va1="Join builders, ask questions, and show off your agents",Ua1="Already have a flow? Drag and drop to upload.",Ga1="Empty folder",Xa1="Create first flow",ayr="absolute right-6 top-[35px] h-4 w-4 shrink-0 translate-x-0 opacity-0 transition-all duration-300 group-hover:translate-x-1 group-hover:opacity-100",Ka1=({setOpenModal:e})=>{const t=jvi(void 0),n=ih(f=>f.folders),i=Wc(Wy(f=>f.userData)),s=c2(f=>f.stars),a=c2(f=>f.discordCount),{mutate:l}=qUe(),{mutate:u}=Ncn(),d=f=>()=>{const p=(i==null?void 0:i.optins)??{};p[f]=!0,l({user_id:i==null?void 0:i.id,user:{optins:p}},{onSuccess:()=>{u({})}})};return Q.jsx(Ha1,{children:Q.jsxs(n5n,{dragMessage:"Drop your flows or components here",onFileDrop:t,children:[Q.jsx("div",{className:"m-0 h-full w-full bg-background p-0",children:Q.jsxs("div",{className:"z-50 flex h-full w-full flex-col items-center justify-center gap-5",children:[Q.jsxs("div",{className:"z-50 flex flex-col items-center gap-2",children:[Q.jsx("div",{className:"z-50 dark:hidden",children:Q.jsx("img",{src:Fa1,alt:"Langflow Logo Light","data-testid":"empty_page_logo_light",className:"relative top-3"})}),Q.jsx("div",{className:"z-50 hidden dark:block",children:Q.jsx("img",{src:qa1,alt:"Langflow Logo Dark","data-testid":"empty_page_logo_dark",className:"relative top-3"})}),Q.jsx("span",{"data-testid":"mainpage_title",className:"z-50 text-center font-chivo text-2xl font-medium text-foreground",children:Ba1}),Q.jsx("span",{"data-testid":"empty_page_description",className:"z-50 text-center text-base text-secondary-foreground",children:(n==null?void 0:n.length)>1?Ga1:Wa1})]}),Q.jsxs("div",{className:"flex w-full max-w-[510px] flex-col gap-7 sm:gap-[29px]",children:[Q.jsx(Kn,{unstyled:!0,className:"group mx-3 h-[84px] sm:mx-0",onClick:()=>{d("github_starred")(),window.open(gbt,"_blank","noopener,noreferrer")},"data-testid":"empty_page_github_button",children:Q.jsxs("div",{className:"relative flex flex-col rounded-lg border-[1px] bg-background p-4 transition-all duration-300 hover:border-accent-pink-foreground",children:[Q.jsxs("div",{className:"grid w-full items-center justify-between gap-2",children:[Q.jsxs("div",{className:"flex gap-3",children:[Q.jsx(dde,{className:"h-6 w-6"}),Q.jsxs("div",{children:[Q.jsx("span",{className:"font-semibold",children:"GitHub"}),Q.jsx("span",{className:"ml-2 font-mono text-muted-foreground",children:C6t(s)})]})]}),Q.jsx("div",{children:Q.jsx("span",{className:"text-base text-secondary-foreground",children:$a1})})]}),Q.jsx(nee,{className:ayr})]})}),Q.jsx(Kn,{unstyled:!0,className:"group mx-3 h-[84px] sm:mx-0",onClick:()=>{d("discord_clicked")(),window.open(pbt,"_blank","noopener,noreferrer")},"data-testid":"empty_page_discord_button",children:Q.jsxs("div",{className:"relative flex flex-col rounded-lg border-[1px] bg-background p-4 transition-all duration-300 hover:border-discord-color",children:[Q.jsxs("div",{className:"grid w-full items-center justify-between gap-2",children:[Q.jsxs("div",{className:"flex gap-3",children:[Q.jsx(ude,{className:"h-6 w-6 text-discord-color"}),Q.jsxs("div",{children:[Q.jsx("span",{className:"font-semibold",children:"Discord"}),Q.jsx("span",{className:"ml-2 font-mono text-muted-foreground",children:C6t(a)})]})]}),Q.jsx("div",{children:Q.jsx("span",{className:"text-base text-secondary-foreground",children:Va1})})]}),Q.jsx(nee,{className:ayr})]})}),Q.jsxs(Kn,{variant:"default",className:"z-10 m-auto mt-3 h-10 w-full max-w-[10rem] rounded-lg font-bold transition-all duration-300",onClick:()=>e(!0),id:"new-project-btn","data-testid":"new_project_btn_empty_page",children:[Q.jsx(mt,{name:"Plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{children:Xa1})]})]})]})}),Q.jsx("p",{"data-testid":"empty_page_drag_and_drop_text",className:"absolute bottom-5 left-0 right-0 mt-4 cursor-default text-center text-xxs text-muted-foreground",children:Ua1})]})})},Ya1=({setOpenModal:e})=>Q.jsx(Ka1,{setOpenModal:e});function Za1(){const[e,t]=$.useState(!1),[n,i]=$.useState(!1),s=ih(T=>T.setFolderToEdit),a=Cg(),l=as(T=>T.flows),u=as(T=>T.examples),d=Di(T=>T.setSuccessData),f=Di(T=>T.setErrorData),p=ih(T=>T.folderToEdit),g=ih(T=>T.folders),m=Az();$.useEffect(()=>()=>m.removeQueries({queryKey:["useGetFolder"]}),[]);const{mutate:v}=wa1(),y=()=>{v({folder_id:p==null?void 0:p.id},{onSuccess:()=>{d({title:"Project deleted successfully."}),a("/all")},onError:T=>{console.error(T),f({title:"Error deleting project."})}})};return Q.jsxs(Jde,{width:"280px",children:[l&&u&&g&&((l==null?void 0:l.length)!==(u==null?void 0:u.length)||(g==null?void 0:g.length)>1)&&Q.jsx(ja1,{handleChangeFolder:T=>{a(`all/folder/${T}`)},handleDeleteFolder:T=>{s(T),i(!0)},handleFilesClick:()=>{a("assets")}}),Q.jsx("main",{className:"flex h-full w-full overflow-hidden",children:l&&u&&g?Q.jsx("div",{className:"relative mx-auto flex h-full w-full flex-col overflow-hidden",children:(l==null?void 0:l.length)!==(u==null?void 0:u.length)||(g==null?void 0:g.length)>1?Q.jsx(g$,{}):Q.jsx(Ya1,{setOpenModal:t})}):Q.jsx("div",{className:"flex h-full w-full items-center justify-center",children:Q.jsx(hvi,{remSize:30})})}),Q.jsx(i5n,{openModal:e,setOpenModal:t,openDeleteFolderModal:n,setOpenDeleteFolderModal:i,handleDeleteFolder:y})]})}const Ja1=({items:e})=>{const n=eV().pathname,i=HGe();return Q.jsx(e2e,{collapsible:i?"icon":"none",className:"border-none",children:Q.jsx(n2e,{className:"pr-6",children:Q.jsx(gV,{children:Q.jsx(mV,{children:Q.jsx(bV,{children:e.map((s,a)=>Q.jsx(Fte,{children:Q.jsx(fx,{to:s.href,replace:!0,children:Q.jsxs(Sw,{size:"md",isActive:s.href?n.endsWith(s.href):!1,"data-testid":`sidebar-nav-${s.title}`,tooltip:s.title,children:[s.icon,Q.jsx("span",{className:"block max-w-full truncate",children:s.title})]})})},a))})})})})})},e11=(e=!1,t=!1)=>{const n=[];return e&&n.push({title:"Langflow API Keys",href:"/settings/api-keys",icon:Q.jsx(mt,{name:"Key",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})}),t&&n.push({title:"Langflow Store",href:"/settings/store",icon:Q.jsx(mt,{name:"Store",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})}),n};function t11(){Wc(t=>t.autoLogin),vg(t=>t.hasStore);const e=[];e.push({title:"General",href:"/settings/general",icon:Q.jsx(mt,{name:"SlidersHorizontal",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})}),e.push({title:"MCP Servers",href:"/settings/mcp-servers",icon:Q.jsx(mt,{name:"Mcp",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})},{title:"Global Variables",href:"/settings/global-variables",icon:Q.jsx(mt,{name:"Globe",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})},{title:"Shortcuts",href:"/settings/shortcuts",icon:Q.jsx(mt,{name:"Keyboard",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})},{title:"Messages",href:"/settings/messages",icon:Q.jsx(mt,{name:"MessagesSquare",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})});{const t=e11(!0,trn);e.splice(2,0,...t)}return Q.jsx(Wdi,{backTo:-1,title:"Settings",description:"Manage the general settings for Langflow.",children:Q.jsxs(Jde,{width:"15rem",defaultOpen:!1,children:[Q.jsx(Ja1,{items:e}),Q.jsx("main",{className:"flex flex-1 overflow-hidden",children:Q.jsx("div",{className:"flex flex-1 flex-col overflow-x-hidden pt-1",children:Q.jsx(g$,{})})})]})})}const n11=({inputLabel:e,inputRef:t,apiKeyValue:n,handleCopyClick:i,textCopied:s,renderKey:a})=>Q.jsx(Q.Fragment,{children:Q.jsxs("div",{className:"flex items-center gap-3",children:[Q.jsxs("div",{className:"w-full",children:[e&&!a&&Q.jsx("div",{className:"relative bottom-1",children:e}),Q.jsx(F1,{"data-testid":"api-key-input",ref:t,readOnly:!0,value:n})]}),Q.jsx(Kn,{onClick:l=>{i(),l.stopPropagation()},"data-testid":"btn-copy-api-key",unstyled:!0,children:s?Q.jsx(mt,{name:"Copy",className:"h-4 w-4"}):Q.jsx(mt,{name:"Check",className:"h-4 w-4"})})]})}),r11=({modalProps:e,apiKeyName:t,inputRef:n,setApiKeyName:i})=>Q.jsxs(L$,{name:"apikey",children:[(e==null?void 0:e.inputLabel)&&Q.jsx(p0e,{asChild:!0,className:"mb-2",children:Q.jsx(S2,{className:"relative bottom-1",children:e==null?void 0:e.inputLabel})}),Q.jsx("div",{className:"flex items-center justify-between gap-2",children:Q.jsx(w$e,{asChild:!0,children:Q.jsx(F1,{id:"primary-input",value:t,ref:n,onChange:({target:{value:s}})=>{i(s)},placeholder:e==null?void 0:e.inputPlaceholder})})})]}),i11=({title:e,showIcon:t})=>Q.jsxs(Q.Fragment,{children:[Q.jsx("span",{className:"pr-2",children:e}),t&&Q.jsx(mt,{name:"Key",className:"h-6 w-6 pl-1 text-foreground","aria-hidden":"true"})]});function o11({children:e,data:t,onCloseModal:n,modalProps:i}){const[s,a]=$.useState(!1),[l,u]=$.useState((t==null?void 0:t.apikeyname)??""),[d,f]=$.useState(""),[p,g]=$.useState(!1),[m,v]=$.useState(!0),y=Di(E=>E.setSuccessData),T=$.useRef(null),_=(i==null?void 0:i.modalProps)??i;$.useEffect(()=>{s?(g(!1),O()):n==null||n()},[s]);function O(){u(""),f("")}const S=async()=>{var E,R;d&&(await navigator.clipboard.writeText(d),(E=T==null?void 0:T.current)==null||E.focus(),(R=T==null?void 0:T.current)==null||R.select(),y({title:Y2o}),v(!1),setTimeout(()=>{v(!0)},3e3))};function C(){ZAr(l).then(E=>{f(E.api_key)}).catch(E=>{})}async function L(){d&&a(!1),k()}const k=()=>{p?a(!1):(g(!0),C())};return Q.jsxs(Xr,{onSubmit:L,size:(i==null?void 0:i.size)??"small-h-full",open:s,setOpen:a,children:[Q.jsx(Xr.Trigger,{asChild:!0,children:e}),Q.jsx(Xr.Header,{clampDescription:3,description:p?Q.jsx(Q.Fragment,{children:_==null?void 0:_.generatedKeyMessage}):Q.jsx(Q.Fragment,{children:_==null?void 0:_.description}),children:Q.jsx(i11,{title:_==null?void 0:_.title,showIcon:_==null?void 0:_.showIcon})}),Q.jsx(Xr.Content,{children:p?Q.jsx(n11,{inputLabel:String((_==null?void 0:_.inputLabel)??""),inputRef:T,apiKeyValue:d,handleCopyClick:S,textCopied:m,renderKey:p}):Q.jsx(r11,{modalProps:_,apiKeyName:l,inputRef:T,setApiKeyName:u})}),Q.jsx(Xr.Footer,{submit:{label:p?"Done":(_==null?void 0:_.buttonText)??""}})]})}const s11=()=>({title:"Create API Key",description:"Create a secret API Key to use Langflow API.",inputPlaceholder:"My API Key",buttonText:"Generate API Key",generatedKeyMessage:Q.jsxs(Q.Fragment,{children:[" ","Please save this secret key somewhere safe and accessible. For security reasons, ",Q.jsx("strong",{children:"you won't be able to view it again"})," through your account. If you lose this secret key, you'll need to generate a new one."]}),showIcon:!0,inputLabel:Q.jsxs(Q.Fragment,{children:[Q.jsx("span",{className:"text-sm",children:"Description"})," ",Q.jsx("span",{className:"text-xs text-muted-foreground",children:"(optional)"})]})}),a11=({selectedRows:e,fetchApiKeys:t,userId:n})=>{const i=s11();return Q.jsx(Q.Fragment,{children:Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Langflow API Keys",Q.jsx(mt,{name:"Key",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:Aho})]}),Q.jsx("div",{className:"flex flex-shrink-0 items-center gap-2",children:Q.jsx(o11,{modalProps:i,data:n,onCloseModal:t,children:Q.jsxs(Kn,{"data-testid":"api-key-button-store",variant:"primary",children:[Q.jsx(mt,{name:"Plus",className:"w-4"}),"Add New"]})})})]})})},l11=()=>[{headerCheckboxSelection:!0,checkboxSelection:!0,showDisabledCheckboxes:!0,headerName:"Name",field:"name",cellRenderer:Zk,flex:2},{headerName:"Key",field:"api_key",cellRenderer:Zk,flex:1},{headerName:"Created",field:"created_at",cellRenderer:Zk,flex:1},{headerName:"Last Used",field:"last_used_at",cellRenderer:Zk,flex:1},{headerName:"Total Uses",field:"total_uses",cellRenderer:Zk,flex:1,resizable:!1}];function c11(){const[e,t]=$.useState([]),n=Di(T=>T.setSuccessData),i=Di(T=>T.setErrorData),{userData:s}=$.useContext(sx),[a,l]=$.useState(""),[u,d]=$.useState([]),{refetch:f}=bgs();async function p(){const{data:T}=await f();if(T!==void 0){const _=T.api_keys.map(O=>({...O,name:O.name&&O.name!==""?O.name:"Untitled",last_used_at:O.last_used_at??"Never"}));d(_),l(T.user_id)}}$.useEffect(()=>{s&&p()},[s]);function g(){p()}const{mutate:m}=mgs();function v(){for(let T=0;T<e.length;T++)m({keyId:e[T]},{onSuccess:()=>{g(),n({title:e.length===1?tho:nho})},onError:_=>{var O,S;i({title:e.length===1?F2o:H2o,list:[(S=(O=_==null?void 0:_.response)==null?void 0:O.data)==null?void 0:S.detail]})}})}const y=l11();return Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between gap-6",children:[Q.jsx(a11,{selectedRows:e,fetchApiKeys:p,userId:a}),Q.jsx("div",{className:"flex h-full w-full flex-col justify-between",children:Q.jsx(Ky,{onDelete:v,overlayNoRowsTemplate:"No data available",onSelectionChanged:T=>{t(T.api.getSelectedRows().map(_=>_.id))},rowSelection:"multiple",suppressRowClickSelection:!0,pagination:!0,columnDefs:y,rowData:u},"apiKeys")})]})}const u11=()=>Q.jsx(Q.Fragment,{}),d11=()=>Q.jsx(Q.Fragment,{children:Q.jsx("div",{className:"flex w-full items-center justify-between gap-4 space-y-0.5",children:Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["General",Q.jsx(mt,{name:"SlidersHorizontal",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage settings related to Langflow and your account."})]})})}),h11=({password:e,cnfPassword:t,handleInput:n,handlePatchPassword:i})=>Q.jsx(Q.Fragment,{children:Q.jsx(Zee,{onSubmit:s=>{i(e,t,n),s.preventDefault()},children:Q.jsxs(hV,{"x-chunk":"dashboard-04-chunk-2",children:[Q.jsxs(jte,{children:[Q.jsx(Gde,{children:"Password"}),Q.jsx(jGe,{children:"Type your new password and confirm it."})]}),Q.jsx(qGe,{children:Q.jsxs("div",{className:"flex w-full gap-4",children:[Q.jsxs(L$,{name:"password",className:"w-full",children:[Q.jsx(vz,{id:"pasword",onChange:s=>{n({target:{name:"password",value:s}})},value:e,isForm:!0,password:!0,placeholder:"Password",className:"w-full"}),Q.jsx(o$,{match:"valueMissing",className:"field-invalid",children:"Please enter your password"})]}),Q.jsxs(L$,{name:"cnfPassword",className:"w-full",children:[Q.jsx(vz,{id:"cnfPassword",onChange:s=>{n({target:{name:"cnfPassword",value:s}})},value:t,isForm:!0,password:!0,placeholder:"Confirm Password",className:"w-full"}),Q.jsx(o$,{className:"field-invalid",match:"valueMissing",children:"Please confirm your password"})]})]})}),Q.jsx(Xde,{className:"border-t px-6 py-4",children:Q.jsx(mGe,{asChild:!0,children:Q.jsx(Kn,{type:"submit",children:"Save"})})})]})})}),qvi=e=>`${Rv}files/profile_pictures/${e}`,f11=(e,t,n)=>{const i=async s=>Promise.all(s.map(a=>new Promise(l=>{const u=new Image;u.src=a,u.onload=l,u.onerror=l})));$.useEffect(()=>{if(t||!n)return;const s=[];Object.keys(n).flatMap(a=>n[a].map(l=>s.push(qvi(`${a}/${l}`)))),i(s).then(()=>{e(!0)})},[n,t])};function p11({profilePictures:e,loading:t,value:n,onChange:i}){const s=$.useRef(null),a=c2(d=>d.dark),[l,u]=$.useState(!1);return $.useEffect(()=>{var d;n&&s&&((d=s.current)==null||d.scrollIntoView({behavior:"smooth",block:"center"}))},[s,n]),f11(u,t,e),Q.jsx("div",{className:"flex flex-col justify-center gap-2",children:t||!l?Q.jsx(Xw,{}):Object.keys(e).map((d,f)=>Q.jsxs("div",{className:"flex flex-col gap-2",children:[Q.jsx("div",{className:"edit-flow-arrangement",children:Q.jsx("span",{className:"font-normal",children:d})}),Q.jsx("div",{className:"block overflow-hidden",children:Q.jsx("div",{className:"flex items-center gap-1 overflow-x-auto rounded-lg bg-muted px-1 custom-scroll",children:e[d].map((p,g)=>Q.jsx(Kn,{ref:n===d+"/"+p?s:void 0,unstyled:!0,onClick:()=>i(d+"/"+p),className:"shrink-0 px-0.5 py-2",children:Q.jsx("img",{src:qvi(`${d}/${p}`),style:{filter:n===d+"/"+p?a?"drop-shadow(0 0 0.3rem rgb(255, 255, 255))":"drop-shadow(0 0 0.3rem rgb(0, 0, 0))":""},className:pt("h-12 w-12")},g)},g))})})]},f))})}const g11=({profilePicture:e,handleInput:t,handlePatchProfilePicture:n,handleGetProfilePictures:i,userData:s})=>{const{isLoading:a,data:l,isFetching:u}=bbi();return Q.jsx(Zee,{onSubmit:d=>{n(e),d.preventDefault()},children:Q.jsxs(hV,{"x-chunk":"dashboard-04-chunk-1",children:[Q.jsxs(jte,{children:[Q.jsx(Gde,{children:"Profile Picture"}),Q.jsx(jGe,{children:"Choose the image that appears as your profile picture."})]}),Q.jsx(qGe,{children:Q.jsx("div",{className:"py-2",children:Q.jsx(p11,{profilePictures:l,loading:a||u,value:e==""?(s==null?void 0:s.profile_image)??Jar[parseInt((s==null?void 0:s.id)??"",30)%Jar.length]:e,onChange:d=>{t({target:{name:"profilePicture",value:d}})}})})}),Q.jsx(Xde,{className:"border-t px-6 py-4",children:Q.jsx(mGe,{asChild:!0,children:Q.jsx(Kn,{type:"submit",children:"Save"})})})]})})},m11=()=>{const{scrollId:e}=h5(),[t,n]=$.useState(YOr),i=Di(E=>E.setSuccessData),s=Di(E=>E.setErrorData),{userData:a,setUserData:l}=$.useContext(sx),{password:u,cnfPassword:d,profilePicture:f}=t,p=Wc(E=>E.autoLogin),{storeApiKey:g}=$.useContext(sx),m=vg(E=>E.updateHasApiKey),v=vg(E=>E.updateValidApiKey),y=vg(E=>E.updateLoadingApiKey),{mutate:T}=P4o(),{mutate:_}=qUe(),O=()=>{if(u!==d){s({title:$2o,list:[V2o]});return}u!==""&&T({user_id:a.id,password:{password:u}},{onSuccess:()=>{k({target:{name:"password",value:""}}),k({target:{name:"cnfPassword",value:""}}),i({title:_rr})},onError:E=>{var R,P;s({title:Mrr,list:[(P=(R=E==null?void 0:E.response)==null?void 0:R.data)==null?void 0:P.detail]})}})},S=bbi(),C=E=>{E!==""&&_({user_id:a.id,user:{profile_image:E}},{onSuccess:()=>{const R=Eo.cloneDeep(a);R.profile_image=E,l(R),i({title:_rr})},onError:R=>{var P,D;s({title:Mrr,list:[(D=(P=R==null?void 0:R.response)==null?void 0:P.data)==null?void 0:D.detail]})}})};udi(e);const{mutate:L}=cdi({onSuccess:()=>{i({title:"API key saved successfully"}),m(!0),v(!0),y(!1),k({target:{name:"apikey",value:""}})},onError:E=>{var R,P;s({title:"API key save error",list:[(P=(R=E==null?void 0:E.response)==null?void 0:R.data)==null?void 0:P.detail]}),m(!1),v(!1),y(!1)}});function k({target:{name:E,value:R}}){n(P=>({...P,[E]:R}))}return Q.jsxs("div",{className:"flex h-full w-full flex-col gap-6 overflow-x-hidden",children:[Q.jsx(d11,{}),Q.jsxs("div",{className:"flex w-full flex-col gap-6",children:[Q.jsx(g11,{profilePicture:f,handleInput:k,handlePatchProfilePicture:C,handleGetProfilePictures:S,userData:a}),!p&&Q.jsx(h11,{password:u,cnfPassword:d,handleInput:k,handlePatchPassword:O})]}),Q.jsx(u11,{})]})};function b11(){const e=Di(v=>v.setErrorData),[t,n]=$.useState(!1),i=$.useRef(void 0),l=[{headerName:"Variable Name",field:"name",flex:2},{headerName:"Type",field:"type",cellRenderer:v=>v.value!==""?Q.jsx("div",{children:Q.jsx(Hm,{variant:"outline",size:"md",className:"font-normal",children:v.value})}):Q.jsx("div",{}),cellEditor:({options:v,value:y,onValueChange:T})=>Q.jsx(D5i,{options:v,value:y,onSelect:T,children:Q.jsx("div",{className:"-mt-1.5 w-full"})}),cellEditorParams:{options:["Generic","Credential"]},flex:1},{field:"value"},{headerName:"Apply To Fields",field:"default_fields",valueFormatter:v=>{var y;return((y=v.value)==null?void 0:y.join(", "))??""},flex:1,resizable:!1}],[u,d]=$.useState([]),{data:f}=Zde(),{mutate:p}=Vdi();async function g(){u.map(async v=>{var T;const y=(T=f==null?void 0:f.find(_=>_.name===v))==null?void 0:T.id;p({id:y},{onError:()=>{e({title:"Error deleting variable",list:[`ID not found for variable: ${v}`]})}})})}function m(v){i.current=v.data,n(!0)}return Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Global Variables",Q.jsx(mt,{name:"Globe",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage global variables and assign them to fields."})]}),Q.jsx("div",{className:"flex flex-shrink-0 items-center gap-2",children:Q.jsx(wgt,{asChild:!0,children:Q.jsxs(Kn,{"data-testid":"api-key-button-store",variant:"primary",children:[Q.jsx(mt,{name:"Plus",className:"w-4"}),"Add New"]})})})]}),Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between",children:[Q.jsx(Ky,{overlayNoRowsTemplate:"No data available",onSelectionChanged:v=>{d(v.api.getSelectedRows().map(y=>y.name))},rowSelection:"multiple",onRowClicked:m,suppressRowClickSelection:!0,pagination:!0,columnDefs:l,rowData:f??[],onDelete:g},"globalVariables"),i.current&&Q.jsx(wgt,{initialData:i.current,open:t,setOpen:n},i.current.id)]})]})}const v11=e=>{const{mutate:t,queryClient:n}=rs();async function i(a){var l,u,d;try{return{message:((l=(await So.delete(`${Yo("MCP_SERVERS",void 0,!0)}/${a.name}`)).data)==null?void 0:l.message)||"MCP Server deleted successfully"}}catch(f){const p=((d=(u=f.response)==null?void 0:u.data)==null?void 0:d.detail)||f.message||"Failed to delete MCP Server";throw new Error(p)}}return t(["useDeleteMCPServer"],i,{...e,onSuccess:(a,l,u)=>{n.refetchQueries({queryKey:["useGetMCPServers"]})}})},y11=e=>{const{mutate:t}=rs();return t(["useGetMCPServer"],async s=>{const{data:a}=await So.get(`${Yo("MCP_SERVERS",void 0,!0)}/${s.name}`);return{...a,name:s.name}},{...e})};function T11(){const{data:e}=Thn(),{mutate:t}=v11(),n=Di(O=>O.setErrorData),[i,s]=$.useState(!1),[a,l]=$.useState(!1),[u,d]=$.useState(null),{mutateAsync:f}=y11(),[p,g]=$.useState(!1),[m,v]=$.useState(null),y=async O=>{try{const S=await f({name:O});d(S),l(!0)}catch(S){n({title:"Error fetching server",list:[S.message]})}finally{}},T=O=>{t({name:O.name},{onError:S=>n({title:"Error deleting server",list:[S.message]})})},_=O=>{v(O),g(!0)};return Q.jsxs("div",{className:"flex h-full w-full flex-col gap-6",children:[Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["MCP Servers",Q.jsx(mt,{name:"Mcp",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage MCP Servers for use in your flows."})]}),Q.jsxs("div",{className:"flex flex-shrink-0 items-center gap-2",children:[Q.jsxs(Kn,{variant:"primary",onClick:()=>s(!0),"data-testid":"add-mcp-server-button-page",children:[Q.jsx(mt,{name:"Plus",className:"w-4"}),"Add MCP Server"]}),Q.jsx(L$e,{open:i,setOpen:s})]})]}),Q.jsx("div",{className:"flex h-full flex-col gap-2",children:e?Q.jsxs(Q.Fragment,{children:[e.length===0?Q.jsx("div",{className:"w-full pt-8 text-center text-sm text-muted-foreground",children:"No MCP servers added"}):Q.jsx("div",{className:"text-sm font-medium text-muted-foreground",children:"Added MCP Servers"}),Q.jsx("div",{className:"flex flex-col gap-1",children:e.map(O=>Q.jsxs("div",{className:"flex items-center justify-between rounded-lg px-3 py-2 shadow-sm transition-colors hover:bg-accent",children:[Q.jsxs("div",{className:"flex items-center gap-2",children:[Q.jsx("span",{className:"text-sm font-medium",children:O.name}),Q.jsx(No,{content:O.error,children:Q.jsx("span",{className:pt("cursor-default select-none !text-mmd text-muted-foreground",O.error&&"text-accent-red-foreground"),children:O.toolsCount===null?O.error?O.error.startsWith("Timeout")?"Timeout":"Error":"Loading...":O.toolsCount?`${O.toolsCount} tool${O.toolsCount===1?"":"s"}`:"No tools found"})})]}),Q.jsxs(QN,{children:[Q.jsx(zN,{asChild:!0,children:Q.jsx(Kn,{variant:"ghost",size:"iconSm","data-testid":`mcp-server-menu-button-${O.name}`,className:"text-muted-foreground hover:bg-accent",children:Q.jsx(mt,{name:"Ellipsis",className:"h-5 w-5"})})}),Q.jsxs(zz,{align:"end",children:[Q.jsxs(i5,{onClick:()=>y(O.name),children:[Q.jsx(mt,{name:"SquarePen",className:"mr-2 h-4 w-4"}),"Edit"]}),Q.jsxs(i5,{onClick:()=>_(O),className:"text-destructive",children:[Q.jsx(mt,{name:"Trash2",className:"mr-2 h-4 w-4"}),"Delete"]})]})]})]},O.id))}),a&&Q.jsx(L$e,{open:a,setOpen:l,initialData:u}),Q.jsx(_V,{open:p,setOpen:g,onConfirm:()=>{m&&T(m),g(!1),v(null)},description:"MCP Server"})]}):Q.jsx("div",{className:"flex h-full w-full items-center justify-center",children:Q.jsx(Xw,{})})})]})}const M11=()=>Q.jsx(Q.Fragment,{children:Q.jsx("div",{className:"flex w-full items-center justify-between gap-4 space-y-0.5",children:Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Messages",Q.jsx(mt,{name:"MessagesSquare",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Inspect, edit and remove messages to explore and refine model behaviors."})]})})});function w11(){return D6i({mode:"union"}),Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between gap-6",children:[Q.jsx(M11,{}),Q.jsx("div",{className:"flex h-full w-full flex-col justify-between",children:Q.jsx(cvi,{})})]})}function _11(e){const t=e.value,n=t==null?void 0:t.split("+");return Q.jsx(G6t,{filteredShortcut:n,tableRender:!0})}function O11({children:e,shortcut:t,defaultShortcuts:n,open:i,setOpen:s,disable:a,setSelected:l}){var S;const u=n.length>0?(S=n.find(C=>TBe(C.name)===TBe(t[0])))==null?void 0:S.shortcut:"",[d,f]=$.useState(null),p=Di(C=>C.setSuccessData),g=Oc(C=>C.setShortcuts),m=Di(C=>C.setErrorData);function v(C){let L=!0;return n.forEach(({shortcut:k})=>{k.toLowerCase()===C.toLowerCase()&&(L=!1)}),L}const y=Oc(C=>C.updateUniqueShortcut);function T(){if(d&&v(d)){const C=d.split(" ");(C[0].toLowerCase().includes("ctrl")||C[0].toLowerCase().includes("cmd"))&&(C[0]="mod");const L=n.map(E=>E.name===t[0]?{name:E.name,display_name:E.display_name,shortcut:C.join("").toLowerCase()}:{name:E.name,display_name:E.display_name,shortcut:E.shortcut}),k=TBe(t[0]);y(k,C.join("").toLowerCase()),g(L),localStorage.setItem("langflow-shortcuts",JSON.stringify(L)),f(null),s(!1),p({title:`${t[0]} shortcut successfully changed`});return}m({title:"Error saving key combination",list:["This combination already exists!"]})}$.useEffect(()=>{i||(f(null),l([]))},[i,s,d]);function _({oldKey:C,key:L}){return C===null?`${L.length>0,uR(L)}`:`${C.length>0?uR(C):C.toUpperCase()} + ${L.length>0?uR(L):L.toUpperCase()}`}function O(C,L){return C.split(" ").some(E=>E.toLowerCase().trim()===L.toLowerCase().trim())}return $.useEffect(()=>{function C(L){var E,R,P;L.preventDefault();let k=L.key;((E=L.key)==null?void 0:E.toLowerCase())==="control"&&(k="Ctrl"),((R=L.key)==null?void 0:R.toLowerCase())==="meta"&&(k="Cmd"),((P=L.key)==null?void 0:P.toLowerCase())===" "&&(k="Space"),!(d&&O(d,k))&&f(D=>_({oldKey:D,key:k}))}return document.addEventListener("keydown",C),()=>{document.removeEventListener("keydown",C)}},[d,f]),Q.jsxs(Xr,{open:i,setOpen:s,size:"x-small",disable:a,children:[Q.jsxs(Xr.Header,{description:"Recording your keyboard",children:[Q.jsx("span",{className:"pr-2",children:" Key Combination "}),Q.jsx(mt,{name:"Keyboard",className:"h-6 w-6 pl-1 text-primary","aria-hidden":"true"})]}),Q.jsx(Xr.Trigger,{children:e}),Q.jsx(Xr.Content,{children:Q.jsx("div",{className:"align-center flex h-full w-full justify-center gap-4 rounded-md border border-border py-2",children:Q.jsx("div",{className:"flex items-center justify-center gap-0.5 text-center text-lg font-bold",children:(d??u??"").split("+").map((C,L)=>Q.jsx(Afi,{value:C,tableRender:!0},L))})})}),Q.jsxs(Xr.Footer,{children:[Q.jsx(Kn,{variant:"default",onClick:T,children:"Apply"}),Q.jsx(Kn,{className:"mr-5",variant:"destructive",onClick:()=>f(null),children:"Reset"})]})]})}function A11(){const[e,t]=$.useState([]),n=Oc(g=>g.shortcuts),i=Oc(g=>g.setShortcuts),s=[{headerName:"Functionality",field:"display_name",flex:1,editable:!1,resizable:!1},{headerName:"Keyboard Shortcut",field:"shortcut",flex:2,editable:!1,resizable:!1,cellRenderer:_11}],[a,l]=$.useState([]);$.useEffect(()=>{l(n)},[n]);const[u,d]=$.useState(!1),f=Oc(g=>g.updateUniqueShortcut);function p(){i(Jnn),Jnn.forEach(({name:g,shortcut:m})=>{const v=TBe(g);f(v,m)}),localStorage.removeItem("langflow-shortcuts")}return Q.jsxs("div",{className:"flex h-full w-full flex-col gap-6",children:[Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Shortcuts",Q.jsx(mt,{name:"Keyboard",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage Shortcuts for quick access to frequently used actions."})]}),Q.jsx("div",{children:Q.jsx("div",{className:"align-end flex w-full justify-end",children:Q.jsxs("div",{className:"justify center flex items-center",children:[u&&Q.jsx(O11,{disable:e.length===0,shortcut:e,defaultShortcuts:n,open:u,setOpen:d,setSelected:t,children:Q.jsx("div",{style:{display:"none"}})}),Q.jsxs(Kn,{variant:"primary",className:"flex gap-2",onClick:p,children:[Q.jsx(mt,{name:"RotateCcw",className:"w-4"}),"Restore"]})]})})})]}),Q.jsx("div",{className:"grid gap-6 pb-8",children:Q.jsx("div",{children:s&&a.length>0&&Q.jsx(Ky,{suppressRowClickSelection:!0,domLayout:"autoHeight",pagination:!1,columnDefs:s,rowData:a,onCellDoubleClicked:g=>{t([g.data.name]),d(!0)}})})})]})}function x11(){const e=as(a=>a.setCurrentFlow),{id:t}=h5(),n=Cg(),i=as(a=>a.flows),s=as(a=>a.currentFlowId);return $.useEffect(()=>{(async()=>{if(i&&s===""){const l=i.find(u=>u.id===t);if(!l){n("/all");return}e(l)}})()},[t,i]),Q.jsx("div",{className:"flow-page-positioning",children:Q.jsx(Ovi,{view:!0})})}const S11=$.lazy(()=>ee(()=>import("./index-BWnKMRFJ.js"),__vite__mapDeps([0,1]),import.meta.url)),C11=$.lazy(()=>ee(()=>import("./index-C676MS3I.js"),[],import.meta.url)),Q11=$.lazy(()=>ee(()=>import("./index-CNh0rwur.js"),[],import.meta.url)),z11=$.lazy(()=>ee(()=>import("./index-bMhyLtgS.js"),[],import.meta.url)),E11=$.lazy(()=>ee(()=>import("./index-BGt6jQ4x.js"),__vite__mapDeps([2,1]),import.meta.url)),L11=Vno(Qnn([Q.jsx(kl,{path:"/playground/:id/",children:Q.jsx(kl,{path:"",element:Q.jsx(edr,{children:Q.jsx(z11,{})},1)})}),Q.jsxs(kl,{path:"/",element:Q.jsx(edr,{children:Q.jsx(g$,{})},2),children:[Q.jsx(kl,{path:"",element:Q.jsx(pms,{}),children:Q.jsxs(kl,{path:"",element:Q.jsx(rbs,{}),children:[Q.jsx(kl,{path:"",element:Q.jsx(T2s,{children:Q.jsx(g$,{})}),children:Q.jsxs(kl,{path:"",element:Q.jsx(ams,{}),children:[Q.jsxs(kl,{path:"",element:Q.jsx(t2r,{}),children:[Q.jsxs(kl,{path:"",element:Q.jsx(Za1,{}),children:[Q.jsx(kl,{index:!0,element:Q.jsx(dR,{replace:!0,to:"flows"})}),Q.jsxs(kl,{path:"assets",children:[Q.jsx(kl,{index:!0,element:Q.jsx(dR,{replace:!0,to:"files"})}),Q.jsx(kl,{path:"files",element:Q.jsx(gs1,{})}),Q.jsx(kl,{path:"knowledge-bases",element:Q.jsx(Ma1,{})})]}),Q.jsx(kl,{path:"flows/",element:Q.jsx(UY,{type:"flows"},"flows")}),Q.jsx(kl,{path:"components/",element:Q.jsx(UY,{type:"components"},"components"),children:Q.jsx(kl,{path:"folder/:folderId",element:Q.jsx(UY,{type:"components"},"components")})}),Q.jsx(kl,{path:"all/",element:Q.jsx(UY,{type:"flows"},"flows"),children:Q.jsx(kl,{path:"folder/:folderId",element:Q.jsx(UY,{type:"flows"},"flows")})}),Q.jsx(kl,{path:"mcp/",element:Q.jsx(UY,{type:"mcp"},"mcp"),children:Q.jsx(kl,{path:"folder/:folderId",element:Q.jsx(UY,{type:"mcp"},"mcp")})})]}),Q.jsxs(kl,{path:"settings",element:Q.jsx(t11,{}),children:[Q.jsx(kl,{index:!0,element:Q.jsx(dR,{replace:!0,to:"general"})}),Q.jsx(kl,{path:"global-variables",element:Q.jsx(b11,{})}),Q.jsx(kl,{path:"mcp-servers",element:Q.jsx(T11,{})}),Q.jsx(kl,{path:"api-keys",element:Q.jsx(c11,{})}),Q.jsx(kl,{path:"general/:scrollId?",element:Q.jsx(M2s,{children:Q.jsx(m11,{})})}),Q.jsx(kl,{path:"shortcuts",element:Q.jsx(A11,{})}),Q.jsx(kl,{path:"messages",element:Q.jsx(w11,{})}),Tgs()]}),oms(),Q.jsx(kl,{path:"account",children:Q.jsx(kl,{path:"delete",element:Q.jsx(Q11,{})})}),Q.jsx(kl,{path:"admin",element:Q.jsx(y2s,{children:Q.jsx(S11,{})})})]}),Q.jsxs(kl,{path:"flow/:id/",children:[Q.jsxs(kl,{path:"",element:Q.jsx(t2r,{}),children:[Q.jsx(kl,{path:"folder/:folderId/",element:Q.jsx(ryr,{})}),Q.jsx(kl,{path:"",element:Q.jsx(ryr,{})})]}),Q.jsx(kl,{path:"view",element:Q.jsx(x11,{})})]})]})}),Q.jsx(kl,{path:"login",element:Q.jsx(KVt,{children:Q.jsx(cs1,{})})}),Q.jsx(kl,{path:"signup",element:Q.jsx(KVt,{children:Q.jsx(E11,{})})}),Q.jsx(kl,{path:"login/admin",element:Q.jsx(KVt,{children:Q.jsx(C11,{})})})]})}),Q.jsx(kl,{path:"*",element:Q.jsx(dR,{replace:!0,to:"/"})})]})]),{basename:void 0});function k11(){const e=c2(t=>t.dark);return $.useEffect(()=>{e?document.getElementById("body").classList.add("dark"):document.getElementById("body").classList.remove("dark")},[e]),Q.jsx($.Suspense,{fallback:Q.jsx(W2n,{}),children:Q.jsx(tro,{router:L11})})}function R11(){return Q.jsx(k11,{})}const N11=ktn.createRoot(document.getElementById("root"));N11.render(Q.jsx(R11,{}));export{Zee as $,sx as A,Xr as B,G11 as C,B11 as D,gxe as E,mt as F,Eo as G,q11 as H,F1 as I,W11 as J,Tho as K,I4o as L,r8t as M,q2o as N,cYs as O,hfo as P,lms as Q,as as R,No as S,Hc as T,rs as U,h5 as V,idi as W,Cg as X,En as Y,z3 as Z,sir as _,So as a,Ql1 as a0,zl1 as a1,Mi1 as a2,U11 as a3,vz as a4,fx as a5,F11 as a6,X11 as a7,ee as a8,fl1 as a9,pl1 as aa,L$ as b,pt as c,p0e as d,w$e as e,o$ as f,Yo as g,pxe as h,v2e as i,Q as j,Kn as k,mGe as l,ffo as m,qUe as n,$11 as o,V11 as p,hvi as q,$ as r,jw as s,Vl1 as t,Di as u,hhn as v,pfo as w,I11 as x,H11 as y,j11 as z};
15232
+ }`,Y="https://docs.langflow.org/mcp-server#connect-clients-to-use-the-servers-actions",ie="https://docs.langflow.org/mcp-server",te=$.useCallback(()=>{navigator.clipboard.writeText(Z).then(()=>{l(!0),setTimeout(()=>{l(!1)},1e3)}).catch(ve=>console.error("Failed to copy text: ",ve))},[Z]),ce=$.useCallback(()=>{p(!0),ZAr(`MCP Server ${e}`).then(ve=>{d(ve.api_key)}).catch(()=>{}).finally(()=>{p(!1)})},[e]),[pe,se]=$.useState([]),de=(S==null?void 0:S.auth_type)&&S.auth_type!=="none";return Q.jsxs("div",{children:[Q.jsx("div",{className:"flex justify-between gap-4 items-start",children:Q.jsxs("div",{children:[Q.jsx("div",{className:"pb-2 font-medium","data-testid":"mcp-server-title",children:"MCP Server"}),Q.jsxs("div",{className:"pb-4 text-mmd text-muted-foreground",children:["Access your Project's flows as Tools within a MCP Server. Learn more in our",Q.jsxs("a",{className:"text-accent-pink-foreground",href:ie,target:"_blank",rel:"noreferrer",children:[" ","Projects as MCP Servers guide."]})]})]})}),Q.jsxs("div",{className:"flex flex-col justify-between gap-8 xl:flex-row",children:[Q.jsxs("div",{className:"w-full xl:w-2/5",children:[Q.jsx("div",{className:"flex flex-row justify-between pt-1",children:Q.jsx(No,{content:"Flows in this project can be exposed as callable MCP tools.",side:"right",children:Q.jsxs("div",{className:"flex items-center text-mmd font-medium hover:cursor-help",children:["Flows/Tools",Q.jsx(mt,{name:"info",className:"ml-1.5 h-4 w-4 text-muted-foreground","aria-hidden":"true"})]})})}),Q.jsx("div",{className:"flex flex-row flex-wrap gap-2 pt-2",children:Q.jsx(I5i,{value:j,title:"MCP Server Tools",description:"Select tools to add to this server",handleOnNewValue:V,id:"mcp-server-tools",button_description:"Edit Tools",editNode:!1,isAction:!0,disabled:!1})})]}),Q.jsxs("div",{className:"flex flex-1 flex-col gap-4 overflow-hidden",children:[Q.jsxs("div",{className:"flex justify-between",children:[Q.jsxs("span",{className:"flex gap-2 items-center",children:["Auth:",de?Q.jsxs("span",{className:"text-accent-emerald-foreground flex gap-2 text-mmd items-center",children:[Q.jsx(mt,{name:"Check",className:"h-4 w-4 shrink-0"}),((ge=wfi[S.auth_type])==null?void 0:ge.label)||S.auth_type]}):Q.jsxs("span",{className:"text-accent-amber-foreground flex gap-2 text-mmd items-center",children:[Q.jsx(mt,{name:"AlertTriangle",className:"h-4 w-4 shrink-0"}),"None (public)"]})]}),Q.jsxs(Kn,{variant:"outline",size:"sm",onClick:()=>m(!0),children:[Q.jsx(mt,{name:"Fingerprint",className:"h-4 w-4 shrink-0"}),de?"Edit Auth":"Add Auth"]})]}),Q.jsx("div",{className:pt("flex flex-col",!1),children:Q.jsx("div",{className:"flex flex-row justify-start border-b border-border",children:[{name:"Auto install"},{name:"JSON"}].map(ve=>Q.jsx(Kn,{unstyled:!0,className:`flex h-6 flex-row items-end gap-2 text-nowrap border-b-2 border-border border-b-transparent !py-1 font-medium ${D===ve.name?"border-b-2 border-black dark:border-b-white":"text-muted-foreground hover:text-foreground"} px-3 py-2 text-[13px]`,onClick:()=>q(ve.name),children:Q.jsx("span",{children:ve.name})},ve.name))})}),D==="JSON"&&Q.jsxs(Q.Fragment,{children:[Q.jsxs("div",{className:"flex flex-col gap-4",children:[Q.jsx(XGe,{value:k,onValueChange:E,children:Q.jsx(a2e,{children:iyr.map(ve=>Q.jsxs(NR,{className:"flex items-center gap-2",value:ve.name,children:[Q.jsx(mt,{name:ve.icon,"aria-hidden":"true"}),ve.title]},ve.name))})}),Q.jsx("div",{className:"overflow-hidden rounded-lg border border-border",children:Q.jsx(r6i,{style:F,CodeTag:({children:ve})=>Q.jsx(Ivi,{isCopied:a,copyToClipboard:te,isAuthApiKey:R,apiKey:u,isGeneratingApiKey:f,generateApiKey:ce,children:ve}),language:"json",children:Z})})]}),Q.jsxs("div",{className:"px-2 text-mmd text-muted-foreground",children:["Add this config to your client of choice. Need help? See the"," ",Q.jsx("a",{href:Y,target:"_blank",rel:"noreferrer",className:"text-accent-pink-foreground",children:"setup guide"}),"."]})]}),D==="Auto install"&&Q.jsxs("div",{className:"flex flex-col gap-1",children:[!P&&Q.jsx("div",{className:"mb-2 rounded-md bg-amber-50 px-3 py-2 text-sm text-amber-800 dark:bg-amber-950 dark:text-amber-200",children:Q.jsxs("div",{className:"flex items-center gap-3",children:[Q.jsx(mt,{name:"AlertTriangle",className:"h-4 w-4 shrink-0"}),Q.jsx("span",{children:"One-click install is disabled because the Langflow server is not running on your local machine. Use the JSON tab to configure your client manually."})]})}),js1.map(ve=>Q.jsxs(Kn,{variant:"ghost",className:"group flex items-center justify-between disabled:text-foreground disabled:opacity-50",disabled:pe.includes(ve.name)||!P,onClick:()=>{se([...pe,ve.name]),C({client:ve.name},{onSuccess:()=>{v({title:`MCP Server installed successfully on ${ve.title}. You may need to restart your client to see the changes.`}),se(pe.filter(we=>we!==ve.name))},onError:we=>{y({title:`Failed to install MCP Server on ${ve.title}`,list:[we.message]}),se(pe.filter(Ie=>Ie!==ve.name))}})},children:[Q.jsxs("div",{className:"flex items-center gap-4 text-sm font-medium",children:[Q.jsx(mt,{name:ve.icon,className:pt("h-5 w-5"),"aria-hidden":"true"}),ve.title]}),Q.jsxs("div",{className:"relative h-4 w-4",children:[Q.jsx(mt,{name:L!=null&&L.includes(ve.name)?"Check":pe.includes(ve.name)?"Loader2":"Plus",className:pt("h-4 w-4 absolute top-0 left-0 opacity-100",pe.includes(ve.name)&&"animate-spin",(L==null?void 0:L.includes(ve.name))&&"group-hover:opacity-0")}),(L==null?void 0:L.includes(ve.name))&&Q.jsx(mt,{name:"RefreshCw",className:pt("h-4 w-4 absolute top-0 left-0 opacity-0 group-hover:opacity-100")})]})]},ve.name))]})]})]}),Q.jsx(Is1,{open:g,setOpen:m,authSettings:S,autoInstall:P,onSave:B,installedClients:L??[]})]})},Fs1=({folderName:e})=>Q.jsx(qs1,{folderName:e}),Hs1=e=>{const{mutate:t}=rs();return t(["useGetDownloadFlowsV2"],async s=>{if(!s)return;let a;if(s.ids.length===1){a=await So.get(`${Yo("FLOWS")}/${s.ids[0]}`);const l=[a.data],{flows:u}=cde(l),d=u[0];d&&g5t(d,d.name,d.description)}else{if(a=await fetch(`${Yo("FLOWS",{mode:"download/"})}`,{method:"POST",body:JSON.stringify(s.ids),headers:{"Content-Type":"application/json",Accept:"application/x-zip-compressed"}}),!a.ok)throw new Error(`Failed to download flows: ${a.statusText}`);const l=await a.blob(),u=URL.createObjectURL(l),d=a.headers.get("Content-Disposition");let f="flows.zip";if(d){const g=d.match(/filename=(.+)/);g&&g[1]&&(f=g[1].replace(/["']/g,""))}const p=document.createElement("a");return p.href=u,p.setAttribute("download",f),document.body.appendChild(p),p.click(),document.body.removeChild(p),URL.revokeObjectURL(u),{}}},e)},Bs1=({folderName:e="",flowType:t,setFlowType:n,view:i,setView:s,setNewProjectModal:a,setSearch:l,isEmptyFolder:u,selectedFlows:d})=>{const[f,p]=$.useState(""),g=Ffo,m=Di(E=>E.setSuccessData),v=$.useCallback(Eo.debounce(E=>{l(E)},1e3),[l]),{mutate:y,isPending:T}=Hs1(),{mutate:_,isPending:O}=Bdi();$.useEffect(()=>(v(f),()=>{v.cancel()}),[f,v]),$.useEffect(()=>{t==="components"&&g&&n("flows")},[t,g,n]);const S=E=>{p(E.target.value)},C=["mcp","flows"],L=()=>{y({ids:d}),m({title:"Flows downloaded successfully"})},k=()=>{_({flow_ids:d},{onSuccess:()=>{m({title:"Flows deleted successfully"})}})};return Q.jsxs(Q.Fragment,{children:[Q.jsxs("div",{className:"flex items-center pb-4 text-sm font-medium","data-testid":"mainpage_title",children:[Q.jsx("div",{className:"h-7 w-10 transition-all group-data-[open=true]/sidebar-wrapper:md:w-0 lg:hidden",children:Q.jsx("div",{className:"relative left-0 opacity-100 transition-all group-data-[open=true]/sidebar-wrapper:md:opacity-0",children:Q.jsx(t2e,{children:Q.jsx(mt,{name:"PanelLeftOpen","aria-hidden":"true",className:""})})})}),e]}),!u&&Q.jsxs(Q.Fragment,{children:[Q.jsxs("div",{className:pt("flex flex-row-reverse pb-4"),children:[Q.jsx("div",{className:"w-full border-b dark:border-border"}),C.map(E=>Q.jsx(Kn,{unstyled:!0,id:`${E}-btn`,"data-testid":`${E}-btn`,onClick:()=>{n(E)},className:`border-b ${t===E?"border-b-2 border-foreground text-foreground":"border-border text-muted-foreground hover:text-foreground"} text-nowrap px-2 pb-2 pt-1 text-mmd`,children:Q.jsx("div",{className:t===E?"-mb-px":"",children:E==="mcp"?"MCP Server":E.charAt(0).toUpperCase()+E.slice(1)})},E))]}),t!=="mcp"&&Q.jsxs("div",{className:"flex justify-between",children:[Q.jsxs("div",{className:"flex w-full xl:w-5/12",children:[Q.jsx(F1,{icon:"Search","data-testid":"search-store-input",type:"text",placeholder:`Search ${t}...`,className:"mr-2 !text-mmd",inputClassName:"!text-mmd",value:f,onChange:S}),Q.jsxs("div",{className:"relative mr-2 flex h-fit rounded-lg border border-muted bg-muted",children:[Q.jsx("div",{className:`absolute top-[2px] h-[32px] w-8 transform rounded-md bg-background shadow-md transition-transform duration-300 ${i==="list"?"left-[2px] translate-x-0":"left-[6px] translate-x-full"}`}),["list","grid"].map(E=>Q.jsx(Kn,{unstyled:!0,size:"icon",className:`group relative z-10 m-[2px] flex-1 rounded-lg p-2 ${i===E?"text-foreground":"text-muted-foreground hover:bg-muted"}`,onClick:()=>s(E),children:Q.jsx(mt,{name:E==="list"?"Menu":"LayoutGrid","aria-hidden":"true",className:"h-4 w-4 group-hover:text-foreground"})},E))]})]}),Q.jsxs("div",{className:"flex items-center",children:[Q.jsxs("div",{className:pt("flex w-0 items-center gap-2 overflow-hidden opacity-0 transition-all duration-300",d.length>0&&"w-36 opacity-100"),children:[Q.jsx(Kn,{variant:"outline",size:"iconMd",className:"h-8 w-8","data-testid":"download-bulk-btn",onClick:L,loading:T,children:Q.jsx(mt,{name:"Download"})}),Q.jsx(_V,{onConfirm:k,description:"flow"+(d.length>1?"s":""),note:"and "+(d.length>1?"their":"its")+" message history",children:Q.jsxs(Kn,{variant:"destructive",size:"iconMd",className:"px-2.5 !text-mmd","data-testid":"delete-bulk-btn",loading:O,children:[Q.jsx(mt,{name:"Trash2"}),"Delete"]})})]}),Q.jsx(No,{content:"New Flow",side:"bottom",children:Q.jsxs(Kn,{variant:"default",size:"iconMd",className:"z-50 px-2.5 !text-mmd",onClick:()=>a(!0),id:"new-project-btn","data-testid":"new-project-btn",children:[Q.jsx(mt,{name:"Plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{className:"hidden whitespace-nowrap font-semibold md:inline",children:"New Flow"})]})})]})]})]})]})};function Ws1({data:e}){return Q.jsx(Q.Fragment,{children:Q.jsx(hV,{draggable:!0,className:pt("group relative flex flex-col justify-between overflow-hidden transition-all hover:bg-muted/50 hover:shadow-md hover:dark:bg-[#ffffff10]"),children:Q.jsx("div",{children:Q.jsx(jte,{children:Q.jsx("div",{children:Q.jsxs(Gde,{className:"flex w-full items-start justify-between gap-3 text-xl",children:[Q.jsx(mt,{className:pt("visible flex-shrink-0",e.is_component?"mx-0.5 h-6 w-6 text-component-icon":"h-7 w-7 flex-shrink-0 text-flow-icon"),name:e.is_component?"ToyBrick":"Group"}),Q.jsx("div",{className:"w-full truncate pr-3",children:e.name})]})})})})})})}const $s1=e=>{const t=as(i=>i.getFlowById);return{onDragStart:$.useCallback(i=>{const s=Q.jsx(Ws1,{data:e}),a=document.createElement("div");a.style.transform="translate(-10000px, -10000px)",a.style.position="absolute",document.body.appendChild(a),i.dataTransfer.setDragImage(a,0,0),NMr(a).render(s),t(e.id)&&i.dataTransfer.setData("flow",JSON.stringify(e))},[e])}};function Vs1({open:e,setOpen:t,flowData:n}){return e?Q.jsxs(Xr,{open:e,setOpen:t,size:"small-update",className:"p-4",children:[Q.jsx(Xr.Header,{children:Q.jsx("span",{className:"text-base font-semibold",children:"Flow Details"})}),Q.jsx(Xr.Content,{children:Q.jsx(sdi,{flowData:n,close:()=>t(!1),open:e})})]}):Q.jsx(Q.Fragment,{})}const Us1=(e,t)=>$.useMemo(()=>{const i=a=>({all:"item",component:"component",flow:"flow"})[a]||"",s=a=>({all:"items",component:"components",flow:"flows"})[a]||"";return(e==null?void 0:e.length)===1?i(t):s(t)},[e,t]),Gs1=e=>{const t=g6(i=>i.types);return{getIcon:async()=>{var i,s,a,l,u,d;if(e.is_component&&((i=e.data)==null?void 0:i.nodes[0].type)==="genericNode"){const f=(s=e.data)==null?void 0:s.nodes[0].data.type,p=!!((l=(a=e.data)==null?void 0:a.nodes[0].data.node)!=null&&l.flow),g=(d=(u=e.data)==null?void 0:u.nodes[0].data.node)==null?void 0:d.icon,m=await $ti(f)?f:t[f];return g||(p?"group_components":m)}else return e.icon??"Workflow"}}},Xs1=e=>{if(!e)return"";const t=new Date(e),i=Math.abs(new Date().getTime()-t.getTime()),s=Math.floor(i/(1e3*60)),a=Math.floor(s/60),l=Math.floor(a/24),u=Math.floor(l/30),d=Math.floor(u/12);return d>0?d===1?`${d} year`:`${d} years`:u>0?u===1?`${u} month`:`${u} months`:l>0?l===1?`${l} day`:`${l} days`:a>0?a===1?`${a} hour`:`${a} hours`:s>0?s===1?`${s} minute`:`${s} minutes`:"less than a minute"},Ks1=(e,t,n,i,s,a)=>({handleSelectOptionsChange:$.useCallback(u=>{if(!((e==null?void 0:e.length)>0)){t({title:"No items selected",list:["Please select items to delete"]});return}u==="delete"?n(!0):u==="duplicate"?s():u==="export"?i():u==="edit"&&a()},[e,t,n,s,a,i])}),Ys1=({flowData:e,setOpenDelete:t,handleExport:n,handleEdit:i})=>{const s=Di(f=>f.setSuccessData),a=Di(f=>f.setErrorData),{handleDuplicate:l}=gvi({flow:e}),u=()=>{l().then(()=>s({title:`${e.is_component?"Component":"Flow"} duplicated successfully`}))},{handleSelectOptionsChange:d}=Ks1([e.id],a,t,n,u,i);return Q.jsxs(Q.Fragment,{children:[Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),d("edit")},className:"cursor-pointer","data-testid":"btn-edit-flow",children:[Q.jsx(mt,{name:"SquarePen","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Edit details"]}),Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),d("export")},className:"cursor-pointer","data-testid":"btn-download-json",children:[Q.jsx(mt,{name:"Download","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Export"]}),Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),d("duplicate")},className:"cursor-pointer","data-testid":"btn-duplicate-flow",children:[Q.jsx(mt,{name:"CopyPlus","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Duplicate"]}),Q.jsxs(i5,{onClick:f=>{f.stopPropagation(),t(!0)},className:"cursor-pointer text-destructive","data-testid":"btn_delete_dropdown_menu",children:[Q.jsx(mt,{name:"Trash2","aria-hidden":"true",className:"mr-2 h-4 w-4"}),"Delete"]})]})},oyr=({flowData:e,selected:t,setSelected:n,shiftPressed:i})=>{const s=Cg(),[a,l]=$.useState(!1),u=Di(q=>q.setSuccessData),{deleteFlow:d}=fhn(),f=Di(q=>q.setErrorData),{folderId:p}=h5(),[g,m]=$.useState(!1),[v,y]=$.useState(!1),T=e.is_component??!1,{getIcon:_}=Gs1(e),O=`/flow/${e.id}${p?`/folder/${p}`:""}`,S=async()=>{i?n(!t):T||s(O)},C=()=>{d({id:[e.id]}).then(()=>{u({title:"Selected items deleted successfully"})}).catch(()=>{f({title:"Error deleting items",list:["Please try again"]})})},{onDragStart:L}=$s1(e),k=Us1([e==null?void 0:e.id],e.is_component?"component":"flow"),E=(e.gradient&&!isNaN(parseInt(e.gradient))?parseInt(e.gradient):j7t(e.gradient??e.id))%b$.length,R=()=>{e.is_component?(g5t(e,e.name,e.description),u({title:`${e.name} exported successfully`})):y(!0)},[P,D]=$.useState("");return $.useEffect(()=>{_().then(D)},[_]),Q.jsxs(Q.Fragment,{children:[Q.jsxs(hV,{draggable:!0,onDragStart:L,onClick:S,className:`flex flex-row bg-background ${T?"cursor-default":"cursor-pointer"} group justify-between rounded-lg border-none px-4 py-3 shadow-none hover:bg-muted`,"data-testid":"list-card",children:[Q.jsxs("div",{className:`flex min-w-0 ${T?"cursor-default":"cursor-pointer"} items-center gap-4`,children:[Q.jsxs("div",{className:"group/checkbox relative flex items-center",children:[Q.jsx("div",{className:pt("z-20 flex w-0 items-center transition-all duration-300",t&&"w-10"),children:Q.jsx(v2e,{checked:t,onCheckedChange:q=>n(q),onClick:q=>q.stopPropagation(),className:pt("ml-2 transition-opacity focus-visible:ring-0",!t&&"opacity-0 group-hover/checkbox:opacity-100"),"data-testid":`checkbox-${e.id}`})}),Q.jsx("div",{className:pt("item-center flex justify-center rounded-lg p-1.5 transition-opacity duration-200",b$[E],t?"duration-300":"group-hover/checkbox:pointer-events-none group-hover/checkbox:opacity-0"),children:Q.jsx(mt,{name:(e==null?void 0:e.icon)||P,"aria-hidden":"true",className:"flex h-5 w-5 items-center justify-center"})})]}),Q.jsx("div",{className:"flex min-w-0 flex-col justify-start",children:Q.jsxs("div",{className:"flex min-w-0 flex-wrap items-baseline gap-x-2 gap-y-1",children:[Q.jsx("div",{className:"flex min-w-0 flex-shrink truncate text-sm font-semibold","data-testid":"flow-name-div",children:Q.jsx("span",{className:"truncate","data-testid":`flow-name-${e.id}`,children:e.name})}),Q.jsx("div",{className:"flex min-w-0 flex-shrink text-xs text-muted-foreground",children:Q.jsxs("span",{className:"truncate",children:["Edited ",Xs1(e.updated_at)," ago"]})})]})})]}),Q.jsx("div",{className:"ml-5 flex items-center gap-2",children:Q.jsxs(QN,{children:[Q.jsx(zN,{asChild:!0,children:Q.jsx(Kn,{variant:"ghost",size:"iconMd","data-testid":"home-dropdown-menu",className:"group",children:Q.jsx(mt,{name:"Ellipsis","aria-hidden":"true",className:"h-5 w-5 text-muted-foreground group-hover:text-foreground"})})}),Q.jsx(zz,{className:"w-[185px]",sideOffset:5,side:"bottom",children:Q.jsx(Ys1,{flowData:e,setOpenDelete:l,handleExport:R,handleEdit:()=>{m(!0)}})})]})})]},e.id),a&&Q.jsx(_V,{open:a,setOpen:l,onConfirm:C,description:k,note:e.is_component?"":"and its message history"}),Q.jsx(c3n,{open:v,setOpen:y,flowData:e}),Q.jsx(Vs1,{open:g,setOpen:m,flowData:e})]})},ipt=()=>Q.jsxs("div",{className:"flex flex-row justify-between rounded-lg bg-background px-4 py-3",children:[Q.jsxs("div",{className:"flex min-w-0 items-center gap-4",children:[Q.jsx("div",{className:"flex h-[32px] w-[32px] items-center justify-center rounded-lg",children:Q.jsx(l6,{className:"h-full w-full rounded-lg"})}),Q.jsxs("div",{className:"flex min-w-0 flex-col justify-start gap-[7px]",children:[Q.jsxs("div",{className:"flex min-w-0 items-baseline max-md:flex-col",children:[Q.jsx(l6,{className:"h-4 w-[150px]"}),Q.jsx(l6,{className:"ml-2 h-4 w-[180px]"})]}),Q.jsx(l6,{className:"h-4 w-[250px]"})]})]}),Q.jsx("div",{className:"ml-5 flex items-center gap-2",children:Q.jsx(l6,{className:"h-6 w-6 rounded-md"})})]}),Zs1=""+new URL("temp-pat-1-BDqu2wpz.png",import.meta.url).href,Js1=""+new URL("temp-pat-2-C_RVvOE_.png",import.meta.url).href,ea1=""+new URL("temp-pat-3-Ci-rp5-q.png",import.meta.url).href,ta1=""+new URL("temp-pat-m-1-D-qJT-j4.png",import.meta.url).href,na1=""+new URL("temp-pat-m-2-BFhrICvh.png",import.meta.url).href,ra1=""+new URL("temp-pat-m-3-BJIIbDxb.png",import.meta.url).href;function ia1({bgImage:e,bgHorizontalImage:t,icon:n,category:i,flow:s}){const a=qte(),l=Cg(),{folderId:u}=h5(),d=ih(m=>m.myCollectionId),f=u??d,p=()=>{s?(Qte(s.data),a({flow:s}).then(m=>{l(`/flow/${m}/folder/${f}`)}),z3("New Flow Created",{template:`${s.name} Template`})):console.error("Flow template not found")},g=m=>{(m.key==="Enter"||m.key===" ")&&(m.preventDefault(),p())};return s?Q.jsxs("div",{className:"group relative flex h-full min-h-[200px] w-full cursor-pointer flex-col overflow-hidden rounded-3xl border focus-visible:border-ring md:min-h-[250px]",tabIndex:1,onKeyDown:g,onClick:p,children:[Q.jsxs("div",{className:"absolute inset-2 h-[calc(100%-16px)] w-[calc(100%-16px)] overflow-hidden rounded-2xl",children:[Q.jsx("img",{src:e,alt:`${s.name} Spiral`,className:"hidden h-full w-full object-cover transition-all duration-300 group-hover:scale-[102%] group-focus-visible:scale-[102%] lg:block"}),Q.jsx("img",{src:t,alt:`${s.name} Horizontal`,className:"block h-full w-full object-cover transition-all duration-300 group-hover:scale-[102%] group-focus-visible:scale-[102%] lg:hidden"})]}),Q.jsxs("div",{className:"card-shine-effect absolute inset-2 flex h-[calc(100%-16px)] min-w-[calc(100%-16px)] flex-col items-start gap-1 rounded-2xl p-4 text-white md:gap-3 lg:gap-4 lg:py-6",children:[Q.jsxs("div",{className:"flex items-center gap-2 text-zinc-400 mix-blend-plus-lighter",children:[Q.jsx(mt,{name:n,className:"h-4 w-4"}),Q.jsx("span",{className:"font-mono text-xs font-semibold uppercase tracking-wider",children:i})]}),Q.jsxs("div",{className:"flex w-full items-center justify-between",children:[Q.jsx("h3",{className:"line-clamp-3 text-lg font-bold lg:text-xl",children:s.name}),Q.jsx(mt,{name:"ArrowRight",className:"mr-3 h-5 w-5 shrink-0 translate-x-0 opacity-0 transition-all duration-300 group-hover:translate-x-3 group-hover:opacity-100 group-focus-visible:translate-x-3 group-focus-visible:opacity-100"})]}),Q.jsx("p",{className:"line-clamp-3 w-full overflow-hidden text-sm font-medium opacity-90",children:s.description})]})]}):Q.jsx(Q.Fragment,{})}function oa1(){const e=as(n=>n.examples),t=[{bgImage:Zs1,bgHorizontalImage:ta1,icon:"MessagesSquare",category:"prompting",flow:e.find(n=>n.name==="Basic Prompting")},{bgImage:Js1,bgHorizontalImage:na1,icon:"Database",category:"RAG",flow:e.find(n=>n.name==="Vector Store RAG")},{bgImage:ea1,bgHorizontalImage:ra1,icon:"Bot",category:"Agents",flow:e.find(n=>n.name==="Simple Agent")}];return Q.jsxs("div",{className:"flex flex-1 flex-col gap-4 md:gap-8",children:[Q.jsx(Xr.Header,{description:"Start with templates showcasing Langflow's Prompting, RAG, and Agent use cases.",children:"Get started"}),Q.jsx("div",{className:"grid min-h-0 flex-1 grid-cols-1 gap-4 lg:grid-cols-3",children:t.map((n,i)=>Q.jsx(ia1,{...n},i))})]})}function sa1({categories:e,currentTab:t,setCurrentTab:n}){const i=HGe();return Q.jsx(e2e,{collapsible:i?"icon":"none",className:"max-w-[230px]",children:Q.jsxs(n2e,{className:"gap-0 p-2",children:[Q.jsxs("div",{className:pt("relative flex items-center gap-2 px-2 py-3 md:px-4"),"data-testid":"modal-title",children:[Q.jsx(t2e,{className:pt("flex h-8 shrink-0 items-center rounded-md text-lg font-semibold leading-none tracking-tight text-primary outline-none ring-ring transition-[margin,opa] duration-200 ease-linear focus-visible:ring-1 md:hidden [&>svg]:size-4 [&>svg]:shrink-0")}),Q.jsx("div",{className:pt("text-base-semibold flex h-8 shrink-0 items-center rounded-md leading-none tracking-tight text-primary outline-none ring-ring transition-[margin,opa] duration-200 ease-linear focus-visible:ring-1 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0"),children:"Templates"})]}),e.map((s,a)=>Q.jsxs(gV,{children:[Q.jsx(BGe,{className:`${a===0?"hidden":"mb-1 text-sm font-semibold text-muted-foreground"}`,children:s.title}),Q.jsx(mV,{children:Q.jsx(bV,{children:s.items.map(l=>Q.jsx(Fte,{children:Q.jsxs(Sw,{onClick:()=>n(l.id),isActive:t===l.id,"data-testid":`side_nav_options_${l.title.toLowerCase().replace(/\s+/g,"-")}`,tooltip:l.title,children:[Q.jsx(mt,{name:l.icon,className:`h-4 w-4 stroke-2 ${t===l.id?"text-accent-pink-foreground":"text-muted-foreground"}`}),Q.jsx("span",{"data-testid":`category_title_${dee(l.title)}`,children:l.title})]})},l.id))})})]},a))]})})}function aa1({example:e,onClick:t}){const n=(e.gradient&&!isNaN(parseInt(e.gradient))?parseInt(e.gradient):j7t(e.gradient??e.name))%b$.length,i=s=>{(s.key==="Enter"||s.key===" ")&&(s.preventDefault(),t())};return Q.jsxs("div",{"data-testid":`template-${dee(e.name)}`,className:"group flex cursor-pointer gap-3 overflow-hidden rounded-md p-3 hover:bg-muted focus-visible:bg-muted",tabIndex:0,onKeyDown:i,onClick:t,children:[Q.jsx("div",{className:pt("relative h-20 w-20 shrink-0 overflow-hidden rounded-md p-4 outline-none ring-ring",b$[n]),children:Q.jsx(mt,{name:e.icon||"FileText",className:"absolute left-1/2 top-1/2 h-10 w-10 -translate-x-1/2 -translate-y-1/2 duration-300 group-hover:scale-105 group-focus-visible:scale-105"})}),Q.jsx("div",{className:"flex flex-1 flex-col justify-between",children:Q.jsxs("div",{"data-testid":"text_card_container",role:dee(e.name),children:[Q.jsxs("div",{className:"flex w-full items-center",children:[Q.jsx("h3",{className:"line-clamp-3 font-semibold","data-testid":`template_${dee(e.name)}`,children:e.name}),Q.jsx(mt,{name:"ArrowRight",className:"mr-3 h-5 w-5 shrink-0 translate-x-0 opacity-0 transition-all duration-300 group-hover:translate-x-3 group-hover:opacity-100 group-focus-visible:translate-x-3 group-focus-visible:opacity-100"})]}),Q.jsx("p",{className:"mt-2 line-clamp-2 text-sm text-muted-foreground",children:e.description})]})})]})}function la1({examples:e,onCardClick:t}){return Q.jsx(Q.Fragment,{children:Q.jsx("div",{className:"grid grid-cols-1 gap-6 lg:grid-cols-2",children:e.map((n,i)=>Q.jsx(aa1,{example:n,onClick:()=>t(n)},i))})})}function ca1({currentTab:e,categories:t}){const n=as(S=>S.examples).filter(S=>{var C;return((C=S.tags)==null?void 0:C.includes(e??""))||e==="all-templates"}),[i,s]=$.useState(""),[a,l]=$.useState(n),u=qte(),d=Cg(),{folderId:f}=h5(),p=ih(S=>S.myCollectionId),g=$.useRef(null),m=f??p,v=$.useMemo(()=>new px(n,{keys:["name","description"]}),[n]);$.useEffect(()=>{s("")},[e]),$.useEffect(()=>{if(i==="")l(n);else{const S=v.search(i);l(S.map(C=>C.item))}g.current&&(g.current.scrollTop=0)},[i,e]);const y=S=>{Qte(S.data),u({flow:S}).then(C=>{d(`/flow/${C}/folder/${m}`)}),z3("New Flow Created",{template:`${S.name} Template`})},T=()=>{s(""),O.current&&O.current.focus()},_=t.find(S=>S.id===e),O=$.useRef(null);return Q.jsxs("div",{className:"flex flex-1 flex-col gap-6 overflow-hidden",children:[Q.jsxs("div",{className:"relative mx-3 flex-1 grow-0 py-px",children:[Q.jsx(mt,{name:"Search",className:"absolute left-2.5 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground"}),Q.jsx(F1,{type:"search",placeholder:"Search...",icon:"SearchIcon","data-testid":"search-input-template",value:i,onChange:S=>s(S.target.value),ref:O,className:"w-3/4 rounded-lg bg-background lg:w-2/3"})]}),Q.jsx("div",{ref:g,className:"flex flex-1 flex-col gap-6 overflow-auto scrollbar-hide",children:_&&a.length>0?Q.jsx(la1,{examples:a,onCardClick:y}):Q.jsx("div",{className:"flex flex-col items-center justify-center px-4 py-12 text-center",children:Q.jsxs("p",{className:"text-sm text-secondary-foreground",children:["No templates found."," ",Q.jsx("a",{className:"cursor-pointer underline underline-offset-4",onClick:T,children:"Clear your search"})," ","and try a different query."]})})})]})}function ua1({open:e,setOpen:t}){const[n,i]=$.useState("get-started"),s=qte(),a=Cg(),{folderId:l}=h5(),u=[{title:"Templates",items:[{title:"Get started",icon:"SquarePlay",id:"get-started"},{title:"All templates",icon:"LayoutPanelTop",id:"all-templates"}]},{title:"Use Cases",items:[{title:"Assistants",icon:"BotMessageSquare",id:"assistants"},{title:"Classification",icon:"Tags",id:"classification"},{title:"Coding",icon:"TerminalIcon",id:"coding"},{title:"Content Generation",icon:"Newspaper",id:"content-generation"},{title:"Q&A",icon:"Database",id:"q-a"}]},{title:"Methodology",items:[{title:"Prompting",icon:"MessagesSquare",id:"chatbots"},{title:"RAG",icon:"Database",id:"rag"},{title:"Agents",icon:"Bot",id:"agents"}]}];return Q.jsx(Xr,{size:"templates",open:e,setOpen:t,className:"p-0",children:Q.jsx(Xr.Content,{className:"flex flex-col p-0",children:Q.jsx("div",{className:"flex h-full",children:Q.jsxs(Jde,{width:"15rem",defaultOpen:!1,children:[Q.jsx(sa1,{categories:u,currentTab:n,setCurrentTab:i}),Q.jsxs("main",{className:"flex flex-1 flex-col gap-4 overflow-auto p-6 md:gap-8",children:[n==="get-started"?Q.jsx(oa1,{}):Q.jsx(ca1,{currentTab:n,categories:u.flatMap(d=>d.items)}),Q.jsx(Xr.Footer,{children:Q.jsxs("div",{className:"flex w-full flex-col justify-between gap-4 pb-4 sm:flex-row sm:items-center",children:[Q.jsxs("div",{className:"flex flex-col items-start justify-center",children:[Q.jsx("div",{className:"font-semibold",children:"Start from scratch"}),Q.jsx("div",{className:"text-sm text-muted-foreground",children:"Begin with a fresh flow to build from scratch."})]}),Q.jsxs(Kn,{onClick:()=>{s().then(d=>{a(`/flow/${d}${l?`/folder/${l}`:""}`)}),z3("New Flow Created",{})},size:"sm","data-testid":"blank-flow",className:"shrink-0",children:[Q.jsx(mt,{name:"Plus",className:"h-4 w-4 shrink-0"}),"Blank Flow"]})]})})]})]})})})})}const i5n=({openModal:e=!1,setOpenModal:t=()=>{},openDeleteFolderModal:n=!1,setOpenDeleteFolderModal:i=()=>{},handleDeleteFolder:s=()=>{}})=>Q.jsxs(Q.Fragment,{children:[e&&Q.jsx(ua1,{open:e,setOpen:t}),n&&Q.jsx(_V,{open:n,setOpen:i,onConfirm:()=>{s(),i(!1)},description:"folder",note:"and all associated flows and components",children:Q.jsx(Q.Fragment,{})})]}),jvi=e=>{const t=Di(u=>u.setSuccessData),n=Di(u=>u.setErrorData),i=t5n(),s=$.useRef(0),a=1e3;return $.useCallback(u=>{if(u.preventDefault(),u.dataTransfer.types.every(d=>d==="Files")){const d=Date.now();if(d-s.current>=a){s.current=d;const f=Array.from(u.dataTransfer.files);i({files:f,isComponent:e==="components"?!0:e==="flows"?!1:void 0}).then(()=>{t({title:"All files uploaded successfully"})}).catch(p=>{console.error(p),n({title:HOr,list:[p.message]})})}}},[e,i,t,n])},da1=({setOpenModal:e})=>{const t=ih(n=>n.folders);return Q.jsx("div",{className:"m-0 flex w-full justify-center",children:Q.jsxs("div",{className:"absolute top-1/2 flex w-full -translate-y-1/2 flex-col items-center justify-center gap-2",children:[Q.jsx("h3",{className:"pt-5 font-chivo text-2xl font-semibold","data-testid":"mainpage_title",children:(t==null?void 0:t.length)>1?"Empty project":"Start building"}),Q.jsx("p",{className:"pb-5 text-sm text-secondary-foreground",children:"Begin with a template, or start from scratch."}),Q.jsxs(Kn,{variant:"default",onClick:()=>e(!0),id:"new-project-btn","data-testid":"new_project_btn_empty_page",children:[Q.jsx(mt,{name:"plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{className:"whitespace-nowrap font-semibold",children:"New Flow"})]})]})})},UY=({type:e})=>{var ie,te,ce,pe,se,de,fe,ge,ve,we,Ie,ze;const[t,n]=$.useState(()=>{const Ge=localStorage.getItem("view");return Ge==="grid"||Ge==="list"?Ge:"list"}),[i,s]=$.useState(!1),{folderId:a}=h5(),[l,u]=$.useState(1),[d,f]=$.useState(12),[p,g]=$.useState(""),m=Cg(),[v,y]=$.useState(e),T=ih(Ge=>Ge.myCollectionId),_=ih(Ge=>Ge.folders),O=((ie=_.find(Ge=>Ge.id===a))==null?void 0:ie.name)??((te=_[0])==null?void 0:te.name)??"",S=as(Ge=>Ge.flows);$.useEffect(()=>{a&&_&&_.length>0&&(_.find(it=>it.id===a)||(console.error("Invalid folderId, redirecting to /all"),m("/all")))},[a,_,m]);const{data:C,isLoading:L}=bs1({id:a??T,page:l,size:d,is_component:v==="components",is_flow:v==="flows",search:p}),k={flows:((ce=C==null?void 0:C.flows)==null?void 0:ce.items)??[],name:((pe=C==null?void 0:C.folder)==null?void 0:pe.name)??"",description:((se=C==null?void 0:C.folder)==null?void 0:se.description)??"",parent_id:((de=C==null?void 0:C.folder)==null?void 0:de.parent_id)??"",components:((fe=C==null?void 0:C.folder)==null?void 0:fe.components)??[],pagination:{page:((ge=C==null?void 0:C.flows)==null?void 0:ge.page)??1,size:((ve=C==null?void 0:C.flows)==null?void 0:ve.size)??12,total:((we=C==null?void 0:C.flows)==null?void 0:we.total)??0,pages:((Ie=C==null?void 0:C.flows)==null?void 0:Ie.pages)??0}};$.useEffect(()=>{localStorage.setItem("view",t)},[t]);const E=$.useCallback((Ge,it)=>{u(Ge),f(it)},[]),R=$.useCallback(Ge=>{g(Ge),u(1)},[]),P=(S==null?void 0:S.find(Ge=>Ge.folder_id===(a??T)&&Ge.is_component===!1))===void 0,D=jvi(P?void 0:v);$.useEffect(()=>{!P&&(S==null?void 0:S.find(Ge=>Ge.folder_id===(a??T)&&Ge.is_component===(v==="components")))===void 0&&(S==null?void 0:S.find(it=>it.folder_id===(a??T)&&it.is_component===(v==="flows")))!==void 0&&y(v==="flows"?"components":"flows")},[P]);const[q,V]=$.useState([]),[B,j]=$.useState(null),[F,W]=$.useState(!1),[U,Z]=$.useState(!1);$.useEffect(()=>{const Ge=Fe=>{Fe.target instanceof HTMLInputElement||Fe.target instanceof HTMLTextAreaElement||Fe.target instanceof HTMLElement&&Fe.target.isContentEditable||(Fe.key==="Shift"?W(!0):(!kZ&&Fe.key==="Control"||Fe.key==="Meta")&&Z(!0))},it=Fe=>{Fe.target instanceof HTMLInputElement||Fe.target instanceof HTMLTextAreaElement||Fe.target instanceof HTMLElement&&Fe.target.isContentEditable||(Fe.key==="Shift"?W(!1):(!kZ&&Fe.key==="Control"||Fe.key==="Meta")&&Z(!1))},Pe=()=>{W(!1),Z(!1)};return(v==="flows"||v==="components")&&(document.addEventListener("keydown",Ge),document.addEventListener("keyup",it),window.addEventListener("blur",Pe)),()=>{document.removeEventListener("keydown",Ge),document.removeEventListener("keyup",it),window.removeEventListener("blur",Pe),W(!1),Z(!1)}},[v]);const Y=$.useCallback((Ge,it,Pe)=>{if(j(Pe),F&&B!==null){const Fe=k.flows,He=Math.min(B,Pe),gt=Math.max(B,Pe),Se=Fe.slice(He,gt+1).map(We=>We.id);V(Ge?We=>Array.from(new Set([...We,...Se])):We=>We.filter(tt=>!Se.includes(tt)))}else V(Ge?[...q,it]:q.filter(Fe=>Fe!==it))},[q,B,k.flows,F]);return $.useEffect(()=>{V(Ge=>Ge.filter(it=>k.flows.some(Pe=>Pe.id===it)))},[(ze=C==null?void 0:C.flows)==null?void 0:ze.items]),$.useEffect(()=>()=>{W(!1),Z(!1)},[a]),Q.jsxs(n5n,{onFileDrop:v==="mcp"?void 0:D,dragMessage:`Drop your ${P?"flows or components":v} here`,children:[Q.jsx("div",{className:"flex h-full w-full flex-col overflow-y-auto","data-testid":"cards-wrapper",children:Q.jsxs("div",{className:"flex h-full w-full flex-col 3xl:container",children:[LWe,Q.jsx("div",{className:"flex flex-1 flex-col justify-start p-4",children:Q.jsxs("div",{className:"flex h-full flex-col justify-start",children:[Q.jsx(Bs1,{folderName:O,flowType:v,setFlowType:y,view:t,setView:n,setNewProjectModal:s,setSearch:R,isEmptyFolder:P,selectedFlows:q}),P?Q.jsx(da1,{setOpenModal:s}):Q.jsx("div",{className:"flex h-full flex-col",children:L?t==="grid"?Q.jsxs("div",{className:"mt-4 grid grid-cols-1 gap-1 md:grid-cols-2 lg:grid-cols-3",children:[Q.jsx(ipt,{}),Q.jsx(ipt,{})]}):Q.jsxs("div",{className:"mt-4 flex flex-col gap-1",children:[Q.jsx(ipt,{}),Q.jsx(ipt,{})]}):v==="mcp"?Q.jsx(Fs1,{folderName:O}):(v==="flows"||v==="components")&&k&&k.pagination.total>0?t==="grid"?Q.jsx("div",{className:"mt-4 grid grid-cols-1 gap-1 md:grid-cols-2 lg:grid-cols-3",children:k.flows.map((Ge,it)=>Q.jsx(oyr,{flowData:Ge,selected:q.includes(Ge.id),setSelected:Pe=>Y(Pe,Ge.id,it),shiftPressed:F||U},Ge.id))}):Q.jsx("div",{className:"mt-4 flex flex-col gap-1",children:k.flows.map((Ge,it)=>Q.jsx(oyr,{flowData:Ge,selected:q.includes(Ge.id),setSelected:Pe=>Y(Pe,Ge.id,it),shiftPressed:F||U},Ge.id))}):v==="flows"?Q.jsxs("div",{className:"pt-24 text-center text-sm text-secondary-foreground",children:["No flows in this project."," ",Q.jsx("a",{onClick:()=>s(!0),className:"cursor-pointer underline",children:"Create a new flow"}),", or browse the store."]}):Q.jsxs("div",{className:"pt-24 text-center text-sm text-secondary-foreground",children:["No saved or custom components. Learn more about"," ",Q.jsx("a",{href:"https://docs.langflow.org/components-custom-components",target:"_blank",rel:"noreferrer",className:"underline",children:"creating custom components"}),", or browse the store."]})})]})}),(v==="flows"||v==="components")&&!L&&!P&&k.pagination.total>=10&&Q.jsx("div",{className:"flex justify-end px-3 py-4",children:Q.jsx(hhn,{pageIndex:k.pagination.page,pageSize:k.pagination.size,rowsCount:[12,24,48,96],totalRowsCount:k.pagination.total,paginate:E,pages:k.pagination.pages,isComponent:v==="components"})})]})}),Q.jsx(i5n,{openModal:i,setOpenModal:s,openDeleteFolderModal:!1,setOpenDeleteFolderModal:()=>{},handleDeleteFolder:()=>{}})]})},ha1=({isOpen:e,onClose:t,knowledgeBase:n})=>!e||!n?null:Q.jsxs("div",{className:"flex h-full w-80 flex-col border-l bg-background",children:[Q.jsxs("div",{className:"flex items-center justify-between pt-4 px-4",children:[Q.jsx("h3",{className:"font-semibold",children:n.name}),Q.jsx(Kn,{variant:"ghost",size:"iconSm",onClick:t,children:Q.jsx(mt,{name:"X",className:"h-4 w-4"})})]}),Q.jsx("div",{className:"flex-1 overflow-y-auto pt-3",children:Q.jsxs("div",{className:"flex flex-col gap-4",children:[Q.jsx("div",{className:"px-4",children:Q.jsx("div",{className:"text-sm text-muted-foreground",children:"No description available."})}),Q.jsx(l5,{}),Q.jsxs("div",{className:"space-y-2 px-4",children:[Q.jsx("label",{className:"text-sm font-medium",children:"Embedding Provider"}),Q.jsx("div",{className:"flex items-center gap-2",children:Q.jsx("div",{className:"text-sm font-medium text-muted-foreground",children:n.embedding_model||"Unknown"})})]}),Q.jsxs("div",{className:"space-y-3 px-4",children:[Q.jsx("h4",{className:"text-sm font-medium",children:"Source Files"}),Q.jsx("div",{className:"text-sm text-muted-foreground",children:"No source files available."})]}),Q.jsxs("div",{className:"space-y-3 px-4",children:[Q.jsx("h4",{className:"text-sm font-medium",children:"Linked Flows"}),Q.jsx("div",{className:"text-sm text-muted-foreground",children:"No linked flows available."})]})]})})]}),fa1=(e,t)=>{const{mutate:n,queryClient:i}=rs();return n(["useDeleteKnowledgeBase"],async()=>(await So.delete(`${Yo("KNOWLEDGE_BASES")}/${e.kb_name}`)).data,{onSettled:(l,u,d,f)=>{var p;i.invalidateQueries({queryKey:["useGetKnowledgeBases"]}),(p=t==null?void 0:t.onSettled)==null||p.call(t,l,u,d,f)},...t})},pa1=e=>{const{query:t}=rs();return t(["useGetKnowledgeBases"],async()=>(await So.get(`${Yo("KNOWLEDGE_BASES")}/`)).data,{refetchOnWindowFocus:!1,...e})},y4t=e=>new Intl.NumberFormat().format(e),ga1=e=>`${y4t(Math.round(e))}`,ma1=(e,t)=>{const n="text-muted-foreground cursor-pointer select-text group-[.no-select-cells]:cursor-default group-[.no-select-cells]:select-none";return[{headerName:"Name",field:"name",flex:2,headerCheckboxSelection:!0,checkboxSelection:!0,editable:!0,filter:"agTextColumnFilter",cellClass:n,cellRenderer:i=>Q.jsx("div",{className:"flex items-center gap-3 font-medium",children:Q.jsx("div",{className:"flex flex-col",children:Q.jsx("div",{className:"text-sm font-medium",children:i.value})})})},{headerName:"Embedding Model",field:"embedding_provider",flex:1.2,filter:"agTextColumnFilter",editable:!1,cellClass:n,tooltipValueGetter:i=>i.data.embedding_model||"Unknown",valueGetter:i=>i.data.embedding_model||"Unknown"},{headerName:"Size",field:"size",flex:.8,valueFormatter:i=>Fde(i.value),editable:!1,cellClass:n},{headerName:"Words",field:"words",flex:.8,editable:!1,cellClass:n,valueFormatter:i=>y4t(i.value)},{headerName:"Characters",field:"characters",flex:1,editable:!1,cellClass:n,valueFormatter:i=>y4t(i.value)},{headerName:"Chunks",field:"chunks",flex:.7,editable:!1,cellClass:n,valueFormatter:i=>y4t(i.value)},{headerName:"Avg Chunks",field:"avg_chunk_size",flex:1,editable:!1,cellClass:n,valueFormatter:i=>ga1(i.value)},{maxWidth:60,editable:!1,resizable:!1,cellClass:"cursor-default",cellRenderer:i=>{const s=()=>{t&&t(i.data)};return Q.jsx("div",{className:"flex h-full cursor-default items-center justify-center",children:Q.jsx(Kn,{variant:"ghost",size:"iconMd",onClick:s,className:"hover:bg-destructive/10",children:Q.jsx(mt,{name:"Trash2",className:"h-4 w-4 text-destructive"})})})}}]},ba1=({handleCreateKnowledge:e})=>Q.jsxs("div",{className:"flex h-full w-full flex-col items-center justify-center gap-8 pb-8",children:[Q.jsxs("div",{className:"flex flex-col items-center gap-2",children:[Q.jsx("h3",{className:"text-2xl font-semibold",children:"Welcome to Knowledge Bases!"}),Q.jsx("p",{className:"text-lg text-secondary-foreground",children:"Create reusable knowledge bases that your agents can search and reference."})]}),Q.jsx("div",{className:"flex items-center gap-2",children:Q.jsxs(Kn,{onClick:e,className:"!px-3 md:!px-4 md:!pl-3.5",children:[Q.jsx(mt,{name:"Plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{className:"whitespace-nowrap font-semibold",children:"New Knowledge Base template"})]})})]}),va1=e=>{const{mutate:t,queryClient:n}=rs();return t(["useDeleteKnowledgeBases"],async a=>(await So.delete(`${Yo("KNOWLEDGE_BASES")}/`,{data:{kb_names:a.kb_names}})).data,{onSettled:(a,l,u,d)=>{var f;n.invalidateQueries({queryKey:["useGetKnowledgeBases"]}),(f=e==null?void 0:e.onSettled)==null||f.call(e,a,l,u,d)},...e})},ya1=({selectedFiles:e,quantitySelected:t,onDelete:n,onClearSelection:i})=>{const{setSuccessData:s,setErrorData:a}=Di(p=>({setSuccessData:p.setSuccessData,setErrorData:p.setErrorData})),l=va1({onSuccess:p=>{s({title:`${p.deleted_count} Knowledge Base(s) deleted successfully!`}),i()},onError:p=>{var g,m;a({title:"Failed to delete knowledge bases",list:[((m=(g=p==null?void 0:p.response)==null?void 0:g.data)==null?void 0:m.detail)||(p==null?void 0:p.message)||"An unknown error occurred"]}),i()}}),u=()=>{if(n)n();else{const p=e.map(g=>g.id);p.length>0&&!l.isPending&&l.mutate({kb_names:p})}},d=e.length>0,f=t>1?"s":"";return Q.jsx("div",{className:pt("pointer-events-none absolute top-1.5 z-50 flex h-8 w-full transition-opacity",d?"opacity-100":"opacity-0"),children:Q.jsxs("div",{className:pt("ml-12 flex h-full flex-1 items-center justify-between bg-background",d?"pointer-events-auto":"pointer-events-none"),children:[Q.jsxs("span",{className:"text-xs text-muted-foreground",children:[t," selected"]}),Q.jsx("div",{className:"flex items-center gap-2",children:Q.jsx(_V,{onConfirm:u,description:`knowledge base${f}`,children:Q.jsxs(Kn,{variant:"destructive",size:"iconMd",className:"px-2.5 !text-mmd","data-testid":"bulk-delete-kb-btn",children:[Q.jsx(mt,{name:"Trash2"}),"Delete"]})})})]})})},Ta1=({quickFilterText:e,setQuickFilterText:t,selectedFiles:n,setSelectedFiles:i,quantitySelected:s,setQuantitySelected:a,isShiftPressed:l,onRowClick:u})=>{const d=$.useRef(null),{setErrorData:f,setSuccessData:p}=Di(Y=>({setErrorData:Y.setErrorData,setSuccessData:Y.setSuccessData})),g=as(Y=>Y.examples),m=qte(),v=Cg(),{folderId:y}=h5(),T=ih(Y=>Y.myCollectionId),_=y??T,[O,S]=$.useState(!1),[C,L]=$.useState(null),{data:k,isLoading:E,error:R}=pa1(),P=fa1({kb_name:(C==null?void 0:C.id)||""},{onSuccess:()=>{p({title:`Knowledge Base "${C==null?void 0:C.name}" deleted successfully!`}),D()},onError:Y=>{var ie,te;f({title:"Failed to delete knowledge base",list:[((te=(ie=Y==null?void 0:Y.response)==null?void 0:ie.data)==null?void 0:te.detail)||(Y==null?void 0:Y.message)||"An unknown error occurred"]}),D()}});R&&f({title:"Failed to load knowledge bases",list:[(R==null?void 0:R.message)||"An unknown error occurred"]});const D=()=>{L(null),S(!1)},q=Y=>{p({title:"Knowledge Base renamed successfully!"})},V=Y=>{L(Y),S(!0)},B=()=>{C&&!P.isPending&&P.mutate()},j=Y=>{const ie=Y.api.getSelectedRows();i(ie),ie.length>0?a(ie.length):setTimeout(()=>{a(0)},300)},F=async()=>{const Y=g.find(ie=>ie.name==="Knowledge Ingestion");Y&&Y.data&&(Qte(Y.data),m({flow:Y}).then(ie=>{v(`/flow/${ie}/folder/${_}`)}),z3("New Flow Created",{template:`${Y.name} Template`}))},W=()=>{a(0),i([])},U=Y=>{var te;const ie=(te=Y.event)==null?void 0:te.target;ie&&!ie.closest("button")&&u&&u(Y.data)},Z=ma1(q,V);return E||!k||!Array.isArray(k)?Q.jsx("div",{className:"flex h-full w-full items-center justify-center",children:Q.jsx(Xw,{})}):k.length===0?Q.jsx(ba1,{handleCreateKnowledge:F}):Q.jsxs("div",{className:"flex h-full flex-col pb-4",children:[Q.jsxs("div",{className:"flex justify-between",children:[Q.jsx("div",{className:"flex w-full xl:w-5/12",children:Q.jsx(F1,{icon:"Search","data-testid":"search-kb-input",type:"text",placeholder:"Search knowledge bases...",className:"mr-2 w-full",value:e||"",onChange:Y=>t(Y.target.value)})}),Q.jsxs(Kn,{className:"flex items-center gap-2 font-semibold",onClick:F,children:[Q.jsx(mt,{name:"Plus"})," Create knowledge"]})]}),Q.jsx("div",{className:"flex h-full flex-col pt-4",children:Q.jsxs("div",{className:"relative h-full",children:[Q.jsx(Ky,{rowHeight:45,headerHeight:45,cellSelection:!1,tableOptions:{hide_options:!0},suppressRowClickSelection:!l,editable:[{field:"name",onUpdate:q,editableCell:!0}],rowSelection:"multiple",onSelectionChanged:j,onRowClicked:U,columnDefs:Z,rowData:k,className:pt("ag-no-border ag-knowledge-table group w-full",l&&s>0&&"no-select-cells"),pagination:!0,ref:d,quickFilterText:e,gridOptions:{stopEditingWhenCellsLoseFocus:!0,ensureDomOrder:!0,colResizeDefault:"shift"}}),Q.jsx(ya1,{selectedFiles:n,quantitySelected:s,onClearSelection:W})]})}),Q.jsx(_V,{open:O,setOpen:S,onConfirm:B,description:`knowledge base "${(C==null?void 0:C.name)||""}"`,note:"This action cannot be undone",children:Q.jsx(Q.Fragment,{})})]})},Ma1=()=>{const[e,t]=$.useState([]),[n,i]=$.useState(0),[s,a]=$.useState(!1),[l,u]=$.useState(""),[d,f]=$.useState(!1),[p,g]=$.useState(null),m=$.useRef(null);$.useEffect(()=>{const _=S=>{S.key==="Shift"&&a(!0)},O=S=>{S.key==="Shift"&&a(!1)};return window.addEventListener("keydown",_),window.addEventListener("keyup",O),()=>{window.removeEventListener("keydown",_),window.removeEventListener("keyup",O)}},[]),$.useEffect(()=>{const _=O=>{d&&m.current&&!m.current.contains(O.target)&&(O.target.closest(".ag-row")||y())};return d&&document.addEventListener("mousedown",_),()=>{document.removeEventListener("mousedown",_)}},[d]);const v=_=>{d?y():g(_)},y=()=>{f(!1),g(null)},T={quickFilterText:l,setQuickFilterText:u,selectedFiles:e,setSelectedFiles:t,quantitySelected:n,setQuantitySelected:i,isShiftPressed:s,onRowClick:v};return Q.jsxs("div",{className:"flex h-full w-full","data-testid":"cards-wrapper",children:[Q.jsx("div",{className:`flex h-full w-full flex-col overflow-y-auto transition-all duration-200 ${d?"mr-80":""}`,children:Q.jsx("div",{className:"flex h-full w-full flex-col xl:container",children:Q.jsx("div",{className:"flex flex-1 flex-col justify-start px-5 pt-10",children:Q.jsxs("div",{className:"flex h-full flex-col justify-start",children:[Q.jsxs("div",{className:"flex items-center pb-8 text-xl font-semibold","data-testid":"mainpage_title",children:[Q.jsx("div",{className:"h-7 w-10 transition-all group-data-[open=true]/sidebar-wrapper:md:w-0 lg:hidden",children:Q.jsx("div",{className:"relative left-0 opacity-100 transition-all group-data-[open=true]/sidebar-wrapper:md:opacity-0",children:Q.jsx(t2e,{children:Q.jsx(mt,{name:"PanelLeftOpen","aria-hidden":"true"})})})}),"Knowledge"]}),Q.jsx("div",{className:"flex h-full flex-col",children:Q.jsx(Ta1,{...T})})]})})})}),d&&Q.jsx("div",{ref:m,className:"fixed right-0 top-12 z-50 h-[calc(100vh-48px)]",children:Q.jsx(ha1,{isOpen:d,onClose:y,knowledgeBase:p})})]})},wa1=e=>{const{mutate:t,queryClient:n}=rs(),i=ih(u=>u.setFolders),s=ih(u=>u.folders);return t(["useDeleteFolders"],async({folder_id:u})=>(await So.delete(`${Yo("PROJECTS")}/${u}`),i(s.filter(d=>d.id!==u)),u),{...e,onSettled:u=>{n.refetchQueries({queryKey:["useGetFolders",u]})}})},_a1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePatchFolders"],async a=>{const l={name:a.data.name,description:a.data.description,flows_list:a.data.flows??[],components_list:a.data.components??[]};return(await So.patch(`${Yo("PROJECTS")}/${a.folderId}`,l)).data},{...e,onSettled:()=>{n.refetchQueries({queryKey:["useGetFolders"]})}})},Oa1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePostFolders"],async a=>{const l={name:a.data.name,description:a.data.description,flows_list:a.data.flows??[],components_list:a.data.components??[]};return(await So.post(`${Yo("PROJECTS")}/`,l)).data},{...e,onSuccess:()=>n.refetchQueries({queryKey:["useGetFolders"]})})},Aa1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePostUploadFolders"],async a=>(await So.post(`${Yo("PROJECTS")}/upload/`,a.formData)).data,{...e,onSettled:()=>{n.refetchQueries({queryKey:["useGetFolders"]})}})},xa1=()=>({responseType:"blob",headers:{Accept:"application/x-zip-compressed"}}),Sa1=(e,t,n,i)=>{var d,f,p;const s=new Blob([e.data],{type:"application/x-zip-compressed"}),a=window.URL.createObjectURL(s),l=document.createElement("a");l.href=a;const u=((p=(f=(d=e.headers)==null?void 0:d["content-disposition"])==null?void 0:f.split("filename=")[1])==null?void 0:p.replace(/['"]/g,""))??`${n||"flows"}.zip`;l.setAttribute("download",u),document.body.appendChild(l),l.click(),l.remove(),window.URL.revokeObjectURL(a),z3("Project Exported",{})},Ca1=e=>{const{mutate:t}=rs();return t(["useGetDownloadFolders"],async s=>await So.get(`${Yo("PROJECTS")}/download/${s.folderId}`,xa1()),e)},Qa1=e=>{const{mutate:t,queryClient:n}=rs();return t(["usePostUploadFlowToFolder"],async a=>(await So.post(`${Yo("FLOWS")}/upload/?folder_id=${encodeURIComponent(a.folderId)}`,a.flows)).data,{...e,onSettled:a=>{n.refetchQueries({queryKey:["useGetFolders"]}),n.refetchQueries({queryKey:["useGetFolder"]})}})},za1=e=>{const t=ih(T=>T.setFolderDragging),n=ih(T=>T.setFolderIdDragging),i=ih(T=>T.myCollectionId),s=Di(T=>T.setErrorData),a=Ite(),l=as(T=>T.flows),{mutate:u}=Qa1(),d=async(T,_)=>{if(T.dataTransfer.types.some(O=>O==="Files")&&T.dataTransfer.files&&T.dataTransfer.files.length>0){const O=T.dataTransfer.files[0];O.type==="application/json"?y(O,_):s({title:WOr,list:[$Or]})}},f=(T,_)=>{T.preventDefault(),T.dataTransfer.types.some(O=>O==="Files")&&t(!0),n(_)},p=(T,_)=>{T.dataTransfer.types.some(O=>O==="Files")&&t(!0),n(_),T.preventDefault()},g=T=>{T.preventDefault(),T.target===T.currentTarget&&(t(!1),n(""))},m=(T,_)=>{var O,S;if((O=T==null?void 0:T.dataTransfer)!=null&&O.getData("flow")){const C=JSON.parse((S=T==null?void 0:T.dataTransfer)==null?void 0:S.getData("flow"));if(C){v(C.id,_);return}}T.preventDefault(),d(T,_)},v=(T,_)=>{const O=l==null?void 0:l.find(k=>k.id===T);if(!O)throw new Error("Flow not found");const S={...O,folder_id:_},C=l==null?void 0:l.filter(k=>k.folder_id===i),L=rxr(S,C??[]);S.name=L,t(!1),n(""),a(S)},y=(T,_)=>{const O=new FormData;O.append("file",T),t(!1),n(""),u({flows:O,folderId:_})};return{dragOver:f,dragEnter:p,dragLeave:g,onDrop:m}};function syr(){return Q.jsx("div",{className:"flex h-9 w-full shrink-0 animate-pulse cursor-pointer items-center gap-4 rounded-md border bg-background px-2 opacity-100 lg:min-w-full",children:Q.jsx(l6,{className:"h-3 w-[40%]"})})}const Ea1=({userData:e,isGithubStarred:t,isDiscordJoined:n,handleDismissDialog:i})=>{const[s,a]=$.useState(t),[l,u]=$.useState(n),[d,f]=$.useState(!1),p=as(_=>_.flows),{mutate:g}=Ncn(),{mutate:m}=qUe();$.useEffect(()=>{e||g(null)},[e,g]);const v=p&&(p==null?void 0:p.length)>0,y=$.useMemo(()=>{var S,C;let O=0;return(S=e==null?void 0:e.optins)!=null&&S.github_starred&&(O+=33),(C=e==null?void 0:e.optins)!=null&&C.discord_clicked&&(O+=33),v&&(O+=33),O===99?100:Math.min(O,100)},[e==null?void 0:e.optins,v]),T=_=>{const O=(e==null?void 0:e.optins)??{};O[_]=!0,m({user_id:e==null?void 0:e.id,user:{optins:O}},{onSuccess:()=>{g({}),_==="github_starred"?(a(!0),window.open(gbt,"_blank","noopener,noreferrer")):_==="discord_clicked"?(u(!0),window.open(pbt,"_blank","noopener,noreferrer")):_==="dialog_dismissed"&&i()}})};return Q.jsxs("div",{className:"mt-3 h-[10.8rem] w-full",children:[Q.jsxs("div",{className:"mb-2 flex items-center justify-between",children:[Q.jsx("span",{className:"text-sm font-medium","data-testid":"get_started_progress_title",children:y>=100?Q.jsxs(Q.Fragment,{children:[Q.jsx("span",{children:"All Set"})," ",Q.jsx("span",{className:"pl-1",children:" 🎉 "})]}):"Get started"}),Q.jsx("button",{onClick:()=>T("dialog_dismissed"),className:"text-muted-foreground hover:text-foreground","data-testid":"close_get_started_dialog",children:Q.jsx(mt,{name:"X",className:"h-4 w-4"})})]}),Q.jsxs("div",{className:"mb-1 mt-2 flex items-center justify-between gap-3",children:[Q.jsx("div",{className:"h-1 w-full rounded-full bg-muted",children:Q.jsx("div",{className:"h-1 w-[33%] rounded-full bg-accent-pink-foreground",style:{width:`${y}%`}})}),Q.jsxs("span",{className:"text-sm text-muted-foreground","data-testid":"get_started_progress_percentage",children:[y,"%"]})]}),Q.jsxs("div",{className:"mt-2 space-y-1",children:[Q.jsx(Kn,{"data-testid":"github_starred_btn_get_started",unstyled:!0,className:pt("w-full",s&&"pointer-events-none"),onClick:_=>{if(s){_.preventDefault();return}T("github_starred")},children:Q.jsxs("div",{className:pt("flex items-center gap-2 rounded-md px-2 py-[10px] hover:bg-muted",s&&"pointer-events-none"),children:[s?Q.jsx("span",{"data-testid":"github_starred_icon_get_started",children:Q.jsx(mt,{name:"Check",className:"h-4 w-4 text-accent-emerald-foreground"})}):Q.jsx(dde,{className:"h-4 w-4"}),Q.jsx("span",{className:pt("text-sm",s&&"text-muted-foreground line-through"),children:"Star repo for updates"})]})}),Q.jsx(Kn,{"data-testid":"discord_joined_btn_get_started",unstyled:!0,className:pt("w-full",l&&"pointer-events-none"),onClick:_=>{if(l){_.preventDefault();return}T("discord_clicked")},children:Q.jsxs("div",{className:pt("flex items-center gap-2 rounded-md p-2 py-[10px] hover:bg-muted",l&&"pointer-events-none"),children:[l?Q.jsx("span",{"data-testid":"discord_joined_icon_get_started",children:Q.jsx(mt,{name:"Check",className:"h-4 w-4 text-accent-emerald-foreground"})}):Q.jsx(ude,{className:"h-4 w-4 text-[#5865F2]"}),Q.jsx("span",{className:pt("text-sm",l&&"text-muted-foreground line-through"),children:"Join the community"})]})}),Q.jsx(Kn,{unstyled:!0,className:pt("w-full",v&&"pointer-events-none"),onClick:()=>f(!0),children:Q.jsxs("div",{className:pt("flex items-center gap-2 rounded-md p-2 py-[10px] hover:bg-muted",v&&"pointer-events-none text-muted-foreground"),"data-testid":"create_flow_btn_get_started",children:[Q.jsx("span",{"data-testid":"create_flow_icon_get_started",children:Q.jsx(mt,{name:v?"Check":"Plus",className:pt("h-4 w-4 text-primary",v&&"text-accent-emerald-foreground")})}),Q.jsx("span",{className:pt("text-sm",v&&"line-through"),children:"Create a flow"})]})})]}),Q.jsx(i5n,{openModal:d,setOpenModal:f,openDeleteFolderModal:!1,setOpenDeleteFolderModal:()=>{},handleDeleteFolder:()=>{}})]})};function La1({userData:e,isGithubStarred:t,isDiscordJoined:n,handleDismissDialog:i}){return Q.jsx(Ea1,{userData:e,isGithubStarred:t,isDiscordJoined:n,handleDismissDialog:i})}const ka1=({onClick:e,disabled:t,loading:n})=>Q.jsx(No,{content:"Create new project",styleClasses:"z-50",children:Q.jsx(Kn,{variant:"ghost",size:"icon",className:"h-7 w-7 border-0 text-zinc-500 hover:bg-zinc-200 dark:text-zinc-400 dark:hover:bg-zinc-800 dark:hover:text-white",onClick:e,"data-testid":"add-project-button",disabled:t,loading:n,children:Q.jsx(mt,{name:"Plus",className:"h-4 w-4"})})}),Ra1=({onClick:e,disabled:t})=>Q.jsx(No,{content:"Upload a flow",styleClasses:"z-50",children:Q.jsx(Kn,{variant:"ghost",size:"icon",className:"h-7 w-7 border-0 text-zinc-500 hover:bg-zinc-200 dark:text-zinc-400 dark:hover:bg-zinc-800 dark:hover:text-white",onClick:e,"data-testid":"upload-project-button",disabled:t,children:Q.jsx(mt,{name:"Upload",className:"h-4 w-4"})})}),Na1=({handleUploadFlowsToFolder:e,isUpdatingFolder:t,isPending:n,addNewFolder:i})=>{var v,y,T;const s=Wc(_=>_.userData),[a,l]=$.useState((v=s==null?void 0:s.optins)==null?void 0:v.dialog_dismissed),[u,d]=$.useState((y=s==null?void 0:s.optins)==null?void 0:y.github_starred),[f,p]=$.useState((T=s==null?void 0:s.optins)==null?void 0:T.discord_clicked),{mutate:g}=qUe();$.useEffect(()=>{var _,O,S;s&&(l((_=s.optins)==null?void 0:_.dialog_dismissed),d((O=s.optins)==null?void 0:O.github_starred),p((S=s.optins)==null?void 0:S.discord_clicked))},[s]);const m=()=>{l(!0),g({user_id:s==null?void 0:s.id,user:{optins:{...s==null?void 0:s.optins,dialog_dismissed:!0}}})};return Q.jsxs(Q.Fragment,{children:[!a&&s&&Q.jsxs(Q.Fragment,{children:[Q.jsx(La1,{userData:s,isGithubStarred:u??!1,isDiscordJoined:f??!1,handleDismissDialog:m}),Q.jsx("div",{className:"-mx-4 mt-1 w-[280px]",children:Q.jsx("hr",{className:"border-t-1 w-full"})})]}),Q.jsxs("div",{className:"flex shrink-0 items-center justify-between gap-2 pt-2",children:[Q.jsx(t2e,{className:"lg:hidden",children:Q.jsx(mt,{name:"PanelLeftClose",className:"h-4 w-4"})}),Q.jsx("div",{className:"flex-1 text-sm font-medium",children:"Projects"}),Q.jsxs("div",{className:"flex items-center gap-1",children:[Q.jsx(Ra1,{onClick:e,disabled:t}),Q.jsx(ka1,{onClick:i,disabled:t,loading:n})]})]})]})},Da1=({handleEditFolderName:e,item:t,refInput:n,handleKeyDownFn:i,handleKeyDown:s,handleEditNameFolder:a,editFolderName:l,foldersNames:u})=>Q.jsx(Q.Fragment,{children:Q.jsx(F1,{className:"h-6 flex-1 text-xs focus:border-0",onChange:d=>{e(d,t.name)},maxLength:38,ref:n,onKeyDown:d=>{i(d,t),s(d,d.key,"")},autoFocus:!0,onBlur:d=>{var f,p,g,m;if(((f=d.relatedTarget)==null?void 0:f.id)===`options-trigger-${t.name}`){(p=n.current)==null||p.focus();return}((g=n.current)==null?void 0:g.value)!==t.name?a(t):l.edit=!1,(m=n.current)==null||m.blur()},value:u[t.name],id:`input-project-${t.name}`,"data-testid":"input-project"})}),Pa1=(e,t,n,i,s)=>{switch(e){case"delete":n(t);break;case"download":i(t.id);break;case"rename":s(t);break}},Ltn=({name:e,iconName:t})=>Q.jsxs("div",{className:pt(e==="Delete"?"text-destructive":"","flex items-center font-medium"),children:[Q.jsx(mt,{name:t,className:"mr-2 w-4"}),Q.jsx("span",{children:e})]}),Ia1=({item:e,index:t,handleDeleteFolder:n,handleDownloadFolder:i,handleSelectFolderToRename:s,checkPathName:a})=>Q.jsx("div",{children:Q.jsxs(GGe,{onValueChange:l=>Pa1(l,e,n,i,s),value:"",children:[Q.jsx(No,{content:"Options",side:"right",styleClasses:"z-50",children:Q.jsx(s2e,{className:"w-fit",id:`options-trigger-${e.name}`,"data-testid":"more-options-button",children:Q.jsx(mt,{name:"MoreHorizontal",className:pt("w-4 stroke-[1.5] px-0 text-muted-foreground group-hover/menu-button:block group-hover/menu-button:text-foreground",a(e.id)?"block":"hidden")})})}),Q.jsxs(Q8t,{align:"end",alignOffset:-16,position:"popper",children:[e.name!==bcn&&Q.jsx(cf,{id:"rename-button",value:"rename","data-testid":"btn-rename-project",className:"text-xs",children:Q.jsx(Ltn,{name:"Rename",iconName:"SquarePen"})}),Q.jsx(cf,{value:"download","data-testid":"btn-download-project",className:"text-xs",children:Q.jsx(Ltn,{name:"Download",iconName:"Download"})}),t>0&&Q.jsx(cf,{value:"delete","data-testid":"btn-delete-project",className:"text-xs",children:Q.jsx(Ltn,{name:"Delete",iconName:"Trash2"})})]})]})}),ja1=({handleChangeFolder:e,handleDeleteFolder:t,handleFilesClick:n})=>{var tt;const s=eV().pathname,a=ih(st=>st.folders),l=!a,u=$.useRef(null),d=Cg(),f=s.split("/"),p=s.split("/").length<4,g=s.includes("assets"),m=st=>p&&st===O&&!g?!0:f.includes(st),v=Di(st=>st.setErrorData),y=Di(st=>st.setSuccessData),T=HGe({maxWidth:1024}),_=ih(st=>st.folderIdDragging),O=ih(st=>st.myCollectionId),S=as(st=>st.takeSnapshot);h5().folderId;const{dragOver:C,dragEnter:L,dragLeave:k,onDrop:E}=za1(),R=t5n(),[P,D]=$.useState({}),[q,V]=$.useState(a.map(st=>({name:st.name,edit:!1}))??[]),B=!!f5t({queryKey:["useGetFolders"],exact:!1}),{mutate:j}=Ca1({}),{mutate:F,isPending:W}=Oa1(),{mutate:U}=_a1(),{mutate:Z}=Aa1(),Y=st=>{if(st===_)return"bg-accent text-accent-foreground"},ie=!!f5t({queryKey:["useGetFolder"],exact:!1}),te=!!YAr({mutationKey:["useDeleteFolders"]}),ce=B||ie||W||l||te,pe=()=>{rXe().then(st=>{(st==null?void 0:st.length)!==0&&fvi(st).then(bt=>{bt.every(Ht=>{var Vt;return(Vt=Ht.data)==null?void 0:Vt.nodes})?R({files:st}).then(()=>{y({title:"Uploaded successfully"})}):st.forEach(Ht=>{const Vt=new FormData;Vt.append("file",Ht),Z({formData:Vt},{onSuccess:()=>{y({title:"Project uploaded successfully."})},onError:tn=>{console.error(tn),v({title:"Error on uploading your project, try dragging it into an existing project.",list:[tn.response.data.message]})}})})})})},se=(st,bt)=>{j({folderId:st},{onSuccess:Ht=>{Sa1(Ht,st,bt)},onError:Ht=>{v({title:"An error occurred while downloading your project."})}})};function de(){F({data:{name:"New Project",parent_id:null,description:""}},{onSuccess:st=>{z3(),e(st.id)}})}function fe(st,bt){const{target:{value:Ht}}=st;D(Vt=>({...Vt,[bt]:Ht}))}$.useEffect(()=>{a&&a.length>0&&V(a.map(st=>({name:st.name,edit:!1})))},[a]);const ge=async st=>{var Ht,Vt;const bt=q.map(tn=>tn.name===st.name?{name:st.name,edit:!1}:{name:tn.name,edit:!1});if(V(bt),P[st.name].trim()!==""){D(rn=>({...rn,[st.name]:P[st.name]}));const tn={...st,name:P[st.name],flows:((Ht=st.flows)==null?void 0:Ht.length)>0?st.flows:[],components:((Vt=st.components)==null?void 0:Vt.length)>0?st.components:[]};U({data:tn,folderId:st.id},{onSuccess:rn=>{a.findIndex(Ce=>Ce.id===rn.id),[...a],D({}),V(a.map(Ce=>({name:Ce.name,edit:!1})))}})}else D(tn=>({...tn,[st.name]:st.name}))},ve=(st,bt)=>{bt.name!==bcn&&(st.stopPropagation(),st.preventDefault(),we(bt))},we=st=>{var bt;if(P[st.name]||D({[st.name]:st.name}),(bt=q.find(Ht=>Ht.name===st.name))!=null&&bt.name){const Ht=q.map(Vt=>Vt.name===st.name?{name:st.name,edit:!0}:{name:Vt.name,edit:!1});V(Ht),S();return}V(Ht=>[...Ht,{name:st.name,edit:!0}]),D(Ht=>({...Ht,[st.name]:st.name})),S()},Ie=(st,bt)=>{var Ht;if(st.key==="Escape"){const Vt=q.map(tn=>tn.name===bt.name?{name:bt.name,edit:!1}:{name:tn.name,edit:!1});V(Vt),D({}),V(a.map(tn=>({name:tn.name,edit:!1})))}st.key==="Enter"&&((Ht=u.current)==null||Ht.blur())},[ze,Ge]=$.useState(null),it=Wc(st=>st.userData),{mutate:Pe}=qUe(),Fe=(tt=it==null?void 0:it.optins)==null?void 0:tt.mcp_dialog_dismissed,[He,gt]=$.useState(Fe),Se=()=>{d("/assets/files")},We=()=>{d("/assets/knowledge-bases")};return Q.jsxs(e2e,{collapsible:T?"offcanvas":"none","data-testid":"project-sidebar",children:[Q.jsx(T8t,{className:"px-4 py-1",children:Q.jsx(Na1,{handleUploadFlowsToFolder:pe,isUpdatingFolder:ce,isPending:W,addNewFolder:de})}),Q.jsxs(n2e,{children:[Q.jsx(gV,{className:"p-4 py-2",children:Q.jsx(mV,{children:Q.jsx(bV,{children:l?Q.jsxs(Q.Fragment,{children:[Q.jsx(syr,{}),Q.jsx(syr,{})]}):a.map((st,bt)=>{const Ht=q==null?void 0:q.filter(Vt=>Vt.name===st.name)[0];return Q.jsx(Fte,{className:"group/menu-button",onMouseEnter:()=>Ge(st.id),onMouseLeave:()=>Ge(null),children:Q.jsxs("div",{className:"relative flex w-full",children:[Q.jsx(Sw,{size:"md",onDragOver:Vt=>C(Vt,st.id),onDragEnter:Vt=>L(Vt,st.id),onDragLeave:k,onDrop:Vt=>E(Vt,st.id),"data-testid":`sidebar-nav-${st.name}`,id:`sidebar-nav-${st.name}`,isActive:m(st.id),onClick:()=>e(st.id),className:pt("flex-grow pr-8",ze===st.id&&"bg-accent",Y(st.id)),children:Q.jsx("div",{onDoubleClick:Vt=>{ve(Vt,st)},className:"flex w-full items-center justify-between gap-2",children:Q.jsx("div",{className:"flex flex-1 items-center gap-2",children:Ht!=null&&Ht.edit&&!ce?Q.jsx(Da1,{handleEditFolderName:fe,item:st,refInput:u,handleKeyDownFn:Ie,handleEditNameFolder:ge,editFolderName:Ht,foldersNames:P,handleKeyDown:$Q}):Q.jsx("span",{className:"block w-0 grow truncate text-sm opacity-100",children:st.name})})})},st.id),Q.jsx("div",{className:"absolute right-2 top-[0.45rem] flex items-center hover:text-foreground",onClick:Vt=>Vt.stopPropagation(),children:Q.jsx(Ia1,{item:st,index:bt,handleDeleteFolder:t,handleDownloadFolder:()=>se(st.id,st.name),handleSelectFolderToRename:we,checkPathName:m})})]})},bt)})})})}),Q.jsx("div",{className:"flex-1"}),Hfo]}),Q.jsx(vhn,{className:"border-t",children:Q.jsxs("div",{className:"grid w-full items-center gap-2 p-2",children:[LWe," ",Q.jsxs(Sw,{onClick:We,size:"md",className:"text-sm",children:[Q.jsx(mt,{name:"Library",className:"h-4 w-4"}),"Knowledge"]}),Q.jsxs(Sw,{onClick:Se,size:"md",className:"text-sm",children:[Q.jsx(mt,{name:"File",className:"h-4 w-4"}),"My Files"]})]})})]})},qa1=""+new URL("logo_dark-_nccwgMn.png",import.meta.url).href,Fa1=""+new URL("logo_light-DKZjS8CD.png",import.meta.url).href;function Ha1({children:e,className:t,containerClassName:n}){return Q.jsxs("div",{className:pt("relative flex h-full w-full items-center justify-center bg-background",t),children:[Q.jsx("div",{className:pt("absolute inset-0","[background-size:20px_20px]","[background-image:radial-gradient(#d4d4d4_1px,transparent_1px)]","dark:[background-image:radial-gradient(#404040_1px,transparent_1px)]")}),Q.jsx("div",{className:pt("absolute inset-0 bg-gradient-to-b from-background/0 from-0% via-background/50 via-30% to-background to-50%",n)}),e]})}const Ba1="Welcome to Langflow",Wa1="Your new favorite way to ship Agents",$a1="Follow development, star the repo, and shape the future.",Va1="Join builders, ask questions, and show off your agents",Ua1="Already have a flow? Drag and drop to upload.",Ga1="Empty folder",Xa1="Create first flow",ayr="absolute right-6 top-[35px] h-4 w-4 shrink-0 translate-x-0 opacity-0 transition-all duration-300 group-hover:translate-x-1 group-hover:opacity-100",Ka1=({setOpenModal:e})=>{const t=jvi(void 0),n=ih(f=>f.folders),i=Wc(Wy(f=>f.userData)),s=c2(f=>f.stars),a=c2(f=>f.discordCount),{mutate:l}=qUe(),{mutate:u}=Ncn(),d=f=>()=>{const p=(i==null?void 0:i.optins)??{};p[f]=!0,l({user_id:i==null?void 0:i.id,user:{optins:p}},{onSuccess:()=>{u({})}})};return Q.jsx(Ha1,{children:Q.jsxs(n5n,{dragMessage:"Drop your flows or components here",onFileDrop:t,children:[Q.jsx("div",{className:"m-0 h-full w-full bg-background p-0",children:Q.jsxs("div",{className:"z-50 flex h-full w-full flex-col items-center justify-center gap-5",children:[Q.jsxs("div",{className:"z-50 flex flex-col items-center gap-2",children:[Q.jsx("div",{className:"z-50 dark:hidden",children:Q.jsx("img",{src:Fa1,alt:"Langflow Logo Light","data-testid":"empty_page_logo_light",className:"relative top-3"})}),Q.jsx("div",{className:"z-50 hidden dark:block",children:Q.jsx("img",{src:qa1,alt:"Langflow Logo Dark","data-testid":"empty_page_logo_dark",className:"relative top-3"})}),Q.jsx("span",{"data-testid":"mainpage_title",className:"z-50 text-center font-chivo text-2xl font-medium text-foreground",children:Ba1}),Q.jsx("span",{"data-testid":"empty_page_description",className:"z-50 text-center text-base text-secondary-foreground",children:(n==null?void 0:n.length)>1?Ga1:Wa1})]}),Q.jsxs("div",{className:"flex w-full max-w-[510px] flex-col gap-7 sm:gap-[29px]",children:[Q.jsx(Kn,{unstyled:!0,className:"group mx-3 h-[84px] sm:mx-0",onClick:()=>{d("github_starred")(),window.open(gbt,"_blank","noopener,noreferrer")},"data-testid":"empty_page_github_button",children:Q.jsxs("div",{className:"relative flex flex-col rounded-lg border-[1px] bg-background p-4 transition-all duration-300 hover:border-accent-pink-foreground",children:[Q.jsxs("div",{className:"grid w-full items-center justify-between gap-2",children:[Q.jsxs("div",{className:"flex gap-3",children:[Q.jsx(dde,{className:"h-6 w-6"}),Q.jsxs("div",{children:[Q.jsx("span",{className:"font-semibold",children:"GitHub"}),Q.jsx("span",{className:"ml-2 font-mono text-muted-foreground",children:C6t(s)})]})]}),Q.jsx("div",{children:Q.jsx("span",{className:"text-base text-secondary-foreground",children:$a1})})]}),Q.jsx(nee,{className:ayr})]})}),Q.jsx(Kn,{unstyled:!0,className:"group mx-3 h-[84px] sm:mx-0",onClick:()=>{d("discord_clicked")(),window.open(pbt,"_blank","noopener,noreferrer")},"data-testid":"empty_page_discord_button",children:Q.jsxs("div",{className:"relative flex flex-col rounded-lg border-[1px] bg-background p-4 transition-all duration-300 hover:border-discord-color",children:[Q.jsxs("div",{className:"grid w-full items-center justify-between gap-2",children:[Q.jsxs("div",{className:"flex gap-3",children:[Q.jsx(ude,{className:"h-6 w-6 text-discord-color"}),Q.jsxs("div",{children:[Q.jsx("span",{className:"font-semibold",children:"Discord"}),Q.jsx("span",{className:"ml-2 font-mono text-muted-foreground",children:C6t(a)})]})]}),Q.jsx("div",{children:Q.jsx("span",{className:"text-base text-secondary-foreground",children:Va1})})]}),Q.jsx(nee,{className:ayr})]})}),Q.jsxs(Kn,{variant:"default",className:"z-10 m-auto mt-3 h-10 w-full max-w-[10rem] rounded-lg font-bold transition-all duration-300",onClick:()=>e(!0),id:"new-project-btn","data-testid":"new_project_btn_empty_page",children:[Q.jsx(mt,{name:"Plus","aria-hidden":"true",className:"h-4 w-4"}),Q.jsx("span",{children:Xa1})]})]})]})}),Q.jsx("p",{"data-testid":"empty_page_drag_and_drop_text",className:"absolute bottom-5 left-0 right-0 mt-4 cursor-default text-center text-xxs text-muted-foreground",children:Ua1})]})})},Ya1=({setOpenModal:e})=>Q.jsx(Ka1,{setOpenModal:e});function Za1(){const[e,t]=$.useState(!1),[n,i]=$.useState(!1),s=ih(T=>T.setFolderToEdit),a=Cg(),l=as(T=>T.flows),u=as(T=>T.examples),d=Di(T=>T.setSuccessData),f=Di(T=>T.setErrorData),p=ih(T=>T.folderToEdit),g=ih(T=>T.folders),m=Az();$.useEffect(()=>()=>m.removeQueries({queryKey:["useGetFolder"]}),[]);const{mutate:v}=wa1(),y=()=>{v({folder_id:p==null?void 0:p.id},{onSuccess:()=>{d({title:"Project deleted successfully."}),a("/all")},onError:T=>{console.error(T),f({title:"Error deleting project."})}})};return Q.jsxs(Jde,{width:"280px",children:[l&&u&&g&&((l==null?void 0:l.length)!==(u==null?void 0:u.length)||(g==null?void 0:g.length)>1)&&Q.jsx(ja1,{handleChangeFolder:T=>{a(`all/folder/${T}`)},handleDeleteFolder:T=>{s(T),i(!0)},handleFilesClick:()=>{a("assets")}}),Q.jsx("main",{className:"flex h-full w-full overflow-hidden",children:l&&u&&g?Q.jsx("div",{className:"relative mx-auto flex h-full w-full flex-col overflow-hidden",children:(l==null?void 0:l.length)!==(u==null?void 0:u.length)||(g==null?void 0:g.length)>1?Q.jsx(g$,{}):Q.jsx(Ya1,{setOpenModal:t})}):Q.jsx("div",{className:"flex h-full w-full items-center justify-center",children:Q.jsx(hvi,{remSize:30})})}),Q.jsx(i5n,{openModal:e,setOpenModal:t,openDeleteFolderModal:n,setOpenDeleteFolderModal:i,handleDeleteFolder:y})]})}const Ja1=({items:e})=>{const n=eV().pathname,i=HGe();return Q.jsx(e2e,{collapsible:i?"icon":"none",className:"border-none",children:Q.jsx(n2e,{className:"pr-6",children:Q.jsx(gV,{children:Q.jsx(mV,{children:Q.jsx(bV,{children:e.map((s,a)=>Q.jsx(Fte,{children:Q.jsx(fx,{to:s.href,replace:!0,children:Q.jsxs(Sw,{size:"md",isActive:s.href?n.endsWith(s.href):!1,"data-testid":`sidebar-nav-${s.title}`,tooltip:s.title,children:[s.icon,Q.jsx("span",{className:"block max-w-full truncate",children:s.title})]})})},a))})})})})})},e11=(e=!1,t=!1)=>{const n=[];return e&&n.push({title:"Langflow API Keys",href:"/settings/api-keys",icon:Q.jsx(mt,{name:"Key",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})}),t&&n.push({title:"Langflow Store",href:"/settings/store",icon:Q.jsx(mt,{name:"Store",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})}),n};function t11(){Wc(t=>t.autoLogin),vg(t=>t.hasStore);const e=[];e.push({title:"General",href:"/settings/general",icon:Q.jsx(mt,{name:"SlidersHorizontal",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})}),e.push({title:"MCP Servers",href:"/settings/mcp-servers",icon:Q.jsx(mt,{name:"Mcp",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})},{title:"Global Variables",href:"/settings/global-variables",icon:Q.jsx(mt,{name:"Globe",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})},{title:"Shortcuts",href:"/settings/shortcuts",icon:Q.jsx(mt,{name:"Keyboard",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})},{title:"Messages",href:"/settings/messages",icon:Q.jsx(mt,{name:"MessagesSquare",className:"w-4 flex-shrink-0 justify-start stroke-[1.5]"})});{const t=e11(!0,trn);e.splice(2,0,...t)}return Q.jsx(Wdi,{backTo:-1,title:"Settings",description:"Manage the general settings for Langflow.",children:Q.jsxs(Jde,{width:"15rem",defaultOpen:!1,children:[Q.jsx(Ja1,{items:e}),Q.jsx("main",{className:"flex flex-1 overflow-hidden",children:Q.jsx("div",{className:"flex flex-1 flex-col overflow-x-hidden pt-1",children:Q.jsx(g$,{})})})]})})}const n11=({inputLabel:e,inputRef:t,apiKeyValue:n,handleCopyClick:i,textCopied:s,renderKey:a})=>Q.jsx(Q.Fragment,{children:Q.jsxs("div",{className:"flex items-center gap-3",children:[Q.jsxs("div",{className:"w-full",children:[e&&!a&&Q.jsx("div",{className:"relative bottom-1",children:e}),Q.jsx(F1,{"data-testid":"api-key-input",ref:t,readOnly:!0,value:n})]}),Q.jsx(Kn,{onClick:l=>{i(),l.stopPropagation()},"data-testid":"btn-copy-api-key",unstyled:!0,children:s?Q.jsx(mt,{name:"Copy",className:"h-4 w-4"}):Q.jsx(mt,{name:"Check",className:"h-4 w-4"})})]})}),r11=({modalProps:e,apiKeyName:t,inputRef:n,setApiKeyName:i})=>Q.jsxs(L$,{name:"apikey",children:[(e==null?void 0:e.inputLabel)&&Q.jsx(p0e,{asChild:!0,className:"mb-2",children:Q.jsx(S2,{className:"relative bottom-1",children:e==null?void 0:e.inputLabel})}),Q.jsx("div",{className:"flex items-center justify-between gap-2",children:Q.jsx(w$e,{asChild:!0,children:Q.jsx(F1,{id:"primary-input",value:t,ref:n,onChange:({target:{value:s}})=>{i(s)},placeholder:e==null?void 0:e.inputPlaceholder})})})]}),i11=({title:e,showIcon:t})=>Q.jsxs(Q.Fragment,{children:[Q.jsx("span",{className:"pr-2",children:e}),t&&Q.jsx(mt,{name:"Key",className:"h-6 w-6 pl-1 text-foreground","aria-hidden":"true"})]});function o11({children:e,data:t,onCloseModal:n,modalProps:i}){const[s,a]=$.useState(!1),[l,u]=$.useState((t==null?void 0:t.apikeyname)??""),[d,f]=$.useState(""),[p,g]=$.useState(!1),[m,v]=$.useState(!0),y=Di(E=>E.setSuccessData),T=$.useRef(null),_=(i==null?void 0:i.modalProps)??i;$.useEffect(()=>{s?(g(!1),O()):n==null||n()},[s]);function O(){u(""),f("")}const S=async()=>{var E,R;d&&(await navigator.clipboard.writeText(d),(E=T==null?void 0:T.current)==null||E.focus(),(R=T==null?void 0:T.current)==null||R.select(),y({title:Y2o}),v(!1),setTimeout(()=>{v(!0)},3e3))};function C(){ZAr(l).then(E=>{f(E.api_key)}).catch(E=>{})}async function L(){d&&a(!1),k()}const k=()=>{p?a(!1):(g(!0),C())};return Q.jsxs(Xr,{onSubmit:L,size:(i==null?void 0:i.size)??"small-h-full",open:s,setOpen:a,children:[Q.jsx(Xr.Trigger,{asChild:!0,children:e}),Q.jsx(Xr.Header,{clampDescription:3,description:p?Q.jsx(Q.Fragment,{children:_==null?void 0:_.generatedKeyMessage}):Q.jsx(Q.Fragment,{children:_==null?void 0:_.description}),children:Q.jsx(i11,{title:_==null?void 0:_.title,showIcon:_==null?void 0:_.showIcon})}),Q.jsx(Xr.Content,{children:p?Q.jsx(n11,{inputLabel:String((_==null?void 0:_.inputLabel)??""),inputRef:T,apiKeyValue:d,handleCopyClick:S,textCopied:m,renderKey:p}):Q.jsx(r11,{modalProps:_,apiKeyName:l,inputRef:T,setApiKeyName:u})}),Q.jsx(Xr.Footer,{submit:{label:p?"Done":(_==null?void 0:_.buttonText)??""}})]})}const s11=()=>({title:"Create API Key",description:"Create a secret API Key to use Langflow API.",inputPlaceholder:"My API Key",buttonText:"Generate API Key",generatedKeyMessage:Q.jsxs(Q.Fragment,{children:[" ","Please save this secret key somewhere safe and accessible. For security reasons, ",Q.jsx("strong",{children:"you won't be able to view it again"})," through your account. If you lose this secret key, you'll need to generate a new one."]}),showIcon:!0,inputLabel:Q.jsxs(Q.Fragment,{children:[Q.jsx("span",{className:"text-sm",children:"Description"})," ",Q.jsx("span",{className:"text-xs text-muted-foreground",children:"(optional)"})]})}),a11=({selectedRows:e,fetchApiKeys:t,userId:n})=>{const i=s11();return Q.jsx(Q.Fragment,{children:Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Langflow API Keys",Q.jsx(mt,{name:"Key",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:Aho})]}),Q.jsx("div",{className:"flex flex-shrink-0 items-center gap-2",children:Q.jsx(o11,{modalProps:i,data:n,onCloseModal:t,children:Q.jsxs(Kn,{"data-testid":"api-key-button-store",variant:"primary",children:[Q.jsx(mt,{name:"Plus",className:"w-4"}),"Add New"]})})})]})})},l11=()=>[{headerCheckboxSelection:!0,checkboxSelection:!0,showDisabledCheckboxes:!0,headerName:"Name",field:"name",cellRenderer:Zk,flex:2},{headerName:"Key",field:"api_key",cellRenderer:Zk,flex:1},{headerName:"Created",field:"created_at",cellRenderer:Zk,flex:1},{headerName:"Last Used",field:"last_used_at",cellRenderer:Zk,flex:1},{headerName:"Total Uses",field:"total_uses",cellRenderer:Zk,flex:1,resizable:!1}];function c11(){const[e,t]=$.useState([]),n=Di(T=>T.setSuccessData),i=Di(T=>T.setErrorData),{userData:s}=$.useContext(sx),[a,l]=$.useState(""),[u,d]=$.useState([]),{refetch:f}=bgs();async function p(){const{data:T}=await f();if(T!==void 0){const _=T.api_keys.map(O=>({...O,name:O.name&&O.name!==""?O.name:"Untitled",last_used_at:O.last_used_at??"Never"}));d(_),l(T.user_id)}}$.useEffect(()=>{s&&p()},[s]);function g(){p()}const{mutate:m}=mgs();function v(){for(let T=0;T<e.length;T++)m({keyId:e[T]},{onSuccess:()=>{g(),n({title:e.length===1?tho:nho})},onError:_=>{var O,S;i({title:e.length===1?F2o:H2o,list:[(S=(O=_==null?void 0:_.response)==null?void 0:O.data)==null?void 0:S.detail]})}})}const y=l11();return Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between gap-6",children:[Q.jsx(a11,{selectedRows:e,fetchApiKeys:p,userId:a}),Q.jsx("div",{className:"flex h-full w-full flex-col justify-between",children:Q.jsx(Ky,{onDelete:v,overlayNoRowsTemplate:"No data available",onSelectionChanged:T=>{t(T.api.getSelectedRows().map(_=>_.id))},rowSelection:"multiple",suppressRowClickSelection:!0,pagination:!0,columnDefs:y,rowData:u},"apiKeys")})]})}const u11=()=>Q.jsx(Q.Fragment,{}),d11=()=>Q.jsx(Q.Fragment,{children:Q.jsx("div",{className:"flex w-full items-center justify-between gap-4 space-y-0.5",children:Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["General",Q.jsx(mt,{name:"SlidersHorizontal",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage settings related to Langflow and your account."})]})})}),h11=({password:e,cnfPassword:t,handleInput:n,handlePatchPassword:i})=>Q.jsx(Q.Fragment,{children:Q.jsx(Zee,{onSubmit:s=>{i(e,t,n),s.preventDefault()},children:Q.jsxs(hV,{"x-chunk":"dashboard-04-chunk-2",children:[Q.jsxs(jte,{children:[Q.jsx(Gde,{children:"Password"}),Q.jsx(jGe,{children:"Type your new password and confirm it."})]}),Q.jsx(qGe,{children:Q.jsxs("div",{className:"flex w-full gap-4",children:[Q.jsxs(L$,{name:"password",className:"w-full",children:[Q.jsx(vz,{id:"pasword",onChange:s=>{n({target:{name:"password",value:s}})},value:e,isForm:!0,password:!0,placeholder:"Password",className:"w-full"}),Q.jsx(o$,{match:"valueMissing",className:"field-invalid",children:"Please enter your password"})]}),Q.jsxs(L$,{name:"cnfPassword",className:"w-full",children:[Q.jsx(vz,{id:"cnfPassword",onChange:s=>{n({target:{name:"cnfPassword",value:s}})},value:t,isForm:!0,password:!0,placeholder:"Confirm Password",className:"w-full"}),Q.jsx(o$,{className:"field-invalid",match:"valueMissing",children:"Please confirm your password"})]})]})}),Q.jsx(Xde,{className:"border-t px-6 py-4",children:Q.jsx(mGe,{asChild:!0,children:Q.jsx(Kn,{type:"submit",children:"Save"})})})]})})}),qvi=e=>`${Rv}files/profile_pictures/${e}`,f11=(e,t,n)=>{const i=async s=>Promise.all(s.map(a=>new Promise(l=>{const u=new Image;u.src=a,u.onload=l,u.onerror=l})));$.useEffect(()=>{if(t||!n)return;const s=[];Object.keys(n).flatMap(a=>n[a].map(l=>s.push(qvi(`${a}/${l}`)))),i(s).then(()=>{e(!0)})},[n,t])};function p11({profilePictures:e,loading:t,value:n,onChange:i}){const s=$.useRef(null),a=c2(d=>d.dark),[l,u]=$.useState(!1);return $.useEffect(()=>{var d;n&&s&&((d=s.current)==null||d.scrollIntoView({behavior:"smooth",block:"center"}))},[s,n]),f11(u,t,e),Q.jsx("div",{className:"flex flex-col justify-center gap-2",children:t||!l?Q.jsx(Xw,{}):Object.keys(e).map((d,f)=>Q.jsxs("div",{className:"flex flex-col gap-2",children:[Q.jsx("div",{className:"edit-flow-arrangement",children:Q.jsx("span",{className:"font-normal",children:d})}),Q.jsx("div",{className:"block overflow-hidden",children:Q.jsx("div",{className:"flex items-center gap-1 overflow-x-auto rounded-lg bg-muted px-1 custom-scroll",children:e[d].map((p,g)=>Q.jsx(Kn,{ref:n===d+"/"+p?s:void 0,unstyled:!0,onClick:()=>i(d+"/"+p),className:"shrink-0 px-0.5 py-2",children:Q.jsx("img",{src:qvi(`${d}/${p}`),style:{filter:n===d+"/"+p?a?"drop-shadow(0 0 0.3rem rgb(255, 255, 255))":"drop-shadow(0 0 0.3rem rgb(0, 0, 0))":""},className:pt("h-12 w-12")},g)},g))})})]},f))})}const g11=({profilePicture:e,handleInput:t,handlePatchProfilePicture:n,handleGetProfilePictures:i,userData:s})=>{const{isLoading:a,data:l,isFetching:u}=bbi();return Q.jsx(Zee,{onSubmit:d=>{n(e),d.preventDefault()},children:Q.jsxs(hV,{"x-chunk":"dashboard-04-chunk-1",children:[Q.jsxs(jte,{children:[Q.jsx(Gde,{children:"Profile Picture"}),Q.jsx(jGe,{children:"Choose the image that appears as your profile picture."})]}),Q.jsx(qGe,{children:Q.jsx("div",{className:"py-2",children:Q.jsx(p11,{profilePictures:l,loading:a||u,value:e==""?(s==null?void 0:s.profile_image)??Jar[parseInt((s==null?void 0:s.id)??"",30)%Jar.length]:e,onChange:d=>{t({target:{name:"profilePicture",value:d}})}})})}),Q.jsx(Xde,{className:"border-t px-6 py-4",children:Q.jsx(mGe,{asChild:!0,children:Q.jsx(Kn,{type:"submit",children:"Save"})})})]})})},m11=()=>{const{scrollId:e}=h5(),[t,n]=$.useState(YOr),i=Di(E=>E.setSuccessData),s=Di(E=>E.setErrorData),{userData:a,setUserData:l}=$.useContext(sx),{password:u,cnfPassword:d,profilePicture:f}=t,p=Wc(E=>E.autoLogin),{storeApiKey:g}=$.useContext(sx),m=vg(E=>E.updateHasApiKey),v=vg(E=>E.updateValidApiKey),y=vg(E=>E.updateLoadingApiKey),{mutate:T}=P4o(),{mutate:_}=qUe(),O=()=>{if(u!==d){s({title:$2o,list:[V2o]});return}u!==""&&T({user_id:a.id,password:{password:u}},{onSuccess:()=>{k({target:{name:"password",value:""}}),k({target:{name:"cnfPassword",value:""}}),i({title:_rr})},onError:E=>{var R,P;s({title:Mrr,list:[(P=(R=E==null?void 0:E.response)==null?void 0:R.data)==null?void 0:P.detail]})}})},S=bbi(),C=E=>{E!==""&&_({user_id:a.id,user:{profile_image:E}},{onSuccess:()=>{const R=Eo.cloneDeep(a);R.profile_image=E,l(R),i({title:_rr})},onError:R=>{var P,D;s({title:Mrr,list:[(D=(P=R==null?void 0:R.response)==null?void 0:P.data)==null?void 0:D.detail]})}})};udi(e);const{mutate:L}=cdi({onSuccess:()=>{i({title:"API key saved successfully"}),m(!0),v(!0),y(!1),k({target:{name:"apikey",value:""}})},onError:E=>{var R,P;s({title:"API key save error",list:[(P=(R=E==null?void 0:E.response)==null?void 0:R.data)==null?void 0:P.detail]}),m(!1),v(!1),y(!1)}});function k({target:{name:E,value:R}}){n(P=>({...P,[E]:R}))}return Q.jsxs("div",{className:"flex h-full w-full flex-col gap-6 overflow-x-hidden",children:[Q.jsx(d11,{}),Q.jsxs("div",{className:"flex w-full flex-col gap-6",children:[Q.jsx(g11,{profilePicture:f,handleInput:k,handlePatchProfilePicture:C,handleGetProfilePictures:S,userData:a}),!p&&Q.jsx(h11,{password:u,cnfPassword:d,handleInput:k,handlePatchPassword:O})]}),Q.jsx(u11,{})]})};function b11(){const e=Di(v=>v.setErrorData),[t,n]=$.useState(!1),i=$.useRef(void 0),l=[{headerName:"Variable Name",field:"name",flex:2},{headerName:"Type",field:"type",cellRenderer:v=>v.value!==""?Q.jsx("div",{children:Q.jsx(Hm,{variant:"outline",size:"md",className:"font-normal",children:v.value})}):Q.jsx("div",{}),cellEditor:({options:v,value:y,onValueChange:T})=>Q.jsx(D5i,{options:v,value:y,onSelect:T,children:Q.jsx("div",{className:"-mt-1.5 w-full"})}),cellEditorParams:{options:["Generic","Credential"]},flex:1},{field:"value"},{headerName:"Apply To Fields",field:"default_fields",valueFormatter:v=>{var y;return((y=v.value)==null?void 0:y.join(", "))??""},flex:1,resizable:!1}],[u,d]=$.useState([]),{data:f}=Zde(),{mutate:p}=Vdi();async function g(){u.map(async v=>{var T;const y=(T=f==null?void 0:f.find(_=>_.name===v))==null?void 0:T.id;p({id:y},{onError:()=>{e({title:"Error deleting variable",list:[`ID not found for variable: ${v}`]})}})})}function m(v){i.current=v.data,n(!0)}return Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Global Variables",Q.jsx(mt,{name:"Globe",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage global variables and assign them to fields."})]}),Q.jsx("div",{className:"flex flex-shrink-0 items-center gap-2",children:Q.jsx(wgt,{asChild:!0,children:Q.jsxs(Kn,{"data-testid":"api-key-button-store",variant:"primary",children:[Q.jsx(mt,{name:"Plus",className:"w-4"}),"Add New"]})})})]}),Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between",children:[Q.jsx(Ky,{overlayNoRowsTemplate:"No data available",onSelectionChanged:v=>{d(v.api.getSelectedRows().map(y=>y.name))},rowSelection:"multiple",onRowClicked:m,suppressRowClickSelection:!0,pagination:!0,columnDefs:l,rowData:f??[],onDelete:g},"globalVariables"),i.current&&Q.jsx(wgt,{initialData:i.current,open:t,setOpen:n},i.current.id)]})]})}const v11=e=>{const{mutate:t,queryClient:n}=rs();async function i(a){var l,u,d;try{return{message:((l=(await So.delete(`${Yo("MCP_SERVERS",void 0,!0)}/${a.name}`)).data)==null?void 0:l.message)||"MCP Server deleted successfully"}}catch(f){const p=((d=(u=f.response)==null?void 0:u.data)==null?void 0:d.detail)||f.message||"Failed to delete MCP Server";throw new Error(p)}}return t(["useDeleteMCPServer"],i,{...e,onSuccess:(a,l,u)=>{n.refetchQueries({queryKey:["useGetMCPServers"]})}})},y11=e=>{const{mutate:t}=rs();return t(["useGetMCPServer"],async s=>{const{data:a}=await So.get(`${Yo("MCP_SERVERS",void 0,!0)}/${s.name}`);return{...a,name:s.name}},{...e})};function T11(){const{data:e}=Thn(),{mutate:t}=v11(),n=Di(O=>O.setErrorData),[i,s]=$.useState(!1),[a,l]=$.useState(!1),[u,d]=$.useState(null),{mutateAsync:f}=y11(),[p,g]=$.useState(!1),[m,v]=$.useState(null),y=async O=>{try{const S=await f({name:O});d(S),l(!0)}catch(S){n({title:"Error fetching server",list:[S.message]})}finally{}},T=O=>{t({name:O.name},{onError:S=>n({title:"Error deleting server",list:[S.message]})})},_=O=>{v(O),g(!0)};return Q.jsxs("div",{className:"flex h-full w-full flex-col gap-6",children:[Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["MCP Servers",Q.jsx(mt,{name:"Mcp",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage MCP Servers for use in your flows."})]}),Q.jsxs("div",{className:"flex flex-shrink-0 items-center gap-2",children:[Q.jsxs(Kn,{variant:"primary",onClick:()=>s(!0),"data-testid":"add-mcp-server-button-page",children:[Q.jsx(mt,{name:"Plus",className:"w-4"}),"Add MCP Server"]}),Q.jsx(L$e,{open:i,setOpen:s})]})]}),Q.jsx("div",{className:"flex h-full flex-col gap-2",children:e?Q.jsxs(Q.Fragment,{children:[e.length===0?Q.jsx("div",{className:"w-full pt-8 text-center text-sm text-muted-foreground",children:"No MCP servers added"}):Q.jsx("div",{className:"text-sm font-medium text-muted-foreground",children:"Added MCP Servers"}),Q.jsx("div",{className:"flex flex-col gap-1",children:e.map(O=>Q.jsxs("div",{className:"flex items-center justify-between rounded-lg px-3 py-2 shadow-sm transition-colors hover:bg-accent",children:[Q.jsxs("div",{className:"flex items-center gap-2",children:[Q.jsx("span",{className:"text-sm font-medium",children:O.name}),Q.jsx(No,{content:O.error,children:Q.jsx("span",{className:pt("cursor-default select-none !text-mmd text-muted-foreground",O.error&&"text-accent-red-foreground"),children:O.toolsCount===null?O.error?O.error.startsWith("Timeout")?"Timeout":"Error":"Loading...":O.toolsCount?`${O.toolsCount} tool${O.toolsCount===1?"":"s"}`:"No tools found"})})]}),Q.jsxs(QN,{children:[Q.jsx(zN,{asChild:!0,children:Q.jsx(Kn,{variant:"ghost",size:"iconSm","data-testid":`mcp-server-menu-button-${O.name}`,className:"text-muted-foreground hover:bg-accent",children:Q.jsx(mt,{name:"Ellipsis",className:"h-5 w-5"})})}),Q.jsxs(zz,{align:"end",children:[Q.jsxs(i5,{onClick:()=>y(O.name),children:[Q.jsx(mt,{name:"SquarePen",className:"mr-2 h-4 w-4"}),"Edit"]}),Q.jsxs(i5,{onClick:()=>_(O),className:"text-destructive",children:[Q.jsx(mt,{name:"Trash2",className:"mr-2 h-4 w-4"}),"Delete"]})]})]})]},O.id))}),a&&Q.jsx(L$e,{open:a,setOpen:l,initialData:u}),Q.jsx(_V,{open:p,setOpen:g,onConfirm:()=>{m&&T(m),g(!1),v(null)},description:"MCP Server"})]}):Q.jsx("div",{className:"flex h-full w-full items-center justify-center",children:Q.jsx(Xw,{})})})]})}const M11=()=>Q.jsx(Q.Fragment,{children:Q.jsx("div",{className:"flex w-full items-center justify-between gap-4 space-y-0.5",children:Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Messages",Q.jsx(mt,{name:"MessagesSquare",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Inspect, edit and remove messages to explore and refine model behaviors."})]})})});function w11(){return D6i({mode:"union"}),Q.jsxs("div",{className:"flex h-full w-full flex-col justify-between gap-6",children:[Q.jsx(M11,{}),Q.jsx("div",{className:"flex h-full w-full flex-col justify-between",children:Q.jsx(cvi,{})})]})}function _11(e){const t=e.value,n=t==null?void 0:t.split("+");return Q.jsx(G6t,{filteredShortcut:n,tableRender:!0})}function O11({children:e,shortcut:t,defaultShortcuts:n,open:i,setOpen:s,disable:a,setSelected:l}){var S;const u=n.length>0?(S=n.find(C=>TBe(C.name)===TBe(t[0])))==null?void 0:S.shortcut:"",[d,f]=$.useState(null),p=Di(C=>C.setSuccessData),g=Oc(C=>C.setShortcuts),m=Di(C=>C.setErrorData);function v(C){let L=!0;return n.forEach(({shortcut:k})=>{k.toLowerCase()===C.toLowerCase()&&(L=!1)}),L}const y=Oc(C=>C.updateUniqueShortcut);function T(){if(d&&v(d)){const C=d.split(" ");(C[0].toLowerCase().includes("ctrl")||C[0].toLowerCase().includes("cmd"))&&(C[0]="mod");const L=n.map(E=>E.name===t[0]?{name:E.name,display_name:E.display_name,shortcut:C.join("").toLowerCase()}:{name:E.name,display_name:E.display_name,shortcut:E.shortcut}),k=TBe(t[0]);y(k,C.join("").toLowerCase()),g(L),localStorage.setItem("langflow-shortcuts",JSON.stringify(L)),f(null),s(!1),p({title:`${t[0]} shortcut successfully changed`});return}m({title:"Error saving key combination",list:["This combination already exists!"]})}$.useEffect(()=>{i||(f(null),l([]))},[i,s,d]);function _({oldKey:C,key:L}){return C===null?`${L.length>0,uR(L)}`:`${C.length>0?uR(C):C.toUpperCase()} + ${L.length>0?uR(L):L.toUpperCase()}`}function O(C,L){return C.split(" ").some(E=>E.toLowerCase().trim()===L.toLowerCase().trim())}return $.useEffect(()=>{function C(L){var E,R,P;L.preventDefault();let k=L.key;((E=L.key)==null?void 0:E.toLowerCase())==="control"&&(k="Ctrl"),((R=L.key)==null?void 0:R.toLowerCase())==="meta"&&(k="Cmd"),((P=L.key)==null?void 0:P.toLowerCase())===" "&&(k="Space"),!(d&&O(d,k))&&f(D=>_({oldKey:D,key:k}))}return document.addEventListener("keydown",C),()=>{document.removeEventListener("keydown",C)}},[d,f]),Q.jsxs(Xr,{open:i,setOpen:s,size:"x-small",disable:a,children:[Q.jsxs(Xr.Header,{description:"Recording your keyboard",children:[Q.jsx("span",{className:"pr-2",children:" Key Combination "}),Q.jsx(mt,{name:"Keyboard",className:"h-6 w-6 pl-1 text-primary","aria-hidden":"true"})]}),Q.jsx(Xr.Trigger,{children:e}),Q.jsx(Xr.Content,{children:Q.jsx("div",{className:"align-center flex h-full w-full justify-center gap-4 rounded-md border border-border py-2",children:Q.jsx("div",{className:"flex items-center justify-center gap-0.5 text-center text-lg font-bold",children:(d??u??"").split("+").map((C,L)=>Q.jsx(Afi,{value:C,tableRender:!0},L))})})}),Q.jsxs(Xr.Footer,{children:[Q.jsx(Kn,{variant:"default",onClick:T,children:"Apply"}),Q.jsx(Kn,{className:"mr-5",variant:"destructive",onClick:()=>f(null),children:"Reset"})]})]})}function A11(){const[e,t]=$.useState([]),n=Oc(g=>g.shortcuts),i=Oc(g=>g.setShortcuts),s=[{headerName:"Functionality",field:"display_name",flex:1,editable:!1,resizable:!1},{headerName:"Keyboard Shortcut",field:"shortcut",flex:2,editable:!1,resizable:!1,cellRenderer:_11}],[a,l]=$.useState([]);$.useEffect(()=>{l(n)},[n]);const[u,d]=$.useState(!1),f=Oc(g=>g.updateUniqueShortcut);function p(){i(Jnn),Jnn.forEach(({name:g,shortcut:m})=>{const v=TBe(g);f(v,m)}),localStorage.removeItem("langflow-shortcuts")}return Q.jsxs("div",{className:"flex h-full w-full flex-col gap-6",children:[Q.jsxs("div",{className:"flex w-full items-start justify-between gap-6",children:[Q.jsxs("div",{className:"flex w-full flex-col",children:[Q.jsxs("h2",{className:"flex items-center text-lg font-semibold tracking-tight",children:["Shortcuts",Q.jsx(mt,{name:"Keyboard",className:"ml-2 h-5 w-5 text-primary"})]}),Q.jsx("p",{className:"text-sm text-muted-foreground",children:"Manage Shortcuts for quick access to frequently used actions."})]}),Q.jsx("div",{children:Q.jsx("div",{className:"align-end flex w-full justify-end",children:Q.jsxs("div",{className:"justify center flex items-center",children:[u&&Q.jsx(O11,{disable:e.length===0,shortcut:e,defaultShortcuts:n,open:u,setOpen:d,setSelected:t,children:Q.jsx("div",{style:{display:"none"}})}),Q.jsxs(Kn,{variant:"primary",className:"flex gap-2",onClick:p,children:[Q.jsx(mt,{name:"RotateCcw",className:"w-4"}),"Restore"]})]})})})]}),Q.jsx("div",{className:"grid gap-6 pb-8",children:Q.jsx("div",{children:s&&a.length>0&&Q.jsx(Ky,{suppressRowClickSelection:!0,domLayout:"autoHeight",pagination:!1,columnDefs:s,rowData:a,onCellDoubleClicked:g=>{t([g.data.name]),d(!0)}})})})]})}function x11(){const e=as(a=>a.setCurrentFlow),{id:t}=h5(),n=Cg(),i=as(a=>a.flows),s=as(a=>a.currentFlowId);return $.useEffect(()=>{(async()=>{if(i&&s===""){const l=i.find(u=>u.id===t);if(!l){n("/all");return}e(l)}})()},[t,i]),Q.jsx("div",{className:"flow-page-positioning",children:Q.jsx(Ovi,{view:!0})})}const S11=$.lazy(()=>ee(()=>import("./index-BtFl7fER.js"),__vite__mapDeps([0,1]),import.meta.url)),C11=$.lazy(()=>ee(()=>import("./index-BvgQ2vzM.js"),[],import.meta.url)),Q11=$.lazy(()=>ee(()=>import("./index-CtJdNLy9.js"),[],import.meta.url)),z11=$.lazy(()=>ee(()=>import("./index-CFR4yJQB.js"),[],import.meta.url)),E11=$.lazy(()=>ee(()=>import("./index-CJmMEa6d.js"),__vite__mapDeps([2,1]),import.meta.url)),L11=Vno(Qnn([Q.jsx(kl,{path:"/playground/:id/",children:Q.jsx(kl,{path:"",element:Q.jsx(edr,{children:Q.jsx(z11,{})},1)})}),Q.jsxs(kl,{path:"/",element:Q.jsx(edr,{children:Q.jsx(g$,{})},2),children:[Q.jsx(kl,{path:"",element:Q.jsx(pms,{}),children:Q.jsxs(kl,{path:"",element:Q.jsx(rbs,{}),children:[Q.jsx(kl,{path:"",element:Q.jsx(T2s,{children:Q.jsx(g$,{})}),children:Q.jsxs(kl,{path:"",element:Q.jsx(ams,{}),children:[Q.jsxs(kl,{path:"",element:Q.jsx(t2r,{}),children:[Q.jsxs(kl,{path:"",element:Q.jsx(Za1,{}),children:[Q.jsx(kl,{index:!0,element:Q.jsx(dR,{replace:!0,to:"flows"})}),Q.jsxs(kl,{path:"assets",children:[Q.jsx(kl,{index:!0,element:Q.jsx(dR,{replace:!0,to:"files"})}),Q.jsx(kl,{path:"files",element:Q.jsx(gs1,{})}),Q.jsx(kl,{path:"knowledge-bases",element:Q.jsx(Ma1,{})})]}),Q.jsx(kl,{path:"flows/",element:Q.jsx(UY,{type:"flows"},"flows")}),Q.jsx(kl,{path:"components/",element:Q.jsx(UY,{type:"components"},"components"),children:Q.jsx(kl,{path:"folder/:folderId",element:Q.jsx(UY,{type:"components"},"components")})}),Q.jsx(kl,{path:"all/",element:Q.jsx(UY,{type:"flows"},"flows"),children:Q.jsx(kl,{path:"folder/:folderId",element:Q.jsx(UY,{type:"flows"},"flows")})}),Q.jsx(kl,{path:"mcp/",element:Q.jsx(UY,{type:"mcp"},"mcp"),children:Q.jsx(kl,{path:"folder/:folderId",element:Q.jsx(UY,{type:"mcp"},"mcp")})})]}),Q.jsxs(kl,{path:"settings",element:Q.jsx(t11,{}),children:[Q.jsx(kl,{index:!0,element:Q.jsx(dR,{replace:!0,to:"general"})}),Q.jsx(kl,{path:"global-variables",element:Q.jsx(b11,{})}),Q.jsx(kl,{path:"mcp-servers",element:Q.jsx(T11,{})}),Q.jsx(kl,{path:"api-keys",element:Q.jsx(c11,{})}),Q.jsx(kl,{path:"general/:scrollId?",element:Q.jsx(M2s,{children:Q.jsx(m11,{})})}),Q.jsx(kl,{path:"shortcuts",element:Q.jsx(A11,{})}),Q.jsx(kl,{path:"messages",element:Q.jsx(w11,{})}),Tgs()]}),oms(),Q.jsx(kl,{path:"account",children:Q.jsx(kl,{path:"delete",element:Q.jsx(Q11,{})})}),Q.jsx(kl,{path:"admin",element:Q.jsx(y2s,{children:Q.jsx(S11,{})})})]}),Q.jsxs(kl,{path:"flow/:id/",children:[Q.jsxs(kl,{path:"",element:Q.jsx(t2r,{}),children:[Q.jsx(kl,{path:"folder/:folderId/",element:Q.jsx(ryr,{})}),Q.jsx(kl,{path:"",element:Q.jsx(ryr,{})})]}),Q.jsx(kl,{path:"view",element:Q.jsx(x11,{})})]})]})}),Q.jsx(kl,{path:"login",element:Q.jsx(KVt,{children:Q.jsx(cs1,{})})}),Q.jsx(kl,{path:"signup",element:Q.jsx(KVt,{children:Q.jsx(E11,{})})}),Q.jsx(kl,{path:"login/admin",element:Q.jsx(KVt,{children:Q.jsx(C11,{})})})]})}),Q.jsx(kl,{path:"*",element:Q.jsx(dR,{replace:!0,to:"/"})})]})]),{basename:void 0});function k11(){const e=c2(t=>t.dark);return $.useEffect(()=>{e?document.getElementById("body").classList.add("dark"):document.getElementById("body").classList.remove("dark")},[e]),Q.jsx($.Suspense,{fallback:Q.jsx(W2n,{}),children:Q.jsx(tro,{router:L11})})}function R11(){return Q.jsx(k11,{})}const N11=ktn.createRoot(document.getElementById("root"));N11.render(Q.jsx(R11,{}));export{Zee as $,sx as A,Xr as B,G11 as C,B11 as D,gxe as E,mt as F,Eo as G,q11 as H,F1 as I,W11 as J,Tho as K,I4o as L,r8t as M,q2o as N,cYs as O,hfo as P,lms as Q,as as R,No as S,Hc as T,rs as U,h5 as V,idi as W,Cg as X,En as Y,z3 as Z,sir as _,So as a,Ql1 as a0,zl1 as a1,Mi1 as a2,U11 as a3,vz as a4,fx as a5,F11 as a6,X11 as a7,ee as a8,fl1 as a9,pl1 as aa,L$ as b,pt as c,p0e as d,w$e as e,o$ as f,Yo as g,pxe as h,v2e as i,Q as j,Kn as k,mGe as l,ffo as m,qUe as n,$11 as o,V11 as p,hvi as q,$ as r,jw as s,Vl1 as t,Di as u,hhn as v,pfo as w,I11 as x,H11 as y,j11 as z};