@excalidraw/element 0.18.0-3bdaafe → 0.18.0-4872083
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.
- package/dist/dev/index.js +10312 -5595
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +20 -19
- package/dist/types/common/debug.d.ts +21 -0
- package/dist/types/common/src/appEventBus.d.ts +27 -0
- package/dist/types/common/src/bounds.d.ts +10 -0
- package/dist/types/common/src/colors.d.ts +75 -39
- package/dist/types/common/src/constants.d.ts +48 -34
- package/dist/types/common/src/editorInterface.d.ts +34 -0
- package/dist/types/common/src/font-metadata.d.ts +1 -3
- package/dist/types/common/src/index.d.ts +5 -0
- package/dist/types/common/src/keys.d.ts +3 -1
- package/dist/types/common/src/points.d.ts +1 -1
- package/dist/types/common/src/utility-types.d.ts +0 -1
- package/dist/types/common/src/utils.d.ts +47 -77
- package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
- package/dist/types/element/src/Scene.d.ts +11 -7
- package/dist/types/element/src/align.d.ts +2 -2
- package/dist/types/element/src/arrowEndpointText.d.ts +49 -0
- package/dist/types/element/src/arrowheads.d.ts +3 -0
- package/dist/types/element/src/arrows/focus.d.ts +30 -0
- package/dist/types/element/src/arrows/helpers.d.ts +5 -0
- package/dist/types/element/src/binding.d.ts +79 -51
- package/dist/types/element/src/bounds.d.ts +25 -18
- package/dist/types/element/src/bucketFill.d.ts +110 -0
- package/dist/types/element/src/collision.d.ts +7 -2
- package/dist/types/element/src/comparisons.d.ts +8 -7
- package/dist/types/element/src/convertToShape.d.ts +23 -0
- package/dist/types/element/src/distribute.d.ts +3 -2
- package/dist/types/element/src/dragElements.d.ts +30 -3
- package/dist/types/element/src/duplicate.d.ts +7 -6
- package/dist/types/element/src/elbowArrow.d.ts +2 -0
- package/dist/types/element/src/embeddable.d.ts +2 -2
- package/dist/types/element/src/flowchart.d.ts +7 -7
- package/dist/types/element/src/fractionalIndex.d.ts +4 -4
- package/dist/types/element/src/frame.d.ts +14 -9
- package/dist/types/element/src/groups.d.ts +9 -9
- package/dist/types/element/src/heading.d.ts +2 -1
- package/dist/types/element/src/image.d.ts +1 -11
- package/dist/types/element/src/index.d.ts +8 -4
- package/dist/types/element/src/linearElementEditor.d.ts +38 -30
- package/dist/types/element/src/mutateElement.d.ts +5 -1
- package/dist/types/element/src/newElement.d.ts +20 -6
- package/dist/types/element/src/renderElement.d.ts +4 -10
- package/dist/types/element/src/resizeElements.d.ts +12 -12
- package/dist/types/element/src/resizeTest.d.ts +6 -5
- package/dist/types/element/src/selection.d.ts +14 -14
- package/dist/types/element/src/shape.d.ts +21 -8
- package/dist/types/element/src/sortElements.d.ts +10 -0
- package/dist/types/element/src/textElement.d.ts +13 -10
- package/dist/types/element/src/textMeasurements.d.ts +1 -3
- package/dist/types/element/src/textWrapping.d.ts +26 -0
- package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
- package/dist/types/element/src/transformHandles.d.ts +8 -27
- package/dist/types/element/src/typeChecks.d.ts +29 -31
- package/dist/types/element/src/types.d.ts +20 -14
- package/dist/types/element/src/utils.d.ts +9 -4
- package/dist/types/element/src/visualdebug.d.ts +58 -0
- package/dist/types/element/src/zindex.d.ts +7 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +158 -186
- package/dist/types/excalidraw/actions/actionAlign.d.ts +12 -13
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +112 -131
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +412 -1578
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +114 -874
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +54 -64
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +180 -211
- package/dist/types/excalidraw/actions/actionDeselect.d.ts +160 -0
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +4 -6
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +46 -62
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +111 -130
- package/dist/types/excalidraw/actions/actionExport.d.ts +190 -1414
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -394
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +267 -518
- package/dist/types/excalidraw/actions/actionGroup.d.ts +122 -149
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +168 -214
- package/dist/types/excalidraw/actions/actionLink.d.ts +53 -63
- package/dist/types/excalidraw/actions/actionMenu.d.ts +45 -427
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -359
- package/dist/types/excalidraw/actions/actionProperties.d.ts +194 -2531
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +61 -75
- package/dist/types/excalidraw/actions/actionStyles.d.ts +54 -63
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
- package/dist/types/excalidraw/actions/{actionEmbeddable.d.ts → actionToggleArrowBinding.d.ts} +69 -78
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +58 -69
- package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +176 -0
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +55 -65
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +46 -63
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +55 -65
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +56 -66
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +56 -66
- package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -3
- package/dist/types/excalidraw/actions/index.d.ts +5 -3
- package/dist/types/excalidraw/actions/manager.d.ts +1 -0
- package/dist/types/excalidraw/actions/register.d.ts +2 -2
- package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +11 -7
- package/dist/types/excalidraw/{animated-trail.d.ts → animatedTrail.d.ts} +4 -3
- package/dist/types/excalidraw/appState.d.ts +27 -18
- package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
- package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
- package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
- package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
- package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
- package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
- package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
- package/dist/types/excalidraw/charts/index.d.ts +7 -0
- package/dist/types/excalidraw/clipboard.d.ts +56 -19
- package/dist/types/excalidraw/components/Actions.d.ts +33 -11
- package/dist/types/excalidraw/components/ActiveConfirmDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/App.arrowText.d.ts +72 -0
- package/dist/types/excalidraw/components/App.bucketFill.d.ts +38 -0
- package/dist/types/excalidraw/components/App.cursor.d.ts +30 -0
- package/dist/types/excalidraw/components/App.d.ts +455 -119
- package/dist/types/excalidraw/components/App.drawshape.d.ts +55 -0
- package/dist/types/excalidraw/components/App.flowchart.d.ts +21 -0
- package/dist/types/excalidraw/components/App.viewport.d.ts +73 -0
- package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
- package/dist/types/excalidraw/components/Card.d.ts +1 -3
- package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +5 -4
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +3 -0
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +7 -1
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -2
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +2 -2
- package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
- package/dist/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +1 -2
- package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +4 -4
- package/dist/types/excalidraw/components/CursorHint.d.ts +46 -0
- package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
- package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
- package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/EyeDropper.d.ts +1 -2
- package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
- package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
- package/dist/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
- package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
- package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
- package/dist/types/excalidraw/components/Island.d.ts +7 -0
- package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
- package/dist/types/excalidraw/components/LayerUI.d.ts +6 -2
- package/dist/types/excalidraw/components/LibraryMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
- package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
- package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
- package/dist/types/excalidraw/components/LockButton.d.ts +3 -4
- package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
- package/dist/types/excalidraw/components/MobileMenu.d.ts +5 -7
- package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
- package/dist/types/excalidraw/components/Modal.d.ts +0 -1
- package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
- package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +1 -1
- package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
- package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
- package/dist/types/excalidraw/components/Popover.d.ts +2 -3
- package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
- package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
- package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
- package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
- package/dist/types/excalidraw/components/Range.d.ts +10 -4
- package/dist/types/excalidraw/components/SVGLayer.d.ts +1 -1
- package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
- package/dist/types/excalidraw/components/SearchMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +16 -22
- package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
- package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
- package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
- package/dist/types/excalidraw/components/Stats/Angle.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +2 -3
- package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/Position.d.ts +3 -3
- package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
- package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
- package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
- package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
- package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
- package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
- package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
- package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
- package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
- package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
- package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
- package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
- package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
- package/dist/types/excalidraw/components/TextField.d.ts +1 -0
- package/dist/types/excalidraw/components/Toast.d.ts +11 -7
- package/dist/types/excalidraw/components/ToolPopover.d.ts +22 -0
- package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
- package/dist/types/excalidraw/components/Tools.d.ts +146 -0
- package/dist/types/excalidraw/components/Trans.d.ts +2 -2
- package/dist/types/excalidraw/components/UserList.d.ts +3 -2
- package/dist/types/excalidraw/components/ViewportStatusFrame/ViewportStatusFrame.d.ts +11 -0
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +10 -4
- package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +1 -0
- package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +1 -1
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
- package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
- package/dist/types/excalidraw/components/footer/Footer.d.ts +3 -1
- package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +3 -3
- package/dist/types/excalidraw/components/icons.d.ts +54 -22
- package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +24 -3
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
- package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
- package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
- package/dist/types/excalidraw/data/blob.d.ts +335 -15
- package/dist/types/excalidraw/data/encode.d.ts +4 -4
- package/dist/types/excalidraw/data/encryption.d.ts +5 -5
- package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
- package/dist/types/excalidraw/data/index.d.ts +8 -9
- package/dist/types/excalidraw/data/json.d.ts +173 -3
- package/dist/types/excalidraw/data/library.d.ts +25 -10
- package/dist/types/excalidraw/data/resave.d.ts +7 -2
- package/dist/types/excalidraw/data/restore.d.ts +25 -10
- package/dist/types/excalidraw/data/types.d.ts +4 -1
- package/dist/types/excalidraw/drawShapeTrail.d.ts +16 -0
- package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
- package/dist/types/excalidraw/eraser/index.d.ts +2 -3
- package/dist/types/excalidraw/errors.d.ts +14 -0
- package/dist/types/excalidraw/hooks/useAppStateValue.d.ts +29 -0
- package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +2 -2
- package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
- package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
- package/dist/types/excalidraw/i18n.d.ts +2 -2
- package/dist/types/excalidraw/{laser-trails.d.ts → laserTrails.d.ts} +5 -7
- package/dist/types/excalidraw/lasso/index.d.ts +2 -3
- package/dist/types/excalidraw/renderer/animation.d.ts +16 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +7 -15
- package/dist/types/excalidraw/scene/Renderer.d.ts +428 -18
- package/dist/types/excalidraw/scene/export.d.ts +4 -4
- package/dist/types/excalidraw/scene/index.d.ts +2 -2
- package/dist/types/excalidraw/scene/types.d.ts +26 -8
- package/dist/types/excalidraw/shortcut.d.ts +1 -0
- package/dist/types/excalidraw/snapping.d.ts +12 -12
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
- package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
- package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
- package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
- package/dist/types/excalidraw/types.d.ts +521 -55
- package/dist/types/excalidraw/viewport.d.ts +270 -0
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +8 -5
- package/dist/types/fractional-indexing/src/index.d.ts +29 -0
- package/dist/types/laser-pointer/src/index.d.ts +2 -0
- package/dist/types/laser-pointer/src/math.d.ts +16 -0
- package/dist/types/laser-pointer/src/simplify.d.ts +2 -0
- package/dist/types/laser-pointer/src/state.d.ts +36 -0
- package/dist/types/math/src/constants.d.ts +0 -1
- package/dist/types/math/src/curve.d.ts +4 -1
- package/dist/types/math/src/index.d.ts +1 -0
- package/dist/types/math/src/pca.d.ts +79 -0
- package/dist/types/math/src/point.d.ts +8 -2
- package/dist/types/math/src/polygon.d.ts +26 -2
- package/dist/types/math/src/range.d.ts +1 -3
- package/dist/types/math/src/segment.d.ts +4 -3
- package/dist/types/math/src/types.d.ts +25 -1
- package/dist/types/utils/src/export.d.ts +8 -8
- package/dist/types/utils/src/index.d.ts +1 -2
- package/dist/types/utils/src/shape.d.ts +6 -6
- package/package.json +10 -3
- package/dist/types/excalidraw/animation-frame-handler.d.ts +0 -16
- package/dist/types/excalidraw/charts.d.ts +0 -27
- package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
- package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
- package/dist/types/excalidraw/components/FollowMode/FollowMode.d.ts +0 -10
- package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
- package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
- package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
- package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
- package/dist/types/excalidraw/components/shapes.d.ts +0 -190
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
- package/dist/types/excalidraw/cursor.d.ts +0 -5
- package/dist/types/excalidraw/data/reconcile.d.ts +0 -7
- package/dist/types/excalidraw/index.d.ts +0 -47
- package/dist/types/excalidraw/polyfill.d.ts +0 -2
- package/dist/types/excalidraw/scene/scroll.d.ts +0 -23
- package/dist/types/excalidraw/scene/zoom.d.ts +0 -12
- package/dist/types/utils/src/bbox.d.ts +0 -9
- package/dist/types/utils/src/withinBounds.d.ts +0 -19
package/dist/prod/index.js
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
var cc=Object.create;var Ps=Object.defineProperty;var uc=Object.getOwnPropertyDescriptor;var pc=Object.getOwnPropertyNames;var mc=Object.getPrototypeOf,fc=Object.prototype.hasOwnProperty;var hc=(e,t)=>()=>(e&&(t=e(e=0)),t);var Ec=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var gc=(e,t,n,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of pc(t))!fc.call(e,o)&&o!==n&&Ps(e,o,{get:()=>t[o],enumerable:!(i=uc(t,o))||i.enumerable});return e};var xc=(e,t,n)=>(n=e!=null?cc(mc(e)):{},gc(t||!e||!e.__esModule?Ps(n,"default",{value:e,enumerable:!0}):n,e));var A,P=hc(()=>{A={PROD:!0}});var wd=Ec((G1,xd)=>{P();var gd="Expected a function",hd=NaN,_f="[object Symbol]",Yf=/^\s+|\s+$/g,Uf=/^[-+]0x[0-9a-f]+$/i,Xf=/^0b[01]+$/i,jf=/^0o[0-7]+$/i,Wf=parseInt,Vf=typeof global=="object"&&global&&global.Object===Object&&global,$f=typeof self=="object"&&self&&self.Object===Object&&self,Zf=Vf||$f||Function("return this")(),qf=Object.prototype,Kf=qf.toString,Qf=Math.max,Jf=Math.min,ns=function(){return Zf.Date.now()};function eh(e,t,n){var i,o,r,s,a,l,d=0,c=!1,u=!1,p=!0;if(typeof e!="function")throw new TypeError(gd);t=Ed(t)||0,Io(n)&&(c=!!n.leading,u="maxWait"in n,r=u?Qf(Ed(n.maxWait)||0,t):r,p="trailing"in n?!!n.trailing:p);function m(I){var M=i,D=o;return i=o=void 0,d=I,s=e.apply(D,M),s}function f(I){return d=I,a=setTimeout(g,t),c?m(I):s}function E(I){var M=I-l,D=I-d,T=t-M;return u?Jf(T,r-D):T}function h(I){var M=I-l,D=I-d;return l===void 0||M>=t||M<0||u&&D>=r}function g(){var I=ns();if(h(I))return x(I);a=setTimeout(g,E(I))}function x(I){return a=void 0,p&&i?m(I):(i=o=void 0,s)}function y(){a!==void 0&&clearTimeout(a),d=0,i=l=o=a=void 0}function b(){return a===void 0?s:x(ns())}function w(){var I=ns(),M=h(I);if(i=arguments,o=this,l=I,M){if(a===void 0)return f(l);if(u)return a=setTimeout(g,t),m(l)}return a===void 0&&(a=setTimeout(g,t)),s}return w.cancel=y,w.flush=b,w}function th(e,t,n){var i=!0,o=!0;if(typeof e!="function")throw new TypeError(gd);return Io(n)&&(i="leading"in n?!!n.leading:i,o="trailing"in n?!!n.trailing:o),eh(e,t,{leading:i,maxWait:t,trailing:o})}function Io(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function nh(e){return!!e&&typeof e=="object"}function ih(e){return typeof e=="symbol"||nh(e)&&Kf.call(e)==_f}function Ed(e){if(typeof e=="number")return e;if(ih(e))return hd;if(Io(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=Io(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=e.replace(Yf,"");var n=Xf.test(e);return n||jf.test(e)?Wf(e.slice(2),n?2:8):Uf.test(e)?hd:+e}xd.exports=th});P();import{toIterable as EE}from"@excalidraw/common";P();import{SHIFT_LOCKING_ANGLE as Bt,viewportCoordsToSceneCoords as wo}from"@excalidraw/common";import{normalizeRadians as ql,radiansBetweenAngles as Ef,radiansDifference as gf}from"@excalidraw/math";import{pointsEqual as xf}from"@excalidraw/math";P();P();P();P();P();P();P();P();P();function Ro(e,t,n){if(e&&e.length){let[i,o]=t,r=Math.PI/180*n,s=Math.cos(r),a=Math.sin(r);for(let l of e){let[d,c]=l;l[0]=(d-i)*s-(c-o)*a+i,l[1]=(d-i)*a+(c-o)*s+o}}}function yc(e,t,n){let i=[];e.forEach(o=>i.push(...o)),Ro(i,t,n)}function bc(e,t){return e[0]===t[0]&&e[1]===t[1]}function Is(e,t,n,i=1){let o=n,r=Math.max(t,.1),s=e[0]&&e[0][0]&&typeof e[0][0]=="number"?[e]:e,a=[0,0];if(o)for(let d of s)Ro(d,a,o);let l=Pc(s,r,i);if(o){for(let d of s)Ro(d,a,-o);yc(l,a,-o)}return l}function Pc(e,t,n){let i=[];for(let d of e){let c=[...d];bc(c[0],c[c.length-1])||c.push([c[0][0],c[0][1]]),c.length>2&&i.push(c)}let o=[];t=Math.max(t,.1);let r=[];for(let d of i)for(let c=0;c<d.length-1;c++){let u=d[c],p=d[c+1];if(u[1]!==p[1]){let m=Math.min(u[1],p[1]);r.push({ymin:m,ymax:Math.max(u[1],p[1]),x:m===u[1]?u[0]:p[0],islope:(p[0]-u[0])/(p[1]-u[1])})}}if(r.sort((d,c)=>d.ymin<c.ymin?-1:d.ymin>c.ymin?1:d.x<c.x?-1:d.x>c.x?1:d.ymax===c.ymax?0:(d.ymax-c.ymax)/Math.abs(d.ymax-c.ymax)),!r.length)return o;let s=[],a=r[0].ymin,l=0;for(;s.length||r.length;){if(r.length){let d=-1;for(let u=0;u<r.length&&!(r[u].ymin>a);u++)d=u;r.splice(0,d+1).forEach(u=>{s.push({s:a,edge:u})})}if(s=s.filter(d=>!(d.edge.ymax<=a)),s.sort((d,c)=>d.edge.x===c.edge.x?0:(d.edge.x-c.edge.x)/Math.abs(d.edge.x-c.edge.x)),(n!==1||l%t===0)&&s.length>1)for(let d=0;d<s.length;d=d+2){let c=d+1;if(c>=s.length)break;let u=s[d].edge,p=s[c].edge;o.push([[Math.round(u.x),a],[Math.round(p.x),a]])}a+=n,s.forEach(d=>{d.edge.x=d.edge.x+n*d.edge.islope}),l++}return o}function rt(e,t){var n;let i=t.hachureAngle+90,o=t.hachureGap;o<0&&(o=t.strokeWidth*4),o=Math.max(o,.1);let r=1;return t.roughness>=1&&(((n=t.randomizer)===null||n===void 0?void 0:n.next())||Math.random())>.7&&(r=o),Is(e,o,i,r||1)}var Ot=class{constructor(t){this.helper=t}fillPolygons(t,n){return this._fillPolygons(t,n)}_fillPolygons(t,n){let i=rt(t,n);return{type:"fillSketch",ops:this.renderLines(i,n)}}renderLines(t,n){let i=[];for(let o of t)i.push(...this.helper.doubleLineOps(o[0][0],o[0][1],o[1][0],o[1][1],n));return i}};P();P();function Rt(e){let t=e[0],n=e[1];return Math.sqrt(Math.pow(t[0]-n[0],2)+Math.pow(t[1]-n[1],2))}var hi=class extends Ot{fillPolygons(t,n){let i=n.hachureGap;i<0&&(i=n.strokeWidth*4),i=Math.max(i,.1);let o=Object.assign({},n,{hachureGap:i}),r=rt(t,o),s=Math.PI/180*n.hachureAngle,a=[],l=i*.5*Math.cos(s),d=i*.5*Math.sin(s);for(let[u,p]of r)Rt([u,p])&&a.push([[u[0]-l,u[1]+d],[...p]],[[u[0]+l,u[1]-d],[...p]]);return{type:"fillSketch",ops:this.renderLines(a,n)}}};P();var Ei=class extends Ot{fillPolygons(t,n){let i=this._fillPolygons(t,n),o=Object.assign({},n,{hachureAngle:n.hachureAngle+90}),r=this._fillPolygons(t,o);return i.ops=i.ops.concat(r.ops),i}};P();var gi=class{constructor(t){this.helper=t}fillPolygons(t,n){n=Object.assign({},n,{hachureAngle:0});let i=rt(t,n);return this.dotsOnLines(i,n)}dotsOnLines(t,n){let i=[],o=n.hachureGap;o<0&&(o=n.strokeWidth*4),o=Math.max(o,.1);let r=n.fillWeight;r<0&&(r=n.strokeWidth/2);let s=o/4;for(let a of t){let l=Rt(a),d=l/o,c=Math.ceil(d)-1,u=l-c*o,p=(a[0][0]+a[1][0])/2-o/4,m=Math.min(a[0][1],a[1][1]);for(let f=0;f<c;f++){let E=m+u+f*o,h=p-s+Math.random()*2*s,g=E-s+Math.random()*2*s,x=this.helper.ellipse(h,g,r,r,n);i.push(...x.ops)}}return{type:"fillSketch",ops:i}}};P();var xi=class{constructor(t){this.helper=t}fillPolygons(t,n){let i=rt(t,n);return{type:"fillSketch",ops:this.dashedLine(i,n)}}dashedLine(t,n){let i=n.dashOffset<0?n.hachureGap<0?n.strokeWidth*4:n.hachureGap:n.dashOffset,o=n.dashGap<0?n.hachureGap<0?n.strokeWidth*4:n.hachureGap:n.dashGap,r=[];return t.forEach(s=>{let a=Rt(s),l=Math.floor(a/(i+o)),d=(a+o-l*(i+o))/2,c=s[0],u=s[1];c[0]>u[0]&&(c=s[1],u=s[0]);let p=Math.atan((u[1]-c[1])/(u[0]-c[0]));for(let m=0;m<l;m++){let f=m*(i+o),E=f+i,h=[c[0]+f*Math.cos(p)+d*Math.cos(p),c[1]+f*Math.sin(p)+d*Math.sin(p)],g=[c[0]+E*Math.cos(p)+d*Math.cos(p),c[1]+E*Math.sin(p)+d*Math.sin(p)];r.push(...this.helper.doubleLineOps(h[0],h[1],g[0],g[1],n))}}),r}};P();var wi=class{constructor(t){this.helper=t}fillPolygons(t,n){let i=n.hachureGap<0?n.strokeWidth*4:n.hachureGap,o=n.zigzagOffset<0?i:n.zigzagOffset;n=Object.assign({},n,{hachureGap:i+o});let r=rt(t,n);return{type:"fillSketch",ops:this.zigzagLines(r,o,n)}}zigzagLines(t,n,i){let o=[];return t.forEach(r=>{let s=Rt(r),a=Math.round(s/(2*n)),l=r[0],d=r[1];l[0]>d[0]&&(l=r[1],d=r[0]);let c=Math.atan((d[1]-l[1])/(d[0]-l[0]));for(let u=0;u<a;u++){let p=u*2*n,m=(u+1)*2*n,f=Math.sqrt(2*Math.pow(n,2)),E=[l[0]+p*Math.cos(c),l[1]+p*Math.sin(c)],h=[l[0]+m*Math.cos(c),l[1]+m*Math.sin(c)],g=[E[0]+f*Math.cos(c+Math.PI/4),E[1]+f*Math.sin(c+Math.PI/4)];o.push(...this.helper.doubleLineOps(E[0],E[1],g[0],g[1],i),...this.helper.doubleLineOps(g[0],g[1],h[0],h[1],i))}}),o}};var ve={};function Ss(e,t){let n=e.fillStyle||"hachure";if(!ve[n])switch(n){case"zigzag":ve[n]||(ve[n]=new hi(t));break;case"cross-hatch":ve[n]||(ve[n]=new Ei(t));break;case"dots":ve[n]||(ve[n]=new gi(t));break;case"dashed":ve[n]||(ve[n]=new xi(t));break;case"zigzag-line":ve[n]||(ve[n]=new wi(t));break;case"hachure":default:n="hachure",ve[n]||(ve[n]=new Ot(t));break}return ve[n]}P();function Ms(){return Math.floor(Math.random()*2**31)}var yi=class{constructor(t){this.seed=t}next(){return this.seed?(2**31-1&(this.seed=Math.imul(48271,this.seed)))/2**31:Math.random()}};P();P();var bi={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function Ic(e){let t=new Array;for(;e!=="";)if(e.match(/^([ \t\r\n,]+)/))e=e.substr(RegExp.$1.length);else if(e.match(/^([aAcChHlLmMqQsStTvVzZ])/))t[t.length]={type:0,text:RegExp.$1},e=e.substr(RegExp.$1.length);else if(e.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))t[t.length]={type:1,text:`${parseFloat(RegExp.$1)}`},e=e.substr(RegExp.$1.length);else return[];return t[t.length]={type:2,text:""},t}function Fo(e,t){return e.type===t}function yn(e){let t=[],n=Ic(e),i="BOD",o=0,r=n[o];for(;!Fo(r,2);){let s=0,a=[];if(i==="BOD")if(r.text==="M"||r.text==="m")o++,s=bi[r.text],i=r.text;else return yn("M0,0"+e);else Fo(r,1)?s=bi[i]:(o++,s=bi[r.text],i=r.text);if(o+s<n.length){for(let l=o;l<o+s;l++){let d=n[l];if(Fo(d,1))a[a.length]=+d.text;else throw new Error("Param not a number: "+i+","+d.text)}if(typeof bi[i]=="number"){let l={key:i,data:a};t.push(l),o+=s,r=n[o],i==="M"&&(i="L"),i==="m"&&(i="l")}else throw new Error("Bad segment: "+i)}else throw new Error("Path data ended short")}return t}P();function zn(e){let t=0,n=0,i=0,o=0,r=[];for(let{key:s,data:a}of e)switch(s){case"M":r.push({key:"M",data:[...a]}),[t,n]=a,[i,o]=a;break;case"m":t+=a[0],n+=a[1],r.push({key:"M",data:[t,n]}),i=t,o=n;break;case"L":r.push({key:"L",data:[...a]}),[t,n]=a;break;case"l":t+=a[0],n+=a[1],r.push({key:"L",data:[t,n]});break;case"C":r.push({key:"C",data:[...a]}),t=a[4],n=a[5];break;case"c":{let l=a.map((d,c)=>c%2?d+n:d+t);r.push({key:"C",data:l}),t=l[4],n=l[5];break}case"Q":r.push({key:"Q",data:[...a]}),t=a[2],n=a[3];break;case"q":{let l=a.map((d,c)=>c%2?d+n:d+t);r.push({key:"Q",data:l}),t=l[2],n=l[3];break}case"A":r.push({key:"A",data:[...a]}),t=a[5],n=a[6];break;case"a":t+=a[5],n+=a[6],r.push({key:"A",data:[a[0],a[1],a[2],a[3],a[4],t,n]});break;case"H":r.push({key:"H",data:[...a]}),t=a[0];break;case"h":t+=a[0],r.push({key:"H",data:[t]});break;case"V":r.push({key:"V",data:[...a]}),n=a[0];break;case"v":n+=a[0],r.push({key:"V",data:[n]});break;case"S":r.push({key:"S",data:[...a]}),t=a[2],n=a[3];break;case"s":{let l=a.map((d,c)=>c%2?d+n:d+t);r.push({key:"S",data:l}),t=l[2],n=l[3];break}case"T":r.push({key:"T",data:[...a]}),t=a[0],n=a[1];break;case"t":t+=a[0],n+=a[1],r.push({key:"T",data:[t,n]});break;case"Z":case"z":r.push({key:"Z",data:[]}),t=i,n=o;break}return r}P();function Yn(e){let t=[],n="",i=0,o=0,r=0,s=0,a=0,l=0;for(let{key:d,data:c}of e){switch(d){case"M":t.push({key:"M",data:[...c]}),[i,o]=c,[r,s]=c;break;case"C":t.push({key:"C",data:[...c]}),i=c[4],o=c[5],a=c[2],l=c[3];break;case"L":t.push({key:"L",data:[...c]}),[i,o]=c;break;case"H":i=c[0],t.push({key:"L",data:[i,o]});break;case"V":o=c[0],t.push({key:"L",data:[i,o]});break;case"S":{let u=0,p=0;n==="C"||n==="S"?(u=i+(i-a),p=o+(o-l)):(u=i,p=o),t.push({key:"C",data:[u,p,...c]}),a=c[0],l=c[1],i=c[2],o=c[3];break}case"T":{let[u,p]=c,m=0,f=0;n==="Q"||n==="T"?(m=i+(i-a),f=o+(o-l)):(m=i,f=o);let E=i+2*(m-i)/3,h=o+2*(f-o)/3,g=u+2*(m-u)/3,x=p+2*(f-p)/3;t.push({key:"C",data:[E,h,g,x,u,p]}),a=m,l=f,i=u,o=p;break}case"Q":{let[u,p,m,f]=c,E=i+2*(u-i)/3,h=o+2*(p-o)/3,g=m+2*(u-m)/3,x=f+2*(p-f)/3;t.push({key:"C",data:[E,h,g,x,m,f]}),a=u,l=p,i=m,o=f;break}case"A":{let u=Math.abs(c[0]),p=Math.abs(c[1]),m=c[2],f=c[3],E=c[4],h=c[5],g=c[6];u===0||p===0?(t.push({key:"C",data:[i,o,h,g,h,g]}),i=h,o=g):(i!==h||o!==g)&&(Ts(i,o,h,g,u,p,m,f,E).forEach(function(y){t.push({key:"C",data:y})}),i=h,o=g);break}case"Z":t.push({key:"Z",data:[]}),i=r,o=s;break}n=d}return t}function Sc(e){return Math.PI*e/180}function _n(e,t,n){let i=e*Math.cos(n)-t*Math.sin(n),o=e*Math.sin(n)+t*Math.cos(n);return[i,o]}function Ts(e,t,n,i,o,r,s,a,l,d){let c=Sc(s),u=[],p=0,m=0,f=0,E=0;if(d)[p,m,f,E]=d;else{[e,t]=_n(e,t,-c),[n,i]=_n(n,i,-c);let R=(e-n)/2,L=(t-i)/2,V=R*R/(o*o)+L*L/(r*r);V>1&&(V=Math.sqrt(V),o=V*o,r=V*r);let H=a===l?-1:1,te=o*o,S=r*r,Q=te*S-te*L*L-S*R*R,$=te*L*L+S*R*R,ne=H*Math.sqrt(Math.abs(Q/$));f=ne*o*L/r+(e+n)/2,E=ne*-r*R/o+(t+i)/2,p=Math.asin(parseFloat(((t-E)/r).toFixed(9))),m=Math.asin(parseFloat(((i-E)/r).toFixed(9))),e<f&&(p=Math.PI-p),n<f&&(m=Math.PI-m),p<0&&(p=Math.PI*2+p),m<0&&(m=Math.PI*2+m),l&&p>m&&(p=p-Math.PI*2),!l&&m>p&&(m=m-Math.PI*2)}let h=m-p;if(Math.abs(h)>Math.PI*120/180){let R=m,L=n,V=i;l&&m>p?m=p+Math.PI*120/180*1:m=p+Math.PI*120/180*-1,n=f+o*Math.cos(m),i=E+r*Math.sin(m),u=Ts(n,i,L,V,o,r,s,0,l,[m,R,f,E])}h=m-p;let g=Math.cos(p),x=Math.sin(p),y=Math.cos(m),b=Math.sin(m),w=Math.tan(h/4),I=4/3*o*w,M=4/3*r*w,D=[e,t],T=[e+I*x,t-M*g],N=[n+I*b,i-M*y],C=[n,i];if(T[0]=2*D[0]-T[0],T[1]=2*D[1]-T[1],d)return[T,N,C].concat(u);{u=[T,N,C].concat(u);let R=[];for(let L=0;L<u.length;L+=3){let V=_n(u[L][0],u[L][1],c),H=_n(u[L+1][0],u[L+1][1],c),te=_n(u[L+2][0],u[L+2][1],c);R.push([V[0],V[1],H[0],H[1],te[0],te[1]])}return R}}var Mc={randOffset:Dc,randOffsetWithRange:vc,ellipse:Ac,doubleLineOps:Lc};function No(e,t,n,i,o){return{type:"path",ops:ht(e,t,n,i,o)}}function Un(e,t,n){let i=(e||[]).length;if(i>2){let o=[];for(let r=0;r<i-1;r++)o.push(...ht(e[r][0],e[r][1],e[r+1][0],e[r+1][1],n));return t&&o.push(...ht(e[i-1][0],e[i-1][1],e[0][0],e[0][1],n)),{type:"path",ops:o}}else if(i===2)return No(e[0][0],e[0][1],e[1][0],e[1][1],n);return{type:"path",ops:[]}}function Tc(e,t){return Un(e,!0,t)}function Cs(e,t,n,i,o){let r=[[e,t],[e+n,t],[e+n,t+i],[e,t+i]];return Tc(r,o)}function Ho(e,t){let n=Ds(e,1*(1+t.roughness*.2),t);if(!t.disableMultiStroke){let i=Ds(e,1.5*(1+t.roughness*.22),Cc(t));n=n.concat(i)}return{type:"path",ops:n}}function Ac(e,t,n,i,o){let r=zo(n,i,o);return Si(e,t,o,r).opset}function zo(e,t,n){let i=Math.sqrt(Math.PI*2*Math.sqrt((Math.pow(e/2,2)+Math.pow(t/2,2))/2)),o=Math.ceil(Math.max(n.curveStepCount,n.curveStepCount/Math.sqrt(200)*i)),r=Math.PI*2/o,s=Math.abs(e/2),a=Math.abs(t/2),l=1-n.curveFitting;return s+=k(s*l,n),a+=k(a*l,n),{increment:r,rx:s,ry:a}}function Si(e,t,n,i){let[o,r]=vs(i.increment,e,t,i.rx,i.ry,1,i.increment*Pi(.1,Pi(.4,1,n),n),n),s=Ii(o,null,n);if(!n.disableMultiStroke&&n.roughness!==0){let[a]=vs(i.increment,e,t,i.rx,i.ry,1.5,0,n),l=Ii(a,null,n);s=s.concat(l)}return{estimatedPoints:r,opset:{type:"path",ops:s}}}function _o(e,t,n,i,o,r,s,a,l){let d=e,c=t,u=Math.abs(n/2),p=Math.abs(i/2);u+=k(u*.01,l),p+=k(p*.01,l);let m=o,f=r;for(;m<0;)m+=Math.PI*2,f+=Math.PI*2;f-m>Math.PI*2&&(m=0,f=Math.PI*2);let E=Math.PI*2/l.curveStepCount,h=Math.min(E/2,(f-m)/2),g=Ls(h,d,c,u,p,m,f,1,l);if(!l.disableMultiStroke){let x=Ls(h,d,c,u,p,m,f,1.5,l);g.push(...x)}return s&&(a?g.push(...ht(d,c,d+u*Math.cos(m),c+p*Math.sin(m),l),...ht(d,c,d+u*Math.cos(f),c+p*Math.sin(f),l)):g.push({op:"lineTo",data:[d,c]},{op:"lineTo",data:[d+u*Math.cos(m),c+p*Math.sin(m)]})),{type:"path",ops:g}}function Yo(e,t){let n=Yn(zn(yn(e))),i=[],o=[0,0],r=[0,0];for(let{key:s,data:a}of n)switch(s){case"M":{r=[a[0],a[1]],o=[a[0],a[1]];break}case"L":i.push(...ht(r[0],r[1],a[0],a[1],t)),r=[a[0],a[1]];break;case"C":{let[l,d,c,u,p,m]=a;i.push(...Bc(l,d,c,u,p,m,r,t)),r=[p,m];break}case"Z":i.push(...ht(r[0],r[1],o[0],o[1],t)),r=[o[0],o[1]];break}return{type:"path",ops:i}}function Mi(e,t){let n=[];for(let i of e)if(i.length){let o=t.maxRandomnessOffset||0,r=i.length;if(r>2){n.push({op:"move",data:[i[0][0]+k(o,t),i[0][1]+k(o,t)]});for(let s=1;s<r;s++)n.push({op:"lineTo",data:[i[s][0]+k(o,t),i[s][1]+k(o,t)]})}}return{type:"fillPath",ops:n}}function dn(e,t){return Ss(t,Mc).fillPolygons(e,t)}function Bs(e,t,n,i,o,r,s){let a=e,l=t,d=Math.abs(n/2),c=Math.abs(i/2);d+=k(d*.01,s),c+=k(c*.01,s);let u=o,p=r;for(;u<0;)u+=Math.PI*2,p+=Math.PI*2;p-u>Math.PI*2&&(u=0,p=Math.PI*2);let m=(p-u)/s.curveStepCount,f=[];for(let E=u;E<=p;E=E+m)f.push([a+d*Math.cos(E),l+c*Math.sin(E)]);return f.push([a+d*Math.cos(p),l+c*Math.sin(p)]),f.push([a,l]),dn([f],s)}function Dc(e,t){return k(e,t)}function vc(e,t,n){return Pi(e,t,n)}function Lc(e,t,n,i,o){return ht(e,t,n,i,o,!0)}function Cc(e){let t=Object.assign({},e);return t.randomizer=void 0,e.seed&&(t.seed=e.seed+1),t}function Gs(e){return e.randomizer||(e.randomizer=new yi(e.seed||0)),e.randomizer.next()}function Pi(e,t,n,i=1){return n.roughness*i*(Gs(n)*(t-e)+e)}function k(e,t,n=1){return Pi(-e,e,t,n)}function ht(e,t,n,i,o,r=!1){let s=r?o.disableMultiStrokeFill:o.disableMultiStroke,a=As(e,t,n,i,o,!0,!1);if(s)return a;let l=As(e,t,n,i,o,!0,!0);return a.concat(l)}function As(e,t,n,i,o,r,s){let a=Math.pow(e-n,2)+Math.pow(t-i,2),l=Math.sqrt(a),d=1;l<200?d=1:l>500?d=.4:d=-.0016668*l+1.233334;let c=o.maxRandomnessOffset||0;c*c*100>a&&(c=l/10);let u=c/2,p=.2+Gs(o)*.2,m=o.bowing*o.maxRandomnessOffset*(i-t)/200,f=o.bowing*o.maxRandomnessOffset*(e-n)/200;m=k(m,o,d),f=k(f,o,d);let E=[],h=()=>k(u,o,d),g=()=>k(c,o,d),x=o.preserveVertices;return r&&(s?E.push({op:"move",data:[e+(x?0:h()),t+(x?0:h())]}):E.push({op:"move",data:[e+(x?0:k(c,o,d)),t+(x?0:k(c,o,d))]})),s?E.push({op:"bcurveTo",data:[m+e+(n-e)*p+h(),f+t+(i-t)*p+h(),m+e+2*(n-e)*p+h(),f+t+2*(i-t)*p+h(),n+(x?0:h()),i+(x?0:h())]}):E.push({op:"bcurveTo",data:[m+e+(n-e)*p+g(),f+t+(i-t)*p+g(),m+e+2*(n-e)*p+g(),f+t+2*(i-t)*p+g(),n+(x?0:g()),i+(x?0:g())]}),E}function Ds(e,t,n){let i=[];i.push([e[0][0]+k(t,n),e[0][1]+k(t,n)]),i.push([e[0][0]+k(t,n),e[0][1]+k(t,n)]);for(let o=1;o<e.length;o++)i.push([e[o][0]+k(t,n),e[o][1]+k(t,n)]),o===e.length-1&&i.push([e[o][0]+k(t,n),e[o][1]+k(t,n)]);return Ii(i,null,n)}function Ii(e,t,n){let i=e.length,o=[];if(i>3){let r=[],s=1-n.curveTightness;o.push({op:"move",data:[e[1][0],e[1][1]]});for(let a=1;a+2<i;a++){let l=e[a];r[0]=[l[0],l[1]],r[1]=[l[0]+(s*e[a+1][0]-s*e[a-1][0])/6,l[1]+(s*e[a+1][1]-s*e[a-1][1])/6],r[2]=[e[a+1][0]+(s*e[a][0]-s*e[a+2][0])/6,e[a+1][1]+(s*e[a][1]-s*e[a+2][1])/6],r[3]=[e[a+1][0],e[a+1][1]],o.push({op:"bcurveTo",data:[r[1][0],r[1][1],r[2][0],r[2][1],r[3][0],r[3][1]]})}if(t&&t.length===2){let a=n.maxRandomnessOffset;o.push({op:"lineTo",data:[t[0]+k(a,n),t[1]+k(a,n)]})}}else i===3?(o.push({op:"move",data:[e[1][0],e[1][1]]}),o.push({op:"bcurveTo",data:[e[1][0],e[1][1],e[2][0],e[2][1],e[2][0],e[2][1]]})):i===2&&o.push(...ht(e[0][0],e[0][1],e[1][0],e[1][1],n));return o}function vs(e,t,n,i,o,r,s,a){let l=a.roughness===0,d=[],c=[];if(l){e=e/4,c.push([t+i*Math.cos(-e),n+o*Math.sin(-e)]);for(let u=0;u<=Math.PI*2;u=u+e){let p=[t+i*Math.cos(u),n+o*Math.sin(u)];d.push(p),c.push(p)}c.push([t+i*Math.cos(0),n+o*Math.sin(0)]),c.push([t+i*Math.cos(e),n+o*Math.sin(e)])}else{let u=k(.5,a)-Math.PI/2;c.push([k(r,a)+t+.9*i*Math.cos(u-e),k(r,a)+n+.9*o*Math.sin(u-e)]);let p=Math.PI*2+u-.01;for(let m=u;m<p;m=m+e){let f=[k(r,a)+t+i*Math.cos(m),k(r,a)+n+o*Math.sin(m)];d.push(f),c.push(f)}c.push([k(r,a)+t+i*Math.cos(u+Math.PI*2+s*.5),k(r,a)+n+o*Math.sin(u+Math.PI*2+s*.5)]),c.push([k(r,a)+t+.98*i*Math.cos(u+s),k(r,a)+n+.98*o*Math.sin(u+s)]),c.push([k(r,a)+t+.9*i*Math.cos(u+s*.5),k(r,a)+n+.9*o*Math.sin(u+s*.5)])}return[c,d]}function Ls(e,t,n,i,o,r,s,a,l){let d=r+k(.1,l),c=[];c.push([k(a,l)+t+.9*i*Math.cos(d-e),k(a,l)+n+.9*o*Math.sin(d-e)]);for(let u=d;u<=s;u=u+e)c.push([k(a,l)+t+i*Math.cos(u),k(a,l)+n+o*Math.sin(u)]);return c.push([t+i*Math.cos(s),n+o*Math.sin(s)]),c.push([t+i*Math.cos(s),n+o*Math.sin(s)]),Ii(c,null,l)}function Bc(e,t,n,i,o,r,s,a){let l=[],d=[a.maxRandomnessOffset||1,(a.maxRandomnessOffset||1)+.3],c=[0,0],u=a.disableMultiStroke?1:2,p=a.preserveVertices;for(let m=0;m<u;m++)m===0?l.push({op:"move",data:[s[0],s[1]]}):l.push({op:"move",data:[s[0]+(p?0:k(d[0],a)),s[1]+(p?0:k(d[0],a))]}),c=p?[o,r]:[o+k(d[m],a),r+k(d[m],a)],l.push({op:"bcurveTo",data:[e+k(d[m],a),t+k(d[m],a),n+k(d[m],a),i+k(d[m],a),c[0],c[1]]});return l}P();function Xn(e){return[...e]}function ks(e,t=0){let n=e.length;if(n<3)throw new Error("A curve must have at least three points.");let i=[];if(n===3)i.push(Xn(e[0]),Xn(e[1]),Xn(e[2]),Xn(e[2]));else{let o=[];o.push(e[0],e[0]);for(let a=1;a<e.length;a++)o.push(e[a]),a===e.length-1&&o.push(e[a]);let r=[],s=1-t;i.push(Xn(o[0]));for(let a=1;a+2<o.length;a++){let l=o[a];r[0]=[l[0],l[1]],r[1]=[l[0]+(s*o[a+1][0]-s*o[a-1][0])/6,l[1]+(s*o[a+1][1]-s*o[a-1][1])/6],r[2]=[o[a+1][0]+(s*o[a][0]-s*o[a+2][0])/6,o[a+1][1]+(s*o[a][1]-s*o[a+2][1])/6],r[3]=[o[a+1][0],o[a+1][1]],i.push(r[1],r[2],r[3])}}return i}P();function Gc(e,t){return Math.sqrt(Ti(e,t))}function Ti(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)}function kc(e,t,n){let i=Ti(t,n);if(i===0)return Ti(e,t);let o=((e[0]-t[0])*(n[0]-t[0])+(e[1]-t[1])*(n[1]-t[1]))/i;return o=Math.max(0,Math.min(1,o)),Ti(e,cn(t,n,o))}function cn(e,t,n){return[e[0]+(t[0]-e[0])*n,e[1]+(t[1]-e[1])*n]}function Oc(e,t){let n=e[t+0],i=e[t+1],o=e[t+2],r=e[t+3],s=3*i[0]-2*n[0]-r[0];s*=s;let a=3*i[1]-2*n[1]-r[1];a*=a;let l=3*o[0]-2*r[0]-n[0];l*=l;let d=3*o[1]-2*r[1]-n[1];return d*=d,s<l&&(s=l),a<d&&(a=d),s+a}function Uo(e,t,n,i){let o=i||[];if(Oc(e,t)<n){let r=e[t+0];o.length?Gc(o[o.length-1],r)>1&&o.push(r):o.push(r),o.push(e[t+3])}else{let s=e[t+0],a=e[t+1],l=e[t+2],d=e[t+3],c=cn(s,a,.5),u=cn(a,l,.5),p=cn(l,d,.5),m=cn(c,u,.5),f=cn(u,p,.5),E=cn(m,f,.5);Uo([s,c,m,E],0,n,o),Uo([E,f,p,d],0,n,o)}return o}function jn(e,t){return Ai(e,0,e.length,t)}function Ai(e,t,n,i,o){let r=o||[],s=e[t],a=e[n-1],l=0,d=1;for(let c=t+1;c<n-1;++c){let u=kc(e[c],s,a);u>l&&(l=u,d=c)}return Math.sqrt(l)>i?(Ai(e,t,d+1,i,r),Ai(e,d,n,i,r)):(r.length||r.push(s),r.push(a)),r}function Et(e,t=.15,n){let i=[],o=(e.length-1)/3;for(let r=0;r<o;r++){let s=r*3;Uo(e,s,t,i)}return n&&n>0?Ai(i,0,i.length,n):i}P();function Os(e,t,n){let i=yn(e),o=Yn(zn(i)),r=[],s=[],a=[0,0],l=[],d=()=>{l.length>=4&&s.push(...Et(l,t)),l=[]},c=()=>{d(),s.length&&(r.push(s),s=[])};for(let{key:p,data:m}of o)switch(p){case"M":c(),a=[m[0],m[1]],s.push(a);break;case"L":d(),s.push([m[0],m[1]]);break;case"C":if(!l.length){let f=s.length?s[s.length-1]:a;l.push([f[0],f[1]])}l.push([m[0],m[1]]),l.push([m[2],m[3]]),l.push([m[4],m[5]]);break;case"Z":d(),s.push([a[0],a[1]]);break}if(c(),!n)return r;let u=[];for(let p of r){let m=jn(p,n);m.length&&u.push(m)}return u}var Ne="none",je=class{constructor(t){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1,fillShapeRoughnessGain:.8},this.config=t||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return Ms()}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,n,i){return{shape:t,sets:n||[],options:i||this.defaultOptions}}line(t,n,i,o,r){let s=this._o(r);return this._d("line",[No(t,n,i,o,s)],s)}rectangle(t,n,i,o,r){let s=this._o(r),a=[],l=Cs(t,n,i,o,s);if(s.fill){let d=[[t,n],[t+i,n],[t+i,n+o],[t,n+o]];s.fillStyle==="solid"?a.push(Mi([d],s)):a.push(dn([d],s))}return s.stroke!==Ne&&a.push(l),this._d("rectangle",a,s)}ellipse(t,n,i,o,r){let s=this._o(r),a=[],l=zo(i,o,s),d=Si(t,n,s,l);if(s.fill)if(s.fillStyle==="solid"){let c=Si(t,n,s,l).opset;c.type="fillPath",a.push(c)}else a.push(dn([d.estimatedPoints],s));return s.stroke!==Ne&&a.push(d.opset),this._d("ellipse",a,s)}circle(t,n,i,o){let r=this.ellipse(t,n,i,i,o);return r.shape="circle",r}linearPath(t,n){let i=this._o(n);return this._d("linearPath",[Un(t,!1,i)],i)}arc(t,n,i,o,r,s,a=!1,l){let d=this._o(l),c=[],u=_o(t,n,i,o,r,s,a,!0,d);if(a&&d.fill)if(d.fillStyle==="solid"){let p=Object.assign({},d);p.disableMultiStroke=!0;let m=_o(t,n,i,o,r,s,!0,!1,p);m.type="fillPath",c.push(m)}else c.push(Bs(t,n,i,o,r,s,d));return d.stroke!==Ne&&c.push(u),this._d("arc",c,d)}curve(t,n){let i=this._o(n),o=[],r=Ho(t,i);if(i.fill&&i.fill!==Ne&&t.length>=3)if(i.fillStyle==="solid"){let s=Ho(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));o.push({type:"fillPath",ops:this._mergedShape(s.ops)})}else{let s=ks(t),a=Et(s,10,(1+i.roughness)/2);o.push(dn([a],i))}return i.stroke!==Ne&&o.push(r),this._d("curve",o,i)}polygon(t,n){let i=this._o(n),o=[],r=Un(t,!0,i);return i.fill&&(i.fillStyle==="solid"?o.push(Mi([t],i)):o.push(dn([t],i))),i.stroke!==Ne&&o.push(r),this._d("polygon",o,i)}path(t,n){let i=this._o(n),o=[];if(!t)return this._d("path",o,i);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");let r=i.fill&&i.fill!=="transparent"&&i.fill!==Ne,s=i.stroke!==Ne,a=!!(i.simplification&&i.simplification<1),l=a?4-4*(i.simplification||1):(1+i.roughness)/2,d=Os(t,1,l),c=Yo(t,i);if(r)if(i.fillStyle==="solid")if(d.length===1){let u=Yo(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));o.push({type:"fillPath",ops:this._mergedShape(u.ops)})}else o.push(Mi(d,i));else o.push(dn(d,i));return s&&(a?d.forEach(u=>{o.push(Un(u,!1,i))}):o.push(c)),this._d("path",o,i)}opsToPath(t,n){let i="";for(let o of t.ops){let r=typeof n=="number"&&n>=0?o.data.map(s=>+s.toFixed(n)):o.data;switch(o.op){case"move":i+=`M${r[0]} ${r[1]} `;break;case"bcurveTo":i+=`C${r[0]} ${r[1]}, ${r[2]} ${r[3]}, ${r[4]} ${r[5]} `;break;case"lineTo":i+=`L${r[0]} ${r[1]} `;break}}return i.trim()}toPaths(t){let n=t.sets||[],i=t.options||this.defaultOptions,o=[];for(let r of n){let s=null;switch(r.type){case"path":s={d:this.opsToPath(r),stroke:i.stroke,strokeWidth:i.strokeWidth,fill:Ne};break;case"fillPath":s={d:this.opsToPath(r),stroke:Ne,strokeWidth:0,fill:i.fill||Ne};break;case"fillSketch":s=this.fillSketch(r,i);break}s&&o.push(s)}return o}fillSketch(t,n){let i=n.fillWeight;return i<0&&(i=n.strokeWidth/2),{d:this.opsToPath(t),stroke:n.fill||Ne,strokeWidth:i,fill:Ne}}_mergedShape(t){return t.filter((n,i)=>i===0?!0:n.op!=="move")}};var Di=class{constructor(t,n){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new je(n)}draw(t){let n=t.sets||[],i=t.options||this.getDefaultOptions(),o=this.ctx,r=t.options.fixedDecimalPlaceDigits;for(let s of n)switch(s.type){case"path":o.save(),o.strokeStyle=i.stroke==="none"?"transparent":i.stroke,o.lineWidth=i.strokeWidth,i.strokeLineDash&&o.setLineDash(i.strokeLineDash),i.strokeLineDashOffset&&(o.lineDashOffset=i.strokeLineDashOffset),this._drawToContext(o,s,r),o.restore();break;case"fillPath":{o.save(),o.fillStyle=i.fill||"";let a=t.shape==="curve"||t.shape==="polygon"||t.shape==="path"?"evenodd":"nonzero";this._drawToContext(o,s,r,a),o.restore();break}case"fillSketch":this.fillSketch(o,s,i);break}}fillSketch(t,n,i){let o=i.fillWeight;o<0&&(o=i.strokeWidth/2),t.save(),i.fillLineDash&&t.setLineDash(i.fillLineDash),i.fillLineDashOffset&&(t.lineDashOffset=i.fillLineDashOffset),t.strokeStyle=i.fill||"",t.lineWidth=o,this._drawToContext(t,n,i.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,n,i,o="nonzero"){t.beginPath();for(let r of n.ops){let s=typeof i=="number"&&i>=0?r.data.map(a=>+a.toFixed(i)):r.data;switch(r.op){case"move":t.moveTo(s[0],s[1]);break;case"bcurveTo":t.bezierCurveTo(s[0],s[1],s[2],s[3],s[4],s[5]);break;case"lineTo":t.lineTo(s[0],s[1]);break}}n.type==="fillPath"?t.fill(o):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,n,i,o,r){let s=this.gen.line(t,n,i,o,r);return this.draw(s),s}rectangle(t,n,i,o,r){let s=this.gen.rectangle(t,n,i,o,r);return this.draw(s),s}ellipse(t,n,i,o,r){let s=this.gen.ellipse(t,n,i,o,r);return this.draw(s),s}circle(t,n,i,o){let r=this.gen.circle(t,n,i,o);return this.draw(r),r}linearPath(t,n){let i=this.gen.linearPath(t,n);return this.draw(i),i}polygon(t,n){let i=this.gen.polygon(t,n);return this.draw(i),i}arc(t,n,i,o,r,s,a=!1,l){let d=this.gen.arc(t,n,i,o,r,s,a,l);return this.draw(d),d}curve(t,n){let i=this.gen.curve(t,n);return this.draw(i),i}path(t,n){let i=this.gen.path(t,n);return this.draw(i),i}};P();P();var Wn="http://www.w3.org/2000/svg";var vi=class{constructor(t,n){this.svg=t,this.gen=new je(n)}draw(t){let n=t.sets||[],i=t.options||this.getDefaultOptions(),o=this.svg.ownerDocument||window.document,r=o.createElementNS(Wn,"g"),s=t.options.fixedDecimalPlaceDigits;for(let a of n){let l=null;switch(a.type){case"path":{l=o.createElementNS(Wn,"path"),l.setAttribute("d",this.opsToPath(a,s)),l.setAttribute("stroke",i.stroke),l.setAttribute("stroke-width",i.strokeWidth+""),l.setAttribute("fill","none"),i.strokeLineDash&&l.setAttribute("stroke-dasharray",i.strokeLineDash.join(" ").trim()),i.strokeLineDashOffset&&l.setAttribute("stroke-dashoffset",`${i.strokeLineDashOffset}`);break}case"fillPath":{l=o.createElementNS(Wn,"path"),l.setAttribute("d",this.opsToPath(a,s)),l.setAttribute("stroke","none"),l.setAttribute("stroke-width","0"),l.setAttribute("fill",i.fill||""),(t.shape==="curve"||t.shape==="polygon")&&l.setAttribute("fill-rule","evenodd");break}case"fillSketch":{l=this.fillSketch(o,a,i);break}}l&&r.appendChild(l)}return r}fillSketch(t,n,i){let o=i.fillWeight;o<0&&(o=i.strokeWidth/2);let r=t.createElementNS(Wn,"path");return r.setAttribute("d",this.opsToPath(n,i.fixedDecimalPlaceDigits)),r.setAttribute("stroke",i.fill||""),r.setAttribute("stroke-width",o+""),r.setAttribute("fill","none"),i.fillLineDash&&r.setAttribute("stroke-dasharray",i.fillLineDash.join(" ").trim()),i.fillLineDashOffset&&r.setAttribute("stroke-dashoffset",`${i.fillLineDashOffset}`),r}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(t,n){return this.gen.opsToPath(t,n)}line(t,n,i,o,r){let s=this.gen.line(t,n,i,o,r);return this.draw(s)}rectangle(t,n,i,o,r){let s=this.gen.rectangle(t,n,i,o,r);return this.draw(s)}ellipse(t,n,i,o,r){let s=this.gen.ellipse(t,n,i,o,r);return this.draw(s)}circle(t,n,i,o){let r=this.gen.circle(t,n,i,o);return this.draw(r)}linearPath(t,n){let i=this.gen.linearPath(t,n);return this.draw(i)}polygon(t,n){let i=this.gen.polygon(t,n);return this.draw(i)}arc(t,n,i,o,r,s,a=!1,l){let d=this.gen.arc(t,n,i,o,r,s,a,l);return this.draw(d)}curve(t,n){let i=this.gen.curve(t,n);return this.draw(i)}path(t,n){let i=this.gen.path(t,n);return this.draw(i)}};var un={canvas(e,t){return new Di(e,t)},svg(e,t){return new vi(e,t)},generator(e){return new je(e)},newSeed(){return je.newSeed()}};import{arrayToMap as $l,invariant as Ur,rescalePoints as Ul,sizeOf as af}from"@excalidraw/common";import{degreesToRadians as Yr,lineSegment as ge,pointDistance as lf,pointFrom as v,pointFromArray as Zl,pointRotateRads as se}from"@excalidraw/math";P();import{invariant as Rc}from"@excalidraw/common";import{curve as Fc,lineSegment as Nc,pointFrom as le,pointDistance as tx,pointFromArray as Hc,pointFromVector as zc,pointRotateRads as qe,polygon as Rs,polygonFromPoints as Xo,PRECISION as nx,segmentsIntersectAt as ix,vector as _c,vectorAdd as Yc,vectorFromPoint as Uc,vectorScale as ox}from"@excalidraw/math";import{getElementAbsoluteCoords as sx}from"@excalidraw/element";var Fs=e=>{let{angle:t,width:n,height:i,x:o,y:r}=e,s=o+n/2,a=r+i/2,l=le(s,a),d;return e.type==="diamond"?d=Rs(qe(le(s,r),l,t),qe(le(o+n,a),l,t),qe(le(s,r+i),l,t),qe(le(o,a),l,t)):d=Rs(qe(le(o,r),l,t),qe(le(o+n,r),l,t),qe(le(o+n,r+i),l,t),qe(le(o,r+i),l,t)),{type:"polygon",data:d}};var Ns=e=>{let{width:t,height:n,angle:i,x:o,y:r}=e;return{type:"ellipse",data:{center:le(o+t/2,r+n/2),angle:i,halfWidth:t/2,halfHeight:n/2}}},gt=e=>{if(!e)return[];for(let t of e.sets)if(t.type==="path")return t.ops;return e.sets[0].ops},Hs=(e,t=le(0,0),n,i)=>{let o=l=>qe(le(l[0]+t[0],l[1]+t[1]),i,n),r=gt(e),s=[],a=le(0,0);for(let l of r){if(l.op==="move"){let d=Hc(l.data);Rc(d!=null,"Ops data is not a point"),a=o(d)}if(l.op==="bcurveTo"){let d=o(le(l.data[0],l.data[1])),c=o(le(l.data[2],l.data[3])),u=o(le(l.data[4],l.data[5]));s.push(Fc(a,d,c,u)),a=u}}return{type:"polycurve",data:s}},Xc=e=>{let t=e[0],n=[];for(let i=1;i<e.length;i++){let o=e[i];n.push(Nc(t,o)),t=o}return n},zs=(e,t,n=!1)=>{let i=r=>qe(zc(Yc(Uc(r),_c(e.x,e.y))),t,e.angle),o=Xc(e.points.map(r=>i(r)));return n?{type:"polygon",data:Xo(o.flat())}:{type:"polyline",data:o}},_s=(e,t,n=le(0,0),i,o)=>{let r=c=>qe(le(c[0]+n[0],c[1]+n[1]),o,i);if(e.roundness===null)return{type:"polygon",data:Xo(e.points.map(c=>r(c)))};let s=gt(t),a=[],l=!1;for(let c of s)c.op==="move"?(l=!l,l&&a.push(le(c.data[0],c.data[1]))):c.op==="bcurveTo"?l&&(a.push(le(c.data[0],c.data[1])),a.push(le(c.data[2],c.data[3])),a.push(le(c.data[4],c.data[5]))):c.op==="lineTo"&&l&&a.push(le(c.data[0],c.data[1]));let d=Et(a,10,5).map(c=>r(c));return{type:"polygon",data:Xo(d)}};P();import{pointFrom as de,pointDistance as Fl,pointRotateRads as Lt}from"@excalidraw/math";import{ROUGHNESS as Jm,isTransparent as li,assertNever as ef,COLOR_PALETTE as tf,LINE_POLYGON_POINT_MERGE_DISTANCE as nf}from"@excalidraw/common";P();P();function Ys(e,t,n,i=o=>o){return e*i(.5-t*(.5-n))}function jc(e){return[-e[0],-e[1]]}function Qe(e,t){return[e[0]+t[0],e[1]+t[1]]}function We(e,t){return[e[0]-t[0],e[1]-t[1]]}function Ke(e,t){return[e[0]*t,e[1]*t]}function Wc(e,t){return[e[0]/t,e[1]/t]}function Vn(e){return[e[1],-e[0]]}function Us(e,t){return e[0]*t[0]+e[1]*t[1]}function Vc(e,t){return e[0]===t[0]&&e[1]===t[1]}function $c(e){return Math.hypot(e[0],e[1])}function Zc(e){return e[0]*e[0]+e[1]*e[1]}function Xs(e,t){return Zc(We(e,t))}function Vs(e){return Wc(e,$c(e))}function qc(e,t){return Math.hypot(e[1]-t[1],e[0]-t[0])}function $n(e,t,n){let i=Math.sin(n),o=Math.cos(n),r=e[0]-t[0],s=e[1]-t[1],a=r*o-s*i,l=r*i+s*o;return[a+t[0],l+t[1]]}function jo(e,t,n){return Qe(e,Ke(We(t,e),n))}function js(e,t,n){return Qe(e,Ke(t,n))}var{min:bn,PI:Kc}=Math,Ws=.275,Zn=Kc+1e-4;function Qc(e,t={}){let{size:n=16,smoothing:i=.5,thinning:o=.5,simulatePressure:r=!0,easing:s=S=>S,start:a={},end:l={},last:d=!1}=t,{cap:c=!0,easing:u=S=>S*(2-S)}=a,{cap:p=!0,easing:m=S=>--S*S*S+1}=l;if(e.length===0||n<=0)return[];let f=e[e.length-1].runningLength,E=a.taper===!1?0:a.taper===!0?Math.max(n,f):a.taper,h=l.taper===!1?0:l.taper===!0?Math.max(n,f):l.taper,g=Math.pow(n*i,2),x=[],y=[],b=e.slice(0,10).reduce((S,Q)=>{let $=Q.pressure;if(r){let ne=bn(1,Q.distance/n),sn=bn(1,1-ne);$=bn(1,S+(sn-S)*(ne*Ws))}return(S+$)/2},e[0].pressure),w=Ys(n,o,e[e.length-1].pressure,s),I,M=e[0].vector,D=e[0].point,T=D,N=D,C=T,R=!1;for(let S=0;S<e.length;S++){let{pressure:Q}=e[S],{point:$,vector:ne,distance:sn,runningLength:ot}=e[S];if(S<e.length-1&&f-ot<3)continue;if(o){if(r){let xe=bn(1,sn/n),ln=bn(1,1-xe);Q=bn(1,b+(ln-b)*(xe*Ws))}w=Ys(n,o,Q,s)}else w=n/2;I===void 0&&(I=w);let wn=ot<E?u(ot/E):1,ko=f-ot<h?m((f-ot)/h):1;w=Math.max(.01,w*Math.min(wn,ko));let mi=(S<e.length-1?e[S+1]:e[S]).vector,Hn=S<e.length-1?Us(ne,mi):1,Oo=Us(ne,M)<0&&!R,fi=Hn!==null&&Hn<0;if(Oo||fi){let xe=Ke(Vn(M),w);for(let ln=1/13,De=0;De<=1;De+=ln)N=$n(We($,xe),$,Zn*De),x.push(N),C=$n(Qe($,xe),$,Zn*-De),y.push(C);D=N,T=C,fi&&(R=!0);continue}if(R=!1,S===e.length-1){let xe=Ke(Vn(ne),w);x.push(We($,xe)),y.push(Qe($,xe));continue}let an=Ke(Vn(jo(mi,ne,Hn)),w);N=We($,an),(S<=1||Xs(D,N)>g)&&(x.push(N),D=N),C=Qe($,an),(S<=1||Xs(T,C)>g)&&(y.push(C),T=C),b=Q,M=ne}let L=e[0].point.slice(0,2),V=e.length>1?e[e.length-1].point.slice(0,2):Qe(e[0].point,[1,1]),H=[],te=[];if(e.length===1){if(!(E||h)||d){let S=js(L,Vs(Vn(We(L,V))),-(I||w)),Q=[];for(let $=1/13,ne=$;ne<=1;ne+=$)Q.push($n(S,L,Zn*2*ne));return Q}}else{if(!(E||h&&e.length===1))if(c)for(let Q=1/13,$=Q;$<=1;$+=Q){let ne=$n(y[0],L,Zn*$);H.push(ne)}else{let Q=We(x[0],y[0]),$=Ke(Q,.5),ne=Ke(Q,.51);H.push(We(L,$),We(L,ne),Qe(L,ne),Qe(L,$))}let S=Vn(jc(e[e.length-1].vector));if(h||E&&e.length===1)te.push(V);else if(p){let Q=js(V,S,w);for(let $=1/29,ne=$;ne<1;ne+=$)te.push($n(Q,V,Zn*3*ne))}else te.push(Qe(V,Ke(S,w)),Qe(V,Ke(S,w*.99)),We(V,Ke(S,w*.99)),We(V,Ke(S,w)))}return x.concat(te,y.reverse(),H)}function Jc(e,t={}){var n;let{streamline:i=.5,size:o=16,last:r=!1}=t;if(e.length===0)return[];let s=.15+(1-i)*.85,a=Array.isArray(e[0])?e:e.map(({x:m,y:f,pressure:E=.5})=>[m,f,E]);if(a.length===2){let m=a[1];a=a.slice(0,-1);for(let f=1;f<5;f++)a.push(jo(a[0],m,f/4))}a.length===1&&(a=[...a,[...Qe(a[0],[1,1]),...a[0].slice(2)]]);let l=[{point:[a[0][0],a[0][1]],pressure:a[0][2]>=0?a[0][2]:.25,vector:[1,1],distance:0,runningLength:0}],d=!1,c=0,u=l[0],p=a.length-1;for(let m=1;m<a.length;m++){let f=r&&m===p?a[m].slice(0,2):jo(u.point,a[m],s);if(Vc(u.point,f))continue;let E=qc(f,u.point);if(c+=E,m<p&&!d){if(c<o)continue;d=!0}u={point:f,pressure:a[m][2]>=0?a[m][2]:.5,vector:Vs(We(u.point,f)),distance:E,runningLength:c},l.push(u)}return l[0].vector=((n=l[1])==null?void 0:n.vector)||[0,0],l}function $s(e,t={}){return Qc(Jc(e,t),t)}import{isRightAngleRads as Hm}from"@excalidraw/math";import{BOUND_TEXT_PADDING as fo,DEFAULT_REDUCED_GLOBAL_ALPHA as zm,ELEMENT_READY_TO_ERASE_OPACITY as _m,FRAME_STYLE as ho,MIME_TYPES as zr,THEME as Dl,distance as Qt,getFontString as Ym,isRTL as Um,getVerticalOffset as Xm}from"@excalidraw/common";P();import{pointFrom as xt,pointCenter as eu,pointRotateRads as Ft,vectorFromPoint as Wo,vectorNormalize as Zs,vectorSubtract as qs,vectorAdd as Li,vectorScale as Ci,pointFromVector as Ks,clamp as Ie,isCloseTo as Qs}from"@excalidraw/math";var Se=10,mx=(e,t,n,i,o,r,s,a)=>{let{width:l,height:d}=Vo(e),c=i/l,u=o/d,p=(e.crop?.x??0)/c,m=(e.crop?.y??0)/u,f=Ft(xt(r,s),fe(e,t),-e.angle);r=f[0],s=f[1];let E=e.width,h=e.height,g=e.crop??{x:0,y:0,width:i,height:o,naturalWidth:i,naturalHeight:o},x=g.height,y=g.width,b=e.scale[0]===-1,w=e.scale[1]===-1,I=s-e.y,M=r-e.x;n.includes("n")&&(h=Ie(e.height-I,Se,w?d-m:e.height+m)),n.includes("s")&&(I=s-e.y-e.height,h=Ie(e.height+I,Se,w?e.height+m:d-m)),n.includes("e")&&(M=r-e.x-e.width,E=Ie(e.width+M,Se,b?e.width+p:l-p)),n.includes("w")&&(E=Ie(e.width-M,Se,b?l-p:e.width+p));let D=C=>{C.height=h*u,C.width=E*c};D(g);let T=(C,R)=>{D(R),C.includes("n")&&(w||(R.y+=x-R.height)),C.includes("s")&&w&&(R.y+=x-R.height),C.includes("e")&&b&&(R.x+=y-R.width),C.includes("w")&&(b||(R.x+=y-R.width))};switch(n){case"n":{if(a){let C=p+e.width/2,R=l-p-e.width/2,L=Math.min(C,R)*2;E=Ie(h*a,Se,L),h=E/a}T(n,g),a&&(g.x+=(y-g.width)/2);break}case"s":{if(a){let C=p+e.width/2,R=l-p-e.width/2,L=Math.min(C,R)*2;E=Ie(h*a,Se,L),h=E/a}T(n,g),a&&(g.x+=(y-g.width)/2);break}case"w":{if(a){let C=m+e.height/2,R=d-m-e.height/2,L=Math.min(C,R)*2;h=Ie(E/a,Se,L),E=h*a}T(n,g),a&&(g.y+=(x-g.height)/2);break}case"e":{if(a){let C=m+e.height/2,R=d-m-e.height/2,L=Math.min(C,R)*2;h=Ie(E/a,Se,L),E=h*a}T(n,g),a&&(g.y+=(x-g.height)/2);break}case"ne":{if(a)if(M>-I){let C=w?d-m:m+e.height;h=Ie(E/a,Se,C),E=h*a}else{let C=b?p+e.width:l-p;E=Ie(h*a,Se,C),h=E/a}T(n,g);break}case"nw":{if(a)if(M<I){let C=w?d-m:m+e.height;h=Ie(E/a,Se,C),E=h*a}else{let C=b?l-p:p+e.width;E=Ie(h*a,Se,C),h=E/a}T(n,g);break}case"se":{if(a)if(M>I){let C=w?m+e.height:d-m;h=Ie(E/a,Se,C),E=h*a}else{let C=b?p+e.width:l-p;E=Ie(h*a,Se,C),h=E/a}T(n,g);break}case"sw":{if(a)if(-M>I){let C=w?m+e.height:d-m;h=Ie(E/a,Se,C),E=h*a}else{let C=b?l-p:p+e.width;E=Ie(h*a,Se,C),h=E/a}T(n,g);break}default:break}let N=tu(e,n,E,h,!!a);return Qs(g.width,g.naturalWidth)&&Qs(g.height,g.naturalHeight)&&(g=null),{x:N[0],y:N[1],width:E,height:h,crop:g}},tu=(e,t,n,i,o)=>{let[r,s,a,l]=Nt(e,e.width,e.height,!0),d=xt(r,s),c=xt(a,l),u=eu(d,c),[p,m,f,E]=Nt(e,n,i,!0),h=f-p,g=E-m,x=[...d];if(["n","w","nw"].includes(t)&&(x=[c[0]-Math.abs(h),c[1]-Math.abs(g)]),t==="ne"){let D=[d[0],c[1]];x=[D[0],D[1]-Math.abs(g)]}if(t==="sw"){let D=[c[0],d[1]];x=[D[0]-Math.abs(h),D[1]]}o&&(["s","n"].includes(t)&&(x[0]=u[0]-h/2),["e","w"].includes(t)&&(x[1]=u[1]-g/2));let y=e.angle,b=Ft(x,u,y),w=[x[0]+Math.abs(h)/2,x[1]+Math.abs(g)/2],I=Ft(w,u,y);x=Ft(b,I,-y);let M=[...x];return M[0]+=e.x-p,M[1]+=e.y-m,M},Js=(e,t)=>{if(e.crop){let{width:n,height:i}=Vo(e),[o,r,s,a,l,d]=_(e,t),c=Wo(Ft(xt(o,r),xt(l,d),e.angle)),u=Wo(Ft(xt(s,r),xt(l,d),e.angle)),p=Zs(qs(u,c)),m=Wo(Ft(xt(o,a),xt(l,d),e.angle)),f=qs(m,c),E=Zs(f),{cropX:h,cropY:g}=nu(e.crop,e.scale),x=Li(Li(c,Ci(p,-h*n/e.crop.naturalWidth)),Ci(E,-g*i/e.crop.naturalHeight)),y=Ks(Li(Li(x,Ci(p,n/2)),Ci(E,i/2))),b=Ft(Ks(x),y,-e.angle);return{...e,x:b[0],y:b[1],width:n,height:i,crop:null}}return e},Vo=e=>{if(e.crop){let t=e.width/(e.crop.width/e.crop.naturalWidth),n=e.height/(e.crop.height/e.crop.naturalHeight);return{width:t,height:n}}return{width:e.width,height:e.height}},nu=(e,t)=>{let n=e.x,i=e.y,o=t[0]===-1,r=t[1]===-1;return o&&(n=e.naturalWidth-Math.abs(n)-e.width),r&&(i=e.naturalHeight-Math.abs(i)-e.height),{cropX:n,cropY:i}},fx=(e,t=!1)=>{let n=e.crop;if(!n)return null;let i=e.scale[0]===-1,o=e.scale[1]===-1,r=n.x,s=n.y;if(i&&(r=n.naturalWidth-n.width-n.x),o&&(s=n.naturalHeight-n.height-n.y),t)return{x:r,y:s};let{width:a,height:l}=Vo(e);return{x:r/(n.naturalWidth/a),y:s/(n.naturalHeight/l)}};P();import{pointCenter as Qa,pointFrom as B,pointRotateRads as Te,pointsEqual as Ja,pointDistance as Cn,vectorFromPoint as nm,curveLength as im,curvePointAtLength as om}from"@excalidraw/math";import{DRAGGING_THRESHOLD as rm,KEYS as Bn,shouldRotateWithDiscreteAngle as el,getGridPoint as tl,invariant as At,tupleToCoors as vr,viewportCoordsToSceneCoords as sm}from"@excalidraw/common";import{deconstructLinearOrFreeDrawElement as nl,isPathALoop as am}from"@excalidraw/element";P();import{KEYS as Lp,arrayToMap as _a,isBindingFallthroughEnabled as no,tupleToCoors as Cp,invariant as Bp,isDevEnv as Gp,isTestEnv as kp}from"@excalidraw/common";import{lineSegment as Ye,pointFrom as O,pointRotateRads as ae,vectorFromPoint as q,pointDistanceSq as Wt,clamp as Fa,pointDistance as ut,pointFromVector as vn,vectorScale as Ln,vectorNormalize as si,vectorCross as _e,pointsEqual as Op,lineSegmentIntersectionPoints as Na,PRECISION as Rp}from"@excalidraw/math";P();import{isTransparent as Wu}from"@excalidraw/common";import{curveIntersectLineSegment as ba,isPointWithinBounds as Ui,lineSegment as Xi,lineSegmentIntersectionPoints as Pa,pointFrom as St,pointFromVector as Vu,pointRotateRads as lt,pointsEqual as $u,vectorFromPoint as Zu,vectorNormalize as qu,vectorScale as Ku}from"@excalidraw/math";import{ellipse as Qu,ellipseSegmentInterceptPoints as Ju}from"@excalidraw/math/ellipse";P();import{DEFAULT_ADAPTIVE_RADIUS as iu,DEFAULT_PROPORTIONAL_RADIUS as $o,LINE_CONFIRM_THRESHOLD as ou,ROUNDNESS as Zo}from"@excalidraw/common";import{curve as wt,curveCatmullRomCubicApproxPoints as ea,curveOffsetPoints as ta,lineSegment as He,pointDistance as ru,pointFrom as X,pointFromArray as su,rectangle as au}from"@excalidraw/math";var qn=new WeakMap,qo=(e,t)=>{let n=qn.get(e);if(!n)return;let{version:i,shapes:o}=n;if(i!==e.version){qn.delete(e);return}return o.get(t)},Ko=(e,t,n)=>{let i=qn.get(e);if(!i){qn.set(e,{version:e.version,shapes:new Map([[n,t]])});return}let{version:o,shapes:r}=i;if(o!==e.version){qn.set(e,{version:e.version,shapes:new Map([[n,t]])});return}r.set(n,t)};function Bi(e){let t=qo(e,0);if(t)return t;let n=na(e),i=[],o=[];for(let s=0;s<n.length;s+=1){let a=n[s],l=n[s-1]&&su(n[s-1].data.slice(-2));switch(a.op){case"move":continue;case"lineTo":if(!l)throw new Error("prevPoint is undefined");i.push(He(X(e.x+l[0],e.y+l[1]),X(e.x+a.data[0],e.y+a.data[1])));continue;case"bcurveTo":if(!l)throw new Error("prevPoint is undefined");o.push(wt(X(e.x+l[0],e.y+l[1]),X(e.x+a.data[0],e.y+a.data[1]),X(e.x+a.data[2],e.y+a.data[3]),X(e.x+a.data[4],e.y+a.data[5])));continue;default:console.error("Unknown op type",a.op)}}let r=[i,o];return Ko(e,r,0),r}function Pn(e,t=0){let n=qo(e,t);if(n)return n;let i=yt(Math.min(e.width,e.height),e);i===0&&(i=.01);let o=au(X(e.x,e.y),X(e.x+e.width,e.y+e.height)),r=He(X(o[0][0]+i,o[0][1]),X(o[1][0]-i,o[0][1])),s=He(X(o[1][0],o[0][1]+i),X(o[1][0],o[1][1]-i)),a=He(X(o[0][0]+i,o[1][1]),X(o[1][0]-i,o[1][1])),l=He(X(o[0][0],o[1][1]-i),X(o[0][0],o[0][1]+i)),d=[wt(l[1],X(l[1][0]+2/3*(o[0][0]-l[1][0]),l[1][1]+2/3*(o[0][1]-l[1][1])),X(r[0][0]+2/3*(o[0][0]-r[0][0]),r[0][1]+2/3*(o[0][1]-r[0][1])),r[0]),wt(r[1],X(r[1][0]+2/3*(o[1][0]-r[1][0]),r[1][1]+2/3*(o[0][1]-r[1][1])),X(s[0][0]+2/3*(o[1][0]-s[0][0]),s[0][1]+2/3*(o[0][1]-s[0][1])),s[0]),wt(s[1],X(s[1][0]+2/3*(o[1][0]-s[1][0]),s[1][1]+2/3*(o[1][1]-s[1][1])),X(a[1][0]+2/3*(o[1][0]-a[1][0]),a[1][1]+2/3*(o[1][1]-a[1][1])),a[1]),wt(a[0],X(a[0][0]+2/3*(o[0][0]-a[0][0]),a[0][1]+2/3*(o[1][1]-a[0][1])),X(l[0][0]+2/3*(o[0][0]-l[0][0]),l[0][1]+2/3*(o[1][1]-l[0][1])),l[0])],c=t>0?d.map(m=>ea(ta(m,t))):[[d[0]],[d[1]],[d[2]],[d[3]]],p=[[He(c[0][c[0].length-1][3],c[1][0][0]),He(c[1][c[1].length-1][3],c[2][0][0]),He(c[2][c[2].length-1][3],c[3][0][0]),He(c[3][c[3].length-1][3],c[0][0][0])],c.flat()];return Ko(e,p,t),p}function In(e,t=0){let n=qo(e,t);if(n)return n;let[i,o,r,s,a,l,d,c]=Gi(e),u=e.roundness?yt(Math.abs(i-d),e):(i-d)*.01,p=e.roundness?yt(Math.abs(s-o),e):(s-o)*.01,[m,f,E,h]=[X(e.x+i,e.y+o),X(e.x+r,e.y+s),X(e.x+a,e.y+l),X(e.x+d,e.y+c)],g=[wt(X(f[0]-u,f[1]-p),f,f,X(f[0]-u,f[1]+p)),wt(X(E[0]+u,E[1]-p),E,E,X(E[0]-u,E[1]-p)),wt(X(h[0]+u,h[1]+p),h,h,X(h[0]+u,h[1]-p)),wt(X(m[0]-u,m[1]+p),m,m,X(m[0]+u,m[1]+p))],x=t>0?g.map(w=>ea(ta(w,t))):[[g[0]],[g[1]],[g[2]],[g[3]]],b=[[He(x[0][x[0].length-1][3],x[1][0][0]),He(x[1][x[1].length-1][3],x[2][0][0]),He(x[2][x[2].length-1][3],x[3][0][0]),He(x[3][x[3].length-1][3],x[0][0][0])],x.flat()];return Ko(e,b,t),b}var pn=(e,t=1)=>{if(e.length>=3){let[n,i]=[e[0],e[e.length-1]];return ru(n,i)<=ou/t}return!1},yt=(e,t)=>{if(t.roundness?.type===Zo.PROPORTIONAL_RADIUS||t.roundness?.type===Zo.LEGACY)return e*$o;if(t.roundness?.type===Zo.ADAPTIVE_RADIUS){let n=t.roundness?.value??iu,i=n/$o;return e<=i?e*$o:n}return 0};P();import{ROUNDNESS as Kn,assertNever as lu}from"@excalidraw/common";import{pointsEqual as ia}from"@excalidraw/math";var Ht=e=>!!e&&e.type==="image"&&!!e.fileId,we=e=>!!e&&e.type==="image",oa=e=>!!e&&e.type==="embeddable",ki=e=>!!e&&e.type==="iframe",Oi=e=>!!e&&(e.type==="iframe"||e.type==="embeddable"),ie=e=>e!=null&&e.type==="text",Ri=e=>e!=null&&e.type==="frame",ra=e=>e!=null&&e.type==="magicframe",Z=e=>e!=null&&(e.type==="frame"||e.type==="magicframe"),Me=e=>e!=null&&du(e.type),du=e=>e==="freedraw",j=e=>e!=null&&Qo(e.type),mn=e=>e!=null&&e.type==="line",Y=e=>e!=null&&e.type==="arrow",G=e=>Y(e)&&e.elbowed,Mx=e=>Y(e)&&!e.elbowed,cu=e=>Y(e)&&!e.elbowed&&!e.roundness,uu=e=>Y(e)&&!e.elbowed&&e.roundness!==null,Qo=e=>e==="arrow"||e==="line",Jo=(e,t=!0)=>e!=null&&(!e.locked||t===!0)&&pu(e.type),pu=e=>e==="arrow",Le=(e,t=!0)=>e!=null&&(!e.locked||t===!0)&&(e.type==="rectangle"||e.type==="diamond"||e.type==="ellipse"||e.type==="image"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="text"&&!e.containerId),sa=e=>e!=null&&(e.type==="rectangle"||e.type==="diamond"||e.type==="image"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="text"&&!e.containerId),Tx=e=>e!=null&&(e.type==="rectangle"||e.type==="image"||e.type==="text"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="freedraw"),mu=(e,t=!0)=>e!=null&&(!e.locked||t===!0)&&(e.type==="rectangle"||e.type==="diamond"||e.type==="ellipse"||Y(e)),Ax=e=>{let t=e?.type;if(!t)return!1;switch(t){case"text":case"diamond":case"rectangle":case"iframe":case"embeddable":case"ellipse":case"arrow":case"freedraw":case"line":case"frame":case"magicframe":case"image":case"selection":return!0;default:return lu(t,null),!1}},er=e=>e.type==="rectangle"||e.type==="ellipse"||e.type==="diamond",st=e=>mu(e)&&!!e.boundElements?.some(({type:t})=>t==="text"),ce=e=>e!==null&&"containerId"in e&&e.containerId!==null&&ie(e),Dx=e=>!!e.startBinding||!!e.endBinding,aa=e=>e==="rectangle"||e==="embeddable"||e==="iframe"||e==="image",la=e=>e==="line"||e==="arrow"||e==="diamond",vx=(e,t)=>!!((e===Kn.ADAPTIVE_RADIUS||e===Kn.LEGACY)&&aa(t.type)||e===Kn.PROPORTIONAL_RADIUS&&la(t.type)),Lx=e=>la(e.type)?{type:Kn.PROPORTIONAL_RADIUS}:aa(e.type)?{type:Kn.ADAPTIVE_RADIUS}:null,Qn=e=>Object.hasOwn(e,"fixedPoint")&&e.fixedPoint!=null,Cx=e=>Array.isArray(e)&&e.length===4&&typeof e[0]=="number"&&typeof e[1]=="number"&&typeof e[2]=="number"&&typeof e[3]=="number",Bx=e=>cu(e)?"sharpArrow":uu(e)?"curvedArrow":G(e)?"elbowArrow":"line",Gx=e=>e.length>3&&ia(e[0],e[e.length-1]),da=e=>e.length>3||e.length===3&&!ia(e[0],e[e.length-1]);P();import{ARROW_LABEL_FONT_SIZE_TO_MIN_WIDTH_RATIO as Gu,ARROW_LABEL_WIDTH_FRACTION as ku,BOUND_TEXT_PADDING as at,DEFAULT_FONT_SIZE as Ou,TEXT_ALIGN as Ea,VERTICAL_ALIGN as ga,getFontString as Yi,isProdEnv as Ru,invariant as Fu}from"@excalidraw/common";import{pointFrom as xa,pointRotateRads as Nu}from"@excalidraw/math";P();var Jn={},ca=(e,t)=>{let n=Jn[e]||(Jn[e]={height:t});return n.height=t,n},ua=e=>{Jn[e]&&delete Jn[e]},Rx=e=>Jn[e]?.height??null;P();import{BOUND_TEXT_PADDING as Ni,DEFAULT_FONT_SIZE as fu,DEFAULT_FONT_FAMILY as hu,getFontString as Eu,isTestEnv as gu,normalizeEOL as xu}from"@excalidraw/common";var Je=(e,t,n)=>{let i=e.split(`
|
|
1
|
+
var Ju=Object.create;var Ua=Object.defineProperty;var em=Object.getOwnPropertyDescriptor;var tm=Object.getOwnPropertyNames;var nm=Object.getPrototypeOf,im=Object.prototype.hasOwnProperty;var om=(e,t)=>()=>(e&&(t=e(e=0)),t);var rm=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var sm=(e,t,n,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of tm(t))!im.call(e,o)&&o!==n&&Ua(e,o,{get:()=>t[o],enumerable:!(i=em(t,o))||i.enumerable});return e};var am=(e,t,n)=>(n=e!=null?Ju(nm(e)):{},sm(t||!e||!e.__esModule?Ua(n,"default",{value:e,enumerable:!0}):n,e));var N,I=om(()=>{N={PROD:!0}});var nu=rm((oA,tu)=>{I();var eu="Expected a function",Qc=NaN,bE="[object Symbol]",wE=/^\s+|\s+$/g,yE=/^[-+]0x[0-9a-f]+$/i,PE=/^0b[01]+$/i,IE=/^0o[0-7]+$/i,SE=parseInt,ME=typeof global=="object"&&global&&global.Object===Object&&global,AE=typeof self=="object"&&self&&self.Object===Object&&self,TE=ME||AE||Function("return this")(),DE=Object.prototype,vE=DE.toString,BE=Math.max,LE=Math.min,wa=function(){return TE.Date.now()};function CE(e,t,n){var i,o,r,s,a,l,d=0,c=!1,u=!1,m=!0;if(typeof e!="function")throw new TypeError(eu);t=Jc(t)||0,Mr(n)&&(c=!!n.leading,u="maxWait"in n,r=u?BE(Jc(n.maxWait)||0,t):r,m="trailing"in n?!!n.trailing:m);function p(M){var S=i,T=o;return i=o=void 0,d=M,s=e.apply(T,S),s}function h(M){return d=M,a=setTimeout(E,t),c?p(M):s}function f(M){var S=M-l,T=M-d,A=t-S;return u?LE(A,r-T):A}function g(M){var S=M-l,T=M-d;return l===void 0||S>=t||S<0||u&&T>=r}function E(){var M=wa();if(g(M))return x(M);a=setTimeout(E,f(M))}function x(M){return a=void 0,m&&i?p(M):(i=o=void 0,s)}function b(){a!==void 0&&clearTimeout(a),d=0,i=l=o=a=void 0}function y(){return a===void 0?s:x(wa())}function w(){var M=wa(),S=g(M);if(i=arguments,o=this,l=M,S){if(a===void 0)return h(l);if(u)return a=setTimeout(E,t),p(l)}return a===void 0&&(a=setTimeout(E,t)),s}return w.cancel=b,w.flush=y,w}function GE(e,t,n){var i=!0,o=!0;if(typeof e!="function")throw new TypeError(eu);return Mr(n)&&(i="leading"in n?!!n.leading:i,o="trailing"in n?!!n.trailing:o),CE(e,t,{leading:i,maxWait:t,trailing:o})}function Mr(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function kE(e){return!!e&&typeof e=="object"}function OE(e){return typeof e=="symbol"||kE(e)&&vE.call(e)==bE}function Jc(e){if(typeof e=="number")return e;if(OE(e))return Qc;if(Mr(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=Mr(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=e.replace(wE,"");var n=PE.test(e);return n||IE.test(e)?SE(e.slice(2),n?2:8):yE.test(e)?Qc:+e}tu.exports=GE});I();import{toIterable as Hb}from"@excalidraw/common";I();import{SHIFT_LOCKING_ANGLE as mn,viewportCoordsToSceneCoords as Er}from"@excalidraw/common";import{normalizeRadians as Ac,radiansBetweenAngles as fg,radiansDifference as hg}from"@excalidraw/math";import{pointsEqual as gg}from"@excalidraw/math";I();I();I();I();I();I();I();I();I();function zr(e,t,n){if(e&&e.length){let[i,o]=t,r=Math.PI/180*n,s=Math.cos(r),a=Math.sin(r);for(let l of e){let[d,c]=l;l[0]=(d-i)*s-(c-o)*a+i,l[1]=(d-i)*a+(c-o)*s+o}}}function dm(e,t,n){let i=[];e.forEach(o=>i.push(...o)),zr(i,t,n)}function cm(e,t){return e[0]===t[0]&&e[1]===t[1]}function Ya(e,t,n,i=1){let o=n,r=Math.max(t,.1),s=e[0]&&e[0][0]&&typeof e[0][0]=="number"?[e]:e,a=[0,0];if(o)for(let d of s)zr(d,a,o);let l=um(s,r,i);if(o){for(let d of s)zr(d,a,-o);dm(l,a,-o)}return l}function um(e,t,n){let i=[];for(let d of e){let c=[...d];cm(c[0],c[c.length-1])||c.push([c[0][0],c[0][1]]),c.length>2&&i.push(c)}let o=[];t=Math.max(t,.1);let r=[];for(let d of i)for(let c=0;c<d.length-1;c++){let u=d[c],m=d[c+1];if(u[1]!==m[1]){let p=Math.min(u[1],m[1]);r.push({ymin:p,ymax:Math.max(u[1],m[1]),x:p===u[1]?u[0]:m[0],islope:(m[0]-u[0])/(m[1]-u[1])})}}if(r.sort((d,c)=>d.ymin<c.ymin?-1:d.ymin>c.ymin?1:d.x<c.x?-1:d.x>c.x?1:d.ymax===c.ymax?0:(d.ymax-c.ymax)/Math.abs(d.ymax-c.ymax)),!r.length)return o;let s=[],a=r[0].ymin,l=0;for(;s.length||r.length;){if(r.length){let d=-1;for(let u=0;u<r.length&&!(r[u].ymin>a);u++)d=u;r.splice(0,d+1).forEach(u=>{s.push({s:a,edge:u})})}if(s=s.filter(d=>!(d.edge.ymax<=a)),s.sort((d,c)=>d.edge.x===c.edge.x?0:(d.edge.x-c.edge.x)/Math.abs(d.edge.x-c.edge.x)),(n!==1||l%t===0)&&s.length>1)for(let d=0;d<s.length;d=d+2){let c=d+1;if(c>=s.length)break;let u=s[d].edge,m=s[c].edge;o.push([[Math.round(u.x),a],[Math.round(m.x),a]])}a+=n,s.forEach(d=>{d.edge.x=d.edge.x+n*d.edge.islope}),l++}return o}function zt(e,t){var n;let i=t.hachureAngle+90,o=t.hachureGap;o<0&&(o=t.strokeWidth*4),o=Math.max(o,.1);let r=1;return t.roughness>=1&&(((n=t.randomizer)===null||n===void 0?void 0:n.next())||Math.random())>.7&&(r=o),Ya(e,o,i,r||1)}var gn=class{constructor(t){this.helper=t}fillPolygons(t,n){return this._fillPolygons(t,n)}_fillPolygons(t,n){let i=zt(t,n);return{type:"fillSketch",ops:this.renderLines(i,n)}}renderLines(t,n){let i=[];for(let o of t)i.push(...this.helper.doubleLineOps(o[0][0],o[0][1],o[1][0],o[1][1],n));return i}};I();I();function En(e){let t=e[0],n=e[1];return Math.sqrt(Math.pow(t[0]-n[0],2)+Math.pow(t[1]-n[1],2))}var po=class extends gn{fillPolygons(t,n){let i=n.hachureGap;i<0&&(i=n.strokeWidth*4),i=Math.max(i,.1);let o=Object.assign({},n,{hachureGap:i}),r=zt(t,o),s=Math.PI/180*n.hachureAngle,a=[],l=i*.5*Math.cos(s),d=i*.5*Math.sin(s);for(let[u,m]of r)En([u,m])&&a.push([[u[0]-l,u[1]+d],[...m]],[[u[0]+l,u[1]-d],[...m]]);return{type:"fillSketch",ops:this.renderLines(a,n)}}};I();var fo=class extends gn{fillPolygons(t,n){let i=this._fillPolygons(t,n),o=Object.assign({},n,{hachureAngle:n.hachureAngle+90}),r=this._fillPolygons(t,o);return i.ops=i.ops.concat(r.ops),i}};I();var ho=class{constructor(t){this.helper=t}fillPolygons(t,n){n=Object.assign({},n,{hachureAngle:0});let i=zt(t,n);return this.dotsOnLines(i,n)}dotsOnLines(t,n){let i=[],o=n.hachureGap;o<0&&(o=n.strokeWidth*4),o=Math.max(o,.1);let r=n.fillWeight;r<0&&(r=n.strokeWidth/2);let s=o/4;for(let a of t){let l=En(a),d=l/o,c=Math.ceil(d)-1,u=l-c*o,m=(a[0][0]+a[1][0])/2-o/4,p=Math.min(a[0][1],a[1][1]);for(let h=0;h<c;h++){let f=p+u+h*o,g=m-s+Math.random()*2*s,E=f-s+Math.random()*2*s,x=this.helper.ellipse(g,E,r,r,n);i.push(...x.ops)}}return{type:"fillSketch",ops:i}}};I();var go=class{constructor(t){this.helper=t}fillPolygons(t,n){let i=zt(t,n);return{type:"fillSketch",ops:this.dashedLine(i,n)}}dashedLine(t,n){let i=n.dashOffset<0?n.hachureGap<0?n.strokeWidth*4:n.hachureGap:n.dashOffset,o=n.dashGap<0?n.hachureGap<0?n.strokeWidth*4:n.hachureGap:n.dashGap,r=[];return t.forEach(s=>{let a=En(s),l=Math.floor(a/(i+o)),d=(a+o-l*(i+o))/2,c=s[0],u=s[1];c[0]>u[0]&&(c=s[1],u=s[0]);let m=Math.atan((u[1]-c[1])/(u[0]-c[0]));for(let p=0;p<l;p++){let h=p*(i+o),f=h+i,g=[c[0]+h*Math.cos(m)+d*Math.cos(m),c[1]+h*Math.sin(m)+d*Math.sin(m)],E=[c[0]+f*Math.cos(m)+d*Math.cos(m),c[1]+f*Math.sin(m)+d*Math.sin(m)];r.push(...this.helper.doubleLineOps(g[0],g[1],E[0],E[1],n))}}),r}};I();var Eo=class{constructor(t){this.helper=t}fillPolygons(t,n){let i=n.hachureGap<0?n.strokeWidth*4:n.hachureGap,o=n.zigzagOffset<0?i:n.zigzagOffset;n=Object.assign({},n,{hachureGap:i+o});let r=zt(t,n);return{type:"fillSketch",ops:this.zigzagLines(r,o,n)}}zigzagLines(t,n,i){let o=[];return t.forEach(r=>{let s=En(r),a=Math.round(s/(2*n)),l=r[0],d=r[1];l[0]>d[0]&&(l=r[1],d=r[0]);let c=Math.atan((d[1]-l[1])/(d[0]-l[0]));for(let u=0;u<a;u++){let m=u*2*n,p=(u+1)*2*n,h=Math.sqrt(2*Math.pow(n,2)),f=[l[0]+m*Math.cos(c),l[1]+m*Math.sin(c)],g=[l[0]+p*Math.cos(c),l[1]+p*Math.sin(c)],E=[f[0]+h*Math.cos(c+Math.PI/4),f[1]+h*Math.sin(c+Math.PI/4)];o.push(...this.helper.doubleLineOps(f[0],f[1],E[0],E[1],i),...this.helper.doubleLineOps(E[0],E[1],g[0],g[1],i))}}),o}};var nt={};function Xa(e,t){let n=e.fillStyle||"hachure";if(!nt[n])switch(n){case"zigzag":nt[n]||(nt[n]=new po(t));break;case"cross-hatch":nt[n]||(nt[n]=new fo(t));break;case"dots":nt[n]||(nt[n]=new ho(t));break;case"dashed":nt[n]||(nt[n]=new go(t));break;case"zigzag-line":nt[n]||(nt[n]=new Eo(t));break;case"hachure":default:n="hachure",nt[n]||(nt[n]=new gn(t));break}return nt[n]}I();function ja(){return Math.floor(Math.random()*2**31)}var xo=class{constructor(t){this.seed=t}next(){return this.seed?(2**31-1&(this.seed=Math.imul(48271,this.seed)))/2**31:Math.random()}};I();I();var bo={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function mm(e){let t=new Array;for(;e!=="";)if(e.match(/^([ \t\r\n,]+)/))e=e.substr(RegExp.$1.length);else if(e.match(/^([aAcChHlLmMqQsStTvVzZ])/))t[t.length]={type:0,text:RegExp.$1},e=e.substr(RegExp.$1.length);else if(e.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))t[t.length]={type:1,text:`${parseFloat(RegExp.$1)}`},e=e.substr(RegExp.$1.length);else return[];return t[t.length]={type:2,text:""},t}function _r(e,t){return e.type===t}function di(e){let t=[],n=mm(e),i="BOD",o=0,r=n[o];for(;!_r(r,2);){let s=0,a=[];if(i==="BOD")if(r.text==="M"||r.text==="m")o++,s=bo[r.text],i=r.text;else return di("M0,0"+e);else _r(r,1)?s=bo[i]:(o++,s=bo[r.text],i=r.text);if(o+s<n.length){for(let l=o;l<o+s;l++){let d=n[l];if(_r(d,1))a[a.length]=+d.text;else throw new Error("Param not a number: "+i+","+d.text)}if(typeof bo[i]=="number"){let l={key:i,data:a};t.push(l),o+=s,r=n[o],i==="M"&&(i="L"),i==="m"&&(i="l")}else throw new Error("Bad segment: "+i)}else throw new Error("Path data ended short")}return t}I();function Oi(e){let t=0,n=0,i=0,o=0,r=[];for(let{key:s,data:a}of e)switch(s){case"M":r.push({key:"M",data:[...a]}),[t,n]=a,[i,o]=a;break;case"m":t+=a[0],n+=a[1],r.push({key:"M",data:[t,n]}),i=t,o=n;break;case"L":r.push({key:"L",data:[...a]}),[t,n]=a;break;case"l":t+=a[0],n+=a[1],r.push({key:"L",data:[t,n]});break;case"C":r.push({key:"C",data:[...a]}),t=a[4],n=a[5];break;case"c":{let l=a.map((d,c)=>c%2?d+n:d+t);r.push({key:"C",data:l}),t=l[4],n=l[5];break}case"Q":r.push({key:"Q",data:[...a]}),t=a[2],n=a[3];break;case"q":{let l=a.map((d,c)=>c%2?d+n:d+t);r.push({key:"Q",data:l}),t=l[2],n=l[3];break}case"A":r.push({key:"A",data:[...a]}),t=a[5],n=a[6];break;case"a":t+=a[5],n+=a[6],r.push({key:"A",data:[a[0],a[1],a[2],a[3],a[4],t,n]});break;case"H":r.push({key:"H",data:[...a]}),t=a[0];break;case"h":t+=a[0],r.push({key:"H",data:[t]});break;case"V":r.push({key:"V",data:[...a]}),n=a[0];break;case"v":n+=a[0],r.push({key:"V",data:[n]});break;case"S":r.push({key:"S",data:[...a]}),t=a[2],n=a[3];break;case"s":{let l=a.map((d,c)=>c%2?d+n:d+t);r.push({key:"S",data:l}),t=l[2],n=l[3];break}case"T":r.push({key:"T",data:[...a]}),t=a[0],n=a[1];break;case"t":t+=a[0],n+=a[1],r.push({key:"T",data:[t,n]});break;case"Z":case"z":r.push({key:"Z",data:[]}),t=i,n=o;break}return r}I();function Fi(e){let t=[],n="",i=0,o=0,r=0,s=0,a=0,l=0;for(let{key:d,data:c}of e){switch(d){case"M":t.push({key:"M",data:[...c]}),[i,o]=c,[r,s]=c;break;case"C":t.push({key:"C",data:[...c]}),i=c[4],o=c[5],a=c[2],l=c[3];break;case"L":t.push({key:"L",data:[...c]}),[i,o]=c;break;case"H":i=c[0],t.push({key:"L",data:[i,o]});break;case"V":o=c[0],t.push({key:"L",data:[i,o]});break;case"S":{let u=0,m=0;n==="C"||n==="S"?(u=i+(i-a),m=o+(o-l)):(u=i,m=o),t.push({key:"C",data:[u,m,...c]}),a=c[0],l=c[1],i=c[2],o=c[3];break}case"T":{let[u,m]=c,p=0,h=0;n==="Q"||n==="T"?(p=i+(i-a),h=o+(o-l)):(p=i,h=o);let f=i+2*(p-i)/3,g=o+2*(h-o)/3,E=u+2*(p-u)/3,x=m+2*(h-m)/3;t.push({key:"C",data:[f,g,E,x,u,m]}),a=p,l=h,i=u,o=m;break}case"Q":{let[u,m,p,h]=c,f=i+2*(u-i)/3,g=o+2*(m-o)/3,E=p+2*(u-p)/3,x=h+2*(m-h)/3;t.push({key:"C",data:[f,g,E,x,p,h]}),a=u,l=m,i=p,o=h;break}case"A":{let u=Math.abs(c[0]),m=Math.abs(c[1]),p=c[2],h=c[3],f=c[4],g=c[5],E=c[6];u===0||m===0?(t.push({key:"C",data:[i,o,g,E,g,E]}),i=g,o=E):(i!==g||o!==E)&&($a(i,o,g,E,u,m,p,h,f).forEach(function(b){t.push({key:"C",data:b})}),i=g,o=E);break}case"Z":t.push({key:"Z",data:[]}),i=r,o=s;break}n=d}return t}function pm(e){return Math.PI*e/180}function Ni(e,t,n){let i=e*Math.cos(n)-t*Math.sin(n),o=e*Math.sin(n)+t*Math.cos(n);return[i,o]}function $a(e,t,n,i,o,r,s,a,l,d){let c=pm(s),u=[],m=0,p=0,h=0,f=0;if(d)[m,p,h,f]=d;else{[e,t]=Ni(e,t,-c),[n,i]=Ni(n,i,-c);let k=(e-n)/2,G=(t-i)/2,_=k*k/(o*o)+G*G/(r*r);_>1&&(_=Math.sqrt(_),o=_*o,r=_*r);let W=a===l?-1:1,D=o*o,L=r*r,P=D*L-D*G*G-L*k*k,v=D*G*G+L*k*k,C=W*Math.sqrt(Math.abs(P/v));h=C*o*G/r+(e+n)/2,f=C*-r*k/o+(t+i)/2,m=Math.asin(parseFloat(((t-f)/r).toFixed(9))),p=Math.asin(parseFloat(((i-f)/r).toFixed(9))),e<h&&(m=Math.PI-m),n<h&&(p=Math.PI-p),m<0&&(m=Math.PI*2+m),p<0&&(p=Math.PI*2+p),l&&m>p&&(m=m-Math.PI*2),!l&&p>m&&(p=p-Math.PI*2)}let g=p-m;if(Math.abs(g)>Math.PI*120/180){let k=p,G=n,_=i;l&&p>m?p=m+Math.PI*120/180*1:p=m+Math.PI*120/180*-1,n=h+o*Math.cos(p),i=f+r*Math.sin(p),u=$a(n,i,G,_,o,r,s,0,l,[p,k,h,f])}g=p-m;let E=Math.cos(m),x=Math.sin(m),b=Math.cos(p),y=Math.sin(p),w=Math.tan(g/4),M=4/3*o*w,S=4/3*r*w,T=[e,t],A=[e+M*x,t-S*E],F=[n+M*y,i-S*b],B=[n,i];if(A[0]=2*T[0]-A[0],A[1]=2*T[1]-A[1],d)return[A,F,B].concat(u);{u=[A,F,B].concat(u);let k=[];for(let G=0;G<u.length;G+=3){let _=Ni(u[G][0],u[G][1],c),W=Ni(u[G+1][0],u[G+1][1],c),D=Ni(u[G+2][0],u[G+2][1],c);k.push([_[0],_[1],W[0],W[1],D[0],D[1]])}return k}}var fm={randOffset:Em,randOffsetWithRange:xm,ellipse:gm,doubleLineOps:bm};function Hr(e,t,n,i,o){return{type:"path",ops:Qt(e,t,n,i,o)}}function Ri(e,t,n){let i=(e||[]).length;if(i>2){let o=[];for(let r=0;r<i-1;r++)o.push(...Qt(e[r][0],e[r][1],e[r+1][0],e[r+1][1],n));return t&&o.push(...Qt(e[i-1][0],e[i-1][1],e[0][0],e[0][1],n)),{type:"path",ops:o}}else if(i===2)return Hr(e[0][0],e[0][1],e[1][0],e[1][1],n);return{type:"path",ops:[]}}function hm(e,t){return Ri(e,!0,t)}function Qa(e,t,n,i,o){let r=[[e,t],[e+n,t],[e+n,t+i],[e,t+i]];return hm(r,o)}function Wr(e,t){let n=Za(e,1*(1+t.roughness*.2),t);if(!t.disableMultiStroke){let i=Za(e,1.5*(1+t.roughness*.22),wm(t));n=n.concat(i)}return{type:"path",ops:n}}function gm(e,t,n,i,o){let r=Ur(n,i,o);return Po(e,t,o,r).opset}function Ur(e,t,n){let i=Math.sqrt(Math.PI*2*Math.sqrt((Math.pow(e/2,2)+Math.pow(t/2,2))/2)),o=Math.ceil(Math.max(n.curveStepCount,n.curveStepCount/Math.sqrt(200)*i)),r=Math.PI*2/o,s=Math.abs(e/2),a=Math.abs(t/2),l=1-n.curveFitting;return s+=U(s*l,n),a+=U(a*l,n),{increment:r,rx:s,ry:a}}function Po(e,t,n,i){let[o,r]=Ka(i.increment,e,t,i.rx,i.ry,1,i.increment*wo(.1,wo(.4,1,n),n),n),s=yo(o,null,n);if(!n.disableMultiStroke&&n.roughness!==0){let[a]=Ka(i.increment,e,t,i.rx,i.ry,1.5,0,n),l=yo(a,null,n);s=s.concat(l)}return{estimatedPoints:r,opset:{type:"path",ops:s}}}function Yr(e,t,n,i,o,r,s,a,l){let d=e,c=t,u=Math.abs(n/2),m=Math.abs(i/2);u+=U(u*.01,l),m+=U(m*.01,l);let p=o,h=r;for(;p<0;)p+=Math.PI*2,h+=Math.PI*2;h-p>Math.PI*2&&(p=0,h=Math.PI*2);let f=Math.PI*2/l.curveStepCount,g=Math.min(f/2,(h-p)/2),E=qa(g,d,c,u,m,p,h,1,l);if(!l.disableMultiStroke){let x=qa(g,d,c,u,m,p,h,1.5,l);E.push(...x)}return s&&(a?E.push(...Qt(d,c,d+u*Math.cos(p),c+m*Math.sin(p),l),...Qt(d,c,d+u*Math.cos(h),c+m*Math.sin(h),l)):E.push({op:"lineTo",data:[d,c]},{op:"lineTo",data:[d+u*Math.cos(p),c+m*Math.sin(p)]})),{type:"path",ops:E}}function Xr(e,t){let n=Fi(Oi(di(e))),i=[],o=[0,0],r=[0,0];for(let{key:s,data:a}of n)switch(s){case"M":{r=[a[0],a[1]],o=[a[0],a[1]];break}case"L":i.push(...Qt(r[0],r[1],a[0],a[1],t)),r=[a[0],a[1]];break;case"C":{let[l,d,c,u,m,p]=a;i.push(...ym(l,d,c,u,m,p,r,t)),r=[m,p];break}case"Z":i.push(...Qt(r[0],r[1],o[0],o[1],t)),r=[o[0],o[1]];break}return{type:"path",ops:i}}function Io(e,t){let n=[];for(let i of e)if(i.length){let o=t.maxRandomnessOffset||0,r=i.length;if(r>2){n.push({op:"move",data:[i[0][0]+U(o,t),i[0][1]+U(o,t)]});for(let s=1;s<r;s++)n.push({op:"lineTo",data:[i[s][0]+U(o,t),i[s][1]+U(o,t)]})}}return{type:"fillPath",ops:n}}function Yn(e,t){return Xa(t,fm).fillPolygons(e,t)}function Ja(e,t,n,i,o,r,s){let a=e,l=t,d=Math.abs(n/2),c=Math.abs(i/2);d+=U(d*.01,s),c+=U(c*.01,s);let u=o,m=r;for(;u<0;)u+=Math.PI*2,m+=Math.PI*2;m-u>Math.PI*2&&(u=0,m=Math.PI*2);let p=(m-u)/s.curveStepCount,h=[];for(let f=u;f<=m;f=f+p)h.push([a+d*Math.cos(f),l+c*Math.sin(f)]);return h.push([a+d*Math.cos(m),l+c*Math.sin(m)]),h.push([a,l]),Yn([h],s)}function Em(e,t){return U(e,t)}function xm(e,t,n){return wo(e,t,n)}function bm(e,t,n,i,o){return Qt(e,t,n,i,o,!0)}function wm(e){let t=Object.assign({},e);return t.randomizer=void 0,e.seed&&(t.seed=e.seed+1),t}function el(e){return e.randomizer||(e.randomizer=new xo(e.seed||0)),e.randomizer.next()}function wo(e,t,n,i=1){return n.roughness*i*(el(n)*(t-e)+e)}function U(e,t,n=1){return wo(-e,e,t,n)}function Qt(e,t,n,i,o,r=!1){let s=r?o.disableMultiStrokeFill:o.disableMultiStroke,a=Va(e,t,n,i,o,!0,!1);if(s)return a;let l=Va(e,t,n,i,o,!0,!0);return a.concat(l)}function Va(e,t,n,i,o,r,s){let a=Math.pow(e-n,2)+Math.pow(t-i,2),l=Math.sqrt(a),d=1;l<200?d=1:l>500?d=.4:d=-.0016668*l+1.233334;let c=o.maxRandomnessOffset||0;c*c*100>a&&(c=l/10);let u=c/2,m=.2+el(o)*.2,p=o.bowing*o.maxRandomnessOffset*(i-t)/200,h=o.bowing*o.maxRandomnessOffset*(e-n)/200;p=U(p,o,d),h=U(h,o,d);let f=[],g=()=>U(u,o,d),E=()=>U(c,o,d),x=o.preserveVertices;return r&&(s?f.push({op:"move",data:[e+(x?0:g()),t+(x?0:g())]}):f.push({op:"move",data:[e+(x?0:U(c,o,d)),t+(x?0:U(c,o,d))]})),s?f.push({op:"bcurveTo",data:[p+e+(n-e)*m+g(),h+t+(i-t)*m+g(),p+e+2*(n-e)*m+g(),h+t+2*(i-t)*m+g(),n+(x?0:g()),i+(x?0:g())]}):f.push({op:"bcurveTo",data:[p+e+(n-e)*m+E(),h+t+(i-t)*m+E(),p+e+2*(n-e)*m+E(),h+t+2*(i-t)*m+E(),n+(x?0:E()),i+(x?0:E())]}),f}function Za(e,t,n){let i=[];i.push([e[0][0]+U(t,n),e[0][1]+U(t,n)]),i.push([e[0][0]+U(t,n),e[0][1]+U(t,n)]);for(let o=1;o<e.length;o++)i.push([e[o][0]+U(t,n),e[o][1]+U(t,n)]),o===e.length-1&&i.push([e[o][0]+U(t,n),e[o][1]+U(t,n)]);return yo(i,null,n)}function yo(e,t,n){let i=e.length,o=[];if(i>3){let r=[],s=1-n.curveTightness;o.push({op:"move",data:[e[1][0],e[1][1]]});for(let a=1;a+2<i;a++){let l=e[a];r[0]=[l[0],l[1]],r[1]=[l[0]+(s*e[a+1][0]-s*e[a-1][0])/6,l[1]+(s*e[a+1][1]-s*e[a-1][1])/6],r[2]=[e[a+1][0]+(s*e[a][0]-s*e[a+2][0])/6,e[a+1][1]+(s*e[a][1]-s*e[a+2][1])/6],r[3]=[e[a+1][0],e[a+1][1]],o.push({op:"bcurveTo",data:[r[1][0],r[1][1],r[2][0],r[2][1],r[3][0],r[3][1]]})}if(t&&t.length===2){let a=n.maxRandomnessOffset;o.push({op:"lineTo",data:[t[0]+U(a,n),t[1]+U(a,n)]})}}else i===3?(o.push({op:"move",data:[e[1][0],e[1][1]]}),o.push({op:"bcurveTo",data:[e[1][0],e[1][1],e[2][0],e[2][1],e[2][0],e[2][1]]})):i===2&&o.push(...Qt(e[0][0],e[0][1],e[1][0],e[1][1],n));return o}function Ka(e,t,n,i,o,r,s,a){let l=a.roughness===0,d=[],c=[];if(l){e=e/4,c.push([t+i*Math.cos(-e),n+o*Math.sin(-e)]);for(let u=0;u<=Math.PI*2;u=u+e){let m=[t+i*Math.cos(u),n+o*Math.sin(u)];d.push(m),c.push(m)}c.push([t+i*Math.cos(0),n+o*Math.sin(0)]),c.push([t+i*Math.cos(e),n+o*Math.sin(e)])}else{let u=U(.5,a)-Math.PI/2;c.push([U(r,a)+t+.9*i*Math.cos(u-e),U(r,a)+n+.9*o*Math.sin(u-e)]);let m=Math.PI*2+u-.01;for(let p=u;p<m;p=p+e){let h=[U(r,a)+t+i*Math.cos(p),U(r,a)+n+o*Math.sin(p)];d.push(h),c.push(h)}c.push([U(r,a)+t+i*Math.cos(u+Math.PI*2+s*.5),U(r,a)+n+o*Math.sin(u+Math.PI*2+s*.5)]),c.push([U(r,a)+t+.98*i*Math.cos(u+s),U(r,a)+n+.98*o*Math.sin(u+s)]),c.push([U(r,a)+t+.9*i*Math.cos(u+s*.5),U(r,a)+n+.9*o*Math.sin(u+s*.5)])}return[c,d]}function qa(e,t,n,i,o,r,s,a,l){let d=r+U(.1,l),c=[];c.push([U(a,l)+t+.9*i*Math.cos(d-e),U(a,l)+n+.9*o*Math.sin(d-e)]);for(let u=d;u<=s;u=u+e)c.push([U(a,l)+t+i*Math.cos(u),U(a,l)+n+o*Math.sin(u)]);return c.push([t+i*Math.cos(s),n+o*Math.sin(s)]),c.push([t+i*Math.cos(s),n+o*Math.sin(s)]),yo(c,null,l)}function ym(e,t,n,i,o,r,s,a){let l=[],d=[a.maxRandomnessOffset||1,(a.maxRandomnessOffset||1)+.3],c=[0,0],u=a.disableMultiStroke?1:2,m=a.preserveVertices;for(let p=0;p<u;p++)p===0?l.push({op:"move",data:[s[0],s[1]]}):l.push({op:"move",data:[s[0]+(m?0:U(d[0],a)),s[1]+(m?0:U(d[0],a))]}),c=m?[o,r]:[o+U(d[p],a),r+U(d[p],a)],l.push({op:"bcurveTo",data:[e+U(d[p],a),t+U(d[p],a),n+U(d[p],a),i+U(d[p],a),c[0],c[1]]});return l}I();function zi(e){return[...e]}function So(e,t=0){let n=e.length;if(n<3)throw new Error("A curve must have at least three points.");let i=[];if(n===3)i.push(zi(e[0]),zi(e[1]),zi(e[2]),zi(e[2]));else{let o=[];o.push(e[0],e[0]);for(let a=1;a<e.length;a++)o.push(e[a]),a===e.length-1&&o.push(e[a]);let r=[],s=1-t;i.push(zi(o[0]));for(let a=1;a+2<o.length;a++){let l=o[a];r[0]=[l[0],l[1]],r[1]=[l[0]+(s*o[a+1][0]-s*o[a-1][0])/6,l[1]+(s*o[a+1][1]-s*o[a-1][1])/6],r[2]=[o[a+1][0]+(s*o[a][0]-s*o[a+2][0])/6,o[a+1][1]+(s*o[a][1]-s*o[a+2][1])/6],r[3]=[o[a+1][0],o[a+1][1]],i.push(r[1],r[2],r[3])}}return i}I();function Pm(e,t){return Math.sqrt(Mo(e,t))}function Mo(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)}function Im(e,t,n){let i=Mo(t,n);if(i===0)return Mo(e,t);let o=((e[0]-t[0])*(n[0]-t[0])+(e[1]-t[1])*(n[1]-t[1]))/i;return o=Math.max(0,Math.min(1,o)),Mo(e,Xn(t,n,o))}function Xn(e,t,n){return[e[0]+(t[0]-e[0])*n,e[1]+(t[1]-e[1])*n]}function Sm(e,t){let n=e[t+0],i=e[t+1],o=e[t+2],r=e[t+3],s=3*i[0]-2*n[0]-r[0];s*=s;let a=3*i[1]-2*n[1]-r[1];a*=a;let l=3*o[0]-2*r[0]-n[0];l*=l;let d=3*o[1]-2*r[1]-n[1];return d*=d,s<l&&(s=l),a<d&&(a=d),s+a}function jr(e,t,n,i){let o=i||[];if(Sm(e,t)<n){let r=e[t+0];o.length?Pm(o[o.length-1],r)>1&&o.push(r):o.push(r),o.push(e[t+3])}else{let s=e[t+0],a=e[t+1],l=e[t+2],d=e[t+3],c=Xn(s,a,.5),u=Xn(a,l,.5),m=Xn(l,d,.5),p=Xn(c,u,.5),h=Xn(u,m,.5),f=Xn(p,h,.5);jr([s,c,p,f],0,n,o),jr([f,h,m,d],0,n,o)}return o}function xn(e,t){return Ao(e,0,e.length,t)}function Ao(e,t,n,i,o){let r=o||[],s=e[t],a=e[n-1],l=0,d=1;for(let c=t+1;c<n-1;++c){let u=Im(e[c],s,a);u>l&&(l=u,d=c)}return Math.sqrt(l)>i?(Ao(e,t,d+1,i,r),Ao(e,d,n,i,r)):(r.length||r.push(s),r.push(a)),r}function It(e,t=.15,n){let i=[],o=(e.length-1)/3;for(let r=0;r<o;r++){let s=r*3;jr(e,s,t,i)}return n&&n>0?Ao(i,0,i.length,n):i}I();function tl(e,t,n){let i=di(e),o=Fi(Oi(i)),r=[],s=[],a=[0,0],l=[],d=()=>{l.length>=4&&s.push(...It(l,t)),l=[]},c=()=>{d(),s.length&&(r.push(s),s=[])};for(let{key:m,data:p}of o)switch(m){case"M":c(),a=[p[0],p[1]],s.push(a);break;case"L":d(),s.push([p[0],p[1]]);break;case"C":if(!l.length){let h=s.length?s[s.length-1]:a;l.push([h[0],h[1]])}l.push([p[0],p[1]]),l.push([p[2],p[3]]),l.push([p[4],p[5]]);break;case"Z":d(),s.push([a[0],a[1]]);break}if(c(),!n)return r;let u=[];for(let m of r){let p=xn(m,n);p.length&&u.push(p)}return u}var mt="none",bt=class{constructor(t){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1,fillShapeRoughnessGain:.8},this.config=t||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return ja()}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,n,i){return{shape:t,sets:n||[],options:i||this.defaultOptions}}line(t,n,i,o,r){let s=this._o(r);return this._d("line",[Hr(t,n,i,o,s)],s)}rectangle(t,n,i,o,r){let s=this._o(r),a=[],l=Qa(t,n,i,o,s);if(s.fill){let d=[[t,n],[t+i,n],[t+i,n+o],[t,n+o]];s.fillStyle==="solid"?a.push(Io([d],s)):a.push(Yn([d],s))}return s.stroke!==mt&&a.push(l),this._d("rectangle",a,s)}ellipse(t,n,i,o,r){let s=this._o(r),a=[],l=Ur(i,o,s),d=Po(t,n,s,l);if(s.fill)if(s.fillStyle==="solid"){let c=Po(t,n,s,l).opset;c.type="fillPath",a.push(c)}else a.push(Yn([d.estimatedPoints],s));return s.stroke!==mt&&a.push(d.opset),this._d("ellipse",a,s)}circle(t,n,i,o){let r=this.ellipse(t,n,i,i,o);return r.shape="circle",r}linearPath(t,n){let i=this._o(n);return this._d("linearPath",[Ri(t,!1,i)],i)}arc(t,n,i,o,r,s,a=!1,l){let d=this._o(l),c=[],u=Yr(t,n,i,o,r,s,a,!0,d);if(a&&d.fill)if(d.fillStyle==="solid"){let m=Object.assign({},d);m.disableMultiStroke=!0;let p=Yr(t,n,i,o,r,s,!0,!1,m);p.type="fillPath",c.push(p)}else c.push(Ja(t,n,i,o,r,s,d));return d.stroke!==mt&&c.push(u),this._d("arc",c,d)}curve(t,n){let i=this._o(n),o=[],r=Wr(t,i);if(i.fill&&i.fill!==mt&&t.length>=3)if(i.fillStyle==="solid"){let s=Wr(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));o.push({type:"fillPath",ops:this._mergedShape(s.ops)})}else{let s=So(t),a=It(s,10,(1+i.roughness)/2);o.push(Yn([a],i))}return i.stroke!==mt&&o.push(r),this._d("curve",o,i)}polygon(t,n){let i=this._o(n),o=[],r=Ri(t,!0,i);return i.fill&&(i.fillStyle==="solid"?o.push(Io([t],i)):o.push(Yn([t],i))),i.stroke!==mt&&o.push(r),this._d("polygon",o,i)}path(t,n){let i=this._o(n),o=[];if(!t)return this._d("path",o,i);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");let r=i.fill&&i.fill!=="transparent"&&i.fill!==mt,s=i.stroke!==mt,a=!!(i.simplification&&i.simplification<1),l=a?4-4*(i.simplification||1):(1+i.roughness)/2,d=tl(t,1,l),c=Xr(t,i);if(r)if(i.fillStyle==="solid")if(d.length===1){let u=Xr(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));o.push({type:"fillPath",ops:this._mergedShape(u.ops)})}else o.push(Io(d,i));else o.push(Yn(d,i));return s&&(a?d.forEach(u=>{o.push(Ri(u,!1,i))}):o.push(c)),this._d("path",o,i)}opsToPath(t,n){let i="";for(let o of t.ops){let r=typeof n=="number"&&n>=0?o.data.map(s=>+s.toFixed(n)):o.data;switch(o.op){case"move":i+=`M${r[0]} ${r[1]} `;break;case"bcurveTo":i+=`C${r[0]} ${r[1]}, ${r[2]} ${r[3]}, ${r[4]} ${r[5]} `;break;case"lineTo":i+=`L${r[0]} ${r[1]} `;break}}return i.trim()}toPaths(t){let n=t.sets||[],i=t.options||this.defaultOptions,o=[];for(let r of n){let s=null;switch(r.type){case"path":s={d:this.opsToPath(r),stroke:i.stroke,strokeWidth:i.strokeWidth,fill:mt};break;case"fillPath":s={d:this.opsToPath(r),stroke:mt,strokeWidth:0,fill:i.fill||mt};break;case"fillSketch":s=this.fillSketch(r,i);break}s&&o.push(s)}return o}fillSketch(t,n){let i=n.fillWeight;return i<0&&(i=n.strokeWidth/2),{d:this.opsToPath(t),stroke:n.fill||mt,strokeWidth:i,fill:mt}}_mergedShape(t){return t.filter((n,i)=>i===0?!0:n.op!=="move")}};var To=class{constructor(t,n){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new bt(n)}draw(t){let n=t.sets||[],i=t.options||this.getDefaultOptions(),o=this.ctx,r=t.options.fixedDecimalPlaceDigits;for(let s of n)switch(s.type){case"path":o.save(),o.strokeStyle=i.stroke==="none"?"transparent":i.stroke,o.lineWidth=i.strokeWidth,i.strokeLineDash&&o.setLineDash(i.strokeLineDash),i.strokeLineDashOffset&&(o.lineDashOffset=i.strokeLineDashOffset),this._drawToContext(o,s,r),o.restore();break;case"fillPath":{o.save(),o.fillStyle=i.fill||"";let a=t.shape==="curve"||t.shape==="polygon"||t.shape==="path"?"evenodd":"nonzero";this._drawToContext(o,s,r,a),o.restore();break}case"fillSketch":this.fillSketch(o,s,i);break}}fillSketch(t,n,i){let o=i.fillWeight;o<0&&(o=i.strokeWidth/2),t.save(),i.fillLineDash&&t.setLineDash(i.fillLineDash),i.fillLineDashOffset&&(t.lineDashOffset=i.fillLineDashOffset),t.strokeStyle=i.fill||"",t.lineWidth=o,this._drawToContext(t,n,i.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,n,i,o="nonzero"){t.beginPath();for(let r of n.ops){let s=typeof i=="number"&&i>=0?r.data.map(a=>+a.toFixed(i)):r.data;switch(r.op){case"move":t.moveTo(s[0],s[1]);break;case"bcurveTo":t.bezierCurveTo(s[0],s[1],s[2],s[3],s[4],s[5]);break;case"lineTo":t.lineTo(s[0],s[1]);break}}n.type==="fillPath"?t.fill(o):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,n,i,o,r){let s=this.gen.line(t,n,i,o,r);return this.draw(s),s}rectangle(t,n,i,o,r){let s=this.gen.rectangle(t,n,i,o,r);return this.draw(s),s}ellipse(t,n,i,o,r){let s=this.gen.ellipse(t,n,i,o,r);return this.draw(s),s}circle(t,n,i,o){let r=this.gen.circle(t,n,i,o);return this.draw(r),r}linearPath(t,n){let i=this.gen.linearPath(t,n);return this.draw(i),i}polygon(t,n){let i=this.gen.polygon(t,n);return this.draw(i),i}arc(t,n,i,o,r,s,a=!1,l){let d=this.gen.arc(t,n,i,o,r,s,a,l);return this.draw(d),d}curve(t,n){let i=this.gen.curve(t,n);return this.draw(i),i}path(t,n){let i=this.gen.path(t,n);return this.draw(i),i}};I();I();var _i="http://www.w3.org/2000/svg";var Do=class{constructor(t,n){this.svg=t,this.gen=new bt(n)}draw(t){let n=t.sets||[],i=t.options||this.getDefaultOptions(),o=this.svg.ownerDocument||window.document,r=o.createElementNS(_i,"g"),s=t.options.fixedDecimalPlaceDigits;for(let a of n){let l=null;switch(a.type){case"path":{l=o.createElementNS(_i,"path"),l.setAttribute("d",this.opsToPath(a,s)),l.setAttribute("stroke",i.stroke),l.setAttribute("stroke-width",i.strokeWidth+""),l.setAttribute("fill","none"),i.strokeLineDash&&l.setAttribute("stroke-dasharray",i.strokeLineDash.join(" ").trim()),i.strokeLineDashOffset&&l.setAttribute("stroke-dashoffset",`${i.strokeLineDashOffset}`);break}case"fillPath":{l=o.createElementNS(_i,"path"),l.setAttribute("d",this.opsToPath(a,s)),l.setAttribute("stroke","none"),l.setAttribute("stroke-width","0"),l.setAttribute("fill",i.fill||""),(t.shape==="curve"||t.shape==="polygon")&&l.setAttribute("fill-rule","evenodd");break}case"fillSketch":{l=this.fillSketch(o,a,i);break}}l&&r.appendChild(l)}return r}fillSketch(t,n,i){let o=i.fillWeight;o<0&&(o=i.strokeWidth/2);let r=t.createElementNS(_i,"path");return r.setAttribute("d",this.opsToPath(n,i.fixedDecimalPlaceDigits)),r.setAttribute("stroke",i.fill||""),r.setAttribute("stroke-width",o+""),r.setAttribute("fill","none"),i.fillLineDash&&r.setAttribute("stroke-dasharray",i.fillLineDash.join(" ").trim()),i.fillLineDashOffset&&r.setAttribute("stroke-dashoffset",`${i.fillLineDashOffset}`),r}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(t,n){return this.gen.opsToPath(t,n)}line(t,n,i,o,r){let s=this.gen.line(t,n,i,o,r);return this.draw(s)}rectangle(t,n,i,o,r){let s=this.gen.rectangle(t,n,i,o,r);return this.draw(s)}ellipse(t,n,i,o,r){let s=this.gen.ellipse(t,n,i,o,r);return this.draw(s)}circle(t,n,i,o){let r=this.gen.circle(t,n,i,o);return this.draw(r)}linearPath(t,n){let i=this.gen.linearPath(t,n);return this.draw(i)}polygon(t,n){let i=this.gen.polygon(t,n);return this.draw(i)}arc(t,n,i,o,r,s,a=!1,l){let d=this.gen.arc(t,n,i,o,r,s,a,l);return this.draw(d)}curve(t,n){let i=this.gen.curve(t,n);return this.draw(i)}path(t,n){let i=this.gen.path(t,n);return this.draw(i)}};var ci={canvas(e,t){return new To(e,t)},svg(e,t){return new Do(e,t)},generator(e){return new bt(e)},newSeed(){return bt.newSeed()}};import{arrayToMap as Sc,invariant as sa,rescalePoints as bc,sizeOf as ig}from"@excalidraw/common";import{degreesToRadians as ra,lineSegment as Pe,pointFrom as O,pointFromArray as Mc,pointRotateRads as ae}from"@excalidraw/math";I();import{invariant as Mm}from"@excalidraw/common";import{curve as Am,lineSegment as Tm,pointFrom as Ee,pointDistance as My,pointFromArray as Dm,pointFromVector as vm,pointRotateRads as St,polygon as nl,polygonFromPoints as $r,PRECISION as Ay,segmentsIntersectAt as Ty,vector as Bm,vectorAdd as Lm,vectorFromPoint as Cm,vectorScale as Dy}from"@excalidraw/math";import{getElementAbsoluteCoords as By}from"@excalidraw/element";var il=e=>{let{angle:t,width:n,height:i,x:o,y:r}=e,s=o+n/2,a=r+i/2,l=Ee(s,a),d;return e.type==="diamond"?d=nl(St(Ee(s,r),l,t),St(Ee(o+n,a),l,t),St(Ee(s,r+i),l,t),St(Ee(o,a),l,t)):d=nl(St(Ee(o,r),l,t),St(Ee(o+n,r),l,t),St(Ee(o+n,r+i),l,t),St(Ee(o,r+i),l,t)),{type:"polygon",data:d}};var ol=e=>{let{width:t,height:n,angle:i,x:o,y:r}=e;return{type:"ellipse",data:{center:Ee(o+t/2,r+n/2),angle:i,halfWidth:t/2,halfHeight:n/2}}},Jt=e=>{if(!e)return[];for(let t of e.sets)if(t.type==="path")return t.ops;return e.sets[0].ops},rl=(e,t=Ee(0,0),n,i)=>{let o=l=>St(Ee(l[0]+t[0],l[1]+t[1]),i,n),r=Jt(e),s=[],a=Ee(0,0);for(let l of r){if(l.op==="move"){let d=Dm(l.data);Mm(d!=null,"Ops data is not a point"),a=o(d)}if(l.op==="bcurveTo"){let d=o(Ee(l.data[0],l.data[1])),c=o(Ee(l.data[2],l.data[3])),u=o(Ee(l.data[4],l.data[5]));s.push(Am(a,d,c,u)),a=u}}return{type:"polycurve",data:s}},Gm=e=>{let t=e[0],n=[];for(let i=1;i<e.length;i++){let o=e[i];n.push(Tm(t,o)),t=o}return n},sl=(e,t,n=!1)=>{let i=r=>St(vm(Lm(Cm(r),Bm(e.x,e.y))),t,e.angle),o=Gm(e.points.map(r=>i(r)));return n?{type:"polygon",data:$r(o.flat())}:{type:"polyline",data:o}},al=(e,t,n=Ee(0,0),i,o)=>{let r=c=>St(Ee(c[0]+n[0],c[1]+n[1]),o,i);if(e.roundness===null)return{type:"polygon",data:$r(e.points.map(c=>r(c)))};let s=Jt(t),a=[],l=!1;for(let c of s)c.op==="move"?(l=!l,l&&a.push(Ee(c.data[0],c.data[1]))):c.op==="bcurveTo"?l&&(a.push(Ee(c.data[0],c.data[1])),a.push(Ee(c.data[2],c.data[3])),a.push(Ee(c.data[4],c.data[5]))):c.op==="lineTo"&&l&&a.push(Ee(c.data[0],c.data[1]));let d=It(a,10,5).map(c=>r(c));return{type:"polygon",data:$r(d)}};I();I();function ll(e,t,n,i=o=>o){return e*i(.5-t*(.5-n))}function km(e){return[-e[0],-e[1]]}function At(e,t){return[e[0]+t[0],e[1]+t[1]]}function wt(e,t){return[e[0]-t[0],e[1]-t[1]]}function Mt(e,t){return[e[0]*t,e[1]*t]}function Om(e,t){return[e[0]/t,e[1]/t]}function Hi(e){return[e[1],-e[0]]}function dl(e,t){return e[0]*t[0]+e[1]*t[1]}function Nm(e,t){return e[0]===t[0]&&e[1]===t[1]}function Fm(e){return Math.hypot(e[0],e[1])}function Rm(e){return e[0]*e[0]+e[1]*e[1]}function cl(e,t){return Rm(wt(e,t))}function pl(e){return Om(e,Fm(e))}function zm(e,t){return Math.hypot(e[1]-t[1],e[0]-t[0])}function Wi(e,t,n){let i=Math.sin(n),o=Math.cos(n),r=e[0]-t[0],s=e[1]-t[1],a=r*o-s*i,l=r*i+s*o;return[a+t[0],l+t[1]]}function Vr(e,t,n){return At(e,Mt(wt(t,e),n))}function ul(e,t,n){return At(e,Mt(t,n))}var{min:ui,PI:_m}=Math,ml=.275,Ui=_m+1e-4;function Hm(e,t={}){let{size:n=16,smoothing:i=.5,thinning:o=.5,simulatePressure:r=!0,easing:s=L=>L,start:a={},end:l={},last:d=!1}=t,{cap:c=!0,easing:u=L=>L*(2-L)}=a,{cap:m=!0,easing:p=L=>--L*L*L+1}=l;if(e.length===0||n<=0)return[];let h=e[e.length-1].runningLength,f=a.taper===!1?0:a.taper===!0?Math.max(n,h):a.taper,g=l.taper===!1?0:l.taper===!0?Math.max(n,h):l.taper,E=Math.pow(n*i,2),x=[],b=[],y=e.slice(0,10).reduce((L,P)=>{let v=P.pressure;if(r){let C=ui(1,P.distance/n),z=ui(1,1-C);v=ui(1,L+(z-L)*(C*ml))}return(L+v)/2},e[0].pressure),w=ll(n,o,e[e.length-1].pressure,s),M,S=e[0].vector,T=e[0].point,A=T,F=T,B=A,k=!1;for(let L=0;L<e.length;L++){let{pressure:P}=e[L],{point:v,vector:C,distance:z,runningLength:Q}=e[L];if(L<e.length-1&&h-Q<3)continue;if(o){if(r){let pe=ui(1,z/n),ie=ui(1,1-pe);P=ui(1,y+(ie-y)*(pe*ml))}w=ll(n,o,P,s)}else w=n/2;M===void 0&&(M=w);let ee=Q<f?u(Q/f):1,te=h-Q<g?p((h-Q)/g):1;w=Math.max(.01,w*Math.min(ee,te));let ne=(L<e.length-1?e[L+1]:e[L]).vector,Ae=L<e.length-1?dl(C,ne):1,Ft=dl(C,S)<0&&!k,Rt=Ae!==null&&Ae<0;if(Ft||Rt){let pe=Mt(Hi(S),w);for(let ie=1/13,Le=0;Le<=1;Le+=ie)F=Wi(wt(v,pe),v,Ui*Le),x.push(F),B=Wi(At(v,pe),v,Ui*-Le),b.push(B);T=F,A=B,Rt&&(k=!0);continue}if(k=!1,L===e.length-1){let pe=Mt(Hi(C),w);x.push(wt(v,pe)),b.push(At(v,pe));continue}let hn=Mt(Hi(Vr(ne,C,Ae)),w);F=wt(v,hn),(L<=1||cl(T,F)>E)&&(x.push(F),T=F),B=At(v,hn),(L<=1||cl(A,B)>E)&&(b.push(B),A=B),y=P,S=C}let G=e[0].point.slice(0,2),_=e.length>1?e[e.length-1].point.slice(0,2):At(e[0].point,[1,1]),W=[],D=[];if(e.length===1){if(!(f||g)||d){let L=ul(G,pl(Hi(wt(G,_))),-(M||w)),P=[];for(let v=1/13,C=v;C<=1;C+=v)P.push(Wi(L,G,Ui*2*C));return P}}else{if(!(f||g&&e.length===1))if(c)for(let P=1/13,v=P;v<=1;v+=P){let C=Wi(b[0],G,Ui*v);W.push(C)}else{let P=wt(x[0],b[0]),v=Mt(P,.5),C=Mt(P,.51);W.push(wt(G,v),wt(G,C),At(G,C),At(G,v))}let L=Hi(km(e[e.length-1].vector));if(g||f&&e.length===1)D.push(_);else if(m){let P=ul(_,L,w);for(let v=1/29,C=v;C<1;C+=v)D.push(Wi(P,_,Ui*3*C))}else D.push(At(_,Mt(L,w)),At(_,Mt(L,w*.99)),wt(_,Mt(L,w*.99)),wt(_,Mt(L,w)))}return x.concat(D,b.reverse(),W)}function Zr(e,t={}){var n;let{streamline:i=.5,size:o=16,last:r=!1}=t;if(e.length===0)return[];let s=.15+(1-i)*.85,a=Array.isArray(e[0])?e:e.map(({x:p,y:h,pressure:f=.5})=>[p,h,f]);if(a.length===2){let p=a[1];a=a.slice(0,-1);for(let h=1;h<5;h++)a.push(Vr(a[0],p,h/4))}a.length===1&&(a=[...a,[...At(a[0],[1,1]),...a[0].slice(2)]]);let l=[{point:[a[0][0],a[0][1]],pressure:a[0][2]>=0?a[0][2]:.25,vector:[1,1],distance:0,runningLength:0}],d=!1,c=0,u=l[0],m=a.length-1;for(let p=1;p<a.length;p++){let h=r&&p===m?a[p].slice(0,2):Vr(u.point,a[p],s);if(Nm(u.point,h))continue;let f=zm(h,u.point);if(c+=f,p<m&&!d){if(c<o)continue;d=!0}u={point:h,pressure:a[p][2]>=0?a[p][2]:.5,vector:pl(wt(u.point,h)),distance:f,runningLength:c},l.push(u)}return l[0].vector=((n=l[1])==null?void 0:n.vector)||[0,0],l}function fl(e,t={}){return Hm(Zr(e,t),t)}I();I();I();function xe([e,t,n],[i,o,r]){return[e+i,t+o,n+r]}function mi([e,t,n],[i,o,r]){return[e-i,t-o,n-r]}function Me([e,t,n],i){return[e*i,t*i,n*i]}function $n([e,t,n]){return[e/Math.sqrt(e**2+t**2),t/Math.sqrt(e**2+t**2),n]}function Ge([e,t,n],i){return[Math.cos(i)*e-Math.sin(i)*t,Math.sin(i)*e+Math.cos(i)*t,n]}function hl(e,t,n){return xe(e,Me(mi(t,e),n))}function Kr(e,t,n){return Math.atan2(n[1]-e[1],n[0]-e[0])-Math.atan2(t[1]-e[1],t[0]-e[0])}function qr(e){return Math.atan2(Math.sin(e),Math.cos(e))}function Qr([e,t]){return Math.sqrt(e**2+t**2)}function jn([e,t],[n,i]){return Math.sqrt((n-e)**2+(i-t)**2)}function gl(e){if(e.length<2)return 0;let t=0;for(let n=1;n<=e.length-1;n++)t+=jn(e[n-1],e[n]);return t+=jn(e[e.length-2],e[e.length-1]),t}var Wm=(e,t,n)=>Math.max(t,Math.min(n,e));function El(e,t,n){let i=jn(t,n);if(i===0)return jn(e,t);let o=Wm(((e[0]-t[0])*(n[0]-t[0])+(e[1]-t[1])*(n[1]-t[1]))/i**2,0,1),r=[t[0]+o*(n[0]-t[0]),t[1]+o*(n[1]-t[1]),e[2]];return jn(r,e)}I();function Yi(e,t){if(t===0||e.length<=2)return e;let n=e[0],i=e[e.length-1],[o,r]=e.reduce(([s,a],l,d)=>{let c=El(l,n,i);return c>s?[c,d]:[s,a]},[0,-1]);if(o>=t){let s=e[r];return[...Yi([n,...e.slice(1,r),s],t).slice(0,-1),s,...Yi([s,...e.slice(r,-1),i],t).slice(1)]}return[n,i]}var vo=class e{static defaults={size:2,streamline:.45,simplify:.1,simplifyPhase:"output",keepHead:!1,sizeMapping:()=>1};static constants={cornerDetectionMaxAngle:75,cornerDetectionVariance:t=>t>35?.5:1,maxTailLength:50};options;constructor(t){this.options=Object.assign({},e.defaults,t)}originalPoints=[];stablePoints=[];tailPoints=[];isFresh=!0;get lastPoint(){return this.tailPoints[this.tailPoints.length-1]??this.stablePoints[this.stablePoints.length-1]}addPoint(t){let n=this.originalPoints[this.originalPoints.length-1];if(!(n&&n[0]===t[0]&&n[1]===t[1])){if(this.originalPoints.push(t),this.isFresh){this.isFresh=!1,this.stablePoints.push(t);return}this.options.streamline>0&&(t=hl(this.lastPoint,t,1-this.options.streamline)),this.tailPoints.push(t),gl(this.tailPoints)>e.constants.maxTailLength&&this.stabilizeTail()}}close(){this.stabilizeTail()}stabilizeTail(){if(this.options.simplify>0&&this.options.simplifyPhase==="tail")throw new Error("Not implemented yet");this.stablePoints.push(...this.tailPoints),this.tailPoints=[]}getSize(t,n,i,o,r){return(t??this.options.size)*this.options.sizeMapping({pressure:n,runningLength:r,currentIndex:i,totalLength:o})}getStrokeOutline(t){if(this.isFresh)return[];let n=[...this.stablePoints,...this.tailPoints];this.options.simplify>0&&this.options.simplifyPhase==="input"&&(n=Yi(n,this.options.simplify));let i=n.length;if(i===0)return[];if(i===1){let S=n[0],T=this.getSize(t,S[2],0,i,0);if(T<.5)return[];let A=[];for(let F=0;F<=Math.PI*2;F+=Math.PI/16)A.push(xe(S,Me(Ge([1,0,0],F),T)));return A.push(xe(S,Me([1,0,0],this.getSize(t,S[2],0,i,0)))),A}if(i===2){let S=n[0],T=n[1],A=this.getSize(t,S[2],0,i,0),F=this.getSize(t,T[2],0,i,0);if(A<.5||F<.5)return[];let B=[],k=Kr(S,[S[0],S[1]-100,S[2]],T);for(let G=k;G<=Math.PI+k;G+=Math.PI/16)B.push(xe(S,Me(Ge([1,0,0],G),A)));for(let G=Math.PI+k;G<=Math.PI*2+k;G+=Math.PI/16)B.push(xe(T,Me(Ge([1,0,0],G),F)));return B.push(B[0]),B}let o=[],r=[],s=0,a=0,l=0,d=0;for(let S=1;S<i-1;S++){let T=n[S-1],A=n[S],F=n[S+1],B=A[2],k=jn(T,A);d+=k,s=a+(k-a)*.2;let G=this.getSize(t,B,S,i,d);if(G===0){l=S+1;continue}let _=$n(mi(T,A)),W=$n(mi(F,A)),D=Ge(_,Math.PI/2),L=Ge(_,-Math.PI/2),P=Ge(W,Math.PI/2),v=Ge(W,-Math.PI/2),C=xe(A,Me(D,G)),z=xe(A,Me(L,G)),Q=xe(A,Me(P,G)),ee=xe(A,Me(v,G)),te=xe(D,v),ne=xe(L,P),Ae=xe(A,Me(Qr(te)===0?_:$n(te),G)),Ft=xe(A,Me(Qr(ne)===0?W:$n(ne),G)),Rt=qr(Kr(A,T,F)),hn=e.constants.cornerDetectionMaxAngle/180*Math.PI*e.constants.cornerDetectionVariance(s);if(Math.abs(Rt)<hn){let pe=Math.abs(qr(Math.PI-Rt));if(pe===0)continue;if(Rt<0){r.push(z,Ft);for(let ie=0;ie<=pe;ie+=pe/4)o.push(xe(A,Ge(Me(D,G),ie)));for(let ie=pe;ie>=0;ie-=pe/4)r.push(xe(A,Ge(Me(D,G),ie)));r.push(Ft,Q)}else{o.push(C,Ae);for(let ie=0;ie<=pe;ie+=pe/4)r.push(xe(A,Ge(Me(D,-G),-ie)));for(let ie=pe;ie>=0;ie-=pe/4)o.push(xe(A,Ge(Me(D,-G),-ie)));o.push(Ae,ee)}}else o.push(Ae),r.push(Ft);a=s}if(l>=i-2){if(this.options.keepHead){let S=n[i-1],T=[];for(let A=0;A<=Math.PI*2;A+=Math.PI/16)T.push(xe(S,Me(Ge([1,0,0],A),this.options.size)));return T.push(xe(S,Me([1,0,0],this.options.size))),T}return[]}let c=n[l],u=n[l+1],m=n[i-2],p=n[i-1],h=$n(mi(u,c)),f=$n(mi(m,p)),g=Ge(h,-Math.PI/2),E=Ge(f,Math.PI/2),x=this.getSize(t,c[2],0,i,0),b=[],y=this.options.keepHead?this.options.size:this.getSize(t,m[2],i-2,i,d),w=[];if(x>.1){for(let S=0;S<=Math.PI;S+=Math.PI/16)b.unshift(xe(c,Ge(Me(g,x),-S)));b.unshift(xe(c,Me(g,-x)))}else b.push(c);for(let S=0;S<=Math.PI*3;S+=Math.PI/16)w.push(xe(p,Ge(Me(E,-y),-S)));let M=[...b,...o,...w.reverse(),...r.reverse()];return b.length>0&&M.push(b[0]),this.options.simplify>0&&this.options.simplifyPhase==="output"?Yi(M,this.options.simplify):M}};import{pointFrom as ye,pointDistance as uc,pointRotateRads as cn}from"@excalidraw/math";import{ROUGHNESS as Hh,THEME as ia,isTransparent as so,assertNever as Wh,COLOR_PALETTE as Uh,LINE_POLYGON_POINT_MERGE_DISTANCE as Yh,applyDarkModeFilter as ao,DEFAULT_STROKE_STREAMLINE as Xh}from"@excalidraw/common";I();import{isRightAngleRads as Dh,lineSegment as sc,pointFrom as cr,pointRotateRads as Js}from"@excalidraw/math";import{BOUND_TEXT_PADDING as On,DEFAULT_REDUCED_GLOBAL_ALPHA as vh,ELEMENT_READY_TO_ERASE_OPACITY as Bh,FRAME_STYLE as ur,DARK_THEME_FILTER as Lh,MIME_TYPES as ta,THEME as Mi,distance as Nn,getFontString as Ch,isRTL as Gh,getVerticalOffset as kh,invariant as Oh,applyDarkModeFilter as pr,isSafari as Nh}from"@excalidraw/common";I();import{pointFrom as en,pointCenter as Ym,pointRotateRads as bn,vectorFromPoint as Jr,vectorNormalize as xl,vectorSubtract as bl,vectorAdd as Bo,vectorScale as Lo,pointFromVector as wl,clamp as Re,isCloseTo as yl}from"@excalidraw/math";var ze=10,$y=(e,t,n,i,o,r,s,a)=>{let{width:l,height:d}=es(e),c=i/l,u=o/d,m=(e.crop?.x??0)/c,p=(e.crop?.y??0)/u,h=bn(en(r,s),re(e,t),-e.angle);r=h[0],s=h[1];let f=e.width,g=e.height,E=e.crop??{x:0,y:0,width:i,height:o,naturalWidth:i,naturalHeight:o},x=E.height,b=E.width,y=e.scale[0]===-1,w=e.scale[1]===-1,M=s-e.y,S=r-e.x;n.includes("n")&&(g=Re(e.height-M,ze,w?d-p:e.height+p)),n.includes("s")&&(M=s-e.y-e.height,g=Re(e.height+M,ze,w?e.height+p:d-p)),n.includes("e")&&(S=r-e.x-e.width,f=Re(e.width+S,ze,y?e.width+m:l-m)),n.includes("w")&&(f=Re(e.width-S,ze,y?l-m:e.width+m));let T=B=>{B.height=g*u,B.width=f*c};T(E);let A=(B,k)=>{T(k),B.includes("n")&&(w||(k.y+=x-k.height)),B.includes("s")&&w&&(k.y+=x-k.height),B.includes("e")&&y&&(k.x+=b-k.width),B.includes("w")&&(y||(k.x+=b-k.width))};switch(n){case"n":{if(a){let B=m+e.width/2,k=l-m-e.width/2,G=Math.min(B,k)*2;f=Re(g*a,ze,G),g=f/a}A(n,E),a&&(E.x+=(b-E.width)/2);break}case"s":{if(a){let B=m+e.width/2,k=l-m-e.width/2,G=Math.min(B,k)*2;f=Re(g*a,ze,G),g=f/a}A(n,E),a&&(E.x+=(b-E.width)/2);break}case"w":{if(a){let B=p+e.height/2,k=d-p-e.height/2,G=Math.min(B,k)*2;g=Re(f/a,ze,G),f=g*a}A(n,E),a&&(E.y+=(x-E.height)/2);break}case"e":{if(a){let B=p+e.height/2,k=d-p-e.height/2,G=Math.min(B,k)*2;g=Re(f/a,ze,G),f=g*a}A(n,E),a&&(E.y+=(x-E.height)/2);break}case"ne":{if(a)if(S>-M){let B=w?d-p:p+e.height;g=Re(f/a,ze,B),f=g*a}else{let B=y?m+e.width:l-m;f=Re(g*a,ze,B),g=f/a}A(n,E);break}case"nw":{if(a)if(S<M){let B=w?d-p:p+e.height;g=Re(f/a,ze,B),f=g*a}else{let B=y?l-m:m+e.width;f=Re(g*a,ze,B),g=f/a}A(n,E);break}case"se":{if(a)if(S>M){let B=w?p+e.height:d-p;g=Re(f/a,ze,B),f=g*a}else{let B=y?m+e.width:l-m;f=Re(g*a,ze,B),g=f/a}A(n,E);break}case"sw":{if(a)if(-S>M){let B=w?p+e.height:d-p;g=Re(f/a,ze,B),f=g*a}else{let B=y?l-m:m+e.width;f=Re(g*a,ze,B),g=f/a}A(n,E);break}default:break}let F=Xm(e,n,f,g,!!a);return yl(E.width,E.naturalWidth)&&yl(E.height,E.naturalHeight)&&(E=null),{x:F[0],y:F[1],width:f,height:g,crop:E}},Xm=(e,t,n,i,o)=>{let[r,s,a,l]=wn(e,e.width,e.height,!0),d=en(r,s),c=en(a,l),u=Ym(d,c),[m,p,h,f]=wn(e,n,i,!0),g=h-m,E=f-p,x=[...d];if(["n","w","nw"].includes(t)&&(x=[c[0]-Math.abs(g),c[1]-Math.abs(E)]),t==="ne"){let T=[d[0],c[1]];x=[T[0],T[1]-Math.abs(E)]}if(t==="sw"){let T=[c[0],d[1]];x=[T[0]-Math.abs(g),T[1]]}o&&(["s","n"].includes(t)&&(x[0]=u[0]-g/2),["e","w"].includes(t)&&(x[1]=u[1]-E/2));let b=e.angle,y=bn(x,u,b),w=[x[0]+Math.abs(g)/2,x[1]+Math.abs(E)/2],M=bn(w,u,b);x=bn(y,M,-b);let S=[...x];return S[0]+=e.x-m,S[1]+=e.y-p,S},Pl=(e,t)=>{if(e.crop){let{width:n,height:i}=es(e),[o,r,s,a,l,d]=Z(e,t),c=Jr(bn(en(o,r),en(l,d),e.angle)),u=Jr(bn(en(s,r),en(l,d),e.angle)),m=xl(bl(u,c)),p=Jr(bn(en(o,a),en(l,d),e.angle)),h=bl(p,c),f=xl(h),{cropX:g,cropY:E}=jm(e.crop,e.scale),x=Bo(Bo(c,Lo(m,-g*n/e.crop.naturalWidth)),Lo(f,-E*i/e.crop.naturalHeight)),b=wl(Bo(Bo(x,Lo(m,n/2)),Lo(f,i/2))),y=bn(wl(x),b,-e.angle);return{...e,x:y[0],y:y[1],width:n,height:i,crop:null}}return e},es=e=>{if(e.crop){let t=e.width/(e.crop.width/e.crop.naturalWidth),n=e.height/(e.crop.height/e.crop.naturalHeight);return{width:t,height:n}}return{width:e.width,height:e.height}},jm=(e,t)=>{let n=e.x,i=e.y,o=t[0]===-1,r=t[1]===-1;return o&&(n=e.naturalWidth-Math.abs(n)-e.width),r&&(i=e.naturalHeight-Math.abs(i)-e.height),{cropX:n,cropY:i}},Vy=(e,t=!1)=>{let n=e.crop;if(!n)return null;let i=e.scale[0]===-1,o=e.scale[1]===-1,r=n.x,s=n.y;if(i&&(r=n.naturalWidth-n.width-n.x),o&&(s=n.naturalHeight-n.height-n.y),t)return{x:r,y:s};let{width:a,height:l}=es(e);return{x:r/(n.naturalWidth/a),y:s/(n.naturalHeight/l)}};I();import{pointCenter as Cd,pointFrom as H,pointRotateRads as qe,pointsEqual as Gd,pointDistance as ti,vectorFromPoint as Zf,curveLength as Kf,curvePointAtLength as qf}from"@excalidraw/math";import{DRAGGING_THRESHOLD as Qf,KEYS as Jn,shouldRotateWithDiscreteAngle as ei,getGridPoint as kd,invariant as dt,isShallowEqual as Jf,getFeatureFlag as Pi}from"@excalidraw/common";import{deconstructLinearOrFreeDrawElement as Od,getSnapOutlineMidPoint as Nd,isPathALoop as eh,moveArrowAboveBindable as Fd,projectFixedPointOntoDiagonal as Rd}from"@excalidraw/element";I();import{arrayToMap as Sd,getFeatureFlag as Tf,getGridPoint as Rs,invariant as dn,isTransparent as Df}from"@excalidraw/common";import{PRECISION as vf,clamp as ir,lineSegment as bi,pointDistance as Tn,pointDistanceSq as xt,pointFrom as q,pointFromArray as Bf,pointFromVector as tr,pointRotateRads as ge,pointsEqual as Lf,vectorFromPoint as wi,vectorNormalize as Fs,vectorScale as nr}from"@excalidraw/math";I();import{invariant as Ql,isTransparent as Jl}from"@excalidraw/common";import{curveIntersectLineSegment as ed,isPointWithinBounds as ys,lineSegment as Qi,lineSegmentIntersectionPoints as td,pointFrom as De,pointFromVector as Xp,pointRotateRads as ht,pointsEqual as nd,vectorFromPoint as jp,vectorNormalize as $p,vectorScale as Vp}from"@excalidraw/math";import{ellipse as Zp,ellipseSegmentInterceptPoints as Kp}from"@excalidraw/math/ellipse";I();import{DEFAULT_ADAPTIVE_RADIUS as ep,DEFAULT_PROPORTIONAL_RADIUS as ns,invariant as tp,LINE_CONFIRM_THRESHOLD as np,ROUNDNESS as is}from"@excalidraw/common";import{bezierEquation as ip,curve as tn,curveCatmullRomCubicApproxPoints as Gl,curveOffsetPoints as kl,lineSegment as Ce,lineSegmentIntersectionPoints as Ll,pointDistance as Zn,pointFrom as Y,pointFromArray as op,pointFromVector as rp,pointRotateRads as pt,pointTranslate as Cl,rectangle as sp,vectorFromPoint as Ol,vectorNormalize as ap,vectorScale as os}from"@excalidraw/math";I();import{ROUNDNESS as Xi,assertNever as $m}from"@excalidraw/common";import{pointsEqual as Il}from"@excalidraw/math";var Vn=e=>!!e&&e.type==="image"&&!!e.fileId,ke=e=>!!e&&e.type==="image",Sl=e=>!!e&&e.type==="embeddable",Co=e=>!!e&&e.type==="iframe",Go=e=>!!e&&(e.type==="iframe"||e.type==="embeddable"),oe=e=>e!=null&&e.type==="text",ko=e=>e!=null&&e.type==="frame",Ml=e=>e!=null&&e.type==="magicframe",J=e=>e!=null&&(e.type==="frame"||e.type==="magicframe"),be=e=>e!=null&&Vm(e.type),Vm=e=>e==="freedraw",K=e=>e!=null&&qm(e.type),Oe=e=>e!=null&&e.type==="line",X=e=>e!=null&&e.type==="arrow",j=e=>X(e)&&e.elbowed,Jy=e=>X(e)&&!e.elbowed,Zm=e=>X(e)&&!e.elbowed&&!e.roundness,Km=e=>X(e)&&!e.elbowed&&e.roundness!==null,qm=e=>e==="arrow"||e==="line",_e=(e,t=!0)=>e!=null&&(!e.locked||t===!0)&&Qm(e.type),Qm=e=>e==="arrow",we=(e,t=!0)=>e!=null&&(!e.locked||t===!0)&&(e.type==="rectangle"||e.type==="diamond"||e.type==="ellipse"||e.type==="image"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="text"&&!e.containerId),Al=e=>e!=null&&(e.type==="rectangle"||e.type==="diamond"||e.type==="image"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="text"&&!e.containerId),ji=e=>e!=null&&(e.type==="rectangle"||e.type==="image"||e.type==="text"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="freedraw"),Jm=(e,t=!0)=>e!=null&&(!e.locked||t===!0)&&(e.type==="rectangle"||e.type==="diamond"||e.type==="ellipse"||X(e)),Tl=e=>{let t=e?.type;if(!t)return!1;switch(t){case"text":case"diamond":case"rectangle":case"iframe":case"embeddable":case"ellipse":case"arrow":case"freedraw":case"line":case"frame":case"magicframe":case"image":case"selection":return!0;default:return $m(t,null),!1}},Dl=e=>e.type==="rectangle"||e.type==="ellipse"||e.type==="diamond",_t=e=>Jm(e)&&!!e.boundElements?.some(({type:t})=>t==="text"),Ie=e=>e!==null&&"containerId"in e&&e.containerId!==null&&oe(e),e0=e=>!!e.startBinding||!!e.endBinding,Oo=e=>e==="rectangle"||e==="embeddable"||e==="iframe"||e==="image",vl=e=>e==="line"||e==="arrow"||e==="diamond",t0=(e,t)=>!!((e===Xi.ADAPTIVE_RADIUS||e===Xi.LEGACY)&&Oo(t.type)||e===Xi.PROPORTIONAL_RADIUS&&vl(t.type)),n0=e=>vl(e.type)?{type:Xi.PROPORTIONAL_RADIUS}:Oo(e.type)?{type:Xi.ADAPTIVE_RADIUS}:null,i0=e=>Zm(e)?"sharpArrow":Km(e)?"curvedArrow":j(e)?"elbowArrow":"line",ts=e=>e.length>3&&Il(e[0],e[e.length-1]),Bl=e=>e.length>3||e.length===3&&!Il(e[0],e[e.length-1]),o0=e=>{switch(e){case"rectangle":case"diamond":case"ellipse":case"arrow":case"line":case"freedraw":case"text":case"image":case"frame":case"embeddable":return!0;default:return!1}};var $i=new WeakMap,rs=(e,t)=>{let n=$i.get(e);if(!n)return;let{version:i,shapes:o}=n;if(i!==e.version){$i.delete(e);return}return o.get(t)},ss=(e,t,n)=>{let i=$i.get(e);if(!i){$i.set(e,{version:e.version,shapes:new Map([[n,t]])});return}let{version:o,shapes:r}=i;if(o!==e.version){$i.set(e,{version:e.version,shapes:new Map([[n,t]])});return}r.set(n,t)};function No(e,t){let n=rs(e,0);if(n)return n;let i=Fl(e,t),o=[],r=[];for(let a=0;a<i.length;a+=1){let l=i[a],d=i[a-1]&&op(i[a-1].data.slice(-2));switch(l.op){case"move":continue;case"lineTo":if(!d)throw new Error("prevPoint is undefined");o.push(Ce(Y(e.x+d[0],e.y+d[1]),Y(e.x+l.data[0],e.y+l.data[1])));continue;case"bcurveTo":if(!d)throw new Error("prevPoint is undefined");r.push(tn(Y(e.x+d[0],e.y+d[1]),Y(e.x+l.data[0],e.y+l.data[1]),Y(e.x+l.data[2],e.y+l.data[3]),Y(e.x+l.data[4],e.y+l.data[5])));continue;default:console.error("Unknown op type",l.op)}}let s=[o,r];return ss(e,s,0),s}function yn(e,t=0){let n=rs(e,t);if(n)return n;let i=nn(Math.min(e.width,e.height),e);i===0&&(i=.01);let o=sp(Y(e.x,e.y),Y(e.x+e.width,e.y+e.height)),r=Ce(Y(o[0][0]+i,o[0][1]),Y(o[1][0]-i,o[0][1])),s=Ce(Y(o[1][0],o[0][1]+i),Y(o[1][0],o[1][1]-i)),a=Ce(Y(o[0][0]+i,o[1][1]),Y(o[1][0]-i,o[1][1])),l=Ce(Y(o[0][0],o[1][1]-i),Y(o[0][0],o[0][1]+i)),d=[tn(l[1],Y(l[1][0]+2/3*(o[0][0]-l[1][0]),l[1][1]+2/3*(o[0][1]-l[1][1])),Y(r[0][0]+2/3*(o[0][0]-r[0][0]),r[0][1]+2/3*(o[0][1]-r[0][1])),r[0]),tn(r[1],Y(r[1][0]+2/3*(o[1][0]-r[1][0]),r[1][1]+2/3*(o[0][1]-r[1][1])),Y(s[0][0]+2/3*(o[1][0]-s[0][0]),s[0][1]+2/3*(o[0][1]-s[0][1])),s[0]),tn(s[1],Y(s[1][0]+2/3*(o[1][0]-s[1][0]),s[1][1]+2/3*(o[1][1]-s[1][1])),Y(a[1][0]+2/3*(o[1][0]-a[1][0]),a[1][1]+2/3*(o[1][1]-a[1][1])),a[1]),tn(a[0],Y(a[0][0]+2/3*(o[0][0]-a[0][0]),a[0][1]+2/3*(o[1][1]-a[0][1])),Y(l[0][0]+2/3*(o[0][0]-l[0][0]),l[0][1]+2/3*(o[1][1]-l[0][1])),l[0])],c=t>0?d.map(p=>Gl(kl(p,t))):[[d[0]],[d[1]],[d[2]],[d[3]]],m=[[Ce(c[0][c[0].length-1][3],c[1][0][0]),Ce(c[1][c[1].length-1][3],c[2][0][0]),Ce(c[2][c[2].length-1][3],c[3][0][0]),Ce(c[3][c[3].length-1][3],c[0][0][0])],c.flat()];return ss(e,m,t),m}function Nl(e,t=0){let[n,i,o,r,s,a,l,d]=pi(e),c=e.roundness?nn(Math.abs(n-l),e):(n-l)*.01,u=e.roundness?nn(Math.abs(r-i),e):(r-i)*.01,[m,p,h,f]=[Y(e.x+n,e.y+i),Y(e.x+o,e.y+r),Y(e.x+s,e.y+a),Y(e.x+l,e.y+d)];return[tn(Y(p[0]-c,p[1]-u),p,p,Y(p[0]-c,p[1]+u)),tn(Y(h[0]+c,h[1]-u),h,h,Y(h[0]-c,h[1]-u)),tn(Y(f[0]+c,f[1]+u),f,f,Y(f[0]+c,f[1]-u)),tn(Y(m[0]-c,m[1]+u),m,m,Y(m[0]+c,m[1]+u))]}function Pn(e,t=0){let n=rs(e,t);if(n)return n;let i=Nl(e,t),o=t>0?i.map(a=>Gl(kl(a,t))):[[i[0]],[i[1]],[i[2]],[i[3]]],s=[[Ce(o[0][o[0].length-1][3],o[1][0][0]),Ce(o[1][o[1].length-1][3],o[2][0][0]),Ce(o[2][o[2].length-1][3],o[3][0][0]),Ce(o[3][o[3].length-1][3],o[0][0][0])],o.flat()];return ss(e,s,t),s}var Tt=(e,t=1)=>{if(e.length>=3){let[n,i]=[e[0],e[e.length-1]];return Zn(n,i)<=np/t}return!1},nn=(e,t)=>{if(t.roundness?.type===is.PROPORTIONAL_RADIUS||t.roundness?.type===is.LEGACY)return e*ns;if(t.roundness?.type===is.ADAPTIVE_RADIUS){let n=t.roundness?.value??ep,i=n/ns;return e<=i?e*ns:n}return 0},lp=(e,t)=>{let n=e.type==="rectangle"?15:0,i=a=>{let l=ap(Ol(a[1],a[0])),d=os(l,n);return Ce(Cl(a[0],d),Cl(a[1],os(d,-1)))},o=re(e,t),r=i(ji(e)?Ce(pt(Y(e.x,e.y),o,e.angle),pt(Y(e.x+e.width,e.y+e.height),o,e.angle)):Ce(pt(Y(e.x+e.width/2,e.y),o,e.angle),pt(Y(e.x+e.width/2,e.y+e.height),o,e.angle))),s=i(ji(e)?Ce(pt(Y(e.x+e.width,e.y),o,e.angle),pt(Y(e.x,e.y+e.height),o,e.angle)):Ce(pt(Y(e.x,e.y+e.height/2),o,e.angle),pt(Y(e.x+e.width,e.y+e.height/2),o,e.angle)));return[r,s]},dp=(e,t,n,i)=>{let o=re(t,n);return(t.type==="diamond"?Nl(t).map(a=>{let l=ip(a,.5),d=pt(l,o,t.angle);return Y(d[0],d[1])}):[pt(Y(t.x+t.width,t.y+t.height/2),o,t.angle),pt(Y(t.x+t.width/2,t.y+t.height),o,t.angle),pt(Y(t.x,t.y+t.height/2),o,t.angle),pt(Y(t.x+t.width/2,t.y),o,t.angle)]).find(a=>Zn(e,a)<=Dt(i)+t.strokeWidth/2&&!Ht({point:e,element:t,threshold:0,elementsMap:n,overrideShouldTestInside:!0}))},as=(e,t,n,i,o,r,s=!0)=>{if(tp(e.points.length>=2,"Arrow must have at least two points"),e.width<3&&e.height<3)return null;if(s){let E=dp(t,n,o,r);if(E)return E}let[a,l]=lp(n,o),d=R.getPointAtIndexGlobalCoordinates(e,i==="start"?1:e.points.length-2,o);if(e.points.length===2){let E=i==="start"?e.endBinding:e.startBinding,x=E&&o.get(E.elementId),b=E&&x&&He(We(E.fixedPoint),x,o);b&&(d=b)}let c=rp(os(Ol(t,d),2*Zn(d,t)+Math.max(Zn(a[0],a[1]),Zn(l[0],l[1]))),d),u=Ce(c,d),m=Ll(a,u),p=Ll(l,u),h=m&&Zn(d,m),f=p&&Zn(d,p),g=null;return h!=null&&f!=null?g=h<f?m:p:g=m||p||null,g&&it(g,n,o)?g:null};I();import{ARROW_LABEL_FONT_SIZE_TO_MIN_WIDTH_RATIO as Cp,ARROW_LABEL_WIDTH_FRACTION as Gp,BOUND_TEXT_PADDING as Wt,DEFAULT_FONT_SIZE as kp,TEXT_ALIGN as Yl,VERTICAL_ALIGN as Xl,getFontString as Wo,isProdEnv as Op,invariant as Np}from"@excalidraw/common";import{pointFrom as jl,pointRotateRads as Fp}from"@excalidraw/math";I();var Vi={},Rl=(e,t)=>{let n=Vi[e]||(Vi[e]={height:t});return n.height=t,n},zl=e=>{Vi[e]&&delete Vi[e]},x0=e=>Vi[e]?.height??null;I();import{BOUND_TEXT_PADDING as Ro,DEFAULT_FONT_SIZE as cp,DEFAULT_FONT_FAMILY as up,getFontString as mp,isTestEnv as pp,normalizeEOL as fp}from"@excalidraw/common";var ft=(e,t,n)=>{let i=e.split(`
|
|
2
2
|
`).map(a=>a||" ").join(`
|
|
3
|
-
`),o=parseFloat(t),r=
|
|
4
|
-
`),e,t).width+
|
|
5
|
-
`),
|
|
6
|
-
`)
|
|
7
|
-
`)
|
|
3
|
+
`),o=parseFloat(t),r=hp(i,o,n);return{width:Ul(i,t),height:r}},_l="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".toLocaleUpperCase(),Hl=(e,t)=>{let n=gp(e);return n===0?ft(_l.split("").join(`
|
|
4
|
+
`),e,t).width+Ro*2:n+Ro*2},zo=(e,t)=>ft("",e,t).width+Ro*2,P0=()=>Ul(_l,mp({fontSize:cp,fontFamily:up}))>0,Zi=e=>fp(e).replace(/\t/g," "),ds=e=>Zi(e).split(`
|
|
5
|
+
`),I0=e=>{let t=ds(e.text).length;return e.height/t/e.fontSize},_o=(e,t)=>e*t,Wl=(e,t)=>_o(e,t)+Ro*2,Fo,S0=e=>{Fo=e},ls=class{canvas;constructor(){this.canvas=document.createElement("canvas")}getLineWidth(t,n){let i=this.canvas.getContext("2d");i.font=n;let r=i.measureText(t).width;return pp()?r*10:r}},In=(e,t)=>(Fo||(Fo=new ls),Fo.getLineWidth(e,t)),Ul=(e,t)=>{let n=ds(e),i=0;return n.forEach(o=>{i=Math.max(i,In(o,t))}),i},hp=(e,t,n)=>{let i=ds(e).length;return _o(t,n)*i},fi=(()=>{let e={};return{calculate:(o,r)=>{let s=o.charCodeAt(0);if(e[r]||(e[r]=[]),!e[r][s]){let a=In(o,r);e[r][s]=a}return e[r][s]},getCache:o=>e[o],clearCache:o=>{e[o]=[]}}})(),M0=e=>{let t=fi.getCache(e);if(!t)return 0;let n=t.filter(i=>i!==void 0);return Math.min(...n)},gp=e=>{let t=fi.getCache(e);if(!t)return 0;let n=t.filter(i=>i!==void 0);return Math.max(...n)};I();import{isDevEnv as Ep,isTestEnv as xp}from"@excalidraw/common";var cs,Ho,us,B0=e=>(cs||(cs=le.class(...Object.values(on))),cs.test(e)),bp=()=>{if(!Ho)try{Ho=yp()}catch{Ho=wp()}return Ho},ms=()=>(us||(us=Pp()),us),yt={WHITESPACE:/\s/u,HYPHEN:/-/u,OPENING:/<\(\[\{/u,CLOSING:/>\)\]\}.,:;!\?…\//u},on={CHAR:/\p{Script=Han}\p{Script=Hiragana}\p{Script=Katakana}\p{Script=Hangul}`'^〃〰〆#&*+-ー/\=|¦〒¬ ̄/u,OPENING:/([{〈《⦅「「『【〖〔〘〚<〝/u,CLOSING:/)]}〉》⦆」」』】〗〕〙〛>。.,、〟‥?!:;・〜〞/u,CURRENCY:/¥₩£¢$/u},Kn={FLAG:/\p{RI}\p{RI}/u,JOINER:/(?:\p{Emoji_Modifier}|\uFE0F\u20E3?|[\u{E0020}-\u{E007E}]+\u{E007F})?/u,ZWJ:/\u200D/u,ANY:/[\p{Emoji}]/u,MOST:/[\p{Extended_Pictographic}\p{Emoji_Presentation}]/u},wp=()=>le.or(ms(),Se.On(yt.HYPHEN,yt.WHITESPACE,on.CHAR)),yp=()=>le.or(ms(),Se.Before(yt.WHITESPACE).Build(),Se.After(yt.WHITESPACE,yt.HYPHEN).Build(),Se.Before(on.CHAR,on.CURRENCY).NotPrecededBy(yt.OPENING,on.OPENING).Build(),Se.After(on.CHAR).NotFollowedBy(yt.HYPHEN,yt.CLOSING,on.CLOSING).Build(),Se.BeforeMany(on.OPENING).NotPrecededBy(yt.OPENING).Build(),Se.AfterMany(on.CLOSING).NotFollowedBy(yt.CLOSING).Build(),Se.AfterMany(yt.CLOSING).FollowedBy(yt.OPENING).Build()),Pp=()=>le.group(le.or(Kn.FLAG,le.and(Kn.MOST,Kn.JOINER,le.build(`(?:${Kn.ZWJ.source}(?:${Kn.FLAG.source}|${Kn.ANY.source}${Kn.JOINER.source}))*`)))),le={build:e=>new RegExp(e,"u"),join:(...e)=>e.map(t=>t.source).join(""),and:(...e)=>le.build(le.join(...e)),or:(...e)=>le.build(e.map(t=>t.source).join("|")),group:(...e)=>le.build(`(${le.join(...e)})`),class:(...e)=>le.build(`[${le.join(...e)}]`)},Se={On:(...e)=>{let t=le.join(...e);return le.build(`([${t}])`)},Before:(...e)=>{let t=le.join(...e),n=()=>le.build(`(?=[${t}])`);return Se.Chain(n)},After:(...e)=>{let t=le.join(...e),n=()=>le.build(`(?<=[${t}])`);return Se.Chain(n)},BeforeMany:(...e)=>{let t=le.join(...e),n=()=>le.build(`(?<![${t}])(?=[${t}])`);return Se.Chain(n)},AfterMany:(...e)=>{let t=le.join(...e),n=()=>le.build(`(?<=[${t}])(?![${t}])`);return Se.Chain(n)},NotBefore:(...e)=>{let t=le.join(...e),n=()=>le.build(`(?![${t}])`);return Se.Chain(n)},NotAfter:(...e)=>{let t=le.join(...e),n=()=>le.build(`(?<![${t}])`);return Se.Chain(n)},Chain:e=>({Build:e,PreceededBy:(...t)=>{let n=e(),i=Se.After(...t).Build(),o=()=>le.and(i,n);return Se.Chain(o)},FollowedBy:(...t)=>{let n=e(),i=Se.Before(...t).Build(),o=()=>le.and(n,i);return Se.Chain(o)},NotPrecededBy:(...t)=>{let n=e(),i=Se.NotAfter(...t).Build(),o=()=>le.and(i,n);return Se.Chain(o)},NotFollowedBy:(...t)=>{let n=e(),i=Se.NotBefore(...t).Build(),o=()=>le.and(n,i);return Se.Chain(o)}})},Ip=e=>{let t=bp();return e.normalize("NFC").split(t).filter(Boolean)},rn=(e,t,n)=>Mp(e,t,n).map(i=>i.text).join(`
|
|
6
|
+
`),Sp=e=>{let t=0;return e.split(`
|
|
7
|
+
`).map(n=>{let i=t,o=i+n.length;return t=o+1,{text:n,start:i,end:o}})},Mp=(e,t,n)=>{if(!Number.isFinite(n)||n<0)return Sp(e);let i=[],o=0;for(let r of e.split(`
|
|
8
|
+
`))In(r,t)<=n?i.push({text:r,start:o,end:o+r.length}):i.push(...Ap(r,t,n,o)),o+=r.length+1;return i},Ap=(e,t,n,i)=>{let o=[],r=Ip(e),s="",a=i,l=i,d=0,c=i,u=0;for(;u<r.length;){let m=r[u],p=c,h=p+m.length,f=s+m,g=Bp(m)?d+fi.calculate(m,t):In(f,t);if(/\s/.test(m)||g<=n){s||(a=p),s=f,l=h,d=g,c=h,u++;continue}if(s)o.push(vp(s,a,l)),s="",a=p,l=p,d=0;else{let E=Tp(m,t,n,p),x=E[E.length-1]??{text:"",start:p,end:p},b=E.slice(0,-1);o.push(...b),s=x.text,a=x.start,l=x.end,d=In(x.text,t),c=h,u++}}if(s){let m=Dp(s,a,l,t,n);o.push(m)}return o},Tp=(e,t,n,i)=>{if(ms().test(e))return[{text:e,start:i,end:i+e.length}];Lp(e);let o=[],r=Array.from(e),s="",a=i,l=i,d=0,c=i;for(let u of r){let m=c,p=m+u.length,h=fi.calculate(u,t),f=d+h;if(f<=n){s||(a=m),s=s+u,l=p,d=f,c=p;continue}s&&o.push({text:s,start:a,end:l}),s=u,a=m,l=p,d=h,c=p}return s&&o.push({text:s,start:a,end:l}),o},Dp=(e,t,n,i,o)=>{if(!(In(e,i)>o))return{text:e,start:t,end:n};let[,s,a]=e.match(/^(.+?)(\s+)$/)??[e,e.trimEnd(),""],l=In(s,i);for(let d of Array.from(a)){let c=fi.calculate(d,i),u=l+c;if(u>o)break;s=s+d,l=u}return{text:s,start:t,end:n-(e.length-s.length)}},vp=(e,t,n)=>{let i=e.trimEnd();return{text:i,start:t,end:n-(e.length-i.length)}},Bp=e=>e.codePointAt(0)!==void 0&&e.codePointAt(1)===void 0,Lp=e=>{if((xp()||Ep())&&/\s/.test(e))throw new Error("Word should not contain any whitespaces!")};var Uo=(e,t,n)=>{let i=n.getNonDeletedElementsMap(),o;Op()||Np(!t||!X(t)||e.angle===0,"text element angle must be 0 if bound to arrow container");let r={x:e.x,y:e.y,text:e.text,width:e.width,height:e.height,angle:t?X(t)?0:t.angle:e.angle};r.text=e.text,(t||!e.autoResize)&&(o=t?vt(t,e):e.width,r.text=rn(e.originalText,Wo(e),o));let s=ft(r.text,Wo(e),e.lineHeight);if(e.autoResize&&(r.width=s.width),r.height=s.height,t){let a=qi(t,e),l=vt(t,e);if(!X(t)&&s.height>a){let m=ps(s.height,t.type);n.mutateElement(t,{height:m}),Rl(t.id,m)}if(s.width>l){let m=ps(s.width,t.type);n.mutateElement(t,{width:m})}let d={...e,...r},{x:c,y:u}=Ki(t,d,i);r.x=c,r.y=u}n.mutateElement(e,r)},qn=(e,t,n,i=!1,o=!1)=>{let r=t.getNonDeletedElementsMap();if(!Bt(e))return;zl(e.id);let a=de(e,r);if(a&&a.text){if(!e)return;let l=a.text,d=a.height,c=a.width,u=vt(e,a),m=qi(e,a),p=e.height;if(i||n!=="n"&&n!=="s"){l&&(l=rn(a.originalText,Wo(a),u));let h=ft(l,Wo(a),a.lineHeight);d=h.height,c=h.width}if(d>m){p=ps(d,e.type);let h=p-e.height,f=n==="n"||n==="ne"||n==="nw",g=0;X(e)||(o?g=h/2:f&&(g=h)),t.mutateElement(e,{height:p,y:e.y-g})}t.mutateElement(a,{text:l,width:c,height:d}),X(e)||t.mutateElement(a,Ki(e,a,r))}},Ki=(e,t,n)=>{if(X(e))return R.getBoundTextElementPosition(e,t,n);let i=fs(e),o=qi(e,t),r=vt(e,t),s,a;t.verticalAlign===Xl.TOP?a=i.y:t.verticalAlign===Xl.BOTTOM?a=i.y+(o-t.height):a=i.y+(o/2-t.height/2),t.textAlign===Yl.LEFT?s=i.x:t.textAlign===Yl.RIGHT?s=i.x+(r-t.width):s=i.x+(r/2-t.width/2);let l=e.angle??0;if(l!==0){let d=jl(i.x+r/2,i.y+o/2),c=jl(s+t.width/2,a+t.height/2),[u,m]=Fp(c,d,l);return{x:u-t.width/2,y:m-t.height/2}}return{x:s,y:a}},Bt=e=>e?.boundElements?.length&&e?.boundElements?.find(t=>t.type==="text")?.id||null,de=(e,t)=>{if(!e)return null;let n=Bt(e);if(n){let i=t.get(n)||null;return i&&!Ve(i)&&console.error("[NONDELETED][INVARIANT] Bound text element `isDeleted: true` which is not expected."),i}return null},Ue=(e,t)=>e&&e.containerId&&t.get(e.containerId)||null,H0=(e,t)=>{if(!X(e))return{x:e.x+e.width/2,y:e.y+e.height/2};let n=R.getBoundTextElementCenter(e,t);return{x:n[0],y:n[1]}},fs=e=>{let t=Wt,n=Wt;return e.type==="ellipse"&&(t+=e.width/2*(1-Math.sqrt(2)/2),n+=e.height/2*(1-Math.sqrt(2)/2)),e.type==="diamond"&&(t+=e.width/4,n+=e.height/4),{x:e.x+t,y:e.y+n}},W0=(e,t)=>X(t)?0:t?t.angle:e.angle,U0=(e,t,n)=>{if(X(e))return R.getBoundTextElementPosition(e,t,n)},Y0=(e,t)=>e.some(n=>{if(Ie(n)){let i=Ue(n,t);return!X(i)}return!1}),X0=(e,t)=>e.some(n=>{if(Ie(n)){let i=Ue(n,t);return!X(i)}return oe(n)}),Rp=new Set(["rectangle","ellipse","diamond","arrow"]),j0=e=>Rp.has(e.type),ps=(e,t)=>{e=Math.ceil(e);let n=Wt*2;return t==="ellipse"?Math.round((e+n)/Math.sqrt(2)*2):t==="arrow"?e+n*8:t==="diamond"?2*(e+n):e+n},vt=(e,t)=>{let{width:n}=e;if(X(e)){let i=(t?.fontSize??kp)*Cp;return Math.max(Gp*n,i)}return e.type==="ellipse"?Math.round(n/2*Math.sqrt(2))-Wt*2:e.type==="diamond"?Math.round(n/2)-Wt*2:n-Wt*2},qi=(e,t)=>{let{height:n}=e;return X(e)?n-Wt*8*2<=0?t.height:n:e.type==="ellipse"?Math.round(n/2*Math.sqrt(2))-Wt*2:e.type==="diamond"?Math.round(n/2)-Wt*2:n-Wt*2},$0=(e,t=`
|
|
8
9
|
|
|
9
|
-
`)=>e.reduce((i,o)=>(ie(o)&&i.push(o.text),i),[]).join(t);P();import{curvePointDistance as dr,distanceToLineSegment as cr,pointRotateRads as ur}from"@excalidraw/math";import{ellipse as zu,ellipseDistanceFromPoint as _u}from"@excalidraw/math/ellipse";var _t=(e,t,n)=>{switch(e.type){case"selection":case"rectangle":case"image":case"text":case"iframe":case"embeddable":case"frame":case"magicframe":return Yu(e,t,n);case"diamond":return Uu(e,t,n);case"ellipse":return Xu(e,t,n);case"line":case"arrow":case"freedraw":return ju(e,n)}},Yu=(e,t,n)=>{let i=fe(e,t),o=ur(n,i,-e.angle),[r,s]=Pn(e);return Math.min(...r.map(a=>cr(o,a)),...s.map(a=>dr(a,o)).filter(a=>a!==null))},Uu=(e,t,n)=>{let i=fe(e,t),o=ur(n,i,-e.angle),[r,s]=In(e);return Math.min(...r.map(a=>cr(o,a)),...s.map(a=>dr(a,o)).filter(a=>a!==null))},Xu=(e,t,n)=>{let i=fe(e,t);return _u(ur(n,i,-e.angle),zu(i,e.width/2,e.height/2))},ju=(e,t)=>{let[n,i]=Bi(e);return Math.min(...n.map(o=>cr(t,o)),...i.map(o=>dr(o,t)))};var ji=e=>{if(e.type==="arrow")return!1;let t=!Wu(e.backgroundColor)||st(e)||Oi(e)||ie(e);return e.type==="line"?t&&pn(e.points):e.type==="freedraw"?t&&pn(e.points):t||we(e)},ep=({point:e,element:t,threshold:n,elementsMap:i,frameNameBound:o=null})=>{let r=o?Ui(St(o.x-n,o.y-n),e,St(o.x+o.width+n,o.y+o.height+n)):!1,s=he(t,i,!0);return!Ui(St(s[0]-n,s[1]-n),lt(e,dt(s),-t.angle),St(s[2]+n,s[3]+n))&&!r?!1:ji(t)&&Ma(e,t,i)||ya(e,t,i,n)||r},tp=(e,t,n,i=0)=>{let[o,r,s,a]=he(t,n);return o-=i,r-=i,s+=i,a+=i,Ui(St(o,r),e,St(s,a))},vw=(e,t)=>!ep(e)&&!np(e.point,e.element,t)&&tp(e.point,e.element,t),np=(e,t,n)=>{let i=W(t,n);if(!i)return!1;let o=j(t)?{...i,...U.getBoundTextElementPosition(t,i,n)}:i;return Ma(e,o,n)},Mn=(e,t,n,i=0,o=!1)=>{let r=[Math.min(n[0][0]-i,n[1][0]-i),Math.min(n[0][1]-i,n[1][1]-i),Math.max(n[0][0]+i,n[1][0]+i),Math.max(n[0][1]+i,n[1][1]+i)],s=he(e,t);if(!En(r,s))return[];switch(e.type){case"rectangle":case"image":case"text":case"iframe":case"embeddable":case"frame":case"selection":case"magicframe":return op(e,t,n,i,o);case"diamond":return rp(e,t,n,i,o);case"ellipse":return sp(e,t,n,i);case"line":case"freedraw":case"arrow":return ip(e,n,o)}},Ia=(e,t,n,i,o,r=!1)=>{for(let s of e){let a=Wi(s[0],s[1],s[2],s[3]),l=[Math.min(t[0][0],t[1][0]),Math.min(t[0][1],t[1][1]),Math.max(t[0][0],t[1][0]),Math.max(t[0][1],t[1][1])];if(!En(a,l))continue;let d=ba(s,t);if(d.length>0){for(let c of d)n.push(lt(c,i,o));if(r)return n}}return n},Sa=(e,t,n,i,o,r=!1)=>{for(let s of e){let a=Pa(s,t);if(a&&(n.push(lt(a,i,o)),r))return n}return n},ip=(e,t,n=!1)=>{let[i,o]=Bi(e),r=[];for(let s of i){let a=Pa(s,t);if(a&&(r.push(a),n))return r}for(let s of o){let a=Wi(s[0],s[1],s[2],s[3]),l=[Math.min(t[0][0],t[1][0]),Math.min(t[0][1],t[1][1]),Math.max(t[0][0],t[1][0]),Math.max(t[0][1],t[1][1])];if(!En(a,l))continue;let d=ba(s,t);if(d.length>0&&(r.push(...d),n))return r}return r},op=(e,t,n,i=0,o=!1)=>{let r=fe(e,t),s=lt(n[0],r,-e.angle),a=lt(n[1],r,-e.angle),l=Xi(s,a),[d,c]=Pn(e,i),u=[];return Sa(d,l,u,r,e.angle,o),o&&u.length>0||Ia(c,l,u,r,e.angle,o),u},rp=(e,t,n,i=0,o=!1)=>{let r=fe(e,t),s=lt(n[0],r,-e.angle),a=lt(n[1],r,-e.angle),l=Xi(s,a),[d,c]=In(e,i),u=[];return Sa(d,l,u,r,e.angle,o),o&&u.length>0||Ia(c,l,u,r,e.angle,o),u},sp=(e,t,n,i=0)=>{let o=fe(e,t),r=lt(n[0],o,-e.angle),s=lt(n[1],o,-e.angle);return Ju(Qu(o,e.width/2+i,e.height/2+i),Xi(r,s)).map(a=>lt(a,o,e.angle))},ya=(e,t,n,i=1)=>_t(t,n,e)<=i,Ma=(e,t,n)=>{if((j(t)||Me(t))&&!pn(t.points))return!1;let[i,o,r,s]=he(t,n);if(!Ui(St(i,o),e,St(r,s)))return!1;let a=St((i+r)/2,(o+s)/2),l=Vu(Ku(qu(Zu(e,a,.1)),Math.max(t.width,t.height)*2),a),d=Xi(e,l);return Mn(t,n,d).filter((u,p,m)=>m.findIndex(f=>$u(f,u))===p).length%2===1};P();import{invariant as Ta,isDevEnv as ap,isTestEnv as lp}from"@excalidraw/common";import{pointFrom as Yt,pointFromVector as Vi,pointRotateRads as $i,pointScaleFromOrigin as Zi,pointsEqual as dp,triangleIncludesPoint as pr,vectorCross as Be,vectorFromPoint as K,vectorScale as qi}from"@excalidraw/math";var me=[1,0],ye=[0,1],ke=[-1,0],ze=[0,-1],Mt=e=>{let[t,n]=e,i=Math.abs(t),o=Math.abs(n);return t>o?me:t<=-o?ke:n>i?ye:ze},Ge=(e,t)=>Mt(K(e,t)),tt=(e,t)=>Oe(Ge(e,t)),pe=(e,t)=>e[0]===t[0]&&e[1]===t[1],Oe=e=>pe(e,me)||pe(e,ke),Ow=e=>!Oe(e),cp=(e,t,n)=>{let i=dt(t);(ap()||lp())&&(Ta(e.width>0&&e.height>0,"Diamond element has no width or height"),Ta(!dp(i,n),"The point is too close to the element mid point to determine heading"));let o=.95,r=Vi(qi(K($i(Yt(e.x+e.width/2,e.y),i,e.angle),i),o),i),s=Vi(qi(K($i(Yt(e.x+e.width,e.y+e.height/2),i,e.angle),i),o),i),a=Vi(qi(K($i(Yt(e.x+e.width/2,e.y+e.height),i,e.angle),i),o),i),l=Vi(qi(K($i(Yt(e.x,e.y+e.height/2),i,e.angle),i),o),i);if(Be(K(n,r),K(r,s))<=0&&Be(K(n,r),K(r,l))>0)return Ge(r,i);if(Be(K(n,s),K(s,a))<=0&&Be(K(n,s),K(s,r))>0)return Ge(s,i);if(Be(K(n,a),K(a,l))<=0&&Be(K(n,a),K(a,s))>0)return Ge(a,i);if(Be(K(n,l),K(l,r))<=0&&Be(K(n,l),K(l,a))>0)return Ge(l,i);if(Be(K(n,i),K(r,i))<=0&&Be(K(n,i),K(s,i))>0){let c=e.width>e.height?r:s;return Ge(c,i)}else if(Be(K(n,i),K(s,i))<=0&&Be(K(n,i),K(a,i))>0){let c=e.width>e.height?a:s;return Ge(c,i)}else if(Be(K(n,i),K(a,i))<=0&&Be(K(n,i),K(l,i))>0){let c=e.width>e.height?a:l;return Ge(c,i)}let d=e.width>e.height?r:l;return Ge(d,i)},ni=(e,t,n)=>{let o=dt(t);if(e.type==="diamond")return cp(e,t,n);let r=Zi(Yt(t[0],t[1]),o,2),s=Zi(Yt(t[2],t[1]),o,2),a=Zi(Yt(t[0],t[3]),o,2),l=Zi(Yt(t[2],t[3]),o,2);return pr([r,s,o],n)?ze:pr([s,l,o],n)?me:pr([l,a,o],n)?ye:ke},mr=e=>[e[0]===0?0:e[0]>0?-1:1,e[1]===0?0:e[1]>0?-1:1];P();import{getSizeFromPoints as vp,randomInteger as Sr,getUpdatedTimestamp as Mr}from"@excalidraw/common";P();import{clamp as Ki,pointDistance as Er,pointFrom as z,pointScaleFromOrigin as up,pointsEqual as oi,pointTranslate as hr,vector as ct,vectorCross as Qi,vectorFromPoint as gr,vectorScale as pp}from"@excalidraw/math";import{BinaryHeap as mp,invariant as Tn,isAnyTrue as fp,tupleToCoors as hp,getSizeFromPoints as Aa,isDevEnv as Ep,arrayToMap as gp}from"@excalidraw/common";var xr=1,ee=40,xp=(e,t)=>{let n=e.fixedSegments?e.fixedSegments.slice():null;if(n){let i=[];e.points.map(s=>z(e.x+s[0],e.y+s[1])).forEach((s,a,l)=>{if(a<2)return i.push(s);let d=Ge(s,l[a-1]),c=Ge(l[a-1],l[a-2]);if(pe(d,c)){let u=n?.findIndex(m=>m.index===a-1)??-1,p=n?.findIndex(m=>m.index===a)??-1;p!==-1&&(n[p].start=z(l[a-2][0]-e.x,l[a-2][1]-e.y)),u!==-1&&n.splice(u,1),i.splice(-1,1),n.forEach(m=>{m.index>a-1&&(m.index-=1)})}return i.push(s)});let o=[];i.forEach((s,a,l)=>{if(a<3)return o.push(s);if(Er(l[a-2],l[a-1])<xr){let d=n?.findIndex(p=>p.index===a-2)??-1,c=n?.findIndex(p=>p.index===a-1)??-1;c!==-1&&n.splice(c,1),d!==-1&&n.splice(d,1),o.splice(-2,2),n.forEach(p=>{p.index>a-2&&(p.index-=2)});let u=tt(s,l[a-1]);return o.push(z(u?s[0]:l[a-2][0],u?l[a-2][1]:s[1]))}o.push(s)});let r=n.filter(s=>s.index!==1&&s.index!==o.length-1);return r.length===0?Tt(br(Pr(yr(e,wr(e,t,o.map(s=>z(s[0]-e.x,s[1]-e.y))))??[])),r,null,null):(Ep()&&Tn(ka(o),"Invalid elbow points with fixed segments"),Tt(o,r,e.startIsSpecial,e.endIsSpecial))}return{x:e.x,y:e.y,points:e.points,fixedSegments:e.fixedSegments,startIsSpecial:e.startIsSpecial,endIsSpecial:e.endIsSpecial}},wp=(e,t,n)=>{let i=t.map(T=>T.index),r=(e.fixedSegments?.map(T=>T.index)??[]).findIndex(T=>!i.includes(T));if(r===-1||!e.fixedSegments?.[r])return{points:e.points};let s=e.fixedSegments[r].index,a=e.fixedSegments[r-1],l=e.fixedSegments[r+1],d=e.x+(a?a.end[0]:0),c=e.y+(a?a.end[1]:0),u=a?null:e.startBinding,p=l?null:e.endBinding,{startHeading:m,endHeading:f,startGlobalPoint:E,endGlobalPoint:h,hoveredStartElement:g,hoveredEndElement:x,...y}=wr({x:d,y:c,startBinding:u,endBinding:p,startArrowhead:null,endArrowhead:null,points:e.points},n,[z(0,0),z(e.x+(l?.start[0]??e.points[e.points.length-1][0])-d,e.y+(l?.start[1]??e.points[e.points.length-1][1])-c)],{isDragging:!1}),{points:b}=Tt(br(Pr(yr(e,{startHeading:m,endHeading:f,startGlobalPoint:E,endGlobalPoint:h,hoveredStartElement:g,hoveredEndElement:x,...y})??[])),t,null,null);if(!b||b.length<2)throw new Error("Property 'points' is required in the update returned by normalizeArrowElementUpdate()");let w=[];if(a)for(let T=0;T<a.index;T++)w.push(z(e.x+e.points[T][0],e.y+e.points[T][1]));if(b.forEach(T=>{w.push(z(e.x+(a?a.end[0]:0)+T[0],e.y+(a?a.end[1]:0)+T[1]))}),l)for(let T=l.index;T<e.points.length;T++)w.push(z(e.x+e.points[T][0],e.y+e.points[T][1]));let I=(l?.index??e.points.length)-(a?.index??0)-1,M=t.map(T=>T.index>s?{...T,index:T.index-I+(b.length-1)}:T),D=w.flatMap((T,N)=>{let C=w[N-1],R=w[N+1];if(C&&R){let L=Ge(T,C),V=Ge(R,T);if(pe(L,V))return M.forEach(H=>{H.index>N&&(H.index-=1)}),[];if(pe(L,mr(V)))return M.forEach(H=>{H.index>N&&(H.index+=1)}),[T,T]}return[T]});return Tt(D,M,!1,!1)},yp=(e,t,n,i,o,r)=>{let s=t.map((w,I)=>e.fixedSegments==null||e.fixedSegments[I]===void 0||e.fixedSegments[I].index!==w.index||(w.start[0]!==e.fixedSegments[I].start[0]&&w.end[0]!==e.fixedSegments[I].end[0])!=(w.start[1]!==e.fixedSegments[I].start[1]&&w.end[1]!==e.fixedSegments[I].end[1])?I:null).filter(w=>w!==null).shift();if(s==null)return{points:e.points};let a=e.fixedSegments?.findIndex(w=>w.index===1)??-1,l=e.fixedSegments?.findIndex(w=>w.index===e.points.length-1)??-1,d=Er(t[s].start,t[s].end),c=d<ee+5;if(a===-1&&t[s].index===1&&o){let w=Oe(n),M=(w?pe(n,me):pe(n,ye))?c?d/2:ee:c?-d/2:-ee;t[s].start=z(t[s].start[0]+(w?M:0),t[s].start[1]+(w?0:M))}if(l===-1&&t[s].index===e.points.length-1&&r){let w=Oe(i),M=(w?pe(i,me):pe(i,ye))?c?d/2:ee:c?-d/2:-ee;t[s].end=z(t[s].end[0]+(w?M:0),t[s].end[1]+(w?0:M))}let u=t.map(w=>({...w,start:z(e.x+w.start[0],e.y+w.start[1]),end:z(e.x+w.end[0],e.y+w.end[1])})),p=e.points.map((w,I)=>z(e.x+w[0],e.y+w[1])),m=u[s].index-1,f=u[s].index,E=u[s].start,h=u[s].end,g=p[m-1]&&!oi(p[m],p[m-1])?tt(p[m-1],p[m]):void 0,x=p[f+1]&&!oi(p[f],p[f+1])?tt(p[f+1],p[f]):void 0;if(g!==void 0){let w=g?1:0;p[m-1][w]=E[w]}if(p[m]=E,p[f]=h,x!==void 0){let w=x?1:0;p[f+1][w]=h[w]}let y=u.findIndex(w=>w.index===m);if(y!==-1){let w=tt(u[y].end,u[y].start)?1:0;u[y].start[w]=E[w],u[y].end=E}let b=u.findIndex(w=>w.index===f+1);if(b!==-1){let w=tt(u[b].end,u[b].start)?1:0;u[b].end[w]=h[w],u[b].start=h}if(a===-1&&m===0){let w=o?Oe(n):tt(p[1],p[0]);p.unshift(z(w?E[0]:e.x+e.points[0][0],w?e.y+e.points[0][1]:E[1])),o&&p.unshift(z(e.x+e.points[0][0],e.y+e.points[0][1]));for(let I of u)I.index+=o?2:1}if(l===-1&&f===e.points.length-1){let w=Oe(i);p.push(z(w?h[0]:e.x+e.points[e.points.length-1][0],w?e.y+e.points[e.points.length-1][1]:h[1])),r&&p.push(z(e.x+e.points[e.points.length-1][0],e.y+e.points[e.points.length-1][1]))}return Tt(p,u.map(w=>({...w,start:z(w.start[0]-e.x,w.start[1]-e.y),end:z(w.end[0]-e.x,w.end[1]-e.y)})),!1,!1)},bp=(e,t,n,i,o,r,s,a,l)=>{let d=e.startIsSpecial??null,c=e.endIsSpecial??null,u=t.map((h,g)=>g===0?z(e.x+h[0],e.y+h[1]):g===t.length-1?z(e.x+h[0],e.y+h[1]):z(e.x+e.points[g][0],e.y+e.points[g][1])),p=n.map(h=>({...h,start:z(e.x+(h.start[0]-t[0][0]),e.y+(h.start[1]-t[0][1])),end:z(e.x+(h.end[0]-t[0][0]),e.y+(h.end[1]-t[0][1]))})),m=[],f=2+(d?1:0),E=2+(c?1:0);for(;m.length+f<u.length-E;)m.push(u[m.length+f]);{let h=u.at(d?2:1),g=u.at(d?3:2);if(!h||!g)throw new Error(`Second and third points must exist when handling endpoint drag (${d})`);let x=Oe(i),y=Oe(Mt(gr(h,g)));if(a&&x===y){let b=x?pe(i,me):pe(i,ye);if(m.unshift(z(y?r[0]+(b?ee:-ee):g[0],y?g[1]:r[1]+(b?ee:-ee))),m.unshift(z(x?r[0]+(b?ee:-ee):r[0],x?r[1]:r[1]+(b?ee:-ee))),!d){d=!0;for(let w of p)w.index>1&&(w.index+=1)}}else if(m.unshift(z(y?r[0]:h[0],y?h[1]:r[1])),d){d=!1;for(let b of p)b.index>1&&(b.index-=1)}m.unshift(r)}{let h=u.at(u.length-(c?3:2)),g=u.at(u.length-(c?4:3));if(!h||!g)throw new Error(`Second and third to last points must exist when handling endpoint drag (${c})`);let x=Oe(o),y=tt(g,h);if(l&&x===y){let b=x?pe(o,me):pe(o,ye);m.push(z(y?s[0]+(b?ee:-ee):g[0],y?g[1]:s[1]+(b?ee:-ee))),m.push(z(x?s[0]+(b?ee:-ee):s[0],x?s[1]:s[1]+(b?ee:-ee))),c||(c=!0)}else m.push(z(y?s[0]:h[0],y?h[1]:s[1])),c&&(c=!1)}return m.push(s),Tt(m,p.map(({index:h})=>({index:h,start:m[h-1],end:m[h]})).map(h=>({...h,start:z(h.start[0]-r[0],h.start[1]-r[1]),end:z(h.end[0]-r[0],h.end[1]-r[1])})),d,c)},Ut=1e6,Dn=(e,t,n,i)=>{if(e.points.length<2)return{points:n.points??e.points};A.PROD||(Tn(!n.points||n.points.length>=2,"Updated point array length must match the arrow point length, contain exactly the new start and end points or not be specified at all (i.e. you can't add new points between start and end manually to elbow arrows)"),Tn(!e.fixedSegments||e.fixedSegments.map(w=>w.start[0]===w.end[0]||w.start[1]===w.end[1]).every(Boolean),"Fixed segments must be either horizontal or vertical"),Tn(!n.fixedSegments||n.fixedSegments.map(w=>w.start[0]===w.end[0]||w.start[1]===w.end[1]).every(Boolean),"Updates to fixed segments must be either horizontal or vertical"),Tn(e.points.slice(1).map((w,I)=>w[0]===e.points[I][0]||w[1]===e.points[I][1]),"Elbow arrow segments must be either horizontal or vertical"),Tn(n.fixedSegments?.find(w=>w.index===1&&oi(w.start,(n.points??e.points)[0]))==null&&n.fixedSegments?.find(w=>w.index===(n.points??e.points).length-1&&oi(w.end,(n.points??e.points)[(n.points??e.points).length-1]))==null,"The first and last segments cannot be fixed"));let o=n.fixedSegments??e.fixedSegments??[],r=n.points?n.points&&n.points.length===2?e.points.map((w,I)=>I===0?n.points[0]:I===e.points.length-1?n.points[1]:w):n.points.slice():e.points.slice(),{startBinding:s,endBinding:a,...l}=n,d=typeof s<"u"?s:e.startBinding,c=typeof a<"u"?a:e.endBinding,u=d&&eo(d.elementId,t),p=c&&eo(c.elementId,t),m=ka(r);if(d&&!u&&m||c&&!p&&m||t.size===0&&m||Object.keys(l).length===0&&(u?.id!==d?.elementId||p?.id!==c?.elementId))return Tt(r.map(w=>z(e.x+w[0],e.y+w[1])),e.fixedSegments,e.startIsSpecial,e.endIsSpecial);let{startHeading:f,endHeading:E,startGlobalPoint:h,endGlobalPoint:g,hoveredStartElement:x,hoveredEndElement:y,...b}=wr({x:e.x,y:e.y,startBinding:d,endBinding:c,startArrowhead:e.startArrowhead,endArrowhead:e.endArrowhead,points:e.points},t,r,i);return t.size===0&&m?Tt(r.map(w=>z(e.x+w[0],e.y+w[1])),e.fixedSegments,e.startIsSpecial,e.endIsSpecial):!n.points&&!n.fixedSegments&&!n.startBinding&&!n.endBinding?xp(e,t):n.startBinding===e.startBinding&&n.endBinding===e.endBinding&&(n.points??[]).every((w,I)=>oi(w,e.points[I]??z(1/0,1/0)))&&m?{}:o.length===0?Tt(br(Pr(yr(e,{startHeading:f,endHeading:E,startGlobalPoint:h,endGlobalPoint:g,hoveredStartElement:x,hoveredEndElement:y,...b})??[])),o,null,null):(e.fixedSegments?.length??0)>o.length?wp(e,o,t):n.points?n.points&&n.fixedSegments?n:bp(e,r,o,f,E,h,g,x,y):yp(e,o,f,E,x,y)},wr=(e,t,n,i)=>{let o=hr(n[0],ct(e.x,e.y)),r=hr(n[n.length-1],ct(e.x,e.y)),s=null,a=null;if(i?.isDragging){let w=Array.from(t.values());s=Ca(o,t,w,i?.zoom)||null,a=Ca(r,t,w,i?.zoom)||null}else s=e.startBinding&&eo(e.startBinding.elementId,t)||null,a=e.endBinding&&eo(e.endBinding.elementId,t)||null;let l=va({...e,type:"arrow",elbowed:!0,points:n},"start",e.startBinding?.fixedPoint,o,s,t,i?.isDragging),d=va({...e,type:"arrow",elbowed:!0,points:n},"end",e.endBinding?.fixedPoint,r,a,t,i?.isDragging),c=La(l,d,s,o,t),u=La(d,l,a,r,t),p=[l[0]-2,l[1]-2,l[0]+2,l[1]+2],m=[d[0]-2,d[1]-2,d[0]+2,d[1]+2],f=s?$e(s,t,Xt(c,e.startArrowhead?oe*6:oe*2,1)):p,E=a?$e(a,t,Xt(u,e.endArrowhead?oe*6:oe*2,1)):m,h=An(l,a?$e(a,t,Xt(u,ee,ee)):m)||An(d,s?$e(s,t,Xt(c,ee,ee)):p),g=Ga(h?[p,m]:[f,E]),x=Sp(h?p:f,h?m:E,g,h?Xt(c,!s&&!a?0:ee,0):Xt(c,!s&&!a?0:ee-(e.startArrowhead?oe*6:oe*2),ee),h?Xt(u,!s&&!a?0:ee,0):Xt(u,!s&&!a?0:ee-(e.endArrowhead?oe*6:oe*2),ee),h,s&&$e(s,t),a&&$e(a,t)),y=Da(x[0],c,l),b=Da(x[1],u,d);return{dynamicAABBs:x,startDonglePosition:y,startGlobalPoint:l,startHeading:c,endDonglePosition:b,endGlobalPoint:d,endHeading:u,commonBounds:g,hoveredStartElement:s,hoveredEndElement:a,boundsOverlap:h,startElementBounds:f,endElementBounds:E}},yr=(e,t)=>{let{dynamicAABBs:n,startDonglePosition:i,startGlobalPoint:o,startHeading:r,endDonglePosition:s,endGlobalPoint:a,endHeading:l,commonBounds:d,hoveredEndElement:c}=t,u=Mp(n,i||o,r,s||a,l,d),p=i&&Ji(i,u),m=s&&Ji(s,u),f=Ji(a,u);f&&c&&(f.closed=!0);let E=Ji(o,u);E&&e.startBinding&&(E.closed=!0);let h=p&&m&&(An(p.pos,n[1])||An(m.pos,n[0])),g=Pp(p||E,m||f,u,r||me,l||me,h?[]:n);if(g){let x=g.map(y=>[y.pos[0],y.pos[1]]);return p&&x.unshift(o),m&&x.push(a),x}return null},Xt=(e,t,n)=>{switch(e){case ze:return[t,n,n,n];case me:return[n,t,n,n];case ye:return[n,n,t,n]}return[n,n,n,t]},Pp=(e,t,n,i,o,r)=>{let s=fr(e.pos,t.pos),a=new mp(l=>l.f);for(a.push(e);a.size()>0;){let l=a.pop();if(!l||l.closed)continue;if(l===t)return Ip(e,l);l.closed=!0;let d=Ap(l.addr,n);for(let c=0;c<4;c++){let u=d[c];if(!u||u.closed)continue;let p=up(u.pos,l.pos,.5);if(fp(...r.map(b=>An(p,b))))continue;let m=Dp(c),f=l.parent?Mt(gr(l.pos,l.parent.pos)):i,E=mr(f);if(pe(E,m)||Ba(e.addr,u.addr)&&pe(m,i)||Ba(t.addr,u.addr)&&pe(m,o))continue;let g=f!==m,x=l.g+fr(u.pos,l.pos)+(g?Math.pow(s,3):0),y=u.visited;if(!y||x<u.g){let b=Tp(u,t,m,o);u.visited=!0,u.parent=l,u.h=fr(t.pos,u.pos)+b*Math.pow(s,2),u.g=x,u.f=u.g+u.h,y?a.rescoreElement(u):a.push(u)}}}return null},Ip=(e,t)=>{let n=t,i=[];for(;n.parent;)i.unshift(n),n=n.parent;return i.unshift(e),i},fr=(e,t)=>Math.abs(e[0]-t[0])+Math.abs(e[1]-t[1]),Sp=(e,t,n,i,o,r,s,a)=>{let l=s??e,d=a??t,[c,u,p,m]=i??[0,0,0,0],[f,E,h,g]=o??[0,0,0,0],x=[e[0]>t[2]?e[1]>t[3]||e[3]<t[1]?Math.min((l[0]+d[2])/2,e[0]-m):(l[0]+d[2])/2:e[0]>t[0]?e[0]-m:n[0]-m,e[1]>t[3]?e[0]>t[2]||e[2]<t[0]?Math.min((l[1]+d[3])/2,e[1]-c):(l[1]+d[3])/2:e[1]>t[1]?e[1]-c:n[1]-c,e[2]<t[0]?e[1]>t[3]||e[3]<t[1]?Math.max((l[2]+d[0])/2,e[2]+u):(l[2]+d[0])/2:e[2]<t[2]?e[2]+u:n[2]+u,e[3]<t[1]?e[0]>t[2]||e[2]<t[0]?Math.max((l[3]+d[1])/2,e[3]+p):(l[3]+d[1])/2:e[3]<t[3]?e[3]+p:n[3]+p],y=[t[0]>e[2]?t[1]>e[3]||t[3]<e[1]?Math.min((d[0]+l[2])/2,t[0]-g):(d[0]+l[2])/2:t[0]>e[0]?t[0]-g:n[0]-g,t[1]>e[3]?t[0]>e[2]||t[2]<e[0]?Math.min((d[1]+l[3])/2,t[1]-f):(d[1]+l[3])/2:t[1]>e[1]?t[1]-f:n[1]-f,t[2]<e[0]?t[1]>e[3]||t[3]<e[1]?Math.max((d[2]+l[0])/2,t[2]+E):(d[2]+l[0])/2:t[2]<e[2]?t[2]+E:n[2]+E,t[3]<e[1]?t[0]>e[2]||t[2]<e[0]?Math.max((d[3]+l[1])/2,t[3]+h):(d[3]+l[1])/2:t[3]<e[3]?t[3]+h:n[3]+h],b=Ga([x,y]);if(!r&&x[2]-x[0]+y[2]-y[0]>b[2]-b[0]+1e-11&&x[3]-x[1]+y[3]-y[1]>b[3]-b[1]+1e-11){let[w,I]=[(y[0]+y[2])/2,(y[1]+y[3])/2];if(t[0]>e[2]&&e[1]>t[3]){let M=x[2]+(y[0]-x[2])/2,D=y[3]+(x[1]-y[3])/2;return Qi(ct(e[2]-w,e[1]-I),ct(e[0]-w,e[3]-I))>0?[[x[0],x[1],M,x[3]],[M,y[1],y[2],y[3]]]:[[x[0],D,x[2],x[3]],[y[0],y[1],y[2],D]]}else if(e[2]<t[0]&&e[3]<t[1]){let M=x[2]+(y[0]-x[2])/2,D=x[3]+(y[1]-x[3])/2;return Qi(ct(e[0]-w,e[1]-I),ct(e[2]-w,e[3]-I))>0?[[x[0],x[1],x[2],D],[y[0],D,y[2],y[3]]]:[[x[0],x[1],M,x[3]],[M,y[1],y[2],y[3]]]}else if(e[0]>t[2]&&e[3]<t[1]){let M=y[2]+(x[0]-y[2])/2,D=x[3]+(y[1]-x[3])/2;return Qi(ct(e[2]-w,e[1]-I),ct(e[0]-w,e[3]-I))>0?[[M,x[1],x[2],x[3]],[y[0],y[1],M,y[3]]]:[[x[0],x[1],x[2],D],[y[0],D,y[2],y[3]]]}else if(e[0]>t[2]&&e[1]>t[3]){let M=y[2]+(x[0]-y[2])/2,D=y[3]+(x[1]-y[3])/2;return Qi(ct(e[0]-w,e[1]-I),ct(e[2]-w,e[3]-I))>0?[[M,x[1],x[2],x[3]],[y[0],y[1],M,y[3]]]:[[x[0],D,x[2],x[3]],[y[0],y[1],y[2],D]]}}return[x,y]},Mp=(e,t,n,i,o,r)=>{let s=new Set,a=new Set;n===ke||n===me?a.add(t[1]):s.add(t[0]),o===ke||o===me?a.add(i[1]):s.add(i[0]),e.forEach(c=>{s.add(c[0]),s.add(c[2]),a.add(c[1]),a.add(c[3])}),s.add(r[0]),s.add(r[2]),a.add(r[1]),a.add(r[3]);let l=Array.from(a).sort((c,u)=>c-u),d=Array.from(s).sort((c,u)=>c-u);return{row:l.length,col:d.length,data:l.flatMap((c,u)=>d.map((p,m)=>({f:0,g:0,h:0,closed:!1,visited:!1,parent:null,addr:[m,u],pos:[p,c]})))}},Da=(e,t,n)=>{switch(t){case ze:return z(n[0],e[1]);case me:return z(e[2],n[1]);case ye:return z(n[0],e[3])}return z(e[0],n[1])},Tp=(e,t,n,i)=>{if(i===me)switch(n){case me:return e.pos[0]>=t.pos[0]?4:e.pos[1]===t.pos[1]?0:2;case ze:return e.pos[1]>t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case ye:return e.pos[1]<t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case ke:return e.pos[1]===t.pos[1]?4:2}else if(i===ke)switch(n){case me:return e.pos[1]===t.pos[1]?4:2;case ze:return e.pos[1]>t.pos[1]&&e.pos[0]>t.pos[0]?1:3;case ye:return e.pos[1]<t.pos[1]&&e.pos[0]>t.pos[0]?1:3;case ke:return e.pos[0]<=t.pos[0]?4:e.pos[1]===t.pos[1]?0:2}else if(i===ze)switch(n){case me:return e.pos[1]>t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case ze:return e.pos[1]>=t.pos[1]?4:e.pos[0]===t.pos[0]?0:2;case ye:return e.pos[0]===t.pos[0]?4:2;case ke:return e.pos[1]>t.pos[1]&&e.pos[0]>t.pos[0]?1:3}else if(i===ye)switch(n){case me:return e.pos[1]<t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case ze:return e.pos[0]===t.pos[0]?4:2;case ye:return e.pos[1]<=t.pos[1]?4:e.pos[0]===t.pos[0]?0:2;case ke:return e.pos[1]<t.pos[1]&&e.pos[0]>t.pos[0]?1:3}return 0},Ap=([e,t],n)=>[ii([e,t-1],n),ii([e+1,t],n),ii([e,t+1],n),ii([e-1,t],n)],ii=([e,t],n)=>e<0||e>=n.col||t<0||t>=n.row?null:n.data[t*n.col+e]??null,Ji=(e,t)=>{for(let n=0;n<t.col;n++)for(let i=0;i<t.row;i++){let o=ii([n,i],t);if(o&&e[0]===o.pos[0]&&e[1]===o.pos[1])return o}return null},Ga=e=>[Math.min(...e.map(t=>t[0])),Math.min(...e.map(t=>t[1])),Math.max(...e.map(t=>t[2])),Math.max(...e.map(t=>t[3]))],eo=(e,t)=>{let n=t.get(e);return n&&Le(n)?n:null},Tt=(e,t,n,i)=>{let o=e[0][0],r=e[0][1],s=e.map(a=>hr(a,pp(gr(e[0]),-1)));return(o<-Ut||o>Ut||r<-Ut||r>Ut||o+s[s.length-1][0]<-Ut||r+s[s.length-1][0]>Ut||o+s[s.length-1][1]<-Ut||r+s[s.length-1][1]>Ut)&&console.error("Elbow arrow normalization is outside reasonable bounds (> 1e6)",{x:o,y:r,points:s,...Aa(s)}),s=s.map(([a,l])=>z(Ki(a,-1e6,1e6),Ki(l,-1e6,1e6))),{points:s,x:Ki(o,-1e6,1e6),y:Ki(r,-1e6,1e6),fixedSegments:(t?.length??0)>0?t:null,...Aa(s),startIsSpecial:n,endIsSpecial:i}},br=e=>{if(e.length>1){let t=Math.abs(e[0][1]-e[1][1])<Math.abs(e[0][0]-e[1][0]);return e.filter((n,i)=>{if(i===0||i===e.length-1)return!0;let o=e[i+1],r=Math.abs(n[1]-o[1])<Math.abs(n[0]-o[0]);return t===r?(t=r,!1):(t=r,!0)})}return e},Pr=e=>e.length>=4?e.filter((t,n)=>{if(n===0||n===e.length-1)return!0;let i=e[n-1];return Er(i,t)>xr}):e,Dp=e=>{switch(e){case 0:return ze;case 1:return me;case 2:return ye}return ke},va=(e,t,n,i,o,r,s)=>s?o&&r?Ir(e,o,t,r):i:o?to(n||[0,0],o,r??gp([o])):i,La=(e,t,n,i,o)=>Oa(e,t,n,n&&$e(n,o,Array(4).fill(_t(n,o,e))),i,o),Ca=(e,t,n,i)=>jt(hp(e),n,t,i,!0,!0),Ba=(e,t)=>e[0]===t[0]&&e[1]===t[1],ka=(e,t=xr)=>e.slice(1).map((n,i)=>Math.abs(n[0]-e[i][0])<t||Math.abs(n[1]-e[i][1])<t).every(Boolean);var be=(e,t,n,i)=>{let o=!1,{points:r,fixedSegments:s,startBinding:a,endBinding:l,fileId:d}=n;G(e)&&(Object.keys(n).length===0||typeof r<"u"||typeof s<"u"||typeof a<"u"||typeof l<"u")?n={...n,angle:0,...Dn({...e,x:n.x||e.x,y:n.y||e.y},t,n,i)}:typeof r<"u"&&(n={...vp(r),...n});for(let c in n){let u=n[c];if(typeof u<"u"){if(e[c]===u&&(typeof u!="object"||u===null||c==="groupIds"||c==="scale"))continue;if(c==="scale"){let p=e[c],m=u;if(p[0]===m[0]&&p[1]===m[1])continue}else if(c==="points"){let p=e[c],m=u;if(p.length===m.length){let f=!1,E=p.length;for(;--E;){let h=p[E],g=m[E];if(h[0]!==g[0]||h[1]!==g[1]){f=!0;break}}if(!f)continue}}e[c]=u,o=!0}}return o&&((typeof n.height<"u"||typeof n.width<"u"||typeof d<"u"||typeof r<"u")&&Pe.delete(e),e.version=n.version??e.version+1,e.versionNonce=n.versionNonce??Sr(),e.updated=Mr()),e},Ee=(e,t,n=!1)=>{let i=!1;for(let o in t){let r=t[o];if(typeof r<"u"){if(e[o]===r&&(typeof r!="object"||r===null))continue;i=!0}}return!i&&!n?e:{...e,...t,version:t.version??e.version+1,versionNonce:t.versionNonce??Sr(),updated:Mr()}},Ra=(e,t)=>(e.version=(t??e.version)+1,e.versionNonce=Sr(),e.updated=Mr(),e);var uy=e=>!e[Lp.CTRL_OR_CMD],Tr=e=>e.isBindingEnabled,oe=5,Fp=10,Np=(e,t)=>{let n=[];return t.forEach(i=>{let o=e.getNonDeletedElement(i);o!=null&&n.push(o)}),n},Ar=(e,t,n,i)=>{let o=i.getNonDeletedElementsMap(),r=new Set,s=new Set;Ha(e,t,n,"start",r,s,i,o),Ha(e,n,t,"end",r,s,i,o);let a=Array.from(s).filter(l=>!r.has(l));Np(i,a).forEach(l=>{i.mutateElement(l,{boundElements:l.boundElements?.filter(d=>d.type!=="arrow"||d.id!==e.id)})})},Ha=(e,t,n,i,o,r,s,a)=>{if(t!=="keep"){if(t===null){let l=Up(e,i,s);l!=null&&r.add(l);return}Wa(e)?(n==null||(n==="keep"?!Xa(e,t,i):i==="start"||n.id!==t.id))&&(gn(e,t,i,s),o.add(t.id)):(gn(e,t,i,s),o.add(t.id))}},Ya=(e,t,n)=>["start","end"].map(i=>{let o=$a(e,i,t),r=i==="start"?e.startBinding?.elementId:e.endBinding?.elementId;if(r){let s=t.get(r);if(Le(s)&&io(s,o,t,n))return s}return null}),Hp=(e,t,n,i,o,r)=>{let a=e.points.length-1,l=n.findIndex(p=>p===0)>-1,d=n.findIndex(p=>p===a)>-1,c=l?t?oo(e,"start",i,o,r):null:"keep",u=d?t?oo(e,"end",i,o,r):null:"keep";return[c,u]},zp=(e,t,n,i,o)=>{if(G(e))return["keep","keep"];let[r,s]=Ya(e,t,o),a=r&&i?oo(e,"start",t,n,o):null,l=s&&i?oo(e,"end",t,n,o):null;return[a,l]},_p=(e,t,n,i,o)=>{e.forEach(r=>{let[s,a]=n?.length?Hp(r,t,n??[],i.getNonDeletedElementsMap(),i.getNonDeletedElements(),o):zp(r,i.getNonDeletedElementsMap(),i.getNonDeletedElements(),t,o);Ar(r,s,a,i)})},py=(e,t,n)=>e.length>50?[]:e.filter(j).flatMap(i=>Ya(i,t,n)).filter(i=>i!==null).filter(i=>e.filter(o=>o.id===i?.id).length===0),Ua=(e,t,n,i,o)=>Array.from(t.reduce((r,s)=>{let a=jt(s,n.getNonDeletedElements(),n.getNonDeletedElementsMap(),i,G(e),G(e));return a!=null&&!ja(e,o?.id,a)&&r.add(a),r},new Set)),my=(e,t,n,i)=>{let o=i.getNonDeletedElements(),r=i.getNonDeletedElementsMap();t.startBoundElement!=null&&gn(e,t.startBoundElement,"start",i);let s=jt(n,o,r,t.zoom,G(e),G(e));s!==null&&(Xa(e,s,"end")||gn(e,s,"end",i))},Yp=(e,t)=>({...e,gap:Math.min(e.gap,ao(t,t.width,t.height))}),gn=(e,t,n,i)=>{if(!Y(e))return;let o={elementId:t.id,...Yp(Wp(e,t,n,i.getNonDeletedElementsMap()),t)};G(e)&&(o={...o,...Va(e,t,n,i.getNonDeletedElementsMap())}),i.mutateElement(e,{[n==="start"?"startBinding":"endBinding"]:o}),_a(t.boundElements||[]).has(e.id)||i.mutateElement(t,{boundElements:(t.boundElements||[]).concat({id:e.id,type:"arrow"})})},Xa=(e,t,n)=>{let i=e[n==="start"?"endBinding":"startBinding"];return ja(e,i?.elementId,t)},ja=(e,t,n)=>t===n.id&&Wa(e),Wa=e=>e.points.length<3&&!G(e),Up=(e,t,n)=>{let i=t==="start"?"startBinding":"endBinding",o=e[i];return o==null?null:(n.mutateElement(e,{[i]:null}),o.elementId)},jt=(e,t,n,i,o,r)=>{if(r){let a=!1,l=jp(t,c=>Le(c,!1)&&io(c,e,n,i,(o||!no(c))&&!Z(c))).filter(c=>a?!1:(no(c)||(a=!0),!0));if(!l||l.length===0)return null;if(l.length===1)return l[0];let d=l.filter(c=>io(c,e,n,i,!1));return d.length===1?d[0]:l.sort((c,u)=>u.width**2+u.height**2-(c.width**2+c.height**2)).pop()}return Xp(t,a=>Le(a,!1)&&io(a,e,n,i,(o||!no(a))&&!Z(a)))},Xp=(e,t)=>{let n=null;for(let i=e.length-1;i>=0;--i){let o=e[i];if(!o.isDeleted&&t(o)){n=o;break}}return n},jp=(e,t)=>{let n=[];for(let i=e.length-1;i>=0;--i){let o=e[i];o.isDeleted||t(o)&&n.push(o)}return n},Wp=(e,t,n,i)=>{let o=n==="start"?-1:1,r=o===-1?0:e.points.length-1,s=r-o,a=U.getPointAtIndexGlobalCoordinates(e,r,i),l=U.getPointAtIndexGlobalCoordinates(e,s,i);return{focus:Jp(t,i,l,a),gap:Math.max(1,_t(t,i,a))}},Ue=(e,t,n)=>{if(!Le(e))return;let{newSize:i,simultaneouslyUpdated:o}=n??{},r=$p(o),s=t.getNonDeletedElementsMap();n?.changedElements&&(s=new Map(s),n.changedElements.forEach(a=>{s.set(a.id,a)})),ro(s,e,a=>{if(!j(a)||a.isDeleted||!Vp(a,e))return;let l=a.startBinding?s.get(a.startBinding.elementId):null,d=a.endBinding?s.get(a.endBinding.elementId):null,c=null,u=null;l&&d&&(c=he(l,s),u=he(d,s));let p={startBinding:za(e,a.startBinding,i),endBinding:za(e,a.endBinding,i)};if(r.has(a.id)){t.mutateElement(a,p);return}let m=so(s,a,(E,h)=>{if(E&&Le(E)&&(h==="startBinding"||h==="endBinding")&&(e.id===a[h]?.elementId||e.id===a[h==="startBinding"?"endBinding":"startBinding"]?.elementId&&!En(c,u))){let g=Qp(a,h,p[h],E,s);if(g)return[h==="startBinding"?0:a.points.length-1,{point:g}]}return null}).filter(E=>E!==null);U.movePoints(a,t,new Map(m),{...e.id===a.startBinding?.elementId?{startBinding:p.startBinding}:{},...e.id===a.endBinding?.elementId?{endBinding:p.endBinding}:{}});let f=W(a,s);f&&!f.isDeleted&&hn(a,t,!1)})},fy=(e,t,n)=>{j(e)?_p([e],!0,[],t,n?.zoom):Ue(e,t,{...n,changedElements:new Map([[e.id,e]])})},Vp=(e,t)=>e.startBinding?.elementId===t.id||e.endBinding?.elementId===t.id,$p=e=>new Set((e||[]).map(t=>t.id)),Oa=(e,t,n,i,o,r,s)=>{let a=Mt(q(t,e));return!n||!i?a:Zp(o,n,r,s)?ni(n,i,e):Mt(q(e,fe(n,r)))},Zp=(e,t,n,i)=>{let o=_t(t,n,e),r=ao(t,t.width,t.height,i);return o>r?null:o},Ir=(e,t,n,i)=>{(Gp()||kp())&&Bp(e.points.length>1,"Arrow should have at least 2 points");let o=$e(t,i),r=e.points[n==="start"?0:e.points.length-1],s=O(e.x+r[0],e.y+r[1]),a=sa(t)?qp(t,i,s):s,l=G(e),d=dt(o),c=n==="start"?1:e.points.length-2,u=ae(O(e.x+e.points[c][0],e.y+e.points[c][1]),d,e.angle??0),p=null;if(l){let m=Oe(ni(t,o,s)),f=Kp(t,i,a),E=O(m?d[0]:f[0],m?f[1]:d[1]),h=Ye(E,vn(Ln(si(q(f,E)),Math.max(t.width,t.height)*2),E));p=Mn(t,i,h,oe).sort(Wt)[0]}else p=Mn(t,i,Ye(u,vn(Ln(si(q(a,u)),ut(a,u)+Math.max(t.width,t.height)*2),u)),oe).sort((m,f)=>Wt(m,u)-Wt(f,u))[0];return!p||Wt(a,p)<Rp?a:l?p:a},qp=(e,t,n)=>{let i=fe(e,t),o=ae(n,i,-e.angle);return o[0]<e.x&&o[1]<e.y?o[1]-e.y>-oe?ae(O(e.x-oe,e.y),i,e.angle):ae(O(e.x,e.y-oe),i,e.angle):o[0]<e.x&&o[1]>e.y+e.height?o[0]-e.x>-oe?ae(O(e.x,e.y+e.height+oe),i,e.angle):ae(O(e.x-oe,e.y+e.height),i,e.angle):o[0]>e.x+e.width&&o[1]>e.y+e.height?o[0]-e.x<e.width+oe?ae(O(e.x+e.width,e.y+e.height+oe),i,e.angle):ae(O(e.x+e.width+oe,e.y+e.height),i,e.angle):o[0]>e.x+e.width&&o[1]<e.y?o[0]-e.x<e.width+oe?ae(O(e.x+e.width,e.y-oe),i,e.angle):ae(O(e.x+e.width+oe,e.y),i,e.angle):n},Kp=(e,t,n,i=.05)=>{let{x:o,y:r,width:s,height:a,angle:l}=e,d=fe(e,t,-.1,-.1),c=ae(n,d,-l),u=Fa(i*a,5,80),p=Fa(i*s,5,80);if(c[0]<=o+s/2&&c[1]>d[1]-u&&c[1]<d[1]+u)return ae(O(o-oe,d[1]),d,l);if(c[1]<=r+a/2&&c[0]>d[0]-p&&c[0]<d[0]+p)return ae(O(d[0],r-oe),d,l);if(c[0]>=o+s/2&&c[1]>d[1]-u&&c[1]<d[1]+u)return ae(O(o+s+oe,d[1]),d,l);if(c[1]>=r+a/2&&c[0]>d[0]-p&&c[0]<d[0]+p)return ae(O(d[0],r+a+oe),d,l);if(e.type==="diamond"){let m=oe,f=O(o+s/4-m,r+a/4-m),E=O(o+3*s/4+m,r+a/4-m),h=O(o+s/4-m,r+3*a/4+m),g=O(o+3*s/4+m,r+3*a/4+m);if(ut(f,c)<Math.max(p,u))return ae(f,d,l);if(ut(E,c)<Math.max(p,u))return ae(E,d,l);if(ut(h,c)<Math.max(p,u))return ae(h,d,l);if(ut(g,c)<Math.max(p,u))return ae(g,d,l)}return n},Qp=(e,t,n,i,o)=>{if(n==null||n.elementId!==i.id&&e.points.length>2)return null;let r=t==="startBinding"?-1:1,s=r===-1?0:e.points.length-1;if(G(e)&&Qn(n)){let u=Dr(n.fixedPoint)??Va(e,i,t==="startBinding"?"start":"end",o).fixedPoint,p=fe(i,o),m=O(i.x+u[0]*i.width,i.y+u[1]*i.height),f=ae(m,p,i.angle);return U.pointFromAbsoluteCoords(e,f,o)}let a=s-r,l=U.getPointAtIndexGlobalCoordinates(e,a,o),d=em(i,o,n.focus,l),c;if(n.gap===0)c=d;else{let u=U.getPointAtIndexGlobalCoordinates(e,s,o),p=fe(i,o),m=ut(l,u)+ut(l,p)+Math.max(i.width,i.height)*2,f=[...Mn(i,o,Ye(l,vn(Ln(si(q(d,l)),m),l)),n.gap).sort((E,h)=>Wt(E,l)-Wt(h,l)),vn(Ln(si(q(d,l)),ut(l,u)),l)];f.length>1?c=f[0]:f.length===1?c=d:c=u}return U.pointFromAbsoluteCoords(e,c,o)},Va=(e,t,n,i)=>{let o=[t.x,t.y,t.x+t.width,t.y+t.height],r=Ir(e,t,n,i),s=O(o[0]+(o[2]-o[0])/2,o[1]+(o[3]-o[1])/2),a=ae(r,s,-t.angle);return{fixedPoint:Dr([(a[0]-t.x)/t.width,(a[1]-t.y)/t.height])}},za=(e,t,n)=>{if(t==null||n==null)return t;let{width:i,height:o}=n,{width:r,height:s}=e,a=Math.max(1,Math.min(ao(e,i,o),t.gap*(i<o?i/r:o/s)));return{...t,gap:a}},oo=(e,t,n,i,o)=>jt($a(e,t,n),i,n,o,G(e),G(e)),$a=(e,t,n)=>{let i=t==="start"?0:-1;return Cp(U.getPointAtIndexGlobalCoordinates(e,i,n))},Za=(e,t,n)=>{for(let i of e){if("boundElements"in i&&i.boundElements&&Object.assign(i,{boundElements:i.boundElements.reduce((o,r)=>{let s=t.get(r.id);return s&&o.push({...r,id:s}),o},[])}),"containerId"in i&&i.containerId&&Object.assign(i,{containerId:t.get(i.containerId)??null}),"endBinding"in i&&i.endBinding){let o=t.get(i.endBinding.elementId);Object.assign(i,{endBinding:o?{...i.endBinding,elementId:o}:null})}if("startBinding"in i&&i.startBinding){let o=t.get(i.startBinding.elementId);Object.assign(i,{startBinding:o?{...i.startBinding,elementId:o}:null})}G(i)&&Object.assign(i,Dn(i,n,{points:[i.points[0],i.points[i.points.length-1]]}))}},hy=(e,t)=>{let n=_a(e);for(let i of t)Vt.unbindAffected(n,i,(o,r)=>be(o,n,r)),$t.unbindAffected(n,i,(o,r)=>be(o,n,r))},ri=(e,t,n=[])=>{if(!e)return null;let i=e.filter(o=>!t.has(o.id));return i.push(...n.map(o=>({id:o.id,type:o.type}))),i},io=(e,{x:t,y:n},i,o,r)=>{let s=O(t,n),a=ao(e,e.width,e.height,o),l=(r||!no(e))&&!Z(e),d=[t-a,n-a,t+a,n+a],c=he(e,i);if(!En(d,c))return!1;let u=Mn(e,i,Ye(fe(e,i),s)),p=_t(e,i,s);return l?u.length===0||p<=a:u.length>0&&p<=a},ao=(e,t,n,i)=>{let o=i?.value&&i.value<1?i.value:1,s=(e.type==="diamond"?1/Math.sqrt(2):1)*Math.min(t,n);return Math.max(16,Math.min(.25*s,32),Fp/o+oe)},Jp=(e,t,n,i)=>{let o=fe(e,t);if(Op(n,i))return 0;let r=ae(n,o,-e.angle),s=ae(i,o,-e.angle),a=Math.sign(_e(q(s,n),q(s,o)))*-1,l=Ye(s,vn(Ln(si(q(s,r)),Math.max(e.width*2,e.height*2)),s)),d=e.type==="diamond"?[Ye(O(e.x+e.width/2,e.y),O(e.x+e.width/2,e.y+e.height)),Ye(O(e.x,e.y+e.height/2),O(e.x+e.width,e.y+e.height/2))]:[Ye(O(e.x,e.y),O(e.x+e.width,e.y+e.height)),Ye(O(e.x+e.width,e.y),O(e.x,e.y+e.height))],c=e.type==="diamond"?[Ye(O(e.x+e.width/2,e.y-e.height),O(e.x+e.width/2,e.y+e.height*2)),Ye(O(e.x-e.width,e.y+e.height/2),O(e.x+e.width*2,e.y+e.height/2))]:[Ye(O(e.x-e.width,e.y-e.height),O(e.x+e.width*2,e.y+e.height*2)),Ye(O(e.x+e.width*2,e.y-e.height),O(e.x-e.width,e.y+e.height*2))];return[Na(l,c[0]),Na(l,c[1])].filter(m=>m!==null).sort((m,f)=>Wt(m,i)-Wt(f,i)).map((m,f)=>a*ut(o,m)/(e.type==="diamond"?ut(d[f][0],d[f][1])/2:Math.sqrt(e.width**2+e.height**2)/2)).sort((m,f)=>Math.abs(m)-Math.abs(f))[0]??0},em=(e,t,n,i)=>{let o=fe(e,t);if(n===0)return o;let r=(e.type==="diamond"?[O(e.x,e.y+e.height/2),O(e.x+e.width/2,e.y),O(e.x+e.width,e.y+e.height/2),O(e.x+e.width/2,e.y+e.height)]:[O(e.x,e.y),O(e.x+e.width,e.y),O(e.x+e.width,e.y+e.height),O(e.x,e.y+e.height)]).map(l=>vn(Ln(q(l,o),Math.abs(n)),o)).map(l=>ae(l,o,e.angle)),s=[_e(q(i,r[0]),q(r[1],r[0]))>0&&(n>0?_e(q(i,r[1]),q(r[2],r[1]))<0:_e(q(i,r[3]),q(r[0],r[3]))<0),_e(q(i,r[1]),q(r[2],r[1]))>0&&(n>0?_e(q(i,r[2]),q(r[3],r[2]))<0:_e(q(i,r[0]),q(r[1],r[0]))<0),_e(q(i,r[2]),q(r[3],r[2]))>0&&(n>0?_e(q(i,r[3]),q(r[0],r[3]))<0:_e(q(i,r[1]),q(r[2],r[1]))<0),_e(q(i,r[3]),q(r[0],r[3]))>0&&(n>0?_e(q(i,r[0]),q(r[1],r[0]))<0:_e(q(i,r[2]),q(r[3],r[2]))<0)];return s[0]?n>0?r[1]:r[0]:s[1]?n>0?r[2]:r[1]:s[2]?n>0?r[3]:r[2]:n>0?r[0]:r[3]},qa=new Set(["boundElements","frameId","containerId","startBinding","endBinding"]),ro=(e,t,n)=>{Le(t)&&(t.boundElements?.slice()??[]).forEach(({id:o})=>{n(e.get(o),"boundElements",o)})},so=(e,t,n)=>{let i=[];if(t.frameId){let o=t.frameId;i.push(n(e.get(o),"frameId",o))}if(ce(t)){let o=t.containerId;i.push(n(e.get(o),"containerId",o))}if(Y(t)){if(t.startBinding){let o=t.startBinding.elementId;i.push(n(e.get(o),"startBinding",o))}if(t.endBinding){let o=t.endBinding.elementId;i.push(n(e.get(o),"endBinding",o))}}return i},Vt=class{static unbindAffected(t,n,i){n&&so(t,n,o=>{!o||o.isDeleted||ro(t,o,(r,s,a)=>{a===n.id&&i(o,{boundElements:ri(o.boundElements,new Set([a]))})})})}static rebindAffected=(t,n,i)=>{!n||n.isDeleted||so(t,n,(o,r)=>{if(!o||o.isDeleted){i(n,{[r]:null});return}r!=="frameId"&&(o.boundElements?.find(s=>s.id===n.id)||(Y(n)&&i(o,{boundElements:ri(o.boundElements,new Set,new Array(n))}),ie(n)&&(o.boundElements?.find(s=>s.type==="text")?i(n,{[r]:null}):i(o,{boundElements:ri(o.boundElements,new Set,new Array(n))}))))})}},$t=class{static unbindAffected(t,n,i){n&&ro(t,n,o=>{!o||o.isDeleted||so(t,o,(r,s,a)=>{a===n.id&&i(o,{[s]:null})})})}static rebindAffected=(t,n,i)=>{!n||n.isDeleted||ro(t,n,(o,r,s)=>{if(!o||o.isDeleted){i(n,{boundElements:ri(n.boundElements,new Set([s]))});return}ie(o)&&((n.boundElements?.slice()??[]).reverse().find(l=>l.type==="text")?.id===o.id?o.containerId!==n.id&&i(o,{containerId:n.id}):(o.containerId!==null&&i(o,{containerId:null}),i(n,{boundElements:ri(n.boundElements,new Set([o.id]))})))})}},to=(e,t,n)=>{let[i,o]=Dr(e);return ae(O(t.x+t.width*i,t.y+t.height*o),fe(t,n),t.angle)},tm=(e,t)=>{let n=e.startBinding&&t.get(e.startBinding.elementId),i=e.endBinding&&t.get(e.endBinding.elementId),o=n&&e.startBinding?to(e.startBinding.fixedPoint,n,t):O(e.x+e.points[0][0],e.y+e.points[0][1]),r=i&&e.endBinding?to(e.endBinding.fixedPoint,i,t):O(e.x+e.points[e.points.length-1][0],e.y+e.points[e.points.length-1][1]);return[o,r]},Ka=(e,t)=>{let[n,i]=tm(e,t);return[U.pointFromAbsoluteCoords(e,n,t),U.pointFromAbsoluteCoords(e,i,t)]},Dr=e=>e&&(Math.abs(e[0]-.5)<1e-4||Math.abs(e[1]-.5)<1e-4)?e.map(t=>Math.abs(t-.5)<1e-4?.5001:t):e;var Lr=({points:e})=>{let t=e[0][0],n=e[0][1];return{points:e.map(i=>B(i[0]-t,i[1]-n)),offsetX:t,offsetY:n}},U=class e{elementId;selectedPointsIndices;pointerDownState;isDragging;lastUncommittedPoint;pointerOffset;startBindingElement;endBindingElement;hoverPointIndex;segmentMidPointHoveredCoords;elbowed;customLineAngle;isEditing;constructor(t,n,i=!1){this.elementId=t.id,Ja(t.points[0],B(0,0))||(console.error("Linear element is not normalized",Error().stack),be(t,n,e.getNormalizeElementPointsAndCoords(t))),this.selectedPointsIndices=null,this.lastUncommittedPoint=null,this.isDragging=!1,this.pointerOffset={x:0,y:0},this.startBindingElement="keep",this.endBindingElement="keep",this.pointerDownState={prevSelectedPointsIndices:null,lastClickedPoint:-1,lastClickedIsEndPoint:!1,origin:null,segmentMidpoint:{value:null,index:null,added:!1}},this.hoverPointIndex=-1,this.segmentMidPointHoveredCoords=null,this.elbowed=G(t)&&t.elbowed,this.customLineAngle=null,this.isEditing=i}static POINT_HANDLE_SIZE=10;static getElement(t,n){let i=n.get(t);return i||null}static handleBoxSelection(t,n,i,o){if(!n.selectedLinearElement?.isEditing||!n.selectionElement)return!1;let{selectedLinearElement:r}=n,{selectedPointsIndices:s,elementId:a}=r,l=e.getElement(a,o);if(!l)return!1;let[d,c,u,p]=_(n.selectionElement,o),f=e.getPointsGlobalCoordinates(l,o).reduce((E,h,g)=>((h[0]>=d&&h[0]<=u&&h[1]>=c&&h[1]<=p||t.shiftKey&&s?.includes(g))&&E.push(g),E),[]).filter(E=>!(G(l)&&E!==0&&E!==l.points.length-1));i({selectedLinearElement:{...r,selectedPointsIndices:f.length?f:null}})}static handlePointDragging(t,n,i,o,r){if(!r)return null;let{elementId:s}=r,a=n.scene.getNonDeletedElementsMap(),l=e.getElement(s,a),d=r.customLineAngle;if(!l||G(l)&&!r.pointerDownState.lastClickedIsEndPoint&&r.pointerDownState.lastClickedPoint!==0)return null;let c=G(l)?[r.selectedPointsIndices?.includes(0)?0:void 0,r.selectedPointsIndices?.find(m=>m>0)?l.points.length-1:void 0].filter(m=>m!==void 0):r.selectedPointsIndices,u=G(l)?r.pointerDownState.lastClickedPoint>0?l.points.length-1:0:r.pointerDownState.lastClickedPoint,p=l.points[u];if(c&&p){if(el(t)&&c.length===1&&l.points.length>1){let h=c[0],g=l.points[h===0?1:h-1];d=r.customLineAngle??Math.atan2(l.points[h][1]-g[1],l.points[h][0]-g[0]);let[x,y]=e._getShiftLockedDelta(l,a,g,B(i,o),t[Bn.CTRL_OR_CMD]?null:n.getEffectiveGridSize(),d);e.movePoints(l,n.scene,new Map([[h,{point:B(x+g[0],y+g[1]),isDragging:h===u}]]))}else{let h=e.createPointAt(l,a,i-r.pointerOffset.x,o-r.pointerOffset.y,t[Bn.CTRL_OR_CMD]?null:n.getEffectiveGridSize()),g=h[0]-p[0],x=h[1]-p[1];e.movePoints(l,n.scene,new Map(c.map(y=>{let b=y===u?e.createPointAt(l,a,i-r.pointerOffset.x,o-r.pointerOffset.y,t[Bn.CTRL_OR_CMD]?null:n.getEffectiveGridSize()):B(l.points[y][0]+g,l.points[y][1]+x);return[y,{point:b,isDragging:y===u}]})))}W(l,a)&&hn(l,n.scene,!1);let f=[];if(Jo(l,!1)){let h=c[0]===0,g=c[c.length-1]===l.points.length-1,x=[];!h!=!g?x.push({x:i,y:o}):(h&&x.push(vr(e.getPointGlobalCoordinates(l,l.points[0],a))),g&&x.push(vr(e.getPointGlobalCoordinates(l,l.points[c[c.length-1]],a)))),x.length&&(f=Ua(l,x,n.scene,n.state.zoom))}let E={...r,selectedPointsIndices:c,segmentMidPointHoveredCoords:u!==0&&u!==l.points.length-1?this.getPointGlobalCoordinates(l,p,a):null,hoverPointIndex:u===0||u===l.points.length-1?u:-1,isDragging:!0,customLineAngle:d};return{...n.state,selectedLinearElement:E,suggestedBindings:f}}return null}static handlePointerUp(t,n,i,o){let r=o.getNonDeletedElementsMap(),s=o.getNonDeletedElements(),a=sm(t,i),{elementId:l,selectedPointsIndices:d,isDragging:c,pointerDownState:u}=n,p=e.getElement(l,r);if(!p)return n;let m={};if(c&&d){for(let f of d)if(f===0||f===p.points.length-1){am(p.points,i.zoom.value)&&(mn(p)&&o.mutateElement(p,{...il(p,!0)},{informMutation:!1,isDragging:!1}),e.movePoints(p,o,new Map([[f,{point:f===0?p.points[p.points.length-1]:p.points[0]}]])));let E=Tr(i)?jt((d?.length??0)>1?vr(e.getPointAtIndexGlobalCoordinates(p,f,r)):a,s,r,i.zoom,G(p),G(p)):null;m[f===0?"startBindingElement":"endBindingElement"]=E}}return{...n,...m,segmentMidPointHoveredCoords:null,hoverPointIndex:-1,selectedPointsIndices:c||t.shiftKey?!c&&t.shiftKey&&u.prevSelectedPointsIndices?.includes(u.lastClickedPoint)?d&&d.filter(f=>f!==u.lastClickedPoint):d:d?.includes(u.lastClickedPoint)?[u.lastClickedPoint]:d,isDragging:!1,pointerOffset:{x:0,y:0},customLineAngle:null}}static getEditorMidPoints=(t,n,i)=>{let o=W(t,n);if(!G(t)&&!i.selectedLinearElement?.isEditing&&t.points.length>2&&!o)return[];let r=e.getPointsGlobalCoordinates(t,n),s=0,a=[];for(;s<r.length-1;){if(e.isSegmentTooShort(t,t.points[s],t.points[s+1],s,i.zoom)){a.push(null),s++;continue}let l=e.getSegmentMidPoint(t,s+1);a.push(l),s++}return a};static getSegmentMidpointHitCoords=(t,n,i,o)=>{let{elementId:r}=t,s=e.getElement(r,o);if(!s)return null;let a=e.getPointIndexUnderCursor(s,o,i.zoom,n.x,n.y);if(!G(s)&&a>=0||e.getPointsGlobalCoordinates(s,o).length>=3&&!i.selectedLinearElement?.isEditing&&!G(s))return null;let d=(e.POINT_HANDLE_SIZE+1)/i.zoom.value,c=t.segmentMidPointHoveredCoords;if(c&&Cn(B(c[0],c[1]),B(n.x,n.y))<=d)return c;let u=0,p=e.getEditorMidPoints(s,o,i);for(;u<p.length;){if(p[u]!==null&&Cn(p[u],B(n.x,n.y))<=d)return p[u];u++}return null};static isSegmentTooShort(t,n,i,o,r){if(G(t))return o>=0&&o<t.points.length?Cn(n,i)*r.value<e.POINT_HANDLE_SIZE/2:!1;let s=Cn(n,i);if(t.points.length>2&&t.roundness){let[a,l]=nl(t);At(a.length===0&&l.length>0,"Only linears built out of curves are supported"),At(a.length+l.length>=o,"Invalid segment index while calculating mid point"),s=im(l[o])}return s*r.value<e.POINT_HANDLE_SIZE*4}static getSegmentMidPoint(t,n){if(G(t)){At(t.points.length>=n,"Invalid segment index while calculating elbow arrow mid point");let r=Qa(t.points[n-1],t.points[n]);return B(t.x+r[0],t.y+r[1])}let[i,o]=nl(t);if(At(i.length===0&&o.length>0||i.length>0&&o.length===0,"Only linears built out of either segments or curves are supported"),At(i.length+o.length>=n,"Invalid segment index while calculating mid point"),i.length){let r=i[n-1];return Qa(r[0],r[1])}if(o.length){let r=o[n-1];return om(r,.5)}At(!1,"Invalid segment type while calculating mid point")}static getSegmentMidPointIndex(t,n,i,o){let r=e.getElement(t.elementId,o);if(!r)return-1;let s=e.getEditorMidPoints(r,o,n),a=0;for(;a<s.length;){if(e.arePointsEqual(i,s[a]))return a+1;a++}return-1}static handlePointerDown(t,n,i,o,r,s){let a=n.state,l=s.getNonDeletedElementsMap(),d=s.getNonDeletedElements(),c={didAddPoint:!1,hitElement:null,linearElementEditor:null};if(!r)return c;let{elementId:u}=r,p=e.getElement(u,l);if(!p)return c;let m=e.getSegmentMidpointHitCoords(r,o,a,l),f=null;if(m)f=e.getSegmentMidPointIndex(r,a,m,l);else if(t.altKey&&a.selectedLinearElement?.isEditing)return r.lastUncommittedPoint==null&&(s.mutateElement(p,{points:[...p.points,e.createPointAt(p,l,o.x,o.y,t[Bn.CTRL_OR_CMD]?null:n.getEffectiveGridSize())]}),c.didAddPoint=!0),i.scheduleCapture(),c.linearElementEditor={...r,pointerDownState:{prevSelectedPointsIndices:r.selectedPointsIndices,lastClickedPoint:-1,lastClickedIsEndPoint:!1,origin:{x:o.x,y:o.y},segmentMidpoint:{value:m,index:f,added:!1}},selectedPointsIndices:[p.points.length-1],lastUncommittedPoint:null,endBindingElement:jt(o,d,l,n.state.zoom,r.elbowed)},c.didAddPoint=!0,c;let E=e.getPointIndexUnderCursor(p,l,a.zoom,o.x,o.y);if(E>=0||m)c.hitElement=p;else{let{startBindingElement:D,endBindingElement:T}=r;Tr(a)&&Jo(p)&&Ar(p,D,T,s)}let[h,g,x,y]=_(p,l),b=(h+x)/2,w=(g+y)/2,I=E>-1&&Te(B(p.x+p.points[E][0],p.y+p.points[E][1]),B(b,w),p.angle),M=E>-1||t.shiftKey?t.shiftKey||r.selectedPointsIndices?.includes(E)?lm([...r.selectedPointsIndices||[],E]):[E]:null;return c.linearElementEditor={...r,pointerDownState:{prevSelectedPointsIndices:r.selectedPointsIndices,lastClickedPoint:E,lastClickedIsEndPoint:E===p.points.length-1,origin:{x:o.x,y:o.y},segmentMidpoint:{value:m,index:f,added:!1}},selectedPointsIndices:M,pointerOffset:I?{x:o.x-I[0],y:o.y-I[1]}:{x:0,y:0}},c}static arePointsEqual(t,n){return!t&&!n?!0:!t||!n?!1:Ja(t,n)}static handlePointerMove(t,n,i,o){let r=o.state;if(!r.selectedLinearElement?.isEditing)return null;let{elementId:s,lastUncommittedPoint:a}=r.selectedLinearElement,l=o.scene.getNonDeletedElementsMap(),d=e.getElement(s,l);if(!d)return r.selectedLinearElement;let{points:c}=d,u=c[c.length-1];if(!t.altKey)return u===a&&e.deletePoints(d,o,[c.length-1]),r.selectedLinearElement?.lastUncommittedPoint?{...r.selectedLinearElement,lastUncommittedPoint:null}:r.selectedLinearElement;let p;if(el(t)&&c.length>=2){let m=c[c.length-2],[f,E]=e._getShiftLockedDelta(d,l,m,B(n,i),t[Bn.CTRL_OR_CMD]?null:o.getEffectiveGridSize());p=B(f+m[0],E+m[1])}else p=e.createPointAt(d,l,n-r.selectedLinearElement.pointerOffset.x,i-r.selectedLinearElement.pointerOffset.y,t[Bn.CTRL_OR_CMD]||G(d)?null:o.getEffectiveGridSize());return u===a?e.movePoints(d,o.scene,new Map([[d.points.length-1,{point:p}]])):e.addPoints(d,o.scene,[p]),{...r.selectedLinearElement,lastUncommittedPoint:d.points[d.points.length-1]}}static getPointGlobalCoordinates(t,n,i){let[o,r,s,a]=_(t,i),l=(o+s)/2,d=(r+a)/2,{x:c,y:u}=t;return Te(B(c+n[0],u+n[1]),B(l,d),t.angle)}static getPointsGlobalCoordinates(t,n){let[i,o,r,s]=_(t,n),a=(i+r)/2,l=(o+s)/2;return t.points.map(d=>{let{x:c,y:u}=t;return Te(B(c+d[0],u+d[1]),B(a,l),t.angle)})}static getPointAtIndexGlobalCoordinates(t,n,i){let o=n<0?t.points.length+n:n,[r,s,a,l]=_(t,i),d=(r+a)/2,c=(s+l)/2,u=t.points[o],{x:p,y:m}=t;return u?Te(B(p+u[0],m+u[1]),B(d,c),t.angle):Te(B(p,m),B(d,c),t.angle)}static pointFromAbsoluteCoords(t,n,i){if(G(t))return B(n[0]-t.x,n[1]-t.y);let[o,r,s,a]=_(t,i),l=(o+s)/2,d=(r+a)/2,[c,u]=Te(B(n[0],n[1]),B(l,d),-t.angle);return B(c-t.x,u-t.y)}static getPointIndexUnderCursor(t,n,i,o,r){let s=e.getPointsGlobalCoordinates(t,n),a=s.length;for(;--a>-1;){let l=s[a];if(Cn(B(o,r),B(l[0],l[1]))*i.value<e.POINT_HANDLE_SIZE+1)return a}return-1}static createPointAt(t,n,i,o,r){let s=tl(i,o,r),[a,l,d,c]=_(t,n),u=(a+d)/2,p=(l+c)/2,[m,f]=Te(B(s[0],s[1]),B(u,p),-t.angle);return B(m-t.x,f-t.y)}static getNormalizeElementPointsAndCoords(t){let{points:n,offsetX:i,offsetY:o}=Lr(t);return{points:n,x:t.x+i,y:t.y+o}}static duplicateSelectedPoints(t,n){At(t.selectedLinearElement?.isEditing,"Not currently editing a linear element");let i=n.getNonDeletedElementsMap(),{selectedPointsIndices:o,elementId:r}=t.selectedLinearElement,s=e.getElement(r,i);At(s,"The linear element does not exist in the provided Scene"),At(o!=null,"There are no selected points to duplicate");let{points:a}=s,l=[],d=!1,c=-1,u=a.reduce((p,m,f)=>{if(++c,p.push(m),o.includes(f)){let h=a[f+1];h||(d=!0),p.push(h?B((m[0]+h[0])/2,(m[1]+h[1])/2):B(m[0],m[1])),l.push(c+1),++c}return p},[]);if(n.mutateElement(s,{points:u}),d){let p=s.points[s.points.length-1];e.movePoints(s,n,new Map([[s.points.length-1,{point:B(p[0]+30,p[1]+30)}]]))}return{...t,selectedLinearElement:{...t.selectedLinearElement,selectedPointsIndices:l}}}static deletePoints(t,n,i){let o=n.state.selectedLinearElement?.isEditing&&n.state.selectedLinearElement?.lastUncommittedPoint===t.points[t.points.length-1],r=t.points.filter((c,u)=>!i.includes(u));mn(t)&&t.polygon&&(o||i.includes(0)||i.includes(t.points.length-1))&&(r[0]=B(r[r.length-1][0],r[r.length-1][1]));let{points:a,offsetX:l,offsetY:d}=Lr({points:r});e._updatePoints(t,n.scene,a,l,d)}static addPoints(t,n,i){let o=[...t.points,...i];mn(t)&&t.polygon&&(o[0]=B(o[o.length-1][0],o[o.length-1][1]));let{points:r,offsetX:s,offsetY:a}=Lr({points:o});e._updatePoints(t,n,r,s,a)}static movePoints(t,n,i,o){let{points:r}=t;if(mn(t)&&t.polygon){let c=i.get(0),u=i.get(r.length-1);c?i.set(r.length-1,{point:B(c.point[0],c.point[1]),isDragging:c.isDragging}):u&&i.set(0,{point:B(u.point[0],u.point[1]),isDragging:u.isDragging})}let s=i.get(0)?.point??B(0,0),[a,l]=s,d=G(t)?[i.get(0)?.point??r[0],i.get(r.length-1)?.point??r[r.length-1]]:r.map((c,u)=>{let p=i.get(u)?.point??c;return B(p[0]-a,p[1]-l)});e._updatePoints(t,n,d,a,l,o,{isDragging:Array.from(i.values()).some(c=>c.isDragging)})}static shouldAddMidpoint(t,n,i,o){let r=e.getElement(t.elementId,o);if(r&&G(r)||!r)return!1;let{segmentMidpoint:s}=t.pointerDownState;if(s.added||s.value===null||s.index===null||t.pointerDownState.origin===null)return!1;let a=t.pointerDownState.origin,l=Cn(B(a.x,a.y),B(n.x,n.y));return!(!i.selectedLinearElement?.isEditing&&l<rm/i.zoom.value)}static addMidpoint(t,n,i,o,r){let s=r.getNonDeletedElementsMap(),a=e.getElement(t.elementId,s);if(!a)return;let{segmentMidpoint:l}=t.pointerDownState,d={pointerDownState:t.pointerDownState,selectedPointsIndices:t.selectedPointsIndices},c=e.createPointAt(a,s,n.x,n.y,o&&!G(a)?i.getEffectiveGridSize():null),u=[...a.points.slice(0,l.index),c,...a.points.slice(l.index)];return r.mutateElement(a,{points:u}),d.pointerDownState={...t.pointerDownState,segmentMidpoint:{...t.pointerDownState.segmentMidpoint,added:!0},lastClickedPoint:l.index},d.selectedPointsIndices=[l.index],d}static _updatePoints(t,n,i,o,r,s,a){if(G(t)){let l={};s?.startBinding!==void 0&&(l.startBinding=s.startBinding!==null&&Qn(s.startBinding)?s.startBinding:null),s?.endBinding!==void 0&&(l.endBinding=s.endBinding!==null&&Qn(s.endBinding)?s.endBinding:null),l.points=Array.from(i),n.mutateElement(t,l,{informMutation:!0,isDragging:a?.isDragging??!1})}else{let l=Cr(t,i),d=Cr(t,t.points),c=(l[0]+l[2])/2,u=(l[1]+l[3])/2,p=(d[0]+d[2])/2,m=(d[1]+d[3])/2,f=p-c,E=m-u,h=Te(B(o,r),B(f,E),t.angle);n.mutateElement(t,{...s,points:i,x:t.x+h[0],y:t.y+h[1]})}}static _getShiftLockedDelta(t,n,i,o,r,s){let a=e.getPointGlobalCoordinates(t,i,n);if(G(t))return[o[0]-a[0],o[1]-a[1]];let[l,d]=tl(o[0],o[1],r),{width:c,height:u}=ol(a[0],a[1],l,d,s);return Te(B(c,u),B(0,0),-t.angle)}static getBoundTextElementPosition=(t,n,i)=>{e.getPointsGlobalCoordinates(t,i).length<2&&be(n,i,{isDeleted:!0});let r=0,s=0;if(t.points.length%2===1){let a=Math.floor(t.points.length/2),l=e.getPointGlobalCoordinates(t,t.points[a],i);r=l[0]-n.width/2,s=l[1]-n.height/2}else{let a=t.points.length/2-1,l=e.getSegmentMidPoint(t,a+1);r=l[0]-n.width/2,s=l[1]-n.height/2}return{x:r,y:s}};static getMinMaxXYWithBoundText=(t,n,i,o)=>{let[r,s,a,l]=i,d=(r+a)/2,c=(s+l)/2,{x:u,y:p}=e.getBoundTextElementPosition(t,o,n),m=u+o.width,f=p+o.height,E=B(d,c),h=Te(B(r,s),E,t.angle),g=Te(B(a,s),E,t.angle),x=Te(B(u,p),E,-t.angle),y=Te(B(m,p),E,-t.angle),b=Te(B(u,f),E,-t.angle),w=Te(B(m,f),E,-t.angle);return h[0]<g[0]&&h[1]>=g[1]?(r=Math.min(r,b[0]),a=Math.max(a,Math.max(y[0],w[0])),s=Math.min(s,x[1]),l=Math.max(l,w[1])):h[0]>=g[0]&&h[1]>g[1]?(r=Math.min(r,w[0]),a=Math.max(a,Math.max(x[0],y[0])),s=Math.min(s,b[1]),l=Math.max(l,y[1])):h[0]>=g[0]?(r=Math.min(r,y[0]),a=Math.max(a,b[0]),s=Math.min(s,w[1]),l=Math.max(l,x[1])):h[1]<=g[1]&&(r=Math.min(r,Math.min(y[0],x[0])),a=Math.max(a,w[0]),s=Math.min(s,y[1]),l=Math.max(l,b[1])),[r,s,a,l,d,c]};static getElementAbsoluteCoords=(t,n,i=!1)=>{let o,r,s,a,l;if(t.points.length<2||!Pe.get(t)){let{minX:p,minY:m,maxX:f,maxY:E}=t.points.reduce((h,[g,x])=>(h.minY=Math.min(h.minY,x),h.minX=Math.min(h.minX,g),h.maxX=Math.max(h.maxX,g),h.maxY=Math.max(h.maxY,x),h),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});r=p+t.x,s=m+t.y,a=f+t.x,l=E+t.y}else{let p=Pe.generateElementShape(t,null),m=gt(p[0]),[f,E,h,g]=ai(m);r=f+t.x,s=E+t.y,a=h+t.x,l=g+t.y}let d=(r+a)/2,c=(s+l)/2;if(o=[r,s,a,l,d,c],!i)return o;let u=W(t,n);return u&&(o=e.getMinMaxXYWithBoundText(t,n,[r,s,a,l],u)),o};static moveFixedSegment(t,n,i,o,r){let s=r.getNonDeletedElementsMap(),a=e.getElement(t.elementId,s);if(!a||!G(a))return t;if(n&&n>0&&n<a.points.length){let l=Oe(Mt(nm(a.points[n],a.points[n-1]))),d=(a.fixedSegments??[]).reduce((m,f)=>(m[f.index]=f,m),{});d[n]={index:n,start:B(l?a.points[n-1][0]:i-a.x,l?o-a.y:a.points[n-1][1]),end:B(l?a.points[n][0]:i-a.x,l?o-a.y:a.points[n][1])};let c=Object.values(d).sort((m,f)=>m.index-f.index),u=c.map(m=>m.index).reduce((m,f)=>f<n?m+1:m,0);r.mutateElement(a,{fixedSegments:c});let p=B(a.x+(a.fixedSegments[u].start[0]+a.fixedSegments[u].end[0])/2,a.y+(a.fixedSegments[u].start[1]+a.fixedSegments[u].end[1])/2);return{...t,segmentMidPointHoveredCoords:p,pointerDownState:{...t.pointerDownState,segmentMidpoint:{added:!1,index:a.fixedSegments[u].index,value:p}}}}return t}static deleteFixedSegment(t,n,i){n.mutateElement(t,{fixedSegments:t.fixedSegments?.filter(o=>o.index!==i)})}},lm=e=>{let t=[...new Set(e.filter(n=>n!==null&&n!==-1))];return t=t.sort((n,i)=>n-i),t.length?t:null};P();import{arrayToMap as mt}from"@excalidraw/common";import{isPointWithinBounds as Lm,pointFrom as Rr}from"@excalidraw/math";P();import{vectorCross as ll,vectorFromPoint as lo}from"@excalidraw/math";function rl(e){return[Math.min(e[0][0],e[1][0]),Math.min(e[0][1],e[1][1]),Math.max(e[0][0],e[1][0]),Math.max(e[0][1],e[1][1])]}function dm(e,t){return e[0]<=t[2]&&e[2]>=t[0]&&e[1]<=t[3]&&e[3]>=t[1]}var cm=1e-6;function sl(e,t){let n=lo(e[1],e[0]),i=lo(t,e[0]),o=ll(n,i);return Math.abs(o)<cm}function Br(e,t){let n=lo(e[1],e[0]),i=lo(t,e[0]);return ll(n,i)<0}function al(e,t){return sl(e,t[0])||sl(e,t[1])||(Br(e,t[0])?!Br(e,t[1]):Br(e,t[1]))}function dl(e,t){return dm(rl(e),rl(t))&&al(e,t)&&al(t,e)}P();import{arrayToMap as um}from"@excalidraw/common";import{getElementBounds as pm}from"@excalidraw/element";import{isArrowElement as mm,isExcalidrawElement as fm,isFreeDrawElement as hm,isLinearElement as Em,isTextElement as gm}from"@excalidraw/element";import{rangeIncludesValue as co,pointFrom as Dt,pointRotateRads as xm,rangeInclusive as uo}from"@excalidraw/math";var wm=e=>e.type==="diamond"?[Dt(e.width/2,0),Dt(e.width,e.height/2),Dt(e.width/2,e.height),Dt(0,e.height/2)]:[Dt(0,0),Dt(0+e.width,0),Dt(0+e.width,e.height),Dt(0,e.height)],ym=e=>Em(e)||hm(e)?e.points:wm(e),cl=e=>{let t=e.reduce((n,[i,o])=>(n.minY=Math.min(n.minY,o),n.minX=Math.min(n.minX,i),n.maxX=Math.max(n.maxX,i),n.maxY=Math.max(n.maxY,o),n),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0,cx:0,cy:0});return t.cx=(t.maxX+t.minX)/2,t.cy=(t.maxY+t.minY)/2,t},pl=e=>{let t=ym(e),{cx:n,cy:i}=cl(t),o=Dt(n,i),r=t.map(c=>xm(c,o,e.angle)),{minX:s,minY:a,maxX:l,maxY:d}=cl(r);return[s+e.x,a+e.y,l+e.x,d+e.y]},ul=(e,t,n=!1)=>{let i=pl(e),o=t[0]<=i[0]&&t[2]>=i[2]&&t[1]<=i[1]&&t[3]>=i[3];return n?o?!0:i[0]<=t[0]&&i[2]>=t[2]&&i[1]<=t[1]&&i[3]>=t[3]:o},bm=(e,t)=>{let n=pl(e);return(co(n[0],uo(t[0],t[2]))||co(t[0],uo(n[0],n[2])))&&(co(n[1],uo(t[1],t[3]))||co(t[1],uo(n[1],n[3])))},ml=({elements:e,bounds:t,type:n,errorMargin:i=0})=>{fm(t)&&(t=pm(t,um(e)));let o=[t[0]-i,t[1]-i,t[2]+i,t[3]+i],r=new Set;for(let s of e){if(r.has(s.id))continue;if(n==="overlap"?bm(s,o):n==="inside"?ul(s,o):ul(s,o,!0)){if(r.add(s.id),s.boundElements)for(let l of s.boundElements)r.add(l.id);gm(s)&&s.containerId&&r.add(s.containerId),mm(s)&&(s.startBinding&&r.add(s.startBinding.elementId),s.endBinding&&r.add(s.endBinding?.elementId))}}return e.filter(s=>r.has(s.id))};P();import{arrayToMap as Am,isShallowEqual as Dm}from"@excalidraw/common";P();var Pm=(e,t,n)=>{let i=n.reduce((o,r)=>(r.groupIds.includes(e)&&(o[r.id]=!0),o),{});return Object.keys(i).length<2?t.selectedGroupIds[e]||t.editingGroupId===e?{selectedElementIds:t.selectedElementIds,selectedGroupIds:{...t.selectedGroupIds,[e]:!1},editingGroupId:null}:t:{editingGroupId:t.editingGroupId,selectedGroupIds:{...t.selectedGroupIds,[e]:!0},selectedElementIds:{...t.selectedElementIds,...i}}},fl=function(){let e=null,t=null,n=null,i=(r,s,a,l)=>{if(n!==void 0&&s===t&&r===e&&a.editingGroupId===n?.editingGroupId)return n;let d={};for(let p of r){let m=p.groupIds;if(a.editingGroupId){let f=m.indexOf(a.editingGroupId);f>-1&&(m=m.slice(0,f))}if(m.length>0){let f=m[m.length-1];d[f]=!0}}let c={},u=s.reduce((p,m)=>{if(m.isDeleted)return p;let f=m.groupIds.find(E=>d[E]);return f&&(p[m.id]=!0,Array.isArray(c[f])?c[f].push(m.id):c[f]=[m.id]),p},{});for(let p of Object.keys(c))c[p].length<2&&d[p]&&(d[p]=!1);return t=s,e=r,n={editingGroupId:a.editingGroupId,selectedGroupIds:d,selectedElementIds:Gr({...a.selectedElementIds,...u},l)},n},o=(r,s,a,l)=>{let d=l?l.scene.getSelectedElements({selectedElementIds:r.selectedElementIds,elements:s}):pt(s,r);return d.length?i(d,s,r,a):{selectedGroupIds:{},editingGroupId:null,selectedElementIds:Gr(r.selectedElementIds,a)}};return o.clearCache=()=>{t=null,e=null,n=null},o}(),Im=(e,t)=>kr(e,t)!=null,kr=(e,t)=>t.groupIds.filter(n=>n!==e.editingGroupId).find(n=>e.selectedGroupIds[n]),Sm=e=>Object.entries(e.selectedGroupIds).filter(([t,n])=>n).map(([t,n])=>t),hl=(e,t)=>{let n={...t,selectedGroupIds:{}};for(let i of e){let o=i.groupIds;if(t.editingGroupId){let r=o.indexOf(t.editingGroupId);r>-1&&(o=o.slice(0,r))}if(o.length>0){let r=o[o.length-1];n={...n,...Pm(r,n,e)}}}return n.selectedGroupIds},jy=(e,t)=>({...e,editingGroupId:t.groupIds.length?t.groupIds[0]:null,selectedGroupIds:{},selectedElementIds:{[t.id]:!0}}),Mm=(e,t)=>e.groupIds.includes(t),Ae=(e,t)=>{let n=[];for(let i of e.values())Mm(i,t)&&n.push(i);return n},Tm=(e,t)=>e.groupIds.find(n=>t[n]),Wy=(e,t,n)=>{let i=[...e],o=n?i.indexOf(n):-1,r=o>-1?o:i.length;return i.splice(r,0,t),i},Vy=(e,t)=>e.filter(n=>!t[n]),$y=(e,t)=>{let n=new Map;return e.forEach(i=>{let o=i.groupIds.length===0?i.id:i.groupIds[i.groupIds.length-1],r=n.get(o)||[],s=W(i,t);s&&r.push(s),n.set(o,[...r,i])}),Array.from(n.values())},El=e=>{let t=new Set;for(let[,n]of e)if(!n.isDeleted)for(let i of n.groupIds??[])t.add(i);return t},gl=e=>{let t=e.flatMap(o=>o.groupIds),n=new Map,i=0;for(let o of t)n.set(o,(n.get(o)??0)+1),n.get(o)>i&&(i=n.get(o));return i===e.length},xl=e=>e.groupIds.length>0,wl=(e,t,n)=>{let i=[...e],o=t?e.indexOf(t):-1,r=o>-1?o:e.length;for(let s=0;s<r;s++)i[s]=n(i[s]);return i},po=(e,t,n)=>{let i=Sm(n),o=e.filter(u=>!ce(u)),r=new Map,s=new Map,a=u=>{let p=s.get(u.id)||[],m=W(u,t);m&&p.push(m),s.set(u.id,[...p,u])},l=(u,p)=>{let m=r.get(p)||[],f=W(u,t);f&&m.push(f),r.set(p,[...m,u])},d=(u,p)=>{let m=u.groupIds.indexOf(p,0);return u.groupIds.slice(0,m).length>0?l(u,u.groupIds[m-1]):a(u)},c=e.every(u=>Im(n,u));return o.forEach(u=>{let p=Tm(u,n.selectedGroupIds);p?i.length===1&&c?d(u,p):l(u,p):a(u)}),Array.from(r.values()).concat(Array.from(s.values()))};var yl=e=>{let t=new Set;return e.forEach(n=>{Z(n)&&t.add(n.id)}),e.filter(n=>!(n.frameId&&t.has(n.frameId)))},Or=(e,t,n,i=!0)=>{let[o,r,s,a]=_(t,n),l=e.filter(d=>{let[c,u,p,m]=he(d,n),f=vt(d,n);if(f){let[E,h,g,x]=he(f,n);c=Math.max(E,c),u=Math.max(h,u),p=Math.min(g,p),m=Math.min(x,m)}return d.locked===!1&&d.type!=="selection"&&!ce(d)&&o<=c&&r<=u&&s>=p&&a>=m});return l=i?yl(l):l,l=l.filter(d=>{let c=vt(d,n);return c?Zt(d,c,n):!0}),l},ob=(e,t,n,i)=>{let o=new Set(t.map(r=>r.id));return e.filter(r=>{let s=bl(r,n.width,n.height,n,i);return!o.has(r.id)&&s})},rb=function(){let e=null,t=null,n=null,i=(o,r)=>(n!=null&&o===e&&r.selectedElementIds===t||(n=o.some(s=>r.selectedElementIds[s.id]),e=o,t=r.selectedElementIds),n);return i.clearCache=()=>{e=null,t=null,n=null},i}(),pt=(e,t,n)=>{let i=new Set,o=[];for(let r of e.values()){if(t.selectedElementIds[r.id]){o.push(r),i.add(r.id);continue}if(n?.includeBoundTextElement&&ce(r)&&t.selectedElementIds[r?.containerId]){o.push(r),i.add(r.id);continue}}if(n?.includeElementsInFrames){let r=[];return o.forEach(s=>{Z(s)&&qt(e,s.id).forEach(a=>!i.has(a.id)&&r.push(a)),r.push(s)}),r}return o},sb=(e,t)=>t.editingTextElement?[t.editingTextElement]:t.newElement?[t.newElement]:pt(e,t,{includeBoundTextElement:!0}),Gr=(e,t)=>Dm(t.selectedElementIds,e)?t.selectedElementIds:e,vm=(e,t)=>{let n=e.filter(j);if(n.length===1){let i=n[0],o=i.boundElements?.map(s=>s.id)??[];if(e.every(s=>s.id===i.id||o.includes(s.id)))return new U(i,Am(t))}return null},ab=(e,t,n)=>({selectedLinearElement:vm(e,t),...fl({editingGroupId:n.editingGroupId,selectedElementIds:yl(e).reduce((i,o)=>(ce(o)||(i[o.id]=!0),i),{})},t,n,null)});var Pl=(e,t,n)=>{let i=mt(e);for(let o of t)if(o.frameId){let r=n.get(o.id),s=n.get(o.frameId),a=r&&i.get(r);a&&be(a,i,{frameId:s??null})}};function Gn(e,t,n){let i=Fr(t,n),o=Fr(e,n);return i.some(s=>o.some(a=>dl(s,a)))}var Il=(e,t,n)=>mo(Or(e,t,n,!1)).filter(i=>!Z(i)&&!i.frameId||i.frameId===t.id),Nr=(e,t,n)=>Or([t],e,n).some(i=>i.id===t.id),yb=(e,t)=>{let n=mt(e);return e.filter(i=>Gn(i,t,n))},Kt=(e,t,n)=>{let[i,o,r,s]=_(t,n),[a,l,d,c]=Xe(e);return i<=a&&o<=l&&r>=d&&s>=c},Zt=(e,t,n)=>Kt([e],t,n)||Gn(e,t,n)||Nr(e,t,n),bb=(e,t,n)=>{let[i,o,r,s]=_(t,n);return Lm(Rr(i,o),Rr(e.x,e.y),Rr(r,s))},Pb=(e,t,n)=>{let i=mt(e),o=t.flatMap(r=>Ae(e,r));return o.length===0?!0:!!o.find(r=>Kt([r],n,i)||Gn(r,n,i))},Ib=(e,t,n)=>{let i=mt(e),o=t.flatMap(r=>Ae(e,r));return o.length===0?!0:o.find(r=>Kt([r],n,i)||Gn(r,n,i))===void 0},Sb=e=>{let t=new Map;for(let n of e){let i=Z(n)?n.id:n.frameId;i&&!t.has(i)&&t.set(i,qt(e,i))}return t},qt=(e,t)=>{let n=[];for(let i of e.values())i.frameId===t&&n.push(i);return n},Cm=e=>e.filter(t=>Z(t)),Mb=e=>{let t=mt(Cm(e));return e.filter(n=>t.has(n.id)||!n.frameId||!t.has(n.frameId))},Tb=(e,t,n,i)=>{let o=qt(e,t.id),r=new Set(o),s=new Set([...Il(e,t,i),...o.filter(p=>Nr(p,t,i))]),a=o.filter(p=>!s.has(p)),l=new Set(Array.from(s).flatMap(p=>p.groupIds));for(let p of a)if(!Gn(p,t,i))p.groupIds.length===0&&r.delete(p);else if(p.groupIds.length>0)for(let m of p.groupIds)l.add(m);for(let p of a)if(p.groupIds.length>0){let m=!0;for(let f of p.groupIds)l.has(f)&&(m=!1);m&&r.delete(p)}let d=Array.from(s).filter(p=>p.groupIds.length===0);for(let p of d)r.add(p);let c=Array.from(s).filter(p=>p.groupIds.length>0),u=hl(c,n);for(let[p,m]of Object.entries(u))if(m){let f=Ae(e,p);if(Kt(f,t,i))for(let E of f)r.add(E)}return[...r].filter(p=>!(ie(p)&&p.containerId))},Ab=(e,t,n)=>Bm(mo(e,Il(e,t,n)),t,n),Bm=(e,t,n)=>{let i=[],o=new Map;for(let r of e){let s=!1;if(r.groupIds.length>0){if(r.groupIds.some(a=>o.get(a)))s=!0;else{let a=new Set(r.groupIds.flatMap(l=>Ae(n,l)));s=!Kt(Array.from(a),t,n)}r.groupIds.forEach(a=>{o.set(a,s)})}s||i.push(r)}return i},vt=(e,t)=>e.frameId&&t.get(e.frameId)||null,Db=(e,t)=>{let n=new Set,i=mt(e);e=mo(e);for(let s of e)Z(s)&&s.id!==t.id&&n.add(s.id);let o=new Set,r=[];for(let s of e)if(!(Z(s)||s.frameId&&n.has(s.frameId)))if(s.groupIds.length){let a=s.groupIds.at(-1);if(!o.has(a)){o.add(a);let l=Ae(e,a);if(l.some(d=>Zt(d,t,i)))for(let d of l)r.push(d)}}else Zt(s,t,i)&&r.push(s);return r},Gm=(e,t,n,i)=>{let o=mt(e),r=new Map;for(let d of e.values())d.frameId===n.id&&r.set(d.id,!0);let s=new Set(t.map(d=>d.id)),a=[],l=new Set;for(let d of t)Z(d)&&d.id!==n.id&&l.add(d.id);for(let d of mo(e,t)){if(Z(d)||d.frameId&&l.has(d.frameId)||d.frameId&&i.selectedElementIds[d.id]&&i.selectedElementIds[d.frameId])continue;r.has(d.id)||a.push(d);let c=W(d,o);c&&!s.has(c.id)&&!r.has(c.id)&&a.push(c)}for(let d of a)be(d,o,{frameId:n.id});return e},Sl=(e,t)=>{let n=new Map,i=new Map;for(let o of e)if(o.frameId){n.set(o.id,o);let r=i.get(o.frameId)||[];r.push(o);let s=W(o,t);s&&(n.set(s.id,s),r.push(s)),i.set(o.frameId,r)}for(let[,o]of n)be(o,t,{frameId:null})},km=(e,t)=>{let n=qt(e,t.id);return Sl(n,mt(e)),e},vb=(e,t,n,i)=>Gm(km(e,n),t,n,i.state).slice(),Lb=(e,t,n)=>{let i=n.scene.getSelectedElements({selectedElementIds:t.selectedElementIds,elements:e}),o=new Set(i);if(t.editingGroupId)for(let a of i)a.groupIds.length===0?o.add(a):a.groupIds.flatMap(l=>Ae(e,l)).forEach(l=>o.add(l));let r=new Set,s=mt(e);return o.forEach(a=>{a.frameId&&!Z(a)&&!Ml(a,s,t)&&r.add(a)}),r.size>0&&Sl(r,s),e},mo=(e,t)=>{let n=new Set,i=t||e;for(let s of i.values()){let a=s.groupIds[s.groupIds.length-1];a&&n.add(a)}let o=new Set;for(let s of n)Ae(e,s).some(a=>Z(a))&&o.add(s);let r=[];for(let s of i.values())o.has(s.groupIds[s.groupIds.length-1])||r.push(s);return r},Om=(e,t,n)=>{let i=ie(e)&&Ce(e,t)||e;return i.frameId&&n.selectedElementIds[i.id]&&n.selectedElementIds[i.frameId]?vt(i,t):n.selectedElementIds[i.id]&&n.selectedElementsAreBeingDragged?n.frameToHighlight:vt(i,t)},Ml=(e,t,n,i)=>{let o=i?.targetFrame??Om(e,t,n);if(!o)return!1;let r=ie(e)&&Ce(e,t)||e,s=l=>{i?.checkedGroups&&r.groupIds.forEach(d=>{i.checkedGroups?.set(d,l)})};if(!n.selectedElementIds[r.id]||!n.selectedElementsAreBeingDragged||n.selectedElementIds[r.id]&&n.selectedElementIds[o.id])return!0;if(r.groupIds.length===0)return Zt(r,o,t);for(let l of r.groupIds)if(i?.checkedGroups?.has(l))return i.checkedGroups.get(l);let a=new Set(r.groupIds.filter(l=>i?.checkedGroups?!i.checkedGroups.has(l):!0).flatMap(l=>Ae(t,l)));if(n.editingGroupId&&n.selectedElementsAreBeingDragged){let l=new Set(pt(t,n));if(n.frameToHighlight!==null)return!0;l.forEach(c=>{a.delete(c)})}for(let l of a)if(Z(l))return s(!1),!1;for(let l of a)if(Zt(l,o,t))return s(!0),!0;return!1},Cb=(e,t,n,i,o)=>{if(!n.frameRendering||!n.frameRendering.clip)return!1;let r=Gn(e,t,i)||Nr(e,t,i);if(r){for(let s of e.groupIds)o?.set(s,!0);return!0}if(!r&&e.groupIds.length>0&&!Kt([e],t,i)){let s=!1;if(n.selectedElementsAreBeingDragged)s=Ml(e,i,n,{targetFrame:t,checkedGroups:o});else{s=e.frameId===t.id;for(let a of e.groupIds)o?.set(a,s)}for(let a of e.groupIds)o?.set(a,s);return s}return!1},Rm="Frame",Fm="AI Frame",Nm=e=>Ri(e)?Rm:Fm,Bb=e=>e.name===null?Nm(e):e.name,Gb=(e,t)=>ml({elements:e,bounds:t,type:"overlap"}).filter(n=>!n.frameId||n.frameId===t.id),kb=e=>{let t=mt(e);return e.length>1&&e.some(n=>n.frameId&&t.has(n.frameId))};var jm="invert(100%) hue-rotate(180deg) saturate(1.25)",vl=(e,t)=>Ht(e)&&!t.imageCache.has(e.fileId),Ll=(e,t,n)=>n.theme===Dl.DARK&&Ht(e)&&!vl(e,t)&&t.imageCache.get(e.fileId)?.mimeType!==zr.svg,xo=e=>{switch(e.type){case"freedraw":return e.strokeWidth*12;case"text":return e.fontSize/2;case"arrow":return e.endArrowhead||e.endArrowhead?40:20;default:return 20}},Wm=(e,t,n,i,o=1)=>{let r=(t?.opacity??100)*e.opacity/1e4*o;return(n.has(e.id)||i&&i.some(s=>s.id===e.id)||t&&n.has(t.id))&&(r*=_m/100),r},Vm=(e,t,n)=>{let r=xo(e),[s,a,l,d]=_(e,t),c=j(e)||Me(e)?Qt(s,l):e.width,u=j(e)||Me(e)?Qt(a,d):e.height,p=c*window.devicePixelRatio+r*2,m=u*window.devicePixelRatio+r*2,f=n.value;return(p*f>32767||m*f>32767)&&(f=Math.min(32767/p,32767/m)),p*m*f*f>16777216&&(f=Math.sqrt(16777216/(p*m))),p=Math.floor(p*f),m=Math.floor(m*f),{width:p,height:m,scale:f}},Cl=(e,t,n,i,o)=>{let r=document.createElement("canvas"),s=r.getContext("2d"),a=xo(e),{width:l,height:d,scale:c}=Vm(e,t,n);if(!l||!d)return null;r.width=l,r.height=d;let u=-100,p=0;if(j(e)||Me(e)){let[g,x]=_(e,t);u=e.x>g?Qt(e.x,g)*window.devicePixelRatio*c:0,p=e.y>x?Qt(e.y,x)*window.devicePixelRatio*c:0,s.translate(u,p)}s.save(),s.translate(a*c,a*c),s.scale(window.devicePixelRatio*c,window.devicePixelRatio*c);let m=un.canvas(r);Ll(e,i,o)&&(s.filter=jm),Eo(e,m,s,i,o),s.restore();let f=W(e,t),E=document.createElement("canvas"),h=E.getContext("2d");if(Y(e)&&f){let[g,x,y,b]=_(e,t),w=Math.max(Qt(g,y),Qt(x,b));E.width=w*window.devicePixelRatio*c+a*c*10,E.height=w*window.devicePixelRatio*c+a*c*10,h.translate(E.width/2,E.height/2),h.rotate(e.angle),h.drawImage(r,-r.width/2,-r.height/2,r.width,r.height);let[,,,,I,M]=_(f,t);h.rotate(-e.angle);let D=(E.width-r.width)/2,T=(E.height-r.height)/2,N=E.width/2-(I-g)*window.devicePixelRatio*c-D-a*c,C=E.height/2-(M-x)*window.devicePixelRatio*c-T-a*c;h.translate(-N,-C),h.clearRect(-(f.width/2+fo)*window.devicePixelRatio*c,-(f.height/2+fo)*window.devicePixelRatio*c,(f.width+fo*2)*window.devicePixelRatio*c,(f.height+fo*2)*window.devicePixelRatio*c)}return{element:e,canvas:r,theme:o.theme,scale:c,zoomValue:n.value,canvasOffsetX:u,canvasOffsetY:p,boundTextElementVersion:W(e,t)?.version||null,containingFrameOpacity:vt(e,t)?.opacity||100,boundTextCanvas:E,angle:e.angle,imageCrop:we(e)?e.crop:null}},qb=14,Bl=typeof document<"u"?document.createElement("img"):{src:""};Bl.src=`data:${zr.svg},${encodeURIComponent('<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="image" class="svg-inline--fa fa-image fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#888" d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"></path></svg>')}`;var Gl=typeof document<"u"?document.createElement("img"):{src:""};Gl.src=`data:${zr.svg},${encodeURIComponent('<svg viewBox="0 0 668 668" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"><path d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48ZM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56ZM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.81709 0 0 .81709 124.825 145.825)"/><path d="M256 8C119.034 8 8 119.033 8 256c0 136.967 111.034 248 248 248s248-111.034 248-248S392.967 8 256 8Zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676ZM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.30366 0 0 .30366 506.822 60.065)"/></svg>')}`;var $m=(e,t)=>{t.fillStyle="#E7E7E7",t.fillRect(0,0,e.width,e.height);let n=Math.min(e.width,e.height),i=Math.min(n,Math.min(n*.4,100));t.drawImage(e.status==="error"?Gl:Bl,e.width/2-i/2,e.height/2-i/2,i,i)},Eo=(e,t,n,i,o)=>{switch(e.type){case"rectangle":case"iframe":case"embeddable":case"diamond":case"ellipse":{n.lineJoin="round",n.lineCap="round",t.draw(Pe.get(e));break}case"arrow":case"line":{n.lineJoin="round",n.lineCap="round",Pe.get(e).forEach(r=>{t.draw(r)});break}case"freedraw":{n.save(),n.fillStyle=e.strokeColor;let r=Zm(e),s=Pe.get(e);s&&t.draw(s),n.fillStyle=e.strokeColor,n.fill(r),n.restore();break}case"image":{let r=Ht(e)?i.imageCache.get(e.fileId)?.image:void 0;if(r!=null&&!(r instanceof Promise)){e.roundness&&n.roundRect&&(n.beginPath(),n.roundRect(0,0,e.width,e.height,yt(Math.min(e.width,e.height),e)),n.clip());let{x:s,y:a,width:l,height:d}=e.crop?e.crop:{x:0,y:0,width:r.naturalWidth,height:r.naturalHeight};n.drawImage(r,s,a,l,d,0,0,e.width,e.height)}else $m(e,n);break}default:if(ie(e)){let r=Um(e.text),s=r&&!n.canvas.isConnected;s&&document.body.appendChild(n.canvas),n.canvas.setAttribute("dir",r?"rtl":"ltr"),n.save(),n.font=Ym(e),n.fillStyle=e.strokeColor,n.textAlign=e.textAlign;let a=e.text.replace(/\r\n?/g,`
|
|
10
|
-
`).split(`
|
|
11
|
-
`),l=e.textAlign==="center"?e.width/2:e.textAlign==="right"?e.width:0,d=zi(e.fontSize,e.lineHeight),c=Xm(e.fontFamily,e.fontSize,d);for(let u=0;u<a.length;u++)n.fillText(a[u],l,u*d+c);n.restore(),s&&n.canvas.remove()}else throw new Error(`Unimplemented type ${e.type}`)}},go=new WeakMap,Tl=(e,t,n,i)=>{let o=n?i.zoom:{value:1},r=go.get(e),s=r&&r.zoomValue!==o.value&&!i?.shouldCacheIgnoreZoom,a=W(e,t),l=a?.version||null,d=we(e)?e.crop:null,c=vt(e,t)?.opacity||100;if(!r||s||r.theme!==i.theme||r.boundTextElementVersion!==l||r.imageCrop!==d||r.containingFrameOpacity!==c||Y(e)&&a&&e.angle!==r.angle){let u=Cl(e,t,o,n,i);return u?(go.set(e,u),u):null}return r},Hr=(e,t,n,i,o)=>{let r=e.element,s=xo(r),a=e.scale,[l,d,c,u]=_(r,o),p=((l+c)/2+i.scrollX)*window.devicePixelRatio,m=((d+u)/2+i.scrollY)*window.devicePixelRatio;t.save(),t.scale(1/window.devicePixelRatio,1/window.devicePixelRatio);let f=W(r,o);if(Y(r)&&f){let E=(e.boundTextCanvas.width-e.canvas.width)/2,h=(e.boundTextCanvas.height-e.canvas.height)/2;t.translate(p,m),t.drawImage(e.boundTextCanvas,-(c-l)/2*window.devicePixelRatio-E/a-s,-(u-d)/2*window.devicePixelRatio-h/a-s,e.boundTextCanvas.width/a,e.boundTextCanvas.height/a)}else if(t.translate(p,m),t.rotate(r.angle),"scale"in e.element&&!vl(r,n)&&t.scale(e.element.scale[0],e.element.scale[1]),t.translate(-p,-m),t.drawImage(e.canvas,(l+i.scrollX)*window.devicePixelRatio-s*e.scale/e.scale,(d+i.scrollY)*window.devicePixelRatio-s*e.scale/e.scale,e.canvas.width/e.scale,e.canvas.height/e.scale),A.VITE_APP_DEBUG_ENABLE_TEXT_CONTAINER_BOUNDING_BOX==="true"&&st(r)){let E=W(r,o),h=lr(r);t.strokeStyle="#c92a2a",t.lineWidth=3,t.strokeRect((h.x+i.scrollX)*window.devicePixelRatio,(h.y+i.scrollY)*window.devicePixelRatio,et(r,E)*window.devicePixelRatio,ti(r,E)*window.devicePixelRatio)}t.restore()},Kb=(e,t,n,i)=>{t.save(),t.translate(e.x+n.scrollX,e.y+n.scrollY),t.fillStyle="rgba(0, 0, 200, 0.04)";let o=.5/n.zoom.value;t.fillRect(o,o,e.width,e.height),t.lineWidth=1/n.zoom.value,t.strokeStyle=i,t.strokeRect(o,o,e.width,e.height),t.restore()},Qb=(e,t,n,i,o,r,s)=>{let a=s.openDialog?.name==="elementLinkSelector"&&!s.selectedElementIds[e.id]&&!s.hoveredElementIds[e.id];switch(o.globalAlpha=Wm(e,vt(e,t),r.elementsPendingErasure,r.pendingFlowchartNodes,a?zm:1),e.type){case"magicframe":case"frame":{s.frameRendering.enabled&&s.frameRendering.outline&&(o.save(),o.translate(e.x+s.scrollX,e.y+s.scrollY),o.fillStyle="rgba(0, 0, 200, 0.04)",o.lineWidth=ho.strokeWidth/s.zoom.value,o.strokeStyle=ho.strokeColor,ra(e)&&(o.strokeStyle=s.theme===Dl.LIGHT?"#7affd7":"#1d8264"),ho.radius&&o.roundRect?(o.beginPath(),o.roundRect(0,0,e.width,e.height,ho.radius/s.zoom.value),o.stroke(),o.closePath()):o.strokeRect(0,0,e.width,e.height),o.restore());break}case"freedraw":{if(Pe.generateElementShape(e,null),r.isExporting){let[l,d,c,u]=_(e,t),p=(l+c)/2+s.scrollX,m=(d+u)/2+s.scrollY,f=(c-l)/2-(e.x-l),E=(u-d)/2-(e.y-d);o.save(),o.translate(p,m),o.rotate(e.angle),o.translate(-f,-E),Eo(e,i,o,r,s),o.restore()}else{let l=Tl(e,n,r,s);if(!l)return;Hr(l,o,r,s,n)}break}case"rectangle":case"diamond":case"ellipse":case"line":case"arrow":case"image":case"text":case"iframe":case"embeddable":{if(Pe.generateElementShape(e,r),r.isExporting){let[l,d,c,u]=_(e,t),p=(l+c)/2+s.scrollX,m=(d+u)/2+s.scrollY,f=(c-l)/2-(e.x-l),E=(u-d)/2-(e.y-d);if(ie(e)){let g=Ce(e,t);if(Y(g)){let x=U.getBoundTextElementPosition(g,e,t);f=(c-l)/2-(x.x-l),E=(u-d)/2-(x.y-d)}}o.save(),o.translate(p,m),Ll(e,r,s)&&(o.filter="none");let h=W(e,t);if(Y(e)&&h){let g=document.createElement("canvas"),x=g.getContext("2d"),y=Math.max(Qt(l,c),Qt(d,u)),b=xo(e);g.width=y*s.exportScale+b*10*s.exportScale,g.height=y*s.exportScale+b*10*s.exportScale,x.translate(g.width/2,g.height/2),x.scale(s.exportScale,s.exportScale),f=e.width/2-(e.x-l),E=e.height/2-(e.y-d),x.rotate(e.angle);let w=un.canvas(g);x.translate(-f,-E),Eo(e,w,x,r,s),x.translate(f,E),x.rotate(-e.angle);let[,,,,I,M]=_(h,t),D=(l+c)/2-I,T=(d+u)/2-M;x.translate(-D,-T),x.clearRect(-h.width/2,-h.height/2,h.width,h.height),o.scale(1/s.exportScale,1/s.exportScale),o.drawImage(g,-g.width/2,-g.height/2,g.width,g.height)}else o.rotate(e.angle),e.type==="image"&&o.scale(e.scale[0],e.scale[1]),o.translate(-f,-E),Eo(e,i,o,r,s);o.restore()}else{let l=Tl(e,n,r,s);if(!l)return;let d=o.imageSmoothingEnabled;if(!s?.shouldCacheIgnoreZoom&&(!e.angle||Hm(e.angle))&&(o.imageSmoothingEnabled=!1),e.id===s.croppingElementId&&we(l.element)&&l.element.crop!==null){o.save(),o.globalAlpha=.1;let c=Cl(Js(l.element,t),n,s.zoom,r,s);c&&Hr(c,o,r,s,n),o.restore()}Hr(l,o,r,s,n),o.imageSmoothingEnabled=d}break}default:throw new Error(`Unimplemented type ${e.type}`)}o.globalAlpha=1},kl=new WeakMap([]);function Ol(e){let t=qm(e),n=new Path2D(t);return kl.set(e,n),n}function Zm(e){return kl.get(e)}function qm(e){let t=e.simulatePressure?e.points:e.points.length?e.points.map(([i,o],r)=>[i,o,e.pressures[r]]):[[0,0,.5]],n={simulatePressure:e.simulatePressure,size:e.strokeWidth*4.25,thinning:.6,smoothing:.5,streamline:.5,easing:i=>Math.sin(i*Math.PI/2),last:!!e.lastCommittedPoint};return Qm($s(t,n))}function Al(e,t){return[(e[0]+t[0])/2,(e[1]+t[1])/2]}var Km=/(\s?[A-Z]?,?-?[0-9]*\.[0-9]{0,2})(([0-9]|e|-)*)/g;function Qm(e){if(!e.length)return"";let t=e.length-1;return e.reduce((n,i,o,r)=>(o===t?n.push(i,Al(i,r[0]),"L",r[0],"Z"):n.push(i,Al(i,r[o+1])),n),["M",e[0],"Q"]).join(" ").replace(Km,"$1")}P();var t0=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="ellipse"||e==="diamond"||e==="line"||e==="freedraw",n0=e=>e!=="image"&&e!=="frame"&&e!=="magicframe",i0=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="ellipse"||e==="diamond"||e==="freedraw"||e==="arrow"||e==="line",o0=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="ellipse"||e==="diamond"||e==="arrow"||e==="line",Rl=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="line"||e==="diamond"||e==="image",r0=e=>e==="arrow",s0=e=>e==="arrow";var Pe=class e{static rg=new je;static cache=new WeakMap;static get=t=>e.cache.get(t);static set=(t,n)=>e.cache.set(t,n);static delete=t=>e.cache.delete(t);static destroy=()=>{e.cache=new WeakMap};static generateElementShape=(t,n)=>{let i=n?.isExporting?void 0:e.get(t);if(i!==void 0)return i;go.delete(t);let o=sf(t,e.rg,n||{isExporting:!1,canvasBackgroundColor:tf.white,embedsValidationStatus:null});return e.cache.set(t,o),o}},of=e=>[8,8+e],zl=e=>[1.5,6+e];function rf(e){let t=e.roughness,n=Math.max(e.width,e.height),i=Math.min(e.width,e.height);return i>=20&&n>=50||i>=15&&e.roundness&&Rl(e.type)||j(e)&&n>=50?t:Math.min(t/(n<10?3:2),2.5)}var Re=(e,t=!1)=>{let n={seed:e.seed,strokeLineDash:e.strokeStyle==="dashed"?of(e.strokeWidth):e.strokeStyle==="dotted"?zl(e.strokeWidth):void 0,disableMultiStroke:e.strokeStyle!=="solid",strokeWidth:e.strokeStyle!=="solid"?e.strokeWidth+.5:e.strokeWidth,fillWeight:e.strokeWidth/2,hachureGap:e.strokeWidth*4,roughness:rf(e),stroke:e.strokeColor,preserveVertices:t||e.roughness<Jm.cartoonist};switch(e.type){case"rectangle":case"iframe":case"embeddable":case"diamond":case"ellipse":return n.fillStyle=e.fillStyle,n.fill=li(e.backgroundColor)?void 0:e.backgroundColor,e.type==="ellipse"&&(n.curveFitting=1),n;case"line":case"freedraw":return pn(e.points)&&(n.fillStyle=e.fillStyle,n.fill=e.backgroundColor==="transparent"?void 0:e.backgroundColor),n;case"arrow":return n;default:throw new Error(`Unimplemented type ${e.type}`)}},Nl=(e,t,n)=>Oi(e)&&(t||oa(e)&&n?.get(e.id)!==!0)&&li(e.backgroundColor)&&li(e.strokeColor)?{...e,roughness:0,backgroundColor:"#d3d3d3",fillStyle:"solid"}:ki(e)?{...e,strokeColor:li(e.strokeColor)?"#000000":e.strokeColor,backgroundColor:li(e.backgroundColor)?"#f4f4f6":e.backgroundColor}:e,Hl=(e,t,n,i,o,r,s)=>{let a=_r(e,t,n,i);if(a===null)return[];let l=(d,c)=>{if(d===null)return[];let[,,u,p,m,f]=d;return[o.line(u,p,m,f,c)]};switch(i){case"dot":case"circle":case"circle_outline":{let[d,c,u]=a;return delete r.strokeLineDash,[o.circle(d,c,u,{...r,fill:i==="circle_outline"?s:e.strokeColor,fillStyle:"solid",stroke:e.strokeColor,roughness:Math.min(.5,r.roughness||0)})]}case"triangle":case"triangle_outline":{let[d,c,u,p,m,f]=a;return delete r.strokeLineDash,[o.polygon([[d,c],[u,p],[m,f],[d,c]],{...r,fill:i==="triangle_outline"?s:e.strokeColor,fillStyle:"solid",roughness:Math.min(1,r.roughness||0)})]}case"diamond":case"diamond_outline":{let[d,c,u,p,m,f,E,h]=a;return delete r.strokeLineDash,[o.polygon([[d,c],[u,p],[m,f],[E,h],[d,c]],{...r,fill:i==="diamond_outline"?s:e.strokeColor,fillStyle:"solid",roughness:Math.min(1,r.roughness||0)})]}case"crowfoot_one":return l(a,r);case"bar":case"arrow":case"crowfoot_many":case"crowfoot_one_or_many":default:{let[d,c,u,p,m,f]=a;if(e.strokeStyle==="dotted"){let E=zl(e.strokeWidth-1);r.strokeLineDash=[E[0],E[1]-1]}else delete r.strokeLineDash;return r.roughness=Math.min(1,r.roughness||0),[o.line(u,p,d,c,r),o.line(m,f,d,c,r),...i==="crowfoot_one_or_many"?l(_r(e,t,n,"crowfoot_one"),r):[]]}}},na=e=>{let t=new je,n={seed:e.seed,disableMultiStroke:!0,disableMultiStrokeFill:!0,roughness:0,preserveVertices:!0},i=dt(e.points.reduce((o,r)=>[Math.min(e.x+r[0],o[0]),Math.min(e.y+r[1],o[1]),Math.max(e.x+r[0],o[2]),Math.max(e.y+r[1],o[3])],[1/0,1/0,-1/0,-1/0]));switch(e.type){case"line":case"arrow":{let o=e.points.length?e.points:[de(0,0)];return G(e)?t.path(_l(o,16),n).sets[0].ops:e.roundness?t.curve(o,n).sets[0].ops.slice(0,e.points.length).map((r,s)=>{if(s===0){let a=Lt(de(e.x+r.data[0],e.y+r.data[1]),i,e.angle);return{op:"move",data:de(a[0]-e.x,a[1]-e.y)}}return{op:"bcurveTo",data:[Lt(de(e.x+r.data[0],e.y+r.data[1]),i,e.angle),Lt(de(e.x+r.data[2],e.y+r.data[3]),i,e.angle),Lt(de(e.x+r.data[4],e.y+r.data[5]),i,e.angle)].map(a=>de(a[0]-e.x,a[1]-e.y)).flat()}}):o.map((r,s)=>{let a=Lt(de(e.x+r[0],e.y+r[1]),i,e.angle);return{op:s===0?"move":"lineTo",data:de(a[0]-e.x,a[1]-e.y)}})}case"freedraw":{if(e.points.length<2)return[];let o=jn(e.points,.75);return t.curve(o,n).sets[0].ops.slice(0,e.points.length).map((r,s)=>{if(s===0){let a=Lt(de(e.x+r.data[0],e.y+r.data[1]),i,e.angle);return{op:"move",data:de(a[0]-e.x,a[1]-e.y)}}return{op:"bcurveTo",data:[Lt(de(e.x+r.data[0],e.y+r.data[1]),i,e.angle),Lt(de(e.x+r.data[2],e.y+r.data[3]),i,e.angle),Lt(de(e.x+r.data[4],e.y+r.data[5]),i,e.angle)].map(a=>de(a[0]-e.x,a[1]-e.y)).flat()}})}}},sf=(e,t,{isExporting:n,canvasBackgroundColor:i,embedsValidationStatus:o})=>{switch(e.type){case"rectangle":case"iframe":case"embeddable":{let r;if(e.roundness){let s=e.width,a=e.height,l=yt(Math.min(s,a),e);r=t.path(`M ${l} 0 L ${s-l} 0 Q ${s} 0, ${s} ${l} L ${s} ${a-l} Q ${s} ${a}, ${s-l} ${a} L ${l} ${a} Q 0 ${a}, 0 ${a-l} L 0 ${l} Q 0 0, ${l} 0`,Re(Nl(e,n,o),!0))}else r=t.rectangle(0,0,e.width,e.height,Re(Nl(e,n,o),!1));return r}case"diamond":{let r,[s,a,l,d,c,u,p,m]=Gi(e);if(e.roundness){let f=yt(Math.abs(s-p),e),E=yt(Math.abs(d-a),e);r=t.path(`M ${s+f} ${a+E} L ${l-f} ${d-E}
|
|
12
|
-
C ${l} ${d}, ${l} ${d}, ${l-f} ${d+E}
|
|
13
|
-
L ${c+f} ${u-E}
|
|
14
|
-
C ${c} ${u}, ${c} ${u}, ${c-f} ${u-E}
|
|
15
|
-
L ${p+f} ${m+E}
|
|
16
|
-
C ${p} ${m}, ${p} ${m}, ${p+f} ${m-E}
|
|
17
|
-
L ${s-f} ${a+E}
|
|
18
|
-
C ${s} ${a}, ${s} ${a}, ${s+f} ${a+E}`,Re(e,!0))}else r=t.polygon([[s,a],[l,d],[c,u],[p,m]],Re(e));return r}case"ellipse":return t.ellipse(e.width/2,e.height/2,e.width,e.height,Re(e));case"line":case"arrow":{let r,s=Re(e),a=e.points.length?e.points:[de(0,0)];if(G(e)?a.every(l=>Math.abs(l[0])<=1e6&&Math.abs(l[1])<=1e6)?r=[t.path(_l(a,16),Re(e,!0))]:(console.error("Elbow arrow with extreme point positions detected. Arrow not rendered.",e.id,JSON.stringify(a)),r=[]):e.roundness?r=[t.curve(a,s)]:s.fill?r=[t.polygon(a,s)]:r=[t.linearPath(a,s)],e.type==="arrow"){let{startArrowhead:l=null,endArrowhead:d="arrow"}=e;if(l!==null){let c=Hl(e,r,"start",l,t,s,i);r.push(...c)}if(d!==null){let c=Hl(e,r,"end",d,t,s,i);r.push(...c)}}return r}case"freedraw":{let r;if(Ol(e),pn(e.points)){let s=jn(e.points,.75);r=t.curve(s,{...Re(e),stroke:"none"})}else r=null;return r}case"frame":case"magicframe":case"text":case"image":return null;default:return ef(e,`generateElementShape(): Unimplemented type ${e?.type}`),null}},_l=(e,t)=>{let n=[];for(let o=1;o<e.length-1;o+=1){let r=e[o-1],s=e[o+1],a=e[o],l=tt(a,r),d=tt(s,a),c=Math.min(t,Fl(e[o],s)/2,Fl(e[o],r)/2);l?r[0]<a[0]?n.push([e[o][0]-c,e[o][1]]):n.push([e[o][0]+c,e[o][1]]):r[1]<a[1]?n.push([e[o][0],e[o][1]-c]):n.push([e[o][0],e[o][1]+c]),n.push(e[o]),d?s[0]<a[0]?n.push([e[o][0]-c,e[o][1]]):n.push([e[o][0]+c,e[o][1]]):s[1]<a[1]?n.push([e[o][0],e[o][1]-c]):n.push([e[o][0],e[o][1]+c])}let i=[`M ${e[0][0]} ${e[0][1]}`];for(let o=0;o<n.length;o+=3)i.push(`L ${n[o][0]} ${n[o][1]}`),i.push(`Q ${n[o+1][0]} ${n[o+1][1]}, ${n[o+2][0]} ${n[o+2][1]}`);return i.push(`L ${e[e.length-1][0]} ${e[e.length-1][1]}`),i.join(" ")},Yl=(e,t)=>{switch(e.type){case"rectangle":case"diamond":case"frame":case"magicframe":case"embeddable":case"image":case"iframe":case"text":case"selection":return Fs(e);case"arrow":case"line":{let n=Pe.get(e)?.[0]??Pe.generateElementShape(e,null)[0],[,,,,i,o]=_(e,t);return ji(e)?_s(e,n,de(e.x,e.y),e.angle,de(i,o)):Hs(n,de(e.x,e.y),e.angle,de(i,o))}case"ellipse":return Ns(e);case"freedraw":{let[,,,,n,i]=_(e,t);return zs(e,de(n,i),ji(e))}}},il=(e,t)=>{let n=[...e.points];if(t){if(!da(e.points))return null;let o=n[0],r=n[n.length-1];Math.hypot(o[0]-r[0],o[1]-r[1])>nf||n.length<4?n.push(de(o[0],o[1])):n[n.length-1]=de(o[0],o[1])}return{polygon:t,points:n}};var Xr=class e{static boundsCache=new WeakMap;static nonRotatedBoundsCache=new WeakMap;static getBounds(t,n,i=!1){let o=i&&t.angle!==0?e.nonRotatedBoundsCache.get(t):e.boundsCache.get(t);if(o?.version&&o.version===t.version&&!ce(t))return o.bounds;if(i&&t.angle!==0){let s=e.calculateBounds({...t,angle:0},n);return e.nonRotatedBoundsCache.set(t,{version:t.version,bounds:s}),s}let r=e.calculateBounds(t,n);return e.boundsCache.set(t,{version:t.version,bounds:r}),r}static calculateBounds(t,n){let i,[o,r,s,a,l,d]=_(t,n);if(Me(t)){let[c,u,p,m]=jr(t.points.map(([f,E])=>se(v(f,E),v(l-t.x,d-t.y),t.angle)));return[c+t.x,u+t.y,p+t.x,m+t.y]}else if(j(t))i=hf(t,l,d,n);else if(t.type==="diamond"){let[c,u]=se(v(l,r),v(l,d),t.angle),[p,m]=se(v(l,a),v(l,d),t.angle),[f,E]=se(v(o,d),v(l,d),t.angle),[h,g]=se(v(s,d),v(l,d),t.angle),x=Math.min(c,p,f,h),y=Math.min(u,m,E,g),b=Math.max(c,p,f,h),w=Math.max(u,m,E,g);i=[x,y,b,w]}else if(t.type==="ellipse"){let c=(s-o)/2,u=(a-r)/2,p=Math.cos(t.angle),m=Math.sin(t.angle),f=Math.hypot(c*p,u*m),E=Math.hypot(u*p,c*m);i=[l-f,d-E,l+f,d+E]}else{let[c,u]=se(v(o,r),v(l,d),t.angle),[p,m]=se(v(o,a),v(l,d),t.angle),[f,E]=se(v(s,a),v(l,d),t.angle),[h,g]=se(v(s,r),v(l,d),t.angle),x=Math.min(c,p,f,h),y=Math.min(u,m,E,g),b=Math.max(c,p,f,h),w=Math.max(u,m,E,g);i=[x,y,b,w]}return i}},_=(e,t,n=!1)=>{if(Me(e))return uf(e);if(j(e))return U.getElementAbsoluteCoords(e,t,n);if(ie(e)){let i=t?Ce(e,t):null;if(Y(i)){let{x:o,y:r}=U.getBoundTextElementPosition(i,e,t);return[o,r,o+e.width,r+e.height,o+e.width/2,r+e.height/2]}}return[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2]},Fr=(e,t)=>{let n=Yl(e,t),[i,o,r,s,a,l]=_(e,t),d=v(a,l);if(n.type==="polycurve"){let g=n.data.map(b=>Et(b,10)).flat(),x=0,y=[];for(;x<g.length-1;)y.push(ge(v(g[x][0],g[x][1]),v(g[x+1][0],g[x+1][1]))),x++;return y}else{if(n.type==="polyline")return n.data;if(df(e)){let[h,g]=Pn(e),x=g.map(b=>jl(b,d,e.angle)).flat();return[...Xl(h,d,e.angle),...x]}else if(e.type==="diamond"){let[h,g]=In(e),x=g.map(b=>jl(b,d,e.angle)).flat();return[...Xl(h,d,e.angle),...x]}else if(n.type==="polygon"){if(ie(e)){let x=Ce(e,t);if(x&&j(x))return[ge(v(i,o),v(r,o)),ge(v(r,o),v(r,s)),ge(v(r,s),v(i,s)),ge(v(i,s),v(i,o))]}let h=n.data,g=[];for(let x=0;x<h.length-1;x++)g.push(ge(h[x],h[x+1]));return g}else if(n.type==="ellipse")return cf(e)}let[c,u,p,m,,,f,E]=[[i,o],[r,o],[i,s],[r,s],[a,o],[a,s],[i,l],[r,l]].map(h=>se(h,d,e.angle));return[ge(c,u),ge(p,m),ge(c,p),ge(u,m),ge(c,E),ge(p,E),ge(u,f),ge(m,f)]},df=e=>e!=null&&(e.type==="rectangle"||e.type==="image"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="text"&&!e.containerId),Xl=(e,t,n)=>e.map(i=>ge(se(i[0],t,n),se(i[1],t,n))),jl=(e,t,n)=>{let i=Et(e,10),o=0,r=[];for(;o<i.length-1;)r.push(ge(se(v(i[o][0],i[o][1]),t,n),se(v(i[o+1][0],i[o+1][1]),t,n))),o++;return r},cf=e=>{let t=v(e.x+e.width/2,e.y+e.height/2),n=e.width/2,i=e.height/2,o=[],r=[],s=90,a=Math.PI*2/s;for(let l=0;l<s;l++){let d=l*a,c=t[0]+n*Math.cos(d),u=t[1]+i*Math.sin(d);r.push(se(v(c,u),t,e.angle))}for(let l=0;l<r.length-1;l++)o.push(ge(r[l],r[l+1]));return o.push(ge(r[r.length-1],r[0])),o},R0=e=>[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2],Gi=e=>{let t=Math.floor(e.width/2)+1,n=0,i=e.width,o=Math.floor(e.height/2)+1,r=t,s=e.height;return[t,n,i,o,r,s,0,o]},Wl=(e,t,n,i,o)=>{let r=1-e;return Math.pow(r,3)*t+3*Math.pow(r,2)*e*n+3*r*Math.pow(e,2)*i+Math.pow(e,3)*o},Vl=(e,t,n,i)=>{let o=t-e,r=n-t,s=i-n,a=3*o-6*r+3*s,l=6*r-6*o,d=3*o,c=l*l-4*a*d;if(!(c>=0))return!1;let p=null,m=null,f=1/0,E=1/0;return a===0?f=E=-d/l:(f=(-l+Math.sqrt(c))/(2*a),E=(-l-Math.sqrt(c))/(2*a)),f>=0&&f<=1&&(p=Wl(f,e,t,n,i)),E>=0&&E<=1&&(m=Wl(E,e,t,n,i)),[p,m]},Wi=(e,t,n,i)=>{let o=Vl(e[0],t[0],n[0],i[0]),r=Vl(e[1],t[1],n[1],i[1]),s=Math.min(e[0],i[0]),a=Math.max(e[0],i[0]);if(o){let c=o.filter(u=>u!==null);s=Math.min(s,...c),a=Math.max(a,...c)}let l=Math.min(e[1],i[1]),d=Math.max(e[1],i[1]);if(r){let c=r.filter(u=>u!==null);l=Math.min(l,...c),d=Math.max(d,...c)}return[s,l,a,d]},ai=(e,t)=>{let n=v(0,0),{minX:i,minY:o,maxX:r,maxY:s}=e.reduce((a,{op:l,data:d})=>{if(l==="move"){let c=Zl(d);Ur(c!=null,"Op data is not a point"),n=c}else if(l==="bcurveTo"){let c=v(d[0],d[1]),u=v(d[2],d[3]),p=v(d[4],d[5]),m=t?t(c):c,f=t?t(u):u,E=t?t(p):p,h=t?t(n):n;n=p;let[g,x,y,b]=Wi(h,m,f,E);a.minX=Math.min(a.minX,g),a.minY=Math.min(a.minY,x),a.maxX=Math.max(a.maxX,y),a.maxY=Math.max(a.maxY,b)}return a},{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});return[i,o,r,s]},jr=e=>{let t=1/0,n=1/0,i=-1/0,o=-1/0;for(let[r,s]of e)t=Math.min(t,r),n=Math.min(n,s),i=Math.max(i,r),o=Math.max(o,s);return[t,n,i,o]},uf=e=>{let[t,n,i,o]=jr(e.points),r=t+e.x,s=n+e.y,a=i+e.x,l=o+e.y;return[r,s,a,l,(r+a)/2,(s+l)/2]},pf=e=>{switch(e){case"arrow":return 25;case"diamond":case"diamond_outline":return 12;case"crowfoot_many":case"crowfoot_one":case"crowfoot_one_or_many":return 20;default:return 15}},mf=e=>{switch(e){case"bar":return 90;case"arrow":return 20;default:return 25}},_r=(e,t,n,i)=>{if(t.length<1)return null;let o=gt(t[0]);if(o.length<1)return null;let r=n==="start"?1:o.length-1,s=o[r].data;Ur(s.length===6,"Op data length is not 6");let a=v(s[4],s[5]),l=v(s[2],s[3]),d=v(s[0],s[1]),c=o[r-1],u=v(0,0);if(c.op==="move"){let H=Zl(c.data);Ur(H!=null,"Op data is not a point"),u=H}else c.op==="bcurveTo"&&(u=v(c.data[4],c.data[5]));let p=(H,te)=>Math.pow(1-H,3)*a[te]+3*H*Math.pow(1-H,2)*l[te]+3*Math.pow(H,2)*(1-H)*d[te]+u[te]*Math.pow(H,3),[m,f]=n==="start"?u:a,[E,h]=[p(.3,0),p(.3,1)],g=Math.hypot(m-E,f-h),x=(m-E)/g,y=(f-h)/g,b=pf(i),w=0;{let[H,te]=n==="end"?e.points[e.points.length-1]:e.points[0],[S,Q]=e.points.length>1?n==="end"?e.points[e.points.length-2]:e.points[1]:[0,0];w=Math.hypot(H-S,te-Q)}let M=Math.min(b,w*(i==="diamond"||i==="diamond_outline"?.25:.5)),D=m-x*M,T=f-y*M;if(i==="dot"||i==="circle"||i==="circle_outline"){let H=Math.hypot(T-f,D-m)+e.strokeWidth-2;return[m,f,H]}let N=mf(i);if(i==="crowfoot_many"||i==="crowfoot_one_or_many"){let[H,te]=se(v(m,f),v(D,T),Yr(-N)),[S,Q]=se(v(m,f),v(D,T),Yr(N));return[D,T,H,te,S,Q]}let[C,R]=se(v(D,T),v(m,f),-N*Math.PI/180),[L,V]=se(v(D,T),v(m,f),Yr(N));if(i==="diamond"||i==="diamond_outline"){let H,te;if(n==="start"){let[S,Q]=e.points.length>1?e.points[1]:[0,0];[H,te]=se(v(m+M*2,f),v(m,f),Math.atan2(Q-f,S-m))}else{let[S,Q]=e.points.length>1?e.points[e.points.length-2]:[0,0];[H,te]=se(v(m-M*2,f),v(m,f),Math.atan2(f-Q,m-S))}return[m,f,C,R,H,te,L,V]}return[m,f,C,R,L,V]},ff=e=>{let t=un.generator(),n=Re(e),i=e.roundness?"curve":n.fill?"polygon":"linearPath";return t[i](e.points,n)},hf=(e,t,n,i)=>{let o=W(e,i);if(e.points.length<2){let[u,p]=e.points[0],[m,f]=se(v(e.x+u,e.y+p),v(t,n),e.angle),E=[m,f,m,f];if(o){let h=U.getMinMaxXYWithBoundText(e,i,[m,f,m,f],o);E=[h[0],h[1],h[2],h[3]]}return E}let s=Pe.get(e)?.[0]??ff(e),a=gt(s),d=ai(a,([u,p])=>se(v(e.x+u,e.y+p),v(t,n),e.angle)),c=[d[0],d[1],d[2],d[3]];if(o){let u=U.getMinMaxXYWithBoundText(e,i,c,o);c=[u[0],u[1],u[2],u[3]]}return c},he=(e,t,n=!1)=>Xr.getBounds(e,t,n),Xe=(e,t)=>{if(!af(e))return[0,0,0,0];let n=1/0,i=-1/0,o=1/0,r=-1/0,s=t||$l(e);return e.forEach(a=>{let[l,d,c,u]=he(a,s);n=Math.min(n,l),o=Math.min(o,d),i=Math.max(i,c),r=Math.max(r,u)}),[n,o,i,r]},F0=(e,t)=>{let[n,i,o,r]=Xe(e);return[n+t.x,i+t.y,o+t.x,r+t.y]},Nt=(e,t,n,i)=>{if(!(j(e)||Me(e)))return[e.x,e.y,e.x+t,e.y+n];let o=Ul(0,t,Ul(1,n,e.points,i),i),r;if(Me(e))r=jr(o);else{let c=un.generator(),u=e.roundness?c.curve(o,Re(e)):c.linearPath(o,Re(e)),p=gt(u);r=ai(p)}let[s,a,l,d]=r;return[s+e.x,a+e.y,l+e.x,d+e.y]},Cr=(e,t)=>{let n=un.generator(),i=e.roundness==null?n.linearPath(t,Re(e)):n.curve(t,Re(e)),o=gt(i),[r,s,a,l]=ai(o);return[r+e.x,s+e.y,a+e.x,l+e.y]},N0=(e,t)=>{if(!e.length)return[0,0,0,0];let n=1/0,i=e[0],o=$l(e);return e.forEach(r=>{let[s,a,l,d]=he(r,o),c=lf(v((s+l)/2,(a+d)/2),v(t.x,t.y));c<n&&(n=c,i=r)}),he(i,o)},Ct=e=>{let[t,n,i,o]=Xe(e);return{minX:t,minY:n,maxX:i,maxY:o,width:i-t,height:o-n,midX:(t+i)/2,midY:(n+o)/2}},H0=({scrollX:e,scrollY:t,width:n,height:i,zoom:o})=>[-e,-t,-e+n/o.value,-t+i/o.value],dt=e=>v(e[0]+(e[2]-e[0])/2,e[1]+(e[3]-e[1])/2),$e=(e,t,n)=>{let i={minX:e.x,minY:e.y,maxX:e.x+e.width,maxY:e.y+e.height,midX:e.x+e.width/2,midY:e.y+e.height/2},o=fe(e,t),[r,s]=se(v(i.minX,i.minY),o,e.angle),[a,l]=se(v(i.maxX,i.minY),o,e.angle),[d,c]=se(v(i.maxX,i.maxY),o,e.angle),[u,p]=se(v(i.minX,i.maxY),o,e.angle),m=[Math.min(r,a,d,u),Math.min(s,l,c,p),Math.max(r,a,d,u),Math.max(s,l,c,p)];if(n){let[f,E,h,g]=n;return[m[0]-g,m[1]-f,m[2]+E,m[3]+h]}return m},An=(e,t)=>e[0]>t[0]&&e[0]<t[2]&&e[1]>t[1]&&e[1]<t[3],En=(e,t)=>{if(e==null||t==null)return!1;let[n,i,o,r]=e,[s,a,l,d]=t;return n<l&&o>s&&i<d&&r>a},fe=(e,t,n=0,i=0)=>{let[o,r]=dt(he(e,t));return v(o+n,r+i)};var wf=.1,Kl=e=>j(e)||Me(e)?e.points.length<2||e.points.length===2&&Y(e)&&xf(e.points[0],e.points[e.points.length-1],wf):e.width===0&&e.height===0,bl=(e,t,n,i,o)=>{let[r,s,a,l]=he(e,o),d=wo({clientX:i.offsetLeft,clientY:i.offsetTop},i),c=wo({clientX:i.offsetLeft+t,clientY:i.offsetTop+n},i);return d.x<=a&&d.y<=l&&c.x>=r&&c.y>=s},V0=(e,t,n,i,o,r)=>{let[s,a,l,d]=Xe(e,o),c=wo({clientX:i.offsetLeft+(r?.left||0),clientY:i.offsetTop+(r?.top||0)},i),u=wo({clientX:i.offsetLeft+t-(r?.right||0),clientY:i.offsetTop+n-(r?.bottom||0)},i);return s>=c.x&&a>=c.y&&l<=u.x&&d<=u.y},Wr=(e,t,n)=>{let i=Math.abs(t),o=Math.abs(n);if(e==="line"||e==="arrow"||e==="freedraw"){let r=Math.round(Math.atan(o/i)/Bt)*Bt;r===0?n=0:r===Math.PI/2?t=0:n=i*Math.tan(r)*Math.sign(n)||n}else e!=="selection"&&(n=i*Math.sign(n));return{width:t,height:n}},ol=(e,t,n,i,o)=>{let r=n-e,s=i-t,a=Math.atan2(s,r),l=Math.round(a/Bt)*Bt;if(o){let d=Math.floor(o/Bt)*Bt;Ef(a,d,d+Bt)&&(gf(a,o)<Bt/6?l=o:ql(a)>ql(o)?l=d+Bt:l=d)}if(l===0)s=0;else if(l===Math.PI/2)r=0;else{let d=Math.tan(l),c=-1,u=t-d*e,p=-1/d,m=-1,f=i-p*n,E=(c*f-m*u)/(d*m-p*c),h=(u*p-f*d)/(d*m-p*c);r=E-e,s=h-t}return{width:r,height:s}},$0=e=>{let t={width:e.width,height:e.height,x:e.x,y:e.y};if(e.width<0){let n=Math.abs(e.width);t.width=n,t.x=e.x-n}if(e.height<0){let n=Math.abs(e.height);t.height=n,t.y=e.y-n}return t};P();var e1=(e,t,n,i)=>{let o=po(e,n.getNonDeletedElementsMap(),i),r=Ct(e);return o.flatMap(s=>{let a=yf(s,r,t);return s.map(l=>{let d=n.mutateElement(l,{x:l.x+a.x,y:l.y+a.y});return Ue(l,n,{simultaneouslyUpdated:s}),d})})},yf=(e,t,{axis:n,position:i})=>{let o=Ct(e),[r,s]=n==="x"?["minX","maxX"]:["minY","maxY"],a={x:0,y:0};return i==="start"?{...a,[n]:t[r]-o[r]}:i==="end"?{...a,[n]:t[s]-o[s]}:{...a,[n]:(t[r]+t[s])/2-(o[r]+o[s])/2}};P();import{arrayToMap as hh,arrayToObject as Gt,assertNever as Dd,isDevEnv as nn,isShallowEqual as vd,isTestEnv as on,randomInteger as Ad}from"@excalidraw/common";P();import{assertNever as Cf,COLOR_PALETTE as Bf,isDevEnv as Gf,isTestEnv as kf,randomId as Of,Emitter as ed,toIterable as kn}from"@excalidraw/common";P();import{ORIG_ID as Sf,randomId as Jl,randomInteger as Mf,arrayToMap as Tf,castArray as Vr,findLastIndex as di,getUpdatedTimestamp as Af,isTestEnv as Df}from"@excalidraw/common";P();import{arrayToMapWithIndex as bf}from"@excalidraw/common";var Pf=e=>{let t=e.slice(),n=new Set,i=r=>{let s=r[0]?.groupIds?.join(""),a=[r[0]],l=[];for(let d of r.slice(1))d.groupIds?.join("")===s?a.push(d):l.push(d);return l.length?[...a,...i(l)]:a},o=new Map;return t.forEach((r,s)=>{if(!o.has(r.id))if(r.groupIds?.length){let a=r.groupIds[r.groupIds.length-1],l=t.slice(s).filter(d=>{let c=d?.groupIds?.some(u=>u===a);return c&&o.set(d.id,!0),c});for(let d of i(l))n.add(d)}else n.add(r)}),n.size!==e.length?(console.error("normalizeGroupElementOrder: lost some elements... bailing!"),e):[...n]},If=e=>{let t=bf(e),n=e.slice(),i=new Set;return n.forEach((o,r)=>{o&&(o.boundElements?.length?(i.add(o),n[r]=null,o.boundElements.forEach(s=>{let a=t.get(s.id);a&&s.type==="text"&&(i.add(a[0]),n[a[1]]=null)})):o.type==="text"&&o.containerId&&t.get(o.containerId)?.[0].boundElements?.find(a=>a.id===o.id)||(i.add(o),n[r]=null))}),i.size!==e.length?(console.error("normalizeBoundElementsOrder: lost some elements... bailing!"),e):[...i]},Ql=e=>If(Pf(e));var vf=(e,t,n,i)=>{let o=Zr(n);return Df()&&Lf(o,n.id),o.id=Jl(),o.updated=Af(),i&&(o.seed=Mf(),Ra(o)),o.groupIds=wl(o.groupIds,e,r=>(t.has(r)||t.set(r,Jl()),t.get(r))),o},f1=e=>{let{elements:t}=e,n="appState"in e?e.appState:{editingGroupId:null,selectedGroupIds:{}},i=new Map,o=new Map,r=[],s=[],a=new Map,l=new Map,d=new Map,c=Tf(t),u=e.type==="in-place"?e.idsOfElementsToDuplicate:new Map(t.map(h=>[h.id,h]));if(e.type==="in-place")for(let h of Object.keys(e.appState.selectedGroupIds))t.filter(g=>g.groupIds?.includes(h)).forEach(g=>u.set(g.id,g));t=Ql(t);let p=t.slice(),m=h=>{let x=Vr(h).reduce((y,b)=>{if(i.has(b.id))return y;i.set(b.id,!0);let w=vf(n.editingGroupId,o,b,e.randomizeSeed);return i.set(w.id,!0),d.set(w.id,w),a.set(b.id,w.id),l.set(w.id,b),s.push(b),r.push(w),y.push(w),y},[]);return Array.isArray(h)?x:x[0]||null},f=(h,g)=>{if(g){if(h>p.length-1){p.push(...Vr(g));return}p.splice(h+1,0,...Vr(g))}},E=new Set(t.filter(h=>u.has(h.id)&&Z(h)).map(h=>h.id));for(let h of t){if(i.has(h.id)||!u.has(h.id))continue;let g=kr(n,h);if(g){let x=Ae(t,g).flatMap(b=>Z(b)?[...qt(t,b.id),b]:[b]),y=di(p,b=>b.groupIds?.includes(g));f(y,m(x));continue}if(!(h.frameId&&E.has(h.frameId))){if(Z(h)){let x=h.id,y=qt(t,x),b=di(p,w=>w.frameId===x||w.id===x);f(b,m([...y,h]));continue}if(st(h)){let x=W(h,c),y=di(p,b=>b.id===h.id||"containerId"in b&&b.containerId===h.id);x?f(y,m([h,x])):f(y,m(h));continue}if(ce(h)){let x=Ce(h,c),y=di(p,b=>b.id===h.id||b.id===x?.id);x?f(y,m([x,h])):f(y,m(h));continue}f(di(p,x=>x.id===h.id),m(h))}}if(Za(r,a,d),Pl(p,s,a),e.overrides)for(let h of r){let g=l.get(h.id);g&&Object.assign(h,e.overrides({duplicateElement:h,origElement:g,origIdToDuplicateId:a}))}return{duplicatedElements:r,duplicateElementsMap:d,elementsWithDuplicates:p,origIdToDuplicateId:a}},$r=(e,t=0)=>{if(e==null||typeof e!="object")return e;let n=Object.prototype.toString.call(e);if(n==="[object Object]"){let i=typeof e.constructor=="function"?Object.create(Object.getPrototypeOf(e)):{};for(let o in e)if(e.hasOwnProperty(o)){if(t===0&&(o==="shape"||o==="canvas"))continue;i[o]=$r(e[o],t+1)}return i}if(Array.isArray(e)){let i=e.length,o=new Array(i);for(;i--;)o[i]=$r(e[i],t+1);return o}return A.DEV&&n!=="[object Object]"&&n!=="[object Array]"&&n.startsWith("[object ")&&console.warn(`_deepCloneElement: unexpected object type ${n}. This value will not be cloned!`),e},Zr=e=>$r(e),Lf=(e,t)=>{Object.defineProperty(e,Sf,{value:t,writable:!1,enumerable:!1})};var Fe={IMMEDIATELY:"IMMEDIATELY",NEVER:"NEVER",EVENTUALLY:"EVENTUALLY"},td=class{constructor(t){this.app=t}onDurableIncrementEmitter=new ed;onStoreIncrementEmitter=new ed;scheduledMacroActions=new Set;scheduledMicroActions=[];_snapshot=tn.empty();get snapshot(){return this._snapshot}set snapshot(t){this._snapshot=t}scheduleAction(t){this.scheduledMacroActions.add(t),this.satisfiesScheduledActionsInvariant()}scheduleCapture(){this.scheduleAction(Fe.IMMEDIATELY)}scheduleMicroAction(t){let{action:n}=t,i;if("change"in t)i=t.change;else{let r=tn.create(this.app.scene.getElementsMapIncludingDeleted(),this.app.state),s=r.maybeClone(n,t.elements?od(t.elements):void 0,t.appState);i=ci.create(r,s)}let o="delta"in t?t.delta:void 0;this.scheduledMicroActions.push(()=>this.processAction({action:n,change:i,delta:o}))}commit(t,n){this.flushMicroActions();try{let i=this.getScheduledMacroAction();this.processAction({action:i,elements:t,appState:n})}finally{this.satisfiesScheduledActionsInvariant(),this.scheduledMacroActions=new Set}}clear(){this.snapshot=tn.empty(),this.scheduledMacroActions=new Set}emitDurableIncrement(t,n=void 0,i=void 0){let o=this.snapshot,r,s;if(n?r=n:r=ci.create(o,t),i?s=i:s=Qr.calculate(o,t),!s.isEmpty()){let a=new qr(r,s);this.onDurableIncrementEmitter.trigger(a),this.onStoreIncrementEmitter.trigger(a)}}emitEphemeralIncrement(t,n=void 0){let i;if(n)i=n;else{let r=this.snapshot;i=ci.create(r,t)}let o=new Kr(i);this.onStoreIncrementEmitter.trigger(o)}applyChangeToSnapshot(t){let n=this.snapshot,i=this.snapshot.applyChange(t);return n===i?null:i}maybeCloneSnapshot(t,n,i){if(!n&&!i)return null;let o=this.snapshot,r=this.snapshot.maybeClone(t,n,i);return o===r?null:r}flushMicroActions(){for(let t of this.scheduledMicroActions)try{t()}catch(n){console.error("Failed to execute scheduled micro action",n)}this.scheduledMicroActions=[]}processAction(t){let{action:n}=t;if(n===Fe.EVENTUALLY&&!this.onStoreIncrementEmitter.subscribers.length)return;let i;if("change"in t?i=this.applyChangeToSnapshot(t.change):i=this.maybeCloneSnapshot(n,t.elements,t.appState),!i)return;let o="change"in t?t.change:void 0,r="delta"in t?t.delta:void 0;try{switch(n){case Fe.IMMEDIATELY:this.emitDurableIncrement(i,o,r);break;case Fe.NEVER:case Fe.EVENTUALLY:this.emitEphemeralIncrement(i,o);break;default:Cf(n,"Unknown store action")}}finally{switch(n){case Fe.IMMEDIATELY:case Fe.NEVER:this.snapshot=i;break}}}getScheduledMacroAction(){let t;return this.scheduledMacroActions.has(Fe.IMMEDIATELY)?t=Fe.IMMEDIATELY:this.scheduledMacroActions.has(Fe.NEVER)?t=Fe.NEVER:t=Fe.EVENTUALLY,t}satisfiesScheduledActionsInvariant(){if(!(this.scheduledMacroActions.size>=0&&this.scheduledMacroActions.size<=Object.keys(Fe).length)){let t=`There can be at most three store actions scheduled at the same time, but there are "${this.scheduledMacroActions.size}".`;if(console.error(t,this.scheduledMacroActions.values()),kf()||Gf())throw new Error(t)}}},ci=class e{constructor(t,n){this.elements=t;this.appState=n}static create(t,n){let i=n.getChangedElements(t),o=n.getChangedAppState(t);return new e(i,o)}},yo=class{constructor(t,n){this.type=t;this.change=n}static isDurable(t){return t.type==="durable"}static isEphemeral(t){return t.type==="ephemeral"}},qr=class extends yo{constructor(n,i){super("durable",n);this.change=n;this.delta=i}},Kr=class extends yo{constructor(n){super("ephemeral",n);this.change=n}},Qr=class e{constructor(t,n,i){this.id=t;this.elements=n;this.appState=i}static create(t,n,i={id:Of()}){return new this(i.id,t,n)}static calculate(t,n){let i=n.metadata.didElementsChange?en.calculate(t.elements,n.elements):en.empty(),o=n.metadata.didAppStateChange?Jt.calculate(t.appState,n.appState):Jt.empty();return this.create(i,o)}static restore(t){let{id:n,elements:i,appState:o}=t;return new this(n,en.restore(i),Jt.restore(o))}static load({id:t,elements:{added:n,removed:i,updated:o},appState:{delta:r}}){let s=en.create(n,i,o),a=Jt.create(r);return new this(t,s,a)}static squash(...t){let n=e.empty();for(let i of t)n.elements.squash(i.elements),n.appState.squash(i.appState);return n}static inverse(t){return this.create(t.elements.inverse(),t.appState.inverse())}static applyTo(t,n,i,o){let[r,s]=t.elements.applyTo(n,tn.empty().elements,o),[a,l]=t.appState.applyTo(i,r);return[r,a,s||l]}static applyLatestChanges(t,n,i,o){return this.create(t.elements.applyLatestChanges(n,i,o),t.appState,{id:t.id})}static empty(){return e.create(en.empty(),Jt.empty())}isEmpty(){return this.elements.isEmpty()&&this.appState.isEmpty()}},tn=class e{constructor(t,n,i={didElementsChange:!1,didAppStateChange:!1,isEmpty:!1}){this.elements=t;this.appState=n;this.metadata=i}_lastChangedElementsHash=0;_lastChangedAppStateHash=0;static create(t,n,i={didElementsChange:!1,didAppStateChange:!1}){return new e(t,nd(n)?n:On(n),i)}static empty(){return new e(new Map,Rf(),{didElementsChange:!1,didAppStateChange:!1,isEmpty:!0})}getChangedElements(t){let n={};for(let i of kn(t.elements))this.elements.get(i.id)||(n[i.id]=Ee(i,{isDeleted:!0}));for(let i of kn(this.elements))t.elements.get(i.id)!==i&&(n[i.id]=i);return n}getChangedAppState(t){return F.getRightDifferences(t.appState,this.appState).reduce((n,i)=>Object.assign(n,{[i]:this.appState[i]}),{})}isEmpty(){return this.metadata.isEmpty}applyChange(t){let n=new Map(this.elements);for(let[o,r]of Object.entries(t.elements))n.set(o,r);let i=On({...this.appState,...t.appState});return e.create(n,i,{didElementsChange:Object.keys(t.elements).length>0,didAppStateChange:Object.keys(t.appState).length>0})}maybeClone(t,n,i){let o={shouldCompareHashes:!1};t===Fe.EVENTUALLY&&(o.shouldCompareHashes=!0);let r=this.maybeCreateElementsSnapshot(n,o),s=this.maybeCreateAppStateSnapshot(i,o),a=!1,l=!1;return this.elements!==r&&(a=!0),this.appState!==s&&(l=!0),!a&&!l?this:new e(r,s,{didElementsChange:a,didAppStateChange:l})}maybeCreateAppStateSnapshot(t,n={shouldCompareHashes:!1}){if(!t)return this.appState;let i=nd(t)?t:On(t);return this.detectChangedAppState(i,n)?i:this.appState}maybeCreateElementsSnapshot(t,n={shouldCompareHashes:!1}){if(!t)return this.elements;let i=this.detectChangedElements(t,n);return i?.size?this.createElementsSnapshot(i):this.elements}detectChangedAppState(t,n={shouldCompareHashes:!1}){if(this.appState===t)return;let i=F.isRightDifferent(this.appState,t);if(!i)return;let o=sd(JSON.stringify(t));if(!(n.shouldCompareHashes&&this._lastChangedAppStateHash===o))return this._lastChangedAppStateHash=o,i}detectChangedElements(t,n={shouldCompareHashes:!1}){if(this.elements===t)return;let i=new Map;for(let r of kn(this.elements))t.get(r.id)||i.set(r.id,Ee(r,{isDeleted:!0}));for(let r of kn(t)){let s=this.elements.get(r.id);if(!s||s.version<r.version){if(we(r)&&!Ht(r))continue;i.set(r.id,r)}}if(!i.size)return;let o=rd(i);if(!(n.shouldCompareHashes&&this._lastChangedElementsHash===o))return this._lastChangedElementsHash=o,i}createElementsSnapshot(t){let n=new Map;for(let i of kn(this.elements))n.set(i.id,i);for(let i of kn(t))n.set(i.id,Zr(i));return n}},id="__observedAppState",Rf=()=>({name:null,editingGroupId:null,viewBackgroundColor:Bf.white,selectedElementIds:{},selectedGroupIds:{},selectedLinearElement:null,croppingElementId:null,activeLockedId:null,lockedMultiSelections:{}}),On=e=>{let t={name:e.name,editingGroupId:e.editingGroupId,viewBackgroundColor:e.viewBackgroundColor,selectedElementIds:e.selectedElementIds,selectedGroupIds:e.selectedGroupIds,croppingElementId:e.croppingElementId,activeLockedId:e.activeLockedId,lockedMultiSelections:e.lockedMultiSelections,selectedLinearElement:e.selectedLinearElement?{elementId:e.selectedLinearElement.elementId,isEditing:!!e.selectedLinearElement.isEditing}:null};return Reflect.defineProperty(t,id,{value:!0,enumerable:!1}),t},nd=e=>!!Reflect.get(e,id);P();P();var dd="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";function Fn(e,t,n){let i=n[0];if(t!=null&&e>=t)throw new Error(e+" >= "+t);if(e.slice(-1)===i||t&&t.slice(-1)===i)throw new Error("trailing zero");if(t){let s=0;for(;(e[s]||i)===t[s];)s++;if(s>0)return t.slice(0,s)+Fn(e.slice(s),t.slice(s),n)}let o=e?n.indexOf(e[0]):0,r=t!=null?n.indexOf(t[0]):n.length;if(r-o>1){let s=Math.round(.5*(o+r));return n[s]}else return t&&t.length>1?t.slice(0,1):n[o]+Fn(e.slice(1),null,n)}function cd(e){if(e.length!==ud(e[0]))throw new Error("invalid integer part of order key: "+e)}function ud(e){if(e>="a"&&e<="z")return e.charCodeAt(0)-97+2;if(e>="A"&&e<="Z")return 90-e.charCodeAt(0)+2;throw new Error("invalid order key head: "+e)}function ui(e){let t=ud(e[0]);if(t>e.length)throw new Error("invalid order key: "+e);return e.slice(0,t)}function ad(e,t){if(e==="A"+t[0].repeat(26))throw new Error("invalid order key: "+e);let n=ui(e);if(e.slice(n.length).slice(-1)===t[0])throw new Error("invalid order key: "+e)}function ld(e,t){cd(e);let[n,...i]=e.split(""),o=!0;for(let r=i.length-1;o&&r>=0;r--){let s=t.indexOf(i[r])+1;s===t.length?i[r]=t[0]:(i[r]=t[s],o=!1)}if(o){if(n==="Z")return"a"+t[0];if(n==="z")return null;let r=String.fromCharCode(n.charCodeAt(0)+1);return r>"a"?i.push(t[0]):i.pop(),r+i.join("")}else return n+i.join("")}function Ff(e,t){cd(e);let[n,...i]=e.split(""),o=!0;for(let r=i.length-1;o&&r>=0;r--){let s=t.indexOf(i[r])-1;s===-1?i[r]=t.slice(-1):(i[r]=t[s],o=!1)}if(o){if(n==="a")return"Z"+t.slice(-1);if(n==="A")return null;let r=String.fromCharCode(n.charCodeAt(0)-1);return r<"Z"?i.push(t.slice(-1)):i.pop(),r+i.join("")}else return n+i.join("")}function Rn(e,t,n=dd){if(e!=null&&ad(e,n),t!=null&&ad(t,n),e!=null&&t!=null&&e>=t)throw new Error(e+" >= "+t);if(e==null){if(t==null)return"a"+n[0];let l=ui(t),d=t.slice(l.length);if(l==="A"+n[0].repeat(26))return l+Fn("",d,n);if(l<t)return l;let c=Ff(l,n);if(c==null)throw new Error("cannot decrement any more");return c}if(t==null){let l=ui(e),d=e.slice(l.length),c=ld(l,n);return c??l+Fn(d,null,n)}let i=ui(e),o=e.slice(i.length),r=ui(t),s=t.slice(r.length);if(i===r)return i+Fn(o,s,n);let a=ld(i,n);if(a==null)throw new Error("cannot increment any more");return a<t?a:i+Fn(o,null,n)}function bo(e,t,n,i=dd){if(n===0)return[];if(n===1)return[Rn(e,t,i)];if(t==null){let s=Rn(e,t,i),a=[s];for(let l=0;l<n-1;l++)s=Rn(s,t,i),a.push(s);return a}if(e==null){let s=Rn(e,t,i),a=[s];for(let l=0;l<n-1;l++)s=Rn(e,s,i),a.push(s);return a.reverse(),a}let o=Math.floor(n/2),r=Rn(e,t,i);return[...bo(e,r,o,i),r,...bo(r,t,n-o-1,i)]}import{arrayToMap as Po}from"@excalidraw/common";var Jr=class extends Error{code="ELEMENT_HAS_INVALID_INDEX"},Nf=(e,{shouldThrow:t=!1,includeBoundTextValidation:n=!1,ignoreLogs:i,reconciliationContext:o})=>{let r=[],s=l=>`${l?.index}:${l?.id}:${l?.type}:${l?.isDeleted}:${l?.version}:${l?.versionNonce}`,a=e.map(l=>l.index);for(let[l,d]of a.entries()){let c=a[l-1],u=a[l+1];if(es(d,c,u)||r.push(`Fractional indices invariant has been compromised: "${s(e[l-1])}", "${s(e[l])}", "${s(e[l+1])}"`),n&&st(e[l])){let p=e[l],m=W(p,Po(e));m&&m.index<=p.index&&r.push(`Fractional indices invariant for bound elements has been compromised: "${s(m)}", "${s(p)}"`)}}if(r.length){let l=new Jr,d=[];if(o&&(d.push("Additional reconciliation context:"),d.push(o.localElements.map(c=>s(c))),d.push(o.remoteElements.map(c=>s(c)))),i||console.error(r.join(`
|
|
10
|
+
`)=>e.reduce((i,o)=>(oe(o)&&i.push(o.text),i),[]).join(t);I();import{curvePointDistance as hs,distanceToLineSegment as gs,pointRotateRads as Es}from"@excalidraw/math";import{ellipse as zp,ellipseDistanceFromPoint as _p}from"@excalidraw/math/ellipse";var Ut=(e,t,n)=>{switch(e.type){case"selection":case"rectangle":case"image":case"text":case"iframe":case"embeddable":case"frame":case"magicframe":return Hp(e,t,n);case"diamond":return Wp(e,t,n);case"ellipse":return Up(e,t,n);case"line":case"arrow":case"freedraw":return Yp(e,t,n)}},Hp=(e,t,n)=>{let i=re(e,t),o=Es(n,i,-e.angle),[r,s]=yn(e);return Math.min(...r.map(a=>gs(o,a)),...s.map(a=>hs(a,o)))},Wp=(e,t,n)=>{let i=re(e,t),o=Es(n,i,-e.angle),[r,s]=Pn(e);return Math.min(...r.map(a=>gs(o,a)),...s.map(a=>hs(a,o)))},Up=(e,t,n)=>{let i=re(e,t);return _p(Es(n,i,-e.angle),zp(i,e.width/2,e.height/2))},Yp=(e,t,n)=>{let[i,o]=No(e,t);return Math.min(...i.map(r=>gs(n,r)),...o.map(r=>hs(r,n)))};I();var hi=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="ellipse"||e==="diamond"||e==="line"||e==="freedraw"||e==="autoshape"||e==="bucketfill",nP=e=>e==="rectangle"||e==="ellipse"||e==="diamond"||e==="freedraw"||e==="arrow"||e==="line"||e==="text"||e==="embeddable"||e==="autoshape",iP=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="ellipse"||e==="diamond"||e==="freedraw"||e==="arrow"||e==="line"||e==="autoshape",oP=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="ellipse"||e==="diamond"||e==="arrow"||e==="line"||e==="autoshape",rP=e=>e==="freedraw",$l=e=>e==="rectangle"||e==="iframe"||e==="embeddable"||e==="line"||e==="diamond"||e==="image",sP=e=>e==="arrow",aP=e=>e==="arrow";var Yo=e=>{if(e.type==="arrow")return!1;let t=hi(e.type)&&!Jl(e.backgroundColor)||_t(e)||Go(e)||oe(e);return e.type==="line"?t&&Tt(e.points):e.type==="freedraw"?t&&Tt(e.points):t||ke(e)},xs=null,Vl=null,bs=1/0,ws=!1,Zl=!1,Kl=null,qp=(e,t)=>e===t||!!e&&!!t&&e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height,Ht=({point:e,element:t,threshold:n,elementsMap:i,frameNameBound:o=null,overrideShouldTestInside:r=!1})=>{if(xs&&nd(e,xs)&&(ws?bs<=n:bs>=n)&&r===Zl&&qp(o,Kl)){let u=Vl?.deref();if(u&&u.id===t.id&&u.version===t.version&&u.versionNonce===t.versionNonce)return ws}let s=o?ys(De(o.x-n,o.y-n),e,De(o.x+o.width+n,o.y+o.height+n)):!1,a=ue(t,i,!0);if(!id(e,a,t.angle,n)&&!s)return!1;let c=(r||Yo(t))&&it(e,t,i)||ql(e,t,i,n)||s;return xs=e,Vl=new WeakRef(t),bs=n,Zl=r,Kl=o,ws=c,c},id=(e,t,n,i=0)=>{let o=n===0?e:ht(e,an(t),-n);return ys(De(t[0]-i,t[1]-i),o,De(t[2]+i,t[3]+i))},Qp=(e,t,n,i=0)=>{let o=ue(t,n,!0);return id(e,o,t.angle,i)},PP=(e,t)=>!Ht(e)&&!Jp(e.point,e.element,t)&&Qp(e.point,e.element,t),Jp=(e,t,n)=>{let i=de(t,n);if(!i)return!1;let o=K(t)?{...i,...R.getBoundTextElementPosition(t,i,n)}:i;return it(e,o,n)},od=(e,[t,n],i,o=0)=>{let r=De(t,n),s=!J(e),a=Math.max(1,o),l=[t-a,n-a,t+a,n+a],d=ue(e,i);if(!gt(l,d))return!1;if(e.frameId){let m=i.get(e.frameId);if(m&&J(m)){let p=ue(m,i);if(!Yt(r,p))return!1}}let c=ot(e,i,Qi(re(e,i),r)),u=Ut(e,i,r);return s?c.length===0||u<=o:c.length>0&&u<=a},Xo=(e,t,n,i)=>{let o=[];for(let r=t.length-1;r>=0;--r){let s=t[r];if(Ql(!s.isDeleted,"Elements in the function parameter for getAllElementsAtPositionForBinding() should not contain deleted elements"),we(s,!1)&&od(s,e,n,i)&&(o.push(s),hi(s.type)&&!Jl(s.backgroundColor)))break}return o},sn=(e,t,n,i)=>{let o=Xo(e,t,n,i);return!o||o.length===0?null:o.length===1?o[0]:o.sort((r,s)=>s.width**2+s.height**2-(r.width**2+r.height**2)).pop()},rd=(e,t,n,i,o)=>{let r=[];for(let a=n.length-1;a>=0;--a){let l=n[a];Ql(!l.isDeleted,"Elements in the function parameter for getAllElementsAtPositionForBinding() should not contain deleted elements"),we(l,!1)&&od(l,e,i,o)&&r.push(l)}if(!r||r.length===0)return null;if(r.length===1)return r[0];let s=r.filter(a=>Ut(a,i,e)<=ve(a,t)||it(e,a,i));return s.length===0?null:s[0]},ot=(e,t,n,i=0,o=!1)=>{let r=[Math.min(n[0][0]-i,n[1][0]-i),Math.min(n[0][1]-i,n[1][1]-i),Math.max(n[0][0]+i,n[1][0]+i),Math.max(n[0][1]+i,n[1][1]+i)],s=ue(e,t);if(!gt(r,s))return[];switch(e.type){case"rectangle":case"image":case"text":case"iframe":case"embeddable":case"frame":case"selection":case"magicframe":return tf(e,t,n,i,o);case"diamond":return nf(e,t,n,i,o);case"ellipse":return of(e,t,n,i);case"line":case"freedraw":case"arrow":return ef(e,n,t,o)}},sd=(e,t,n,i,o,r=!1)=>{for(let s of e){let a=jo(s[0],s[1],s[2],s[3]),l=[Math.min(t[0][0],t[1][0]),Math.min(t[0][1],t[1][1]),Math.max(t[0][0],t[1][0]),Math.max(t[0][1],t[1][1])];if(!gt(a,l))continue;let d=ed(s,t);if(d.length>0){for(let c of d)n.push(ht(c,i,o));if(r)return n}}return n},ad=(e,t,n,i,o,r=!1)=>{for(let s of e){let a=td(s,t);if(a&&(n.push(ht(a,i,o)),r))return n}return n},ef=(e,t,n,i=!1)=>{let[o,r]=No(e,n),s=[];for(let a of o){let l=td(a,t);if(l&&(s.push(l),i))return s}for(let a of r){let l=jo(a[0],a[1],a[2],a[3]),d=[Math.min(t[0][0],t[1][0]),Math.min(t[0][1],t[1][1]),Math.max(t[0][0],t[1][0]),Math.max(t[0][1],t[1][1])];if(!gt(l,d))continue;let c=ed(a,t,{iterLimit:10});if(c.length>0&&(s.push(...c),i))return s}return s},tf=(e,t,n,i=0,o=!1)=>{let r=re(e,t),s=ht(n[0],r,-e.angle),a=ht(n[1],r,-e.angle),l=Qi(s,a),[d,c]=yn(e,i),u=[];return ad(d,l,u,r,e.angle,o),o&&u.length>0||sd(c,l,u,r,e.angle,o),u},nf=(e,t,n,i=0,o=!1)=>{let r=re(e,t),s=ht(n[0],r,-e.angle),a=ht(n[1],r,-e.angle),l=Qi(s,a),[d,c]=Pn(e,i),u=[];return ad(d,l,u,r,e.angle,o),o&&u.length>0||sd(c,l,u,r,e.angle,o),u},of=(e,t,n,i=0)=>{let o=re(e,t),r=ht(n[0],o,-e.angle),s=ht(n[1],o,-e.angle);return Kp(Zp(o,e.width/2+i,e.height/2+i),Qi(r,s)).map(a=>ht(a,o,e.angle))},ql=(e,t,n,i=1)=>Ut(t,n,e)<=i,it=(e,t,n)=>{if((K(t)||be(t))&&!Tt(t.points))return!1;let[i,o,r,s]=ue(t,n);if(!ys(De(i,o),e,De(r,s)))return!1;let a=De((i+r)/2,(o+s)/2),l=Xp(Vp($p(jp(e,a,.1)),Math.max(t.width,t.height)*2),a),d=Qi(e,l);return ot(t,n,d).filter((u,m,p)=>p.findIndex(h=>nd(h,u))===m).length%2===1},Ps=(e,t,n)=>{let i=(s,a)=>{let{x:l,y:d,width:c,height:u,angle:m}=s,p=re(s,n);if(s.type==="diamond"){let[f,g,E,x,b,y,w,M]=pi(s);return[De(l+f,d+g-a),De(l+E+a,d+x),De(l+b,d+y+a),De(l+w-a,d+M)].map(T=>ht(T,p,m))}if(s.type==="ellipse"){let f=l+c/2,g=d+u/2,E=c/2,x=u/2;return[De(f,g-x-a),De(f+E+a,g),De(f,g+x+a),De(f-E-a,g)].map(y=>ht(y,p,m))}return[De(l-a,d-a),De(l+c+a,d-a),De(l+c+a,d+u+a),De(l-a,d+u+a)].map(f=>ht(f,p,m))},o=-1*Math.max(e.width,e.height)/20;return i(e,o).every(s=>it(s,t,n))};I();import{invariant as ld,isDevEnv as rf,isTestEnv as sf}from"@excalidraw/common";import{pointFrom as Sn,pointFromVector as $o,pointRotateRads as Vo,pointScaleFromOrigin as Zo,pointsEqual as af,triangleIncludesPoint as Is,vectorCross as rt,vectorFromPoint as se,vectorScale as Ko}from"@excalidraw/math";var he=[1,0],Be=[0,1],Ne=[-1,0],Ze=[0,-1],Xt=e=>{let[t,n]=e,i=Math.abs(t),o=Math.abs(n);return t>o?he:t<=-o?Ne:n>i?Be:Ze},st=(e,t)=>Xt(se(e,t)),Lt=(e,t)=>at(st(e,t)),fe=(e,t)=>e[0]===t[0]&&e[1]===t[1],at=e=>fe(e,he)||fe(e,Ne),DP=e=>!at(e),lf=(e,t,n)=>{let i=an(t);(rf()||sf())&&(ld(e.width>0&&e.height>0,"Diamond element has no width or height"),ld(!af(i,n),"The point is too close to the element mid point to determine heading"));let o=.95,r=$o(Ko(se(Vo(Sn(e.x+e.width/2,e.y),i,e.angle),i),o),i),s=$o(Ko(se(Vo(Sn(e.x+e.width,e.y+e.height/2),i,e.angle),i),o),i),a=$o(Ko(se(Vo(Sn(e.x+e.width/2,e.y+e.height),i,e.angle),i),o),i),l=$o(Ko(se(Vo(Sn(e.x,e.y+e.height/2),i,e.angle),i),o),i);if(rt(se(n,r),se(r,s))<=0&&rt(se(n,r),se(r,l))>0)return st(r,i);if(rt(se(n,s),se(s,a))<=0&&rt(se(n,s),se(s,r))>0)return st(s,i);if(rt(se(n,a),se(a,l))<=0&&rt(se(n,a),se(a,s))>0)return st(a,i);if(rt(se(n,l),se(l,r))<=0&&rt(se(n,l),se(l,a))>0)return st(l,i);if(rt(se(n,i),se(r,i))<=0&&rt(se(n,i),se(s,i))>0){let c=e.width>e.height?r:s;return st(c,i)}else if(rt(se(n,i),se(s,i))<=0&&rt(se(n,i),se(a,i))>0){let c=e.width>e.height?a:s;return st(c,i)}else if(rt(se(n,i),se(a,i))<=0&&rt(se(n,i),se(l,i))>0){let c=e.width>e.height?a:l;return st(c,i)}let d=e.width>e.height?r:l;return st(d,i)},gi=(e,t,n)=>{let o=an(t);if(e.type==="diamond")return lf(e,t,n);let r=Zo(Sn(t[0],t[1]),o,2),s=Zo(Sn(t[2],t[1]),o,2),a=Zo(Sn(t[0],t[3]),o,2),l=Zo(Sn(t[2],t[3]),o,2);return Is([r,s,o],n)?Ze:Is([s,l,o],n)?he:Is([l,a,o],n)?Be:Ne},Ss=e=>[e[0]===0?0:e[0]>0?-1:1,e[1]===0?0:e[1]>0?-1:1];I();import{getSizeFromPoints as Af,randomInteger as Os,getUpdatedTimestamp as Ns}from"@excalidraw/common";I();import{clamp as qo,pointDistance as Ts,pointFrom as V,pointScaleFromOrigin as df,pointsEqual as eo,pointTranslate as As,vector as jt,vectorCross as Qo,vectorFromPoint as Ds,vectorScale as cf}from"@excalidraw/math";import{BinaryHeap as uf,invariant as Ei,isAnyTrue as mf,getSizeFromPoints as dd,isDevEnv as pf,arrayToMap as ff}from"@excalidraw/common";var vs=1,ce=40,hf=(e,t)=>{let n=e.fixedSegments?e.fixedSegments.slice():null;if(n){let i=[];e.points.map(s=>V(e.x+s[0],e.y+s[1])).forEach((s,a,l)=>{if(a<2)return i.push(s);let d=st(s,l[a-1]),c=st(l[a-1],l[a-2]);if(fe(d,c)){let u=n?.findIndex(p=>p.index===a-1)??-1,m=n?.findIndex(p=>p.index===a)??-1;m!==-1&&(n[m].start=V(l[a-2][0]-e.x,l[a-2][1]-e.y)),u!==-1&&n.splice(u,1),i.splice(-1,1),n.forEach(p=>{p.index>a-1&&(p.index-=1)})}return i.push(s)});let o=[];i.forEach((s,a,l)=>{if(a<3)return o.push(s);if(Ts(l[a-2],l[a-1])<vs){let d=n?.findIndex(m=>m.index===a-2)??-1,c=n?.findIndex(m=>m.index===a-1)??-1;c!==-1&&n.splice(c,1),d!==-1&&n.splice(d,1),o.splice(-2,2),n.forEach(m=>{m.index>a-2&&(m.index-=2)});let u=Lt(s,l[a-1]);return o.push(V(u?s[0]:l[a-2][0],u?l[a-2][1]:s[1]))}o.push(s)});let r=n.filter(s=>s.index!==1&&s.index!==o.length-1);return r.length===0?ln(Cs(Gs(Ls(e,Bs(e,t,o.map(s=>V(s[0]-e.x,s[1]-e.y))))??[])),r,null,null):(pf()&&Ei(gd(o),"Invalid elbow points with fixed segments"),ln(o,r,e.startIsSpecial,e.endIsSpecial))}return{x:e.x,y:e.y,points:e.points,fixedSegments:e.fixedSegments,startIsSpecial:e.startIsSpecial,endIsSpecial:e.endIsSpecial}},gf=(e,t,n)=>{let i=t.map(A=>A.index),r=(e.fixedSegments?.map(A=>A.index)??[]).findIndex(A=>!i.includes(A));if(r===-1||!e.fixedSegments?.[r])return{points:e.points};let s=e.fixedSegments[r].index,a=e.fixedSegments[r-1],l=e.fixedSegments[r+1],d=e.x+(a?a.end[0]:0),c=e.y+(a?a.end[1]:0),u=a?null:e.startBinding,m=l?null:e.endBinding,{startHeading:p,endHeading:h,startGlobalPoint:f,endGlobalPoint:g,hoveredStartElement:E,hoveredEndElement:x,...b}=Bs({x:d,y:c,startBinding:u,endBinding:m,startArrowhead:null,endArrowhead:null,points:e.points},n,[V(0,0),V(e.x+(l?.start[0]??e.points[e.points.length-1][0])-d,e.y+(l?.start[1]??e.points[e.points.length-1][1])-c)],{isDragging:!1}),{points:y}=ln(Cs(Gs(Ls(e,{startHeading:p,endHeading:h,startGlobalPoint:f,endGlobalPoint:g,hoveredStartElement:E,hoveredEndElement:x,...b})??[])),t,null,null);if(!y||y.length<2)throw new Error("Property 'points' is required in the update returned by normalizeArrowElementUpdate()");let w=[];if(a)for(let A=0;A<a.index;A++)w.push(V(e.x+e.points[A][0],e.y+e.points[A][1]));if(y.forEach(A=>{w.push(V(e.x+(a?a.end[0]:0)+A[0],e.y+(a?a.end[1]:0)+A[1]))}),l)for(let A=l.index;A<e.points.length;A++)w.push(V(e.x+e.points[A][0],e.y+e.points[A][1]));let M=(l?.index??e.points.length)-(a?.index??0)-1,S=t.map(A=>A.index>s?{...A,index:A.index-M+(y.length-1)}:A),T=w.flatMap((A,F)=>{let B=w[F-1],k=w[F+1];if(B&&k){let G=st(A,B),_=st(k,A);if(fe(G,_))return S.forEach(W=>{W.index>F&&(W.index-=1)}),[];if(fe(G,Ss(_)))return S.forEach(W=>{W.index>F&&(W.index+=1)}),[A,A]}return[A]});return ln(T,S,!1,!1)},Ef=(e,t,n,i,o,r)=>{let s=t.map((w,M)=>e.fixedSegments==null||e.fixedSegments[M]===void 0||e.fixedSegments[M].index!==w.index||(w.start[0]!==e.fixedSegments[M].start[0]&&w.end[0]!==e.fixedSegments[M].end[0])!=(w.start[1]!==e.fixedSegments[M].start[1]&&w.end[1]!==e.fixedSegments[M].end[1])?M:null).filter(w=>w!==null).shift();if(s==null)return{points:e.points};let a=e.fixedSegments?.findIndex(w=>w.index===1)??-1,l=e.fixedSegments?.findIndex(w=>w.index===e.points.length-1)??-1,d=Ts(t[s].start,t[s].end),c=d<ce+5;if(a===-1&&t[s].index===1&&o){let w=at(n),S=(w?fe(n,he):fe(n,Be))?c?d/2:ce:c?-d/2:-ce;t[s].start=V(t[s].start[0]+(w?S:0),t[s].start[1]+(w?0:S))}if(l===-1&&t[s].index===e.points.length-1&&r){let w=at(i),S=(w?fe(i,he):fe(i,Be))?c?d/2:ce:c?-d/2:-ce;t[s].end=V(t[s].end[0]+(w?S:0),t[s].end[1]+(w?0:S))}let u=t.map(w=>({...w,start:V(e.x+w.start[0],e.y+w.start[1]),end:V(e.x+w.end[0],e.y+w.end[1])})),m=e.points.map((w,M)=>V(e.x+w[0],e.y+w[1])),p=u[s].index-1,h=u[s].index,f=u[s].start,g=u[s].end,E=m[p-1]&&!eo(m[p],m[p-1])?Lt(m[p-1],m[p]):void 0,x=m[h+1]&&!eo(m[h],m[h+1])?Lt(m[h+1],m[h]):void 0;if(E!==void 0){let w=E?1:0;m[p-1][w]=f[w]}if(m[p]=f,m[h]=g,x!==void 0){let w=x?1:0;m[h+1][w]=g[w]}let b=u.findIndex(w=>w.index===p);if(b!==-1){let w=Lt(u[b].end,u[b].start)?1:0;u[b].start[w]=f[w],u[b].end=f}let y=u.findIndex(w=>w.index===h+1);if(y!==-1){let w=Lt(u[y].end,u[y].start)?1:0;u[y].end[w]=g[w],u[y].start=g}if(a===-1&&p===0){let w=o?at(n):Lt(m[1],m[0]);m.unshift(V(w?f[0]:e.x+e.points[0][0],w?e.y+e.points[0][1]:f[1])),o&&m.unshift(V(e.x+e.points[0][0],e.y+e.points[0][1]));for(let M of u)M.index+=o?2:1}if(l===-1&&h===e.points.length-1){let w=at(i);m.push(V(w?g[0]:e.x+e.points[e.points.length-1][0],w?e.y+e.points[e.points.length-1][1]:g[1])),r&&m.push(V(e.x+e.points[e.points.length-1][0],e.y+e.points[e.points.length-1][1]))}return ln(m,u.map(w=>({...w,start:V(w.start[0]-e.x,w.start[1]-e.y),end:V(w.end[0]-e.x,w.end[1]-e.y)})),!1,!1)},xf=(e,t,n,i,o,r,s,a,l)=>{let d=e.startIsSpecial??null,c=e.endIsSpecial??null,u=t.map((g,E)=>E===0?V(e.x+g[0],e.y+g[1]):E===t.length-1?V(e.x+g[0],e.y+g[1]):V(e.x+e.points[E][0],e.y+e.points[E][1])),m=n.map(g=>({...g,start:V(e.x+(g.start[0]-t[0][0]),e.y+(g.start[1]-t[0][1])),end:V(e.x+(g.end[0]-t[0][0]),e.y+(g.end[1]-t[0][1]))})),p=[],h=2+(d?1:0),f=2+(c?1:0);for(;p.length+h<u.length-f;)p.push(u[p.length+h]);{let g=u.at(d?2:1),E=u.at(d?3:2);if(!g||!E)throw new Error(`Second and third points must exist when handling endpoint drag (${d})`);let x=at(i),b=at(Xt(Ds(g,E)));if(a&&x===b){let y=x?fe(i,he):fe(i,Be);if(p.unshift(V(b?r[0]+(y?ce:-ce):E[0],b?E[1]:r[1]+(y?ce:-ce))),p.unshift(V(x?r[0]+(y?ce:-ce):r[0],x?r[1]:r[1]+(y?ce:-ce))),!d){d=!0;for(let w of m)w.index>1&&(w.index+=1)}}else if(p.unshift(V(b?r[0]:g[0],b?g[1]:r[1])),d){d=!1;for(let y of m)y.index>1&&(y.index-=1)}p.unshift(r)}{let g=u.at(u.length-(c?3:2)),E=u.at(u.length-(c?4:3));if(!g||!E)throw new Error(`Second and third to last points must exist when handling endpoint drag (${c})`);let x=at(o),b=Lt(E,g);if(l&&x===b){let y=x?fe(o,he):fe(o,Be);p.push(V(b?s[0]+(y?ce:-ce):E[0],b?E[1]:s[1]+(y?ce:-ce))),p.push(V(x?s[0]+(y?ce:-ce):s[0],x?s[1]:s[1]+(y?ce:-ce))),c||(c=!0)}else p.push(V(b?s[0]:g[0],b?g[1]:s[1])),c&&(c=!1)}return p.push(s),ln(p,m.map(({index:g})=>({index:g,start:p[g-1],end:p[g]})).map(g=>({...g,start:V(g.start[0]-r[0],g.start[1]-r[1]),end:V(g.end[0]-r[0],g.end[1]-r[1])})),d,c)},Mn=1e6,xi=(e,t,n,i)=>{if(e.points.length<2)return{points:n.points??e.points};N.PROD||(Ei(!n.points||n.points.length>=2,"Updated point array length must match the arrow point length, contain exactly the new start and end points or not be specified at all (i.e. you can't add new points between start and end manually to elbow arrows)"),Ei(!e.fixedSegments||e.fixedSegments.map(w=>w.start[0]===w.end[0]||w.start[1]===w.end[1]).every(Boolean),"Fixed segments must be either horizontal or vertical"),Ei(!n.fixedSegments||n.fixedSegments.map(w=>w.start[0]===w.end[0]||w.start[1]===w.end[1]).every(Boolean),"Updates to fixed segments must be either horizontal or vertical"),Ei(e.points.slice(1).map((w,M)=>w[0]===e.points[M][0]||w[1]===e.points[M][1]),"Elbow arrow segments must be either horizontal or vertical"),Ei(n.fixedSegments?.find(w=>w.index===1&&eo(w.start,(n.points??e.points)[0]))==null&&n.fixedSegments?.find(w=>w.index===(n.points??e.points).length-1&&eo(w.end,(n.points??e.points)[(n.points??e.points).length-1]))==null,"The first and last segments cannot be fixed"));let o=n.fixedSegments??e.fixedSegments??[],r=n.points?n.points&&n.points.length===2?e.points.map((w,M)=>M===0?n.points[0]:M===e.points.length-1?n.points[1]:w):n.points.slice():e.points.slice(),{startBinding:s,endBinding:a,...l}=n,d=typeof s<"u"?s:e.startBinding,c=typeof a<"u"?a:e.endBinding,u=d&&er(d.elementId,t),m=c&&er(c.elementId,t),p=gd(r);if(d&&!u&&p||c&&!m&&p||t.size===0&&p||Object.keys(l).length===0&&(u?.id!==d?.elementId||m?.id!==c?.elementId))return ln(r.map(w=>V(e.x+w[0],e.y+w[1])),e.fixedSegments,e.startIsSpecial,e.endIsSpecial);let{startHeading:h,endHeading:f,startGlobalPoint:g,endGlobalPoint:E,hoveredStartElement:x,hoveredEndElement:b,...y}=Bs({x:e.x,y:e.y,startBinding:d,endBinding:c,startArrowhead:e.startArrowhead,endArrowhead:e.endArrowhead,points:e.points},t,r,i);return t.size===0&&p?ln(r.map(w=>V(e.x+w[0],e.y+w[1])),e.fixedSegments,e.startIsSpecial,e.endIsSpecial):!n.points&&!n.fixedSegments&&!n.startBinding&&!n.endBinding?hf(e,t):n.startBinding===e.startBinding&&n.endBinding===e.endBinding&&(n.points??[]).every((w,M)=>eo(w,e.points[M]??V(1/0,1/0)))&&p?{}:o.length===0?ln(Cs(Gs(Ls(e,{startHeading:h,endHeading:f,startGlobalPoint:g,endGlobalPoint:E,hoveredStartElement:x,hoveredEndElement:b,...y})??[])),o,null,null):(e.fixedSegments?.length??0)>o.length?gf(e,o,t):n.points?n.points&&n.fixedSegments?n:xf(e,r,o,h,f,g,E,x,b):Ef(e,o,h,f,x,b)},Bs=(e,t,n,i)=>{let o=As(n[0],jt(e.x,e.y)),r=As(n[n.length-1],jt(e.x,e.y)),s=null,a=null;if(i?.isDragging&&i?.isBindingEnabled!==!1){let w=Array.from(t.values());s=pd(o,t,w,i?.zoom)||null,a=pd(r,t,w,i?.zoom)||null}else s=e.startBinding&&er(e.startBinding.elementId,t)||null,a=e.endBinding&&er(e.endBinding.elementId,t)||null;let l=ud({...e,angle:0,type:"arrow",elbowed:!0,points:n},"start",e.startBinding?.fixedPoint,o,s,t,i?.isDragging,i?.isBindingEnabled,i?.isMidpointSnappingEnabled),d=ud({...e,angle:0,type:"arrow",elbowed:!0,points:n},"end",e.endBinding?.fixedPoint,r,a,t,i?.isDragging,i?.isBindingEnabled,i?.isMidpointSnappingEnabled),c=md(l,d,s,o,t,i?.zoom),u=md(d,l,a,r,t,i?.zoom),m=[l[0]-2,l[1]-2,l[0]+2,l[1]+2],p=[d[0]-2,d[1]-2,d[0]+2,d[1]+2],h=s?lt(s,t,An(c,e.startArrowhead?ve(s,{elbowed:!0})*6:ve(s,{elbowed:!0})*2,1)):m,f=a?lt(a,t,An(u,e.endArrowhead?ve(a,{elbowed:!0})*6:ve(a,{elbowed:!0})*2,1)):p,g=Yt(l,a?lt(a,t,An(u,ce,ce)):p)||Yt(d,s?lt(s,t,An(c,ce,ce)):m),E=hd(g?[m,p]:[h,f]),x=yf(g?m:h,g?p:f,E,g?An(c,!s&&!a?0:ce,0):An(c,!s&&!a?0:ce-(e.startArrowhead?Qn*6:Qn*2),ce),g?An(u,!s&&!a?0:ce,0):An(u,!s&&!a?0:ce-(e.endArrowhead?Qn*6:Qn*2),ce),g,s&<(s,t),a&<(a,t)),b=cd(x[0],c,l),y=cd(x[1],u,d);return{dynamicAABBs:x,startDonglePosition:b,startGlobalPoint:l,startHeading:c,endDonglePosition:y,endGlobalPoint:d,endHeading:u,commonBounds:E,hoveredStartElement:s,hoveredEndElement:a,boundsOverlap:g,startElementBounds:h,endElementBounds:f}},Ls=(e,t)=>{let{dynamicAABBs:n,startDonglePosition:i,startGlobalPoint:o,startHeading:r,endDonglePosition:s,endGlobalPoint:a,endHeading:l,commonBounds:d,hoveredEndElement:c}=t,u=Pf(n,i||o,r,s||a,l,d),m=i&&Jo(i,u),p=s&&Jo(s,u),h=Jo(a,u);h&&c&&(h.closed=!0);let f=Jo(o,u);f&&e.startBinding&&(f.closed=!0);let g=m&&p&&(Yt(m.pos,n[1])||Yt(p.pos,n[0])),E=bf(m||f,p||h,u,r||he,l||he,g?[]:n);if(E){let x=E.map(b=>[b.pos[0],b.pos[1]]);return m&&x.unshift(o),p&&x.push(a),x}return null},An=(e,t,n)=>{switch(e){case Ze:return[t,n,n,n];case he:return[n,t,n,n];case Be:return[n,n,t,n]}return[n,n,n,t]},bf=(e,t,n,i,o,r)=>{let s=Ms(e.pos,t.pos),a=new uf(l=>l.f);for(a.push(e);a.size()>0;){let l=a.pop();if(!l||l.closed)continue;if(l===t)return wf(e,l);l.closed=!0;let d=Sf(l.addr,n);for(let c=0;c<4;c++){let u=d[c];if(!u||u.closed)continue;let m=df(u.pos,l.pos,.5);if(mf(...r.map(y=>Yt(m,y))))continue;let p=Mf(c),h=l.parent?Xt(Ds(l.pos,l.parent.pos)):i,f=Ss(h);if(fe(f,p)||fd(e.addr,u.addr)&&fe(p,i)||fd(t.addr,u.addr)&&fe(p,o))continue;let E=h!==p,x=l.g+Ms(u.pos,l.pos)+(E?Math.pow(s,3):0),b=u.visited;if(!b||x<u.g){let y=If(u,t,p,o);u.visited=!0,u.parent=l,u.h=Ms(t.pos,u.pos)+y*Math.pow(s,2),u.g=x,u.f=u.g+u.h,b?a.rescoreElement(u):a.push(u)}}}return null},wf=(e,t)=>{let n=t,i=[];for(;n.parent;)i.unshift(n),n=n.parent;return i.unshift(e),i},Ms=(e,t)=>Math.abs(e[0]-t[0])+Math.abs(e[1]-t[1]),yf=(e,t,n,i,o,r,s,a)=>{let l=s??e,d=a??t,[c,u,m,p]=i??[0,0,0,0],[h,f,g,E]=o??[0,0,0,0],x=[e[0]>t[2]?e[1]>t[3]||e[3]<t[1]?Math.min((l[0]+d[2])/2,e[0]-p):(l[0]+d[2])/2:e[0]>t[0]?e[0]-p:n[0]-p,e[1]>t[3]?e[0]>t[2]||e[2]<t[0]?Math.min((l[1]+d[3])/2,e[1]-c):(l[1]+d[3])/2:e[1]>t[1]?e[1]-c:n[1]-c,e[2]<t[0]?e[1]>t[3]||e[3]<t[1]?Math.max((l[2]+d[0])/2,e[2]+u):(l[2]+d[0])/2:e[2]<t[2]?e[2]+u:n[2]+u,e[3]<t[1]?e[0]>t[2]||e[2]<t[0]?Math.max((l[3]+d[1])/2,e[3]+m):(l[3]+d[1])/2:e[3]<t[3]?e[3]+m:n[3]+m],b=[t[0]>e[2]?t[1]>e[3]||t[3]<e[1]?Math.min((d[0]+l[2])/2,t[0]-E):(d[0]+l[2])/2:t[0]>e[0]?t[0]-E:n[0]-E,t[1]>e[3]?t[0]>e[2]||t[2]<e[0]?Math.min((d[1]+l[3])/2,t[1]-h):(d[1]+l[3])/2:t[1]>e[1]?t[1]-h:n[1]-h,t[2]<e[0]?t[1]>e[3]||t[3]<e[1]?Math.max((d[2]+l[0])/2,t[2]+f):(d[2]+l[0])/2:t[2]<e[2]?t[2]+f:n[2]+f,t[3]<e[1]?t[0]>e[2]||t[2]<e[0]?Math.max((d[3]+l[1])/2,t[3]+g):(d[3]+l[1])/2:t[3]<e[3]?t[3]+g:n[3]+g],y=hd([x,b]);if(!r&&x[2]-x[0]+b[2]-b[0]>y[2]-y[0]+1e-11&&x[3]-x[1]+b[3]-b[1]>y[3]-y[1]+1e-11){let[w,M]=[(b[0]+b[2])/2,(b[1]+b[3])/2];if(t[0]>e[2]&&e[1]>t[3]){let S=x[2]+(b[0]-x[2])/2,T=b[3]+(x[1]-b[3])/2;return Qo(jt(e[2]-w,e[1]-M),jt(e[0]-w,e[3]-M))>0?[[x[0],x[1],S,x[3]],[S,b[1],b[2],b[3]]]:[[x[0],T,x[2],x[3]],[b[0],b[1],b[2],T]]}else if(e[2]<t[0]&&e[3]<t[1]){let S=x[2]+(b[0]-x[2])/2,T=x[3]+(b[1]-x[3])/2;return Qo(jt(e[0]-w,e[1]-M),jt(e[2]-w,e[3]-M))>0?[[x[0],x[1],x[2],T],[b[0],T,b[2],b[3]]]:[[x[0],x[1],S,x[3]],[S,b[1],b[2],b[3]]]}else if(e[0]>t[2]&&e[3]<t[1]){let S=b[2]+(x[0]-b[2])/2,T=x[3]+(b[1]-x[3])/2;return Qo(jt(e[2]-w,e[1]-M),jt(e[0]-w,e[3]-M))>0?[[S,x[1],x[2],x[3]],[b[0],b[1],S,b[3]]]:[[x[0],x[1],x[2],T],[b[0],T,b[2],b[3]]]}else if(e[0]>t[2]&&e[1]>t[3]){let S=b[2]+(x[0]-b[2])/2,T=b[3]+(x[1]-b[3])/2;return Qo(jt(e[0]-w,e[1]-M),jt(e[2]-w,e[3]-M))>0?[[S,x[1],x[2],x[3]],[b[0],b[1],S,b[3]]]:[[x[0],T,x[2],x[3]],[b[0],b[1],b[2],T]]}}return[x,b]},Pf=(e,t,n,i,o,r)=>{let s=new Set,a=new Set;n===Ne||n===he?a.add(t[1]):s.add(t[0]),o===Ne||o===he?a.add(i[1]):s.add(i[0]),e.forEach(c=>{s.add(c[0]),s.add(c[2]),a.add(c[1]),a.add(c[3])}),s.add(r[0]),s.add(r[2]),a.add(r[1]),a.add(r[3]);let l=Array.from(a).sort((c,u)=>c-u),d=Array.from(s).sort((c,u)=>c-u);return{row:l.length,col:d.length,data:l.flatMap((c,u)=>d.map((m,p)=>({f:0,g:0,h:0,closed:!1,visited:!1,parent:null,addr:[p,u],pos:[m,c]})))}},cd=(e,t,n)=>{switch(t){case Ze:return V(n[0],e[1]);case he:return V(e[2],n[1]);case Be:return V(n[0],e[3])}return V(e[0],n[1])},If=(e,t,n,i)=>{if(i===he)switch(n){case he:return e.pos[0]>=t.pos[0]?4:e.pos[1]===t.pos[1]?0:2;case Ze:return e.pos[1]>t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case Be:return e.pos[1]<t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case Ne:return e.pos[1]===t.pos[1]?4:2}else if(i===Ne)switch(n){case he:return e.pos[1]===t.pos[1]?4:2;case Ze:return e.pos[1]>t.pos[1]&&e.pos[0]>t.pos[0]?1:3;case Be:return e.pos[1]<t.pos[1]&&e.pos[0]>t.pos[0]?1:3;case Ne:return e.pos[0]<=t.pos[0]?4:e.pos[1]===t.pos[1]?0:2}else if(i===Ze)switch(n){case he:return e.pos[1]>t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case Ze:return e.pos[1]>=t.pos[1]?4:e.pos[0]===t.pos[0]?0:2;case Be:return e.pos[0]===t.pos[0]?4:2;case Ne:return e.pos[1]>t.pos[1]&&e.pos[0]>t.pos[0]?1:3}else if(i===Be)switch(n){case he:return e.pos[1]<t.pos[1]&&e.pos[0]<t.pos[0]?1:3;case Ze:return e.pos[0]===t.pos[0]?4:2;case Be:return e.pos[1]<=t.pos[1]?4:e.pos[0]===t.pos[0]?0:2;case Ne:return e.pos[1]<t.pos[1]&&e.pos[0]>t.pos[0]?1:3}return 0},Sf=([e,t],n)=>[Ji([e,t-1],n),Ji([e+1,t],n),Ji([e,t+1],n),Ji([e-1,t],n)],Ji=([e,t],n)=>e<0||e>=n.col||t<0||t>=n.row?null:n.data[t*n.col+e]??null,Jo=(e,t)=>{for(let n=0;n<t.col;n++)for(let i=0;i<t.row;i++){let o=Ji([n,i],t);if(o&&e[0]===o.pos[0]&&e[1]===o.pos[1])return o}return null},hd=e=>[Math.min(...e.map(t=>t[0])),Math.min(...e.map(t=>t[1])),Math.max(...e.map(t=>t[2])),Math.max(...e.map(t=>t[3]))],er=(e,t)=>{let n=t.get(e);return n&&we(n)?n:null},ln=(e,t,n,i)=>{let o=e[0][0],r=e[0][1],s=e.map(a=>As(a,cf(Ds(e[0]),-1)));return(o<-Mn||o>Mn||r<-Mn||r>Mn||o+s[s.length-1][0]<-Mn||o+s[s.length-1][0]>Mn||r+s[s.length-1][1]<-Mn||r+s[s.length-1][1]>Mn)&&console.error("Elbow arrow normalization is outside reasonable bounds (> 1e6)",{x:o,y:r,points:s,...dd(s)}),s=s.map(([a,l])=>V(qo(a,-1e6,1e6),qo(l,-1e6,1e6))),{points:s,x:qo(o,-1e6,1e6),y:qo(r,-1e6,1e6),fixedSegments:(t?.length??0)>0?t:null,...dd(s),startIsSpecial:n,endIsSpecial:i}},Cs=e=>{if(e.length>1){let t=Math.abs(e[0][1]-e[1][1])<Math.abs(e[0][0]-e[1][0]);return e.filter((n,i)=>{if(i===0||i===e.length-1)return!0;let o=e[i+1],r=Math.abs(n[1]-o[1])<Math.abs(n[0]-o[0]);return t===r?(t=r,!1):(t=r,!0)})}return e},Gs=e=>e.length>=4?e.filter((t,n)=>{if(n===0||n===e.length-1)return!0;let i=e[n-1];return Ts(i,t)>vs}):e,Mf=e=>{switch(e){case 0:return Ze;case 1:return he;case 2:return Be}return Ne},ud=(e,t,n,i,o,r,s,a=!0,l=!0)=>s?a&&o&&r?ks(e,o,t,r,void 0,l):i:o?He(n||[0,0],o,r??ff([o])):i,md=(e,t,n,i,o,r)=>Ed(e,t,n,n&<(n,o,Array(4).fill(Ut(n,o,e))),i,o,r),pd=(e,t,n,i)=>sn(e,n,t,Dt(i)),fd=(e,t)=>e[0]===t[0]&&e[1]===t[1],gd=(e,t=vs)=>e.slice(1).map((n,i)=>Math.abs(n[0]-e[i][0])<t||Math.abs(n[1]-e[i][1])<t).every(Boolean);var Fe=(e,t,n,i)=>{let o=!1,{points:r,fixedSegments:s,fileId:a}=n;j(e)&&(Object.keys(n).length===0||typeof r<"u"||typeof s<"u")?n={...n,angle:0,...xi({...e,x:n.x||e.x,y:n.y||e.y},t,n,i)}:typeof r<"u"&&(n={...Af(r),...n});for(let l in n){let d=n[l];if(typeof d<"u"){if(e[l]===d&&(typeof d!="object"||d===null||l==="groupIds"||l==="scale"))continue;if(l==="scale"){let c=e[l],u=d;if(c[0]===u[0]&&c[1]===u[1])continue}else if(l==="points"){let c=e[l],u=d;if(c.length===u.length){let m=!1,p=c.length;for(;--p;){let h=c[p],f=u[p];if(h[0]!==f[0]||h[1]!==f[1]){m=!0;break}}if(!m)continue}}e[l]=d,o=!0}}return o&&((typeof n.height<"u"||typeof n.width<"u"||typeof a<"u"||typeof r<"u")&&Et.delete(e),e.version=n.version??e.version+1,e.versionNonce=n.versionNonce??Os(),e.updated=Ns()),e},Ke=(e,t,n=!1)=>{let i=!1;for(let o in t){let r=t[o];if(typeof r<"u"){if(e[o]===r&&(typeof r!="object"||r===null))continue;i=!0}}return!i&&!n?e:{...e,...t,version:t.version??e.version+1,versionNonce:t.versionNonce??Os(),updated:Ns()}},xd=(e,t)=>(e.version=(t??e.version)+1,e.versionNonce=Os(),e.updated=Ns(),e);var Md=5,Qn=5,Cf=10,no=10/1.5,or=1,ve=(e,t)=>(t.elbowed?Qn:Md)+e.strokeWidth/2,Dt=e=>{let t=Math.max(Md,15),n=e?.value&&e.value<1?e.value:1;return ir(t/(n*1.5),t,t*2)},$t=e=>e.isBindingEnabled,Gf=(e,t,n,i,o,r,s)=>{let{start:a,end:l}=zs(e,t,n,i,o.getNonDeletedElementsMap(),o.getNonDeletedElements(),r,{...s,finalize:!0}),d=r.isMidpointSnappingEnabled&&!s?.angleLocked&&!r.gridModeEnabled;if(bd(e,a,"start",o,r.isBindingEnabled,d),bd(e,l,"end",o,r.isBindingEnabled,d),a.focusPoint||l.focusPoint){let c=new Map;a.focusPoint&&c.set(0,{point:Ct(e,"startBinding",e.startBinding,a.element,o.getNonDeletedElementsMap())||e.points[0]}),l.focusPoint&&c.set(e.points.length-1,{point:Ct(e,"endBinding",e.endBinding,l.element,o.getNonDeletedElementsMap())||e.points[e.points.length-1]}),R.movePoints(e,o,c)}return{start:a,end:l}},bd=(e,{mode:t,element:n,focusPoint:i},o,r,s=!0,a=!0)=>{t===null?Xe(e,o,r):t!==void 0&&Vt(e,n,t,o,r,i,s,a)},Ad=(e,t,n,i,o)=>{dn(t.size===1,"Bound elbow arrows cannot be moved");let r=t.entries().next().value;dn(r,"There should be a position update for dragging an elbow arrow endpoint");let[s,{point:a}]=r,l=R.getPointGlobalCoordinates(e,a,n),d=sn(l,i,n,Dt(o)),c=d?{element:d,mode:"orbit",focusPoint:R.getPointAtIndexGlobalCoordinates(e,s,n)}:{mode:null},u={mode:void 0};return s===0?{start:c,end:u}:{start:u,end:c}},kf=(e,t,n,i,o,r,s,a,l,d,c)=>{let u={mode:void 0},m={mode:void 0},p=e.points.length>2,h=R.getPointGlobalCoordinates(e,t.get(o?s:a).point,n),f=sn(h,i,n);if(o)return f?u={element:f,mode:"inside",focusPoint:h}:u={mode:null},{start:u,end:m};if(r){let g=l?.selectedLinearElement?.initialState.origin;if(f&&e.startBinding?.elementId===f.id){let E=q(f.x+f.width/2,f.y+f.height/2);return{start:p?{mode:void 0}:{mode:"inside",element:f,focusPoint:g??E},end:p?{mode:"orbit",element:f,focusPoint:h}:{mode:"inside",element:f,focusPoint:h}}}if(f&&e.startBinding){let E=e.startBinding;if(Xo(h,i,n).find(b=>b.id===E.elementId)){let b=n.get(e.startBinding.elementId);return dn(b,"Other element must be in the elements map"),{start:p?{mode:void 0}:{mode:b.id!==f.id?"orbit":"inside",element:b,focusPoint:g??q(e.x,e.y)},end:{mode:"orbit",element:f,focusPoint:h}}}}if(e.startBinding&&e.startBinding.elementId!==f?.id){let E=n.get(e.startBinding.elementId);dn(E,"Other element must be in the elements map");let b={mode:!!l.selectedLinearElement?.initialState.arrowStartIsInside?"inside":"orbit",element:E,focusPoint:c?re(E,n):g??q(e.x,e.y)},y=f&&Ps(E,f,n),w;if(f){let M=d==="inside"||d==="skip";w={mode:M&&!y?"inside":"orbit",element:f,focusPoint:h}}else w={mode:null};return{start:p?{mode:void 0}:b,end:w}}if(!e.startBinding)return f?m={mode:d==="inside"||d==="skip"?"inside":"orbit",element:f,focusPoint:h}:m={mode:null},{start:u,end:m}}dn(!1,"New arrow creation should not reach here")},wd=(e,t,n,i,o,r,s,a)=>{let l={mode:void 0},d={mode:void 0},c=s.points.length>2,u=sn(e,o,i),m=n?Xo(e,o,i).some(g=>g.id===n.elementId):!1,p=n?i.get(n.elementId):null,h=m&&p?Df(p.backgroundColor):!1,f=u&&p&&Ps(p,u,i);return r==="inside"||r==="skip"?(l=u?{element:!m||!p||h?u:p,focusPoint:e,mode:"inside"}:{mode:null},d=a&&u&&u.id===n?.elementId?{mode:null}:d,{current:l,other:d}):u?u.id===t?.elementId&&t.mode==="inside"?{current:{mode:"inside",focusPoint:e,element:u},other:d}:n?n.elementId===u.id?n.mode==="orbit"?(l={element:u,mode:"orbit",focusPoint:e},d={mode:a?null:void 0},{current:l,other:c?{mode:void 0}:d}):(l={element:u,mode:"inside",focusPoint:e},{current:l,other:c?{mode:void 0}:d}):(m&&p&&!h?l={element:p,mode:"inside",focusPoint:e}:l={element:u,mode:"orbit",focusPoint:e},{current:l,other:c?{mode:void 0}:d}):(l={element:u,mode:"orbit",focusPoint:e},{current:l,other:c?{mode:void 0}:d}):{current:{mode:null},other:d}},zs=(e,t,n,i,o,r,s,a)=>Tf("COMPLEX_BINDINGS")?Of(e,t,o,r,s,a):Td(e,t,n,i,o,r,s,a),Td=(e,t,n,i,o,r,s,a)=>{let d=e.points.length-1,c=t.has(0),u=t.has(d),m={mode:void 0},p={mode:void 0};if(e.points.length<2)return console.error("Attempting to bind a linear element with less than 2 points"),{start:{mode:void 0},end:{mode:void 0}};if(!c&&!u)return{start:m,end:p};if(c&&u)return{start:{mode:null},end:{mode:null}};if(!$t(s))return m=c?{mode:null}:m,p=u?{mode:null}:p,{start:m,end:p};if(j(e))return Ad(e,t,o,r,a?.zoom);let h=c?e.endBinding:e.startBinding,f=t.get(c?0:d)?.point;dn(f,`Local point must be defined for ${c?"start":"end"} dragging`);let g=R.getPointGlobalCoordinates(e,f,o),E=sn(a?.angleLocked||s.gridModeEnabled?q(n,i):g,r,o,Dt(s.zoom)),x=E&&(a?.angleLocked?it(q(n,i),E,o):it(g,E,o)),b=h?o.get(h.elementId):void 0,y=h&&b&&He(h.fixedPoint,b,o),w=b&&y&&Ht({point:y,element:b,elementsMap:o,threshold:0,overrideShouldTestInside:!0}),M=s.selectedLinearElement?.initialState.arrowOtherEndpointInitialBinding;if(h&&h.elementId===E?.id&&(!a?.newArrow||s.selectedLinearElement?.initialState.origin))return{start:{mode:"inside",element:E,focusPoint:c?g:a?.newArrow?Bf(Rs(s.selectedLinearElement.initialState.origin[0],s.selectedLinearElement.initialState.origin[1],a.gridSize)):b?He(h.fixedPoint,b,o):R.getPointAtIndexGlobalCoordinates(e,0,o)},end:{mode:"inside",element:E,focusPoint:u?g:b?He(h.fixedPoint,b,o):R.getPointAtIndexGlobalCoordinates(e,-1,o)}};if(a?.altKey)return{start:c?E?{mode:"inside",element:E,focusPoint:g}:{mode:null}:m,end:u?E?{mode:"inside",element:E,focusPoint:g}:{mode:null}:p};let S=E?x?{mode:"inside",element:E,focusPoint:g}:{mode:"orbit",element:E,focusPoint:as(e,a?.angleLocked?g:s.gridModeEnabled?Hf(q(n,i),E,o,s.gridSize,e,R.getPointAtIndexGlobalCoordinates(e,c?1:-2,o)):g,E,c?"start":"end",o,s.zoom,s.isMidpointSnappingEnabled&&!a?.angleLocked&&!s.gridModeEnabled)||g}:{mode:null},T=R.getPointAtIndexGlobalCoordinates(e,c?-1:0,o),A=y&&b&&Ht({point:g,element:b,elementsMap:o,threshold:Dt(s.zoom),overrideShouldTestInside:!0}),F=M?.mode==="inside",B=a?.newArrow?s.selectedLinearElement?.initialState.arrowStartIsInside:h?.mode==="inside"&&F,k={mode:void 0};return B||(h?.mode==="inside"&&!F&&b&&!a?.newArrow?k={mode:"orbit",element:b,focusPoint:y||T}:b&&!w&&!A&&s.selectedLinearElement?.initialState.altFocusPoint?k={mode:"orbit",element:b,focusPoint:s.selectedLinearElement.initialState.altFocusPoint}:a?.angleLocked&&b&&(k={mode:"orbit",element:b,focusPoint:as(e,T,b,c?"end":"start",o,s.zoom,s.isMidpointSnappingEnabled)||T})),{start:c?S:k,end:u?S:k}},Of=(e,t,n,i,o,r)=>{let s=o.bindMode||"orbit",a=0,l=e.points.length-1,d=t.has(a),c=t.has(l),u={mode:void 0},m={mode:void 0};if(e.points.length<2)return console.error("Attempting to bind a linear element with less than 2 points"),{start:{mode:void 0},end:{mode:void 0}};if(!d&&!c)return{start:u,end:m};if(d&&c)return{start:{mode:null},end:{mode:null}};if(!$t(o))return u=d?{mode:null}:u,m=c?{mode:null}:m,{start:u,end:m};if(j(e))return Ad(e,t,n,i);if(r?.newArrow){let{start:p,end:h}=kf(e,t,n,i,d,c,a,l,o,s,r?.shiftKey);return{start:p,end:h}}if(d){let p=t.get(a)?.point;dn(p,"Local point must be defined for start dragging");let h=R.getPointGlobalCoordinates(e,p,n),{current:f,other:g}=wd(h,e.startBinding,e.endBinding,n,i,s,e,r?.finalize);return{start:f,end:g}}if(c){let p=t.get(l)?.point;dn(p,"Local point must be defined for end dragging");let h=R.getPointGlobalCoordinates(e,p,n),{current:f,other:g}=wd(h,e.endBinding,e.startBinding,n,i,s,e,r?.finalize);return{start:g,end:f}}return{start:u,end:m}},a1=(e,t,n)=>{e.forEach(i=>{Gf(i,new Map,1/0,1/0,t,n)})},Dd=(e,t,n,i,o)=>{o.mutateElement(e,{[i==="start"?"startBinding":"endBinding"]:n}),Sd(t.boundElements||[]).has(e.id)||o.mutateElement(t,{boundElements:(t.boundElements||[]).concat({id:e.id,type:"arrow"})})},Vt=(e,t,n,i,o,r,s=!0,a=!0)=>{let l=o.getNonDeletedElementsMap(),d;j(e)?d={elementId:t.id,mode:"orbit",...Wf(e,t,i,l,s,a)}:d={elementId:t.id,mode:n,...yi(e,t,i,l,r)},Dd(e,t,d,i,o)},Xe=(e,t,n)=>{let i=t==="start"?"startBinding":"endBinding",o=e[i];if(o==null)return null;let r=e[t==="start"?"endBinding":"startBinding"];if(!r||r.elementId!==o.elementId){let s=n.getNonDeletedElementsMap().get(o.elementId);n.mutateElement(s,{boundElements:s.boundElements?.filter(a=>a.id!==e.id)})}return n.mutateElement(e,{[i]:null}),o.elementId},je=(e,t,n)=>{if(!we(e))return;let{simultaneouslyUpdated:i}=n??{},o=Ff(i),r=t.getNonDeletedElementsMap();n?.changedElements&&(r=new Map(r),n.changedElements.forEach(a=>{r.set(a.id,a)})),rr(r,e,a=>{if(a&&!Ve(a)&&console.error("[NONDELETED][INVARIANT] updateBoundElements(): `isDeleted: true` in visitor"),!X(a)||!Ve(a)||!Nf(a,e))return;let l=a.startBinding?r.get(a.startBinding.elementId):null,d=a.endBinding?l?.id===a.endBinding.elementId?l:r.get(a.endBinding.elementId):null;if(o.has(a.id))return;let c=sr(r,a,(m,p)=>{if(m&&we(m)&&(p==="startBinding"||p==="endBinding")&&(e.id===a[p]?.elementId||e.id===a[p==="startBinding"?"endBinding":"startBinding"]?.elementId)){let h=Ct(a,p,a[p],m,r);if(h)return[p==="startBinding"?0:a.points.length-1,{point:h}]}return null}).filter(m=>m!==null);R.movePoints(a,t,new Map(c),{moveMidPointsWithElement:!!l&&l?.id===d?.id});let u=de(a,r);u&&!u.isDeleted&&qn(a,t,!1)})},yd=(e,t,n,i,o)=>{dn(!j(e),"Elbow arrows not supported for indirect updates");let r=e[t],s=r&&n.get(r.elementId),a=R.getPointAtIndexGlobalCoordinates(e,t==="startBinding"?0:-1,n),l=s&&Ht({element:s,point:a,elementsMap:n,threshold:Dt(o.zoom)}),d=t==="startBinding"?"start":"end";if(Xe(e,d,i),l){let c=t==="startBinding"?0:e.points.length-1,u=e.points[c],m=Td(e,new Map([[c,{point:u}]]),a[0],a[1],n,i.getNonDeletedElements(),o);m[d]&&m[d].element?.id===s.id&&m[d].mode&&Vt(e,s,m[d].mode,d,i,m[d].focusPoint)}},l1=(e,t,n,i)=>{if(X(e)){let o=t.getNonDeletedElementsMap();e.startBinding&&yd(e,"startBinding",o,t,n),e.endBinding&&yd(e,"endBinding",o,t,n)}else je(e,t,{...i,changedElements:new Map([[e.id,e]])})},Nf=(e,t)=>e.startBinding?.elementId===t.id||e.endBinding?.elementId===t.id,Ff=e=>new Set((e||[]).map(t=>t.id)),Ed=(e,t,n,i,o,r,s)=>{let a=Xt(wi(t,e));return!n||!i?a:Rf(o,n,r,s)?gi(n,i,e):Xt(wi(e,re(n,r)))},Rf=(e,t,n,i)=>{let o=Ut(t,n,e),r=Dt(i);return o>r?null:o},ks=(e,t,n,i,o,r=!0)=>{let s=j(e),a=R.getPointAtIndexGlobalCoordinates(e,n==="start"?0:-1,i);if(e.points.length<2)return a;let l=Al(t)&&s?zf(e,t,i,a):a,d=o&&!s?o[1]:R.getPointAtIndexGlobalCoordinates(e,n==="start"?1:-2,i),c=ve(t,e),u=lt(t,i),m=an(u),p=null;if(s){let h=at(gi(t,u,a)),g=(r?_s(t,i,l,.05,e):void 0)||a,E=q(h?m[0]:g[0],h?g[1]:m[1]),x=o??bi(E,tr(nr(Fs(wi(g,E)),Math.max(t.width,t.height)*2),E));if(p=ot(t,i,x,c).sort(xt)[0],!p){let b=q(h?g[0]:m[0],h?m[1]:g[1]),y=bi(b,tr(nr(Fs(wi(g,b)),Math.max(t.width,t.height)*2),b));p=ot(t,i,y,Qn).sort(xt)[0]}}else{let h=o;if(!h){let f=nr(Fs(wi(l,d)),Tn(l,d)+Math.max(t.width,t.height)+c*2);h=o??bi(tr(f,d),tr(nr(f,-1),d))}p=Tn(l,d)<1?l:ot(t,i,h,c).sort((f,g)=>xt(f,d)-xt(g,d))[0]}return!p||xt(l,p)<vf?l:p},zf=(e,t,n,i)=>{let o=re(t,n),r=ge(i,o,-t.angle),s=ve(t,e);return r[0]<t.x&&r[1]<t.y?r[1]-t.y>-s?ge(q(t.x-s,t.y),o,t.angle):ge(q(t.x,t.y-s),o,t.angle):r[0]<t.x&&r[1]>t.y+t.height?r[0]-t.x>-s?ge(q(t.x,t.y+t.height+s),o,t.angle):ge(q(t.x-s,t.y+t.height),o,t.angle):r[0]>t.x+t.width&&r[1]>t.y+t.height?r[0]-t.x<t.width+s?ge(q(t.x+t.width,t.y+t.height+s),o,t.angle):ge(q(t.x+t.width+s,t.y+t.height),o,t.angle):r[0]>t.x+t.width&&r[1]<t.y?r[0]-t.x<t.width+s?ge(q(t.x+t.width,t.y-s),o,t.angle):ge(q(t.x+t.width+s,t.y),o,t.angle):i},_s=(e,t,n,i=.05,o)=>{let{x:r,y:s,width:a,height:l,angle:d}=e,c=re(e,t,-.1,-.1),u=ge(n,c,-d),m=o?ve(e,o):0,p=ir(i*l,5,80),h=ir(i*a,5,80);if(!(Tn(c,u)<m)){if(u[0]<=r+a/2&&u[1]>c[1]-p&&u[1]<c[1]+p)return ge(q(r-m,c[1]),c,d);if(u[1]<=s+l/2&&u[0]>c[0]-h&&u[0]<c[0]+h)return ge(q(c[0],s-m),c,d);if(u[0]>=r+a/2&&u[1]>c[1]-p&&u[1]<c[1]+p)return ge(q(r+a+m,c[1]),c,d);if(u[1]>=s+l/2&&u[0]>c[0]-h&&u[0]<c[0]+h)return ge(q(c[0],s+l+m),c,d);if(e.type==="diamond"){let f=m,g=q(r+a/4-f,s+l/4-f),E=q(r+3*a/4+f,s+l/4-f),x=q(r+a/4-f,s+3*l/4+f),b=q(r+3*a/4+f,s+3*l/4+f);if(Tn(g,u)<Math.max(h,p))return ge(g,c,d);if(Tn(E,u)<Math.max(h,p))return ge(E,c,d);if(Tn(x,u)<Math.max(h,p))return ge(x,c,d);if(Tn(b,u)<Math.max(h,p))return ge(b,c,d)}}},_f=(e,t,n)=>{let i=e[t];if(!i)return{element:null,fixedPoint:null,focusPoint:null,binding:i,mode:null};let o=n.get(i.elementId);return{element:o,fixedPoint:i.fixedPoint,focusPoint:He(We(i.fixedPoint),o,n),binding:i,mode:i.mode}},Hf=(e,t,n,i,o,r)=>{if(!i)return e;let s=lt(t,n),a=r&&(t.type==="ellipse"||t.type==="diamond")?Xt(wi(r,e)):gi(t,s,e),l=ve(t,o),d=Math.max(t.width,t.height)+l*2,c=an(s),u=Math.abs(a[0]),m=Math.abs(a[1]);if(u>=m){let[,g]=Rs(e[0],e[1],i),E=bi(q(c[0]-d,g),q(c[0]+d,g));return ot(t,n,E,l).sort((b,y)=>xt(b,e)-xt(y,e))[0]??q(e[0],g)}let[p]=Rs(e[0],e[1],i),h=bi(q(p,c[1]-d),q(p,c[1]+d));return ot(t,n,h,l).sort((g,E)=>xt(g,e)-xt(E,e))[0]??q(p,e[1])},Pd=e=>e.width*e.height,Ct=(e,t,n,i,o,r)=>{if(n==null||n.elementId!==i.id&&e.points.length>2||Lf(e.points[e.points.length-1],q(0,0)))return null;let s=He(We(n.fixedPoint),i,o);if(n.mode==="inside")return R.createPointAt(e,o,s[0],s[1],null);let{element:a,focusPoint:l}=_f(e,t==="startBinding"?"endBinding":"startBinding",o),d=R.getPointAtIndexGlobalCoordinates(e,t==="startBinding"?1:-2,o),c=e.points.length===2&&l||d,u=c&&bi(s,c),m=a&&u&&ot(a,o,u,ve(a,e)).sort((b,y)=>xt(b,s)-xt(y,s))[0],p=u&&ot(i,o,u,ve(i,e)).sort((b,y)=>xt(b,c)-xt(y,c))[0],h=e.startArrowhead!==null,f=e.endArrowhead!==null,g=!h&&!f||t==="startBinding"&&h||t==="endBinding"&&f?s:p||s;if(a&&p&&!r&&Pd(a)<Pd(i)*2&&Ht({element:a,point:p,elementsMap:o,threshold:ve(a,e),overrideShouldTestInside:!0}))return R.createPointAt(e,o,g[0],g[1],null);let x=Tn(a&&(m||l)||d,p||s)<=Cf;return a?x?R.createPointAt(e,o,g?.[0]||s[0],g?.[1]||s[1],null):R.createPointAt(e,o,p?.[0]||s[0],p?.[1]||s[1],null):R.createPointAt(e,o,x?s[0]:p?.[0]??s[0],x?s[1]:p?.[1]??s[1],null)},Wf=(e,t,n,i,o=!0,r=!0)=>{let s=[t.x,t.y,t.x+t.width,t.y+t.height],a=o?ks(e,t,n,i,void 0,r):R.getPointAtIndexGlobalCoordinates(e,n==="start"?0:-1,i),l=q(s[0]+(s[2]-s[0])/2,s[1]+(s[3]-s[1])/2),d=ge(a,l,-t.angle);if(t.width<or||t.height<or)return{fixedPoint:We([.5,.5])};let c=ve(t,e);return{fixedPoint:We([(d[0]-t.x)/Math.max(t.width,c),(d[1]-t.y)/Math.max(t.height,c)])}},yi=(e,t,n,i,o)=>{let r=o||R.getPointAtIndexGlobalCoordinates(e,n==="start"?0:-1,i),s=re(t,i),a=ge(r,s,-t.angle);if(t.width<or||t.height<or)return{fixedPoint:We([.5,.5])};let l=ve(t,e),d=(a[0]-t.x)/Math.max(t.width,l),c=(a[1]-t.y)/Math.max(t.height,l);return{fixedPoint:We([d,c])}},vd=(e,t,n)=>{for(let i of e){if("boundElements"in i&&i.boundElements&&Object.assign(i,{boundElements:i.boundElements.reduce((o,r)=>{let s=t.get(r.id);return s&&o.push({...r,id:s}),o},[])}),"containerId"in i&&i.containerId&&Object.assign(i,{containerId:t.get(i.containerId)??null}),"endBinding"in i&&i.endBinding){let o=t.get(i.endBinding.elementId);Object.assign(i,{endBinding:o?{...i.endBinding,elementId:o}:null})}if("startBinding"in i&&i.startBinding){let o=t.get(i.startBinding.elementId);Object.assign(i,{startBinding:o?{...i.startBinding,elementId:o}:null})}j(i)&&Object.assign(i,xi(i,n,{points:[i.points[0],i.points[i.points.length-1]]}))}},d1=(e,t)=>{let n=Sd(e);for(let i of t)Dn.unbindAffected(n,i,(o,r)=>Fe(o,n,r)),vn.unbindAffected(n,i,(o,r)=>Fe(o,n,r))},to=(e,t,n=[])=>{if(!e)return null;let i=e.filter(o=>!t.has(o.id));return i.push(...n.map(o=>({id:o.id,type:o.type}))),i},Bd=new Set(["boundElements","frameId","containerId","startBinding","endBinding"]),rr=(e,t,n)=>{we(t)&&(t.boundElements?.slice()??[]).forEach(({id:o})=>{n(e.get(o),"boundElements",o)})},sr=(e,t,n)=>{let i=[];if(t.frameId){let o=t.frameId;i.push(n(e.get(o),"frameId",o))}if(Ie(t)){let o=t.containerId;i.push(n(e.get(o),"containerId",o))}if(X(t)){if(t.startBinding){let o=t.startBinding.elementId;i.push(n(e.get(o),"startBinding",o))}if(t.endBinding){let o=t.endBinding.elementId;i.push(n(e.get(o),"endBinding",o))}}return i},Dn=class{static unbindAffected(t,n,i){n&&sr(t,n,o=>{!o||o.isDeleted||rr(t,o,(r,s,a)=>{a===n.id&&i(o,{boundElements:to(o.boundElements,new Set([a]))})})})}static rebindAffected=(t,n,i)=>{!n||n.isDeleted||sr(t,n,(o,r)=>{if(!o||o.isDeleted){i(n,{[r]:null});return}r!=="frameId"&&(o.boundElements?.find(s=>s.id===n.id)||(X(n)&&i(o,{boundElements:to(o.boundElements,new Set,new Array(n))}),oe(n)&&(o.boundElements?.find(s=>s.type==="text")?i(n,{[r]:null}):i(o,{boundElements:to(o.boundElements,new Set,new Array(n))}))))})}},vn=class{static unbindAffected(t,n,i){n&&rr(t,n,o=>{!o||o.isDeleted||sr(t,o,(r,s,a)=>{a===n.id&&i(o,{[s]:null})})})}static rebindAffected=(t,n,i)=>{!n||n.isDeleted||rr(t,n,(o,r,s)=>{if(!o||o.isDeleted){i(n,{boundElements:to(n.boundElements,new Set([s]))});return}oe(o)&&((n.boundElements?.slice()??[]).reverse().find(l=>l.type==="text")?.id===o.id?o.containerId!==n.id&&i(o,{containerId:n.id}):(o.containerId!==null&&i(o,{containerId:null}),i(n,{boundElements:to(n.boundElements,new Set([o.id]))})))})}},He=(e,t,n)=>{let[i,o]=We(e);return ge(q(t.x+t.width*i,t.y+t.height*o),re(t,n),t.angle)},Uf=(e,t)=>{let n=e.startBinding&&t.get(e.startBinding.elementId),i=e.endBinding&&t.get(e.endBinding.elementId),o=n&&e.startBinding?He(e.startBinding.fixedPoint,n,t):q(e.x+e.points[0][0],e.y+e.points[0][1]),r=i&&e.endBinding?He(e.endBinding.fixedPoint,i,t):q(e.x+e.points[e.points.length-1][0],e.y+e.points[e.points.length-1][1]);return[o,r]},Ld=(e,t)=>{let[n,i]=Uf(e,t);return[R.pointFromAbsoluteCoords(e,n,t),R.pointFromAbsoluteCoords(e,i,t)]},Yf=e=>Array.isArray(e)&&e.length===2&&e.every(t=>Number.isFinite(t)),Id=10,We=e=>{if(!Yf(e))return[.5001,.5001];let t=1e-4,n=e.map(i=>ir(i,-Id,Id));return Math.abs(n[0]-.5)<t||Math.abs(n[1]-.5)<t?n.map(i=>Math.abs(i-.5)<t?.5001:i):n},Xf=e=>e.type==="ellipse"||e.type==="diamond"?e.type:"rectangle",jf={rectangle:[{centerAngle:0,sectorWidth:75,side:"right"},{centerAngle:45,sectorWidth:15,side:"bottom-right"},{centerAngle:90,sectorWidth:75,side:"bottom"},{centerAngle:135,sectorWidth:15,side:"bottom-left"},{centerAngle:180,sectorWidth:75,side:"left"},{centerAngle:225,sectorWidth:15,side:"top-left"},{centerAngle:270,sectorWidth:75,side:"top"},{centerAngle:315,sectorWidth:15,side:"top-right"}],diamond:[{centerAngle:0,sectorWidth:15,side:"right"},{centerAngle:45,sectorWidth:75,side:"bottom-right"},{centerAngle:90,sectorWidth:15,side:"bottom"},{centerAngle:135,sectorWidth:75,side:"bottom-left"},{centerAngle:180,sectorWidth:15,side:"left"},{centerAngle:225,sectorWidth:75,side:"top-left"},{centerAngle:270,sectorWidth:15,side:"top"},{centerAngle:315,sectorWidth:75,side:"top-right"}],ellipse:[{centerAngle:0,sectorWidth:15,side:"right"},{centerAngle:45,sectorWidth:75,side:"bottom-right"},{centerAngle:90,sectorWidth:15,side:"bottom"},{centerAngle:135,sectorWidth:75,side:"bottom-left"},{centerAngle:180,sectorWidth:15,side:"left"},{centerAngle:225,sectorWidth:75,side:"top-left"},{centerAngle:270,sectorWidth:15,side:"top"},{centerAngle:315,sectorWidth:75,side:"top-right"}]},$f=e=>e.map((t,n)=>{let i=t.sectorWidth/2,o=t.centerAngle-i,r=t.centerAngle+i;return o=(o%360+360)%360,r=(r%360+360)%360,{start:o,end:r,side:t.side}}),Vf=(e,t)=>{let[n,i]=e,o=n-.5,r=i-.5,s=Math.atan2(r,o);s<0&&(s+=2*Math.PI);let a=s*180/Math.PI,l=jf[t],d=$f(l);for(let m of d)if(m.start<=m.end){if(a>=m.start&&a<=m.end)return m.side}else if(a>=m.start||a<=m.end)return m.side;let c=1/0,u=l[0].side;for(let m of l){let p=Math.abs(a-m.centerAngle);p>180&&(p=360-p),p<c&&(c=p,u=m.side)}return u},c1=(e,t)=>{let n=t.get(e.elementId);if(!n||n.isDeleted||!we(n))return null;let i=re(n,t),o=Xf(n),r=Vf(We(e.fixedPoint),o),s=.01;if(n.type==="diamond"){let[a,l]=Pn(n),[d,c,u,m]=a,p,h;switch(r){case"left":{if(l.length>=3){let g=l[2][1];p=g[0]-s,h=g[1]}else{let f=Ye(c[1],u[0]);p=f[0]-s,h=f[1]}break}case"right":{if(l.length>=1){let g=l[0][1];p=g[0]+s,h=g[1]}else{let f=Ye(m[1],d[0]);p=f[0]+s,h=f[1]}break}case"top":{if(l.length>=4){let g=l[3][1];p=g[0],h=g[1]-s}else{let f=Ye(u[1],m[0]);p=f[0],h=f[1]-s}break}case"bottom":{if(l.length>=2){let g=l[1][1];p=g[0],h=g[1]+s}else{let f=Ye(d[1],c[0]);p=f[0],h=f[1]+s}break}case"top-right":{let f=Ye(m[0],m[1]);p=f[0]+s*.707,h=f[1]-s*.707;break}case"bottom-right":{let f=Ye(d[0],d[1]);p=f[0]+s*.707,h=f[1]+s*.707;break}case"bottom-left":{let f=Ye(c[0],c[1]);p=f[0]-s*.707,h=f[1]+s*.707;break}case"top-left":{let f=Ye(u[0],u[1]);p=f[0]-s*.707,h=f[1]-s*.707;break}default:return null}return ge(q(p,h),i,n.angle)}if(n.type==="ellipse"){let a=n.x+n.width/2,l=n.y+n.height/2,d=n.width/2,c=n.height/2,u,m;switch(r){case"top":{u=a,m=l-c-s;break}case"right":{u=a+d+s,m=l;break}case"bottom":{u=a,m=l+c+s;break}case"left":{u=a-d-s,m=l;break}case"top-right":{let p=-Math.PI/4,h=d*Math.cos(p),f=c*Math.sin(p);u=a+h+s*.707,m=l+f-s*.707;break}case"bottom-right":{let p=Math.PI/4,h=d*Math.cos(p),f=c*Math.sin(p);u=a+h+s*.707,m=l+f+s*.707;break}case"bottom-left":{let p=3*Math.PI/4,h=d*Math.cos(p),f=c*Math.sin(p);u=a+h-s*.707,m=l+f+s*.707;break}case"top-left":{let p=-3*Math.PI/4,h=d*Math.cos(p),f=c*Math.sin(p);u=a+h-s*.707,m=l+f-s*.707;break}default:return null}return ge(q(u,m),i,n.angle)}if(ji(n)){let[a,l]=yn(n),[d,c,u,m]=a,p,h;switch(r){case"top":{let f=Ye(d[0],d[1]);p=f[0],h=f[1]-s;break}case"right":{let f=Ye(c[0],c[1]);p=f[0]+s,h=f[1];break}case"bottom":{let f=Ye(u[0],u[1]);p=f[0],h=f[1]+s;break}case"left":{let f=Ye(m[0],m[1]);p=f[0]-s,h=f[1];break}case"top-left":{if(l.length>=1){let f=l[0],g=f[0],E=f[3],x=Ye(g,E);p=x[0]-s*.707,h=x[1]-s*.707}else p=n.x-s,h=n.y-s;break}case"top-right":{if(l.length>=2){let f=l[1],g=f[0],E=f[3],x=Ye(g,E);p=x[0]+s*.707,h=x[1]-s*.707}else p=n.x+n.width+s,h=n.y-s;break}case"bottom-right":{if(l.length>=3){let f=l[2],g=f[0],E=f[3],x=Ye(g,E);p=x[0]+s*.707,h=x[1]+s*.707}else p=n.x+n.width+s,h=n.y+n.height+s;break}case"bottom-left":{if(l.length>=4){let f=l[3],g=f[0],E=f[3],x=Ye(g,E);p=x[0]-s*.707,h=x[1]+s*.707}else p=n.x-s,h=n.y+n.height+s;break}default:return null}return ge(q(p,h),i,n.angle)}return null},Ye=(e,t)=>q((e[0]+t[0])/2,(e[1]+t[1])/2),u1=(e,t,n,i,o)=>{Dd(e,t,{elementId:t.id,fixedPoint:We(i),mode:"orbit"},n,o)};var Hs=({points:e})=>{let t=e[0][0],n=e[0][1];return{points:e.map(i=>H(i[0]-t,i[1]-n)),offsetX:t,offsetY:n}},R=class e{elementId;selectedPointsIndices;initialState;isDragging;lastUncommittedPoint;lastCommittedPoint;pointerOffset;hoverPointIndex;segmentMidPointHoveredCoords;hoveredFocusPointBinding;draggedFocusPointBinding;elbowed;customLineAngle;isEditing;pointerDownState;constructor(t,n,i=!1){this.elementId=t.id,Gd(t.points[0],H(0,0))||(console.error("Linear element is not normalized",Error().stack),Fe(t,n,e.getNormalizeElementPointsAndCoords(t))),this.selectedPointsIndices=null,this.lastUncommittedPoint=null,this.lastCommittedPoint=null,this.isDragging=!1,this.pointerOffset={x:0,y:0},this.initialState={prevSelectedPointsIndices:null,lastClickedPoint:-1,origin:null,segmentMidpoint:{value:null,index:null,added:!1},arrowStartIsInside:!1,arrowOtherEndpointInitialBinding:null,altFocusPoint:null},this.hoverPointIndex=-1,this.segmentMidPointHoveredCoords=null,this.hoveredFocusPointBinding=null,this.draggedFocusPointBinding=null,this.elbowed=j(t)&&t.elbowed,this.customLineAngle=null,this.isEditing=i}static POINT_HANDLE_SIZE=10;static getElement(t,n){let i=n.get(t);return i||null}static handleBoxSelection(t,n,i,o){if(!n.selectedLinearElement?.isEditing||!n.selectionElement)return!1;let{selectedLinearElement:r}=n,{selectedPointsIndices:s,elementId:a}=r,l=e.getElement(a,o);if(!l)return!1;let[d,c,u,m]=Z(n.selectionElement,o),h=e.getPointsGlobalCoordinates(l,o).reduce((f,g,E)=>((g[0]>=d&&g[0]<=u&&g[1]>=c&&g[1]<=m||t.shiftKey&&s?.includes(E))&&f.push(E),f),[]).filter(f=>!(j(l)&&f!==0&&f!==l.points.length-1));i({selectedLinearElement:{...r,selectedPointsIndices:h.length?h:null}})}static handlePointerMove(t,n,i,o,r){let s=n.scene.getNonDeletedElementsMap(),a=n.scene.getNonDeletedElements(),{elementId:l}=r,d=e.getElement(l,s);dt(d,"Element being dragged must exist in the scene"),dt(d.points.length>1,"Element must have at least 2 points");let c=d.points.length-1,u=d.points[c],m=d.points[c-1],p=r.customLineAngle??_d(m,d.points[c]),h=0,f=0;if(ei(t)){let[M,S]=e._getShiftLockedDelta(d,s,m,H(i,o),t[Jn.CTRL_OR_CMD]?null:n.getEffectiveGridSize(),p),T=H(M+m[0],S+m[1]);h=T[0]-u[0],f=T[1]-u[1]}else{let M=e.createPointAt(d,s,i-r.pointerOffset.x,o-r.pointerOffset.y,t[Jn.CTRL_OR_CMD]?null:n.getEffectiveGridSize());h=M[0]-u[0],f=M[1]-u[1]}let g=null,{positions:E,updates:x}=zd([c],h,f,i,o,s,d,a,n,ei(t),t.altKey,r),b=ei(t);if(e.movePoints(d,n.scene,E,{startBinding:x?.startBinding,endBinding:x?.endBinding,moveMidPointsWithElement:x?.moveMidPointsWithElement},{isBindingEnabled:n.state.isBindingEnabled,isMidpointSnappingEnabled:n.state.isMidpointSnappingEnabled&&!b&&!n.state.gridModeEnabled}),_e(d,!1)&&$t(n.state)&&(g=x?.suggestedBinding??null),_e(d)&&Fd(e.getPointGlobalCoordinates(d,d.points[d.points.length-1],s),d,a,s,n.scene),n.state.selectedLinearElement?.customLineAngle===p&&r.initialState.altFocusPoint&&(!g||Jf(n.state.suggestedBinding??[],g)))return null;let y=_e(d)&&d.startBinding&&s.get(d.startBinding.elementId);return{selectedLinearElement:{...r,customLineAngle:p,initialState:{...r.initialState,altFocusPoint:!r.initialState.altFocusPoint&&y&&x?.suggestedBinding?.element.id!==y.id?Rd(d,H(d.x,d.y),y,"start",s,n.state.zoom,n.state.isMidpointSnappingEnabled&&!b&&!n.state.gridModeEnabled):r.initialState.altFocusPoint}},suggestedBinding:g}}static handlePointDragging(t,n,i,o,r){let s=n.scene.getNonDeletedElementsMap(),a=n.scene.getNonDeletedElements(),{elbowed:l,elementId:d,initialState:c}=r,u=Array.from(r.selectedPointsIndices??[]),{lastClickedPoint:m}=c,p=e.getElement(d,s);dt(p,"Element being dragged must exist in the scene"),dt(p.points.length>1,"Element must have at least 2 points"),dt(u,"There must be selected points in order to drag them"),l&&u.some((v,C)=>v>0&&v!==p.points.length-1?(u[C]=p.points.length-1,m=p.points.length-1,!0):!1),(m<0||!u.includes(m)||!p.points[m])&&(console.error(`There must be a valid lastClickedPoint in order to drag it. selectedPointsIndices(${JSON.stringify(u)}) points(0..${p.points.length-1}) lastClickedPoint(${m}) isElbowArrow: ${l}`),m=p.points.length-1);let h=p.points[m],f=p.points[m===0?1:m-1],g=u.length===1,E=r.customLineAngle??_d(f,p.points[m]),x=u.includes(0),b=u.includes(p.points.length-1),y=0,w=0;if(ei(t)&&g){let[v,C]=e._getShiftLockedDelta(p,s,f,H(i,o),t[Jn.CTRL_OR_CMD]?null:n.getEffectiveGridSize(),E),z=H(v+f[0],C+f[1]);y=z[0]-h[0],w=z[1]-h[1]}else{let v=e.createPointAt(p,s,i-r.pointerOffset.x,o-r.pointerOffset.y,t[Jn.CTRL_OR_CMD]?null:n.getEffectiveGridSize());y=v[0]-h[0],w=v[1]-h[1]}let M=null,{positions:S,updates:T}=zd(u,y,w,i,o,s,p,a,n,ei(t)&&g,t.altKey,r),A=ei(t)&&g;e.movePoints(p,n.scene,S,{startBinding:T?.startBinding,endBinding:T?.endBinding,moveMidPointsWithElement:T?.moveMidPointsWithElement},{isBindingEnabled:n.state.isBindingEnabled,isMidpointSnappingEnabled:n.state.isMidpointSnappingEnabled&&!A&&!n.state.gridModeEnabled}),_e(p,!1)&&$t(n.state)&&(x||b)&&(M=T?.suggestedBinding??null),_e(p)&&x!==b&&Fd(e.getPointGlobalCoordinates(p,x?p.points[0]:p.points[p.points.length-1],s),p,a,s,n.scene),de(p,s)&&qn(p,n.scene,!1);let B=l?b?[p.points.length-1]:[0]:u,k=l?B[0]:m,G=!x&&!b?e.getPointGlobalCoordinates(p,h,s):null,_=k,W=_e(p)&&p.startBinding&&s.get(p.startBinding.elementId),D=_e(p)&&p.endBinding&&s.get(p.endBinding.elementId),L=b&&W&&T?.suggestedBinding?.element.id!==W.id?W:x&&D&&T?.suggestedBinding?.element.id!==D.id?D:null;return{selectedLinearElement:{...r,selectedPointsIndices:B,initialState:{...r.initialState,lastClickedPoint:k,altFocusPoint:!r.initialState.altFocusPoint&&_e(p)&&L?Rd(p,H(p.x,p.y),L,"start",s,n.state.zoom,n.state.isMidpointSnappingEnabled&&!A&&!n.state.gridModeEnabled):r.initialState.altFocusPoint},segmentMidPointHoveredCoords:G,hoverPointIndex:_,isDragging:!0,customLineAngle:E},suggestedBinding:M}}static handlePointerUp(t,n,i,o){let r=o.getNonDeletedElementsMap(),{elementId:s,selectedPointsIndices:a,isDragging:l,initialState:d}=n,c=e.getElement(s,r);if(!c)return n;if(l&&a)for(let u of a)(u===0||u===c.points.length-1)&&eh(c.points,i.zoom.value)&&(Oe(c)&&o.mutateElement(c,{...Hd(c,!0)},{informMutation:!1,isDragging:!1}),e.movePoints(c,o,new Map([[u,{point:u===0?c.points[c.points.length-1]:c.points[0]}]])));return{...n,segmentMidPointHoveredCoords:null,hoverPointIndex:-1,selectedPointsIndices:l||t.shiftKey?!l&&t.shiftKey&&d.prevSelectedPointsIndices?.includes(d.lastClickedPoint)?a&&a.filter(u=>u!==d.lastClickedPoint):a:a?.includes(d.lastClickedPoint)?[d.lastClickedPoint]:a,isDragging:!1,customLineAngle:null,initialState:{...n.initialState,origin:null,arrowStartIsInside:!1,arrowOtherEndpointInitialBinding:null}}}static getEditorMidPoints=(t,n,i)=>{let o=de(t,n);if(!j(t)&&!i.selectedLinearElement?.isEditing&&t.points.length>2&&!o)return[];let r=e.getPointsGlobalCoordinates(t,n),s=0,a=[];for(;s<r.length-1;){if(e.isSegmentTooShort(t,t.points[s],t.points[s+1],s,i.zoom,n)){a.push(null),s++;continue}let l=e.getSegmentMidPoint(t,s+1,n);a.push(l),s++}return a};static getSegmentMidpointHitCoords=(t,n,i,o)=>{let{elementId:r}=t,s=e.getElement(r,o);if(!s)return null;let a=e.getPointIndexUnderCursor(s,o,i.zoom,n.x,n.y);if(!j(s)&&a>=0||e.getPointsGlobalCoordinates(s,o).length>=3&&!i.selectedLinearElement?.isEditing&&!j(s))return null;let d=(e.POINT_HANDLE_SIZE+1)/i.zoom.value,c=t.segmentMidPointHoveredCoords;if(c&&ti(H(c[0],c[1]),H(n.x,n.y))<=d)return c;let u=0,m=e.getEditorMidPoints(s,o,i);for(;u<m.length;){if(m[u]!==null&&ti(m[u],H(n.x,n.y))<=d)return m[u];u++}return null};static isSegmentTooShort(t,n,i,o,r,s){if(j(t))return o>=0&&o<t.points.length?ti(n,i)*r.value<e.POINT_HANDLE_SIZE/2:!1;let a=ti(n,i);if(t.points.length>2&&t.roundness){let[l,d]=Od(t,s);dt(l.length===0&&d.length>0,"Only linears built out of curves are supported"),dt(l.length+d.length>=o,"Invalid segment index while calculating mid point"),a=Kf(d[o])}return a*r.value<e.POINT_HANDLE_SIZE*4}static getSegmentMidPoint(t,n,i){if(j(t)){dt(t.points.length>=n,"Invalid segment index while calculating elbow arrow mid point");let s=Cd(t.points[n-1],t.points[n]);return H(t.x+s[0],t.y+s[1])}let[o,r]=Od(t,i);if(dt(o.length===0&&r.length>0||o.length>0&&r.length===0,"Only linears built out of either segments or curves are supported"),dt(o.length+r.length>=n,"Invalid segment index while calculating mid point"),o.length){let s=o[n-1];return Cd(s[0],s[1])}if(r.length){let s=r[n-1];return qf(s,.5)}dt(!1,"Invalid segment type while calculating mid point")}static getSegmentMidPointIndex(t,n,i,o){let r=e.getElement(t.elementId,o);if(!r)return-1;let s=e.getEditorMidPoints(r,o,n),a=0;for(;a<s.length;){if(e.arePointsEqual(i,s[a]))return a+1;a++}return-1}static handlePointerDown(t,n,i,o,r,s){let a=n.state,l=s.getNonDeletedElementsMap(),d={didAddPoint:!1,hitElement:null,linearElementEditor:null};if(!r)return d;let{elementId:c}=r,u=e.getElement(c,l);if(!u)return d;let m=e.getSegmentMidpointHitCoords(r,o,a,l),p=H(o.x,o.y),h=null;if(m)h=e.getSegmentMidPointIndex(r,a,m,l);else if(t.altKey&&a.selectedLinearElement?.isEditing)return r.lastUncommittedPoint==null&&(s.mutateElement(u,{points:[...u.points,e.createPointAt(u,l,o.x,o.y,t[Jn.CTRL_OR_CMD]?null:n.getEffectiveGridSize())]}),d.didAddPoint=!0),i.scheduleCapture(),d.linearElementEditor={...r,initialState:{prevSelectedPointsIndices:r.selectedPointsIndices,lastClickedPoint:-1,origin:p,segmentMidpoint:{value:m,index:h,added:!1},arrowStartIsInside:!!n.state.newElement&&(n.state.bindMode==="inside"||n.state.bindMode==="skip"),altFocusPoint:null,arrowOtherEndpointInitialBinding:u.startBinding},selectedPointsIndices:[u.points.length-1],lastUncommittedPoint:null},d.didAddPoint=!0,d;let f=e.getPointIndexUnderCursor(u,l,a.zoom,o.x,o.y);(f>=0||m)&&(d.hitElement=u);let[g,E,x,b]=Z(u,l),y=(g+x)/2,w=(E+b)/2,M=f>-1&&qe(H(u.x+u.points[f][0],u.y+u.points[f][1]),H(y,w),u.angle),S=f>-1||t.shiftKey?t.shiftKey||r.selectedPointsIndices?.includes(f)?th([...r.selectedPointsIndices||[],f]):[f]:null;return d.linearElementEditor={...r,initialState:{prevSelectedPointsIndices:r.selectedPointsIndices,lastClickedPoint:f,origin:p,segmentMidpoint:{value:m,index:h,added:!1},arrowStartIsInside:!!n.state.newElement&&(n.state.bindMode==="inside"||n.state.bindMode==="skip"),altFocusPoint:null,arrowOtherEndpointInitialBinding:S?.includes(0)?u.endBinding:u.startBinding},selectedPointsIndices:S,pointerOffset:M?{x:o.x-M[0],y:o.y-M[1]}:{x:0,y:0}},d}static arePointsEqual(t,n){return!t&&!n?!0:!t||!n?!1:Gd(t,n)}static handlePointerMoveInEditMode(t,n,i,o){let r=o.state;if(!r.selectedLinearElement?.isEditing)return null;let{elementId:s,lastUncommittedPoint:a}=r.selectedLinearElement,l=o.scene.getNonDeletedElementsMap(),d=e.getElement(s,l);if(!d)return r.selectedLinearElement;let{points:c}=d,u=c[c.length-1];if(!t.altKey)return u===a&&e.deletePoints(d,o,[c.length-1]),r.selectedLinearElement?.lastUncommittedPoint?{...r.selectedLinearElement,lastUncommittedPoint:null}:r.selectedLinearElement;let m;if(ei(t)&&c.length>=2){let p=c[c.length-2],[h,f]=e._getShiftLockedDelta(d,l,p,H(n,i),t[Jn.CTRL_OR_CMD]?null:o.getEffectiveGridSize());m=H(h+p[0],f+p[1])}else m=e.createPointAt(d,l,n-r.selectedLinearElement.pointerOffset.x,i-r.selectedLinearElement.pointerOffset.y,t[Jn.CTRL_OR_CMD]||j(d)?null:o.getEffectiveGridSize());return u===a?e.movePoints(d,o.scene,new Map([[d.points.length-1,{point:m}]])):e.addPoints(d,o.scene,[m]),{...r.selectedLinearElement,lastUncommittedPoint:d.points[d.points.length-1]}}static getPointGlobalCoordinates(t,n,i){let[o,r,s,a]=Z(t,i),l=(o+s)/2,d=(r+a)/2,{x:c,y:u}=t;return qe(H(c+n[0],u+n[1]),H(l,d),t.angle)}static getPointsGlobalCoordinates(t,n){let[i,o,r,s]=Z(t,n),a=(i+r)/2,l=(o+s)/2;return t.points.map(d=>{let{x:c,y:u}=t;return qe(H(c+d[0],u+d[1]),H(a,l),t.angle)})}static getPointAtIndexGlobalCoordinates(t,n,i){let o=n<0?t.points.length+n:n,[,,,,r,s]=Z(t,i),a=H(r,s),l=t.points[o],{x:d,y:c}=t;return l?qe(H(d+l[0],c+l[1]),a,t.angle):qe(H(d,c),a,t.angle)}static pointFromAbsoluteCoords(t,n,i){if(j(t))return H(n[0]-t.x,n[1]-t.y);let[o,r,s,a]=Z(t,i),l=(o+s)/2,d=(r+a)/2,[c,u]=qe(H(n[0],n[1]),H(l,d),-t.angle);return H(c-t.x,u-t.y)}static getPointIndexUnderCursor(t,n,i,o,r){let s=e.getPointsGlobalCoordinates(t,n),a=s.length;for(;--a>-1;){let l=s[a];if(ti(H(o,r),H(l[0],l[1]))*i.value<e.POINT_HANDLE_SIZE+1)return a}return-1}static createPointAt(t,n,i,o,r){let s=kd(i,o,r),[a,l,d,c]=Z(t,n),u=(a+d)/2,m=(l+c)/2,[p,h]=qe(H(s[0],s[1]),H(u,m),-t.angle);return H(p-t.x,h-t.y)}static getNormalizeElementPointsAndCoords(t){let{points:n,offsetX:i,offsetY:o}=Hs(t);return{points:n,x:t.x+i,y:t.y+o}}static duplicateSelectedPoints(t,n){dt(t.selectedLinearElement?.isEditing,"Not currently editing a linear element");let i=n.getNonDeletedElementsMap(),{selectedPointsIndices:o,elementId:r}=t.selectedLinearElement,s=e.getElement(r,i);dt(s,"The linear element does not exist in the provided Scene"),dt(o!=null,"There are no selected points to duplicate");let{points:a}=s,l=[],d=!1,c=-1,u=a.reduce((m,p,h)=>{if(++c,m.push(p),o.includes(h)){let g=a[h+1];g||(d=!0),m.push(g?H((p[0]+g[0])/2,(p[1]+g[1])/2):H(p[0],p[1])),l.push(c+1),++c}return m},[]);if(n.mutateElement(s,{points:u}),d){let m=s.points[s.points.length-1];e.movePoints(s,n,new Map([[s.points.length-1,{point:H(m[0]+30,m[1]+30)}]]))}return{...t,selectedLinearElement:{...t.selectedLinearElement,selectedPointsIndices:l}}}static deletePoints(t,n,i){let o=n.state.selectedLinearElement?.isEditing&&n.state.selectedLinearElement?.lastUncommittedPoint===t.points[t.points.length-1],r=t.points.filter((c,u)=>!i.includes(u));Oe(t)&&t.polygon&&(o||i.includes(0)||i.includes(t.points.length-1))&&(r[0]=H(r[r.length-1][0],r[r.length-1][1]));let{points:a,offsetX:l,offsetY:d}=Hs({points:r});e._updatePoints(t,n.scene,a,l,d)}static addPoints(t,n,i){let o=[...t.points,...i];Oe(t)&&t.polygon&&(o[0]=H(o[o.length-1][0],o[o.length-1][1]));let{points:r,offsetX:s,offsetY:a}=Hs({points:o});e._updatePoints(t,n,r,s,a)}static movePoints(t,n,i,o,r){let{points:s}=t;if(Oe(t)&&t.polygon){let u=i.get(0),m=i.get(s.length-1);u?i.set(s.length-1,{point:H(u.point[0],u.point[1]),isDragging:u.isDragging}):m&&i.set(0,{point:H(m.point[0],m.point[1]),isDragging:m.isDragging})}let a=i.get(0)?.point??H(0,0),[l,d]=a,c=j(t)?[i.get(0)?.point??s[0],i.get(s.length-1)?.point??s[s.length-1]]:s.map((u,m)=>{let p=i.get(m)?.point??u;return o?.moveMidPointsWithElement&&m!==0&&m!==s.length-1&&!i.has(m)?p:H(p[0]-l,p[1]-d)});e._updatePoints(t,n,c,l,d,o,{isDragging:Array.from(i.values()).some(u=>u.isDragging),isBindingEnabled:r?.isBindingEnabled,isMidpointSnappingEnabled:r?.isMidpointSnappingEnabled})}static shouldAddMidpoint(t,n,i,o){let r=e.getElement(t.elementId,o);if(r&&j(r)||!r)return!1;let{segmentMidpoint:s}=t.initialState;if(s.added||s.value===null||s.index===null||t.initialState.origin===null)return!1;let a=t.initialState.origin,l=ti(a,H(n.x,n.y));return!(!i.selectedLinearElement?.isEditing&&l<Qf/i.zoom.value)}static addMidpoint(t,n,i,o,r){let s=r.getNonDeletedElementsMap(),a=e.getElement(t.elementId,s);if(!a)return;let{segmentMidpoint:l}=t.initialState,d={pointerDownState:t.initialState,selectedPointsIndices:t.selectedPointsIndices},c=e.createPointAt(a,s,n.x,n.y,o&&!j(a)?i.getEffectiveGridSize():null),u=[...a.points.slice(0,l.index),c,...a.points.slice(l.index)];return r.mutateElement(a,{points:u}),d.pointerDownState={...t.initialState,segmentMidpoint:{...t.initialState.segmentMidpoint,added:!0},lastClickedPoint:l.index},d.selectedPointsIndices=[l.index],d}static _updatePoints(t,n,i,o,r,s,a){if(j(t)){let l={};s?.startBinding!==void 0&&(l.startBinding=s.startBinding),s?.endBinding!==void 0&&(l.endBinding=s.endBinding),l.points=Array.from(i),n.mutateElement(t,l,{informMutation:!0,isDragging:a?.isDragging??!1,isBindingEnabled:a?.isBindingEnabled,isMidpointSnappingEnabled:a?.isMidpointSnappingEnabled})}else{let l=Ws(t,i),d=Ws(t,t.points),c=(l[0]+l[2])/2,u=(l[1]+l[3])/2,m=(d[0]+d[2])/2,p=(d[1]+d[3])/2,h=m-c,f=p-u,g=qe(H(o,r),H(h,f),t.angle);n.mutateElement(t,{...s,points:i,x:t.x+g[0],y:t.y+g[1]})}}static _getShiftLockedDelta(t,n,i,o,r,s){let a=e.getPointGlobalCoordinates(t,i,n);if(j(t))return[o[0]-a[0],o[1]-a[1]];let[l,d]=kd(o[0],o[1],r),{width:c,height:u}=Wd(a[0],a[1],l,d,s);return qe(H(c,u),H(0,0),-t.angle)}static getBoundTextElementCenter=(t,n)=>{if(t.points.length%2===1){let o=Math.floor(t.points.length/2);return e.getPointGlobalCoordinates(t,t.points[o],n)}let i=t.points.length/2-1;return e.getSegmentMidPoint(t,i+1,n)};static getBoundTextElementPosition=(t,n,i)=>{e.getPointsGlobalCoordinates(t,i).length<2&&Fe(n,i,{isDeleted:!0});let r=e.getBoundTextElementCenter(t,i);return{x:r[0]-n.width/2,y:r[1]-n.height/2}};static getMinMaxXYWithBoundText=(t,n,i,o)=>{let[r,s,a,l]=i,d=(r+a)/2,c=(s+l)/2,{x:u,y:m}=e.getBoundTextElementPosition(t,o,n),p=u+o.width,h=m+o.height,f=H(d,c),g=qe(H(r,s),f,t.angle),E=qe(H(a,s),f,t.angle),x=qe(H(u,m),f,-t.angle),b=qe(H(p,m),f,-t.angle),y=qe(H(u,h),f,-t.angle),w=qe(H(p,h),f,-t.angle);return g[0]<E[0]&&g[1]>=E[1]?(r=Math.min(r,y[0]),a=Math.max(a,Math.max(b[0],w[0])),s=Math.min(s,x[1]),l=Math.max(l,w[1])):g[0]>=E[0]&&g[1]>E[1]?(r=Math.min(r,w[0]),a=Math.max(a,Math.max(x[0],b[0])),s=Math.min(s,y[1]),l=Math.max(l,b[1])):g[0]>=E[0]?(r=Math.min(r,b[0]),a=Math.max(a,y[0]),s=Math.min(s,w[1]),l=Math.max(l,x[1])):g[1]<=E[1]&&(r=Math.min(r,Math.min(b[0],x[0])),a=Math.max(a,w[0]),s=Math.min(s,b[1]),l=Math.max(l,y[1])),[r,s,a,l,d,c]};static getElementAbsoluteCoords=(t,n,i=!1)=>{let o=Et.generateElementShape(t,null),r=Jt(o[0]),[s,a,l,d]=io(r),c=s+t.x,u=a+t.y,m=l+t.x,p=d+t.y,h=(c+m)/2,f=(u+p)/2,g=i&&de(t,n);return g?e.getMinMaxXYWithBoundText(t,n,[c,u,m,p],g):[c,u,m,p,h,f]};static moveFixedSegment(t,n,i,o,r){let s=r.getNonDeletedElementsMap(),a=e.getElement(t.elementId,s);if(!a||!j(a))return t;if(n&&n>0&&n<a.points.length){let l=at(Xt(Zf(a.points[n],a.points[n-1]))),d=(a.fixedSegments??[]).reduce((p,h)=>(p[h.index]=h,p),{});d[n]={index:n,start:H(l?a.points[n-1][0]:i-a.x,l?o-a.y:a.points[n-1][1]),end:H(l?a.points[n][0]:i-a.x,l?o-a.y:a.points[n][1])};let c=Object.values(d).sort((p,h)=>p.index-h.index),u=c.map(p=>p.index).reduce((p,h)=>h<n?p+1:p,0);r.mutateElement(a,{fixedSegments:c});let m=H(a.x+(a.fixedSegments[u].start[0]+a.fixedSegments[u].end[0])/2,a.y+(a.fixedSegments[u].start[1]+a.fixedSegments[u].end[1])/2);return{...t,segmentMidPointHoveredCoords:m,initialState:{...t.initialState,segmentMidpoint:{added:!1,index:a.fixedSegments[u].index,value:m}}}}return t}static deleteFixedSegment(t,n,i){n.mutateElement(t,{fixedSegments:t.fixedSegments?.filter(o=>o.index!==i)})}},th=e=>{let t=[...new Set(e.filter(n=>n!==null&&n!==-1))];return t=t.sort((n,i)=>n-i),t.length?t:null},zd=(e,t,n,i,o,r,s,a,l,d,c,u)=>{let m=new Map(e.map(W=>{let D=s.points[W]??s.points.at(-1);return[W,{point:H(D[0]+t,D[1]+n),isDragging:!0}]}));if(!X(s))return{positions:m};let p=e.includes(0),h=e.includes(s.points.length-1),{start:f,end:g}=zs(s,m,i,o,r,a,l.state,{newArrow:!!l.state.newElement,angleLocked:d,altKey:c,gridSize:l.getEffectiveGridSize()});if(j(s)){let W=p?f.element:h?g.element:null;return{positions:m,updates:{suggestedBinding:W?{element:W,midPoint:l.state.isMidpointSnappingEnabled?_s(W,r,H(i-u.pointerOffset.x,o-u.pointerOffset.y)):void 0}:null}}}if(!p&&!h){let W={...s,points:s.points.map((L,P)=>m.get(P)?.point??L)},D=new Map(m);if(s.startBinding){let L=r.get(s.startBinding.elementId);if(L){let P=Ct(W,"startBinding",s.startBinding,L,r)??null;P&&D.set(0,{point:P,isDragging:!0})}}if(s.endBinding){let L=r.get(s.endBinding.elementId);if(L){let P=Ct(W,"endBinding",s.endBinding,L,r)??null;P&&D.set(s.points.length-1,{point:P,isDragging:!0})}}return{positions:D}}if(p===h)return{positions:m};let E={suggestedBinding:null};f.mode===null?E.startBinding=null:f.mode?(E.startBinding={elementId:f.element.id,mode:f.mode,...yi(s,f.element,"start",r,f.focusPoint)},p&&(E.startBinding.mode==="orbit"||!Pi("COMPLEX_BINDINGS"))&&(E.suggestedBinding=f.element?{element:f.element,midPoint:Nd(H(i-u.pointerOffset.x,o-u.pointerOffset.y),f.element,r,l.state.zoom)}:null)):p&&(E.suggestedBinding=l.state.suggestedBinding),g.mode===null?E.endBinding=null:g.mode?(E.endBinding={elementId:g.element.id,mode:g.mode,...yi(s,g.element,"end",r,g.focusPoint)},h&&(E.endBinding.mode==="orbit"||!Pi("COMPLEX_BINDINGS"))&&(E.suggestedBinding=g.element?{element:g.element,midPoint:Nd(H(i-u.pointerOffset.x,o-u.pointerOffset.y),g.element,r,l.state.zoom)}:null)):h&&(E.suggestedBinding=l.state.suggestedBinding);let x=p?H(s.points[0][0]+t,s.points[0][1]+n):s.points[0],b=h?H(s.points[s.points.length-1][0]+t,s.points[s.points.length-1][1]+n):s.points[s.points.length-1],y={...s,points:[x,...s.points.slice(1,-1),b],startBinding:E.startBinding===void 0?s.startBinding:E.startBinding===null?null:E.startBinding,endBinding:E.endBinding===void 0?s.endBinding:E.endBinding===null?null:E.endBinding},w=s.endBinding&&y.startBinding&&p&&y.startBinding.elementId===s.endBinding.elementId,M=s.startBinding&&y.endBinding&&h&&s.startBinding.elementId===y.endBinding.elementId,S=y.endBinding?g.element??r.get(y.endBinding.elementId):null,T=M&&l.state.bindMode!=="inside"&&Pi("COMPLEX_BINDINGS")?y.points[0]:S&&Ct(y,"endBinding",y.endBinding,S,r,h)||y.points[y.points.length-1];y.points[y.points.length-1]=T;let A=y.startBinding?f.element??r.get(y.startBinding.elementId):null,F=M&&Pi("COMPLEX_BINDINGS")?y.points[0]:w&&l.state.bindMode!=="inside"&&Pi("COMPLEX_BINDINGS")?T:A&&Ct(y,"startBinding",y.startBinding,A,r,p)||y.points[0],B=!(M&&l.state.bindMode!=="inside"&&Pi("COMPLEX_BINDINGS"))&&!!S,k=ti(F,y.points[0])!==0,G=new Set(e);A&&k&&G.add(0),S&&B&&G.add(s.points.length-1);let _=Array.from(G);return{updates:E,positions:new Map(_.map(W=>[W,W===0?{point:F,isDragging:!0}:W===s.points.length-1?{point:T,isDragging:!0}:m.get(W)]))}},_d=(e,t)=>Math.atan2(t[1]-e[1],t[0]-e[0]);I();import{arrayToMap as Gt}from"@excalidraw/common";import{isPointWithinBounds as Eh,pointFrom as Zs,segmentsIntersectAt as xh}from"@excalidraw/math";I();import{arrayToMap as ah,isShallowEqual as lh}from"@excalidraw/common";I();var nh=(e,t,n)=>{let i=n.reduce((o,r)=>(r.groupIds.includes(e)&&(o[r.id]=!0),o),{});return Object.keys(i).length<2?t.selectedGroupIds[e]||t.editingGroupId===e?{selectedElementIds:t.selectedElementIds,selectedGroupIds:{...t.selectedGroupIds,[e]:!1},editingGroupId:null}:t:{editingGroupId:t.editingGroupId,selectedGroupIds:{...t.selectedGroupIds,[e]:!0},selectedElementIds:{...t.selectedElementIds,...i}}},Ud=function(){let e=null,t=null,n=null,i=(r,s,a,l)=>{if(n!==void 0&&s===t&&r===e&&a.editingGroupId===n?.editingGroupId)return n;let d={};for(let m of r){let p=m.groupIds;if(a.editingGroupId){let h=p.indexOf(a.editingGroupId);h>-1&&(p=p.slice(0,h))}if(p.length>0){let h=p[p.length-1];d[h]=!0}}let c={},u=s.reduce((m,p)=>{if(p.isDeleted)return m;let h=p.groupIds.find(f=>d[f]);return h&&(m[p.id]=!0,Array.isArray(c[h])?c[h].push(p.id):c[h]=[p.id]),m},{});for(let m of Object.keys(c))c[m].length<2&&d[m]&&(d[m]=!1);return t=s,e=r,n={editingGroupId:a.editingGroupId,selectedGroupIds:d,selectedElementIds:Us({...a.selectedElementIds,...u},l)},n},o=(r,s,a,l)=>{let d=l?l.scene.getSelectedElements({selectedElementIds:r.selectedElementIds,elements:s}):Zt(s,r);return d.length?i(d,s,r,a):{selectedGroupIds:{},editingGroupId:null,selectedElementIds:Us(r.selectedElementIds,a)}};return o.clearCache=()=>{t=null,e=null,n=null},o}(),ih=(e,t)=>Ys(e,t)!=null,Ys=(e,t)=>t.groupIds.filter(n=>n!==e.editingGroupId).find(n=>e.selectedGroupIds[n]),oh=e=>Object.entries(e.selectedGroupIds).filter(([t,n])=>n).map(([t,n])=>t),Yd=(e,t)=>{let n={...t,selectedGroupIds:{}};for(let i of e){let o=i.groupIds;if(t.editingGroupId){let r=o.indexOf(t.editingGroupId);r>-1&&(o=o.slice(0,r))}if(o.length>0){let r=o[o.length-1];n={...n,...nh(r,n,e)}}}return n.selectedGroupIds},C1=(e,t)=>({...e,editingGroupId:t.groupIds.length?t.groupIds[0]:null,selectedGroupIds:{},selectedElementIds:{[t.id]:!0}}),rh=(e,t)=>e.groupIds.includes(t),Qe=(e,t)=>{let n=[];for(let i of e.values())rh(i,t)&&n.push(i);return n},sh=(e,t)=>e.groupIds.find(n=>t[n]),G1=(e,t,n)=>{let i=[...e],o=n?i.indexOf(n):-1,r=o>-1?o:i.length;return i.splice(r,0,t),i},k1=(e,t)=>e.filter(n=>!t[n]),O1=(e,t)=>{let n=new Map;return e.forEach(i=>{let o=i.groupIds.length===0?i.id:i.groupIds[i.groupIds.length-1],r=n.get(o)||[],s=de(i,t);s&&r.push(s),n.set(o,[...r,i])}),Array.from(n.values())},Xd=e=>{let t=new Set;for(let[,n]of e)if(!n.isDeleted)for(let i of n.groupIds??[])t.add(i);return t},jd=e=>{let t=e.flatMap(o=>o.groupIds),n=new Map,i=0;for(let o of t)n.set(o,(n.get(o)??0)+1),n.get(o)>i&&(i=n.get(o));return i===e.length},$d=e=>e.groupIds.length>0,Vd=(e,t,n)=>{let i=[...e],o=t?e.indexOf(t):-1,r=o>-1?o:e.length;for(let s=0;s<r;s++)i[s]=n(i[s]);return i},ar=(e,t,n)=>{let i=new Map,r=oh(n).length===1&&e.every(s=>ih(n,s));return e.forEach(s=>{if(Ie(s))return;let a,l=sh(s,n.selectedGroupIds);if(!l)a=`${s.id}_element`;else{let u=r?s.groupIds.indexOf(l)-1:s.groupIds.indexOf(l);a=u<0?`${s.id}_element`:`${s.groupIds[u]}_group`}let d=i.get(a)??[],c=de(s,t);i.set(a,[...d,s,...c?[c]:[]])}),[...i.values()]};var dh=e=>e.locked||Ie(e),ch=(e,t)=>e.filter(n=>!(n.frameId&&t.has(n.frameId))),uh=e=>{let t=new Set;return e.forEach(n=>{J(n)&&t.add(n.id)}),ch(e,t)},Zd=(e,t,n,i=!0,o="contain")=>{let[r,s,a,l]=Z(t,n),d=Math.min(r,a),c=Math.min(s,l),u=Math.max(r,a),m=Math.max(s,l);return Kd({elements:e,bounds:[d,c,u,m],elementsMap:n,type:o,shouldIgnoreElementFromSelection:dh,excludeElementsInFrames:i})},j1=(e,t,n,i)=>{let o=new Set(t.map(r=>r.id));return e.filter(r=>{let s=qd(r,n.width,n.height,n,i);return!o.has(r.id)&&s})},$1=function(){let e=null,t=null,n=null,i=(o,r)=>(n!=null&&o===e&&r.selectedElementIds===t||(n=o.some(s=>r.selectedElementIds[s.id]),e=o,t=r.selectedElementIds),n);return i.clearCache=()=>{e=null,t=null,n=null},i}(),Zt=(e,t,n)=>{let i=new Set,o=[];for(let r of e.values()){if(t.selectedElementIds[r.id]){Ve(r)?(o.push(r),i.add(r.id)):console.error("[NONDELETED][INVARIANT] getSelectedElements skipping deleted selected element which should not be in the selection");continue}if(n?.includeBoundTextElement&&Ie(r)&&Ve(r)&&t.selectedElementIds[r?.containerId]){o.push(r),i.add(r.id);continue}}if(n?.includeElementsInFrames){let r=[];return o.forEach(s=>{J(s)&&Bn(e,s.id).forEach(a=>!i.has(a.id)&&r.push(a)),r.push(s)}),r}return o},V1=(e,t)=>t.editingTextElement?[t.editingTextElement]:t.newElement&&t.activeTool.type!=="autoshape"?[t.newElement]:Zt(e,t,{includeBoundTextElement:!0}),Us=(e,t)=>lh(t.selectedElementIds,e)?t.selectedElementIds:e,mh=(e,t)=>{let n=e.filter(K);if(n.length===1){let i=n[0],o=i.boundElements?.map(s=>s.id)??[];if(e.every(s=>s.id===i.id||o.includes(s.id)))return new R(i,ah(t))}return null},Z1=(e,t,n)=>({selectedLinearElement:mh(e,t),...Ud({editingGroupId:n.editingGroupId,selectedElementIds:uh(e).reduce((i,o)=>(Ie(o)||(i[o.id]=!0),i),{})},t,n,null)}),K1=(e,t)=>t.editingTextElement||e.length===1&&oe(e[0])&&e[0]||null;I();import{arrayToMap as lr}from"@excalidraw/common";import{validateOrderKey as ph,generateNKeysBetween as fh}from"@excalidraw/fractional-indexing";var Xs=class extends Error{code="ELEMENT_HAS_INVALID_INDEX"},hh=(e,{shouldThrow:t=!1,includeBoundTextValidation:n=!1,ignoreLogs:i,reconciliationContext:o})=>{let r=[],s=d=>`${d?.index}:${d?.id}:${d?.type}:${d?.isDeleted}:${d?.version}:${d?.versionNonce}`,a=n?lr(e):null,l=e.map(d=>d.index);for(let[d,c]of l.entries()){let u=l[d-1],m=l[d+1];if(js(c,u,m)||r.push(`Fractional indices invariant has been compromised: "${s(e[d-1])}", "${s(e[d])}", "${s(e[d+1])}"`),n&&a&&_t(e[d])&&Ve(e[d])){let p=e[d],h=Bt(p),f=h?a.get(h):null;f&&Ve(f)&&f.index<=p.index&&r.push(`Fractional indices invariant for bound elements has been compromised: "${s(f)}", "${s(p)}"`)}}if(r.length){let d=new Xs,c=[];if(o&&(c.push("Additional reconciliation context:"),c.push(o.localElements.map(u=>s(u))),c.push(o.remoteElements.map(u=>s(u)))),i||console.error(r.join(`
|
|
19
11
|
|
|
20
|
-
`),l.stack,e.map(c=>s(c)),...d),t)throw l}},md=e=>e.sort((t,n)=>pd(t)&&pd(n)?t.index<n.index?-1:t.index>n.index?1:t.id<n.id?-1:1:1),pi=(e,t)=>{try{let n=Po(e),i=zf(e,t),o=ts(e,i),r=e.map(s=>{let a=o.get(s);return a?{...s,index:a.index}:s});Nf(r,{includeBoundTextValidation:!1,shouldThrow:!0,ignoreLogs:!0});for(let[s,{index:a}]of o)be(s,n,{index:a})}catch{Hf(e)}return e},Hf=e=>{let t=Po(e),n=fd(e),i=ts(e,n);for(let[o,{index:r}]of i)be(o,t,{index:r});return e},od=e=>{let t=Po(e),n=fd(e),i=ts(e,n);for(let[o,{index:r}]of i)t.set(o.id,Ee(o,{index:r}));return t},zf=(e,t)=>{let n=[],i=0;for(;i<e.length;)if(t.has(e[i].id)){let o=[i-1,i];for(;++i<e.length&&t.has(e[i].id);)o.push(i);o.push(i),n.push(o)}else i++;return n},fd=e=>{let t=[],n,i,o=-1,r=0,s=d=>{let c=e[o]?e[o].index:void 0,u=e[d-1]?.index;return!c&&u||c&&u&&u>c?[u,d-1]:[c,o]},a=d=>{let c=e[r]?e[r].index:void 0;if(c&&d<r)return[c,r];let u=r;for(;++u<e.length;){let p=e[u]?.index;if(!c&&p||c&&p&&p>c)return[p,u]}return[void 0,u]},l=0;for(;l<e.length;){let d=e[l].index;if([n,o]=s(l),[i,r]=a(l),es(d,n,i))l++;else{let c=[o,l];for(;++l<e.length;){let u=e[l].index,[p,m]=s(l),[f,E]=a(l);if(es(u,p,f))break;[n,o]=[p,m],[i,r]=[f,E],c.push(l)}c.push(r),t.push(c)}}return t},es=(e,t,n)=>e?t&&n?t<e&&e<n:!t&&n?e<n:t&&!n?t<e:!!e:!1,ts=(e,t)=>{let n=new Map;for(let i of t){let o=i.shift(),r=i.pop(),s=bo(e[o]?.index,e[r]?.index,i.length);for(let a=0;a<i.length;a++){let l=e[i[a]];n.set(l,{index:s[a]})}}return n},pd=e=>!!e.index;P();var Td=xc(wd(),1);import{randomInteger as oh,arrayToMap as yd,toBrandedType as bd,isDevEnv as Pd,isTestEnv as Id,toArray as rh}from"@excalidraw/common";import{isNonDeletedElement as sh}from"@excalidraw/element";import{isFrameLikeElement as ah}from"@excalidraw/element";import{getElementsInGroup as lh}from"@excalidraw/element";import{syncInvalidIndices as dh,syncMovedIndices as Sd,validateFractionalIndices as ch}from"@excalidraw/element";import{getSelectedElements as uh}from"@excalidraw/element";import{mutateElement as ph}from"@excalidraw/element";var Md=e=>{let t=new Map,n=[];for(let i of e)i.isDeleted||(n.push(i),t.set(i.id,i));return{elementsMap:t,elements:n}},mh=(0,Td.default)(e=>{(Pd()||Id()||window?.DEBUG_FRACTIONAL_INDICES)&&ch(e,{shouldThrow:Pd()||Id(),includeBoundTextValidation:!0})},1e3*60,{leading:!0,trailing:!1}),fh=e=>{let t=["includeBoundTextElement","includeElementsInFrames"],n="";for(let i of t)n+=`${i}:${e[i]?"1":"0"}`;return n},So=class{callbacks=new Set;nonDeletedElements=[];nonDeletedElementsMap=bd(new Map);elements=[];nonDeletedFramesLikes=[];frames=[];elementsMap=bd(new Map);selectedElementsCache={selectedElementIds:null,elements:null,cache:new Map};sceneNonce;getSceneNonce(){return this.sceneNonce}getNonDeletedElementsMap(){return this.nonDeletedElementsMap}getElementsIncludingDeleted(){return this.elements}getElementsMapIncludingDeleted(){return this.elementsMap}getNonDeletedElements(){return this.nonDeletedElements}getFramesIncludingDeleted(){return this.frames}constructor(t=null,n){t&&this.replaceAllElements(t,n)}getSelectedElements(t){let n=fh(t),i=t?.elements||this.nonDeletedElements;if(this.selectedElementsCache.elements===i&&this.selectedElementsCache.selectedElementIds===t.selectedElementIds){let r=this.selectedElementsCache.cache.get(n);if(r)return r}else t?.elements==null&&this.selectedElementsCache.cache.clear();let o=uh(i,{selectedElementIds:t.selectedElementIds},t);return t?.elements==null&&(this.selectedElementsCache.selectedElementIds=t.selectedElementIds,this.selectedElementsCache.elements=this.nonDeletedElements,this.selectedElementsCache.cache.set(n,o)),o}getNonDeletedFramesLikes(){return this.nonDeletedFramesLikes}getElement(t){return this.elementsMap.get(t)||null}getNonDeletedElement(t){let n=this.getElement(t);return n&&sh(n)?n:null}mapElements(t){let n=!1,i=this.elements.map(o=>{let r=t(o);return r!==o&&(n=!0),r});return n&&this.replaceAllElements(i),n}replaceAllElements(t,n){let i=rh(t),o=[];n?.skipValidation||mh(i),this.elements=dh(i),this.elementsMap.clear(),this.elements.forEach(s=>{ah(s)&&o.push(s),this.elementsMap.set(s.id,s)});let r=Md(this.elements);this.nonDeletedElements=r.elements,this.nonDeletedElementsMap=r.elementsMap,this.frames=o,this.nonDeletedFramesLikes=Md(this.frames).elements,this.triggerUpdate()}triggerUpdate(){this.sceneNonce=oh();for(let t of Array.from(this.callbacks))t()}onUpdate(t){if(this.callbacks.has(t))throw new Error;return this.callbacks.add(t),()=>{if(!this.callbacks.has(t))throw new Error;this.callbacks.delete(t)}}destroy(){this.elements=[],this.nonDeletedElements=[],this.nonDeletedFramesLikes=[],this.frames=[],this.elementsMap.clear(),this.selectedElementsCache.selectedElementIds=null,this.selectedElementsCache.elements=null,this.selectedElementsCache.cache.clear(),this.callbacks.clear()}insertElementAtIndex(t,n){if(!Number.isFinite(n)||n<0)throw new Error("insertElementAtIndex can only be called with index >= 0");let i=[...this.elements.slice(0,n),t,...this.elements.slice(n)];Sd(i,yd([t])),this.replaceAllElements(i)}insertElementsAtIndex(t,n){if(!t.length)return;if(!Number.isFinite(n)||n<0)throw new Error("insertElementAtIndex can only be called with index >= 0");let i=[...this.elements.slice(0,n),...t,...this.elements.slice(n)];Sd(i,yd(t)),this.replaceAllElements(i)}insertElement=t=>{let n=t.frameId?this.getElementIndex(t.frameId):this.elements.length;this.insertElementAtIndex(t,n)};insertElements=t=>{if(!t.length)return;let n=t[0]?.frameId?this.getElementIndex(t[0].frameId):this.elements.length;this.insertElementsAtIndex(t,n)};getElementIndex(t){return this.elements.findIndex(n=>n.id===t)}getContainerElement=t=>t&&t.containerId&&this.getElement(t.containerId)||null;getElementsFromId=t=>{let n=this.getNonDeletedElementsMap(),i=n.get(t);return i?[i]:lh(n,t)};mutateElement(t,n,i={informMutation:!0,isDragging:!1}){let o=this.getNonDeletedElementsMap(),{version:r}=t,{version:s}=ph(t,o,n,i);return this.elementsMap.has(t.id)&&r!==s&&i.informMutation&&this.triggerUpdate(),t}};var F=class e{constructor(t,n){this.deleted=t;this.inserted=n}static create(t,n,i,o){let r=i&&o!=="inserted"?i(t,"deleted"):t,s=i&&o!=="deleted"?i(n,"inserted"):n;return new e(r,s)}static calculate(t,n,i,o){if(t===n)return e.empty();let r={},s={};for(let d of this.getDifferences(t,n))r[d]=t[d],s[d]=n[d];let[a,l]=o?o(r,s):[r,s];return e.create(a,l,i)}static empty(){return new e({},{})}static isEmpty(t){return!Object.keys(t.deleted).length&&!Object.keys(t.inserted).length}static merge(t,n,i=e.empty()){return e.create({...t.deleted,...n.deleted,...i.deleted},{...t.inserted,...n.inserted,...i.inserted})}static mergeObjects(t,n,i={}){let o={...t};for(let r of Object.keys(i))delete o[r];return{...o,...n}}static mergeArrays(t,n,i,o){return Object.values(e.mergeObjects(Gt(t??[],o),Gt(n??[],o),Gt(i??[],o)))}static diffObjects(t,n,i,o){if(!t[i]&&!n[i])return;let r=t[i]!==null&&typeof t[i]=="object",s=n[i]!==null&&typeof n[i]=="object";if(r||s){let a=t[i]??{},l=n[i]??{},d=e.getLeftDifferences(a,l).reduce((u,p)=>(u[p]=o(a[p]),u),{}),c=e.getRightDifferences(a,l).reduce((u,p)=>(u[p]=o(l[p]),u),{});Object.keys(d).length||Object.keys(c).length?(Reflect.set(t,i,d),Reflect.set(n,i,c)):(Reflect.deleteProperty(t,i),Reflect.deleteProperty(n,i))}else t[i]===n[i]&&(Reflect.deleteProperty(t,i),Reflect.deleteProperty(n,i))}static diffArrays(t,n,i,o){if(!(!t[i]&&!n[i])&&(Array.isArray(t[i])||Array.isArray(n[i]))){let r=Array.isArray(t[i])?t[i]:[],s=Array.isArray(n[i])?n[i]:[],a=Gt(e.getLeftDifferences(Gt(r,o),Gt(s,o)),d=>d),l=Gt(e.getRightDifferences(Gt(r,o),Gt(s,o)),d=>d);if(Object.keys(a).length||Object.keys(l).length){let d=r.filter(u=>a[o?o(u):String(u)]),c=s.filter(u=>l[o?o(u):String(u)]);Reflect.set(t,i,d),Reflect.set(n,i,c)}else Reflect.deleteProperty(t,i),Reflect.deleteProperty(n,i)}}static isLeftDifferent(t,n,i=!1){return!!this.distinctKeysIterator("left",t,n,i).next().value}static isRightDifferent(t,n,i=!1){return!!this.distinctKeysIterator("right",t,n,i).next().value}static isInnerDifferent(t,n,i=!1){return!!!!this.distinctKeysIterator("inner",t,n,i).next().value}static isDifferent(t,n,i=!1){return!!!!this.distinctKeysIterator("full",t,n,i).next().value}static getLeftDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("left",t,n,i)).sort()}static getRightDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("right",t,n,i)).sort()}static getInnerDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("inner",t,n,i)).sort()}static getDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("full",t,n,i)).sort()}static*distinctKeysIterator(t,n,i,o=!1){if(n===i)return;let r=[];t==="left"?r=Object.keys(n):t==="right"?r=Object.keys(i):t==="inner"?r=Object.keys(n).filter(s=>s in i):t==="full"?r=Array.from(new Set([...Object.keys(n),...Object.keys(i)])):Dd(t,`Unknown distinctKeysIterator's join param "${t}"`,!0);for(let s of r){let a=n[s],l=i[s];if(a!==l){if(!o&&typeof a=="object"&&typeof l=="object"&&a!==null&&l!==null&&vd(a,l))continue;yield s}}}},Jt=class e{constructor(t){this.delta=t}static create(t){return new e(t)}static calculate(t,n){let i=F.calculate(t,n,e.orderAppStateKeys,e.postProcess);return new e(i)}static restore(t){let{delta:n}=t;return new e(n)}static empty(){return new e(F.create({},{}))}inverse(){let t=F.create(this.delta.inserted,this.delta.deleted);return new e(t)}squash(t){if(t.isEmpty())return this;let n=F.mergeObjects(this.delta.deleted.selectedElementIds??{},t.delta.deleted.selectedElementIds??{}),i=F.mergeObjects(this.delta.inserted.selectedElementIds??{},t.delta.inserted.selectedElementIds??{}),o=F.mergeObjects(this.delta.deleted.selectedGroupIds??{},t.delta.deleted.selectedGroupIds??{}),r=F.mergeObjects(this.delta.inserted.selectedGroupIds??{},t.delta.inserted.selectedGroupIds??{}),s=F.mergeObjects(this.delta.deleted.lockedMultiSelections??{},t.delta.deleted.lockedMultiSelections??{}),a=F.mergeObjects(this.delta.inserted.lockedMultiSelections??{},t.delta.inserted.lockedMultiSelections??{}),l={},d={};return(Object.keys(n).length||Object.keys(i).length)&&(d.selectedElementIds=n,l.selectedElementIds=i),(Object.keys(o).length||Object.keys(r).length)&&(d.selectedGroupIds=o,l.selectedGroupIds=r),(Object.keys(s).length||Object.keys(a).length)&&(d.lockedMultiSelections=s,l.lockedMultiSelections=a),this.delta=F.merge(this.delta,t.delta,F.create(d,l)),this}applyTo(t,n){try{let{selectedElementIds:i={},selectedGroupIds:o={},lockedMultiSelections:r={}}=this.delta.deleted,{selectedElementIds:s={},selectedGroupIds:a={},lockedMultiSelections:l={},selectedLinearElement:d,...c}=this.delta.inserted,u=F.mergeObjects(t.selectedElementIds,s,i),p=F.mergeObjects(t.selectedGroupIds,a,o),m=F.mergeObjects(t.lockedMultiSelections,l,r),f=d&&n.has(d.elementId)?new U(n.get(d.elementId),n,d.isEditing):null,E={...t,...c,selectedElementIds:u,selectedGroupIds:p,lockedMultiSelections:m,selectedLinearElement:typeof d<"u"?f:t.selectedLinearElement},h=this.filterInvisibleChanges(t,E,n);return[E,h]}catch(i){if(console.error("Couldn't apply appstate change",i),on()||nn())throw i;return[t,!1]}}isEmpty(){return F.isEmpty(this.delta)}filterInvisibleChanges(t,n,i){let o=On(t),r=On(n),s=F.isRightDifferent(e.stripElementsProps(o),e.stripElementsProps(r)),a=F.isRightDifferent(e.stripStandaloneProps(o),e.stripStandaloneProps(r));if(!s&&!a)return!1;let l={value:s};if(a){let d=F.getRightDifferences(e.stripStandaloneProps(o),e.stripStandaloneProps(r)),c=new Set;(d.includes("editingGroupId")||d.includes("selectedGroupIds"))&&(c=El(i));for(let u of d)switch(u){case"selectedElementIds":n[u]=e.filterSelectedElements(n[u],i,l);break;case"selectedGroupIds":n[u]=e.filterSelectedGroups(n[u],c,l);break;case"croppingElementId":{let x=n[u];if(!x)l.value=!0;else{let y=i.get(x);y&&!y.isDeleted?l.value=!0:n[u]=null}break}case"editingGroupId":let p=n[u];p?c.has(p)?l.value=!0:n[u]=null:l.value=!0;break;case"selectedLinearElement":let m=n[u];if(!m)l.value=!0;else{let x=i.get(m.elementId);x&&!x.isDeleted?l.value=!0:n[u]=null}break;case"lockedMultiSelections":let f=t[u]||{},E=n[u]||{};vd(f,E)||(l.value=!0);break;case"activeLockedId":let h=t[u]||null,g=n[u]||null;h!==g&&(l.value=!0);break;default:Dd(u,`Unknown ObservedElementsAppState's key "${u}"`,!0)}}return l.value}static filterSelectedElements(t,n,i){let o=Object.keys(t);if(!o.length)return i.value=!0,t;let r={...t};for(let s of o){let a=n.get(s);a&&!a.isDeleted?i.value=!0:delete r[s]}return r}static filterSelectedGroups(t,n,i){if(!Object.keys(t).length)return i.value=!0,t;let r={...t};for(let s of Object.keys(r))n.has(s)?i.value=!0:delete r[s];return r}static stripElementsProps(t){let{editingGroupId:n,selectedGroupIds:i,selectedElementIds:o,selectedLinearElement:r,croppingElementId:s,lockedMultiSelections:a,activeLockedId:l,...d}=t;return d}static stripStandaloneProps(t){let{name:n,viewBackgroundColor:i,...o}=t;return o}static postProcess(t,n){try{F.diffObjects(t,n,"selectedElementIds",i=>!0),F.diffObjects(t,n,"selectedGroupIds",i=>i??!1),F.diffObjects(t,n,"lockedMultiSelections",i=>i??{})}catch(i){if(console.error("Couldn't postprocess appstate change deltas."),on()||nn())throw i}finally{return[t,n]}}static orderAppStateKeys(t){let n={};for(let i of Object.keys(t).sort())n[i]=t[i];return n}},en=class e{constructor(t,n,i){this.added=t;this.removed=n;this.updated=i}static create(t,n,i,o={shouldRedistribute:!1}){let r;if(o.shouldRedistribute){let s={},a={},l={},d=[...Object.entries(t),...Object.entries(n),...Object.entries(i)];for(let[c,u]of d)this.satisfiesAddition(u)?s[c]=u:this.satisfiesRemoval(u)?a[c]=u:l[c]=u;r=new e(s,a,l)}else r=new e(t,n,i);return(on()||nn())&&(e.validate(r,"added",this.satisfiesAddition),e.validate(r,"removed",this.satisfiesRemoval),e.validate(r,"updated",this.satisfiesUpdate)),r}static restore(t){let{added:n,removed:i,updated:o}=t;return e.create(n,i,o)}static satisfiesAddition=({deleted:t,inserted:n})=>t.isDeleted===!0&&!n.isDeleted;static satisfiesRemoval=({deleted:t,inserted:n})=>!t.isDeleted&&n.isDeleted===!0;static satisfiesUpdate=({deleted:t,inserted:n})=>!!t.isDeleted==!!n.isDeleted;static satisfiesCommmonInvariants=({deleted:t,inserted:n})=>!!(Number.isInteger(t.version)&&Number.isInteger(n.version)&&t.version>=0&&n.version>=0&&t.version!==n.version);static satisfiesUniqueInvariants=(t,n)=>{let{added:i,removed:o,updated:r}=t;return[i[n],o[n],r[n]].filter(Boolean).length===1};static validate(t,n,i){for(let[o,r]of Object.entries(t[n]))if(!this.satisfiesCommmonInvariants(r)||!this.satisfiesUniqueInvariants(t,o)||!i(r))throw console.error(`Broken invariant for "${n}" delta, element "${o}", delta:`,r),new Error(`ElementsDelta invariant broken for element "${o}".`)}static calculate(t,n){if(t===n)return e.empty();let i={},o={},r={};for(let s of t.values())if(!n.get(s.id)){let l={...s},d={isDeleted:!0,version:s.version+1,versionNonce:Ad()},c=F.create(l,d,e.stripIrrelevantProps);s.isDeleted?r[s.id]=c:o[s.id]=c}for(let s of n.values()){let a=t.get(s.id);if(!a){let l={isDeleted:!0,version:s.version-1,versionNonce:Ad()},d={...s},c=F.create(l,d,e.stripIrrelevantProps);s.isDeleted?r[s.id]=c:i[s.id]=c;continue}if(a.versionNonce!==s.versionNonce){let l=F.calculate(a,s,e.stripIrrelevantProps,e.postProcess);if(typeof a.isDeleted=="boolean"&&typeof s.isDeleted=="boolean"&&a.isDeleted!==s.isDeleted){a.isDeleted&&!s.isDeleted?i[s.id]=l:o[s.id]=l;continue}r[s.id]=l}}return e.create(i,o,r)}static empty(){return e.create({},{},{})}inverse(){let t=r=>{let s={};for(let[a,{inserted:l,deleted:d}]of Object.entries(r))s[a]=F.create({...l},{...d});return s},n=t(this.added),i=t(this.removed),o=t(this.updated);return e.create(i,n,o)}isEmpty(){return Object.keys(this.added).length===0&&Object.keys(this.removed).length===0&&Object.keys(this.updated).length===0}applyLatestChanges(t,n,i){let o=(d,c)=>(u,p)=>{let m;switch(p){case"deleted":m=d;break;case"inserted":m=c;break}if(!m)return console.error("Element not found when trying to apply latest changes"),u;let f={};for(let E of Object.keys(u))switch(E){case"boundElements":f[E]=u[E];break;default:f[E]=m[E]}return f},r=d=>{let c={};for(let[u,p]of Object.entries(d)){let m=t.get(u),f=n.get(u),E=null;m||f?E=F.create(p.deleted,p.inserted,o(m,f),i):E=p,F.isInnerDifferent(E.deleted,E.inserted)&&(c[u]=E)}return c},s=r(this.added),a=r(this.removed),l=r(this.updated);return e.create(s,a,l,{shouldRedistribute:!0})}applyTo(t,n=tn.empty().elements,i){let o=new Map(t),r,s={containsVisibleDifference:!1,containsZindexDifference:!1,applyDirection:void 0};try{let a=e.createApplier(t,o,n,s,i),l=a(this.added),d=a(this.removed),c=a(this.updated),u=this.resolveConflicts(t,o,s.applyDirection);r=new Map([...l,...d,...c,...u])}catch(a){if(console.error("Couldn't apply elements delta",a),on()||nn())throw a;return[t,!0]}try{o=e.reorderElements(o,r,s),e.redrawElements(o,r)}catch(a){if(console.error("Couldn't mutate elements after applying elements change",a),on()||nn())throw a}finally{return[o,s.containsVisibleDifference]}}squash(t){if(t.isEmpty())return this;let{added:n,removed:i,updated:o}=t,r=(s,a)=>{let l=F.mergeArrays(s.deleted.boundElements??[],a.deleted.boundElements??[],void 0,c=>c.id)??[],d=F.mergeArrays(s.inserted.boundElements??[],a.inserted.boundElements??[],void 0,c=>c.id)??[];if(!(!l.length&&!d.length))return F.create({boundElements:l},{boundElements:d})};for(let[s,a]of Object.entries(n)){let l=this.added[s]??this.removed[s]??this.updated[s];if(!l)this.added[s]=a;else{let d=r(l,a);delete this.removed[s],delete this.updated[s],this.added[s]=F.merge(l,a,d)}}for(let[s,a]of Object.entries(i)){let l=this.added[s]??this.removed[s]??this.updated[s];if(!l)this.removed[s]=a;else{let d=r(l,a);delete this.added[s],delete this.updated[s],this.removed[s]=F.merge(l,a,d)}}for(let[s,a]of Object.entries(o)){let l=this.added[s]??this.removed[s]??this.updated[s];if(!l)this.updated[s]=a;else{let d=r(l,a),c=F.merge(l,a,d);l===this.added[s]?this.added[s]=c:l===this.removed[s]?this.removed[s]=c:this.updated[s]=c}}return(on()||nn())&&(e.validate(this,"added",e.satisfiesAddition),e.validate(this,"removed",e.satisfiesRemoval),e.validate(this,"updated",e.satisfiesUpdate)),this}static createApplier=(t,n,i,o,r)=>s=>{let a=e.createGetter(n,i,o);return Object.entries(s).reduce((l,[d,c])=>{let u=a(d,c.inserted);if(u){let p=e.applyDelta(u,c,o,r);if(n.set(p.id,p),l.set(p.id,p),!o.applyDirection){let m=t.get(d);m&&(o.applyDirection=m.version>p.version?"backward":"forward")}}return l},new Map)};static createGetter=(t,n,i)=>(o,r)=>{let s=t.get(o);return s||(s=n.get(o),s?(i.containsZindexDifference=!0,(!r.isDeleted||r.isDeleted&&!s.isDeleted)&&(i.containsVisibleDifference=!0)):s=Ee({id:o,version:1},{...r})),s};static applyDelta(t,n,i,o){let r={};for(let s of Object.keys(n.inserted)){if(s==="boundElements"||o?.excludedProperties?.has(s))continue;let a=n.inserted[s];Reflect.set(r,s,a)}if(n.deleted.boundElements?.length||n.inserted.boundElements?.length){let s=F.mergeArrays(t.boundElements,n.inserted.boundElements,n.deleted.boundElements,a=>a.id);Object.assign(r,{boundElements:s})}if(!i.containsVisibleDifference){let{index:s,...a}=r,l=e.checkForVisibleDifference(t,a);i.containsVisibleDifference=l}return i.containsZindexDifference||(i.containsZindexDifference=n.deleted.index!==n.inserted.index),Ee(t,r,!0)}static checkForVisibleDifference(t,n){return t.isDeleted&&n.isDeleted!==!1?!1:t.isDeleted&&n.isDeleted===!1||t.isDeleted===!1&&n.isDeleted?!0:F.isRightDifferent(t,n)}resolveConflicts(t,n,i="forward"){let o=new Map,r=(a,l)=>{let d=n.get(a.id);if(!d)return;let c=t.get(a.id),u=i==="forward"?d.version+1:d.version-1,p=l,m;c===d?m=Ee(d,{...p,version:u},!0):m=be(d,n,{...p,version:c?.version!==d.version?d.version:u}),o.set(m.id,m),n.set(m.id,m)};for(let a of Object.keys(this.removed))e.unbindAffected(t,n,a,r);for(let a of Object.keys(this.added))e.rebindAffected(t,n,a,r);for(let[a]of Array.from(Object.entries(this.updated)).filter(([l,d])=>Object.keys({...d.deleted,...d.inserted}).find(c=>qa.has(c)))){let l=n.get(a);!l||l.isDeleted||e.rebindAffected(t,n,a,r)}let s=new Map(Array.from(t).filter(([a])=>o.has(a)));return this.squash(e.calculate(s,o)),o}static unbindAffected(t,n,i,o){let r=()=>t.get(i),s=()=>n.get(i);Vt.unbindAffected(n,r(),o),Vt.unbindAffected(n,s(),o),$t.unbindAffected(n,r(),o),$t.unbindAffected(n,s(),o)}static rebindAffected(t,n,i,o){let r=()=>t.get(i),s=()=>n.get(i);Vt.unbindAffected(n,r(),o),Vt.rebindAffected(n,s(),o),$t.unbindAffected(n,r(),(a,l)=>{ie(a)&&o(a,l)}),$t.rebindAffected(n,s(),o)}static redrawElements(t,n){try{let i=new So(t,{skipValidation:!0});e.redrawTextBoundingBoxes(i,n),e.redrawBoundArrows(i,n)}catch(i){if(console.error("Couldn't redraw elements",i),on()||nn())throw i}finally{return t}}static redrawTextBoundingBoxes(t,n){let i=t.getNonDeletedElementsMap(),o=new Map;for(let r of n.values()){if(ce(r)){let{containerId:s}=r,a=s?i.get(s):void 0;a&&o.set(a.id,{container:a,boundText:r})}if(st(r)){let s=It(r),a=s?i.get(s):void 0;a&&o.set(r.id,{container:r,boundText:a})}}for(let{container:r,boundText:s}of o.values())r.isDeleted||s.isDeleted||wa(s,r,t)}static redrawBoundArrows(t,n){for(let i of n.values())!i.isDeleted&&Le(i)&&Ue(i,t,{changedElements:n})}static reorderElements(t,n,i){if(!i.containsZindexDifference)return t;let o=Array.from(t.values()),r=md([...o]),s=F.getRightDifferences(o,r,!0).reduce((a,l)=>{let d=o[Number(l)];return d&&n.has(d.id)&&a.set(d.id,d),a},new Map);return!i.containsVisibleDifference&&s.size&&(i.containsVisibleDifference=!0),hh(pi(r,s))}static postProcess(t,n){try{F.diffArrays(t,n,"boundElements",r=>r.id);let i=t.points??[],o=n.points??[];F.isDifferent(i,o)||(Reflect.deleteProperty(t,"points"),Reflect.deleteProperty(n,"points"))}catch(i){if(console.error("Couldn't postprocess elements delta."),on()||nn())throw i}finally{return[t,n]}}static stripIrrelevantProps(t){let{id:n,updated:i,...o}=t;return o}};P();var sP=(e,t,n,i)=>{let[o,r,s,a]=n.axis==="x"?["minX","midX","maxX","width"]:["minY","midY","maxY","height"],l=Ct(e),d=po(e,t,i).map(m=>[m,Ct(m)]).sort((m,f)=>m[1][r]-f[1][r]),c=0;for(let m of d)c+=m[1][a];let u=(l[a]-c)/(d.length-1);if(u<0){let m=d.findIndex(g=>g[1][o]===l[o]),f=d.findIndex(g=>g[1][s]===l[s]),E=(d[f][1][r]-d[m][1][r])/(d.length-1),h=d[m][1][r];return d.flatMap(([g,x],y)=>{let b={x:0,y:0};return y!==m&&y!==f&&(h+=E,b[n.axis]=h-x[r]),g.map(w=>Ee(w,{x:w.x+b.x,y:w.y+b.y}))})}let p=l[o];return d.flatMap(([m,f])=>{let E={x:0,y:0};return E[n.axis]=p-f[o],p+=u,p+=f[a],m.map(h=>Ee(h,{x:h.x+E.x,y:h.y+E.y}))})};P();import{TEXT_AUTOWRAP_THRESHOLD as Eh,getGridPoint as gh,getFontString as xh}from"@excalidraw/common";var EP=(e,t,n,i,o,r)=>{if(t.length===1&&G(t[0])&&(t[0].startBinding||t[0].endBinding))return;let s=t.filter(u=>{if(G(u)&&u.startBinding&&u.endBinding){let p=t.find(f=>f.id===u.startBinding?.elementId),m=t.find(f=>f.id===u.endBinding?.elementId);return p&&m}return!0}),a=new Set(s),l=s.filter(u=>Z(u)).map(u=>u.id);if(l.length>0)for(let u of i.getNonDeletedElements())u.frameId!==null&&l.includes(u.frameId)&&a.add(u);let d=[];for(let u of a){let p=e.originalElements.get(u.id);if(!p)return;d.push(p)}let c=wh(Xe(d),n,o,r);a.forEach(u=>{if(Ld(e,u,i,c),!Y(u)){let p=W(u,i.getNonDeletedElementsMap());p&&Ld(e,p,i,c),Ue(u,i,{simultaneouslyUpdated:Array.from(a)})}})},wh=(e,t,n,i)=>{let[o,r]=e,s=o+t.x+n.x,a=r+t.y+n.y;if(n.x===0||n.y===0){let[l,d]=gh(o+t.x,r+t.y,i);n.x===0&&(s=l),n.y===0&&(a=d)}return{x:s-o,y:a-r}},Ld=(e,t,n,i)=>{let o=e.originalElements.get(t.id)??t,r=o.x+i.x,s=o.y+i.y;n.mutateElement(t,{x:r,y:s})},gP=(e,t,n)=>{let[i,o]=Xe(e);return[t-i,n-o]},xP=({newElement:e,elementType:t,originX:n,originY:i,x:o,y:r,width:s,height:a,shouldMaintainAspectRatio:l,shouldResizeFromCenter:d,zoom:c,scene:u,widthAspectRatio:p=null,originOffset:m=null,informMutation:f=!0})=>{l&&e.type!=="selection"&&(p?a=s/p:(Math.abs(r-i)>Math.abs(o-n)?{width:s,height:a}=Wr(t,a,o<n?-s:s):{width:s,height:a}=Wr(t,s,r<i?-a:a),a<0&&(a=-a)));let E=o<n?n-s:n,h=r<i?i-a:i;d&&(s+=s,a+=a,E=n-s/2,h=i-a/2);let g=null;if(ie(e)){a=e.height;let x=Hi(xh({fontSize:e.fontSize,fontFamily:e.fontFamily}),e.lineHeight);s=Math.max(s,x),Math.abs(o-n)>Eh/c&&(g={autoResize:!1}),h=i,d&&(E=n-s/2)}if(s!==0&&a!==0){let x=null;we(e)&&(x={initialWidth:s,initialHeight:a}),u.mutateElement(e,{x:E+(m?.x??0),y:h+(m?.y??0),width:s,height:a,...g,...x},{informMutation:f,isDragging:!1})}};P();import{ELEMENT_LINK_KEY as Mo,normalizeLink as Cd}from"@excalidraw/common";var IP=(e,t)=>{let n=window.location.href;try{let i=new URL(n);return i.searchParams.set(Mo,e),Cd(i.toString())}catch(i){console.error(i)}return Cd(n)},SP=(e,t)=>{if(e.length>0&&yh(e)){if(e.length===1)return{id:e[0].id,type:"element"};if(e.length>1){let n=Object.keys(t.selectedGroupIds)[0];return n?{id:n,type:"group"}:{id:e[0].groupIds[0],type:"group"}}}return null},yh=e=>!!(e.length===1||e.length>1&&gl(e)),MP=e=>{try{let t=new URL(e);return t.searchParams.has(Mo)&&t.host===window.location.host}catch{return!1}},TP=e=>{try{let{searchParams:t}=new URL(e);if(t.has(Mo))return t.get(Mo)}catch{}return null};P();import{FONT_FAMILY as Bh,VERTICAL_ALIGN as Gh,escapeDoubleQuotes as os,getFontString as kh}from"@excalidraw/common";P();import{DEFAULT_ELEMENT_PROPS as rn,DEFAULT_FONT_FAMILY as bh,DEFAULT_FONT_SIZE as Ph,DEFAULT_TEXT_ALIGN as Ih,DEFAULT_VERTICAL_ALIGN as Sh,VERTICAL_ALIGN as Mh,randomInteger as Th,randomId as Ah,getFontString as To,getUpdatedTimestamp as Dh,getLineHeight as vh}from"@excalidraw/common";var nt=(e,{x:t,y:n,strokeColor:i=rn.strokeColor,backgroundColor:o=rn.backgroundColor,fillStyle:r=rn.fillStyle,strokeWidth:s=rn.strokeWidth,strokeStyle:a=rn.strokeStyle,roughness:l=rn.roughness,opacity:d=rn.opacity,width:c=0,height:u=0,angle:p=0,groupIds:m=[],frameId:f=null,index:E=null,roundness:h=null,boundElements:g=null,link:x=null,locked:y=rn.locked,...b})=>((t<-1e6||t>1e6||n<-1e6||n>1e6||c<-1e6||c>1e6||u<-1e6||u>1e6)&&console.error("New element size or position is too large",{x:t,y:n,width:c,height:u,points:b.points}),{id:b.id||Ah(),type:e,x:t,y:n,width:c,height:u,angle:p,strokeColor:i,backgroundColor:o,fillStyle:r,strokeWidth:s,strokeStyle:a,roughness:l,opacity:d,groupIds:m,frameId:f,index:E,roundness:h,seed:b.seed??Th(),version:b.version||1,versionNonce:b.versionNonce??0,isDeleted:!1,boundElements:g,updated:Dh(),link:x,locked:y,customData:b.customData}),is=e=>nt(e.type,e),RP=e=>nt("embeddable",e),FP=e=>({...nt("iframe",e)}),NP=e=>Ee({...nt("frame",e),type:"frame",name:e?.name||null},{}),HP=e=>Ee({...nt("magicframe",e),type:"magicframe",name:e?.name||null},{}),Bd=(e,t)=>({x:e.textAlign==="center"?t.width/2:e.textAlign==="right"?t.width:0,y:e.verticalAlign==="middle"?t.height/2:0}),Gd=e=>{let t=e.fontFamily||bh,n=e.fontSize||Ph,i=e.lineHeight||vh(t),o=nr(e.text),r=Je(o,To({fontFamily:t,fontSize:n}),i),s=e.textAlign||Ih,a=e.verticalAlign||Sh,l=Bd({textAlign:s,verticalAlign:a},r),d={...nt("text",e),text:o,fontSize:n,fontFamily:t,textAlign:s,verticalAlign:a,x:e.x-l.x,y:e.y-l.y,width:r.width,height:r.height,containerId:e.containerId||null,originalText:e.originalText??o,autoResize:e.autoResize??!0,lineHeight:i};return Ee(d,{})},Lh=(e,t,n)=>{let{width:i,height:o}=Je(n,To(e),e.lineHeight);e.autoResize||(i=e.width);let{textAlign:r,verticalAlign:s}=e,a,l;if(r==="center"&&s===Mh.MIDDLE&&!e.containerId&&e.autoResize){let d=Je(e.text,To(e),e.lineHeight),c=Bd(e,{width:i-d.width,height:o-d.height});a=e.x-c.x,l=e.y-c.y}else{let[d,c,u,p]=_(e,t),[m,f,E,h]=Nt(e,i,o,!1),g=(d-m)/2,x=(c-f)/2,y=(u-E)/2,b=(p-h)/2;[a,l]=Ch({s:!0,e:r==="center"||r==="left",w:r==="center"||r==="right"},e.x,e.y,e.angle,g,x,y,b)}return{width:i,height:o,x:Number.isFinite(a)?a:e.x,y:Number.isFinite(l)?l:e.y}},Ch=(e,t,n,i,o,r,s,a)=>{let l=Math.cos(i),d=Math.sin(i);return e.e&&e.w?t+=o+s:e.e?(t+=o*(1+l),n+=o*d,t+=s*(1-l),n+=s*-d):e.w&&(t+=o*(1-l),n+=o*-d,t+=s*(1+l),n+=s*d),e.n&&e.s?n+=r+a:e.n?(t+=r*d,n+=r*(1-l),t+=a*-d,n+=a*(1+l)):e.s&&(t+=r*-d,n+=r*(1+l),t+=a*d,n+=a*(1-l)),[t,n]},zP=(e,t,n,i=e.text)=>{if(e.isDeleted)return;(t||!e.autoResize)&&(i=Pt(i,To(e),t?et(t,e):e.width));let o=Lh(e,n,i);return{text:i,...o}},_P=e=>({...nt(e.type,e),points:e.points||[],pressures:e.pressures||[],simulatePressure:e.simulatePressure,lastCommittedPoint:null}),YP=e=>{let t={...nt(e.type,e),points:e.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:null,endArrowhead:null};return mn(t)?{...t,polygon:e.polygon??!1}:t},kd=e=>e.elbowed?{...nt(e.type,e),points:e.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:e.startArrowhead||null,endArrowhead:e.endArrowhead||null,elbowed:!0,fixedSegments:e.fixedSegments||[],startIsSpecial:!1,endIsSpecial:!1}:{...nt(e.type,e),points:e.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:e.startArrowhead||null,endArrowhead:e.endArrowhead||null,elbowed:!1},UP=e=>({...nt("image",e),strokeColor:"transparent",status:e.status??"pending",fileId:e.fileId??null,scale:e.scale??[1,1],crop:e.crop??null});var ft=new Map,Oh=/^(?:http(?:s)?:\/\/)?(?:www\.)?youtu(?:be\.com|\.be)\/(embed\/|watch\?v=|shorts\/|playlist\?list=|embed\/videoseries\?list=)?([a-zA-Z0-9_-]+)/,Rh=/^(?:http(?:s)?:\/\/)?(?:(?:w){3}\.)?(?:player\.)?vimeo\.com\/(?:video\/)?([^?\s]+)(?:\?.*)?$/,Fh=/^https:\/\/(?:www\.)?figma\.com/,Od=/^https:\/\/gist\.github\.com\/([\w_-]+)\/([\w_-]+)/,Nh=/^<script[\s\S]*?\ssrc=["'](https:\/\/gist\.github\.com\/.*?)\.js["']/i,Hh=/^(?:https?:\/\/)?forms\.microsoft\.com\//,Rd=/(?:https?:\/\/)?(?:(?:w){3}\.)?(?:twitter|x)\.com\/[^/]+\/status\/(\d+)/,zh=/^<blockquote[\s\S]*?\shref=["'](https?:\/\/(?:twitter|x)\.com\/[^"']*)/i,_h=/^https:\/\/(?:www\.)?val\.town\/(v|embed)\/[a-zA-Z_$][0-9a-zA-Z_$]+\.[a-zA-Z_$][0-9a-zA-Z_$]+/,Yh=/^<(?:iframe|blockquote)[\s\S]*?\s(?:src|href)=["']([^"']*)["'][\s\S]*?>$/i,Fd=/giphy.com\/(?:clips|embed|gifs)\/[a-zA-Z0-9]*?-?([a-zA-Z0-9]+)(?:[^a-zA-Z0-9]|$)/,Nd=/^(?:http(?:s)?:\/\/)?(?:www\.)?reddit\.com\/r\/([a-zA-Z0-9_]+)\/comments\/([a-zA-Z0-9_]+)\/([a-zA-Z0-9_]+)\/?(?:\?[^#\s]*)?(?:#[^\s]*)?$/,Uh=/^<blockquote[\s\S]*?\shref=["'](https?:\/\/(?:www\.)?reddit\.com\/[^"']*)/i,Xh=e=>{let t;try{let s=new URL(e.startsWith("http")?e:`https://${e}`);t=s.searchParams.get("t")||s.searchParams.get("start")}catch{t=e.match(/[?&#](?:t|start)=([^&#\s]+)/)?.[1]}if(!t)return 0;if(/^\d+$/.test(t))return parseInt(t,10);let n=t.match(/^(?:(\d+)h)?(?:(\d+)m)?(?:(\d+)s)?$/);if(!n)return 0;let[,i="0",o="0",r="0"]=n;return parseInt(i)*3600+parseInt(o)*60+parseInt(r)},ss=new Set(["youtube.com","youtu.be","vimeo.com","player.vimeo.com","figma.com","link.excalidraw.com","gist.github.com","twitter.com","x.com","*.simplepdf.eu","stackblitz.com","val.town","giphy.com","reddit.com","forms.microsoft.com"]),Hd=new Set(["youtube.com","youtu.be","vimeo.com","player.vimeo.com","figma.com","twitter.com","x.com","*.simplepdf.eu","stackblitz.com","reddit.com","forms.microsoft.com"]),rs=e=>`<html><body>${e}</body></html>`,qP=e=>{if(!e)return null;if(ft.has(e))return ft.get(e);let t=e,n=Hd.has(as(e,Hd)||""),i="generic",o={w:560,h:840},r=e.match(Oh);if(r?.[2]){let d=Xh(t),c=d>0?`&start=${d}`:"",u=e.includes("shorts");switch(i="video",r[1]){case"embed/":case"watch?v=":case"shorts/":e=`https://www.youtube.com/embed/${r[2]}?enablejsapi=1${c}`;break;case"playlist?list=":case"embed/videoseries?list=":e=`https://www.youtube.com/embed/videoseries?list=${r[2]}&enablejsapi=1${c}`;break;default:e=`https://www.youtube.com/embed/${r[2]}?enablejsapi=1${c}`;break}return o=u?{w:315,h:560}:{w:560,h:315},ft.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}}let s=e.match(Rh);if(s?.[1]){let d=s?.[1],c=/^\d+$/.test(d)?void 0:new URIError("Invalid embed link format");return i="video",e=`https://player.vimeo.com/video/${d}?api=1`,o={w:560,h:315},ft.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,error:c,sandbox:{allowSameOrigin:n}}}if(e.match(Fh))return i="generic",e=`https://www.figma.com/embed?embed_host=share&url=${encodeURIComponent(e)}`,o={w:550,h:550},ft.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}};let l=e.match(_h);if(l)return e=l[1]==="embed"?l[0]:l[0].replace("/v","/embed"),ft.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}};if(Hh.test(e)&&!e.includes("embed=true")&&(e+=e.includes("?")?"&embed=true":"?embed=true"),Rd.test(e)){let d=e.match(Rd)[1],c=os(`https://twitter.com/x/status/${d}`),u={type:"document",srcdoc:p=>rs(`<blockquote class="twitter-tweet" data-dnt="true" data-theme="${p}"><a href="${c}"></a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"><\/script>`),intrinsicSize:{w:480,h:480},sandbox:{allowSameOrigin:n}};return ft.set(t,u),u}if(Nd.test(e)){let[,d,c,u]=e.match(Nd),p=os(`https://reddit.com/r/${d}/comments/${c}/${u}`),m={type:"document",srcdoc:f=>rs(`<blockquote class="reddit-embed-bq" data-embed-theme="${f}"><a href="${p}"></a><br></blockquote><script async="" src="https://embed.reddit.com/widgets.js" charset="UTF-8"><\/script>`),intrinsicSize:{w:480,h:480},sandbox:{allowSameOrigin:n}};return ft.set(t,m),m}if(Od.test(e)){let[,d,c]=e.match(Od),u=os(`https://gist.github.com/${d}/${c}`),p={type:"document",srcdoc:()=>rs(`
|
|
21
|
-
|
|
12
|
+
`),d.stack,e.map(u=>s(u)),...c),t)throw d}},Jd=e=>e.sort((t,n)=>Qd(t)&&Qd(n)?t.index<n.index?-1:t.index>n.index?1:t.id<n.id?-1:1:1),ni=(e,t)=>{try{let n=lr(e),i=gh(e,t),o=Vs(e,i),r=e.map(s=>{let a=o.get(s);return a?{...s,index:a.index}:s});hh(r,{includeBoundTextValidation:!1,shouldThrow:!0,ignoreLogs:!0});for(let[s,{index:a}]of o)Fe(s,n,{index:a})}catch{$s(e)}return e},$s=e=>{let t=lr(e),n=tc(e),i=Vs(e,n);for(let[o,{index:r}]of i)Fe(o,t,{index:r});return e},ec=e=>{let t=lr(e),n=tc(e),i=Vs(e,n);for(let[o,{index:r}]of i)t.set(o.id,Ke(o,{index:r}));return t},gh=(e,t)=>{let n=[],i=0;for(;i<e.length;)if(t.has(e[i].id)){let o=[i-1,i];for(;++i<e.length&&t.has(e[i].id);)o.push(i);o.push(i),n.push(o)}else i++;return n},tc=e=>{let t=[],n,i,o=-1,r=0,s=d=>{let c=e[o]?e[o].index:void 0,u=e[d-1]?.index;return!c&&u||c&&u&&u>c?[u,d-1]:[c,o]},a=d=>{let c=e[r]?e[r].index:void 0;if(c&&d<r)return[c,r];let u=r;for(;++u<e.length;){let m=e[u]?.index;if(!c&&m||c&&m&&m>c)return[m,u]}return[void 0,u]},l=0;for(;l<e.length;){let d=e[l].index;if([n,o]=s(l),[i,r]=a(l),js(d,n,i))l++;else{let c=[o,l];for(;++l<e.length;){let u=e[l].index,[m,p]=s(l),[h,f]=a(l);if(js(u,m,h))break;[n,o]=[m,p],[i,r]=[h,f],c.push(l)}c.push(r),t.push(c)}}return t},js=(e,t,n)=>{if(!e)return!1;try{ph(e)}catch{return!1}return t&&n?t<e&&e<n:!t&&n?e<n:t&&!n?t<e:!!e},Vs=(e,t)=>{let n=new Map;for(let i of t){let o=i.shift(),r=i.pop(),s=fh(e[o]?.index,e[r]?.index,i.length);for(let a=0;a<i.length;a++){let l=e[i[a]];n.set(l,{index:s[a]})}}return n},Qd=e=>!!e.index;var nc=(e,t,n)=>{let i=Gt(e);for(let o of t)if(o.frameId){let r=n.get(o.id),s=n.get(o.frameId),a=r&&i.get(r);a&&Fe(a,i,{frameId:s??null})}};function Si(e,t,n){let i=Ii(t,n),o=Ii(e,n);return i.some(s=>o.some(a=>xh(s,a)))}var ic=(e,t,n)=>dr(Zd(e,t,n,!1)).filter(i=>!J(i)&&!i.frameId||i.frameId===t.id),Ks=(e,t,n)=>Qs(ue(e,n),ue(t,n)),EI=(e,t)=>{let n=Gt(e);return e.filter(i=>Si(i,t,n))},Gn=(e,t,n)=>{let[i,o,r,s]=Z(t,n),[a,l,d,c]=Je(e);return i<=a&&o<=l&&r>=d&&s>=c},Ln=(e,t,n)=>Gn([e],t,n)||Si(e,t,n)||Ks(e,t,n),xI=(e,t,n)=>{let[i,o,r,s]=Z(t,n);return Eh(Zs(i,o),Zs(e.x,e.y),Zs(r,s))},bI=(e,t,n)=>{let i=Gt(e),o=t.flatMap(r=>Qe(e,r));return o.length===0?!0:!!o.find(r=>Gn([r],n,i)||Si(r,n,i))},wI=(e,t,n)=>{let i=Gt(e),o=t.flatMap(r=>Qe(e,r));return o.length===0?!0:o.find(r=>Gn([r],n,i)||Si(r,n,i))===void 0},yI=e=>{let t=new Map;for(let n of e){let i=J(n)?n.id:n.frameId;i&&!t.has(i)&&t.set(i,Bn(e,i))}return t},Bn=(e,t)=>{let n=[];for(let i of e.values())i.frameId===t&&n.push(i);return n},qs=e=>e.filter(t=>J(t)),PI=e=>{let t=Gt(qs(e));return e.filter(n=>t.has(n.id)||!n.frameId||!t.has(n.frameId))},II=(e,t,n,i)=>{let o=Bn(e,t.id),r=new Set(o),s=new Set([...ic(e,t,i),...o.filter(p=>Ks(p,t,i))]),a=o.filter(p=>!s.has(p)),l=new Set(Array.from(s).flatMap(p=>p.groupIds));for(let p of a)if(!Si(p,t,i))p.groupIds.length===0&&r.delete(p);else if(p.groupIds.length>0)for(let h of p.groupIds)l.add(h);for(let p of a)if(p.groupIds.length>0){let h=!0;for(let f of p.groupIds)l.has(f)&&(h=!1);h&&r.delete(p)}let d=Array.from(s).filter(p=>p.groupIds.length===0);for(let p of d)r.add(p);let c=Array.from(s).filter(p=>p.groupIds.length>0),u=kn(c),m=Yd(u,n);for(let[p,h]of Object.entries(m))if(h){let f=Qe(e,p);if(Gn(f,t,i))for(let g of f)r.add(g)}return[...r].filter(p=>!(oe(p)&&p.containerId))},SI=(e,t,n)=>bh(dr(e,ic(e,t,n)),t,n),bh=(e,t,n)=>{let i=[],o=new Map;for(let r of e){let s=!1;if(r.groupIds.length>0){if(r.groupIds.some(a=>o.get(a)))s=!0;else{let a=new Set(r.groupIds.flatMap(l=>Qe(n,l)));s=!Gn(Array.from(a),t,n)}r.groupIds.forEach(a=>{o.set(a,s)})}s||i.push(r)}return i},Cn=(e,t)=>e.frameId&&t.get(e.frameId)||null,MI=(e,t)=>{let n=new Set,i=Gt(e);e=dr(e);for(let s of e)J(s)&&s.id!==t.id&&n.add(s.id);let o=new Set,r=[];for(let s of e)if(!(J(s)||s.frameId&&n.has(s.frameId)))if(s.groupIds.length){let a=s.groupIds.at(-1);if(!o.has(a)){o.add(a);let l=Qe(e,a);if(l.some(d=>Ln(d,t,i)))for(let d of l)r.push(d)}}else Ln(s,t,i)&&r.push(s);return r},wh=e=>{let t;for(let n of e){if(J(n)||!n.frameId)return null;if(t===void 0)t=n.frameId;else if(t!==n.frameId)return null}return t??null},yh=(e,t)=>{for(let n=e.length-1;n>=0;n--){let i=e[n];if(i.id===t)return n;if(i.frameId===t)return n+1}return null},Ph=(e,t,n)=>{let i=Gt(e),o=wh(t),r=new Set,s=new Set;for(let c of t)J(c)&&c.id!==n.id&&s.add(c.id);for(let c of dr(e,t)){if(J(c)||c.frameId&&s.has(c.frameId))continue;r.add(c);let u=de(c,i);u&&!r.has(u)&&r.add(u)}for(let c of r)c.frameId!==n.id&&Fe(c,i,{frameId:n.id});if(!r.size||o===n.id)return e;let a=Array.from(e.values()).filter(c=>!r.has(c)),l=yh(a,n.id);if(l===null)return e;let d=[...a.slice(0,l),...r,...a.slice(l)];return ni(d,Gt([...r])),Array.isArray(e)?d:new Map(d.map(c=>[c.id,c]))},oc=(e,t)=>{let n=new Map,i=new Map;for(let o of e)if(o.frameId){n.set(o.id,o);let r=i.get(o.frameId)||[];r.push(o);let s=de(o,t);s&&(n.set(s.id,s),r.push(s)),i.set(o.frameId,r)}for(let[,o]of n)Fe(o,t,{frameId:null})},Ih=(e,t)=>{let n=Bn(e,t.id);return oc(n,Gt(e)),e},AI=(e,t,n)=>Ph(Ih(e,n),t,n).slice(),TI=(e,t,n)=>{let i=n.scene.getSelectedElements({selectedElementIds:t.selectedElementIds,elements:e}),o=new Set(i);if(t.editingGroupId)for(let a of i)a.groupIds.length===0?o.add(a):a.groupIds.flatMap(l=>Qe(e,l)).forEach(l=>o.add(l));let r=new Set,s=Gt(e);return o.forEach(a=>{a.frameId&&!J(a)&&!rc(a,s,t)&&r.add(a)}),r.size>0&&oc(r,s),e},dr=(e,t)=>{let n=new Set,i=t||e;for(let s of i.values()){let a=s.groupIds[s.groupIds.length-1];a&&n.add(a)}let o=new Set;for(let s of n)Qe(e,s).some(a=>J(a))&&o.add(s);let r=[];for(let s of i.values())o.has(s.groupIds[s.groupIds.length-1])||r.push(s);return r},Sh=(e,t,n)=>{let i=oe(e)&&Ue(e,t)||e;return i.frameId&&n.selectedElementIds[i.id]&&n.selectedElementIds[i.frameId]?Cn(i,t):n.selectedElementIds[i.id]&&n.selectedElementsAreBeingDragged?n.frameToHighlight:Cn(i,t)},rc=(e,t,n,i)=>{let o=i?.targetFrame??Sh(e,t,n);if(!o)return!1;let r=oe(e)&&Ue(e,t)||e,s=l=>{i?.checkedGroups&&r.groupIds.forEach(d=>{i.checkedGroups?.set(d,l)})};if(!n.selectedElementIds[r.id]||!n.selectedElementsAreBeingDragged||n.selectedElementIds[r.id]&&n.selectedElementIds[o.id])return!0;if(r.groupIds.length===0)return Ln(r,o,t);for(let l of r.groupIds)if(i?.checkedGroups?.has(l))return i.checkedGroups.get(l);let a=new Set(r.groupIds.filter(l=>i?.checkedGroups?!i.checkedGroups.has(l):!0).flatMap(l=>Qe(t,l)));if(n.editingGroupId&&n.selectedElementsAreBeingDragged){let l=new Set(Zt(t,n));if(n.frameToHighlight!==null)return!0;l.forEach(c=>{a.delete(c)})}for(let l of a)if(J(l))return s(!1),!1;for(let l of a)if(Ln(l,o,t))return s(!0),!0;return!1},DI=(e,t,n,i,o)=>{if(!n.frameRendering||!n.frameRendering.clip)return!1;let r=Si(e,t,i)||Ks(e,t,i);if(r){for(let s of e.groupIds)o?.set(s,!0);return!0}if(!r&&e.groupIds.length>0&&!Gn([e],t,i)){let s=!1;if(n.selectedElementsAreBeingDragged)s=rc(e,i,n,{targetFrame:t,checkedGroups:o});else{s=e.frameId===t.id;for(let a of e.groupIds)o?.set(a,s)}for(let a of e.groupIds)o?.set(a,s);return s}return!1},Mh="Frame",Ah="AI Frame",Th=e=>ko(e)?Mh:Ah,vI=e=>e.name===null?Th(e):e.name,BI=(e,t,n)=>e.filter(i=>(!i.frameId||i.frameId===t.id)&>(ue(i,n),ue(t,n))),LI=e=>{let t=Gt(e);return e.length>1&&e.some(n=>n.frameId&&t.has(n.frameId))};var Fh=(e,t)=>Vn(e)&&!t.imageCache.has(e.fileId),fr=e=>{switch(e.type){case"freedraw":return e.strokeWidth*12;case"text":return e.fontSize/2;case"arrow":return e.endArrowhead||e.endArrowhead?40:20;default:return 20}},Rh=(e,t,n,i,o=1)=>{let r=(t?.opacity??100)*e.opacity/1e4*o;return(n.has(e.id)||i&&i.some(s=>s.id===e.id)||t&&n.has(t.id))&&(r*=Bh/100),r},zh=(e,t,n)=>{let r=fr(e),[s,a,l,d]=Z(e,t),c=K(e)||be(e)?Nn(s,l):e.width,u=K(e)||be(e)?Nn(a,d):e.height,m=c*window.devicePixelRatio+r*2,p=u*window.devicePixelRatio+r*2,h=n.value;return(m*h>32767||p*h>32767)&&(h=Math.min(32767/m,32767/p)),m*p*h*h>16777216&&(h=Math.sqrt(16777216/(m*p))),m=Math.floor(m*h),p=Math.floor(p*h),{width:m,height:p,scale:h}},lc=(e,t,n,i,o)=>{let r=document.createElement("canvas"),s=r.getContext("2d"),a=fr(e),{width:l,height:d,scale:c}=zh(e,t,n);if(!l||!d)return null;r.width=l,r.height=d;let u=-100,m=0;if(K(e)||be(e)){let[h,f]=Z(e,t);u=e.x>h?Nn(e.x,h)*window.devicePixelRatio*c:0,m=e.y>f?Nn(e.y,f)*window.devicePixelRatio*c:0,s.translate(u,m)}s.save(),s.translate(a*c,a*c),s.scale(window.devicePixelRatio*c,window.devicePixelRatio*c);let p=ci.canvas(r);return mr(e,p,s,i),s.restore(),{element:e,canvas:r,theme:o.theme,scale:c,zoomValue:n.value,canvasOffsetX:u,canvasOffsetY:m,containingFrameOpacity:Cn(e,t)?.opacity||100,imageCrop:ke(e)?e.crop:null}},jI=14,dc=typeof document<"u"?document.createElement("img"):{src:""};dc.src=`data:${ta.svg},${encodeURIComponent('<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="image" class="svg-inline--fa fa-image fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#888" d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"></path></svg>')}`;var cc=typeof document<"u"?document.createElement("img"):{src:""};cc.src=`data:${ta.svg},${encodeURIComponent('<svg viewBox="0 0 668 668" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"><path d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48ZM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56ZM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.81709 0 0 .81709 124.825 145.825)"/><path d="M256 8C119.034 8 8 119.033 8 256c0 136.967 111.034 248 248 248s248-111.034 248-248S392.967 8 256 8Zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676ZM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.30366 0 0 .30366 506.822 60.065)"/></svg>')}`;var _h=(e,t,n)=>{t.fillStyle=n===Mi.DARK?"#2E2E2E":"#E7E7E7",t.fillRect(0,0,e.width,e.height);let i=Math.min(e.width,e.height),o=Math.min(i,Math.min(i*.4,100));t.drawImage(e.status==="error"?cc:dc,e.width/2-o/2,e.height/2-o/2,o,o)},mr=(e,t,n,i)=>{switch(e.type){case"rectangle":case"iframe":case"embeddable":case"diamond":case"ellipse":{n.lineJoin="round",n.lineCap="round",t.draw(Et.generateElementShape(e,i));break}case"arrow":case"line":{n.lineJoin="round",n.lineCap="round",Et.generateElementShape(e,i).forEach(o=>{t.draw(o)});break}case"freedraw":{n.save();let o=Et.generateElementShape(e,i);for(let r of o)typeof r=="string"?(n.fillStyle=pr(e.strokeColor,i.theme===Mi.DARK),n.fill(new Path2D(r))):t.draw(r);n.restore();break}case"image":{n.save();let o=e.fileId!==null?i.imageCache.get(e.fileId):null,r=Vn(e)?o?.image:void 0;if(r!=null&&!(r instanceof Promise)){e.roundness&&n.roundRect&&(n.beginPath(),n.roundRect(0,0,e.width,e.height,nn(Math.min(e.width,e.height),e)),n.clip());let{x:s,y:a,width:l,height:d}=e.crop?e.crop:{x:0,y:0,width:r.naturalWidth,height:r.naturalHeight},c=i.theme===Mi.DARK&&o?.mimeType===ta.svg;if(c&&Nh){let u=window.devicePixelRatio||1,m=document.createElement("canvas");m.width=e.width*u,m.height=e.height*u;let p=m.getContext("2d");if(p){p.scale(u,u),p.drawImage(r,s,a,l,d,0,0,e.width,e.height);let h=p.getImageData(0,0,m.width,m.height),f=h.data;for(let g=0;g<f.length;g+=4)f[g]=255-f[g],f[g+1]=255-f[g+1],f[g+2]=255-f[g+2];p.putImageData(h,0,0),n.drawImage(m,0,0,m.width,m.height,0,0,e.width,e.height)}}else c&&(n.filter=Lh),n.drawImage(r,s,a,l,d,0,0,e.width,e.height)}else _h(e,n,i.theme);n.restore();break}default:if(oe(e)){let o=Gh(e.text),r=o&&!n.canvas.isConnected;r&&document.body.appendChild(n.canvas),n.canvas.setAttribute("dir",o?"rtl":"ltr"),n.save(),n.font=Ch(e),n.fillStyle=pr(e.strokeColor,i.theme===Mi.DARK),n.textAlign=e.textAlign;let s=e.text.replace(/\r\n?/g,`
|
|
13
|
+
`).split(`
|
|
14
|
+
`),a=e.textAlign==="center"?e.width/2:e.textAlign==="right"?e.width:0,l=_o(e.fontSize,e.lineHeight),d=kh(e.fontFamily,e.fontSize,l);for(let c=0;c<s.length;c++)n.fillText(s[c],a,c*l+d);n.restore(),r&&n.canvas.remove()}else throw new Error(`Unimplemented type ${e.type}`)}},oo=new WeakMap,ac=(e,t,n,i)=>{let o=n?i.zoom:{value:1},r=oo.get(e),s=r&&r.zoomValue!==o.value&&!i?.shouldCacheIgnoreZoom,a=ke(e)?e.crop:null,l=Cn(e,t)?.opacity||100;if(!r||s||r.theme!==i.theme||r.imageCrop!==a||r.containingFrameOpacity!==l){let d=lc(e,t,o,n,i);return d?(oo.set(e,d),d):null}return r},ea=(e,t,n,i,o)=>{let r=e.element,s=fr(r),[a,l,d,c]=Z(r,o),u=((a+d)/2+i.scrollX)*window.devicePixelRatio,m=((l+c)/2+i.scrollY)*window.devicePixelRatio;t.save(),t.scale(1/window.devicePixelRatio,1/window.devicePixelRatio);let p=de(r,o);if(X(r)&&p){let[,,,,h,f]=Z(p,o),g=Math.max(Nn(a,d),Nn(l,c))*window.devicePixelRatio+s*10;t.beginPath(),t.rect(u-g,m-g,g*2,g*2),t.rect((h-p.width/2-On+i.scrollX)*window.devicePixelRatio,(f-p.height/2-On+i.scrollY)*window.devicePixelRatio,(p.width+On*2)*window.devicePixelRatio,(p.height+On*2)*window.devicePixelRatio),t.clip("evenodd")}if(t.translate(u,m),t.rotate(r.angle),"scale"in e.element&&!Fh(r,n)&&t.scale(e.element.scale[0],e.element.scale[1]),t.translate(-u,-m),t.drawImage(e.canvas,(a+i.scrollX)*window.devicePixelRatio-s*e.scale/e.scale,(l+i.scrollY)*window.devicePixelRatio-s*e.scale/e.scale,e.canvas.width/e.scale,e.canvas.height/e.scale),N.VITE_APP_DEBUG_ENABLE_TEXT_CONTAINER_BOUNDING_BOX==="true"&&_t(r)){let h=de(r,o),f=fs(r);t.strokeStyle="#c92a2a",t.lineWidth=3,t.strokeRect((f.x+i.scrollX)*window.devicePixelRatio,(f.y+i.scrollY)*window.devicePixelRatio,vt(r,h)*window.devicePixelRatio,qi(r,h)*window.devicePixelRatio)}t.restore()},$I=(e,t,n,i)=>{t.save(),t.translate(e.x+n.scrollX,e.y+n.scrollY),t.fillStyle="rgba(0, 0, 200, 0.04)";let o=.5/n.zoom.value;t.fillRect(o,o,e.width,e.height),t.lineWidth=1/n.zoom.value,t.strokeStyle=i,t.strokeRect(o,o,e.width,e.height),t.restore()},VI=(e,t,n,i,o,r,s)=>{let a=s.openDialog?.name==="elementLinkSelector"&&!s.selectedElementIds[e.id]&&!s.hoveredElementIds[e.id];switch(o.globalAlpha=Rh(e,Cn(e,t),r.elementsPendingErasure,r.pendingFlowchartNodes,a?vh:1),e.type){case"magicframe":case"frame":{s.frameRendering.enabled&&s.frameRendering.outline&&(o.save(),o.translate(e.x+s.scrollX,e.y+s.scrollY),o.fillStyle="rgba(0, 0, 200, 0.04)",o.lineWidth=ur.strokeWidth/s.zoom.value,o.strokeStyle=pr(ur.strokeColor,s.theme===Mi.DARK),Ml(e)&&(o.strokeStyle=s.theme===Mi.LIGHT?"#7affd7":pr("#1d8264")),ur.radius&&o.roundRect?(o.beginPath(),o.roundRect(0,0,e.width,e.height,ur.radius/s.zoom.value),o.stroke(),o.closePath()):o.strokeRect(0,0,e.width,e.height),o.restore());break}case"freedraw":{if(r.isExporting){let[l,d,c,u]=Z(e,t),m=(l+c)/2+s.scrollX,p=(d+u)/2+s.scrollY,h=(c-l)/2-(e.x-l),f=(u-d)/2-(e.y-d);o.save(),o.translate(m,p),o.rotate(e.angle),o.translate(-h,-f),mr(e,i,o,r),o.restore()}else{let l=ac(e,n,r,s);if(!l)return;ea(l,o,r,s,n)}break}case"rectangle":case"diamond":case"ellipse":case"line":case"arrow":case"image":case"text":case"iframe":case"embeddable":{if(r.isExporting){let[l,d,c,u]=Z(e,t),m=(l+c)/2,p=(d+u)/2,h=m+s.scrollX,f=p+s.scrollY,g=(c-l)/2-(e.x-l),E=(u-d)/2-(e.y-d);if(oe(e)){let b=Ue(e,t);if(X(b)){let y=R.getBoundTextElementPosition(b,e,t);g=(c-l)/2-(y.x-l),E=(u-d)/2-(y.y-d)}}o.save(),o.translate(h,f);let x=de(e,t);if(X(e)&&x){g=e.width/2-(e.x-l),E=e.height/2-(e.y-d);let[,,,,b,y]=Z(x,t),w=b-m-x.width/2-On,M=y-p-x.height/2-On,S=x.width+On*2,T=x.height+On*2,A=Math.max(Nn(l,c),Nn(d,u))+fr(e)*10;o.save(),o.beginPath(),o.rect(-A,-A,A*2,A*2),o.rect(w,M,S,T),o.clip("evenodd"),o.rotate(e.angle),o.translate(-g,-E),mr(e,i,o,r),o.restore()}else o.rotate(e.angle),e.type==="image"&&o.scale(e.scale[0],e.scale[1]),o.translate(-g,-E),mr(e,i,o,r);o.restore()}else{let l=ac(e,n,r,s);if(!l)return;let d=o.imageSmoothingEnabled;if(!s?.shouldCacheIgnoreZoom&&(!e.angle||Dh(e.angle))&&(o.imageSmoothingEnabled=!1),e.id===s.croppingElementId&&ke(l.element)&&l.element.crop!==null){o.save(),o.globalAlpha=.1;let c=lc(Pl(l.element,t),n,s.zoom,r,s);c&&ea(c,o,r,s,n),o.restore()}ea(l,o,r,s,n),o.imageSmoothingEnabled=d}break}default:throw new Error(`Unimplemented type ${e.type}`)}o.globalAlpha=1};function ZI(e,t,n){let i=ue({...e,angle:0},n),o=cr((i[0]+i[2])/2,(i[1]+i[3])/2);return Oh(t.length>=2,"Freepath outline must have at least 2 points"),t.slice(2).reduce((r,s)=>(r.push(sc(r[r.length-1][1],Js(cr(s[0]+e.x,s[1]+e.y),o,e.angle))),r),[sc(Js(cr(t[0][0]+e.x,t[0][1]+e.y),o,e.angle),Js(cr(t[1][0]+e.x,t[1][1]+e.y),o,e.angle))])}var Et=class e{static rg=new bt;static cache=new WeakMap;static get=(t,n)=>{let i=e.cache.get(t);if(i&&(n===null||i.theme===n))return i.shape};static delete=t=>{e.cache.delete(t),oo.delete(t)};static destroy=()=>{e.cache=new WeakMap};static generateElementShape=(t,n)=>{let i=n?.isExporting?void 0:e.get(t,n?n.theme:null);if(i!==void 0)return i;oo.delete(t);let o=Vh(t,e.rg,n||{isExporting:!1,canvasBackgroundColor:Uh.white,embedsValidationStatus:null,theme:ia.LIGHT});return n?.isExporting||e.cache.set(t,{shape:o,theme:n?.theme||ia.LIGHT}),o}},jh=e=>[8,8+e],hc=e=>[1.5,6+e];function $h(e){let t=e.roughness,n=Math.max(e.width,e.height),i=Math.min(e.width,e.height);return i>=20&&n>=50||i>=15&&e.roundness&&$l(e.type)||K(e)&&n>=50?t:Math.min(t/(n<10?3:2),2.5)}var ct=(e,t=!1,n=!1)=>{let i={seed:e.seed,strokeLineDash:e.strokeStyle==="dashed"?jh(e.strokeWidth):e.strokeStyle==="dotted"?hc(e.strokeWidth):void 0,disableMultiStroke:e.strokeStyle!=="solid",strokeWidth:e.strokeStyle!=="solid"?e.strokeWidth+.5:e.strokeWidth,fillWeight:e.strokeWidth/2,hachureGap:e.strokeWidth*4,roughness:$h(e),stroke:ao(e.strokeColor,n),preserveVertices:t||e.roughness<Hh.cartoonist};switch(e.type){case"rectangle":case"iframe":case"embeddable":case"diamond":case"ellipse":return i.fillStyle=e.fillStyle,i.fill=so(e.backgroundColor)?void 0:ao(e.backgroundColor,n),e.type==="ellipse"&&(i.curveFitting=1),i;case"line":case"freedraw":return Tt(e.points)&&(i.fillStyle=e.fillStyle,i.fill=e.backgroundColor==="transparent"?void 0:ao(e.backgroundColor,n)),i;case"arrow":return i;default:throw new Error(`Unimplemented type ${e.type}`)}},mc=(e,t,n)=>Go(e)&&(t||Sl(e)&&n?.get(e.id)!==!0)&&so(e.backgroundColor)&&so(e.strokeColor)?{...e,roughness:0,backgroundColor:"#d3d3d3",fillStyle:"solid"}:Co(e)?{...e,strokeColor:so(e.strokeColor)?"#000000":e.strokeColor,backgroundColor:so(e.backgroundColor)?"#f4f4f6":e.backgroundColor}:e,ro=(e,t,n)=>{if(t===null)return[];let[,,i,o,r,s]=t;return[e.line(i,o,r,s,n)]},hr=(e,t,n)=>{if(t===null)return[];let[i,o,r,s,a,l]=t;return[e.line(r,s,i,o,n),e.line(a,l,i,o,n)]},ii=(e,t)=>{let n={...t};if(e.strokeStyle==="dotted"){let i=hc(e.strokeWidth-1);n.strokeLineDash=[i[0],i[1]-1]}else delete n.strokeLineDash;return n.roughness=Math.min(1,n.roughness||0),n},na=(e,t,n,i,o,r=1)=>{if(i===null)return[];let[s,a,l]=i,d={...t,fill:o,fillStyle:"solid",stroke:n,roughness:Math.min(.5,t.roughness||0)};return delete d.strokeLineDash,[e.circle(s,a,l*r,d)]},pc=(e,t,n,i,o,r,s,a)=>{if(i===null)return[];let l=ao(e.strokeColor,a),d=ao(s,a),c=-.25,u=.8;switch(i){case"circle":case"circle_outline":return na(o,r,l,et(e,t,n,i),i==="circle_outline"?d:l);case"triangle":case"triangle_outline":{let m=et(e,t,n,i);if(m===null)return[];let[p,h,f,g,E,x]=m,b={...r,fill:i==="triangle_outline"?d:l,fillStyle:"solid",roughness:Math.min(1,r.roughness||0)};return delete b.strokeLineDash,[o.polygon([[p,h],[f,g],[E,x],[p,h]],b)]}case"diamond":case"diamond_outline":{let m=et(e,t,n,i);if(m===null)return[];let[p,h,f,g,E,x,b,y]=m,w={...r,fill:i==="diamond_outline"?d:l,fillStyle:"solid",roughness:Math.min(1,r.roughness||0)};return delete w.strokeLineDash,[o.polygon([[p,h],[f,g],[E,x],[b,y],[p,h]],w)]}case"cardinality_one":return ro(o,et(e,t,n,i),ii(e,r));case"cardinality_many":return hr(o,et(e,t,n,i),ii(e,r));case"cardinality_one_or_many":{let m=ii(e,r);return[...hr(o,et(e,t,n,"cardinality_many"),m),...ro(o,et(e,t,n,"cardinality_one",c),m)]}case"cardinality_exactly_one":{let m=ii(e,r);return[...ro(o,et(e,t,n,"cardinality_one",-.5),m),...ro(o,et(e,t,n,"cardinality_one"),m)]}case"cardinality_zero_or_one":{let m=ii(e,r);return[...na(o,r,l,et(e,t,n,"circle_outline",1.5),d,u),...ro(o,et(e,t,n,"cardinality_one",-.5),m)]}case"cardinality_zero_or_many":{let m=ii(e,r);return[...hr(o,et(e,t,n,"cardinality_many"),m),...na(o,r,l,et(e,t,n,"circle_outline",1.5),d,u)]}case"bar":case"arrow":default:return hr(o,et(e,t,n,i),ii(e,r))}},Fl=(e,t)=>{let n=new bt,i={seed:e.seed,disableMultiStroke:!0,disableMultiStrokeFill:!0,roughness:0,preserveVertices:!0},o=re(e,t);switch(e.type){case"line":case"arrow":{let r=e.points.length?e.points:[ye(0,0)];return j(e)?n.path(gc(r,16),i).sets[0].ops:e.roundness?n.curve(r,i).sets[0].ops.slice(0,e.points.length).map((s,a)=>{if(a===0){let l=cn(ye(e.x+s.data[0],e.y+s.data[1]),o,e.angle);return{op:"move",data:ye(l[0]-e.x,l[1]-e.y)}}return{op:"bcurveTo",data:[cn(ye(e.x+s.data[0],e.y+s.data[1]),o,e.angle),cn(ye(e.x+s.data[2],e.y+s.data[3]),o,e.angle),cn(ye(e.x+s.data[4],e.y+s.data[5]),o,e.angle)].map(l=>ye(l[0]-e.x,l[1]-e.y)).flat()}}):r.map((s,a)=>{let l=cn(ye(e.x+s[0],e.y+s[1]),o,e.angle);return{op:a===0?"move":"lineTo",data:ye(l[0]-e.x,l[1]-e.y)}})}case"freedraw":{if(e.points.length<2)return[];let r=xn(e.points,.75);return n.curve(r,i).sets[0].ops.slice(0,e.points.length).map((s,a)=>{if(a===0){let l=cn(ye(e.x+s.data[0],e.y+s.data[1]),o,e.angle);return{op:"move",data:ye(l[0]-e.x,l[1]-e.y)}}return{op:"bcurveTo",data:[cn(ye(e.x+s.data[0],e.y+s.data[1]),o,e.angle),cn(ye(e.x+s.data[2],e.y+s.data[3]),o,e.angle),cn(ye(e.x+s.data[4],e.y+s.data[5]),o,e.angle)].map(l=>ye(l[0]-e.x,l[1]-e.y)).flat()}})}}},Vh=(e,t,{isExporting:n,canvasBackgroundColor:i,embedsValidationStatus:o,theme:r})=>{let s=r===ia.DARK;switch(e.type){case"rectangle":case"iframe":case"embeddable":{let a;if(e.roundness){let l=e.width,d=e.height,c=nn(Math.min(l,d),e);a=t.path(`M ${c} 0 L ${l-c} 0 Q ${l} 0, ${l} ${c} L ${l} ${d-c} Q ${l} ${d}, ${l-c} ${d} L ${c} ${d} Q 0 ${d}, 0 ${d-c} L 0 ${c} Q 0 0, ${c} 0`,ct(mc(e,n,o),!0,s))}else a=t.rectangle(0,0,e.width,e.height,ct(mc(e,n,o),!1,s));return a}case"diamond":{let a,[l,d,c,u,m,p,h,f]=pi(e);if(e.roundness){let g=nn(Math.abs(l-h),e),E=nn(Math.abs(u-d),e);a=t.path(`M ${l+g} ${d+E} L ${c-g} ${u-E}
|
|
15
|
+
C ${c} ${u}, ${c} ${u}, ${c-g} ${u+E}
|
|
16
|
+
L ${m+g} ${p-E}
|
|
17
|
+
C ${m} ${p}, ${m} ${p}, ${m-g} ${p-E}
|
|
18
|
+
L ${h+g} ${f+E}
|
|
19
|
+
C ${h} ${f}, ${h} ${f}, ${h+g} ${f-E}
|
|
20
|
+
L ${l-g} ${d+E}
|
|
21
|
+
C ${l} ${d}, ${l} ${d}, ${l+g} ${d+E}`,ct(e,!0,s))}else a=t.polygon([[l,d],[c,u],[m,p],[h,f]],ct(e,!1,s));return a}case"ellipse":return t.ellipse(e.width/2,e.height/2,e.width,e.height,ct(e,!1,s));case"line":case"arrow":{let a,l=ct(e,!1,s),d=e.points.length?e.points:[ye(0,0)];if(j(e)?d.every(c=>Math.abs(c[0])<=1e6&&Math.abs(c[1])<=1e6)?a=[t.path(gc(d,16),ct(e,!0,s))]:(console.error("Elbow arrow with extreme point positions detected. Arrow not rendered.",e.id,JSON.stringify(d)),a=[]):e.roundness?a=[t.curve(d,l)]:l.fill?a=[t.polygon(d,l)]:a=[t.linearPath(d,l)],e.type==="arrow"){let{startArrowhead:c=null,endArrowhead:u="arrow"}=e;if(c!==null){let m=pc(e,a,"start",c,t,l,i,s);a.push(...m)}if(u!==null){let m=pc(e,a,"end",u,t,l,i,s);a.push(...m)}}return a}case"freedraw":{let a=[];if(Tt(e.points)){let l=xn(e.points,.75);a.push(t.curve(l,{...ct(e,!1,s),stroke:"none"}))}return a.push(Zh(e)),a}case"frame":case"magicframe":case"text":case"image":return null;default:return Wh(e,`generateElementShape(): Unimplemented type ${e?.type}`),null}},gc=(e,t)=>{let n=[];for(let o=1;o<e.length-1;o+=1){let r=e[o-1],s=e[o+1],a=e[o],l=Lt(a,r),d=Lt(s,a),c=Math.min(t,uc(e[o],s)/2,uc(e[o],r)/2);l?r[0]<a[0]?n.push([e[o][0]-c,e[o][1]]):n.push([e[o][0]+c,e[o][1]]):r[1]<a[1]?n.push([e[o][0],e[o][1]-c]):n.push([e[o][0],e[o][1]+c]),n.push(e[o]),d?s[0]<a[0]?n.push([e[o][0]-c,e[o][1]]):n.push([e[o][0]+c,e[o][1]]):s[1]<a[1]?n.push([e[o][0],e[o][1]-c]):n.push([e[o][0],e[o][1]+c])}let i=[`M ${e[0][0]} ${e[0][1]}`];for(let o=0;o<n.length;o+=3)i.push(`L ${n[o][0]} ${n[o][1]}`),i.push(`Q ${n[o+1][0]} ${n[o+1][1]}, ${n[o+2][0]} ${n[o+2][1]}`);return i.push(`L ${e[e.length-1][0]} ${e[e.length-1][1]}`),i.join(" ")},Ec=(e,t)=>{switch(e.type){case"rectangle":case"diamond":case"frame":case"magicframe":case"embeddable":case"image":case"iframe":case"text":case"selection":return il(e);case"arrow":case"line":{let n=Et.generateElementShape(e,null)[0],[,,,,i,o]=Z(e,t);return Yo(e)?al(e,n,ye(e.x,e.y),e.angle,ye(i,o)):rl(n,ye(e.x,e.y),e.angle,ye(i,o))}case"ellipse":return ol(e);case"freedraw":{let[,,,,n,i]=Z(e,t);return sl(e,ye(n,i),Yo(e))}}},Hd=(e,t)=>{let n=[...e.points];if(t){if(!Bl(e.points))return null;let o=n[0],r=n[n.length-1];Math.hypot(o[0]-r[0],o[1]-r[1])>Yh||n.length<4?n.push(ye(o[0],o[1])):n[n.length-1]=ye(o[0],o[1])}return{polygon:t,points:n}},Zh=e=>ng(eg(e)),gr={SIZE_FACTOR:4.25,THINNING:.6,SMOOTHING:.5},Kh={SIZE_FACTOR:1.4},oa=e=>e.strokeOptions?.streamline??Xh,qh=e=>{let t=e.simulatePressure?e.points:e.points.length?e.points.map(([n,i],o)=>[n,i,e.pressures[o]]):[[0,0,.5]];return fl(t,{simulatePressure:e.simulatePressure,size:e.strokeWidth*gr.SIZE_FACTOR,thinning:gr.THINNING,smoothing:gr.SMOOTHING,streamline:oa(e),easing:n=>Math.sin(n*Math.PI/2),last:!0})},Qh=e=>new vo({size:e.strokeWidth*Kh.SIZE_FACTOR,streamline:oa(e),simplify:0,sizeMapping:t=>Math.max(.1,t.pressure)}),Jh=e=>{let t=Qh(e);return e.points.map(([n,i])=>t.addPoint([n,i,1])),t.getStrokeOutline().map(([n,i])=>[n,i])},eg=e=>e.strokeOptions?.variability==="constant"?Jh(e):qh(e),xc=e=>Zr(e.points,{size:e.strokeWidth*gr.SIZE_FACTOR,streamline:oa(e),last:!0}).map(t=>t.point),fc=(e,t)=>[(e[0]+t[0])/2,(e[1]+t[1])/2],tg=/(\s?[A-Z]?,?-?[0-9]*\.[0-9]{0,2})(([0-9]|e|-)*)/g,ng=e=>{if(!e.length)return"";let t=e.length-1;return e.reduce((n,i,o,r)=>(o===t?n.push(i,fc(i,r[0]),"L",r[0],"Z"):n.push(i,fc(i,r[o+1])),n),["M",e[0],"Q"]).join(" ").replace(tg,"$1")};var aa=class e{static boundsCache=new WeakMap;static nonRotatedBoundsCache=new WeakMap;static getBounds(t,n,i=!1){let o=i&&t.angle!==0?e.nonRotatedBoundsCache.get(t):e.boundsCache.get(t);if(o?.version&&o.version===t.version&&!Ie(t))return o.bounds;if(i&&t.angle!==0){let s=e.calculateBounds({...t,angle:0},n);return e.nonRotatedBoundsCache.set(t,{version:t.version,bounds:s}),s}let r=e.calculateBounds(t,n);return e.boundsCache.set(t,{version:t.version,bounds:r}),r}static calculateBounds(t,n){let i,[o,r,s,a,l,d]=Z(t,n);if(be(t)){let[c,u,m,p]=oi(t.points.map(([h,f])=>ae(O(h,f),O(l-t.x,d-t.y),t.angle)));return[c+t.x,u+t.y,m+t.x,p+t.y]}else if(K(t))i=mg(t,l,d,n);else if(t.type==="diamond"){let[c,u]=ae(O(l,r),O(l,d),t.angle),[m,p]=ae(O(l,a),O(l,d),t.angle),[h,f]=ae(O(o,d),O(l,d),t.angle),[g,E]=ae(O(s,d),O(l,d),t.angle),x=Math.min(c,m,h,g),b=Math.min(u,p,f,E),y=Math.max(c,m,h,g),w=Math.max(u,p,f,E);i=[x,b,y,w]}else if(t.type==="ellipse"){let c=(s-o)/2,u=(a-r)/2,m=Math.cos(t.angle),p=Math.sin(t.angle),h=Math.hypot(c*m,u*p),f=Math.hypot(u*m,c*p);i=[l-h,d-f,l+h,d+f]}else{let[c,u]=ae(O(o,r),O(l,d),t.angle),[m,p]=ae(O(o,a),O(l,d),t.angle),[h,f]=ae(O(s,a),O(l,d),t.angle),[g,E]=ae(O(s,r),O(l,d),t.angle),x=Math.min(c,m,h,g),b=Math.min(u,p,f,E),y=Math.max(c,m,h,g),w=Math.max(u,p,f,E);i=[x,b,y,w]}return i}},Z=(e,t,n=!1)=>{if(be(e))return sg(e);if(K(e))return R.getElementAbsoluteCoords(e,t,n);if(oe(e)){let i=t?Ue(e,t):null;if(X(i)){let{x:o,y:r}=R.getBoundTextElementPosition(i,e,t);return[o,r,o+e.width,r+e.height,o+e.width/2,r+e.height/2]}}return[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2]},Ii=(e,t)=>{let n=Ec(e,t),[i,o,r,s,a,l]=Z(e,t),d=O(a,l);if(n.type==="polycurve"){let E=n.data.map(b=>It(b,10)),x=[];if(Oe(e)&&!e.polygon||X(e))for(let b of E){let y=0;for(;y<b.length-1;)x.push(Pe(O(b[y][0],b[y][1]),O(b[y+1][0],b[y+1][1]))),y++}else{let b=E.flat(),y=0;for(;y<b.length-1;)x.push(Pe(O(b[y][0],b[y][1]),O(b[y+1][0],b[y+1][1]))),y++}return x}else{if(n.type==="polyline")return n.data;if(og(e)){let[g,E]=yn(e),x=E.map(y=>yc(y,d,e.angle)).flat();return[...wc(g,d,e.angle),...x]}else if(e.type==="diamond"){let[g,E]=Pn(e),x=E.map(y=>yc(y,d,e.angle)).flat();return[...wc(g,d,e.angle),...x]}else if(n.type==="polygon"){if(oe(e)){let x=Ue(e,t);if(x&&K(x))return[Pe(O(i,o),O(r,o)),Pe(O(r,o),O(r,s)),Pe(O(r,s),O(i,s)),Pe(O(i,s),O(i,o))]}let g=n.data,E=[];for(let x=0;x<g.length-1;x++)E.push(Pe(g[x],g[x+1]));return E}else if(n.type==="ellipse")return rg(e)}let[c,u,m,p,,,h,f]=[[i,o],[r,o],[i,s],[r,s],[a,o],[a,s],[i,l],[r,l]].map(g=>ae(g,d,e.angle));return[Pe(c,u),Pe(m,p),Pe(c,m),Pe(u,p),Pe(c,f),Pe(m,f),Pe(u,h),Pe(p,h)]},og=e=>e!=null&&(e.type==="rectangle"||e.type==="image"||e.type==="iframe"||e.type==="embeddable"||e.type==="frame"||e.type==="magicframe"||e.type==="text"&&!e.containerId),wc=(e,t,n)=>e.map(i=>Pe(ae(i[0],t,n),ae(i[1],t,n))),yc=(e,t,n)=>{let i=It(e,10),o=0,r=[];for(;o<i.length-1;)r.push(Pe(ae(O(i[o][0],i[o][1]),t,n),ae(O(i[o+1][0],i[o+1][1]),t,n))),o++;return r},rg=e=>{let t=O(e.x+e.width/2,e.y+e.height/2),n=e.width/2,i=e.height/2,o=[],r=[],s=90,a=Math.PI*2/s;for(let l=0;l<s;l++){let d=l*a,c=t[0]+n*Math.cos(d),u=t[1]+i*Math.sin(d);r.push(ae(O(c,u),t,e.angle))}for(let l=0;l<r.length-1;l++)o.push(Pe(r[l],r[l+1]));return o.push(Pe(r[r.length-1],r[0])),o},DS=e=>[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2],pi=e=>{let t=Math.floor(e.width/2)+1,n=0,i=e.width,o=Math.floor(e.height/2)+1,r=t,s=e.height;return[t,n,i,o,r,s,0,o]},Pc=(e,t,n,i,o)=>{let r=1-e;return Math.pow(r,3)*t+3*Math.pow(r,2)*e*n+3*r*Math.pow(e,2)*i+Math.pow(e,3)*o},Ic=(e,t,n,i)=>{let o=t-e,r=n-t,s=i-n,a=3*o-6*r+3*s,l=6*r-6*o,d=3*o,c=l*l-4*a*d;if(!(c>=0))return!1;let m=null,p=null,h=1/0,f=1/0;return a===0?h=f=-d/l:(h=(-l+Math.sqrt(c))/(2*a),f=(-l-Math.sqrt(c))/(2*a)),h>=0&&h<=1&&(m=Pc(h,e,t,n,i)),f>=0&&f<=1&&(p=Pc(f,e,t,n,i)),[m,p]},jo=(e,t,n,i)=>{let o=Ic(e[0],t[0],n[0],i[0]),r=Ic(e[1],t[1],n[1],i[1]),s=Math.min(e[0],i[0]),a=Math.max(e[0],i[0]);if(o){let c=o.filter(u=>u!==null);s=Math.min(s,...c),a=Math.max(a,...c)}let l=Math.min(e[1],i[1]),d=Math.max(e[1],i[1]);if(r){let c=r.filter(u=>u!==null);l=Math.min(l,...c),d=Math.max(d,...c)}return[s,l,a,d]},io=(e,t)=>{let n=O(0,0),{minX:i,minY:o,maxX:r,maxY:s}=e.reduce((a,{op:l,data:d})=>{if(l==="move"){let c=Mc(d);sa(c!=null,"Op data is not a point"),n=c}else if(l==="bcurveTo"){let c=O(d[0],d[1]),u=O(d[2],d[3]),m=O(d[4],d[5]),p=t?t(c):c,h=t?t(u):u,f=t?t(m):m,g=t?t(n):n;n=m;let[E,x,b,y]=jo(g,p,h,f);a.minX=Math.min(a.minX,E),a.minY=Math.min(a.minY,x),a.maxX=Math.max(a.maxX,b),a.maxY=Math.max(a.maxY,y)}return a},{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});return[i,o,r,s]},oi=(e,t=0)=>{let n=1/0,i=1/0,o=-1/0,r=-1/0;for(let[s,a]of e)n=Math.min(n,s),i=Math.min(i,a),o=Math.max(o,s),r=Math.max(r,a);return[n-t,i-t,o+t,r+t]},sg=e=>{let[t,n,i,o]=oi(e.points),r=t+e.x,s=n+e.y,a=i+e.x,l=o+e.y;return[r,s,a,l,(r+a)/2,(s+l)/2]},ag=20,lg=15,dg=e=>{switch(e){case"arrow":return 25;case"diamond":case"diamond_outline":return 12;case"cardinality_many":case"cardinality_one_or_many":case"cardinality_zero_or_many":return lg;case"cardinality_one":case"cardinality_exactly_one":case"cardinality_zero_or_one":return ag;default:return 15}},cg=e=>{switch(e){case"bar":return 90;case"arrow":return 20;default:return 25}},et=(e,t,n,i,o=0)=>{if(i===null||t.length<1)return null;let r=Jt(t[0]);if(r.length<1)return null;let s=n==="start"?1:r.length-1,a=r[s].data;sa(a.length===6,"Op data length is not 6");let l=O(a[4],a[5]),d=O(a[2],a[3]),c=O(a[0],a[1]),u=r[s-1],m=O(0,0);if(u.op==="move"){let P=Mc(u.data);sa(P!=null,"Op data is not a point"),m=P}else u.op==="bcurveTo"&&(m=O(u.data[4],u.data[5]));let p=(P,v)=>Math.pow(1-P,3)*l[v]+3*P*Math.pow(1-P,2)*d[v]+3*Math.pow(P,2)*(1-P)*c[v]+m[v]*Math.pow(P,3),[h,f]=n==="start"?m:l,[g,E]=[p(.3,0),p(.3,1)],x=Math.hypot(h-g,f-E),b=(h-g)/x,y=(f-E)/x,w=dg(i),M=0;{let[P,v]=n==="end"?e.points[e.points.length-1]:e.points[0],[C,z]=e.points.length>1?n==="end"?e.points[e.points.length-2]:e.points[1]:[0,0];M=Math.hypot(P-C,v-z)}let T=Math.min(w,M*(i==="diamond"||i==="diamond_outline"?.25:.5)),A=h-b*T*o,F=f-y*T*o,B=A-b*T,k=F-y*T;if(i==="circle"||i==="circle_outline"){let P=Math.hypot(k-F,B-A)+e.strokeWidth-2;return[A,F,P]}let G=cg(i);if(i==="cardinality_many"||i==="cardinality_one_or_many"){let[P,v]=ae(O(A,F),O(B,k),ra(-G)),[C,z]=ae(O(A,F),O(B,k),ra(G));return[B,k,P,v,C,z]}let[_,W]=ae(O(B,k),O(A,F),-G*Math.PI/180),[D,L]=ae(O(B,k),O(A,F),ra(G));if(i==="diamond"||i==="diamond_outline"){let P,v;if(n==="start"){let[C,z]=e.points.length>1?e.points[1]:[0,0];[P,v]=ae(O(A+T*2,F),O(A,F),Math.atan2(z-F,C-A))}else{let[C,z]=e.points.length>1?e.points[e.points.length-2]:[0,0];[P,v]=ae(O(A-T*2,F),O(A,F),Math.atan2(F-z,A-C))}return[A,F,_,W,P,v,D,L]}return[A,F,_,W,D,L]},ug=e=>{let t=ci.generator(),n=ct(e),i=e.roundness?"curve":n.fill?"polygon":"linearPath";return t[i](e.points,n)},mg=(e,t,n,i)=>{let o=de(e,i);if(e.points.length<2){let[u,m]=e.points[0],[p,h]=ae(O(e.x+u,e.y+m),O(t,n),e.angle),f=[p,h,p,h];if(o){let g=R.getMinMaxXYWithBoundText(e,i,[p,h,p,h],o);f=[g[0],g[1],g[2],g[3]]}return f}let s=Et.get(e,null)?.[0]??ug(e),a=Jt(s),d=io(a,([u,m])=>ae(O(e.x+u,e.y+m),O(t,n),e.angle)),c=[d[0],d[1],d[2],d[3]];if(o){let u=R.getMinMaxXYWithBoundText(e,i,c,o);c=[u[0],u[1],u[2],u[3]]}return c},ue=(e,t,n=!1)=>aa.getBounds(e,t,n),Je=(e,t)=>{if(!ig(e))return[0,0,0,0];let n=1/0,i=-1/0,o=1/0,r=-1/0,s=t||Sc(e);return e.forEach(a=>{let[l,d,c,u]=ue(a,s);n=Math.min(n,l),o=Math.min(o,d),i=Math.max(i,c),r=Math.max(r,u)}),[n,o,i,r]},vS=(e,t)=>{let[n,i,o,r]=Je(e);return[n+t.x,i+t.y,o+t.x,r+t.y]},wn=(e,t,n,i)=>{if(!(K(e)||be(e)))return[e.x,e.y,e.x+t,e.y+n];let o=bc(0,t,bc(1,n,e.points,i),i),r;if(be(e))r=oi(o);else{let c=ci.generator(),u=e.roundness?c.curve(o,ct(e)):c.linearPath(o,ct(e)),m=Jt(u);r=io(m)}let[s,a,l,d]=r;return[s+e.x,a+e.y,l+e.x,d+e.y]},Ws=(e,t)=>{let n=ci.generator(),i=e.roundness==null?n.linearPath(t,ct(e)):n.curve(t,ct(e)),o=Jt(i),[r,s,a,l]=io(o);return[r+e.x,s+e.y,a+e.x,l+e.y]},un=e=>{let[t,n,i,o]=Je(e);return{minX:t,minY:n,maxX:i,maxY:o,width:i-t,height:o-n,midX:(t+i)/2,midY:(n+o)/2}},BS=({scrollX:e,scrollY:t,width:n,height:i,zoom:o})=>[-e,-t,-e+n/o.value,-t+i/o.value],an=e=>O(e[0]+(e[2]-e[0])/2,e[1]+(e[3]-e[1])/2),lt=(e,t,n)=>{let i={minX:e.x,minY:e.y,maxX:e.x+e.width,maxY:e.y+e.height,midX:e.x+e.width/2,midY:e.y+e.height/2},o=re(e,t),[r,s]=ae(O(i.minX,i.minY),o,e.angle),[a,l]=ae(O(i.maxX,i.minY),o,e.angle),[d,c]=ae(O(i.maxX,i.maxY),o,e.angle),[u,m]=ae(O(i.minX,i.maxY),o,e.angle),p=[Math.min(r,a,d,u),Math.min(s,l,c,m),Math.max(r,a,d,u),Math.max(s,l,c,m)];if(n){let[h,f,g,E]=n;return[p[0]-E,p[1]-h,p[2]+f,p[3]+g]}return p},Yt=(e,t)=>e[0]>t[0]&&e[0]<t[2]&&e[1]>t[1]&&e[1]<t[3],pg=(e,t)=>e[0]>=t[0]&&e[0]<=t[2]&&e[1]>=t[1]&&e[1]<=t[3],gt=(e,t)=>{if(e==null||t==null)return!1;let[n,i,o,r]=e,[s,a,l,d]=t;return n<l&&o>s&&i<d&&r>a},Qs=(e,t)=>[O(t[0],t[1]),O(t[0],t[3]),O(t[2],t[1]),O(t[2],t[3])].every(n=>pg(n,e)),Kd=({elements:e,elementsMap:t,bounds:n,type:i,excludeElementsInFrames:o,shouldIgnoreElementFromSelection:r})=>{t||(t=Sc(e));let s=Tl(n)?ue(n,t):n,[a,l,d,c]=s,u=[Pe(O(a,l),O(d,l)),Pe(O(d,l),O(d,c)),Pe(O(d,c),O(a,c)),Pe(O(a,c),O(a,l))],m=o?new Set:null,p={},h=new Set;for(let f of e){if(r?.(f))continue;let g=f.groupIds.at(-1);g&&(p[g]||(p[g]=[]),p[g].push(f));let E=f.strokeWidth,x=null,b=ue(f,t);b=[b[0]-E/2,b[1]-E/2,b[2]+E/2,b[3]+E/2];let y=X(f)&&de(f,t);if(y){let{x:S,y:T}=R.getBoundTextElementPosition(f,y,t);x=[S,T,S+y.width,T+y.height]}let w=Cn(f,t);if(w&&Ln(f,w,t)){let S=ue(w,t);b=[Math.max(b[0],S[0]),Math.max(b[1],S[1]),Math.min(b[2],S[2]),Math.min(b[3],S[3])],x=x?[Math.max(x[0],S[0]),Math.max(x[1],S[1]),Math.min(x[2],S[2]),Math.min(x[3],S[3])]:null}let M=x?[Math.min(x[0],b[0]),Math.min(x[1],b[1]),Math.max(x[2],b[2]),Math.max(x[3],b[3])]:b;if(Qs(s,M)){m&&J(f)&&m.add(f.id),h.add(f);continue}if(i==="overlap"&&x&>(s,x)){h.add(f);continue}if(i==="overlap"&>(s,b)){let S=!1;if(K(f)||be(f)){let T=re(f,t);S=f.points.some(A=>{let F=ae(O(f.x+A[0],f.y+A[1]),T,f.angle);return Yt(F,s)})}else{let T=ue(f,t,!0),A=re(f,t);S=[ae(O((T[0]+T[2])/2,T[1]),A,f.angle),ae(O(T[2],(T[1]+T[3])/2),A,f.angle),ae(O((T[0]+T[2])/2,T[3]),A,f.angle),ae(O(T[0],(T[1]+T[3])/2),A,f.angle)].some(F=>Yt(ae(F,A,f.angle),s))}if(S||(S=u.some(T=>ot(f,t,T,E/2,!0).length>0)),S){m&&J(f)&&m.add(f.id),h.add(f);continue}}}return m&&h.forEach(f=>{f.frameId&&m.has(f.frameId)&&h.delete(f)}),i==="overlap"?Array.from(h).forEach(f=>{let g=f.groupIds.at(-1);(g?p[g]:null)?.forEach(x=>h.add(x))}):i==="contain"&&h.forEach(f=>{let g=f.groupIds.at(-1),E=g?p[g]:null;E&&!E.every(x=>h.has(x))&&h.delete(f)}),e.filter(f=>h.has(f))},re=(e,t,n=0,i=0)=>{if(K(e)||be(e)){let[s,a,l,d]=Z(e,t),[c,u]=O((s+l)/2,(a+d)/2);return O(c+n,u+i)}let[o,r]=an(ue(e,t));return O(o+n,r+i)};var Eg=.1,Tc=e=>K(e)||be(e)?e.points.length<2||e.points.length===2&&X(e)&&gg(e.points[0],e.points[e.points.length-1],Eg):e.width===0&&e.height===0,qd=(e,t,n,i,o)=>{let[r,s,a,l]=ue(e,o),d=Er({clientX:i.offsetLeft,clientY:i.offsetTop},i),c=Er({clientX:i.offsetLeft+t,clientY:i.offsetTop+n},i);return d.x<=a&&d.y<=l&&c.x>=r&&c.y>=s},RS=(e,t,n,i,o,r)=>{let[s,a,l,d]=Je(e,o),c=Er({clientX:i.offsetLeft+(r?.left||0),clientY:i.offsetTop+(r?.top||0)},i),u=Er({clientX:i.offsetLeft+t-(r?.right||0),clientY:i.offsetTop+n-(r?.bottom||0)},i);return s>=c.x&&a>=c.y&&l<=u.x&&d<=u.y},la=(e,t,n)=>{let i=Math.abs(t),o=Math.abs(n);if(e==="line"||e==="arrow"||e==="freedraw"){let r=Math.round(Math.atan(o/i)/mn)*mn;r===0?n=0:r===Math.PI/2?t=0:n=i*Math.tan(r)*Math.sign(n)||n}else e!=="selection"&&(n=i*Math.sign(n));return{width:t,height:n}},Wd=(e,t,n,i,o)=>{let r=n-e,s=i-t,a=Math.atan2(s,r),l=Math.round(a/mn)*mn;if(o){let d=Math.floor(o/mn)*mn;fg(a,d,d+mn)&&(hg(a,o)<mn/6?l=o:Ac(a)>Ac(o)?l=d+mn:l=d)}if(l===0)s=0;else if(l===Math.PI/2)r=0;else{let d=Math.tan(l),c=-1,u=t-d*e,m=-1/d,p=-1,h=i-m*n,f=(c*h-p*u)/(d*p-m*c),g=(u*m-h*d)/(d*p-m*c);r=f-e,s=g-t}return{width:r,height:s}},zS=e=>{let t={width:e.width,height:e.height,x:e.x,y:e.y};if(e.width<0){let n=Math.abs(e.width);t.width=n,t.x=e.x-n}if(e.height<0){let n=Math.abs(e.height);t.height=n,t.y=e.y-n}return t};I();var jS=(e,t,n,i)=>{let o=ar(e,n.getNonDeletedElementsMap(),i).map(kn),r=un(e);return o.flatMap(s=>{let a=xg(s,r,t);return s.map(l=>{let d=n.mutateElement(l,{x:l.x+a.x,y:l.y+a.y});return je(l,n,{simultaneouslyUpdated:s}),d})})},xg=(e,t,{axis:n,position:i})=>{let o=un(e),[r,s]=n==="x"?["minX","maxX"]:["minY","maxY"],a={x:0,y:0};return i==="start"?{...a,[n]:t[r]-o[r]}:i==="end"?{...a,[n]:t[s]-o[s]}:{...a,[n]:(t[r]+t[s])/2-(o[r]+o[s])/2}};I();import{TEXT_ALIGN as wr,VERTICAL_ALIGN as yr}from"@excalidraw/common";import{pointDistance as Bg,pointFromVector as Lg,pointsEqual as kc,vector as Cg,vectorDot as Gg,vectorFromPoint as Gc,vectorNormalize as kg,vectorScale as Og}from"@excalidraw/math";I();import{DEFAULT_ELEMENT_PROPS as Fn,DEFAULT_FONT_FAMILY as bg,DEFAULT_FONT_SIZE as wg,DEFAULT_TEXT_ALIGN as yg,DEFAULT_VERTICAL_ALIGN as Pg,DEFAULT_STROKE_STREAMLINE as Ig,VERTICAL_ALIGN as ri,randomInteger as Sg,randomId as Mg,getFontString as xr,getUpdatedTimestamp as Ag,getLineHeight as Tg}from"@excalidraw/common";var kt=(e,{x:t,y:n,strokeColor:i=Fn.strokeColor,backgroundColor:o=Fn.backgroundColor,fillStyle:r=Fn.fillStyle,strokeWidth:s=Fn.strokeWidth,strokeStyle:a=Fn.strokeStyle,roughness:l=Fn.roughness,opacity:d=Fn.opacity,width:c=0,height:u=0,angle:m=0,groupIds:p=[],frameId:h=null,index:f=null,roundness:g=null,boundElements:E=null,link:x=null,locked:b=Fn.locked,...y})=>((t<-1e6||t>1e6||n<-1e6||n>1e6||c<-1e6||c>1e6||u<-1e6||u>1e6)&&console.error("New element size or position is too large",{x:t,y:n,width:c,height:u,points:y.points}),{id:y.id||Mg(),type:e,x:t,y:n,width:c,height:u,angle:m,strokeColor:i,backgroundColor:o,fillStyle:r,strokeWidth:s,strokeStyle:a,roughness:l,opacity:d,groupIds:p,frameId:h,index:f,roundness:g,seed:y.seed??Sg(),version:y.version||1,versionNonce:y.versionNonce??0,isDeleted:!1,boundElements:E,updated:Ag(),link:x,locked:b,customData:y.customData}),Ai=e=>kt(e.type,e),nM=e=>kt("embeddable",e),iM=e=>({...kt("iframe",e)}),Dc=e=>Ke({...kt("frame",e),type:"frame",name:e?.name||null},{}),vc=e=>Ke({...kt("magicframe",e),type:"magicframe",name:e?.name||null},{}),da=e=>({x:e.textAlign==="center"?.5:e.textAlign==="right"?1:0,y:e.verticalAlign===ri.MIDDLE?.5:e.verticalAlign===ri.BOTTOM?1:0}),Bc=(e,t)=>{let n=da(e);return{x:t.width*n.x,y:t.height*n.y}},si=e=>{let t=e.fontFamily||bg,n=e.fontSize||wg,i=e.lineHeight||Tg(t),o=Zi(e.text),r=ft(o,xr({fontFamily:t,fontSize:n}),i),s=e.textAlign||yg,a=e.verticalAlign||Pg,l=Bc({textAlign:s,verticalAlign:a},r),d={...kt("text",e),text:o,fontSize:n,fontFamily:t,textAlign:s,verticalAlign:a,x:e.x-l.x,y:e.y-l.y,width:r.width,height:r.height,containerId:e.containerId||null,originalText:e.originalText??o,autoResize:e.autoResize??!0,lineHeight:i};return Ke(d,{})},Dg=(e,t,n)=>{let{width:i,height:o}=ft(n,xr(e),e.lineHeight);e.autoResize||(i=e.width);let{textAlign:r,verticalAlign:s}=e,a,l;if(r==="center"&&s===ri.MIDDLE&&!e.containerId&&e.autoResize){let d=ft(e.text,xr(e),e.lineHeight),c=Bc(e,{width:i-d.width,height:o-d.height});a=e.x-c.x,l=e.y-c.y}else{let[d,c,u,m]=Z(e,t),[p,h,f,g]=wn(e,i,o,!1),E=(d-p)/2,x=(c-h)/2,b=(u-f)/2,y=(m-g)/2;[a,l]=vg({n:s===ri.MIDDLE||s===ri.BOTTOM,s:s===ri.MIDDLE||s===ri.TOP,e:r==="center"||r==="left",w:r==="center"||r==="right"},e.x,e.y,e.angle,E,x,b,y)}return{width:i,height:o,x:Number.isFinite(a)?a:e.x,y:Number.isFinite(l)?l:e.y}},vg=(e,t,n,i,o,r,s,a)=>{let l=Math.cos(i),d=Math.sin(i);return e.e&&e.w?t+=o+s:e.e?(t+=o*(1+l),n+=o*d,t+=s*(1-l),n+=s*-d):e.w&&(t+=o*(1-l),n+=o*-d,t+=s*(1+l),n+=s*d),e.n&&e.s?n+=r+a:e.n?(t+=r*d,n+=r*(1-l),t+=a*-d,n+=a*(1+l)):e.s&&(t+=r*-d,n+=r*(1+l),t+=a*d,n+=a*(1-l)),[t,n]},oM=(e,t,n,i=e.text)=>{if(e.isDeleted)return;(t||!e.autoResize)&&(i=rn(i,xr(e),t?vt(t,e):e.width));let o=Dg(e,n,i);return{text:i,...o}},rM=e=>({...kt(e.type,e),points:e.points||[],pressures:e.pressures||[],simulatePressure:e.simulatePressure,strokeOptions:e.strokeOptions??{variability:"variable",streamline:Ig}}),Lc=e=>{let t={...kt(e.type,e),points:e.points||[],startBinding:null,endBinding:null,startArrowhead:null,endArrowhead:null};return Oe(t)?{...t,polygon:e.polygon??!1}:t},br=e=>e.elbowed?{...kt(e.type,e),points:e.points||[],startBinding:null,endBinding:null,startArrowhead:e.startArrowhead||null,endArrowhead:e.endArrowhead||null,elbowed:!0,fixedSegments:e.fixedSegments||[],startIsSpecial:!1,endIsSpecial:!1}:{...kt(e.type,e),points:e.points||[],startBinding:null,endBinding:null,startArrowhead:e.startArrowhead||null,endArrowhead:e.endArrowhead||null,elbowed:!1},Cc=e=>({...kt("image",e),strokeColor:"transparent",status:e.status??"pending",fileId:e.fileId??null,scale:e.scale??[1,1],crop:e.crop??null});var hM=(e,t,n,i)=>{for(let o=t.length-1;o>=0;o--){let r=t[o];if(!(!X(r)||r.locked||r.points.length<2))for(let s of["end","start"]){if(r[s==="start"?"startBinding":"endBinding"]||kc(r.points[s==="start"?0:r.points.length-1],r.points[s==="start"?1:r.points.length-2]))continue;let a=R.getPointAtIndexGlobalCoordinates(r,s==="start"?0:-1,n);if(Bg(e,a)*i.value<R.POINT_HANDLE_SIZE+1)return{arrow:r,startOrEnd:s}}}return null},gM=(e,t,n,i)=>{let o=R.getPointAtIndexGlobalCoordinates(e,t==="start"?0:-1,n),r=R.getPointAtIndexGlobalCoordinates(e,t==="start"?1:-2,n);if(kc(o,r))return null;let s=Gc(o,r),a=Math.abs(s[0])>=Math.abs(s[1])?s[0]>=0?he:Ne:s[1]>=0?Be:Ze,l=j(e)?0:ve({strokeWidth:i},e),d=kg(Gc(r,o)),c=Math.abs(Gg(d,Cg(a[0],a[1]))),u=Lg(Og(d,-l/c),o);return fe(a,he)?{fixedPoint:We([0,.5]),anchor:u,textAlign:wr.LEFT,verticalAlign:yr.MIDDLE}:fe(a,Ne)?{fixedPoint:We([1,.5]),anchor:u,textAlign:wr.RIGHT,verticalAlign:yr.MIDDLE}:fe(a,Be)?{fixedPoint:We([.5,0]),anchor:u,textAlign:wr.CENTER,verticalAlign:yr.TOP}:{fixedPoint:We([.5,1]),anchor:u,textAlign:wr.CENTER,verticalAlign:yr.BOTTOM}},EM=(e,t)=>!!e.boundElements?.some(({id:n,type:i})=>{if(i!=="arrow")return!1;let o=t.get(n);return X(o)&&(o.startBinding?.elementId===e.id||o.endBinding?.elementId===e.id)}),xM=e=>{let t=da(e).x;return{anchorRatio:t,anchorX:e.x+e.width*t}};I();import{distanceToLineSegment as Oc,lineSegment as ai,lineSegmentIntersectionPoints as Ng,pointDistance as Kt,pointFrom as Di,pointRotateRads as Ir,polygonArea as co,polygonIncludesPoint as Nc,polygonIncludesPointNonZero as Pr,polygonSignedArea as ua}from"@excalidraw/math";import{isOpaqueColor as Fg,isTransparent as uo}from"@excalidraw/common";var Rg=6,zg=2,_g=2,Hg=.5,Wg={snapEpsilon:.5,gapTolerance:Rg,minArea:4,maxBoundarySegments:2560,maxGeneratedPoints:1536,fallbackSearchRadius:512},_c=([e,t,n,i],o)=>[e-o,t-o,n+o,i+o],Ug=e=>Kt(e[0],e[1]),lo=(e,t,n)=>{let i=t[0]-e[0],o=t[1]-e[1],r=i*i+o*o;return r===0?0:((n[0]-e[0])*i+(n[1]-e[1])*o)/r},Fc=(e,t,n,i,o)=>{let r=Math.min(e[0],t[0]),s=Math.max(e[0],t[0]),a=t[0]-e[0],l=t[1]-e[1],d=Math.floor((r-n)/i),c=Math.floor((s+n)/i);for(let u=d;u<=c;u++){let m=e[1],p=t[1];if(a!==0){let g=(Math.max(r,u*i-n)-e[0])/a,E=(Math.min(s,(u+1)*i+n)-e[0])/a;m=e[1]+g*l,p=e[1]+E*l}let h=Math.floor((Math.min(m,p)-n)/i),f=Math.floor((Math.max(m,p)+n)/i);for(let g=h;g<=f;g++)o(u,g)}},Yg=(e,t,n)=>{let i=n[0]-t[0],o=n[1]-t[1],r=Math.hypot(i,o);return r===0?Kt(e,t):Math.abs((e[0]-t[0])*o-(e[1]-t[1])*i)/r},Ti=(e,t,n)=>Di(e[0]+(t[0]-e[0])*n,e[1]+(t[1]-e[1])*n),Xg=(e,t)=>{let n=e;for(let[i,o]of t){let r=[];for(let[s,a]of n){if(o<=s||i>=a){r.push([s,a]);continue}i>s&&r.push([s,i]),o<a&&r.push([o,a])}n=r}return n},jg=(e,t)=>{let n=re(e,t),o=(e.roundness&&e.points.length>2?It(So(e.points),.15,Hg):e.points).map(s=>Ir(Di(e.x+s[0],e.y+s[1]),n,e.angle)),r=[];for(let s=0;s<o.length-1;s++)r.push(ai(o[s],o[s+1]));return r},$g=(e,t)=>{let n=re(e,t),i=xc(e).map(r=>Ir(Di(e.x+r[0],e.y+r[1]),n,e.angle)),o=[];for(let r=0;r<i.length-1;r++)o.push(ai(i[r],i[r+1]));return o},Vg=(e,t,n,i,o,r)=>{let s=[[0,1]];for(let a of n){if(s.length===0)break;let d=[0,...ot(a,i,ai(e,t)).map(u=>lo(e,t,u)).filter(u=>u>0&&u<1).sort((u,m)=>u-m),1],c=[];for(let u=0;u<d.length-1;u++){let m=d[u],p=d[u+1];if(p-m<1e-9)continue;let h=Ti(e,t,(m+p)/2);it(h,a,i)&&Ut(a,i,h)>r&&c.push([m,p])}c.length&&(s=Xg(s,c))}return s.filter(([a,l])=>Kt(Ti(e,t,a),Ti(e,t,l))>=o).map(([a,l])=>[Ti(e,t,a),Ti(e,t,l)])},ma=class{constructor(t){this.eps=t;this.cellSize=Math.max(t,1)}nodes=[];cells=new Map;cellSize;cellKey(t,n){return`${t}:${n}`}getOrCreate(t){let n=Math.floor(t[0]/this.cellSize),i=Math.floor(t[1]/this.cellSize);for(let a=-1;a<=1;a++)for(let l=-1;l<=1;l++){let d=this.cells.get(this.cellKey(n+a,i+l));if(d){for(let c of d)if(Kt(this.nodes[c],t)<=this.eps)return c}}let o=this.nodes.length;this.nodes.push(t);let r=this.cellKey(n,i),s=this.cells.get(r);return s?s.push(o):this.cells.set(r,[o]),o}forEachInRadius(t,n,i){let o=Math.floor((t[0]-n)/this.cellSize),r=Math.floor((t[0]+n)/this.cellSize),s=Math.floor((t[1]-n)/this.cellSize),a=Math.floor((t[1]+n)/this.cellSize);for(let l=o;l<=r;l++)for(let d=s;d<=a;d++){let c=this.cells.get(this.cellKey(l,d));if(c)for(let u of c)i(u)}}},Rc=e=>!(!hi(e.type)||e.fillStyle!=="solid"||e.opacity<100||!Fg(e.backgroundColor)||(Oe(e)||be(e))&&!Tt(e.points)),Hc=new Set(["rectangle","diamond","ellipse","frame","magicframe","line","freedraw"]),pa=e=>e.opacity<=0,Wc=e=>!pa(e)&&(e.type==="image"||!uo(e.strokeColor)||hi(e.type)&&!uo(e.backgroundColor)),Uc=e=>Oe(e)&&e.polygon&&ts(e.points)&&!pa(e)&&!uo(e.backgroundColor)&&uo(e.strokeColor),Zg=e=>Hc.has(e.type)?Oe(e)?e.polygon&&ts(e.points):be(e)?Tt(e.points):!0:!1,ca=e=>!pa(e)&&Hc.has(e.type)&&!uo(e.strokeColor),Kg=(e,t,n)=>{for(let i=t.length-1;i>=0;i--){let o=t[i];if(!(!Wc(o)||Uc(o))&&Zg(o)&&it(e,o,n))return o}return null},qg=(e,t)=>{let n=t.snapEpsilon,i=new ma(n),o=[],r=new Map;for(let{segment:D,elementId:L}of e){let P=i.getOrCreate(D[0]),v=i.getOrCreate(D[1]);if(r.has(P)||r.set(P,L),r.has(v)||r.set(v,L),P===v)continue;let C=i.nodes[P],z=i.nodes[v];o.push({a:P,b:v,pa:C,pb:z,elementId:L,box:[Math.min(C[0],z[0]),Math.min(C[1],z[1]),Math.max(C[0],z[0]),Math.max(C[1],z[1])],splits:[{node:P,t:0},{node:v,t:1}]})}let s=o.map(D=>ai(D.pa,D.pb)),a=o.map((D,L)=>L).sort((D,L)=>o[D].box[0]-o[L].box[0]);for(let D=0;D<a.length;D++){let L=a[D],P=o[L],v=P.box[2]+n;for(let C=D+1;C<a.length;C++){let z=a[C],Q=o[z];if(Q.box[0]>v)break;if(!gt(_c(P.box,n),Q.box))continue;let ee=Ng(s[L],s[z],n);if(!ee)continue;let te=i.getOrCreate(ee);r.has(te)||r.set(te,P.elementId),P.splits.push({node:te,t:lo(P.pa,P.pb,i.nodes[te])}),Q.splits.push({node:te,t:lo(Q.pa,Q.pb,i.nodes[te])})}}if(i.nodes.length>t.maxBoundarySegments*4)return null;let l=1/0,d=1/0,c=-1/0,u=-1/0;for(let D of o)l=Math.min(l,D.box[0]),d=Math.min(d,D.box[1]),c=Math.max(c,D.box[2]),u=Math.max(u,D.box[3]);let m=Math.max(c-l,u-d,0),p=Math.max(n*2,m/128),h=new Map;o.forEach((D,L)=>{Fc(D.pa,D.pb,n,p,(P,v)=>{let C=`${P}:${v}`,z=h.get(C);z?z.push(L):h.set(C,[L])})});for(let D=0;D<i.nodes.length;D++){let L=i.nodes[D],P=h.get(`${Math.floor(L[0]/p)}:${Math.floor(L[1]/p)}`);if(P)for(let v of P){let C=o[v];if(D===C.a||D===C.b)continue;let z=lo(C.pa,C.pb,L);z<=0||z>=1||Oc(L,s[v])<=n&&C.splits.push({node:D,t:z})}}let f=new Set,g=new Map,E=new Map,x=(D,L)=>D<L?`${D}-${L}`:`${L}-${D}`,b=(D,L)=>{let P=g.get(D);P?P.push(L):g.set(D,[L])},y=(D,L,P)=>{if(D===L||Kt(i.nodes[D],i.nodes[L])<n)return;let v=x(D,L),C=E.get(v);C?C.add(P):E.set(v,new Set([P])),!f.has(v)&&(f.add(v),b(D,L),b(L,D))};for(let D of o){let L=new Map;for(let v of D.splits)L.has(v.node)||L.set(v.node,v.t);let P=[...L.entries()].map(([v,C])=>({node:v,t:C})).sort((v,C)=>v.t-C.t);for(let v=0;v<P.length-1;v++)y(P[v].node,P[v+1].node,D.elementId)}if(f.size===0)return[];let w=Math.max(n,t.gapTolerance),M=D=>new Set(g.get(D)??[]).size===1,S=[];for(let D of g.keys())M(D)&&S.push(D);if(S.length>0){let D=Math.max(w,m/128,1),L=new Map,P=(C,z)=>{let Q={u:C,v:z};Fc(i.nodes[C],i.nodes[z],0,D,(ee,te)=>{let ne=`${ee}:${te}`,Ae=L.get(ne);Ae?Ae.push(Q):L.set(ne,[Q])})};for(let C of f){let[z,Q]=C.split("-").map(Number);P(z,Q)}let v=(C,z)=>{let Q=x(C,z);f.delete(Q);let ee=E.get(Q);E.delete(Q);let te=g.get(C),ne=g.get(z);return te?.splice(te.indexOf(z),1),ne?.splice(ne.indexOf(C),1),ee};for(let C of S){if(!M(C))continue;let z=i.nodes[C],Q=g.get(C)??[],ee=-1,te=1/0;i.forEachInRadius(z,w,Le=>{if(Le===C||Q.includes(Le))return;let Te=Kt(z,i.nodes[Le]);Te>=n&&Te<=w&&Te<te&&(te=Te,ee=Le)});let ne=null,Ae=1/0,Ft=0,Rt=Math.floor(z[0]/D),hn=Math.floor(z[1]/D),pe=new Set;for(let Le=-1;Le<=1;Le++)for(let Te=-1;Te<=1;Te++){let $e=L.get(`${Rt+Le}:${hn+Te}`);if($e)for(let qt of $e){let li=x(qt.u,qt.v);if(pe.has(li)||(pe.add(li),!f.has(li)||qt.u===C||qt.v===C))continue;let Ha=i.nodes[qt.u],Wa=i.nodes[qt.v],Fr=lo(Ha,Wa,z);if(Fr<=0||Fr>=1)continue;let Rr=Oc(z,ai(Ha,Wa));Rr<=w&&Rr<Ae&&(Ae=Rr,ne=qt,Ft=Fr)}}let ie=r.get(C)??o[0].elementId;if(ne&&Ae<te){let Le=i.nodes[ne.u],Te=i.nodes[ne.v],$e=i.getOrCreate(Ti(Le,Te,Ft));if($e===ne.u||$e===ne.v)y(C,$e,ie),P(C,$e);else{r.has($e)||r.set($e,E.get(x(ne.u,ne.v))?.values().next().value??ie);let qt=v(ne.u,ne.v)??new Set([ie]);for(let li of qt)y(ne.u,$e,li),y($e,ne.v,li);P(ne.u,$e),P($e,ne.v),y(C,$e,ie),P(C,$e)}}else ee>=0&&(y(C,ee,ie),P(C,ee))}}let T=new Map,A=0;for(let D of g.keys()){if(T.has(D))continue;let L=[D];for(T.set(D,A);L.length;){let P=L.pop();for(let v of g.get(P)??[])T.has(v)||(T.set(v,A),L.push(v))}A++}let F=(D,L)=>Math.atan2(i.nodes[L][1]-i.nodes[D][1],i.nodes[L][0]-i.nodes[D][0]),B=new Map,k=new Map;for(let[D,L]of g){let P=Array.from(new Set(L));P.sort((C,z)=>F(D,C)-F(D,z)),B.set(D,P);let v=new Map;P.forEach((C,z)=>v.set(C,z)),k.set(D,v)}let G=new Set,_=[],W=f.size*2+4;for(let[D,L]of g)for(let P of L){if(G.has(`${D}->${P}`))continue;let v=[],C=D,z=P,Q=0;for(;Q++<=W;){G.add(`${C}->${z}`),v.push(C);let ee=B.get(z),ne=(k.get(z).get(C)-1+ee.length)%ee.length,Ae=ee[ne];if(C=z,z=Ae,C===D&&z===P)break}if(v.length>=3){let ee=new Set;for(let te=0;te<v.length;te++){let ne=E.get(x(v[te],v[(te+1)%v.length]));if(ne)for(let Ae of ne)ee.add(Ae)}_.push({ring:v.map(te=>i.nodes[te]),contributors:ee,componentId:T.get(D)??-1})}}return _},Qg=(e,t,n)=>{if(e.length===0)return null;let i=1,o=new Map;for(let c of e)o.set(c,-ua(c.ring,0));let r=null,s=1/0;for(let c of e){let u=o.get(c);if(Math.sign(u)===i)continue;let m=Math.abs(u);m<n.minArea||Pr(t,c.ring)&&m<s&&(s=m,r=c)}if(!r)return null;let a=r,l=e.filter(c=>c.componentId!==a.componentId&&Math.sign(o.get(c))===i&&Math.abs(o.get(c))>=n.minArea&&!Pr(t,c.ring)&&Pr(c.ring[0],a.ring)),d=l.filter(c=>!l.some(u=>u!==c&&Pr(c.ring[0],u.ring)));return{face:a,holes:d}},Jg=(e,t)=>{let n=[];for(let i of e)(n.length===0||Kt(n[n.length-1],i)>=t)&&n.push(i);for(;n.length>1&&Kt(n[0],n[n.length-1])<t;)n.pop();return n},eE=(e,t)=>{if(e.length<=3)return e;let n=[];for(let i=0;i<e.length;i++){let o=n[n.length-1]??e[e.length-1],r=e[(i+1)%e.length];Yg(e[i],o,r)>=t&&n.push(e[i])}return n.length>=3?n:e},zc=(e,t,n)=>{let i=Jg(e,t.snapEpsilon);if(i.length<3)return null;let o=.75,r=xn(i,o);for(;r.length>n&&o<1e6;)o*=2,r=xn(i,o);return r.length>n?null:(r=eE(r,.05),r.length>=3?r:null)},tE=(e,t)=>{let n=Math.sign(ua(t,0))===Math.sign(ua(e,0))?[...t].reverse():t,i=0,o=0,r=1/0;for(let a=0;a<e.length;a++)for(let l=0;l<n.length;l++){let d=Kt(e[a],n[l]);d<r&&(r=d,i=a,o=l)}let s=e.slice(0,i+1);for(let a=0;a<=n.length;a++)s.push(n[(o+a)%n.length]);return s.push(e[i]),s.push(...e.slice(i+1)),s},nE=(e,t,n)=>{let i=zc(e,n,n.maxGeneratedPoints);if(!i)return null;let o=t.map((s,a)=>({holeRing:s,index:a})).sort((s,a)=>co(a.holeRing,0)-co(s.holeRing,0)),r=[];for(let{holeRing:s,index:a}of o){let l=n.maxGeneratedPoints-i.length-2;if(l<3)break;let d=zc(s,n,l);d&&(i=tE(i,d),r.push(a))}return{scenePoints:[...i,i[0]],splicedHoleIndices:r}},CM=e=>{let t={...Wg,...e.options},{point:n,elements:i,elementsMap:o}=e,r=Kg(n,i,o),s=new Map;i.forEach((B,k)=>s.set(B.id,k));let a=(B,k)=>{let G=P=>gt(B,ue(P,o)),_=i.filter(P=>P.id!==k?.id&&ca(P)&&G(P)),W=i.filter(P=>Rc(P)&&G(P)),D=[],L=P=>{let v=s.get(P.id)??0,C=W.filter(ee=>ee.id!==P.id&&(s.get(ee.id)??0)>v),z=Math.max(t.snapEpsilon,P.strokeWidth/2,_g),Q=Oe(P)?jg(P,o):be(P)?$g(P,o):Ii(P,o);if((P.type==="freedraw"||Oe(P)&&!P.polygon)&&Tt(P.points)&&Q.length>0){let ee=Q[0][0],te=Q[Q.length-1][1];Kt(ee,te)>=t.snapEpsilon&&Q.push(ai(te,ee))}for(let ee of Q){if(D.length>t.maxBoundarySegments)return;if(Ug(ee)!==0){if(C.length===0){D.push({segment:ee,elementId:P.id});continue}for(let[te,ne]of Vg(ee[0],ee[1],C,o,t.snapEpsilon,z))D.push({segment:ai(te,ne),elementId:P.id})}}};for(let P of k?[k,..._]:_){if(D.length>t.maxBoundarySegments)break;L(P)}return D.length>t.maxBoundarySegments?null:D},l=B=>{let k=qg(B,t);return k?Qg(k,n,t):"too_complex"},d=null;if(r){let B=t.gapTolerance+2+Math.max(r.strokeWidth??1,1),k=_c(ue(r,o),B),G=a(k,r);if(!G)return{ok:!1,reason:"too_complex"};let _=l(G);if(_==="too_complex")return{ok:!1,reason:"too_complex"};if(!_)return{ok:!1,reason:"open_region"};d=_}else{let B=i.reduce((G,_)=>G+(ca(_)?1:0),0);if(B===0)return{ok:!1,reason:"no_owner"};let k=t.fallbackSearchRadius;for(let G=0;G<4&&!d;G++,k*=2){let _=[n[0]-k,n[1]-k,n[0]+k,n[1]+k],W=i.reduce((v,C)=>v+(ca(C)&>(_,ue(C,o))?1:0),0),D=G===3||W===B;if(W===0)continue;let L=a(_,null);if(!L)return{ok:!1,reason:"no_owner"};let P=l(L);if(P==="too_complex")return{ok:!1,reason:"no_owner"};if(P&&(D||P.face.ring.every(v=>v[0]>_[0]+t.gapTolerance&&v[1]>_[1]+t.gapTolerance&&v[0]<_[2]-t.gapTolerance&&v[1]<_[3]-t.gapTolerance))&&(d=P),!d&&D)break}if(!d)return{ok:!1,reason:"no_owner"}}let{face:c,holes:u}=d,m=nE(c.ring,u.map(B=>B.ring),t);if(!m)return{ok:!1,reason:"invalid_polygon"};let{scenePoints:p,splicedHoleIndices:h}=m;if(co(p,0)<t.minArea)return{ok:!1,reason:"too_small"};let f=new Set(c.contributors);for(let B of h)for(let k of u[B].contributors)f.add(k);let g=new Set(r?[r.id,...f]:f);for(let B of u)for(let k of B.contributors)g.add(k);let E=p,[x,b,y,w]=oi(p),M=B=>{let[k,G,_,W]=ue(B,o);if(_<x||k>y||W<b||G>w)return!1;let D=[Di((k+_)/2,(G+W)/2)];if(K(B)||be(B)){let L=re(B,o),P=Math.max(1,Math.floor(B.points.length/8));for(let v=0;v<B.points.length;v+=P)D.push(Ir(Di(B.x+B.points[v][0],B.y+B.points[v][1]),L,B.angle))}return D.some(L=>Nc(L,E))},S=B=>{let[k,G,_,W]=ue(B,o);if(_<x||k>y||W<b||G>w)return!1;if(it(n,B,o))return!0;let D=Ii(B,o),L=Math.max(1,Math.floor(D.length/16));for(let v=0;v<D.length;v+=L)if(Nc(D[v][0],E))return!0;let P=Math.max(1,Math.floor(p.length/16));for(let v=0;v<p.length;v+=P)if(it(p[v],B,o))return!0;return!1},T=null,A=null;for(let B of i)Rc(B)&&S(B)&&(A=B),(g.has(B.id)||Wc(B)&&M(B))&&(T=T??B);let F=A?{placement:"above",elementId:A.id}:{placement:"below",elementId:(T??i[i.length-1]).id};return{ok:!0,ownerId:r?.id??null,boundaryElementIds:[...f].filter(B=>B!==r?.id),scenePoints:p,insertion:F}},GM=e=>{let{hitElement:t,scenePoints:n,elementsMap:i}=e;if(!Uc(t))return!1;let o=re(t,i),r=t.points.map(b=>Ir(Di(t.x+b[0],t.y+b[1]),o,t.angle)),s=co(r,0),a=co(n,0),l=Math.abs(s-a)<=.05*Math.max(s,a),[d,c,u,m]=oi(r),[p,h,f,g]=oi(n),E=zg,x=Math.abs(d-p)<=E&&Math.abs(c-h)<=E&&Math.abs(u-f)<=E&&Math.abs(m-g)<=E;return l&&x};I();import{arrayToMap as ZE,arrayToObject as pn,assertNever as du,isDevEnv as Hn,isShallowEqual as cu,isTestEnv as Wn,randomInteger as lu}from"@excalidraw/common";I();import{assertNever as pE,COLOR_PALETTE as fE,isDevEnv as hE,isTestEnv as gE,randomId as EE,Emitter as jc,toIterable as Bi}from"@excalidraw/common";I();import{ORIG_ID as sE,randomId as Xc,randomInteger as aE,arrayToMap as lE,castArray as fa,findLastIndex as vi,getUpdatedTimestamp as dE,isTestEnv as cE}from"@excalidraw/common";I();import{arrayToMap as iE}from"@excalidraw/common";var oE=e=>{let t=(o,r)=>o.groupIds[o.groupIds.length-r-1],n=(o,r)=>{let s=new Map,a=[];for(let l of o){let d=t(l,r);if(d===void 0){a.push(l);continue}let c=s.get(d);c||(c=[],s.set(d,c),a.push(d)),c.push(l)}return a.flatMap(l=>typeof l=="string"?n(s.get(l),r+1):[l])},i=n(e,0);return i.length!==e.length?(console.error("defragmentGroups: lost some elements... bailing!"),e):i},rE=e=>{let t=iE(e),n=new Set;for(let i of e)if(!n.has(i)){if(i.boundElements?.length){n.add(i);for(let o of i.boundElements){let r=t.get(o.id);r&&o.type==="text"&&n.add(r)}continue}i.type==="text"&&i.containerId&&t.get(i.containerId)?.boundElements?.some(o=>o.id===i.id)||n.add(i)}return n.size!==e.length?(console.error("normalizeBoundElementsOrder: lost some elements... bailing!"),e):[...n]},Yc=e=>rE(oE(e));var uE=(e,t,n,i)=>{let o=ga(n);return cE()&&mE(o,n.id),o.id=Xc(),o.updated=dE(),i&&(o.seed=aE(),xd(o)),o.groupIds=Vd(o.groupIds,e,r=>(t.has(r)||t.set(r,Xc()),t.get(r))),o},VM=e=>{let{elements:t}=e,n="appState"in e?e.appState:{editingGroupId:null,selectedGroupIds:{}},i=new Map,o=new Map,r=[],s=[],a=new Map,l=new Map,d=new Map,c=lE(t),u=e.type==="in-place"?e.idsOfElementsToDuplicate:new Map(t.map(E=>[E.id,E])),m=e.type==="everything"&&e.preserveFrameChildrenOrder;if(e.type==="in-place")for(let E of Object.keys(e.appState.selectedGroupIds))t.filter(x=>x.groupIds?.includes(E)).forEach(x=>u.set(x.id,x));t=Yc(t);let p=t.slice(),h=E=>{let b=fa(E).reduce((y,w)=>{if(i.has(w.id))return y;i.set(w.id,!0),Ve(w)||console.error("[NONDELETED][INVARIANT] Element to duplicate should be non-deleted");let M=uE(n.editingGroupId,o,w,e.randomizeSeed);return i.set(M.id,!0),d.set(M.id,M),a.set(w.id,M.id),l.set(M.id,w),s.push(w),r.push(M),y.push(M),y},[]);return Array.isArray(E)?b:b[0]||null},f=(E,x)=>{if(x){if(E>p.length-1){p.push(...fa(x));return}p.splice(E+1,0,...fa(x))}},g=new Set(t.filter(E=>u.has(E.id)&&J(E)).map(E=>E.id));for(let E of t){if(i.has(E.id)||!u.has(E.id))continue;let x=Ys(n,E);if(x){let b=Qe(t,x).flatMap(w=>J(w)&&!m?[...Bn(t,w.id),w]:[w]),y=vi(p,w=>w.groupIds?.includes(x));f(y,h(b));continue}if(!(!m&&E.frameId&&g.has(E.frameId))){if(J(E)){let b=E.id;if(m){f(vi(p,M=>M.id===b),h(E));continue}let y=Bn(t,b),w=vi(p,M=>M.frameId===b||M.id===b);f(w,h([...y,E]));continue}if(_t(E)){let b=de(E,c),y=vi(p,w=>w.id===E.id||"containerId"in w&&w.containerId===E.id);b?f(y,h([E,b])):f(y,h(E));continue}if(Ie(E)){let b=Ue(E,c),y=vi(p,w=>w.id===E.id||w.id===b?.id);b?f(y,h([b,E])):f(y,h(E));continue}f(vi(p,b=>b.id===E.id),h(E))}}if(vd(r,a,d),nc(p,s,a),e.overrides)for(let E of r){let x=l.get(E.id);x&&Object.assign(E,e.overrides({duplicateElement:E,origElement:x,origIdToDuplicateId:a}))}return{duplicatedElements:r,duplicateElementsMap:d,elementsWithDuplicates:p,origIdToDuplicateId:a}},ha=(e,t=0)=>{if(e==null||typeof e!="object")return e;let n=Object.prototype.toString.call(e);if(n==="[object Object]"){let i=typeof e.constructor=="function"?Object.create(Object.getPrototypeOf(e)):{};for(let o in e)if(e.hasOwnProperty(o)){if(t===0&&(o==="shape"||o==="canvas"))continue;i[o]=ha(e[o],t+1)}return i}if(Array.isArray(e)){let i=e.length,o=new Array(i);for(;i--;)o[i]=ha(e[i],t+1);return o}return N.DEV&&n!=="[object Object]"&&n!=="[object Array]"&&n.startsWith("[object ")&&console.warn(`_deepCloneElement: unexpected object type ${n}. This value will not be cloned!`),e},ga=e=>ha(e),mE=(e,t)=>{Object.defineProperty(e,sE,{value:t,writable:!1,enumerable:!1})};var ut={IMMEDIATELY:"IMMEDIATELY",NEVER:"NEVER",EVENTUALLY:"EVENTUALLY"},$c=class{constructor(t){this.app=t}onDurableIncrementEmitter=new jc;onStoreIncrementEmitter=new jc;scheduledMacroActions=new Set;scheduledMicroActions=[];_snapshot=_n.empty();get snapshot(){return this._snapshot}set snapshot(t){this._snapshot=t}scheduleAction(t){this.scheduledMacroActions.add(t),this.satisfiesScheduledActionsInvariant()}scheduleCapture(){this.scheduleAction(ut.IMMEDIATELY)}scheduleMicroAction(t){let{action:n}=t,i;if("change"in t)i=t.change;else{let r=_n.create(this.app.scene.getElementsMapIncludingDeleted(),this.app.state),s=r.maybeClone(n,t.elements?ec(t.elements):void 0,t.appState);i=mo.create(r,s)}let o="delta"in t?t.delta:void 0;this.scheduledMicroActions.push(()=>this.processAction({action:n,change:i,delta:o}))}commit(t,n){this.flushMicroActions();try{let i=this.getScheduledMacroAction();this.processAction({action:i,elements:t,appState:n})}finally{this.satisfiesScheduledActionsInvariant(),this.scheduledMacroActions=new Set}}clear(){this.snapshot=_n.empty(),this.scheduledMacroActions=new Set}emitDurableIncrement(t,n=void 0,i=void 0){let o=this.snapshot,r,s;if(n?r=n:r=mo.create(o,t),i?s=i:s=ba.calculate(o,t),!s.isEmpty()){let a=new Ea(r,s);this.onDurableIncrementEmitter.trigger(a),this.onStoreIncrementEmitter.trigger(a)}}emitEphemeralIncrement(t,n=void 0){let i;if(n)i=n;else{let r=this.snapshot;i=mo.create(r,t)}let o=new xa(i);this.onStoreIncrementEmitter.trigger(o)}applyChangeToSnapshot(t){let n=this.snapshot,i=this.snapshot.applyChange(t);return n===i?null:i}maybeCloneSnapshot(t,n,i){if(!n&&!i)return null;let o=this.snapshot,r=this.snapshot.maybeClone(t,n,i);return o===r?null:r}flushMicroActions(){for(let t of this.scheduledMicroActions)try{t()}catch(n){console.error("Failed to execute scheduled micro action",n)}this.scheduledMicroActions=[]}processAction(t){let{action:n}=t;if(n===ut.EVENTUALLY&&!this.onStoreIncrementEmitter.subscribers.length)return;let i;if("change"in t?i=this.applyChangeToSnapshot(t.change):i=this.maybeCloneSnapshot(n,t.elements,t.appState),!i)return;let o="change"in t?t.change:void 0,r="delta"in t?t.delta:void 0;try{switch(n){case ut.IMMEDIATELY:this.emitDurableIncrement(i,o,r);break;case ut.NEVER:case ut.EVENTUALLY:this.emitEphemeralIncrement(i,o);break;default:pE(n,"Unknown store action")}}finally{switch(n){case ut.IMMEDIATELY:case ut.NEVER:this.snapshot=i;break}}}getScheduledMacroAction(){let t;return this.scheduledMacroActions.has(ut.IMMEDIATELY)?t=ut.IMMEDIATELY:this.scheduledMacroActions.has(ut.NEVER)?t=ut.NEVER:t=ut.EVENTUALLY,t}satisfiesScheduledActionsInvariant(){if(!(this.scheduledMacroActions.size>=0&&this.scheduledMacroActions.size<=Object.keys(ut).length)){let t=`There can be at most three store actions scheduled at the same time, but there are "${this.scheduledMacroActions.size}".`;if(console.error(t,this.scheduledMacroActions.values()),gE()||hE())throw new Error(t)}}},mo=class e{constructor(t,n){this.elements=t;this.appState=n}static create(t,n){let i=n.getChangedElements(t),o=n.getChangedAppState(t);return new e(i,o)}},Sr=class{constructor(t,n){this.type=t;this.change=n}static isDurable(t){return t.type==="durable"}static isEphemeral(t){return t.type==="ephemeral"}},Ea=class extends Sr{constructor(n,i){super("durable",n);this.change=n;this.delta=i}},xa=class extends Sr{constructor(n){super("ephemeral",n);this.change=n}},ba=class e{constructor(t,n,i){this.id=t;this.elements=n;this.appState=i}static create(t,n,i={id:EE()}){return new this(i.id,t,n)}static calculate(t,n){let i=n.metadata.didElementsChange?zn.calculate(t.elements,n.elements):zn.empty(),o=n.metadata.didAppStateChange?Rn.calculate(t.appState,n.appState):Rn.empty();return this.create(i,o)}static restore(t){let{id:n,elements:i,appState:o}=t;return new this(n,zn.restore(i),Rn.restore(o))}static load({id:t,elements:{added:n,removed:i,updated:o},appState:{delta:r}}){let s=zn.create(n,i,o),a=Rn.create(r);return new this(t,s,a)}static squash(...t){let n=e.empty();for(let i of t)n.elements.squash(i.elements),n.appState.squash(i.appState);return n}static inverse(t){return this.create(t.elements.inverse(),t.appState.inverse())}static applyTo(t,n,i,o){let[r,s]=t.elements.applyTo(n,_n.empty().elements,o),[a,l]=t.appState.applyTo(i,r);return[r,a,s||l]}static applyLatestChanges(t,n,i,o){return this.create(t.elements.applyLatestChanges(n,i,o),t.appState,{id:t.id})}static empty(){return e.create(zn.empty(),Rn.empty())}isEmpty(){return this.elements.isEmpty()&&this.appState.isEmpty()}},_n=class e{constructor(t,n,i={didElementsChange:!1,didAppStateChange:!1,isEmpty:!1}){this.elements=t;this.appState=n;this.metadata=i}_lastChangedElementsHash=0;_lastChangedAppStateHash=0;static create(t,n,i={didElementsChange:!1,didAppStateChange:!1}){return new e(t,Vc(n)?n:Li(n),i)}static empty(){return new e(new Map,xE(),{didElementsChange:!1,didAppStateChange:!1,isEmpty:!0})}getChangedElements(t){let n={};for(let i of Bi(t.elements))this.elements.get(i.id)||(n[i.id]=Ke(i,{isDeleted:!0}));for(let i of Bi(this.elements))t.elements.get(i.id)!==i&&(n[i.id]=i);return n}getChangedAppState(t){return $.getRightDifferences(t.appState,this.appState).reduce((n,i)=>Object.assign(n,{[i]:this.appState[i]}),{})}isEmpty(){return this.metadata.isEmpty}applyChange(t){let n=new Map(this.elements);for(let[o,r]of Object.entries(t.elements))n.set(o,r);let i=Li({...this.appState,...t.appState});return e.create(n,i,{didElementsChange:Object.keys(t.elements).length>0,didAppStateChange:Object.keys(t.appState).length>0})}maybeClone(t,n,i){let o={shouldCompareHashes:!1};t===ut.EVENTUALLY&&(o.shouldCompareHashes=!0);let r=this.maybeCreateElementsSnapshot(n,o),s=this.maybeCreateAppStateSnapshot(i,o),a=!1,l=!1;return this.elements!==r&&(a=!0),this.appState!==s&&(l=!0),!a&&!l?this:new e(r,s,{didElementsChange:a,didAppStateChange:l})}maybeCreateAppStateSnapshot(t,n={shouldCompareHashes:!1}){if(!t)return this.appState;let i=Vc(t)?t:Li(t);return this.detectChangedAppState(i,n)?i:this.appState}maybeCreateElementsSnapshot(t,n={shouldCompareHashes:!1}){if(!t)return this.elements;let i=this.detectChangedElements(t,n);return i?.size?this.createElementsSnapshot(i):this.elements}detectChangedAppState(t,n={shouldCompareHashes:!1}){if(this.appState===t)return;let i=$.isRightDifferent(this.appState,t);if(!i)return;let o=qc(JSON.stringify(t));if(!(n.shouldCompareHashes&&this._lastChangedAppStateHash===o))return this._lastChangedAppStateHash=o,i}detectChangedElements(t,n={shouldCompareHashes:!1}){if(this.elements===t)return;let i=new Map;for(let r of Bi(this.elements))t.get(r.id)||i.set(r.id,Ke(r,{isDeleted:!0}));for(let r of Bi(t)){let s=this.elements.get(r.id);if(!s||s.version<r.version){if(ke(r)&&!Vn(r))continue;i.set(r.id,r)}}if(!i.size)return;let o=Kc(i);if(!(n.shouldCompareHashes&&this._lastChangedElementsHash===o))return this._lastChangedElementsHash=o,i}createElementsSnapshot(t){let n=new Map;for(let i of Bi(this.elements))n.set(i.id,i);for(let i of Bi(t))n.set(i.id,ga(i));return n}},Zc="__observedAppState",xE=()=>({name:null,editingGroupId:null,viewBackgroundColor:fE.white,selectedElementIds:{},selectedGroupIds:{},selectedLinearElement:null,croppingElementId:null,activeLockedId:null,lockedMultiSelections:{}}),Li=e=>{let t={name:e.name,editingGroupId:e.editingGroupId,viewBackgroundColor:e.viewBackgroundColor,selectedElementIds:e.selectedElementIds,selectedGroupIds:e.selectedGroupIds,croppingElementId:e.croppingElementId,activeLockedId:e.activeLockedId,lockedMultiSelections:e.lockedMultiSelections,selectedLinearElement:e.selectedLinearElement?{elementId:e.selectedLinearElement.elementId,isEditing:!!e.selectedLinearElement.isEditing}:null};return Reflect.defineProperty(t,Zc,{value:!0,enumerable:!1}),t},Vc=e=>!!Reflect.get(e,Zc);I();var au=am(nu(),1);import{randomInteger as NE,arrayToMap as FE,toBrandedType as iu,isDevEnv as ou,isTestEnv as ru,toArray as RE}from"@excalidraw/common";import{isNonDeletedElement as zE}from"@excalidraw/element";import{isFrameLikeElement as _E}from"@excalidraw/element";import{getElementsInGroup as HE}from"@excalidraw/element";import{syncInvalidIndices as WE,syncMovedIndices as UE,validateFractionalIndices as YE}from"@excalidraw/element";import{getSelectedElements as XE}from"@excalidraw/element";import{mutateElement as jE}from"@excalidraw/element";var su=e=>{let t=new Map,n=[];for(let i of e)i.isDeleted||(n.push(i),t.set(i.id,i));return{elementsMap:t,elements:n}},$E=(0,au.default)(e=>{(ou()||ru()||window?.DEBUG_FRACTIONAL_INDICES)&&YE(e,{shouldThrow:ou()||ru(),includeBoundTextValidation:!0})},1e3*60,{leading:!0,trailing:!1}),VE=e=>{let t=["includeBoundTextElement","includeElementsInFrames"],n="";for(let i of t)n+=`${i}:${e[i]?"1":"0"}`;return n},Ci=class{callbacks=new Set;nonDeletedElements=[];nonDeletedElementsMap=iu(new Map);elements=[];nonDeletedFramesLikes=[];frames=[];elementsMap=iu(new Map);selectedElementsCache={selectedElementIds:null,elements:null,cache:new Map};sceneNonce;getSceneNonce(){return this.sceneNonce}getNonDeletedElementsMap(){return this.nonDeletedElementsMap}getElementsIncludingDeleted(){return this.elements}getElementsMapIncludingDeleted(){return this.elementsMap}getNonDeletedElements(){return this.nonDeletedElements}getFramesIncludingDeleted(){return this.frames}constructor(t=null,n){t&&this.replaceAllElements(t,n)}getSelectedElements(t){let n=VE(t),i=t?.elements||this.nonDeletedElements;if(this.selectedElementsCache.elements===i&&this.selectedElementsCache.selectedElementIds===t.selectedElementIds){let r=this.selectedElementsCache.cache.get(n);if(r)return r}else t?.elements==null&&this.selectedElementsCache.cache.clear();let o=XE(i,{selectedElementIds:t.selectedElementIds},t);return t?.elements==null&&(this.selectedElementsCache.selectedElementIds=t.selectedElementIds,this.selectedElementsCache.elements=this.nonDeletedElements,this.selectedElementsCache.cache.set(n,o)),o}getNonDeletedFramesLikes(){return this.nonDeletedFramesLikes}getElement(t){return this.elementsMap.get(t)||null}getNonDeletedElement(t){let n=this.getElement(t);return n&&zE(n)?n:null}mapElements(t){let n=!1,i=this.elements.map(o=>{let r=t(o);return r!==o&&(n=!0),r});return n&&this.replaceAllElements(i),n}replaceAllElements(t,n){let i=RE(t),o=[];n?.skipValidation||$E(i),this.elements=WE(i),this.elementsMap.clear(),this.elements.forEach(s=>{_E(s)&&o.push(s),this.elementsMap.set(s.id,s)});let r=su(this.elements);this.nonDeletedElements=r.elements,this.nonDeletedElementsMap=r.elementsMap,this.frames=o,this.nonDeletedFramesLikes=su(this.frames).elements,this.triggerUpdate()}triggerUpdate(){this.sceneNonce=NE();for(let t of Array.from(this.callbacks))t()}onUpdate(t){if(this.callbacks.has(t))throw new Error;return this.callbacks.add(t),()=>{if(!this.callbacks.has(t))throw new Error;this.callbacks.delete(t)}}destroy(){this.elements=[],this.nonDeletedElements=[],this.nonDeletedFramesLikes=[],this.frames=[],this.elementsMap.clear(),this.selectedElementsCache.selectedElementIds=null,this.selectedElementsCache.elements=null,this.selectedElementsCache.cache.clear(),this.callbacks.clear()}insertElementsAtIndex(t,n){if(!t.length)return;if(n===null&&(n=this.elements.length),!Number.isFinite(n)||n<0)throw new Error("insertElementAtIndex can only be called with index >= 0");let i=[...this.elements.slice(0,n),...t,...this.elements.slice(n)];UE(i,FE(t)),this.replaceAllElements(i)}insertElement=t=>{this.insertElementsAtIndex([t],null)};getElementIndex(t){return this.elements.findIndex(n=>n.id===t)}getContainerElement=t=>t&&t.containerId&&this.getElement(t.containerId)||null;getElementsFromId=t=>{let n=this.getNonDeletedElementsMap(),i=n.get(t);return i?[i]:HE(n,t)};mutateElement(t,n,i={informMutation:!0,isDragging:!1}){let o=this.getNonDeletedElementsMap(),{version:r}=t,{version:s}=jE(t,o,n,i);return this.elementsMap.has(t.id)&&r!==s&&i.informMutation&&this.triggerUpdate(),t}};var $=class e{constructor(t,n){this.deleted=t;this.inserted=n}static create(t,n,i,o){let r=i&&o!=="inserted"?i(t,"deleted"):t,s=i&&o!=="deleted"?i(n,"inserted"):n;return new e(r,s)}static calculate(t,n,i,o){if(t===n)return e.empty();let r={},s={};for(let d of this.getDifferences(t,n))r[d]=t[d],s[d]=n[d];let[a,l]=o?o(r,s):[r,s];return e.create(a,l,i)}static empty(){return new e({},{})}static isEmpty(t){return!Object.keys(t.deleted).length&&!Object.keys(t.inserted).length}static merge(t,n,i=e.empty()){return e.create({...t.deleted,...n.deleted,...i.deleted},{...t.inserted,...n.inserted,...i.inserted})}static mergeObjects(t,n,i={}){let o={...t};for(let r of Object.keys(i))delete o[r];return{...o,...n}}static mergeArrays(t,n,i,o){return Object.values(e.mergeObjects(pn(t??[],o),pn(n??[],o),pn(i??[],o)))}static diffObjects(t,n,i,o){if(!t[i]&&!n[i])return;let r=t[i]!==null&&typeof t[i]=="object",s=n[i]!==null&&typeof n[i]=="object";if(r||s){let a=t[i]??{},l=n[i]??{},d=e.getLeftDifferences(a,l).reduce((u,m)=>(u[m]=o(a[m]),u),{}),c=e.getRightDifferences(a,l).reduce((u,m)=>(u[m]=o(l[m]),u),{});Object.keys(d).length||Object.keys(c).length?(Reflect.set(t,i,d),Reflect.set(n,i,c)):(Reflect.deleteProperty(t,i),Reflect.deleteProperty(n,i))}else t[i]===n[i]&&(Reflect.deleteProperty(t,i),Reflect.deleteProperty(n,i))}static diffArrays(t,n,i,o){if(!(!t[i]&&!n[i])&&(Array.isArray(t[i])||Array.isArray(n[i]))){let r=Array.isArray(t[i])?t[i]:[],s=Array.isArray(n[i])?n[i]:[],a=pn(e.getLeftDifferences(pn(r,o),pn(s,o)),d=>d),l=pn(e.getRightDifferences(pn(r,o),pn(s,o)),d=>d);if(Object.keys(a).length||Object.keys(l).length){let d=r.filter(u=>a[o?o(u):String(u)]),c=s.filter(u=>l[o?o(u):String(u)]);Reflect.set(t,i,d),Reflect.set(n,i,c)}else Reflect.deleteProperty(t,i),Reflect.deleteProperty(n,i)}}static isLeftDifferent(t,n,i=!1){return!!this.distinctKeysIterator("left",t,n,i).next().value}static isRightDifferent(t,n,i=!1){return!!this.distinctKeysIterator("right",t,n,i).next().value}static isInnerDifferent(t,n,i=!1){return!!!!this.distinctKeysIterator("inner",t,n,i).next().value}static isDifferent(t,n,i=!1){return!!!!this.distinctKeysIterator("full",t,n,i).next().value}static getLeftDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("left",t,n,i)).sort()}static getRightDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("right",t,n,i)).sort()}static getInnerDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("inner",t,n,i)).sort()}static getDifferences(t,n,i=!1){return Array.from(this.distinctKeysIterator("full",t,n,i)).sort()}static*distinctKeysIterator(t,n,i,o=!1){if(n===i)return;let r=[];t==="left"?r=Object.keys(n):t==="right"?r=Object.keys(i):t==="inner"?r=Object.keys(n).filter(s=>s in i):t==="full"?r=Array.from(new Set([...Object.keys(n),...Object.keys(i)])):du(t,`Unknown distinctKeysIterator's join param "${t}"`,!0);for(let s of r){let a=n[s],l=i[s];if(a!==l){if(!o&&typeof a=="object"&&typeof l=="object"&&a!==null&&l!==null&&cu(a,l))continue;yield s}}}},Rn=class e{constructor(t){this.delta=t}static create(t){return new e(t)}static calculate(t,n){let i=$.calculate(t,n,e.orderAppStateKeys,e.postProcess);return new e(i)}static restore(t){let{delta:n}=t;return new e(n)}static empty(){return new e($.create({},{}))}inverse(){let t=$.create(this.delta.inserted,this.delta.deleted);return new e(t)}squash(t){if(t.isEmpty())return this;let n=$.mergeObjects(this.delta.deleted.selectedElementIds??{},t.delta.deleted.selectedElementIds??{}),i=$.mergeObjects(this.delta.inserted.selectedElementIds??{},t.delta.inserted.selectedElementIds??{}),o=$.mergeObjects(this.delta.deleted.selectedGroupIds??{},t.delta.deleted.selectedGroupIds??{}),r=$.mergeObjects(this.delta.inserted.selectedGroupIds??{},t.delta.inserted.selectedGroupIds??{}),s=$.mergeObjects(this.delta.deleted.lockedMultiSelections??{},t.delta.deleted.lockedMultiSelections??{}),a=$.mergeObjects(this.delta.inserted.lockedMultiSelections??{},t.delta.inserted.lockedMultiSelections??{}),l={},d={};return(Object.keys(n).length||Object.keys(i).length)&&(d.selectedElementIds=n,l.selectedElementIds=i),(Object.keys(o).length||Object.keys(r).length)&&(d.selectedGroupIds=o,l.selectedGroupIds=r),(Object.keys(s).length||Object.keys(a).length)&&(d.lockedMultiSelections=s,l.lockedMultiSelections=a),this.delta=$.merge(this.delta,t.delta,$.create(d,l)),this}applyTo(t,n){try{let{selectedElementIds:i={},selectedGroupIds:o={},lockedMultiSelections:r={}}=this.delta.deleted,{selectedElementIds:s={},selectedGroupIds:a={},lockedMultiSelections:l={},selectedLinearElement:d,...c}=this.delta.inserted,u=$.mergeObjects(t.selectedElementIds,s,i),m=$.mergeObjects(t.selectedGroupIds,a,o),p=$.mergeObjects(t.lockedMultiSelections,l,r),h=d&&n.has(d.elementId)?new R(n.get(d.elementId),n,d.isEditing):null,f={...t,...c,selectedElementIds:u,selectedGroupIds:m,lockedMultiSelections:p,selectedLinearElement:typeof d<"u"?h:t.selectedLinearElement},g=this.filterInvisibleChanges(t,f,n);return[f,g]}catch(i){if(console.error("Couldn't apply appstate change",i),Wn()||Hn())throw i;return[t,!1]}}isEmpty(){return $.isEmpty(this.delta)}filterInvisibleChanges(t,n,i){let o=Li(t),r=Li(n),s=$.isRightDifferent(e.stripElementsProps(o),e.stripElementsProps(r)),a=$.isRightDifferent(e.stripStandaloneProps(o),e.stripStandaloneProps(r));if(!s&&!a)return!1;let l={value:s};if(a){let d=$.getRightDifferences(e.stripStandaloneProps(o),e.stripStandaloneProps(r)),c=new Set;(d.includes("editingGroupId")||d.includes("selectedGroupIds"))&&(c=Xd(i));for(let u of d)switch(u){case"selectedElementIds":n[u]=e.filterSelectedElements(n[u],i,l);break;case"selectedGroupIds":n[u]=e.filterSelectedGroups(n[u],c,l);break;case"croppingElementId":{let x=n[u];if(!x)l.value=!0;else{let b=i.get(x);b&&!b.isDeleted?l.value=!0:n[u]=null}break}case"editingGroupId":let m=n[u];m?c.has(m)?l.value=!0:n[u]=null:l.value=!0;break;case"selectedLinearElement":let p=n[u];if(!p)l.value=!0;else{let x=i.get(p.elementId);x&&!x.isDeleted?l.value=!0:n[u]=null}break;case"lockedMultiSelections":let h=t[u]||{},f=n[u]||{};cu(h,f)||(l.value=!0);break;case"activeLockedId":let g=t[u]||null,E=n[u]||null;g!==E&&(l.value=!0);break;default:du(u,`Unknown ObservedElementsAppState's key "${u}"`,!0)}}return l.value}static filterSelectedElements(t,n,i){let o=Object.keys(t);if(!o.length)return i.value=!0,t;let r={...t};for(let s of o){let a=n.get(s);a&&!a.isDeleted?i.value=!0:delete r[s]}return r}static filterSelectedGroups(t,n,i){if(!Object.keys(t).length)return i.value=!0,t;let r={...t};for(let s of Object.keys(r))n.has(s)?i.value=!0:delete r[s];return r}static stripElementsProps(t){let{editingGroupId:n,selectedGroupIds:i,selectedElementIds:o,selectedLinearElement:r,croppingElementId:s,lockedMultiSelections:a,activeLockedId:l,...d}=t;return d}static stripStandaloneProps(t){let{name:n,viewBackgroundColor:i,...o}=t;return o}static postProcess(t,n){try{$.diffObjects(t,n,"selectedElementIds",i=>!0),$.diffObjects(t,n,"selectedGroupIds",i=>i??!1),$.diffObjects(t,n,"lockedMultiSelections",i=>i??{})}catch(i){if(console.error("Couldn't postprocess appstate change deltas."),Wn()||Hn())throw i}finally{return[t,n]}}static orderAppStateKeys(t){let n={};for(let i of Object.keys(t).sort())n[i]=t[i];return n}},zn=class e{constructor(t,n,i){this.added=t;this.removed=n;this.updated=i}static create(t,n,i,o={shouldRedistribute:!1}){let r;if(o.shouldRedistribute){let s={},a={},l={},d=[...Object.entries(t),...Object.entries(n),...Object.entries(i)];for(let[c,u]of d)this.satisfiesAddition(u)?s[c]=u:this.satisfiesRemoval(u)?a[c]=u:l[c]=u;r=new e(s,a,l)}else r=new e(t,n,i);return(Wn()||Hn())&&(e.validate(r,"added",this.satisfiesAddition),e.validate(r,"removed",this.satisfiesRemoval),e.validate(r,"updated",this.satisfiesUpdate)),r}static restore(t){let{added:n,removed:i,updated:o}=t;return e.create(n,i,o)}static satisfiesAddition=({deleted:t,inserted:n})=>t.isDeleted===!0&&!n.isDeleted;static satisfiesRemoval=({deleted:t,inserted:n})=>!t.isDeleted&&n.isDeleted===!0;static satisfiesUpdate=({deleted:t,inserted:n})=>!!t.isDeleted==!!n.isDeleted;static satisfiesCommmonInvariants=({deleted:t,inserted:n})=>!!(Number.isInteger(t.version)&&Number.isInteger(n.version)&&t.version>=0&&n.version>=0&&t.version!==n.version);static satisfiesUniqueInvariants=(t,n)=>{let{added:i,removed:o,updated:r}=t;return[i[n],o[n],r[n]].filter(Boolean).length===1};static validate(t,n,i){for(let[o,r]of Object.entries(t[n]))if(!this.satisfiesCommmonInvariants(r)||!this.satisfiesUniqueInvariants(t,o)||!i(r))throw console.error(`Broken invariant for "${n}" delta, element "${o}", delta:`,r),new Error(`ElementsDelta invariant broken for element "${o}".`)}static calculate(t,n){if(t===n)return e.empty();let i={},o={},r={};for(let s of t.values())if(!n.get(s.id)){let l={...s},d={isDeleted:!0,version:s.version+1,versionNonce:lu()},c=$.create(l,d,e.stripIrrelevantProps);s.isDeleted?r[s.id]=c:o[s.id]=c}for(let s of n.values()){let a=t.get(s.id);if(!a){let l={isDeleted:!0,version:s.version-1,versionNonce:lu()},d={...s},c=$.create(l,d,e.stripIrrelevantProps);s.isDeleted?r[s.id]=c:i[s.id]=c;continue}if(a.versionNonce!==s.versionNonce){let l=$.calculate(a,s,e.stripIrrelevantProps,e.postProcess);if(typeof a.isDeleted=="boolean"&&typeof s.isDeleted=="boolean"&&a.isDeleted!==s.isDeleted){a.isDeleted&&!s.isDeleted?i[s.id]=l:o[s.id]=l;continue}r[s.id]=l}}return e.create(i,o,r)}static empty(){return e.create({},{},{})}inverse(){let t=r=>{let s={};for(let[a,{inserted:l,deleted:d}]of Object.entries(r))s[a]=$.create({...l},{...d});return s},n=t(this.added),i=t(this.removed),o=t(this.updated);return e.create(i,n,o)}isEmpty(){return Object.keys(this.added).length===0&&Object.keys(this.removed).length===0&&Object.keys(this.updated).length===0}applyLatestChanges(t,n,i){let o=(d,c)=>(u,m)=>{let p;switch(m){case"deleted":p=d;break;case"inserted":p=c;break}if(!p)return console.error("Element not found when trying to apply latest changes"),u;let h={};for(let f of Object.keys(u))switch(f){case"boundElements":h[f]=u[f];break;default:h[f]=p[f]}return h},r=d=>{let c={};for(let[u,m]of Object.entries(d)){let p=t.get(u),h=n.get(u),f=null;p||h?f=$.create(m.deleted,m.inserted,o(p,h),i):f=m,$.isInnerDifferent(f.deleted,f.inserted)&&(c[u]=f)}return c},s=r(this.added),a=r(this.removed),l=r(this.updated);return e.create(s,a,l,{shouldRedistribute:!0})}applyTo(t,n=_n.empty().elements,i){let o=new Map(t),r,s={containsVisibleDifference:!1,containsZindexDifference:!1,applyDirection:void 0};try{let a=e.createApplier(t,o,n,s,i),l=a(this.added),d=a(this.removed),c=a(this.updated),u=this.resolveConflicts(t,o,s.applyDirection);r=new Map([...l,...d,...c,...u])}catch(a){if(console.error("Couldn't apply elements delta",a),Wn()||Hn())throw a;return[t,!0]}try{o=e.reorderElements(o,r,s),e.redrawElements(o,r)}catch(a){if(console.error("Couldn't mutate elements after applying elements change",a),Wn()||Hn())throw a}finally{return[o,s.containsVisibleDifference]}}squash(t){if(t.isEmpty())return this;let{added:n,removed:i,updated:o}=t,r=(s,a)=>{let l=$.mergeArrays(s.deleted.boundElements??[],a.deleted.boundElements??[],void 0,c=>c.id)??[],d=$.mergeArrays(s.inserted.boundElements??[],a.inserted.boundElements??[],void 0,c=>c.id)??[];if(!(!l.length&&!d.length))return $.create({boundElements:l},{boundElements:d})};for(let[s,a]of Object.entries(n)){let l=this.added[s]??this.removed[s]??this.updated[s];if(!l)this.added[s]=a;else{let d=r(l,a);delete this.removed[s],delete this.updated[s],this.added[s]=$.merge(l,a,d)}}for(let[s,a]of Object.entries(i)){let l=this.added[s]??this.removed[s]??this.updated[s];if(!l)this.removed[s]=a;else{let d=r(l,a);delete this.added[s],delete this.updated[s],this.removed[s]=$.merge(l,a,d)}}for(let[s,a]of Object.entries(o)){let l=this.added[s]??this.removed[s]??this.updated[s];if(!l)this.updated[s]=a;else{let d=r(l,a),c=$.merge(l,a,d);l===this.added[s]?this.added[s]=c:l===this.removed[s]?this.removed[s]=c:this.updated[s]=c}}return(Wn()||Hn())&&(e.validate(this,"added",e.satisfiesAddition),e.validate(this,"removed",e.satisfiesRemoval),e.validate(this,"updated",e.satisfiesUpdate)),this}static createApplier=(t,n,i,o,r)=>s=>{let a=e.createGetter(n,i,o);return Object.entries(s).reduce((l,[d,c])=>{let u=a(d,c.inserted);if(u){let m=e.applyDelta(u,c,o,r);if(n.set(m.id,m),l.set(m.id,m),!o.applyDirection){let p=t.get(d);p&&(o.applyDirection=p.version>m.version?"backward":"forward")}}return l},new Map)};static createGetter=(t,n,i)=>(o,r)=>{let s=t.get(o);return s||(s=n.get(o),s?(i.containsZindexDifference=!0,(!r.isDeleted||r.isDeleted&&!s.isDeleted)&&(i.containsVisibleDifference=!0)):s=Ke({id:o,version:1},{...r})),s};static applyDelta(t,n,i,o){let r={};for(let s of Object.keys(n.inserted)){if(s==="boundElements"||o?.excludedProperties?.has(s))continue;let a=n.inserted[s];Reflect.set(r,s,a)}if(n.deleted.boundElements?.length||n.inserted.boundElements?.length){let s=$.mergeArrays(t.boundElements,n.inserted.boundElements,n.deleted.boundElements,a=>a.id);Object.assign(r,{boundElements:s})}if(!i.containsVisibleDifference){let{index:s,...a}=r,l=e.checkForVisibleDifference(t,a);i.containsVisibleDifference=l}return i.containsZindexDifference||(i.containsZindexDifference=n.deleted.index!==n.inserted.index),Ke(t,r,!0)}static checkForVisibleDifference(t,n){return t.isDeleted&&n.isDeleted!==!1?!1:t.isDeleted&&n.isDeleted===!1||t.isDeleted===!1&&n.isDeleted?!0:$.isRightDifferent(t,n)}resolveConflicts(t,n,i="forward"){let o=new Map,r=(a,l)=>{let d=n.get(a.id);if(!d)return;let c=t.get(a.id),u=i==="forward"?d.version+1:d.version-1,m=l,p;c===d?p=Ke(d,{...m,version:u},!0):p=Fe(d,n,{...m,version:c?.version!==d.version?d.version:u}),o.set(p.id,p),n.set(p.id,p)};for(let a of Object.keys(this.removed))e.unbindAffected(t,n,a,r);for(let a of Object.keys(this.added))e.rebindAffected(t,n,a,r);for(let[a]of Array.from(Object.entries(this.updated)).filter(([l,d])=>Object.keys({...d.deleted,...d.inserted}).find(c=>Bd.has(c)))){let l=n.get(a);!l||l.isDeleted||e.rebindAffected(t,n,a,r)}let s=new Map(Array.from(t).filter(([a])=>o.has(a)));return this.squash(e.calculate(s,o)),o}static unbindAffected(t,n,i,o){let r=()=>t.get(i),s=()=>n.get(i);Dn.unbindAffected(n,r(),o),Dn.unbindAffected(n,s(),o),vn.unbindAffected(n,r(),o),vn.unbindAffected(n,s(),o)}static rebindAffected(t,n,i,o){let r=()=>t.get(i),s=()=>n.get(i);Dn.unbindAffected(n,r(),o),Dn.rebindAffected(n,s(),o),vn.unbindAffected(n,r(),(a,l)=>{oe(a)&&o(a,l)}),vn.rebindAffected(n,s(),o)}static redrawElements(t,n){try{let i=new Ci(t,{skipValidation:!0});e.redrawTextBoundingBoxes(i,n),e.redrawBoundArrows(i,n)}catch(i){if(console.error("Couldn't redraw elements",i),Wn()||Hn())throw i}finally{return t}}static redrawTextBoundingBoxes(t,n){let i=t.getNonDeletedElementsMap(),o=new Map;for(let r of n.values()){if(Ie(r)){let{containerId:s}=r,a=s?i.get(s):void 0;a&&o.set(a.id,{container:a,boundText:r})}if(_t(r)){let s=Bt(r),a=s?i.get(s):void 0;a&&o.set(r.id,{container:r,boundText:a})}}for(let{container:r,boundText:s}of o.values())r.isDeleted||s.isDeleted||Uo(s,r,t)}static redrawBoundArrows(t,n){for(let i of n.values())!i.isDeleted&&we(i)&&je(i,t,{changedElements:n})}static reorderElements(t,n,i){if(!i.containsZindexDifference)return t;let o=Array.from(t.values()),r=Jd([...o]),s=$.getRightDifferences(o,r,!0).reduce((a,l)=>{let d=o[Number(l)];return d&&n.has(d.id)&&a.set(d.id,d),a},new Map);return!i.containsVisibleDifference&&s.size&&(i.containsVisibleDifference=!0),ZE(ni(r,s))}static postProcess(t,n){try{$.diffArrays(t,n,"boundElements",r=>r.id);let i=t.points??[],o=n.points??[];$.isDifferent(i,o)||(Reflect.deleteProperty(t,"points"),Reflect.deleteProperty(n,"points"))}catch(i){if(console.error("Couldn't postprocess elements delta."),Wn()||Hn())throw i}finally{return[t,n]}}static stripIrrelevantProps(t){let{id:n,updated:i,...o}=t;return o}};I();var CA=(e,t,n,i,o)=>{let[r,s,a,l]=n.axis==="x"?["minX","midX","maxX","width"]:["minY","midY","maxY","height"],d=un(e),c=ar(e,t,i).map(kn).map(h=>[h,un(h)]).sort((h,f)=>h[1][s]-f[1][s]),u=0;for(let h of c)u+=h[1][l];let m=(d[l]-u)/(c.length-1);if(m<0){let h=c.findIndex(x=>x[1][r]===d[r]),f=c.findIndex(x=>x[1][a]===d[a]),g=(c[f][1][s]-c[h][1][s])/(c.length-1),E=c[h][1][s];return c.flatMap(([x,b],y)=>{let w={x:0,y:0};return y!==h&&y!==f&&(E+=g,w[n.axis]=E-b[s]),x.map(M=>{let S=o.mutateElement(M,{x:M.x+w.x,y:M.y+w.y});return je(M,o,{simultaneouslyUpdated:x}),S})})}let p=d[r];return c.flatMap(([h,f])=>{let g={x:0,y:0};return g[n.axis]=p-f[r],p+=m,p+=f[l],h.map(E=>{let x=o.mutateElement(E,{x:E.x+g.x,y:E.y+g.y});return je(E,o,{simultaneouslyUpdated:h}),x})})};I();import{TEXT_AUTOWRAP_THRESHOLD as KE,getGridPoint as qE,getFontString as QE,DRAGGING_THRESHOLD as JE}from"@excalidraw/common";var WA=(e,t,n,i,o,r)=>{if(t.length===1&&j(t[0])&&(t[0].startBinding||t[0].endBinding))return;let s=t.filter(m=>{if(j(m)&&m.startBinding&&m.endBinding){let p=t.find(f=>f.id===m.startBinding?.elementId),h=t.find(f=>f.id===m.endBinding?.elementId);return p&&h}return!0}),a=new Set(s),l=s.filter(m=>J(m)).map(m=>m.id);if(l.length>0)for(let m of i.getNonDeletedElements())m.frameId!==null&&l.includes(m.frameId)&&a.add(m);let d=[];for(let m of a){let p=e.originalElements.get(m.id);if(!p)return;d.push(p)}let c=ex(Je(d),n,o,r),u=new Set(Array.from(a,m=>m.id));a.forEach(m=>{let p=!X(m),h=p||(m.startBinding?u.has(m.startBinding.elementId):!1),f=p||(m.endBinding?u.has(m.endBinding.elementId):!1);if(X(m)){if(a.size>1||Math.max(Math.abs(c.x),Math.abs(c.y))>JE||!m.startBinding&&!m.endBinding){ya(e,m,i,c);let g=m.startBinding&&!h,E=m.endBinding&&!f;(g||E)&&(g&&Xe(m,"start",i),E&&Xe(m,"end",i))}}else{ya(e,m,i,c);let g=de(m,i.getNonDeletedElementsMap());g&&ya(e,g,i,c),je(m,i,{simultaneouslyUpdated:Array.from(a)})}})},ex=(e,t,n,i)=>{let[o,r]=e,s=o+t.x+n.x,a=r+t.y+n.y;if(n.x===0||n.y===0){let[l,d]=qE(o+t.x,r+t.y,i);n.x===0&&(s=l),n.y===0&&(a=d)}return{x:s-o,y:a-r}},ya=(e,t,n,i)=>{let o=e.originalElements.get(t.id)??t,r=o.x+i.x,s=o.y+i.y;n.mutateElement(t,{x:r,y:s})},UA=(e,t,n)=>{let[i,o]=Je(e);return[t-i,n-o]},tx=({newElement:e,anchorX:t,anchorRatio:n,pointerX:i,nextY:o,zoom:r,scene:s,informMutation:a=!0})=>{let l=i-t,d=n===0?l:n===1?-l:Math.abs(l),c=Math.max(n===.5?d*2:d,zo(QE({fontSize:e.fontSize,fontFamily:e.fontFamily}),e.lineHeight));s.mutateElement(e,{x:t-c*n,...o===void 0?{}:{y:o},width:c,...d>KE/r?{autoResize:!1}:{}},{informMutation:a,isDragging:!1})},YA=({newElement:e,elementType:t,originX:n,originY:i,x:o,y:r,width:s,height:a,shouldMaintainAspectRatio:l,shouldResizeFromCenter:d,zoom:c,scene:u,widthAspectRatio:m=null,originOffset:p=null,informMutation:h=!0})=>{if(l&&e.type!=="selection"&&(m?a=s/m:(Math.abs(r-i)>Math.abs(o-n)?{width:s,height:a}=la(t,a,o<n?-s:s):{width:s,height:a}=la(t,s,r<i?-a:a),a<0&&(a=-a))),oe(e)){tx({newElement:e,anchorX:n+(p?.x??0),anchorRatio:d?.5:o<n?1:0,pointerX:o,nextY:i+(p?.y??0),zoom:c,scene:u,informMutation:h});return}let f=o<n?n-s:n,g=r<i?i-a:i;if(d&&(s+=s,a+=a,f=n-s/2,g=i-a/2),s!==0&&a!==0){let E=null;ke(e)&&(E={initialWidth:s,initialHeight:a}),u.mutateElement(e,{x:f+(p?.x??0),y:g+(p?.y??0),width:s,height:a,...E},{informMutation:h,isDragging:!1})}};I();import{ELEMENT_LINK_KEY as Ar,normalizeLink as uu}from"@excalidraw/common";var ZA=(e,t)=>{let n=window.location.href;try{let i=new URL(n);return i.searchParams.set(Ar,e),uu(i.toString())}catch(i){console.error(i)}return uu(n)},KA=(e,t)=>{if(e.length>0&&nx(e)){if(e.length===1)return{id:e[0].id,type:"element"};if(e.length>1){let n=Object.keys(t.selectedGroupIds)[0];return n?{id:n,type:"group"}:{id:e[0].groupIds[0],type:"group"}}}return null},nx=e=>!!(e.length===1||e.length>1&&jd(e)),qA=e=>{try{let t=new URL(e);return t.searchParams.has(Ar)&&t.host===window.location.host}catch{return!1}},QA=e=>{try{let{searchParams:t}=new URL(e);if(t.has(Ar))return t.get(Ar)}catch{}return null};I();import{FONT_FAMILY as ix,VERTICAL_ALIGN as ox,escapeDoubleQuotes as Pa,getFontString as rx}from"@excalidraw/common";var Ot=new Map,sx=/^(?:http(?:s)?:\/\/)?(?:www\.)?youtu(?:be\.com|\.be)\/(embed\/|watch\?v=|shorts\/|playlist\?list=|embed\/videoseries\?list=)?([a-zA-Z0-9_-]+)/,ax=/^(?:http(?:s)?:\/\/)?(?:(?:w){3}\.)?(?:player\.)?vimeo\.com\/(?:video\/)?([^?\s]+)(?:\?.*)?$/,lx=/^https:\/\/(?:www\.)?figma\.com/,mu=/^https:\/\/gist\.github\.com\/([\w_-]+)\/([\w_-]+)/,dx=/^<script[\s\S]*?\ssrc=["'](https:\/\/gist\.github\.com\/.*?)\.js["']/i,cx=/^(?:https?:\/\/)?forms\.microsoft\.com\//,pu=/(?:https?:\/\/)?(?:(?:w){3}\.)?(?:twitter|x)\.com\/[^/]+\/status\/(\d+)/,ux=/^<blockquote[\s\S]*?\shref=["'](https?:\/\/(?:twitter|x)\.com\/[^"']*)/i,mx=/^https:\/\/(?:www\.)?val\.town\/(v|embed)\/[a-zA-Z_$][0-9a-zA-Z_$]+\.[a-zA-Z_$][0-9a-zA-Z_$]+/,px=/^<(?:iframe|blockquote)[\s\S]*?\s(?:src|href)=["']([^"']*)["'][\s\S]*?>$/i,fu=/giphy.com\/(?:clips|embed|gifs)\/[a-zA-Z0-9]*?-?([a-zA-Z0-9]+)(?:[^a-zA-Z0-9]|$)/,hu=/^(?:http(?:s)?:\/\/)?(?:www\.)?reddit\.com\/r\/([a-zA-Z0-9_]+)\/comments\/([a-zA-Z0-9_]+)\/([a-zA-Z0-9_]+)\/?(?:\?[^#\s]*)?(?:#[^\s]*)?$/,fx=/^<blockquote[\s\S]*?\shref=["'](https?:\/\/(?:www\.)?reddit\.com\/[^"']*)/i,Eu=e=>{let t;try{let s=new URL(e.startsWith("http")?e:`https://${e}`);t=s.searchParams.get("t")||s.searchParams.get("start")}catch{t=e.match(/[?&#](?:t|start)=([^&#\s]+)/)?.[1]}if(!t)return 0;if(/^\d+$/.test(t))return parseInt(t,10);let n=t.match(/^(?:(\d+)h)?(?:(\d+)m)?(?:(\d+)s)?$/);if(!n)return 0;let[,i="0",o="0",r="0"]=n;return parseInt(i)*3600+parseInt(o)*60+parseInt(r)},hx=e=>{try{let t=new URL(e.startsWith("http")?e:`https://${e}`);if(t.hostname.replace(/^www\./,"")!=="drive.google.com")return null;let i=null,o=t.pathname.match(/^\/file\/d\/([^/]+)(?:\/|$)/);if(o?.[1]?i=o[1]:(t.pathname==="/open"||t.pathname==="/uc")&&(i=t.searchParams.get("id")),!i||!/^[a-zA-Z0-9_-]+$/.test(i))return null;let r=t.searchParams.get("resourcekey"),s=Eu(t.toString());return{fileId:i,resourceKey:r&&/^[a-zA-Z0-9_-]+$/.test(r)?r:void 0,timestamp:s>0?s:void 0}}catch{return null}},Sa=new Set(["youtube.com","youtu.be","vimeo.com","player.vimeo.com","drive.google.com","figma.com","link.excalidraw.com","gist.github.com","twitter.com","x.com","*.simplepdf.eu","stackblitz.com","val.town","giphy.com","reddit.com","forms.microsoft.com"]),gu=new Set(["youtube.com","youtu.be","vimeo.com","player.vimeo.com","drive.google.com","figma.com","twitter.com","x.com","*.simplepdf.eu","stackblitz.com","reddit.com","forms.microsoft.com"]),Ia=e=>`<html><body>${e}</body></html>`,rT=e=>{if(!e)return null;if(Ot.has(e))return Ot.get(e);let t=e,n=gu.has(Ma(e,gu)||""),i="generic",o={w:560,h:840},r=e.match(sx);if(r?.[2]){let c=Eu(t),u=c>0?`&start=${c}`:"",m=e.includes("shorts");switch(i="video",r[1]){case"embed/":case"watch?v=":case"shorts/":e=`https://www.youtube.com/embed/${r[2]}?enablejsapi=1${u}`;break;case"playlist?list=":case"embed/videoseries?list=":e=`https://www.youtube.com/embed/videoseries?list=${r[2]}&enablejsapi=1${u}`;break;default:e=`https://www.youtube.com/embed/${r[2]}?enablejsapi=1${u}`;break}return o=m?{w:315,h:560}:{w:560,h:315},Ot.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}}let s=e.match(ax);if(s?.[1]){let c=s?.[1],u=/^\d+$/.test(c)?void 0:new URIError("Invalid embed link format");return i="video",e=`https://player.vimeo.com/video/${c}?api=1`,o={w:560,h:315},Ot.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,error:u,sandbox:{allowSameOrigin:n}}}let a=hx(e);if(a){i="video";let c=new URLSearchParams;a.resourceKey&&c.set("resourcekey",a.resourceKey),a.timestamp&&c.set("t",`${a.timestamp}`);let u=c.toString();return e=`https://drive.google.com/file/d/${a.fileId}/preview${u?`?${u}`:""}`,o={w:560,h:315},Ot.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}}if(e.match(lx))return i="generic",e=`https://www.figma.com/embed?embed_host=share&url=${encodeURIComponent(e)}`,o={w:550,h:550},Ot.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}};let d=e.match(mx);if(d)return e=d[1]==="embed"?d[0]:d[0].replace("/v","/embed"),Ot.set(t,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}};if(cx.test(e)&&!e.includes("embed=true")&&(e+=e.includes("?")?"&embed=true":"?embed=true"),pu.test(e)){let c=e.match(pu)[1],u=Pa(`https://twitter.com/x/status/${c}`),m={type:"document",srcdoc:p=>Ia(`<blockquote class="twitter-tweet" data-dnt="true" data-theme="${p}"><a href="${u}"></a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"><\/script>`),intrinsicSize:{w:480,h:480},sandbox:{allowSameOrigin:n}};return Ot.set(t,m),m}if(hu.test(e)){let[,c,u,m]=e.match(hu),p=Pa(`https://reddit.com/r/${c}/comments/${u}/${m}`),h={type:"document",srcdoc:f=>Ia(`<blockquote class="reddit-embed-bq" data-embed-theme="${f}"><a href="${p}"></a><br></blockquote><script async="" src="https://embed.reddit.com/widgets.js" charset="UTF-8"><\/script>`),intrinsicSize:{w:480,h:480},sandbox:{allowSameOrigin:n}};return Ot.set(t,h),h}if(mu.test(e)){let[,c,u]=e.match(mu),m=Pa(`https://gist.github.com/${c}/${u}`),p={type:"document",srcdoc:()=>Ia(`
|
|
22
|
+
<script src="${m}.js"><\/script>
|
|
22
23
|
<style type="text/css">
|
|
23
24
|
* { margin: 0px; }
|
|
24
25
|
table, .gist { height: 100%; }
|
|
25
26
|
.gist .gist-file { height: calc(100vh - 2px); padding: 0px; display: grid; grid-template-rows: 1fr auto; }
|
|
26
27
|
</style>
|
|
27
|
-
`),intrinsicSize:{w:550,h:720},sandbox:{allowSameOrigin:n}};return ft.set(e,p),p}return ft.set(e,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}},KP=e=>{let t;ki(e)?t="IFrame element":t=!e.link||e?.link===""?"Empty Web-Embed":e.link;let n=Math.max(Math.min(e.width/2,e.width/t.length),e.width/30),i=Bh.Helvetica,o=kh({fontSize:n,fontFamily:i});return Gd({x:e.x+e.width/2,y:e.y+e.height/2,strokeColor:e.strokeColor!=="transparent"?e.strokeColor:"black",backgroundColor:"transparent",fontFamily:i,fontSize:n,text:Pt(t,o,e.width-20),textAlign:"center",verticalAlign:Gh.MIDDLE,angle:e.angle??0})},as=(e,t)=>{try{let{hostname:n}=new URL(e),i=n.replace(/^www\./,"");if(t instanceof Set){if(ss.has(i))return i;let r=i.replace(/^([^.]+)/,"*");return ss.has(r)?r:null}let o=t.replace(/^www\./,"");if(i===o)return o}catch{}return null},QP=e=>{let t=e.match(zh);if(t&&t.length===2)return t[1];let n=e.match(Uh);if(n&&n.length===2)return n[1];let i=e.match(Nh);if(i&&i.length===2)return i[1];if(Fd.test(e))return`https://giphy.com/embed/${Fd.exec(e)[1]}`;let o=e.match(Yh);return o&&o.length===2?o[1]:e},JP=(e,t)=>{if(!e)return!1;if(t!=null)if(typeof t=="function"){let n=t(e);if(typeof n=="boolean")return n}else{if(typeof t=="boolean")return t;if(t instanceof RegExp)return t.test(e);if(Array.isArray(t)){for(let n of t)if(n instanceof RegExp){if(e.match(n))return!0}else if(as(e,n))return!0;return!1}}return!!as(e,ss)};P();import{KEYS as Ao,invariant as Do,toBrandedType as jh}from"@excalidraw/common";import{pointFrom as zd}from"@excalidraw/math";var Nn=100,xn=100,mI=e=>{switch(e){case Ao.ARROW_UP:return"up";case Ao.ARROW_DOWN:return"down";case Ao.ARROW_RIGHT:return"right";case Ao.ARROW_LEFT:return"left";default:return"right"}},Ud=(e,t,n,i)=>{let o=[...n.values()].reduce((r,s)=>{let a;if(G(s)&&(a=s[e==="predecessors"?"startBinding":"endBinding"])&&s[e==="predecessors"?"endBinding":"startBinding"]?.elementId===t.id){let l=n.get(a.elementId);if(!l)return r;Do(Le(l),"not an ExcalidrawBindableElement");let d=e==="predecessors"?s.points[s.points.length-1]:[0,0],c=ni(t,$e(t,n),[d[0]+s.x,d[1]+s.y]);r.push({relative:l,heading:c})}return r},[]);switch(i){case"up":return o.filter(r=>pe(r.heading,ze)).map(r=>r.relative);case"down":return o.filter(r=>pe(r.heading,ye)).map(r=>r.relative);case"right":return o.filter(r=>pe(r.heading,me)).map(r=>r.relative);case"left":return o.filter(r=>pe(r.heading,ke)).map(r=>r.relative)}},ls=(e,t,n)=>Ud("successors",e,t,n),ds=(e,t,n)=>Ud("predecessors",e,t,n),Wh=(e,t,n)=>{let i=xn+e.width;if(n==="up"||n==="down"){let a=Nn+e.height,l=e.x,d=e.x+e.width;if(t.every(c=>c.x+c.width<l||c.x>d))return{x:0,y:a*(n==="up"?-1:1)}}else if(n==="right"||n==="left"){let a=e.y,l=e.y+e.height;if(t.every(d=>d.y+d.height<a||d.y>l))return{x:(xn+e.width)*(n==="left"?-1:1),y:0}}if(n==="up"||n==="down"){let a=Nn+e.height,l=(t.length===0,a),d=t.length===0?0:(t.length+1)%2===0?(t.length+1)/2*i:t.length/2*i*-1;return n==="up"?{x:d,y:l*-1}:{x:d,y:l}}let o=Nn+e.height,r=(t.length===0,xn+e.width),s=t.length===0?0:(t.length+1)%2===0?(t.length+1)/2*o:t.length/2*o*-1;return n==="left"?{x:r*-1,y:s}:{x:r,y:s}},Vh=(e,t,n,i)=>{let o=i.getNonDeletedElementsMap(),r=ls(e,o,n),s=ds(e,o,n),a=Wh(e,[...r,...s],n),l=is({type:e.type,x:e.x+a.x,y:e.y+a.y,width:e.width,height:e.height,roundness:e.roundness,roughness:e.roughness,backgroundColor:e.backgroundColor,strokeColor:e.strokeColor,strokeWidth:e.strokeWidth,opacity:e.opacity,fillStyle:e.fillStyle,strokeStyle:e.strokeStyle});Do(er(l),"not an ExcalidrawFlowchartNodeElement");let d=Xd(e,l,n,t,i);return{nextNode:l,bindingArrow:d}},$h=(e,t,n,i,o)=>{let r=[];for(let s=0;s<o;s++){let a,l;if(n==="left"||n==="right"){let u=Nn*(o-1)+o*e.height,p=e.y+e.height/2-u/2,m=xn+e.width;n==="left"&&(m*=-1),a=e.x+m;let f=(Nn+e.height)*s;l=p+f}else{let u=xn*(o-1)+o*e.width,p=e.x+e.width/2-u/2,m=Nn+e.height;n==="up"&&(m*=-1),l=e.y+m;let f=(xn+e.width)*s;a=p+f}let d=is({type:e.type,x:a,y:l,width:e.width,height:e.height,roundness:e.roundness,roughness:e.roughness,backgroundColor:e.backgroundColor,strokeColor:e.strokeColor,strokeWidth:e.strokeWidth,opacity:e.opacity,fillStyle:e.fillStyle,strokeStyle:e.strokeStyle});Do(er(d),"not an ExcalidrawFlowchartNodeElement");let c=Xd(e,d,n,t,i);r.push(d),r.push(c)}return r},Xd=(e,t,n,i,o)=>{let r,s;switch(n){case"up":{r=e.x+e.width/2,s=e.y-6;break}case"down":{r=e.x+e.width/2,s=e.y+e.height+6;break}case"right":{r=e.x+e.width+6,s=e.y+e.height/2;break}case"left":{r=e.x-6,s=e.y+e.height/2;break}}let l,d;switch(n){case"up":{l=t.x+t.width/2-r,d=t.y+t.height-s+6;break}case"down":{l=t.x+t.width/2-r,d=t.y-s-6;break}case"right":{l=t.x-r-6,d=t.y-s+t.height/2;break}case"left":{l=t.x+t.width-r+6,d=t.y-s+t.height/2;break}}let c=kd({type:"arrow",x:r,y:s,startArrowhead:null,endArrowhead:i.currentItemEndArrowhead,strokeColor:e.strokeColor,strokeStyle:e.strokeStyle,strokeWidth:e.strokeWidth,opacity:e.opacity,roughness:e.roughness,points:[zd(0,0),zd(l,d)],elbowed:!0}),u=o.getNonDeletedElementsMap();gn(c,e,"start",o),gn(c,t,"end",o);let p=new Map;p.set(e.id,e),p.set(t.id,t),p.set(c.id,c),U.movePoints(c,o,new Map([[1,{point:c.points[1]}]]));let m=Dn(c,jh(new Map([...u.entries(),[e.id,e],[t.id,t],[c.id,c]])),{points:c.points});return{...c,...m}},_d=class{isExploring=!1;sameLevelNodes=[];sameLevelIndex=0;direction=null;visitedNodes=new Set;clear(){this.isExploring=!1,this.sameLevelNodes=[],this.sameLevelIndex=0,this.direction=null,this.visitedNodes.clear()}exploreByDirection(t,n,i){if(!Le(t))return null;if(i!==this.direction&&this.clear(),this.visitedNodes.has(t.id)||this.visitedNodes.add(t.id),this.isExploring&&i===this.direction&&this.sameLevelNodes.length>1)return this.sameLevelIndex=(this.sameLevelIndex+1)%this.sameLevelNodes.length,this.sameLevelNodes[this.sameLevelIndex].id;let o=[...ls(t,n,i),...ds(t,n,i)];if(o.length>0)return this.sameLevelIndex=0,this.isExploring=!0,this.sameLevelNodes=o,this.direction=i,this.visitedNodes.add(o[0].id),o[0].id;if(i===this.direction||!this.isExploring){this.isExploring||this.visitedNodes.add(t.id);let s=["up","right","down","left"].filter(a=>a!==i).map(a=>[...ls(t,n,a),...ds(t,n,a)]).flat().filter(a=>!this.visitedNodes.has(a.id));for(let a of s)if(!this.visitedNodes.has(a.id))return this.visitedNodes.add(a.id),this.isExploring=!0,this.direction=i,a.id}return null}},Yd=class{isCreatingChart=!1;numberOfNodes=0;direction="right";pendingNodes=null;createNodes(t,n,i,o){let r=o.getNonDeletedElementsMap();if(i!==this.direction){let{nextNode:s,bindingArrow:a}=Vh(t,n,i,o);this.numberOfNodes=1,this.isCreatingChart=!0,this.direction=i,this.pendingNodes=[s,a]}else{this.numberOfNodes+=1;let s=$h(t,n,i,o,this.numberOfNodes);this.isCreatingChart=!0,this.direction=i,this.pendingNodes=s}if(t.frameId){let s=r.get(t.frameId);Do(s&&Ri(s),"not an ExcalidrawFrameElement"),s&&this.pendingNodes.every(a=>Kt([a],s,r)||Zt(a,s,r))&&(this.pendingNodes=this.pendingNodes.map(a=>be(a,r,{frameId:t.frameId})))}}clear(){this.isCreatingChart=!1,this.pendingNodes=null,this.direction=null,this.numberOfNodes=0}},fI=(e,t)=>{for(let[,n]of t)if(n.type==="arrow"&&(n.startBinding?.elementId===e.id||n.endBinding?.elementId===e.id))return!0;return!1};P();import{MIME_TYPES as jd,SVG_NS as Zh}from"@excalidraw/common";var qh=e=>new Promise((t,n)=>{let i=new Image;i.onload=()=>{t(i)},i.onerror=o=>{n(o)},i.src=e}),wI=async({fileIds:e,files:t,imageCache:n})=>{let i=new Map,o=new Map;return await Promise.all(e.reduce((r,s)=>{let a=t[s];return a&&!i.has(s)?(i.set(s,!0),r.concat((async()=>{try{if(a.mimeType===jd.binary)throw new Error("Only images can be added to ImageCache");let l=qh(a.dataURL),d={image:l,mimeType:a.mimeType};n.set(s,d);let c=await l;n.set(s,{...d,image:c})}catch{o.set(s,!0)}})())):r},[])),{imageCache:n,updatedFiles:i,erroredFiles:o}},yI=e=>e.filter(t=>Ht(t)),Kh=e=>e?.nodeName.toLowerCase()==="svg",bI=e=>{let t=new DOMParser().parseFromString(e,jd.svg),n=t.querySelector("svg");if(t.querySelector("parsererror")||!Kh(n))throw new Error("Invalid SVG");{n.hasAttribute("xmlns")||n.setAttribute("xmlns",Zh);let o=n.getAttribute("width"),r=n.getAttribute("height");(o?.includes("%")||o==="auto")&&(o=null),(r?.includes("%")||r==="auto")&&(r=null);let s=n.getAttribute("viewBox");if(!o||!r){if(o=o||"50",r=r||"50",s){let a=s.match(/\d+ +\d+ +(\d+(?:\.\d+)?) +(\d+(?:\.\d+)?)/);a&&([,o,r]=a)}n.setAttribute("width",o),n.setAttribute("height",r)}return s||n.setAttribute("viewBox",`0 0 ${o} ${r}`),n.outerHTML}};P();var TI=(e,t,n,i=50)=>{if(!e||e.length===0)return[];let o=[],r=Array.isArray(e[0])?e:e.map(m=>[m]),s=r.length,a=Math.max(1,Math.ceil(Math.sqrt(s))),l=[];for(let m=0;m<s;m+=a)l.push(r.slice(m,m+a));let d=0,c=l.map(m=>{let f=0,E=0,h=m.map(g=>{let[x,y,b,w]=Xe(g);return{elements:g,bounds:[x,y,b,w],width:b-x,height:w-y}});return h.forEach((g,x)=>{f+=g.width,x<h.length-1&&(f+=i),g.height>E&&(E=g.height)}),d+=E,{unitBounds:h,width:f,maxHeight:E}}),u=d+Math.max(0,l.length-1)*i,p=n-u/2;return c.forEach(m=>{let{unitBounds:f,width:E,maxHeight:h}=m,g=t-E/2;f.forEach(x=>{let[y,b]=x.bounds,w=g-y,I=p-b;x.elements.forEach(M=>{o.push(Ee(M,{x:M.x+w,y:M.y+I}))}),g+=x.width+i}),p+=h+i}),o};P();import{pointCenter as Qh,normalizeRadians as Lo,pointFrom as re,pointRotateRads as it}from"@excalidraw/math";import{MIN_FONT_SIZE as us,SHIFT_LOCKING_ANGLE as Co,rescalePoints as Wd,getFontString as vo}from"@excalidraw/common";var HI=(e,t,n,i,o,r,s,a,l,d,c)=>{let u=i.getNonDeletedElementsMap();if(n.length===1){let[p]=n;if(t==="rotation")G(p)||(Jh(p,i,a,l,o),Ue(p,i));else if(t){let m=n[0].id,f=u.get(m),E=e.get(m);if(f&&E){let{nextWidth:h,nextHeight:g}=oE(f,E,t,a,l,{shouldMaintainAspectRatio:s,shouldResizeFromCenter:r});iE(h,g,f,E,e,i,t,{shouldMaintainAspectRatio:s,shouldResizeFromCenter:r})}}return ie(p)&&Ue(p,i),!0}else if(n.length>1){if(t==="rotation")return tE(e,n,i,a,l,o,d,c),!0;if(t){let{nextWidth:p,nextHeight:m,flipByX:f,flipByY:E,originalBoundingBox:h}=rE(n,e,u,t,a,l,{shouldMaintainAspectRatio:s,shouldResizeFromCenter:r});return sE(n,u,t,i,e,{shouldResizeFromCenter:r,shouldMaintainAspectRatio:s,flipByX:f,flipByY:E,nextWidth:p,nextHeight:m,originalBoundingBox:h}),!0}}return!1},Jh=(e,t,n,i,o)=>{let[r,s,a,l]=_(e,t.getNonDeletedElementsMap()),d=(r+a)/2,c=(s+l)/2,u;Z(e)?u=0:(u=5*Math.PI/2+Math.atan2(i-c,n-d),o&&(u=u+Co/2,u=u-u%Co),u=Lo(u));let p=It(e);if(t.mutateElement(e,{angle:u}),p){let m=t.getElement(p);if(m&&!Y(e)){let{x:f,y:E}=ei(e,m,t.getNonDeletedElementsMap());t.mutateElement(m,{angle:u,x:f,y:E})}}},Vd=(e,t,n,i)=>j(e)||Me(e)?{points:Wd(0,t,Wd(1,n,e.points,i),i)}:{},ps=(e,t,n)=>{let i=e.width;if(ce(e)){let s=Ce(e,t);s&&(i=et(s,e))}let r=e.fontSize*(n/i);return r<us?null:{size:r}},eE=(e,t,n,i,o,r,s)=>{let a=n.getNonDeletedElementsMap(),l=t.width*(s/t.height),d=ps(t,a,l);if(d!==null){if(i.includes("n")||i.includes("s")){let c=re(e.x,e.y),u=cs(c,e.width,e.height,l,s,e.angle,i,!1,o);n.mutateElement(t,{fontSize:d.size,width:l,height:s,x:u.x,y:u.y});return}if(i==="e"||i==="w"){let c=Hi(vo({fontSize:t.fontSize,fontFamily:t.fontFamily}),t.lineHeight),u=Math.max(c,r),p=Pt(t.originalText,vo(t),Math.abs(u)),m=Je(p,vo(t),t.lineHeight),f=m.height,E=re(e.x,e.y),h=cs(E,e.width,e.height,u,f,t.angle,i,!1,o),g={width:Math.abs(u),height:Math.abs(m.height),x:h.x,y:h.y,text:p,autoResize:!1};n.mutateElement(t,g)}}},tE=(e,t,n,i,o,r,s,a)=>{let l=n.getNonDeletedElementsMap(),d=5*Math.PI/2+Math.atan2(o-a,i-s);r&&(d+=Co/2,d-=d%Co);for(let c of t)if(!Z(c)){let[u,p,m,f]=_(c,l),E=(u+m)/2,h=(p+f)/2,g=e.get(c.id)?.angle??c.angle,[x,y]=it(re(E,h),re(s,a),d+g-c.angle),b=G(c)?{points:Ka(c,l)}:{x:c.x+(x-E),y:c.y+(y-h),angle:Lo(d+g)};n.mutateElement(c,b),Ue(c,n,{simultaneouslyUpdated:t});let w=W(c,l);if(w&&!Y(c)){let{x:I,y:M}=ei(c,w,l);n.mutateElement(w,{x:I,y:M,angle:Lo(d+g)})}}n.triggerUpdate()},zI=(e,t,n,i,o)=>{let[r,s,a,l]=t.length===1?_(t[0],n):Xe(t),d=(r+a)/2,c=(s+l)/2,u=t.length===1?t[0].angle:0;switch([i,o]=it(re(i,o),re(d,c),-u),e){case"n":return it(re(i-(r+a)/2,o-s),re(0,0),u);case"s":return it(re(i-(r+a)/2,o-l),re(0,0),u);case"w":return it(re(i-r,o-(s+l)/2),re(0,0),u);case"e":return it(re(i-a,o-(s+l)/2),re(0,0),u);case"nw":return it(re(i-r,o-s),re(0,0),u);case"ne":return it(re(i-a,o-s),re(0,0),u);case"sw":return it(re(i-r,o-l),re(0,0),u);case"se":return it(re(i-a,o-l),re(0,0),u);default:return[0,0]}},_I=(e,t)=>{let[,[n,i]]=t.points;return e==="nw"&&(n<0||i<0)||e==="ne"&&n>=0||e==="sw"&&n<=0||e==="se"&&(n>0||i>0)?"end":"origin"},nE=(e,t,n)=>{if(n)return"center";if(t)switch(e){case"n":return"south-side";case"e":return"west-side";case"s":return"north-side";case"w":return"east-side";case"ne":return"bottom-left";case"nw":return"bottom-right";case"se":return"top-left";case"sw":return"top-right"}return["e","se","s"].includes(e)?"top-left":["n","nw","w"].includes(e)?"bottom-right":e==="ne"?"bottom-left":"top-right"},cs=(e,t,n,i,o,r,s,a,l)=>{let d=nE(s,a,l),[c,u]=e;switch(d){case"top-left":return{x:c+(t-i)/2+(i-t)/2*Math.cos(r)+(n-o)/2*Math.sin(r),y:u+(n-o)/2+(i-t)/2*Math.sin(r)+(o-n)/2*Math.cos(r)};case"top-right":return{x:c+(t-i)/2*(Math.cos(r)+1)+(n-o)/2*Math.sin(r),y:u+(n-o)/2+(t-i)/2*Math.sin(r)+(o-n)/2*Math.cos(r)};case"bottom-left":return{x:c+(t-i)/2*(1-Math.cos(r))+(o-n)/2*Math.sin(r),y:u+(n-o)/2*(Math.cos(r)+1)+(i-t)/2*Math.sin(r)};case"bottom-right":return{x:c+(t-i)/2*(Math.cos(r)+1)+(o-n)/2*Math.sin(r),y:u+(n-o)/2*(Math.cos(r)+1)+(t-i)/2*Math.sin(r)};case"center":return{x:c-(i-t)/2,y:u-(o-n)/2};case"east-side":return{x:c+(t-i)/2*(Math.cos(r)+1),y:u+(t-i)/2*Math.sin(r)+(n-o)/2};case"west-side":return{x:c+(t-i)/2*(1-Math.cos(r)),y:u+(i-t)/2*Math.sin(r)+(n-o)/2};case"north-side":return{x:c+(t-i)/2+(n-o)/2*Math.sin(r),y:u+(o-n)/2*(Math.cos(r)-1)};case"south-side":return{x:c+(t-i)/2+(o-n)/2*Math.sin(r),y:u+(n-o)/2*(Math.cos(r)+1)}}},iE=(e,t,n,i,o,r,s,{shouldInformMutation:a=!0,shouldMaintainAspectRatio:l=!1,shouldResizeFromCenter:d=!1}={})=>{if(ie(n)&&ie(i))return eE(i,n,r,s,d,e,t);let c={},u=r.getNonDeletedElementsMap(),p=W(n,u);if(p){let h=o.get(p.id);if(h&&(c={fontSize:h.fontSize}),l){let g={...n,width:e,height:t},x=ps(p,u,et(g,p));if(x===null)return;c={fontSize:x.size}}else{let g=ma(vo(p),p.lineHeight),x=fa(p.fontSize,p.lineHeight);e=Math.max(e,g),t=Math.max(t,x)}}let m=Vd(i,e,t,!0),f=re(i.x,i.y);if(j(i)){let[h,g]=he(i,o);f=re(h,g)}let E=cs(f,i.width,i.height,e,t,i.angle,s,l,d);if(j(i)&&m.points){let h=i.x-f[0],g=i.y-f[1];E.x+=h,E.y+=g;let x=m.points[0][0],y=m.points[0][1];E.x+=x,E.y+=y,m.points=m.points.map(b=>re(b[0]-x,b[1]-y))}if(e<0&&(E.x=E.x+e),t<0&&(E.y=E.y+t),"scale"in n&&"scale"in i&&r.mutateElement(n,{scale:[(Math.sign(e)||i.scale[0])*i.scale[0],(Math.sign(t)||i.scale[1])*i.scale[1]]}),Y(n)&&p&&l){let h=e/n.width*p.fontSize;if(h<us)return;c.fontSize=h}if(e!==0&&t!==0&&Number.isFinite(E.x)&&Number.isFinite(E.y)){let h={...E,width:Math.abs(e),height:Math.abs(t),...m};r.mutateElement(n,h,{informMutation:a,isDragging:!1}),p&&c!=null&&r.mutateElement(p,{fontSize:c.fontSize}),hn(n,r,s,l),Ue(n,r,{newSize:{width:e,height:t}})}},oE=(e,t,n,i,o,{shouldMaintainAspectRatio:r=!1,shouldResizeFromCenter:s=!1}={})=>{let[a,l,d,c]=Nt(t,t.width,t.height,!0),u=re(a,l),p=re(d,c),m=Qh(u,p),f=it(re(i,o),m,-t.angle),[E,h,g,x]=Nt(e,e.width,e.height,!0),y=g-E,b=x-h,w=p[0]-u[0],I=p[1]-u[1],M=w/y,D=I/b;n.includes("e")&&(M=(f[0]-u[0])/y),n.includes("s")&&(D=(f[1]-u[1])/b),n.includes("w")&&(M=(p[0]-f[0])/y),n.includes("n")&&(D=(p[1]-f[1])/b);let T=e.width*M,N=e.height*D;if(s&&(T=2*T-t.width,N=2*N-t.height),r){let C=Math.abs(T)/t.width,R=Math.abs(N)/t.height;if(n.length===1&&(N*=C,T*=R),n.length===2){let L=Math.max(C,R);T=t.width*L*Math.sign(T),N=t.height*L*Math.sign(N)}}return{nextWidth:T,nextHeight:N}},rE=(e,t,n,i,o,r,{shouldMaintainAspectRatio:s=!1,shouldResizeFromCenter:a=!1}={})=>{let l=e.map(L=>t.get(L.id)),d=l.reduce((L,V)=>{if(!j(V))return L;let H=It(V);if(!H)return L;let te=t.get(H)??null;return ce(te)?[...L,{...te,...U.getBoundTextElementPosition(V,te,n)}]:L},[]),c=Ct(l.map(L=>L).concat(d)),{minX:u,minY:p,maxX:m,maxY:f,midX:E,midY:h}=c,g=m-u,x=f-p,y={ne:[u,f],se:[u,p],sw:[m,p],nw:[m,f],e:[u,p+x/2],w:[m,p+x/2],n:[u+g/2,f],s:[u+g/2,p]},[b,w]=a?[E,h]:y[i],I=a?2:1,M=Math.max(Math.abs(o-b)/g||0,Math.abs(r-w)/x||0)*I,D=i.includes("e")||i.includes("w")?Math.abs(o-b)*I:g,T=i.includes("n")||i.includes("s")?Math.abs(r-w)*I:x;s&&(D=g*M*Math.sign(o-b),T=x*M*Math.sign(r-w));let N={ne:[o<b,r>w],se:[o<b,r<w],sw:[o>b,r<w],nw:[o>b,r>w],e:[o<b,!1],w:[o>b,!1],n:[!1,r>w],s:[!1,r<w]},[C,R]=N[i].map(L=>L);return{originalBoundingBox:c,nextWidth:D,nextHeight:T,flipByX:C,flipByY:R}},sE=(e,t,n,i,o,{shouldMaintainAspectRatio:r=!1,shouldResizeFromCenter:s=!1,flipByX:a=!1,flipByY:l=!1,nextHeight:d,nextWidth:c,originalBoundingBox:u}={})=>{if(c===void 0&&d===void 0&&a===void 0&&l===void 0||d===0||c===0)return;o||(o=t);let p=e.reduce((I,M)=>{let D=o.get(M.id);return D&&I.push({orig:D,latest:M}),I},[]),m;if(u)m=u;else{let I=p.reduce((M,{orig:D})=>{if(!j(D))return M;let T=It(D);if(!T)return M;let N=o.get(T)??null;return ce(N)?[...M,{...N,...U.getBoundTextElementPosition(D,N,t)}]:M},[]);m=Ct(p.map(({orig:M})=>M).concat(I))}let{minX:f,minY:E,maxX:h,maxY:g,midX:x,midY:y}=m,b=h-f,w=g-E;if(c===void 0&&d===void 0&&(c=b,d=w),r&&(c===void 0?c=d*(b/w):d===void 0?d=c*(w/b):Math.abs(c/d-b/w)>.001&&(c=d*(b/w))),c&&d){let I=n.includes("e")||n.includes("w")?Math.abs(c)/b:1,M=n.includes("n")||n.includes("s")?Math.abs(d)/w:1,D;n.length===1?D=n.includes("e")||n.includes("w")?I:M:D=Math.max(Math.abs(c)/b||0,Math.abs(d)/w||0);let T={ne:[f,g],se:[f,E],sw:[h,E],nw:[h,g],e:[f,E+w/2],w:[h,E+w/2],n:[f+b/2,g],s:[f+b/2,E]},[N,C]=s?[x,y]:T[n],R=r||p.some(S=>S.latest.angle!==0||ie(S.latest)||xl(S.latest));R&&(I=D,M=D);let[L,V]=[a?-1:1,l?-1:1],H=[];for(let{orig:S,latest:Q}of p){if(ie(S)&&ce(S))continue;let $=S.width*I,ne=S.height*M,sn=Lo(S.angle*L*V),ot=j(S)||Me(S),wn=S.x-N,ko=S.y-C,mi=a&&!ot?$:0,Hn=l&&!ot?ne:0,Oo=N+L*(wn*I+mi),fi=C+V*(ko*M+Hn),an=Vd(S,$*L,ne*V,!1),xe={x:Oo,y:fi,width:$,height:ne,angle:sn,...an};if(G(S)&&(S.startBinding&&(xe.startBinding={...S.startBinding,fixedPoint:[a?-S.startBinding.fixedPoint[0]+1:S.startBinding.fixedPoint[0],l?-S.startBinding.fixedPoint[1]+1:S.startBinding.fixedPoint[1]]}),S.endBinding&&(xe.endBinding={...S.endBinding,fixedPoint:[a?-S.endBinding.fixedPoint[0]+1:S.endBinding.fixedPoint[0],l?-S.endBinding.fixedPoint[1]+1:S.endBinding.fixedPoint[1]]}),S.fixedSegments&&an.points&&(xe.fixedSegments=S.fixedSegments.map(De=>({...De,start:an.points[De.index-1],end:an.points[De.index]})))),we(S)&&(xe.scale=[S.scale[0]*L,S.scale[1]*V]),ie(S)){let De=ps(S,t,$);if(!De)return;xe.fontSize=De.size}let ln=o.get(It(S)??"");if(ln)if(R){let De=ln.fontSize*D;if(De<us)return;xe.boundTextFontSize=De}else xe.boundTextFontSize=ln.fontSize;H.push({element:Q,update:xe})}let te=H.map(({element:S})=>S);for(let{element:S,update:{boundTextFontSize:Q,...$}}of H){let{width:ne,height:sn,angle:ot}=$;i.mutateElement(S,$),Ue(S,i,{simultaneouslyUpdated:te,newSize:{width:ne,height:sn}});let wn=W(S,t);wn&&Q&&(i.mutateElement(wn,{fontSize:Q,angle:j(S)?void 0:ot}),hn(S,i,n,!0))}i.triggerUpdate()}};P();import{pointFrom as Ze,pointOnLineSegment as Jd,pointRotateRads as Go}from"@excalidraw/math";import{SIDE_RESIZING_THRESHOLD as xs}from"@excalidraw/common";P();import{DEFAULT_TRANSFORM_HANDLE_SPACING as fs,isAndroid as aE,isIOS as lE}from"@excalidraw/common";import{pointFrom as $d,pointRotateRads as dE}from"@excalidraw/math";var Zd={mouse:8,pen:16,touch:28},cE=16,Kd={e:!0,s:!0,n:!0,w:!0},$I={e:!0,s:!0,n:!0,w:!0},ZI={e:!0,s:!0,n:!0,w:!0,rotation:!0},qd={e:!0,s:!0,n:!0,w:!0,nw:!0,se:!0},ms={e:!0,s:!0,n:!0,w:!0},kt=(e,t,n,i,o,r,s)=>{let[a,l]=dE($d(e+n/2,t+i/2),$d(o,r),s);return[a-n/2,l-i/2,n,i]},Bo=e=>!(e.viewport.isMobile||e.isTouchScreen&&(aE||lE)),hs=e=>Bo(e)?Kd:{},Es=([e,t,n,i,o,r],s,a,l,d={},c=4,u=fs)=>{let p=Zd[l],m=p/a.value,f=p/a.value,E=p/a.value,h=p/a.value,g=n-e,x=i-t,y=c/a.value,b=(p-u*2)/(2*a.value),w={nw:d.nw?void 0:kt(e-y-E+b,t-y-h+b,m,f,o,r,s),ne:d.ne?void 0:kt(n+y-b,t-y-h+b,m,f,o,r,s),sw:d.sw?void 0:kt(e-y-E+b,i+y-b,m,f,o,r,s),se:d.se?void 0:kt(n+y-b,i+y-b,m,f,o,r,s),rotation:d.rotation?void 0:kt(e+g/2-m/2,t-y-h+b-cE/a.value,m,f,o,r,s)},I=5*Zd.mouse/a.value;return Math.abs(g)>I&&(d.n||(w.n=kt(e+g/2-m/2,t-y-h+b,m,f,o,r,s)),d.s||(w.s=kt(e+g/2-m/2,i+y-b,m,f,o,r,s))),Math.abs(x)>I&&(d.w||(w.w=kt(e-y-E+b,t+x/2-f/2,m,f,o,r,s)),d.e||(w.e=kt(n+y-b,t+x/2-f/2,m,f,o,r,s))),w},Qd=(e,t,n,i="mouse",o=Kd)=>{if(e.locked||G(e))return{};if(e.type==="freedraw"||j(e)){if(e.points.length===2){let[,s]=e.points;s[0]===0||s[1]===0?o=ms:s[0]>0&&s[1]<0?o=qd:s[0]>0&&s[1]>0?o=ms:s[0]<0&&s[1]>0?o=qd:s[0]<0&&s[1]<0&&(o=ms)}}else Z(e)&&(o={...o,rotation:!0});let r=j(e)?fs+8:we(e)?0:fs;return Es(_(e,n,!0),e.angle,t,i,o,r,we(e)?0:void 0)},qI=(e,t)=>{if(t.selectedLinearElement?.isEditing)return!1;if(e.length>1)return!0;let n=e[0];return G(n)?!1:j(n)?n.points.length>2:!0};var ws=(e,t,n)=>t>=e[0]&&t<=e[0]+e[2]&&n>=e[1]&&n<=e[1]+e[3],uE=(e,t,n,i,o,r,s,a)=>{if(!n.selectedElementIds[e.id])return!1;let{rotation:l,...d}=Qd(e,r,t,s,hs(a));if(l&&ws(l,i,o))return"rotation";let c=Object.keys(d).filter(u=>{let p=d[u];return p?ws(p,i,o):!1});if(c.length>0)return c[0];if(Bo(a)){let[u,p,m,f,E,h]=_(e,t);if(!(j(e)&&e.points.length<=2)){let g=we(e)?0:xs/r.value,x=xs/r.value,y=ec(Ze(u-g,p-g),Ze(m+g,f+g),Ze(E,h),e.angle);for(let[b,w]of Object.entries(y))if(Jd(Ze(i,o),w,x))return b}}return!1},oS=(e,t,n,i,o,r,s,a)=>e.reduce((l,d)=>{if(l)return l;let c=uE(d,s,t,n,i,o,r,a);return c?{element:d,transformHandleType:c}:null},null),rS=([e,t,n,i],o,r,s,a,l)=>{let d=Es([e,t,n,i,(e+n)/2,(t+i)/2],0,s,a,hs(l)),c=Object.keys(d).find(u=>{let p=d[u];return p&&ws(p,o,r)});if(c)return c;if(Bo(l)){let u=(e+n)/2,p=(t+i)/2,m=xs/s.value,f=ec(Ze(e-m,t-m),Ze(n+m,i+m),Ze(u,p),0);for(let[E,h]of Object.entries(f))if(Jd(Ze(o,r),h,m))return E}return!1},gs=["ns","nesw","ew","nwse"],pE=(e,t)=>{let n=gs.indexOf(e);if(n>=0){let i=Math.round(t/(Math.PI/4));e=gs[(n+i)%gs.length]}return e},sS=e=>{let{element:t,transformHandleType:n}=e,i=t&&Math.sign(t.height)*Math.sign(t.width)===-1,o=null;switch(n){case"n":case"s":o="ns";break;case"w":case"e":o="ew";break;case"nw":case"se":i?o="nesw":o="nwse";break;case"ne":case"sw":i?o="nwse":o="nesw";break;case"rotation":return"grab"}return o&&t&&(o=pE(o,t.angle)),o?`${o}-resize`:""},ec=([e,t],[n,i],o,r)=>{let s=Go(Ze(e,t),o,r),a=Go(Ze(n,t),o,r),l=Go(Ze(e,i),o,r),d=Go(Ze(n,i),o,r);return{n:[s,a],e:[a,d],s:[d,l],w:[l,s]}};P();var cS=(e,t)=>!!(!e.viewModeEnabled&&e.openDialog?.name!=="elementLinkSelector"&&(e.activeTool.type!=="custom"&&(e.editingTextElement||e.activeTool.type!=="selection"&&e.activeTool.type!=="lasso"&&e.activeTool.type!=="eraser"&&e.activeTool.type!=="hand"&&e.activeTool.type!=="laser")||pt(t,e).length));P();import{arrayToMap as nc,findIndex as ic,findLastIndex as oc}from"@excalidraw/common";var ys=(e,t)=>e.frameId===t||e.id===t,rc=(e,t,n)=>{let i=[],o=[],r=null,s=-1,a=nc(n||pt(e,t,{includeBoundTextElement:!0,includeElementsInFrames:!0}));for(;++s<e.length;){let l=e[s];a.get(l.id)?(o.length&&(i=i.concat(o),o=[]),i.push(s),r=s+1):l.isDeleted&&r===s?(r=s+1,o.push(s)):o=[]}return i},mE=e=>{let t=0;return e.reduce((n,i,o)=>(o>0&&e[o-1]!==i-1&&(t=++t),(n[t]||(n[t]=[])).push(i),n),[])},tc=(e,t,n,i)=>{if("containerId"in e&&e.containerId){let o=i.getElement(e.containerId);if(o)return n==="left"?Math.min(t.indexOf(o),t.indexOf(e)):Math.max(t.indexOf(o),t.indexOf(e))}else{let o=e.boundElements?.find(r=>r.type!=="arrow")?.id;if(o){let r=i.getElement(o);if(r)return n==="left"?Math.min(t.indexOf(r),t.indexOf(e)):Math.max(t.indexOf(r),t.indexOf(e))}}},fE=(e,t)=>{let n=-1,i=-1;return e.forEach((o,r)=>{ys(o,t)&&(n===-1&&(n=r),i=r)}),n===-1?[]:e.slice(n,i+1)},hE=(e,t,n,i,o,r)=>{let s=t[n],a=p=>p.isDeleted?!1:o?p.frameId===o:e.editingGroupId?p.groupIds.includes(e.editingGroupId):!0,l=i==="left"?oc(t,p=>a(p),Math.max(0,n-1)):ic(t,p=>a(p),n+1),d=t[l];if(!d)return-1;if(e.editingGroupId){if(s?.groupIds.join("")===d?.groupIds.join(""))return tc(d,t,i,r)??l;if(!d?.groupIds.includes(e.editingGroupId))return-1}if(!o&&(d.frameId||Z(d))){let p=fE(t,d.frameId||d.id);return i==="left"?t.indexOf(p[0]):t.indexOf(p[p.length-1])}if(!d.groupIds.length)return tc(d,t,i,r)??l;let c=e.editingGroupId?d.groupIds[d.groupIds.indexOf(e.editingGroupId)-1]:d.groupIds[d.groupIds.length-1],u=Ae(t,c);return u.length?i==="left"?t.indexOf(u[0]):t.indexOf(u[u.length-1]):l},sc=(e,t)=>t.reduce((n,i)=>{let o=e[i];return n.set(o.id,o),n},new Map),ac=(e,t,n,i)=>{let o=rc(e,t),r=sc(e,o),s=mE(o);n==="right"&&(s=s.reverse());let a=new Set(o.filter(l=>Z(e[l])).map(l=>e[l].id));return s.forEach((l,d)=>{let c=l[0],u=l[l.length-1],p=n==="left"?c:u,m=l.some(y=>{let b=e[y];return b.frameId&&a.has(b.frameId)})?null:e[p]?.frameId,f=hE(t,e,p,n,m,i);if(f===-1||p===f)return;let E=n==="left"?e.slice(0,f):e.slice(0,c),h=e.slice(c,u+1),g=n==="left"?e.slice(f,c):e.slice(u+1,f+1),x=n==="left"?e.slice(u+1):e.slice(f+1);e=n==="left"?[...E,...h,...g,...x]:[...E,...g,...h,...x]}),pi(e,r),e},lc=(e,t,n,i,o)=>{let r=rc(e,t,o),s=sc(e,r),a=[],l,d;if(n==="left"){if(i)l=ic(e,f=>ys(f,i));else if(t.editingGroupId){let f=Ae(e,t.editingGroupId);if(!f.length)return e;l=e.indexOf(f[0])}else l=0;d=r[r.length-1]}else{if(i)d=oc(e,f=>ys(f,i));else if(t.editingGroupId){let f=Ae(e,t.editingGroupId);if(!f.length)return e;d=e.indexOf(f[f.length-1])}else d=e.length-1;l=r[0]}l===-1&&(l=0);for(let f=l;f<d+1;f++)r.includes(f)||a.push(e[f]);let c=Array.from(s.values()),u=e.slice(0,l),p=e.slice(d+1),m=n==="left"?[...u,...c,...a,...p]:[...u,...a,...c,...p];return pi(m,s),m};function dc(e,t,n,i){let o=nc(pt(e,t,{includeBoundTextElement:!0,includeElementsInFrames:!0})),r={regularElements:[],frameChildren:new Map},s=new Set;for(let d of e)o.has(d.id)&&Z(d)&&s.add(d.id);for(let d of e)if(o.has(d.id))if(Z(d)||d.frameId&&s.has(d.frameId))r.regularElements.push(d);else if(!d.frameId)r.regularElements.push(d);else{let c=r.frameChildren.get(d.frameId)||[];c.push(d),r.frameChildren.set(d.frameId,c)}let a=e,l=Array.from(r.frameChildren.entries());for(let[d,c]of l)a=i(e,t,n,d,c);return i(a,t,n,null,r.regularElements)}var xS=(e,t,n)=>ac(e,t,"left",n),wS=(e,t,n)=>ac(e,t,"right",n),yS=(e,t)=>dc(e,t,"left",lc),bS=(e,t)=>dc(e,t,"right",lc);var AS=e=>e.reduce((t,n)=>t+n.version,0),rd=e=>{let t=5381;for(let n of EE(e))t=(t<<5)+t+n.versionNonce;return t>>>0},sd=e=>{let t=5381;for(let n=0;n<e.length;n++){let i=e.charCodeAt(n);t=(t<<5)+t+i}return t>>>0},DS=e=>e.filter(t=>!t.isDeleted&&!Kl(t)),gE=e=>e.filter(t=>!t.isDeleted),vS=e=>!e.isDeleted,bs=e=>gE(e).map(t=>Qo(t.type)?{...t,lastCommittedPoint:null}:t),LS=e=>bs(e),CS=e=>bs(e),BS=e=>bs(e);export{Jt as AppStateDelta,ee as BASE_PADDING,Fp as BINDING_HIGHLIGHT_THICKNESS,$t as BindableElement,Vt as BoundElement,Fe as CaptureUpdateAction,qb as DEFAULT_LINK_SIZE,Kd as DEFAULT_OMIT_SIDES,F as Delta,qr as DurableIncrement,Xr as ElementBounds,en as ElementsDelta,Kr as EphemeralIncrement,oe as FIXED_BINDING_DISTANCE,Yd as FlowChartCreator,_d as FlowChartNavigator,ye as HEADING_DOWN,ke as HEADING_LEFT,me as HEADING_RIGHT,ze as HEADING_UP,jm as IMAGE_INVERT_FILTER,wf as INVISIBLY_SMALL_ELEMENT_SIZE,Jr as InvalidFractionalIndexError,U as LinearElementEditor,Se as MINIMAL_CROP_SIZE,ZI as OMIT_SIDES_FOR_FRAME,$I as OMIT_SIDES_FOR_MULTIPLE_ELEMENTS,So as Scene,Pe as ShapeCache,td as Store,ci as StoreChange,Qr as StoreDelta,yo as StoreIncrement,tn as StoreSnapshot,$e as aabbForElement,Gm as addElementsToFrame,$h as addNewNodes,Wy as addToGroup,e1 as alignElements,qp as avoidRectangularCorner,Pl as bindElementsToFramesAfterDuplication,gn as bindLinearElement,Ar as bindOrUnbindLinearElement,_p as bindOrUnbindLinearElements,Ir as bindPointToSnapToElementOutline,io as bindingBorderTest,qa as bindingProperties,Ra as bumpVersion,Va as calculateFixedPointForElbowArrowBinding,vx as canApplyRoundnessTypeToElement,da as canBecomePolygon,Rl as canChangeRoundness,yh as canCreateLinkFromElements,s0 as canHaveArrowheads,Bo as canResizeFromSides,Sn as charWidth,LS as clearElementsForDatabase,CS as clearElementsForExport,BS as clearElementsForLocalStorage,pe as compareHeading,ei as computeBoundTextPosition,ar as computeContainerDimensionForBoundText,$x as containsCJK,KP as createPlaceholderEmbeddableLabel,rs as createSrcDoc,mx as cropElement,In as deconstructDiamondElement,Bi as deconstructLinearOrFreeDrawElement,Pn as deconstructRectanguloidElement,Zr as deepCopyElement,IP as defaultGetElementLinkFromSelection,_x as detectLineHeight,_t as distanceToElement,sP as distributeElements,En as doBoundsIntersect,xP as dragNewElement,EP as dragSelectedElements,vf as duplicateElement,f1 as duplicateElements,jy as editGroupForSelectedElement,fe as elementCenterPoint,Zt as elementOverlapsWithFrame,go as elementWithCanvasCache,Kt as elementsAreInFrameBounds,gl as elementsAreInSameGroup,JP as embeddableURLValidator,yl as excludeElementsInFramesFromSelection,Db as filterElementsEligibleAsFrameChildren,hy as fixBindingsAfterDeletion,Za as fixDuplicatedBindingsAfterDuplication,mr as flipHeading,kb as frameAndChildrenSelectedTogether,Ol as generateFreeDrawShape,na as generateLinearCollisionShape,Re as generateRoughOptions,fa as getApproxMinLineHeight,ma as getApproxMinLineWidth,Ka as getArrowLocalFixedPoints,mf as getArrowheadAngle,_r as getArrowheadPoints,pf as getArrowheadSize,W as getBoundTextElement,It as getBoundTextElementId,sw as getBoundTextElementPosition,ti as getBoundTextMaxHeight,et as getBoundTextMaxWidth,jr as getBoundsFromPoints,dt as getCenterForBounds,N0 as getClosestElementBounds,Ct as getCommonBoundingBox,Xe as getCommonBounds,ow as getContainerCenter,lr as getContainerCoords,Ce as getContainerElement,vt as getContainingFrame,yt as getCornerRadius,Wi as getCubicBezierCurveBound,sS as getCursorForResizingElement,Nm as getDefaultFrameName,Lx as getDefaultRoundnessTypeForElement,Gi as getDiamondPoints,gP as getDragOffsetXY,F0 as getDraggedElementsBounds,_ as getElementAbsoluteCoords,he as getElementBounds,Fr as getElementLineSegments,Cr as getElementPointsCoords,Yl as getElementShape,oS as getElementWithTransformHandleType,Il as getElementsCompletelyInFrame,Ae as getElementsInGroup,Ab as getElementsInNewFrame,Tb as getElementsInResizingFrame,yb as getElementsIntersectingFrame,Gb as getElementsOverlappingFrame,Or as getElementsWithinSelection,qP as getEmbedLink,fx as getFlipAdjustedCropPosition,qt as getFrameChildren,Cm as getFrameLikeElements,Bb as getFrameLikeTitle,Zm as getFreeDrawPath2D,qm as getFreeDrawSvgPath,to as getGlobalFixedPointForBindableElement,tm as getGlobalFixedPoints,Oa as getHeadingForElbowArrowSnap,jt as getHoveredElementForBinding,yI as getInitializedImageElements,zi as getLineHeightInPx,zt as getLineWidth,Bx as getLinearElementSubType,mI as getLinkDirectionFromKey,SP as getLinkIdAndTypeFromSelection,ol as getLockedLinearCursorAlignSize,yu as getMaxCharWidth,$y as getMaximumGroups,Ux as getMinCharWidth,ai as getMinMaxXYFromCurvePathOps,Hi as getMinTextElementWidth,wl as getNewGroupIdsForDuplication,gE as getNonDeletedElements,El as getNonDeletedGroupIds,$0 as getNormalizedDimensions,On as getObservedAppState,hs as getOmitSidesForDevice,Rx as getOriginalContainerHeightFromCache,Wr as getPerfectElementSize,ds as getPredecessors,R0 as getRectangleBoxAbsoluteCoords,Wm as getRenderOpacity,_I as getResizeArrowDirection,zI as getResizeOffsetXY,Nt as getResizedElementAbsoluteCoords,Mb as getRootElements,AS as getSceneVersion,pt as getSelectedElements,po as getSelectedElementsByGroup,kr as getSelectedGroupForElement,Tm as getSelectedGroupIdForElement,Sm as getSelectedGroupIds,ab as getSelectionStateForElements,py as getSuggestedBindingsForArrows,sb as getTargetElements,Om as getTargetFrame,rw as getTextElementAngle,cw as getTextFromElements,wu as getTextHeight,ha as getTextWidth,rS as getTransformHandleTypeFromCoords,Qd as getTransformHandles,Es as getTransformHandlesFromCoords,Js as getUncroppedImageElement,Vo as getUncroppedWidthAndHeight,ob as getVisibleAndNonSelectedElements,DS as getVisibleElements,H0 as getVisibleSceneBounds,Sb as groupByFrameLikes,Pb as groupsAreAtLeastIntersectingTheFrame,Ib as groupsAreCompletelyOutOfFrame,hn as handleBindTextResize,t0 as hasBackground,st as hasBoundTextElement,n0 as hasStrokeColor,o0 as hasStrokeStyle,i0 as hasStrokeWidth,rd as hashElementsVersion,sd as hashString,Ge as headingForPoint,ni as headingForPointFromElement,tt as headingForPointIsHorizontal,Oe as headingIsHorizontal,Ow as headingIsVertical,np as hitElementBoundText,tp as hitElementBoundingBox,vw as hitElementBoundingBoxOnly,ep as hitElementItself,Mn as intersectElementWithLineSegment,Dx as isArrowBoundToElement,Y as isArrowElement,Le as isBindableElement,Jo as isBindingElement,pu as isBindingElementType,Tr as isBindingEnabled,ce as isBoundToContainer,Cx as isBounds,bb as isCursorInFrame,uu as isCurvedArrow,G as isElbowArrow,V0 as isElementCompletelyInViewport,Nr as isElementContainingFrame,Ml as isElementInFrame,Mm as isElementInGroup,bl as isElementInViewport,Gn as isElementIntersectingFrame,MP as isElementLink,oa as isEmbeddableElement,Ax as isExcalidrawElement,Qn as isFixedPointBinding,er as isFlowchartNodeElement,Ri as isFrameElement,Z as isFrameLikeElement,Me as isFreeDrawElement,du as isFreeDrawElementType,Kh as isHTMLSVGElement,ki as isIframeElement,Oi as isIframeLikeElement,we as isImageElement,xl as isInGroup,Ht as isInitializedImageElement,Kl as isInvisiblySmallElement,mn as isLineElement,j as isLinearElement,ja as isLinearElementSimpleAndAlreadyBound,Qo as isLinearElementType,ra as isMagicFrameElement,zx as isMeasureTextSupported,fI as isNodeInFlowchart,vS as isNonDeletedElement,pn as isPathALoop,Ma as isPointInElement,Tx as isRectangularElement,sa as isRectanguloidElement,Im as isSelectedViaGroup,cu as isSharpArrow,Mx as isSimpleArrow,rb as isSomeElementSelected,mu as isTextBindableContainer,ie as isTextElement,aa as isUsingAdaptiveRadius,la as isUsingProportionalRadius,Gx as isValidPolygon,dw as isValidTextContainer,qh as loadHTMLImageElement,Gr as makeNextSelectedElementIds,ao as maxBindingGap,my as maybeBindLinearElement,QP as maybeParseEmbedSrc,Ua as maybeSuggestBindingsForLinearElementAtCoords,ps as measureFontSizeFromWidth,Je as measureText,yS as moveAllLeft,bS as moveAllRight,xS as moveOneLeft,wS as moveOneRight,be as mutateElement,kd as newArrowElement,is as newElement,Ee as newElementWith,RP as newEmbeddableElement,NP as newFrameElement,_P as newFreeDrawElement,FP as newIframeElement,UP as newImageElement,YP as newLinearElement,HP as newMagicFrameElement,Gd as newTextElement,Ql as normalizeElementOrder,Dr as normalizeFixedPoint,bI as normalizeSVG,nr as normalizeText,mo as omitGroupsContainingFrameLikes,Bm as omitPartialGroups,md as orderByFractionalIndex,Jn as originalContainerCache,TP as parseElementLinkFromURL,Au as parseTokens,kl as pathsCache,An as pointInsideBounds,TI as positionElementsOnGrid,wa as redrawTextBoundingBox,zP as refreshTextDimensions,km as removeAllElementsFromFrame,Sl as removeElementsFromFrame,Vy as removeFromSelectedGroups,Qb as renderElement,Kb as renderSelectionElement,vb as replaceAllElementsInFrame,Vd as rescalePointsInElement,ua as resetOriginalContainerCache,sE as resizeMultipleElements,iE as resizeSingleElement,eE as resizeSingleTextElement,uE as resizeTest,Pm as selectGroup,fl as selectGroupsForSelectedElements,hl as selectGroupsFromGivenElements,Yx as setCustomTextMetricsProvider,aw as shouldAllowVerticalAlign,Cb as shouldApplyFrameClip,uy as shouldEnableBindingForPointerEvent,qI as shouldShowBoundingBox,ji as shouldTestInside,cS as showSelectedShapeActions,Kp as snapToMid,lw as suppportsHorizontalAlign,Hf as syncInvalidIndices,od as syncInvalidIndicesImmutable,pi as syncMovedIndices,il as toggleLinePolygonState,r0 as toolIsArrow,HI as transformElements,fy as updateBindings,Ue as updateBoundElements,Dn as updateElbowArrowPoints,Lb as updateFrameMembershipOfSelectedElements,wI as updateImageCache,ca as updateOriginalContainerCache,ka as validateElbowPoints,Nf as validateFractionalIndices,Mt as vectorToHeading,Pt as wrapText};
|
|
28
|
+
`),intrinsicSize:{w:550,h:720},sandbox:{allowSameOrigin:n}};return Ot.set(e,p),p}return Ot.set(e,{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}),{link:e,intrinsicSize:o,type:i,sandbox:{allowSameOrigin:n}}},sT=e=>{let t;Co(e)?t="IFrame element":t=!e.link||e?.link===""?"Empty Web-Embed":e.link;let n=Math.max(Math.min(e.width/2,e.width/t.length),e.width/30),i=ix.Helvetica,o=rx({fontSize:n,fontFamily:i});return si({x:e.x+e.width/2,y:e.y+e.height/2,strokeColor:e.strokeColor!=="transparent"?e.strokeColor:"black",backgroundColor:"transparent",fontFamily:i,fontSize:n,text:rn(t,o,e.width-20),textAlign:"center",verticalAlign:ox.MIDDLE,angle:e.angle??0})},Ma=(e,t)=>{try{let{hostname:n}=new URL(e),i=n.replace(/^www\./,"");if(t instanceof Set){if(Sa.has(i))return i;let r=i.replace(/^([^.]+)/,"*");return Sa.has(r)?r:null}let o=t.replace(/^www\./,"");if(i===o)return o}catch{}return null},aT=e=>{let t=e.match(ux);if(t&&t.length===2)return t[1];let n=e.match(fx);if(n&&n.length===2)return n[1];let i=e.match(dx);if(i&&i.length===2)return i[1];if(fu.test(e))return`https://giphy.com/embed/${fu.exec(e)[1]}`;let o=e.match(px);return o&&o.length===2?o[1]:e},lT=(e,t)=>{if(!e)return!1;if(t!=null)if(typeof t=="function"){let n=t(e);if(typeof n=="boolean")return n}else{if(typeof t=="boolean")return t;if(t instanceof RegExp)return t.test(e);if(Array.isArray(t)){for(let n of t)if(n instanceof RegExp){if(e.match(n))return!0}else if(Ma(e,n))return!0;return!1}}return!!Ma(e,Sa)};I();import{invariant as Aa,toBrandedType as gx}from"@excalidraw/common";import{clamp as Ex,pointFrom as xu}from"@excalidraw/math";var bu=100,wu=100,xx=e=>{let t=[...e].sort((i,o)=>i.start-o.start),n=[];for(let i of t){let o=n[n.length-1];o&&i.start<=o.end?o.end=Math.max(o.end,i.end):n.push({...i})}return n},Iu=(e,t,n)=>n.every(i=>e+t<=i.start||e>=i.end),bx=(e,t,n)=>{if(Iu(e,t,n))return e;let i=[-1/0,...n.map(a=>a.end)],o=[...n.map(a=>a.start),1/0],r=e,s=1/0;for(let a=0;a<i.length;a++){if(o[a]-i[a]<t)continue;let l=Ex(e,i[a],o[a]-t),d=Math.abs(l-e);d<=s&&(r=l,s=d)}return r},wx=(e,t)=>{let n=[...t.values()].filter(j),i=new Set([e.id]),o=[e.id],r=[];for(;o.length>0;){let s=o.shift();for(let a of n){let l=a.startBinding?.elementId,d=a.endBinding?.elementId,c;if(l===s?c=d:d===s&&(c=l),!c||i.has(c))continue;i.add(c);let u=t.get(c);u&&we(u)&&(r.push(u),o.push(c))}}return r},yx=(e,t,n,i,o)=>{let r=t==="left"||t==="right",s=r?e.width:e.height,a=r?e.height:e.width,l=r?wu:bu,d=r?bu:wu,c=r?e.x:e.y,u=r?e.y+e.height/2:e.x+e.width/2,m=t==="right"||t==="down"?c+s+l:c-l-s,p=xx(i.filter(b=>{let y=r?b[0]:b[1],w=r?b[2]:b[3];return y<m+s&&w>m}).map(b=>({start:(r?b[1]:b[0])-d,end:(r?b[3]:b[2])+d}))),h=a+d,f=n*a+(n-1)*d,E=(o===null?null:[o,o-h].filter(b=>Iu(b,f,p)).sort((b,y)=>Math.abs(b+f/2-u)-Math.abs(y+f/2-u))[0]??null)??bx(u-f/2,f,p);return{positions:Array.from({length:n},(b,y)=>{let w=E+y*h;return r?{x:m,y:w}:{x:w,y:m}}),crossStart:E}},Px=(e,t,n)=>{let i=Ai({type:e.type,x:t,y:n,width:e.width,height:e.height,roundness:e.roundness,roughness:e.roughness,backgroundColor:e.backgroundColor,strokeColor:e.strokeColor,strokeWidth:e.strokeWidth,opacity:e.opacity,fillStyle:e.fillStyle,strokeStyle:e.strokeStyle});return Aa(Dl(i),"not an ExcalidrawFlowchartNodeElement"),i},Ix=(e,t,n,i,o,r=null)=>{let s=i.getNonDeletedElementsMap(),a=wx(e,s).map(u=>lt(u,s)),{positions:l,crossStart:d}=yx(e,n,o,a,r),c=[];for(let u of l){let m=Px(e,u.x,u.y),p=Sx(e,m,n,t,i);c.push(m,p)}return{nodes:c,crossStart:d}},Sx=(e,t,n,i,o)=>{let r,s;switch(n){case"up":{r=e.x+e.width/2,s=e.y-6;break}case"down":{r=e.x+e.width/2,s=e.y+e.height+6;break}case"right":{r=e.x+e.width+6,s=e.y+e.height/2;break}case"left":{r=e.x-6,s=e.y+e.height/2;break}}let l,d;switch(n){case"up":{l=t.x+t.width/2-r,d=t.y+t.height-s+6;break}case"down":{l=t.x+t.width/2-r,d=t.y-s-6;break}case"right":{l=t.x-r-6,d=t.y-s+t.height/2;break}case"left":{l=t.x+t.width-r+6,d=t.y-s+t.height/2;break}}let c=br({type:"arrow",x:r,y:s,startArrowhead:null,endArrowhead:i.currentItemEndArrowhead,strokeColor:e.strokeColor,strokeStyle:e.strokeStyle,strokeWidth:e.strokeWidth,opacity:e.opacity,roughness:e.roughness,points:[xu(0,0),xu(l,d)],elbowed:!0}),u=o.getNonDeletedElementsMap();Vt(c,e,"orbit","start",o),Vt(c,t,"orbit","end",o);let m=new Map;m.set(e.id,e),m.set(t.id,t),m.set(c.id,c),R.movePoints(c,o,new Map([[1,{point:c.points[1]}]]));let p=xi(c,gx(new Map([...u.entries(),[e.id,e],[t.id,t],[c.id,c]])),{points:c.points});return{...c,...p,isDeleted:c.isDeleted}},yu=class e{isExploring=!1;sameLevelNodes=[];sameLevelIndex=0;direction=null;visitedNodes=new Set;clear(){this.isExploring=!1,this.sameLevelNodes=[],this.sameLevelIndex=0,this.direction=null,this.visitedNodes.clear()}exploreByDirection(t,n,i){if(!we(t))return null;if(i!==this.direction&&this.clear(),this.visitedNodes.has(t.id)||this.visitedNodes.add(t.id),this.isExploring&&i===this.direction&&this.sameLevelNodes.length>1)return this.sameLevelIndex=(this.sameLevelIndex+1)%this.sameLevelNodes.length,this.sameLevelNodes[this.sameLevelIndex].id;let o=[...e.getSuccessors(t,n,i),...e.getPredecessors(t,n,i)];if(o.length>0)return this.sameLevelIndex=0,this.isExploring=!0,this.sameLevelNodes=o,this.direction=i,this.visitedNodes.add(o[0].id),o[0].id;if(i===this.direction||!this.isExploring){this.isExploring||this.visitedNodes.add(t.id);let s=["up","right","down","left"].filter(a=>a!==i).map(a=>[...e.getSuccessors(t,n,a),...e.getPredecessors(t,n,a)]).flat().filter(a=>!this.visitedNodes.has(a.id));for(let a of s)if(!this.visitedNodes.has(a.id))return this.visitedNodes.add(a.id),this.isExploring=!0,this.direction=i,a.id}return null}static getNodeRelatives(t,n,i,o){let r=[...i.values()].reduce((s,a)=>{let l;if(j(a)&&(l=a[t==="predecessors"?"startBinding":"endBinding"])&&a[t==="predecessors"?"endBinding":"startBinding"]?.elementId===n.id){let d=i.get(l.elementId);if(!d)return s;Aa(we(d),"not an ExcalidrawBindableElement");let c=t==="predecessors"?a.points[a.points.length-1]:[0,0],u=gi(n,lt(n,i),[c[0]+a.x,c[1]+a.y]);s.push({relative:d,heading:u})}return s},[]);switch(o){case"up":return r.filter(s=>fe(s.heading,Ze)).map(s=>s.relative);case"down":return r.filter(s=>fe(s.heading,Be)).map(s=>s.relative);case"right":return r.filter(s=>fe(s.heading,he)).map(s=>s.relative);case"left":return r.filter(s=>fe(s.heading,Ne)).map(s=>s.relative)}}static getSuccessors(t,n,i){return e.getNodeRelatives("successors",t,n,i)}static getPredecessors(t,n,i){return e.getNodeRelatives("predecessors",t,n,i)}},Pu=class{isCreatingChart=!1;numberOfNodes=0;direction=null;clusterCrossStart=null;pendingNodes=null;createNodes(t,n,i,o){let r=o.getNonDeletedElementsMap();i!==this.direction?(this.numberOfNodes=1,this.clusterCrossStart=null):this.numberOfNodes+=1;let{nodes:s,crossStart:a}=Ix(t,n,i,o,this.numberOfNodes,this.clusterCrossStart);if(this.isCreatingChart=!0,this.direction=i,this.clusterCrossStart=a,this.pendingNodes=s,t.frameId){let l=r.get(t.frameId);Aa(l&&ko(l),"not an ExcalidrawFrameElement"),l&&this.pendingNodes.every(d=>Gn([d],l,r)||Ln(d,l,r))&&(this.pendingNodes=this.pendingNodes.map(d=>Fe(d,r,{frameId:t.frameId})))}}clear(){this.isCreatingChart=!1,this.pendingNodes=null,this.direction=null,this.numberOfNodes=0,this.clusterCrossStart=null}},PT=(e,t)=>{for(let[,n]of t)if(n.type==="arrow"&&(n.startBinding?.elementId===e.id||n.endBinding?.elementId===e.id))return!0;return!1};I();import{pointDistance as Gi,pointFrom as Da}from"@excalidraw/math";import{invariant as Ou}from"@excalidraw/common";I();import{arrayToMap as Mu,findIndex as Au,findLastIndex as Tu}from"@excalidraw/common";import{isFiniteNumber as Mx}from"@excalidraw/math";var Ta=(e,t)=>e.frameId===t||e.id===t,Du=(e,t,n)=>{let i=[],o=[],r=null,s=-1,a=Mu(n||Zt(e,t,{includeBoundTextElement:!0,includeElementsInFrames:!0}));for(;++s<e.length;){let l=e[s];a.get(l.id)?(o.length&&(i=i.concat(o),o=[]),i.push(s),r=s+1):l.isDeleted&&r===s?(r=s+1,o.push(s)):o=[]}return i},Ax=e=>{let t=0;return e.reduce((n,i,o)=>(o>0&&e[o-1]!==i-1&&(t=++t),(n[t]||(n[t]=[])).push(i),n),[])},Su=(e,t,n,i)=>{if("containerId"in e&&e.containerId){let o=i.getElement(e.containerId);if(o)return n==="left"?Math.min(t.indexOf(o),t.indexOf(e)):Math.max(t.indexOf(o),t.indexOf(e))}else{let o=e.boundElements?.find(r=>r.type!=="arrow")?.id;if(o){let r=i.getElement(o);if(r)return n==="left"?Math.min(t.indexOf(r),t.indexOf(e)):Math.max(t.indexOf(r),t.indexOf(e))}}},Tx=(e,t)=>{let n=-1,i=-1;return e.forEach((o,r)=>{Ta(o,t)&&(n===-1&&(n=r),i=r)}),n===-1?[]:e.slice(n,i+1)},vu=(e,t,n,i,o,r)=>{let s=r||sn(e,kn(n),i);if(!s)return n;let a=de(s,i),l=oe(s)?Ue(s,i):null,d=[s.id,a?.id,l?.id].filter(m=>!!m),c=n.findIndex(m=>d.includes(m.id)),u=n.findIndex(m=>m.id===t.id);if(u!==-1&&c!==-1&&u<c){let m=Array.from(n),p=m.splice(u,1)[0];m.splice(c,0,p),o.replaceAllElements(m)}return n},Dx=(e,t,n,i,o,r)=>{let s=t[n],a=m=>m.isDeleted?!1:o?m.frameId===o:e.editingGroupId?m.groupIds.includes(e.editingGroupId):!0,l=i==="left"?Tu(t,m=>a(m),Math.max(0,n-1)):Au(t,m=>a(m),n+1),d=t[l];if(!d)return-1;if(e.editingGroupId){if(s?.groupIds.join("")===d?.groupIds.join(""))return Su(d,t,i,r)??l;if(!d?.groupIds.includes(e.editingGroupId))return-1}if(!o&&(d.frameId||J(d))){let m=Tx(t,d.frameId||d.id);return i==="left"?t.indexOf(m[0]):t.indexOf(m[m.length-1])}if(!d.groupIds.length)return Su(d,t,i,r)??l;let c=e.editingGroupId?d.groupIds[d.groupIds.indexOf(e.editingGroupId)-1]:d.groupIds[d.groupIds.length-1],u=Qe(t,c);return u.length?i==="left"?t.indexOf(u[0]):t.indexOf(u[u.length-1]):l},Bu=(e,t)=>t.reduce((n,i)=>{let o=e[i];return n.set(o.id,o),n},new Map),Lu=(e,t)=>{if(e.length!==t.length)return console.error("z-index reordering failed: resulting array have different lengths"),!1;let n=new Map;for(let i of e)n.set(i.id,(n.get(i.id)||0)+1);for(let i of t){let o=n.get(i.id);if(!o)return console.error("z-index reordering failed: element id mismatch / duplicate ids"),!1;n.set(i.id,o-1)}return!0},Cu=(e,t,n,i)=>{let o=e,r=Du(e,t),s=Bu(e,r),a=Ax(r);n==="right"&&(a=a.reverse());let l=new Set(r.filter(d=>J(e[d])).map(d=>e[d].id));return a.forEach((d,c)=>{let u=d[0],m=d[d.length-1],p=n==="left"?u:m,h=d.some(y=>{let w=e[y];return w.frameId&&l.has(w.frameId)})?null:e[p]?.frameId,f=Dx(t,e,p,n,h,i);if(f===-1||p===f)return;let g=n==="left"?e.slice(0,f):e.slice(0,u),E=e.slice(u,m+1),x=n==="left"?e.slice(f,u):e.slice(m+1,f+1),b=n==="left"?e.slice(m+1):e.slice(f+1);e=n==="left"?[...g,...E,...x,...b]:[...g,...x,...E,...b]}),Lu(o,e)?(ni(e,s),e):o},Gu=(e,t,n,i,o)=>{let r=Du(e,t,o);if(r.length===0)return e;let s=Bu(e,r),a=[],l,d;if(n==="left"){if(i)l=Au(e,f=>Ta(f,i));else if(t.editingGroupId){let f=Qe(e,t.editingGroupId);if(!f.length)return e;l=e.indexOf(f[0])}else l=0;d=r[r.length-1]}else{if(i)d=Tu(e,f=>Ta(f,i));else if(t.editingGroupId){let f=Qe(e,t.editingGroupId);if(!f.length)return e;d=e.indexOf(f[f.length-1])}else d=e.length-1;l=r[0]}l===-1&&(l=0);let c=f=>Mx(f)&&f>=0;if(!c(l)||!c(d)||l>d||r.some(f=>f<l||f>d))return e;for(let f=l;f<d+1;f++)r.includes(f)||a.push(e[f]);let u=Array.from(s.values()),m=e.slice(0,l),p=e.slice(d+1),h=n==="left"?[...m,...u,...a,...p]:[...m,...a,...u,...p];return Lu(e,h)?(ni(h,s),h):e};function ku(e,t,n,i){let o=Mu(Zt(e,t,{includeBoundTextElement:!0,includeElementsInFrames:!0})),r={regularElements:[],frameChildren:new Map},s=new Set;for(let d of e)o.has(d.id)&&J(d)&&s.add(d.id);for(let d of e)if(o.has(d.id))if(J(d)||d.frameId&&s.has(d.frameId))r.regularElements.push(d);else if(!d.frameId)r.regularElements.push(d);else{let c=r.frameChildren.get(d.frameId)||[];c.push(d),r.frameChildren.set(d.frameId,c)}let a=e,l=Array.from(r.frameChildren.entries());for(let[d,c]of l)a=i(a,t,n,d,c);return i(a,t,n,null,r.regularElements)}var kT=(e,t,n)=>Cu(e,t,"left",n),OT=(e,t,n)=>Cu(e,t,"right",n),NT=(e,t)=>ku(e,t,"left",Gu),FT=(e,t)=>ku(e,t,"right",Gu);var Tr=(e,t,n,i,o,r,s=!1)=>{if(j(t)||!$t(o)||t.points.length!==2)return!1;if(!s){let l=t.startBinding?.elementId===n.id?0:t.points.length-1,d=R.getPointAtIndexGlobalCoordinates(t,l,i);if(Gi(e,d)<no*1.5/o.zoom.value)return!1}let a=R.getPointAtIndexGlobalCoordinates(t,r==="end"?t.points.length-1:0,i);return Gi(e,a)>=no*1.5/o.zoom.value&&Ht({element:n,elementsMap:i,point:e,threshold:ve(n,t),overrideShouldTestInside:!0})},vx=(e,t,n,i,o,r,s)=>{let a=new Map,l=r.selectedLinearElement?.initialState.arrowOtherEndpointInitialBinding,d=n?"startBinding":"endBinding",c=n?"endBinding":"startBinding",u=e[d],m=l?.mode==="orbit"&&e[c]?.mode==="inside"?l:e[c];if(u&&t){let p=t&&m&&u.elementId===m.elementId;s||p?u={...u,mode:"inside"}:u={...u,mode:"orbit"};let h=n?0:e.points.length-1,f=Ct(e,d,u,t,i,!0);f&&a.set(h,{point:f})}if(m&&m.mode==="orbit"){let p=i.get(m.elementId);if(p&&we(p)&&$t(r)){t&&m.elementId===t.id?m={...m,mode:"inside"}:m={...m,mode:"orbit"};let f=n?e.points.length-1:0,g=Ct(e,c,m,p,i);g&&a.set(f,{point:g})}}a.size>0&&R.movePoints(e,o,a,{[d]:u,[c]:m})},Nu=(e,t,n,i,o,r,s)=>{let a=R.getElement(e.elementId,t);if(!a||!_e(a)||j(a)||!e.hoveredFocusPointBinding||!e.draggedFocusPointBinding)return;let l=e.draggedFocusPointBinding==="start",d=l?a.startBinding:a.endBinding,{x:c,y:u}=e.pointerOffset,m=Da(n.x-c,n.y-u),p=l?"startBinding":"endBinding",h=rd(m,a,i.getNonDeletedElements(),t,Dt(o.zoom));if(h&&$t(o)){a[p]&&h.id!==d?.elementId&&Xe(a,e.draggedFocusPointBinding,i);let f=s&&a[p]?.mode==="orbit"?"inside":!s&&a[p]?.mode==="inside"?"orbit":null;(!a[p]||f)&&Vt(a,h,f||"orbit",e.draggedFocusPointBinding,i,m),i.mutateElement(a,{[p]:{...a[p],elementId:h.id,mode:f||a[p]?.mode||"orbit",...yi(a,h,e.draggedFocusPointBinding,t,m)}})}else{let f=new Map,g=l?0:a.points.length-1;f.set(g,{point:R.createPointAt(a,t,m[0],m[1],r)}),R.movePoints(a,i,f),a[p]&&Xe(a,l?"start":"end",i)}vx(a,h,l,t,i,o,s),h&&$t(o)&&vu(m,a,i.getElementsIncludingDeleted(),t,i,h)},$T=(e,t,n,i)=>{let o=Da(t.origin.x,t.origin.y),r=no*1.5/i.zoom.value;if(e.startBinding?.elementId){let s=n.get(e.startBinding.elementId);if(s&&we(s)&&!s.isDeleted){let a=He(e.startBinding.fixedPoint,s,n);if(Tr(a,e,s,n,i,"start")&&Gi(o,a)<=r)return{hitFocusPoint:"start",pointerOffset:{x:o[0]-a[0],y:o[1]-a[1]},arrowOtherEndpointInitialBinding:e.endBinding}}}if(e.endBinding?.elementId){let s=n.get(e.endBinding.elementId);if(s&&we(s)&&!s.isDeleted){let a=He(e.endBinding.fixedPoint,s,n);if(Tr(a,e,s,n,i,"end")&&Gi(o,a)<=r)return{hitFocusPoint:"end",pointerOffset:{x:o[0]-a[0],y:o[1]-a[1]},arrowOtherEndpointInitialBinding:e.startBinding}}}return{hitFocusPoint:null,pointerOffset:{x:0,y:0},arrowOtherEndpointInitialBinding:null}},VT=(e,t)=>{Ou(e.draggedFocusPointBinding,"Must have a dragged focus point at pointer release");let n=R.getElement(e.elementId,t.getNonDeletedElementsMap());Ou(n,"Arrow must be in the scene");let i=e.draggedFocusPointBinding==="start"?"startBinding":"endBinding",o=e.draggedFocusPointBinding==="start"?"endBinding":"startBinding",r=n[i]?.elementId,s=n[o]?.elementId,a=r&&t.getNonDeletedElements().find(d=>d.id!==r&&d.id!==s&&we(d)&&d.boundElements?.find(({id:c})=>c===n.id));a&&t.mutateElement(a,{boundElements:a.boundElements?.filter(({id:d})=>d!==n.id)});let l=r&&t.getNonDeletedElementsMap().get(r);return l&&t.mutateElement(l,{boundElements:[...(l.boundElements||[])?.filter(({id:d})=>d!==n.id),{id:n.id,type:"arrow"}]}),{arrowOtherEndpointInitialBinding:null}},ZT=(e,t,n,i,o)=>{let r=i.getNonDeletedElementsMap(),s=Da(t,n),a=no*1.5/o.zoom.value;if(e.startBinding?.elementId){let l=r.get(e.startBinding.elementId);if(l&&we(l)&&!l.isDeleted){let d=He(e.startBinding.fixedPoint,l,r);if(Tr(d,e,l,r,o,"start")&&Gi(s,d)<=a)return"start"}}if(e.endBinding?.elementId){let l=r.get(e.endBinding.elementId);if(l&&we(l)&&!l.isDeleted){let d=He(e.endBinding.fixedPoint,l,r);if(Tr(d,e,l,r,o,"end")&&Gi(s,d)<=a)return"end"}}return null};I();import{MIME_TYPES as Fu,SVG_NS as Bx}from"@excalidraw/common";var Lx=e=>new Promise((t,n)=>{let i=new Image;i.onload=()=>{t(i)},i.onerror=o=>{n(o)},i.src=e}),eD=async({fileIds:e,files:t,imageCache:n})=>{let i=new Map,o=new Map;return await Promise.all(e.reduce((r,s)=>{let a=t[s];return a&&!i.has(s)?(i.set(s,!0),r.concat((async()=>{try{if(a.mimeType===Fu.binary)throw new Error("Only images can be added to ImageCache");let l=Lx(a.dataURL),d={image:l,mimeType:a.mimeType};n.set(s,d);let c=await l;n.set(s,{...d,image:c})}catch{o.set(s,!0)}})())):r},[])),{imageCache:n,updatedFiles:i,erroredFiles:o}},tD=e=>e.filter(t=>Vn(t)),Cx=e=>e?.nodeName.toLowerCase()==="svg",nD=e=>{let t=new DOMParser().parseFromString(e,Fu.svg),n=t.querySelector("svg");if(t.querySelector("parsererror")||!Cx(n))throw new Error("Invalid SVG");{n.hasAttribute("xmlns")||n.setAttribute("xmlns",Bx);let o=n.getAttribute("width"),r=n.getAttribute("height");(o?.includes("%")||o==="auto")&&(o=null),(r?.includes("%")||r==="auto")&&(r=null);let s=n.getAttribute("viewBox");if(!o||!r){if(o=o||"50",r=r||"50",s){let a=s.match(/\d+ +\d+ +(\d+(?:\.\d+)?) +(\d+(?:\.\d+)?)/);a&&([,o,r]=a)}n.setAttribute("width",o),n.setAttribute("height",r)}return s||n.setAttribute("viewBox",`0 0 ${o} ${r}`),n.outerHTML}};I();var aD=(e,t,n,i=50)=>{if(!e||e.length===0)return[];let o=[],r=Array.isArray(e[0])?e:e.map(p=>[p]),s=r.length,a=Math.max(1,Math.ceil(Math.sqrt(s))),l=[];for(let p=0;p<s;p+=a)l.push(r.slice(p,p+a));let d=0,c=l.map(p=>{let h=0,f=0,g=p.map(E=>{let[x,b,y,w]=Je(E);return{elements:E,bounds:[x,b,y,w],width:y-x,height:w-b}});return g.forEach((E,x)=>{h+=E.width,x<g.length-1&&(h+=i),E.height>f&&(f=E.height)}),d+=f,{unitBounds:g,width:h,maxHeight:f}}),u=d+Math.max(0,l.length-1)*i,m=n-u/2;return c.forEach(p=>{let{unitBounds:h,width:f,maxHeight:g}=p,E=t-f/2;h.forEach(x=>{let[b,y]=x.bounds,w=E-b,M=m-y;x.elements.forEach(S=>{o.push(Ke(S,{x:S.x+w,y:S.y+M}))}),E+=x.width+i}),m+=g+i}),o};I();import{pointCenter as Gx,normalizeRadians as vr,pointFrom as me,pointRotateRads as Nt}from"@excalidraw/math";import{MIN_FONT_SIZE as Ba,SHIFT_LOCKING_ANGLE as Br,rescalePoints as Ru,getFontString as Dr}from"@excalidraw/common";var wD=(e,t,n,i,o,r,s,a,l,d,c)=>{let u=i.getNonDeletedElementsMap();if(n.length===1){let[m]=n;if(t==="rotation")j(m)||(kx(m,i,a,l,o),je(m,i));else if(t){let p=n[0].id,h=u.get(p),f=e.get(p);if(h&&f){let{nextWidth:g,nextHeight:E}=zx(h,f,t,a,l,{shouldMaintainAspectRatio:s,shouldResizeFromCenter:r});Rx(g,E,h,f,e,i,t,{shouldMaintainAspectRatio:s,shouldResizeFromCenter:r})}}return oe(m)&&je(m,i),!0}else if(n.length>1){if(t==="rotation")return Nx(e,n,i,a,l,o,d,c),!0;if(t){let{nextWidth:m,nextHeight:p,flipByX:h,flipByY:f,originalBoundingBox:g}=_x(n,e,u,t,a,l,{shouldMaintainAspectRatio:s,shouldResizeFromCenter:r});return Hx(n,u,t,i,e,{shouldResizeFromCenter:r,shouldMaintainAspectRatio:s,flipByX:h,flipByY:f,nextWidth:m,nextHeight:p,originalBoundingBox:g}),!0}}return!1},kx=(e,t,n,i,o)=>{let[r,s,a,l]=Z(e,t.getNonDeletedElementsMap()),d=(r+a)/2,c=(s+l)/2,u;J(e)?u=0:(u=5*Math.PI/2+Math.atan2(i-c,n-d),o&&(u=u+Br/2,u=u-u%Br),u=vr(u));let m=Bt(e),p={angle:u};if(_e(e)&&(p={...p},e.startBinding&&Xe(e,"start",t),e.endBinding&&Xe(e,"end",t)),t.mutateElement(e,p),m){let h=t.getElement(m);if(h&&!X(e)){let{x:f,y:g}=Ki(e,h,t.getNonDeletedElementsMap());t.mutateElement(h,{angle:u,x:f,y:g})}}},zu=(e,t,n,i)=>K(e)||be(e)?{points:Ru(0,t,Ru(1,n,e.points,i),i)}:{},La=(e,t,n)=>{let i=e.width;if(Ie(e)){let s=Ue(e,t);s&&(i=vt(s,e))}let r=e.fontSize*(n/i);return r<Ba?null:{size:r}},Ox=(e,t,n,i,o,r,s)=>{let a=n.getNonDeletedElementsMap(),l=t.width*(s/t.height),d=La(t,a,l);if(d!==null){if(i.includes("n")||i.includes("s")){let c=me(e.x,e.y),u=va(c,e.width,e.height,l,s,e.angle,i,!1,o);n.mutateElement(t,{fontSize:d.size,width:l,height:s,x:u.x,y:u.y});return}if(i==="e"||i==="w"){let c=zo(Dr({fontSize:t.fontSize,fontFamily:t.fontFamily}),t.lineHeight),u=Math.max(c,r),m=rn(t.originalText,Dr(t),Math.abs(u)),p=ft(m,Dr(t),t.lineHeight),h=p.height,f=me(e.x,e.y),g=va(f,e.width,e.height,u,h,t.angle,i,!1,o),E={width:Math.abs(u),height:Math.abs(p.height),x:g.x,y:g.y,text:m,autoResize:!1};n.mutateElement(t,E)}}},Nx=(e,t,n,i,o,r,s,a)=>{let l=n.getNonDeletedElementsMap(),d=5*Math.PI/2+Math.atan2(o-a,i-s);r&&(d+=Br/2,d-=d%Br);let c=new Map(t.map(u=>[u.id,u]));for(let u of t)if(!J(u)){let[m,p,h,f]=Z(u,l),g=(m+h)/2,E=(p+f)/2,x=e.get(u.id)?.angle??u.angle,[b,y]=Nt(me(g,E),me(s,a),d+x-u.angle),w=j(u)?{points:Ld(u,l)}:{x:u.x+(b-g),y:u.y+(y-E),angle:vr(d+x)};n.mutateElement(u,w),je(u,n,{simultaneouslyUpdated:t}),_e(u)&&(u.startBinding&&(c.has(u.startBinding.elementId)||Xe(u,"start",n)),u.endBinding&&(c.has(u.endBinding.elementId)||Xe(u,"end",n)));let M=de(u,l);if(M&&!X(u)){let{x:S,y:T}=Ki(u,M,l);n.mutateElement(M,{x:S,y:T,angle:vr(d+x)})}}n.triggerUpdate()},yD=(e,t,n,i,o)=>{let[r,s,a,l]=t.length===1?Z(t[0],n):Je(t),d=(r+a)/2,c=(s+l)/2,u=t.length===1?t[0].angle:0;switch([i,o]=Nt(me(i,o),me(d,c),-u),e){case"n":return Nt(me(i-(r+a)/2,o-s),me(0,0),u);case"s":return Nt(me(i-(r+a)/2,o-l),me(0,0),u);case"w":return Nt(me(i-r,o-(s+l)/2),me(0,0),u);case"e":return Nt(me(i-a,o-(s+l)/2),me(0,0),u);case"nw":return Nt(me(i-r,o-s),me(0,0),u);case"ne":return Nt(me(i-a,o-s),me(0,0),u);case"sw":return Nt(me(i-r,o-l),me(0,0),u);case"se":return Nt(me(i-a,o-l),me(0,0),u);default:return[0,0]}},PD=(e,t)=>{let[,[n,i]]=t.points;return e==="nw"&&(n<0||i<0)||e==="ne"&&n>=0||e==="sw"&&n<=0||e==="se"&&(n>0||i>0)?"end":"origin"},Fx=(e,t,n)=>{if(n)return"center";if(t)switch(e){case"n":return"south-side";case"e":return"west-side";case"s":return"north-side";case"w":return"east-side";case"ne":return"bottom-left";case"nw":return"bottom-right";case"se":return"top-left";case"sw":return"top-right"}return["e","se","s"].includes(e)?"top-left":["n","nw","w"].includes(e)?"bottom-right":e==="ne"?"bottom-left":"top-right"},va=(e,t,n,i,o,r,s,a,l)=>{let d=Fx(s,a,l),[c,u]=e;switch(d){case"top-left":return{x:c+(t-i)/2+(i-t)/2*Math.cos(r)+(n-o)/2*Math.sin(r),y:u+(n-o)/2+(i-t)/2*Math.sin(r)+(o-n)/2*Math.cos(r)};case"top-right":return{x:c+(t-i)/2*(Math.cos(r)+1)+(n-o)/2*Math.sin(r),y:u+(n-o)/2+(t-i)/2*Math.sin(r)+(o-n)/2*Math.cos(r)};case"bottom-left":return{x:c+(t-i)/2*(1-Math.cos(r))+(o-n)/2*Math.sin(r),y:u+(n-o)/2*(Math.cos(r)+1)+(i-t)/2*Math.sin(r)};case"bottom-right":return{x:c+(t-i)/2*(Math.cos(r)+1)+(o-n)/2*Math.sin(r),y:u+(n-o)/2*(Math.cos(r)+1)+(t-i)/2*Math.sin(r)};case"center":return{x:c-(i-t)/2,y:u-(o-n)/2};case"east-side":return{x:c+(t-i)/2*(Math.cos(r)+1),y:u+(t-i)/2*Math.sin(r)+(n-o)/2};case"west-side":return{x:c+(t-i)/2*(1-Math.cos(r)),y:u+(i-t)/2*Math.sin(r)+(n-o)/2};case"north-side":return{x:c+(t-i)/2+(n-o)/2*Math.sin(r),y:u+(o-n)/2*(Math.cos(r)-1)};case"south-side":return{x:c+(t-i)/2+(o-n)/2*Math.sin(r),y:u+(n-o)/2*(Math.cos(r)+1)}}},Rx=(e,t,n,i,o,r,s,{shouldInformMutation:a=!0,shouldMaintainAspectRatio:l=!1,shouldResizeFromCenter:d=!1}={})=>{if(oe(n)&&oe(i))return Ox(i,n,r,s,d,e,t);let c={},u=r.getNonDeletedElementsMap(),m=de(n,u);if(m){let g=o.get(m.id);if(g&&(c={fontSize:g.fontSize}),l){let E={...n,width:e,height:t},x=La(m,u,vt(E,m));if(x===null)return;c={fontSize:x.size}}else{let E=Hl(Dr(m),m.lineHeight),x=Wl(m.fontSize,m.lineHeight);e=Math.max(e,E),t=Math.max(t,x)}}let p=zu(i,e,t,!0),h=me(i.x,i.y);if(K(i)){let[g,E]=ue(i,o);h=me(g,E)}let f=va(h,i.width,i.height,e,t,i.angle,s,l,d);if(K(i)&&p.points){let g=i.x-h[0],E=i.y-h[1];f.x+=g,f.y+=E;let x=p.points[0][0],b=p.points[0][1];f.x+=x,f.y+=b,p.points=p.points.map(y=>me(y[0]-x,y[1]-b))}if(e<0&&(f.x=f.x+e),t<0&&(f.y=f.y+t),"scale"in n&&"scale"in i&&r.mutateElement(n,{scale:[(Math.sign(e)||i.scale[0])*i.scale[0],(Math.sign(t)||i.scale[1])*i.scale[1]]}),X(n)&&m&&l){let g=e/n.width*m.fontSize;if(g<Ba)return;c.fontSize=g}if(e!==0&&t!==0&&Number.isFinite(f.x)&&Number.isFinite(f.y)){let g={...f,width:Math.abs(e),height:Math.abs(t),...p};_e(n)&&(n.startBinding&&(g={...g},n.startBinding&&Xe(n,"start",r)),n.endBinding&&(g={...g,endBinding:null})),r.mutateElement(n,g,{informMutation:a,isDragging:!1}),m&&c!=null&&r.mutateElement(m,{fontSize:c.fontSize}),qn(n,r,s,l,d),je(n,r)}},zx=(e,t,n,i,o,{shouldMaintainAspectRatio:r=!1,shouldResizeFromCenter:s=!1}={})=>{let[a,l,d,c]=wn(t,t.width,t.height,!0),u=me(a,l),m=me(d,c),p=Gx(u,m),h=Nt(me(i,o),p,-t.angle),[f,g,E,x]=wn(e,e.width,e.height,!0),b=E-f,y=x-g,w=m[0]-u[0],M=m[1]-u[1],S=w/b,T=M/y;n.includes("e")&&(S=(h[0]-u[0])/b),n.includes("s")&&(T=(h[1]-u[1])/y),n.includes("w")&&(S=(m[0]-h[0])/b),n.includes("n")&&(T=(m[1]-h[1])/y);let A=e.width*S,F=e.height*T;if(s&&(A=2*A-t.width,F=2*F-t.height),r){let B=Math.abs(A)/t.width,k=Math.abs(F)/t.height;if(n.length===1&&(F*=B,A*=k),n.length===2){let G=Math.max(B,k);A=t.width*G*Math.sign(A),F=t.height*G*Math.sign(F)}}return{nextWidth:A,nextHeight:F}},_x=(e,t,n,i,o,r,{shouldMaintainAspectRatio:s=!1,shouldResizeFromCenter:a=!1}={})=>{let l=e.map(G=>t.get(G.id)),d=l.reduce((G,_)=>{if(!K(_))return G;let W=Bt(_);if(!W)return G;let D=t.get(W)??null;return Ie(D)?[...G,{...D,...R.getBoundTextElementPosition(_,D,n)}]:G},[]),c=un(l.map(G=>G).concat(d)),{minX:u,minY:m,maxX:p,maxY:h,midX:f,midY:g}=c,E=p-u,x=h-m,b={ne:[u,h],se:[u,m],sw:[p,m],nw:[p,h],e:[u,m+x/2],w:[p,m+x/2],n:[u+E/2,h],s:[u+E/2,m]},[y,w]=a?[f,g]:b[i],M=a?2:1,S=Math.max(Math.abs(o-y)/E||0,Math.abs(r-w)/x||0)*M,T=i.includes("e")||i.includes("w")?Math.abs(o-y)*M:E,A=i.includes("n")||i.includes("s")?Math.abs(r-w)*M:x;s&&(T=E*S*Math.sign(o-y),A=x*S*Math.sign(r-w));let F={ne:[o<y,r>w],se:[o<y,r<w],sw:[o>y,r<w],nw:[o>y,r>w],e:[o<y,!1],w:[o>y,!1],n:[!1,r>w],s:[!1,r<w]},[B,k]=F[i].map(G=>G);return{originalBoundingBox:c,nextWidth:T,nextHeight:A,flipByX:B,flipByY:k}},Hx=(e,t,n,i,o,{shouldMaintainAspectRatio:r=!1,shouldResizeFromCenter:s=!1,flipByX:a=!1,flipByY:l=!1,nextHeight:d,nextWidth:c,originalBoundingBox:u}={})=>{if(c===void 0&&d===void 0&&a===void 0&&l===void 0||d===0||c===0)return;o||(o=t);let m=e.reduce((M,S)=>{let T=o.get(S.id);return T&&M.push({orig:T,latest:S}),M},[]),p;if(u)p=u;else{let M=m.reduce((S,{orig:T})=>{if(!K(T))return S;let A=Bt(T);if(!A)return S;let F=o.get(A)??null;return Ie(F)?[...S,{...F,...R.getBoundTextElementPosition(T,F,t)}]:S},[]);p=un([...m.map(({orig:S})=>S),...M])}let{minX:h,minY:f,maxX:g,maxY:E,midX:x,midY:b}=p,y=g-h,w=E-f;if(c===void 0&&d===void 0&&(c=y,d=w),r&&(c===void 0?c=d*(y/w):d===void 0?d=c*(w/y):Math.abs(c/d-y/w)>.001&&(c=d*(y/w))),c&&d){let M=n.includes("e")||n.includes("w")?Math.abs(c)/y:1,S=n.includes("n")||n.includes("s")?Math.abs(d)/w:1,T;n.length===1?T=n.includes("e")||n.includes("w")?M:S:T=Math.max(Math.abs(c)/y||0,Math.abs(d)/w||0);let A={ne:[h,E],se:[h,f],sw:[g,f],nw:[g,E],e:[h,f+w/2],w:[g,f+w/2],n:[h+y/2,E],s:[h+y/2,f]},[F,B]=s?[x,b]:A[n],k=r||m.some(P=>P.latest.angle!==0||oe(P.latest)||$d(P.latest));k&&(M=T,S=T);let[G,_]=[a?-1:1,l?-1:1],W=[];for(let{orig:P,latest:v}of m){if(oe(P)&&Ie(P))continue;let C=P.width*M,z=P.height*S,Q=vr(P.angle*G*_),ee=K(P)||be(P),te=P.x-F,ne=P.y-B,Ae=a&&!ee?C:0,Ft=l&&!ee?z:0,Rt=F+G*(te*M+Ae),hn=B+_*(ne*S+Ft),pe=zu(P,C*G,z*_,!1),ie={x:Rt,y:hn,width:C,height:z,angle:Q,...pe};if(j(P)&&(P.startBinding&&(ie.startBinding={...P.startBinding,fixedPoint:[a?-P.startBinding.fixedPoint[0]+1:P.startBinding.fixedPoint[0],l?-P.startBinding.fixedPoint[1]+1:P.startBinding.fixedPoint[1]]}),P.endBinding&&(ie.endBinding={...P.endBinding,fixedPoint:[a?-P.endBinding.fixedPoint[0]+1:P.endBinding.fixedPoint[0],l?-P.endBinding.fixedPoint[1]+1:P.endBinding.fixedPoint[1]]}),P.fixedSegments&&pe.points&&(ie.fixedSegments=P.fixedSegments.map(Te=>({...Te,start:pe.points[Te.index-1],end:pe.points[Te.index]})))),ke(P)&&(ie.scale=[P.scale[0]*G,P.scale[1]*_]),oe(P)){let Te=La(P,t,C);if(!Te)return;ie.fontSize=Te.size}let Le=o.get(Bt(P)??"");if(Le)if(k){let Te=Le.fontSize*T;if(Te<Ba)return;ie.boundTextFontSize=Te}else ie.boundTextFontSize=Le.fontSize;W.push({element:v,update:ie})}let D=W.map(({element:P})=>P),L=new Map(W.map(({element:P})=>[P.id,P]));for(let{element:P,update:{boundTextFontSize:v,...C}}of W){let{angle:z}=C;i.mutateElement(P,C),je(P,i,{simultaneouslyUpdated:D}),_e(P)&&(P.startBinding&&(L.has(P.startBinding.elementId)||Xe(P,"start",i)),P.endBinding&&(L.has(P.endBinding.elementId)||Xe(P,"end",i)));let Q=de(P,t);Q&&v&&(i.mutateElement(Q,{fontSize:v,angle:K(P)?void 0:z}),qn(P,i,n,!0,s))}i.triggerUpdate()}};I();import{pointFrom as Pt,pointOnLineSegment as Xu,pointRotateRads as Cr}from"@excalidraw/math";import{SIDE_RESIZING_THRESHOLD as Fa}from"@excalidraw/common";I();import{DEFAULT_TRANSFORM_HANDLE_SPACING as Ga}from"@excalidraw/common";import{pointFrom as _u,pointRotateRads as Wx}from"@excalidraw/math";var Hu={mouse:8,pen:16,touch:28},Ux=16,Uu={e:!0,s:!0,n:!0,w:!0},vD={e:!0,s:!0,n:!0,w:!0},BD={e:!0,s:!0,n:!0,w:!0,rotation:!0},Wu={e:!0,s:!0,n:!0,w:!0,nw:!0,se:!0},Ca={e:!0,s:!0,n:!0,w:!0},fn=(e,t,n,i,o,r,s)=>{let[a,l]=Wx(_u(e+n/2,t+i/2),_u(o,r),s);return[a-n/2,l-i/2,n,i]},Lr=e=>!(e.formFactor==="phone"&&e.userAgent.isMobileDevice),ka=e=>Lr(e)?Uu:{},Oa=([e,t,n,i,o,r],s,a,l,d={},c=4,u=Ga)=>{let m=Hu[l],p=m/a.value,h=m/a.value,f=m/a.value,g=m/a.value,E=n-e,x=i-t,b=c/a.value,y=(m-u*2)/(2*a.value),w={nw:d.nw?void 0:fn(e-b-f+y,t-b-g+y,p,h,o,r,s),ne:d.ne?void 0:fn(n+b-y,t-b-g+y,p,h,o,r,s),sw:d.sw?void 0:fn(e-b-f+y,i+b-y,p,h,o,r,s),se:d.se?void 0:fn(n+b-y,i+b-y,p,h,o,r,s),rotation:d.rotation?void 0:fn(e+E/2-p/2,t-b-g+y-Ux/a.value,p,h,o,r,s)},M=5*Hu.mouse/a.value;return Math.abs(E)>M&&(d.n||(w.n=fn(e+E/2-p/2,t-b-g+y,p,h,o,r,s)),d.s||(w.s=fn(e+E/2-p/2,i+b-y,p,h,o,r,s))),Math.abs(x)>M&&(d.w||(w.w=fn(e-b-f+y,t+x/2-h/2,p,h,o,r,s)),d.e||(w.e=fn(n+b-y,t+x/2-h/2,p,h,o,r,s))),w},Yu=(e,t,n,i="mouse",o=Uu)=>{if(e.locked||j(e))return{};if(e.type==="freedraw"||K(e)){if(e.points.length===2){let[,s]=e.points;s[0]===0||s[1]===0?o=Ca:s[0]>0&&s[1]<0?o=Wu:s[0]>0&&s[1]>0?o=Ca:s[0]<0&&s[1]>0?o=Wu:s[0]<0&&s[1]<0&&(o=Ca)}}else J(e)&&(o={...o,rotation:!0});let r=K(e)?Ga+8:ke(e)?0:Ga;return Oa(Z(e,n,!0),e.angle,t,i,o,r,ke(e)?0:void 0)},LD=(e,t,n)=>{if(t.selectedLinearElement?.isEditing||t.selectedLinearElement?.isDragging)return!1;if(e.length>1)return!0;let i=e[0];return j(i)?!1:K(i)?i.points.length>2&&!n.userAgent.isMobileDevice:!0};var Ra=(e,t,n)=>t>=e[0]&&t<=e[0]+e[2]&&n>=e[1]&&n<=e[1]+e[3],Yx=(e,t,n,i,o,r,s,a)=>{if(!n.selectedElementIds[e.id])return!1;let{rotation:l,...d}=Yu(e,r,t,s,ka(a));if(l&&Ra(l,i,o))return"rotation";let c=Object.keys(d).filter(u=>{let m=d[u];return m?Ra(m,i,o):!1});if(c.length>0)return c[0];if(Lr(a)){let[u,m,p,h,f,g]=Z(e,t);if(!(K(e)&&e.points.length<=2)){let E=ke(e)?0:Fa/r.value,x=Fa/r.value,b=ju(Pt(u-E,m-E),Pt(p+E,h+E),Pt(f,g),e.angle);for(let[y,w]of Object.entries(b))if(Xu(Pt(i,o),w,x))return y}}return!1},zD=(e,t,n,i,o,r,s,a)=>e.reduce((l,d)=>{if(l)return l;let c=Yx(d,s,t,n,i,o,r,a);return c?{element:d,transformHandleType:c}:null},null),_D=([e,t,n,i],o,r,s,a,l)=>{let d=Oa([e,t,n,i,(e+n)/2,(t+i)/2],0,s,a,ka(l)),c=Object.keys(d).find(u=>{let m=d[u];return m&&Ra(m,o,r)});if(c)return c;if(Lr(l)){let u=(e+n)/2,m=(t+i)/2,p=Fa/s.value,h=ju(Pt(e-p,t-p),Pt(n+p,i+p),Pt(u,m),0);for(let[f,g]of Object.entries(h))if(Xu(Pt(o,r),g,p))return f}return!1},Na=["ns","nesw","ew","nwse"],Xx=(e,t)=>{let n=Na.indexOf(e);if(n>=0){let i=Math.round(t/(Math.PI/4));e=Na[(n+i)%Na.length]}return e},HD=e=>{let{element:t,transformHandleType:n}=e,i=t&&Math.sign(t.height)*Math.sign(t.width)===-1,o=null;switch(n){case"n":case"s":o="ns";break;case"w":case"e":o="ew";break;case"nw":case"se":i?o="nesw":o="nwse";break;case"ne":case"sw":i?o="nwse":o="nesw";break;case"rotation":return"grab"}return o&&t&&(o=Xx(o,t.angle)),o?`${o}-resize`:""},ju=([e,t],[n,i],o,r)=>{let s=Cr(Pt(e,t),o,r),a=Cr(Pt(n,t),o,r),l=Cr(Pt(e,i),o,r),d=Cr(Pt(n,i),o,r);return{n:[s,a],e:[a,d],s:[d,l],w:[l,s]}};I();var XD=(e,t)=>!!(!e.viewModeEnabled&&e.openDialog?.name!=="elementLinkSelector"&&(e.activeTool.type!=="custom"&&(e.editingTextElement||e.activeTool.type!=="selection"&&e.activeTool.type!=="lasso"&&e.activeTool.type!=="eraser"&&e.activeTool.type!=="hand"&&e.activeTool.type!=="laser")||Zt(t,e).length));I();import{pointFrom as Gr}from"@excalidraw/math";import{DEFAULT_FONT_FAMILY as jx,DEFAULT_FONT_SIZE as $x,TEXT_ALIGN as Vx,VERTICAL_ALIGN as Zx,getSizeFromPoints as Kx,randomId as qx,arrayToMap as Qx,assertNever as za,cloneJSON as Vu,getFontString as Jx,isDevEnv as eb,toBrandedType as tb,getLineHeight as nb}from"@excalidraw/common";var kr={width:100,height:0},Un=100,ib=(e,t,n)=>{let i=si({x:0,y:0,textAlign:Vx.CENTER,verticalAlign:Zx.MIDDLE,...t,containerId:e.id,strokeColor:t.strokeColor||e.strokeColor});return Object.assign(e,{boundElements:(e.boundElements||[]).concat({type:"text",id:i.id})}),Uo(i,e,n),[e,i]},$u=(e,t,n,i,o)=>{let r,s;if(Object.assign(e,{startBinding:e?.startBinding||null,endBinding:e.endBinding||null}),t){let c=t?.width??Un,u=t?.height??Un,m;t.id&&(m=i.getElement(t.id),m||console.error(`No element for start binding with id ${t.id} found`));let p=t.x||e.x-c,h=t.y||e.y-u/2,f=m?m.type:t.type;if(f){if(f==="text"){let g="";m&&m.type==="text"?g=m.text:t.type==="text"&&(g=t.text),g||console.error(`No text found for start binding text element for ${e.id}`),r=si({x:p,y:h,type:"text",...m,...t,text:g}),Object.assign(r,{x:t.x||e.x-r.width,y:t.y||e.y-r.height/2})}else switch(f){case"rectangle":case"ellipse":case"diamond":{r=Ai({x:p,y:h,width:c,height:u,...m,...t,type:f});break}default:za(e,`Unhandled element start type "${t.type}"`,!0)}Vt(e,r,"orbit","start",o)}}if(n){let c=n?.height??Un,u=n?.width??Un,m;n.id&&(m=i.getElement(n.id),m||console.error(`No element for end binding with id ${n.id} found`));let p=n.x||e.x+e.width,h=n.y||e.y-c/2,f=m?m.type:n.type;if(f){if(f==="text"){let g="";m&&m.type==="text"?g=m.text:n.type==="text"&&(g=n.text),g||console.error(`No text found for end binding text element for ${e.id}`),s=si({x:p,y:h,type:"text",...m,...n,text:g}),Object.assign(s,{y:n.y||e.y-s.height/2})}else switch(f){case"rectangle":case"ellipse":case"diamond":{s=Ai({x:p,y:h,width:u,height:c,...m,...n,type:f});break}default:za(e,`Unhandled element end type "${f}"`,!0)}Vt(e,s,"orbit","end",o)}}if(e.points.length<2)return{linearElement:e,startBoundElement:r,endBoundElement:s};let a=e.points.length-1,l=.5,d=Vu(e.points);return e.points[a][0]>e.points[a-1][0]&&(d[0][0]=l,d[a][0]-=l),e.points[a][0]<e.points[a-1][0]&&(d[0][0]=-l,d[a][0]+=l),e.points[a][1]>e.points[a-1][1]&&(d[0][1]=l,d[a][1]-=l),e.points[a][1]<e.points[a-1][1]&&(d[0][1]=-l,d[a][1]+=l),Object.assign(e,R.getNormalizeElementPointsAndCoords({...e,points:d})),{linearElement:e,startBoundElement:r,endBoundElement:s}},_a=class{excalidrawElements=new Map;add=t=>{t&&this.excalidrawElements.set(t.id,t)};getElements=()=>$s(Array.from(this.excalidrawElements.values()));getElementsMap=()=>tb(Qx(this.getElements()));getElement=t=>this.excalidrawElements.get(t)},rv=(e,t)=>{if(!e)return[];let n=Vu(e),i=new _a,o=new Map,r=new Map;for(let l of n){let d,c=l.id;switch(t?.regenerateIds!==!1&&Object.assign(l,{id:qx()}),l.type){case"rectangle":case"ellipse":case"diamond":{let m=l?.label?.text&&l.width===void 0?0:l?.width||Un,p=l?.label?.text&&l.height===void 0?0:l?.height||Un;d=Ai({...l,width:m,height:p});break}case"line":{let m=l.width||kr.width,p=l.height||kr.height;d=Lc({width:m,height:p,points:[Gr(0,0),Gr(m,p)],...l});break}case"arrow":{let m=l.width||kr.width,p=l.height||kr.height;d=br({width:m,height:p,endArrowhead:"arrow",points:[Gr(0,0),Gr(m,p)],...l,type:"arrow"}),Object.assign(d,Kx(d.points));break}case"text":{let m=l?.fontFamily||jx,p=l?.fontSize||$x,h=l?.lineHeight||nb(m),f=l.text??"",g=Zi(f),E=ft(g,Jx({fontFamily:m,fontSize:p}),h);d=si({width:E.width,height:E.height,fontFamily:m,fontSize:p,...l});break}case"image":{d=Cc({width:l?.width||Un,height:l?.height||Un,...l});break}case"frame":{d=Dc({x:0,y:0,...l});break}case"magicframe":{d=vc({x:0,y:0,...l});break}case"freedraw":case"iframe":case"embeddable":{d=l;break}default:d=l,za(l,`Unhandled element type "${l.type}"`,!0)}i.getElement(d.id)?console.error(`Duplicate id found for ${d.id}`):(i.add(d),o.set(d.id,l),c&&r.set(c,d.id))}let s=i.getElementsMap(),a=new Ci(s);for(let[l,d]of o){let c=i.getElement(l);switch(d.type){case"rectangle":case"ellipse":case"diamond":case"arrow":{if(d.label?.text){let[u,m]=ib(c,d?.label,a);if(i.add(u),i.add(m),X(u)){let p=d.type==="arrow"?d?.start:void 0,h=d.type==="arrow"?d?.end:void 0;if(p&&p.id){let x=r.get(p.id);x&&Object.assign(p,{id:x})}if(h&&h.id){let x=r.get(h.id);x&&Object.assign(h,{id:x})}let{linearElement:f,startBoundElement:g,endBoundElement:E}=$u(u,p,h,i,a);u=f,i.add(f),i.add(g),i.add(E)}}else switch(d.type){case"arrow":{let{start:u,end:m}=d;if(u&&u.id){let g=r.get(u.id);Object.assign(u,{id:g})}if(m&&m.id){let g=r.get(m.id);Object.assign(m,{id:g})}let{linearElement:p,startBoundElement:h,endBoundElement:f}=$u(c,u,m,i,a);i.add(p),i.add(h),i.add(f);break}}break}}}for(let[l,d]of o){if(d.type!=="frame"&&d.type!=="magicframe")continue;let c=i.getElement(l);if(!c)throw new Error(`Excalidraw element with id ${l} doesn't exist`);let u=[];d.children.forEach(w=>{let M=r.get(w);if(!M)throw new Error(`Element with ${w} wasn't mapped correctly`);let S=i.getElement(M);if(!S)throw new Error(`Frame element with id ${M} doesn't exist`);Object.assign(S,{frameId:c.id}),S?.boundElements?.forEach(T=>{let A=i.getElement(T.id);if(!A)throw new Error(`Bound element with id ${T.id} doesn't exist`);Object.assign(A,{frameId:c.id}),u.push(A)}),u.push(S)});let[m,p,h,f]=Je(u),g=10;m=m-g,p=p-g,h=h+g,f=f+g;let E=c?.x||m,x=c?.y||p,b=c?.width||h-m,y=c?.height||f-p;Object.assign(c,{x:E,y:x,width:b,height:y}),eb()&&d.children.length&&(c?.x||c?.y||c?.width||c?.height)&&console.info("User provided frame attributes are being considered, if you find this inaccurate, please remove any of the attributes - x, y, width and height so frame coordinates and dimensions are calculated automatically")}return i.getElements()};I();var cv=({app:e,event:t})=>{let n=e.state;if(n.selectedLinearElement&&e.lastPointerMoveCoords){if(n.selectedLinearElement.draggedFocusPointBinding)return Nu(n.selectedLinearElement,e.scene.getNonDeletedElementsMap(),e.lastPointerMoveCoords,e.scene,n,e.getEffectiveGridSize(),t.altKey),!0;if(n.selectedLinearElement.hoverPointIndex!==null&&e.lastPointerMoveEvent&&n.selectedLinearElement.initialState.lastClickedPoint>=0&&n.selectedLinearElement.isDragging)return R.handlePointDragging(e.lastPointerMoveEvent,e,e.lastPointerMoveCoords.x,e.lastPointerMoveCoords.y,n.selectedLinearElement),!0}return!1};I();var ob=e=>{switch(e){case void 0:case null:return null;case"dot":return"circle";case"crowfoot_one":return"cardinality_one";case"crowfoot_many":return"cardinality_many";case"crowfoot_one_or_many":return"cardinality_one_or_many";default:return e}},pv=e=>{let t=ob(e);return t===null?null:t};I();import{getBoundsFromPoints as Qu,getElementAbsoluteCoords as rb}from"@excalidraw/element/bounds";import{newArrowElement as Zu,newElement as sb,newLinearElement as Or}from"@excalidraw/element/newElement";import{ELEMENT_PENDING_DRAW_SHAPE_OPACITY as ab,getStrokeWidthByKey as Nr,ROUNDNESS as Ku}from"@excalidraw/common";import{convexHull as lb,distanceToLineSegment as db,elongation as cb,kurtosis as qu,lineSegment as ub,orientPrincipalAxes as mb,pointFrom as tt,polygonArea as pb,principalAxes as fb,principalCoords as hb,skewness as gb}from"@excalidraw/math";var Eb=64,xb=25,bb=.15,wb=.25,yb=.5,Pb=.15,Ib=.3,Sb=1.5,ki=3;function Mb(e,t){let n=0;for(let a=1;a<e.length;a++)n+=Math.hypot(e[a][0]-e[a-1][0],e[a][1]-e[a-1][1]);let i=n/(t-1),o=0,r=[e[0]],s=e[0];for(let a=1;a<e.length;a++){let l=e[a],d=Math.hypot(l[0]-s[0],l[1]-s[1]);if(o+d>=i){let c=i-o;for(;c<=d+1e-10;){let u=c/d,m=[s[0]+u*(l[0]-s[0]),s[1]+u*(l[1]-s[1])];if(r.push(m),r.length===t)return r;s=m,o=0,c+=i}o=d-(c-i)}else o+=d;s=l}for(;r.length<t;)r.push(e[e.length-1]);return r}function Ab(e){let t=e[0],n=t,i=0;for(let s of e){let a=Math.hypot(s[0]-t[0],s[1]-t[1]);a>i&&(i=a,n=s)}if(i===0)return 0;let o=ub(t,n),r=0;for(let s of e)Math.hypot(s[0]-n[0],s[1]-n[1])<=yb*i||(r=Math.max(r,db(s,o)));return r/i}function Tb(e){let t=[];for(let n=ki;n<e.length-ki;n++){let[i,o]=e[n-ki],[r,s]=e[n],[a,l]=e[n+ki],d=r-i,c=s-o,u=a-r,m=l-s;t.push(Math.abs(Math.atan2(d*m-c*u,d*u+c*m)))}return t}function Db(e){let t=Tb(e),n=t.reduce((r,s)=>r+s,0);if(n===0)return 0;let i=new Array(t.length).fill(!1),o=0;for(let r=0;r<4;r++){let s=-1,a=0;for(let l=0;l<t.length;l++)!i[l]&&t[l]>a&&(a=t[l],s=l);if(s<0)break;for(let l=s-ki;l<=s+ki;l++)l>=0&&l<t.length&&!i[l]&&(o+=t[l],i[l]=!0)}return o/n}function vb(e){let t=Mb(e,Eb),n=0;for(let m=1;m<t.length;m++)n+=Math.hypot(t[m][0]-t[m-1][0],t[m][1]-t[m-1][1]);let i=Math.hypot(t[t.length-1][0]-t[0][0],t[t.length-1][1]-t[0][1]),o=mb(t,fb(t)),r=hb(t,o).map(([m])=>m),s=lb(t),[a,l,d,c]=Qu(t),u=(d-a)*(c-l);return{gapRatio:n>0?i/n:0,elongation:cb(o),majorSkew:gb(r),hullFillRatio:u>0?pb(s)/u:0,cornerTurnShare:Db(t),kurtosisProduct:qu(t.map(([m])=>m))*qu(t.map(([,m])=>m)),shaftDeviationRatio:Ab(t)}}var Bb=[{type:"rectangle",hullFillRatio:1,cornerTurnShare:.95,kurtosisProduct:1.83},{type:"diamond",hullFillRatio:.5,cornerTurnShare:.95,kurtosisProduct:3.24},{type:"ellipse",hullFillRatio:Math.PI/4,cornerTurnShare:.55,kurtosisProduct:2.25}],Lb=.2,Cb=.2,Gb=.7;function kb(e){let t="freedraw",n=Sb;for(let i of Bb){let o=Math.hypot((e.hullFillRatio-i.hullFillRatio)/Lb,(e.cornerTurnShare-i.cornerTurnShare)/Cb,(e.kurtosisProduct-i.kurtosisProduct)/Gb);o<n&&(n=o,t=i.type)}return t}function Ob(e){return e.elongation>wb||e.shaftDeviationRatio>Pb?"freedraw":Math.abs(e.majorSkew)>=Ib?"arrow":"line"}function Nb(e){return e.gapRatio>bb?Ob(e):kb(e)}function Fb(e,t,n){let[i,o,r,s]=t,a=r-i,l=s-o;if(a===0&&l===0)return e[e.length-1];let d=[tt(i,o),tt((i+r)/2,o),tt(r,o),tt(r,(o+s)/2),tt(r,s),tt((i+r)/2,s),tt(i,s),tt(i,(o+s)/2)],c=-1,u=tt(r,s);for(let h of d){let f=Math.hypot(h[0]-n[0],h[1]-n[1]);f>c&&(c=f,u=h)}let m=1/0,p=e[e.length-1];for(let h of e){let f=Math.hypot(h[0]-u[0],h[1]-u[1]);f<m&&(m=f,p=h)}return p}var Rb=(e,t,n=1)=>{typeof window<"u"&&(window.LAST_POINTS=e.map(([u,m])=>tt(u,m)));let i=Qu(e),[o,r,s,a]=i,l=Math.max(s-o,a-r);if(e.length<3||l*n<xb)return{type:"freedraw",points:e,boundingBox:i};let d=Nb(vb(e));return{type:t?.type==="arrow"&&d!=="arrow"?"freedraw":d,points:e,boundingBox:i}},zb=(e,t,n,i,o)=>{let r=Rb(e,i,t.zoom.value),s=r.boundingBox,[a,l,d,c]=s,m=(o??qs([...n.values()])).find(h=>{let[f,g,E,x]=rb(h,n);return f<=a&&g<=l&&E>=d&&x>=c})?.id??null,p=t.currentItemRoundness==="round"?{type:Oo(r.type)?Ku.ADAPTIVE_RADIUS:Ku.PROPORTIONAL_RADIUS}:null;switch(r.type){case"rectangle":case"diamond":case"ellipse":return sb({type:r.type,x:r.boundingBox[0],y:r.boundingBox[1],width:r.boundingBox[2]-r.boundingBox[0],height:r.boundingBox[3]-r.boundingBox[1],groupIds:[],angle:0,frameId:m,roundness:p,roughness:t.currentItemRoughness,backgroundColor:t.currentItemBackgroundColor,strokeColor:t.currentItemStrokeColor,fillStyle:t.currentItemFillStyle,opacity:t.currentItemOpacity,strokeStyle:t.currentItemStrokeStyle,strokeWidth:Nr(r.type,t.currentItemStrokeWidthKey)});case"arrow":{let[h,f]=r.points[0],[g,E]=Fb(r.points,r.boundingBox,r.points[0]),x=tt(g-h,E-f);if(Math.hypot(g-r.points[0][0],E-r.points[0][1])<60){let M=Or({type:"line",x:h,y:f,points:[tt(r.points[0][0]-h,r.points[0][1]-f),x],groupIds:[],frameId:m,locked:!1,angle:0,roundness:p,roughness:t.currentItemRoughness,backgroundColor:t.currentItemBackgroundColor,strokeColor:t.currentItemStrokeColor,fillStyle:t.currentItemFillStyle,opacity:t.currentItemOpacity,strokeStyle:t.currentItemStrokeStyle,strokeWidth:Nr(r.type,t.currentItemStrokeWidthKey)}),S=R.getNormalizeElementPointsAndCoords(M);return Or({...M,...S})}let y=Zu({type:"arrow",x:h,y:f,startArrowhead:t.currentItemStartArrowhead,endArrowhead:t.currentItemEndArrowhead,points:[tt(r.points[0][0]-h,r.points[0][1]-f),x],groupIds:[],frameId:m,locked:!1,angle:0,roundness:p,roughness:t.currentItemRoughness,backgroundColor:t.currentItemBackgroundColor,strokeColor:t.currentItemStrokeColor,fillStyle:t.currentItemFillStyle,opacity:t.currentItemOpacity,strokeStyle:t.currentItemStrokeStyle,strokeWidth:Nr(r.type,t.currentItemStrokeWidthKey)}),w=R.getNormalizeElementPointsAndCoords(y);return Zu({...y,...w})}case"line":{let[h,f]=r.points[0],g=r.points[r.points.length-1],E=Or({type:r.type,x:h,y:f,points:[tt(r.points[0][0]-h,r.points[0][1]-f),tt(g[0]-h,g[1]-f)],groupIds:[],frameId:m,locked:!1,angle:0,roundness:p,roughness:t.currentItemRoughness,backgroundColor:t.currentItemBackgroundColor,strokeColor:t.currentItemStrokeColor,fillStyle:t.currentItemFillStyle,opacity:t.currentItemOpacity,strokeStyle:t.currentItemStrokeStyle,strokeWidth:Nr(r.type,t.currentItemStrokeWidthKey)}),x=R.getNormalizeElementPointsAndCoords(E);return Or({...E,...x})}}},_b=(e,t)=>{if(!e||e.type!==t.type||e.x!==t.x||e.y!==t.y||e.width!==t.width||e.height!==t.height||e.angle!==t.angle)return!1;if(K(e)&&K(t)){if(e.points.length!==t.points.length)return!1;for(let n=0;n<e.points.length;n++)if(e.points[n][0]!==t.points[n][0]||e.points[n][1]!==t.points[n][1])return!1}return!0},Iv=(e,t)=>{if(e.state.activeTool.type==="autoshape"){e.drawShape.trail.addPointToPath(t.x,t.y);let n=e.drawShape.trail.getCurrentPoints();if(n.length>=3){let i=zb(n,e.state,e.scene.getNonDeletedElementsMap(),e.state.newElement,e.scene.getNonDeletedFramesLikes());if(i&&!Oe(i)){let o=e.state.newElement,r={...i,id:o?.type===i.type?o.id:i.id,seed:1,opacity:ab,isDeleted:!1};_b(o,r)||e.setState({newElement:r})}else e.state.newElement!==null&&e.setState({newElement:null})}return!0}return!1};var Dv=e=>e.reduce((t,n)=>t+n.version,0),Kc=e=>{let t=5381;for(let n of Hb(e))t=(t<<5)+t+n.versionNonce;return t>>>0},qc=e=>{let t=5381;for(let n=0;n<e.length;n++){let i=e.charCodeAt(n);t=(t<<5)+t+i}return t>>>0},Ve=e=>!e.isDeleted,vv=e=>e.filter(t=>Ve(t)&&!Tc(t)),kn=e=>e.filter(Ve);export{Rn as AppStateDelta,Cf as BASE_ARROW_MIN_LENGTH,Md as BASE_BINDING_GAP,Qn as BASE_BINDING_GAP_ELBOW,ce as BASE_PADDING,vn as BindableElement,Dn as BoundElement,ut as CaptureUpdateAction,Wg as DEFAULT_BUCKET_FILL_OPTIONS,jI as DEFAULT_LINK_SIZE,Uu as DEFAULT_OMIT_SIDES,$ as Delta,Ea as DurableIncrement,aa as ElementBounds,zn as ElementsDelta,xa as EphemeralIncrement,no as FOCUS_POINT_SIZE,Pu as FlowChartCreator,yu as FlowChartNavigator,Be as HEADING_DOWN,Ne as HEADING_LEFT,he as HEADING_RIGHT,Ze as HEADING_UP,Eg as INVISIBLY_SMALL_ELEMENT_SIZE,Xs as InvalidFractionalIndexError,R as LinearElementEditor,ze as MINIMAL_CROP_SIZE,BD as OMIT_SIDES_FOR_FRAME,vD as OMIT_SIDES_FOR_MULTIPLE_ELEMENTS,Ci as Scene,Et as ShapeCache,$c as Store,mo as StoreChange,ba as StoreDelta,Sr as StoreIncrement,_n as StoreSnapshot,lt as aabbForElement,Ph as addElementsToFrame,G1 as addToGroup,jS as alignElements,zf as avoidRectangularCorner,Vt as bindBindingElement,u1 as bindBindingElementToFixedPoint,nc as bindElementsToFramesAfterDuplication,Gf as bindOrUnbindBindingElement,a1 as bindOrUnbindBindingElements,ks as bindPointToSnapToElementOutline,Bd as bindingProperties,Qs as boundsContainBounds,xd as bumpVersion,Wf as calculateFixedPointForElbowArrowBinding,yi as calculateFixedPointForNonElbowArrowBinding,t0 as canApplyRoundnessTypeToElement,Bl as canBecomePolygon,$l as canChangeRoundness,nx as canCreateLinkFromElements,aP as canHaveArrowheads,Lr as canResizeFromSides,fi as charWidth,fe as compareHeading,Ki as computeBoundTextPosition,CM as computeBucketFillPolygon,ps as computeContainerDimensionForBoundText,B0 as containsCJK,rv as convertToExcalidrawElements,zb as convertToShape,Iv as convertToShapeHandlePointerMoveFromPointerDown,sT as createPlaceholderEmbeddableLabel,Ia as createSrcDoc,$y as cropElement,Pn as deconstructDiamondElement,No as deconstructLinearOrFreeDrawElement,yn as deconstructRectanguloidElement,ga as deepCopyElement,ZA as defaultGetElementLinkFromSelection,I0 as detectLineHeight,Ut as distanceToElement,CA as distributeElements,gt as doBoundsIntersect,YA as dragNewElement,tx as dragNewTextElement,WA as dragSelectedElements,uE as duplicateElement,VM as duplicateElements,C1 as editGroupForSelectedElement,re as elementCenterPoint,Ln as elementOverlapsWithFrame,oo as elementWithCanvasCache,Gn as elementsAreInFrameBounds,jd as elementsAreInSameGroup,Kd as elementsOverlappingBBox,lT as embeddableURLValidator,uh as excludeElementsInFramesFromSelection,MI as filterElementsEligibleAsFrameChildren,d1 as fixBindingsAfterDeletion,vd as fixDuplicatedBindingsAfterDuplication,Ss as flipHeading,LI as frameAndChildrenSelectedTogether,Fl as generateLinearCollisionShape,ct as generateRoughOptions,K1 as getActiveTextElement,Xo as getAllHoveredElementAtPoint,Wl as getApproxMinLineHeight,Hl as getApproxMinLineWidth,Ld as getArrowLocalFixedPoints,cg as getArrowheadAngle,pv as getArrowheadForPicker,et as getArrowheadPoints,dg as getArrowheadSize,ve as getBindingGap,c1 as getBindingSideMidPoint,zs as getBindingStrategyForDraggingBindingElementEndpoints,de as getBoundTextElement,Bt as getBoundTextElementId,U0 as getBoundTextElementPosition,qi as getBoundTextMaxHeight,vt as getBoundTextMaxWidth,oi as getBoundsFromPoints,an as getCenterForBounds,un as getCommonBoundingBox,Je as getCommonBounds,wh as getCommonFrameId,H0 as getContainerCenter,fs as getContainerCoords,Ue as getContainerElement,Cn as getContainingFrame,nn as getCornerRadius,jo as getCubicBezierCurveBound,HD as getCursorForResizingElement,Th as getDefaultFrameName,n0 as getDefaultRoundnessTypeForElement,Nl as getDiamondBaseCorners,pi as getDiamondPoints,UA as getDragOffsetXY,vS as getDraggedElementsBounds,Z as getElementAbsoluteCoords,ue as getElementBounds,Ii as getElementLineSegments,Ws as getElementPointsCoords,Ec as getElementShape,zD as getElementWithTransformHandleType,ic as getElementsCompletelyInFrame,Qe as getElementsInGroup,SI as getElementsInNewFrame,II as getElementsInResizingFrame,EI as getElementsIntersectingFrame,BI as getElementsOverlappingFrame,Zd as getElementsWithinSelection,rT as getEmbedLink,xM as getEndpointBoundTextDragAnchor,Vy as getFlipAdjustedCropPosition,Bn as getFrameChildren,yh as getFrameChildrenInsertionIndex,qs as getFrameLikeElements,vI as getFrameLikeTitle,ZI as getFreedrawOutlineAsSegments,eg as getFreedrawOutlinePoints,xc as getFreedrawStrokeCenterPoints,He as getGlobalFixedPointForBindableElement,Uf as getGlobalFixedPoints,Ed as getHeadingForElbowArrowSnap,sn as getHoveredElementForBinding,rd as getHoveredElementForFocusPoint,tD as getInitializedImageElements,_o as getLineHeightInPx,In as getLineWidth,i0 as getLinearElementSubType,KA as getLinkIdAndTypeFromSelection,Wd as getLockedLinearCursorAlignSize,gp as getMaxCharWidth,O1 as getMaximumGroups,M0 as getMinCharWidth,io as getMinMaxXYFromCurvePathOps,zo as getMinTextElementWidth,Vd as getNewGroupIdsForDuplication,kn as getNonDeletedElements,Xd as getNonDeletedGroupIds,zS as getNormalizedDimensions,Li as getObservedAppState,ka as getOmitSidesForEditorInterface,x0 as getOriginalContainerHeightFromCache,la as getPerfectElementSize,DS as getRectangleBoxAbsoluteCoords,Rh as getRenderOpacity,PD as getResizeArrowDirection,yD as getResizeOffsetXY,wn as getResizedElementAbsoluteCoords,PI as getRootElements,Dv as getSceneVersion,Zt as getSelectedElements,ar as getSelectedElementsByGroup,Ys as getSelectedGroupForElement,sh as getSelectedGroupIdForElement,oh as getSelectedGroupIds,Z1 as getSelectionStateForElements,dp as getSnapOutlineMidPoint,V1 as getTargetElements,Sh as getTargetFrame,da as getTextAnchorRatios,gM as getTextBindingForArrowEndpoint,W0 as getTextElementAngle,$0 as getTextFromElements,hp as getTextHeight,Ul as getTextWidth,_D as getTransformHandleTypeFromCoords,Yu as getTransformHandles,Oa as getTransformHandlesFromCoords,hM as getUnboundArrowEndpointAtPoint,Pl as getUncroppedImageElement,es as getUncroppedWidthAndHeight,j1 as getVisibleAndNonSelectedElements,vv as getVisibleElements,BS as getVisibleSceneBounds,Mp as getWrappedTextLines,yI as groupByFrameLikes,bI as groupsAreAtLeastIntersectingTheFrame,wI as groupsAreCompletelyOutOfFrame,qn as handleBindTextResize,Nu as handleFocusPointDrag,ZT as handleFocusPointHover,$T as handleFocusPointPointerDown,VT as handleFocusPointPointerUp,hi as hasBackground,_t as hasBoundTextElement,LD as hasBoundingBox,rP as hasFreedrawMode,nP as hasStrokeColor,oP as hasStrokeStyle,iP as hasStrokeWidth,Kc as hashElementsVersion,qc as hashString,st as headingForPoint,gi as headingForPointFromElement,Lt as headingForPointIsHorizontal,at as headingIsHorizontal,DP as headingIsVertical,Jp as hitElementBoundText,Qp as hitElementBoundingBox,PP as hitElementBoundingBoxOnly,Ht as hitElementItself,ot as intersectElementWithLineSegment,e0 as isArrowBoundToElement,X as isArrowElement,we as isBindableElement,Ps as isBindableElementInsideOtherBindable,_e as isBindingElement,Qm as isBindingElementType,$t as isBindingEnabled,Ie as isBoundToContainer,Uc as isBucketFillCompatible,xI as isCursorInFrame,Km as isCurvedArrow,j as isElbowArrow,RS as isElementCompletelyInViewport,Ks as isElementContainingFrame,rc as isElementInFrame,rh as isElementInGroup,qd as isElementInViewport,Si as isElementIntersectingFrame,qA as isElementLink,o0 as isEligibleFrameChildType,Sl as isEmbeddableElement,EM as isEndpointBoundText,Tl as isExcalidrawElement,Yf as isFixedPoint,Dl as isFlowchartNodeElement,Tr as isFocusPointVisible,ko as isFrameElement,J as isFrameLikeElement,be as isFreeDrawElement,Vm as isFreeDrawElementType,Cx as isHTMLSVGElement,Co as isIframeElement,Go as isIframeLikeElement,ke as isImageElement,$d as isInGroup,Vn as isInitializedImageElement,Tc as isInvisiblySmallElement,Oe as isLineElement,K as isLinearElement,qm as isLinearElementType,Ml as isMagicFrameElement,P0 as isMeasureTextSupported,PT as isNodeInFlowchart,Ve as isNonDeletedElement,Tt as isPathALoop,it as isPointInElement,ji as isRectangularElement,Al as isRectanguloidElement,GM as isRestylableFill,ih as isSelectedViaGroup,Zm as isSharpArrow,Jy as isSimpleArrow,$1 as isSomeElementSelected,Jm as isTextBindableContainer,oe as isTextElement,Oo as isUsingAdaptiveRadius,vl as isUsingProportionalRadius,ts as isValidPolygon,j0 as isValidTextContainer,Lx as loadHTMLImageElement,Us as makeNextSelectedElementIds,Dt as maxBindingDistance_simple,cv as maybeHandleArrowPointlikeDrag,aT as maybeParseEmbedSrc,La as measureFontSizeFromWidth,ft as measureText,NT as moveAllLeft,FT as moveAllRight,vu as moveArrowAboveBindable,kT as moveOneLeft,OT as moveOneRight,Fe as mutateElement,br as newArrowElement,Ai as newElement,Ke as newElementWith,nM as newEmbeddableElement,Dc as newFrameElement,rM as newFreeDrawElement,iM as newIframeElement,Cc as newImageElement,Lc as newLinearElement,vc as newMagicFrameElement,si as newTextElement,ob as normalizeArrowhead,rE as normalizeBoundElementsOrder,Yc as normalizeElementOrder,We as normalizeFixedPoint,nD as normalizeSVG,Zi as normalizeText,dr as omitGroupsContainingFrameLikes,bh as omitPartialGroups,Jd as orderByFractionalIndex,Vi as originalContainerCache,QA as parseElementLinkFromURL,Ip as parseTokens,Yt as pointInsideBounds,pg as pointInsideBoundsInclusive,aD as positionElementsOnGrid,as as projectFixedPointOntoDiagonal,Rb as recognizeShape,Uo as redrawTextBoundingBox,oM as refreshTextDimensions,Ih as removeAllElementsFromFrame,oc as removeElementsFromFrame,k1 as removeFromSelectedGroups,VI as renderElement,$I as renderSelectionElement,Rc as rendersOpaqueFill,AI as replaceAllElementsInFrame,zu as rescalePointsInElement,zl as resetOriginalContainerCache,Hx as resizeMultipleElements,Rx as resizeSingleElement,Ox as resizeSingleTextElement,Yx as resizeTest,nh as selectGroup,Ud as selectGroupsForSelectedElements,Yd as selectGroupsFromGivenElements,S0 as setCustomTextMetricsProvider,Y0 as shouldAllowVerticalAlign,DI as shouldApplyFrameClip,Yo as shouldTestInside,XD as showSelectedShapeActions,_s as snapToMid,X0 as suppportsHorizontalAlign,$s as syncInvalidIndices,ec as syncInvalidIndicesImmutable,ni as syncMovedIndices,Hd as toggleLinePolygonState,sP as toolIsArrow,wD as transformElements,Xe as unbindBindingElement,l1 as updateBindings,je as updateBoundElements,Ct as updateBoundPoint,xi as updateElbowArrowPoints,TI as updateFrameMembershipOfSelectedElements,eD as updateImageCache,Rl as updateOriginalContainerCache,gd as validateElbowPoints,hh as validateFractionalIndices,Xt as vectorToHeading,rn as wrapText};
|