shortcutxl 0.2.19 → 0.2.21
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/CHANGELOG.md +6 -0
- package/agent-docs/api-reference.json +2041 -0
- package/agent-docs/examples/extensions/built-in-tool-renderer.ts +2 -13
- package/agent-docs/examples/extensions/claude-code.ts +69 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/test.ts +1 -7
- package/agent-docs/examples/sdk/04-skills.ts +1 -6
- package/dist/cli/config-selector.js +1 -1
- package/dist/cli/session-picker.js +1 -1
- package/dist/config.js +15 -5
- package/dist/core/agent-loop.js +8 -9
- package/dist/core/agent-session.js +102 -462
- package/dist/core/agent.js +1 -0
- package/dist/core/export-html/template.js +14 -2
- package/dist/core/extensions/loader.js +4 -4
- package/dist/core/keybindings.js +1 -1
- package/dist/core/run-agent.js +84 -0
- package/dist/core/session/extension-emitter.js +36 -0
- package/dist/core/session/model-manager.js +111 -0
- package/dist/core/session/persistence-handler.js +104 -0
- package/dist/core/session/queue-tracker.js +91 -0
- package/dist/core/session/tool-registry.js +231 -0
- package/dist/core/settings-manager.js +11 -3
- package/dist/core/theme.js +1 -1
- package/dist/core/tools/edit.js +1 -1
- package/dist/core/tools/find.js +1 -1
- package/dist/core/tools/grep.js +1 -1
- package/dist/core/tools/ls.js +1 -1
- package/dist/core/tools/read.js +1 -1
- package/dist/core/tools/write.js +1 -1
- package/dist/custom/dev/index.js +16 -1
- package/dist/custom/excel-session.js +2 -2
- package/dist/custom/exec-mode-command.js +27 -0
- package/dist/custom/install-utils.js +1 -4
- package/dist/custom/new-sheet/api-guidelines.js +83 -0
- package/dist/custom/new-sheet/api-lookup.js +69 -0
- package/dist/custom/new-sheet/api-overlay.js +133 -0
- package/dist/custom/new-sheet/api-reference-loader.js +29 -0
- package/dist/custom/new-sheet/cell-diff/address-utils.js +80 -0
- package/dist/custom/new-sheet/cell-diff/cell-categorizer.js +100 -0
- package/dist/custom/new-sheet/cell-diff/cell-diff-formatter.js +201 -0
- package/dist/custom/new-sheet/cell-diff/index.js +23 -0
- package/dist/custom/new-sheet/cell-diff/types.js +33 -0
- package/dist/custom/new-sheet/mutation-tracker.js +358 -0
- package/dist/custom/new-sheet/sandbox-globals.js +118 -0
- package/dist/custom/new-sheet/sdk-types.js +9 -0
- package/dist/custom/new-sheet/sheet-engine-poc.js +112 -0
- package/dist/custom/new-sheet/sheet-engine.js +146 -0
- package/dist/custom/new-sheet/sheet-exec.js +219 -0
- package/dist/custom/new-sheet-command.js +24 -0
- package/dist/custom/preflight.js +28 -18
- package/dist/custom/prompts/action.js +33 -12
- package/dist/custom/prompts/shared.js +0 -6
- package/dist/custom/providers/llm-usage.js +1 -5
- package/dist/custom/providers/shortcut-invoke.js +3 -4
- package/dist/custom/providers/shortcut-stream.js +3 -4
- package/dist/custom/sandbox/index.js +6 -10
- package/dist/custom/sandbox/lib/bwrap.js +93 -0
- package/dist/custom/sandbox/lib/index.js +20 -0
- package/dist/custom/sandbox/lib/manager.js +87 -0
- package/dist/custom/sandbox/lib/network/domain-filter.js +29 -0
- package/dist/custom/sandbox/lib/network/http-proxy.js +172 -0
- package/dist/custom/sandbox/lib/network/index.js +5 -0
- package/dist/custom/sandbox/lib/network/proxy.js +145 -0
- package/dist/custom/sandbox/lib/network/socks-proxy.js +269 -0
- package/dist/custom/sandbox/{sandbox-paths.js → lib/paths.js} +1 -3
- package/dist/custom/sandbox/lib/resolve.js +320 -0
- package/dist/custom/sandbox/lib/smoke.js +87 -0
- package/dist/custom/sandbox/lib/types.js +9 -0
- package/dist/custom/sandbox/lib/wrap-command.js +110 -0
- package/dist/custom/sandbox/{wsl-detect.js → lib/wsl-detect.js} +10 -14
- package/dist/custom/sandbox/lib/wsl-setup.js +152 -0
- package/dist/custom/sandbox/sandbox-bash-tool.js +12 -7
- package/dist/custom/sandbox/sandbox-command.js +17 -16
- package/dist/custom/sandbox/sandbox-executor.js +13 -38
- package/dist/custom/sandbox/sandbox-manager.js +43 -31
- package/dist/custom/sandbox/sandbox-prompt.js +2 -2
- package/dist/custom/sandbox/tests/test-helpers.js +24 -0
- package/dist/custom/sheet-api/api-guidelines.js +83 -0
- package/dist/custom/sheet-api/api-lookup.js +69 -0
- package/dist/custom/sheet-api/api-overlay.js +133 -0
- package/dist/custom/sheet-api/api-reference-loader.js +29 -0
- package/dist/custom/sync-xll.js +1 -1
- package/dist/custom/tools/approval.js +2 -2
- package/dist/custom/tools/excel-exec.js +29 -9
- package/dist/custom/tools/llm-analysis.js +54 -29
- package/dist/custom/tools/task/task.js +4 -7
- package/dist/custom/tools/todo-list.js +5 -1
- package/dist/custom/tracing/session-upload.js +4 -1
- package/dist/custom/uninstall.js +31 -20
- package/dist/main.js +77 -22
- package/dist/modes/interactive/components/assistant-message.js +1 -1
- package/dist/modes/interactive/components/bash-execution.js +5 -9
- package/dist/modes/interactive/components/branch-summary-message.js +1 -1
- package/dist/modes/interactive/components/compaction-summary-message.js +1 -1
- package/dist/modes/interactive/components/config-selector.js +1 -1
- package/dist/modes/interactive/components/custom-editor.js +3 -1
- package/dist/modes/interactive/components/custom-message.js +1 -1
- package/dist/modes/interactive/components/extension-editor.js +1 -1
- package/dist/modes/interactive/components/extension-input.js +1 -1
- package/dist/modes/interactive/components/extension-selector.js +1 -1
- package/dist/modes/interactive/components/footer.js +3 -2
- package/dist/modes/interactive/components/keybinding-hints.js +1 -1
- package/dist/modes/interactive/components/layout.js +1 -1
- package/dist/modes/interactive/components/login-dialog.js +1 -1
- package/dist/modes/interactive/components/model-selector.js +1 -1
- package/dist/modes/interactive/components/oauth-selector.js +1 -1
- package/dist/modes/interactive/components/session-selector.js +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.js +1 -1
- package/dist/modes/interactive/components/theme-selector.js +1 -1
- package/dist/modes/interactive/components/tool-execution.js +1 -1
- package/dist/modes/interactive/components/tool-group.js +1 -1
- package/dist/modes/interactive/components/tree-selector.js +1 -1
- package/dist/modes/interactive/components/user-message-selector.js +1 -1
- package/dist/modes/interactive/components/user-message.js +1 -1
- package/dist/modes/interactive/file-attachments.js +4 -9
- package/dist/modes/interactive/interactive-mode.js +8 -136
- package/dist/modes/print-mode.js +2 -1
- package/dist/modes/rpc/rpc-mode.js +3 -4
- package/dist/tui/autocomplete.js +543 -555
- package/dist/tui/components/box.js +93 -89
- package/dist/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/components/editor.js +1671 -1642
- package/dist/tui/components/image.js +67 -63
- package/dist/tui/components/input.js +408 -408
- package/dist/tui/components/loader.js +42 -42
- package/dist/tui/components/markdown.js +612 -617
- package/dist/tui/components/select-list.js +148 -142
- package/dist/tui/components/settings-list.js +187 -172
- package/dist/tui/components/spacer.js +17 -17
- package/dist/tui/components/text.js +83 -80
- package/dist/tui/components/truncated-text.js +43 -43
- package/dist/tui/editor-component.js +1 -1
- package/dist/tui/fuzzy.js +86 -88
- package/dist/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/index.js +54 -22
- package/dist/tui/keybindings.js +92 -95
- package/dist/tui/keys.js +794 -806
- package/dist/tui/kill-ring.js +31 -33
- package/dist/tui/stdin-buffer.js +236 -241
- package/dist/tui/terminal-image.js +210 -224
- package/dist/tui/terminal.js +235 -242
- package/dist/tui/tui/autocomplete.js +543 -555
- package/dist/tui/tui/components/box.js +91 -89
- package/dist/tui/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/tui/components/editor.js +1671 -1642
- package/dist/tui/tui/components/image.js +67 -63
- package/dist/tui/tui/components/input.js +408 -408
- package/dist/tui/tui/components/loader.js +42 -42
- package/dist/tui/tui/components/markdown.js +612 -617
- package/dist/tui/tui/components/select-list.js +148 -142
- package/dist/tui/tui/components/settings-list.js +187 -172
- package/dist/tui/tui/components/spacer.js +17 -17
- package/dist/tui/tui/components/text.js +81 -80
- package/dist/tui/tui/components/truncated-text.js +43 -43
- package/dist/tui/tui/editor-component.js +1 -1
- package/dist/tui/tui/fuzzy.js +86 -88
- package/dist/tui/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/tui/index.js +54 -22
- package/dist/tui/tui/keybindings.js +92 -95
- package/dist/tui/tui/keys.js +794 -806
- package/dist/tui/tui/kill-ring.js +31 -33
- package/dist/tui/tui/stdin-buffer.js +236 -241
- package/dist/tui/tui/terminal-image.js +210 -224
- package/dist/tui/tui/terminal.js +235 -242
- package/dist/tui/tui/tui.js +908 -920
- package/dist/tui/tui/undo-stack.js +17 -17
- package/dist/tui/tui/utils.js +647 -674
- package/dist/tui/tui.js +908 -920
- package/dist/tui/undo-stack.js +17 -17
- package/dist/tui/utils.js +647 -674
- package/dist/utils/log.js +51 -0
- package/package.json +9 -5
- package/skills/{com-advanced-api → advanced-com-api}/SKILL.md +1 -1
- package/skills/advanced-com-api/excel-type-library.py +30935 -0
- package/skills/advanced-com-api/office-type-library.py +11220 -0
- package/skills/sec-edgar/sec_to_pdf.py +26 -28
- package/wsl/alpine-minirootfs.tar.gz +0 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/modules/debug_render.py +289 -0
- package/xll/modules/shortcut_xl/_com.py +10 -11
- package/xll/modules/shortcut_xl/_diff_highlight.py +17 -15
- package/xll/modules/shortcut_xl/_exec_entry.py +32 -14
- package/xll/modules/shortcut_xl/_log.py +4 -4
- package/xll/modules/shortcut_xl/_managed.py +25 -8
- package/xll/modules/shortcut_xl/_registry.py +12 -7
- package/xll/modules/shortcut_xl/_threading.py +33 -20
- package/xll/modules/shortcut_xl/_tracking.py +31 -14
- package/xll/modules/shortcut_xl/api/categorize.py +31 -17
- package/xll/modules/shortcut_xl/api/format.py +16 -26
- package/xll/modules/shortcut_xl/api/named_ranges.py +10 -10
- package/xll/modules/shortcut_xl/api/picture.py +6 -6
- package/xll/modules/shortcut_xl/api/range_formatter.py +44 -22
- package/xll/modules/shortcut_xl/api/style.py +3 -3
- package/xll/modules/shortcut_xl/api/utils/helpers.py +16 -26
- package/xll/modules/shortcut_xl/api/utils/numerical.py +6 -1
- package/xll/modules/shortcut_xl/api/utils/ranges.py +12 -7
- package/xll/modules/shortcut_xl/api/workbook.py +14 -28
- package/xll/modules/shortcut_xl/api/worksheet.py +33 -49
- package/xll/modules/shortcut_xl/api-reference.py +9 -5
- package/xll/python/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/_asyncio.py +39 -23
- package/xll/python/Lib/site-packages/anyio/_backends/_trio.py +2 -5
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/_fileio.py +12 -10
- package/xll/python/Lib/site-packages/anyio/_core/_subprocesses.py +2 -8
- package/xll/python/Lib/site-packages/anyio/_core/_synchronization.py +4 -0
- package/xll/python/Lib/site-packages/anyio/_core/_tempfile.py +1 -4
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/_eventloop.py +2 -7
- package/xll/python/Lib/site-packages/anyio/abc/_sockets.py +5 -11
- package/xll/python/Lib/site-packages/anyio/abc/_streams.py +14 -20
- package/xll/python/Lib/site-packages/anyio/functools.py +51 -17
- package/xll/python/Lib/site-packages/anyio/pytest_plugin.py +62 -1
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/file.py +5 -5
- package/xll/python/Lib/site-packages/anyio/streams/tls.py +6 -9
- package/xll/python/Lib/site-packages/anyio/to_thread.py +3 -3
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/METADATA +14 -5
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/RECORD +21 -21
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/WHEEL +1 -1
- package/xll/python/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
- package/xll/python/Scripts/httpx.exe +0 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.12.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/dist/custom/ensure-excel.js +0 -63
- package/dist/custom/sandbox/network/index.js +0 -8
- package/dist/custom/sandbox/network/network-proxy.js +0 -136
- package/dist/custom/sandbox/network/proxy-worker.py +0 -257
- package/dist/custom/sandbox/sandbox-config.js +0 -153
- package/dist/custom/sandbox/sandbox-smoke.js +0 -49
- package/dist/custom/sandbox/wsl-setup.js +0 -92
- package/dist/custom/tools/task/agents.js +0 -6
- package/skills/com-advanced-api/excel-type-library.py +0 -27767
- package/skills/com-advanced-api/office-type-library.py +0 -10867
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/INSTALLER +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/entry_points.txt +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/licenses/LICENSE +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core sandbox API: command transformer.
|
|
3
|
+
*
|
|
4
|
+
* Takes a user command and resolved sandbox state,
|
|
5
|
+
* returns a spawn-ready WrappedCommand.
|
|
6
|
+
*/
|
|
7
|
+
import { buildBwrapArgs } from './bwrap.js';
|
|
8
|
+
/** Port for the HTTP proxy socat bridge inside the sandbox network namespace. */
|
|
9
|
+
export const HTTP_PROXY_PORT = 8899;
|
|
10
|
+
/** Port for the SOCKS5 proxy socat bridge inside the sandbox network namespace. */
|
|
11
|
+
export const SOCKS_PROXY_PORT = 1080;
|
|
12
|
+
/** Path to the apply-seccomp binary inside the rootfs. */
|
|
13
|
+
export const SECCOMP_BINARY = '/usr/local/bin/apply-seccomp';
|
|
14
|
+
/** Validate a socket path to prevent shell injection. */
|
|
15
|
+
function validateSocketPath(path) {
|
|
16
|
+
if (!/^[a-zA-Z0-9._\-\/]+$/.test(path)) {
|
|
17
|
+
throw new Error(`Invalid proxy socket path: ${path}`);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Wrap a command string with apply-seccomp.
|
|
22
|
+
*
|
|
23
|
+
* apply-seccomp loads the BPF filter, then exec's the command.
|
|
24
|
+
* The filter persists across exec — all children inherit it.
|
|
25
|
+
* Single quotes in the command are escaped for nested bash -c.
|
|
26
|
+
*/
|
|
27
|
+
function wrapWithSeccomp(command, filterPath) {
|
|
28
|
+
// Escape single quotes for nesting inside bash -c '...'
|
|
29
|
+
const escaped = command.replace(/'/g, "'\\''");
|
|
30
|
+
return `${SECCOMP_BINARY} ${filterPath} bash -c '${escaped}'`;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Wrap a shell command with WSL + bwrap isolation.
|
|
34
|
+
*
|
|
35
|
+
* Returns a WrappedCommand that the caller spawns with child_process.spawn().
|
|
36
|
+
* The sandbox owns command construction; the caller owns process lifecycle.
|
|
37
|
+
*
|
|
38
|
+
* The `command` parameter is trusted — it comes from the agent, not from user input.
|
|
39
|
+
* Socket paths are validated to prevent injection.
|
|
40
|
+
*
|
|
41
|
+
* @param options.cwd - Override the working directory (Linux path).
|
|
42
|
+
* @param options.httpSocketPath - HTTP proxy socket (set by SandboxManager).
|
|
43
|
+
* @param options.socksSocketPath - SOCKS5 proxy socket (set by SandboxManager).
|
|
44
|
+
*/
|
|
45
|
+
export function wrapCommand(command, state, options) {
|
|
46
|
+
const bwrapArgs = buildBwrapArgs(state, options);
|
|
47
|
+
const httpSocketPath = options?.httpSocketPath;
|
|
48
|
+
const socksSocketPath = options?.socksSocketPath;
|
|
49
|
+
const seccomp = state.seccompFilterPath;
|
|
50
|
+
// The user command — optionally wrapped with seccomp.
|
|
51
|
+
// In proxy mode, seccomp wraps ONLY the user command (not the socat setup),
|
|
52
|
+
// because socat needs AF_UNIX sockets for the proxy bridges.
|
|
53
|
+
// In non-proxy mode, seccomp wraps the entire command.
|
|
54
|
+
let resolvedCommand = seccomp ? wrapWithSeccomp(command, seccomp) : command;
|
|
55
|
+
if (state.networkMode === 'proxy' && httpSocketPath) {
|
|
56
|
+
validateSocketPath(httpSocketPath);
|
|
57
|
+
if (socksSocketPath)
|
|
58
|
+
validateSocketPath(socksSocketPath);
|
|
59
|
+
// Build socat bridges and env vars for both proxies.
|
|
60
|
+
// Each bwrap has its own network namespace, so ports don't collide.
|
|
61
|
+
const setup = [];
|
|
62
|
+
// HTTP proxy: socat bridge
|
|
63
|
+
setup.push(`socat TCP-LISTEN:${HTTP_PROXY_PORT},reuseaddr,fork UNIX-CONNECT:${httpSocketPath} & HTTP_PID=$!`);
|
|
64
|
+
// SOCKS5 proxy: socat bridge
|
|
65
|
+
if (socksSocketPath) {
|
|
66
|
+
setup.push(`socat TCP-LISTEN:${SOCKS_PROXY_PORT},reuseaddr,fork UNIX-CONNECT:${socksSocketPath} & SOCKS_PID=$!`);
|
|
67
|
+
}
|
|
68
|
+
// Wait for bridges to be ready
|
|
69
|
+
setup.push(`for _i in 1 2 3 4 5; do nc -z 127.0.0.1 ${HTTP_PROXY_PORT} 2>/dev/null && break; sleep 0.1; done`);
|
|
70
|
+
if (socksSocketPath) {
|
|
71
|
+
setup.push(`for _i in 1 2 3 4 5; do nc -z 127.0.0.1 ${SOCKS_PROXY_PORT} 2>/dev/null && break; sleep 0.1; done`);
|
|
72
|
+
}
|
|
73
|
+
// HTTP proxy env vars
|
|
74
|
+
setup.push(`export HTTP_PROXY=http://127.0.0.1:${HTTP_PROXY_PORT}`, `export HTTPS_PROXY=http://127.0.0.1:${HTTP_PROXY_PORT}`, `export http_proxy=http://127.0.0.1:${HTTP_PROXY_PORT}`, `export https_proxy=http://127.0.0.1:${HTTP_PROXY_PORT}`);
|
|
75
|
+
// SOCKS5 proxy env vars (for SSH, databases, gRPC, etc.)
|
|
76
|
+
if (socksSocketPath) {
|
|
77
|
+
setup.push(`export ALL_PROXY=socks5://127.0.0.1:${SOCKS_PROXY_PORT}`, `export all_proxy=socks5://127.0.0.1:${SOCKS_PROXY_PORT}`);
|
|
78
|
+
}
|
|
79
|
+
// Force all traffic through proxies — no bypass, even for localhost.
|
|
80
|
+
// Sandboxed commands have their own network namespace; any external
|
|
81
|
+
// connection must go through the proxy for domain filtering.
|
|
82
|
+
setup.push('export no_proxy=', 'export NO_PROXY=');
|
|
83
|
+
// Route SSH through SOCKS5 proxy for git-over-SSH
|
|
84
|
+
// Use netcat's SOCKS5 client mode (-X 5) since the proxy speaks SOCKS5.
|
|
85
|
+
if (socksSocketPath) {
|
|
86
|
+
setup.push(`export GIT_SSH_COMMAND="ssh -o 'ProxyCommand=socat - SOCKS4A:127.0.0.1:%h:%p,socksport=${SOCKS_PROXY_PORT}'"`);
|
|
87
|
+
}
|
|
88
|
+
const proxySetup = setup.join('; ');
|
|
89
|
+
// Cleanup: kill socat bridges after command finishes
|
|
90
|
+
const cleanup = ['kill $HTTP_PID 2>/dev/null'];
|
|
91
|
+
if (socksSocketPath)
|
|
92
|
+
cleanup.push('kill $SOCKS_PID 2>/dev/null');
|
|
93
|
+
// Two-stage execution: socat bridges start first (need AF_UNIX),
|
|
94
|
+
// then resolvedCommand runs (already wrapped with apply-seccomp if enabled).
|
|
95
|
+
resolvedCommand = `${proxySetup}; ${resolvedCommand}; EXIT=$?; ${cleanup.join('; ')}; true; exit $EXIT`;
|
|
96
|
+
}
|
|
97
|
+
const args = [
|
|
98
|
+
'-d',
|
|
99
|
+
state.distro,
|
|
100
|
+
'--',
|
|
101
|
+
'bwrap',
|
|
102
|
+
...bwrapArgs,
|
|
103
|
+
'--',
|
|
104
|
+
'bash',
|
|
105
|
+
'-c',
|
|
106
|
+
resolvedCommand
|
|
107
|
+
];
|
|
108
|
+
return { file: 'wsl', args };
|
|
109
|
+
}
|
|
110
|
+
//# sourceMappingURL=wrap-command.js.map
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { spawnSync } from 'child_process';
|
|
7
7
|
let _wsl2Available;
|
|
8
|
-
|
|
8
|
+
const _distroCache = new Map();
|
|
9
9
|
/**
|
|
10
10
|
* Check if WSL2 is available on this system.
|
|
11
11
|
* Cached after first call.
|
|
@@ -19,14 +19,14 @@ export function isWsl2Available() {
|
|
|
19
19
|
encoding: 'utf-8',
|
|
20
20
|
windowsHide: true
|
|
21
21
|
});
|
|
22
|
-
// wsl --status exits 0 when WSL is installed. We need WSL2 specifically
|
|
23
|
-
//
|
|
24
|
-
// or the WSL2-specific kernel version string.
|
|
25
|
-
// wsl --status may emit UTF-16LE with NUL bytes — strip them like -l -v
|
|
22
|
+
// wsl --status exits 0 when WSL is installed. We need WSL2 specifically.
|
|
23
|
+
// wsl --status may emit UTF-16LE with NUL bytes — strip them.
|
|
26
24
|
const output = ((result.stdout ?? '') + (result.stderr ?? '')).replace(/\0/g, '');
|
|
27
|
-
_wsl2Available =
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
_wsl2Available =
|
|
26
|
+
result.status === 0 &&
|
|
27
|
+
(/Default Version\s*:\s*2/i.test(output) ||
|
|
28
|
+
/WSL\s*2/i.test(output) ||
|
|
29
|
+
/kernel version/i.test(output));
|
|
30
30
|
}
|
|
31
31
|
catch {
|
|
32
32
|
_wsl2Available = false;
|
|
@@ -46,9 +46,7 @@ export function isDistroInstalled(name) {
|
|
|
46
46
|
encoding: 'utf-8',
|
|
47
47
|
windowsHide: true
|
|
48
48
|
});
|
|
49
|
-
// Output uses UTF-16LE with NUL bytes; clean it up
|
|
50
49
|
const output = (result.stdout ?? '').replace(/\0/g, '');
|
|
51
|
-
// Token match to avoid false positives (e.g. 'short' matching 'shortcutxl')
|
|
52
50
|
const tokens = output.split(/\s+/);
|
|
53
51
|
const installed = tokens.some((t) => t === name);
|
|
54
52
|
_distroCache.set(name, installed);
|
|
@@ -59,11 +57,9 @@ export function isDistroInstalled(name) {
|
|
|
59
57
|
return false;
|
|
60
58
|
}
|
|
61
59
|
}
|
|
62
|
-
/**
|
|
63
|
-
* Clear the detection cache. Useful after importing a new distro.
|
|
64
|
-
*/
|
|
60
|
+
/** Clear the detection cache. Call after importing/unregistering a distro. */
|
|
65
61
|
export function clearDetectionCache() {
|
|
66
62
|
_wsl2Available = undefined;
|
|
67
|
-
_distroCache
|
|
63
|
+
_distroCache.clear();
|
|
68
64
|
}
|
|
69
65
|
//# sourceMappingURL=wsl-detect.js.map
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WSL2 distro import and setup.
|
|
3
|
+
*
|
|
4
|
+
* Handles importing a rootfs tarball into WSL2 and verifying the result.
|
|
5
|
+
* The rootfs path and distro storage dir are provided by the caller —
|
|
6
|
+
* this package has no opinion about where they live.
|
|
7
|
+
*/
|
|
8
|
+
import { spawn, spawnSync } from 'child_process';
|
|
9
|
+
import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
|
|
10
|
+
import { join } from 'path';
|
|
11
|
+
import { log } from '../../../utils/log.js';
|
|
12
|
+
import { runSandboxSmokeTestAsync } from './smoke.js';
|
|
13
|
+
import { clearDetectionCache, isDistroInstalled, isWsl2Available } from './wsl-detect.js';
|
|
14
|
+
/**
|
|
15
|
+
* Ensure the WSL2 sandbox distro is ready.
|
|
16
|
+
*
|
|
17
|
+
* 1. Verify WSL2 is available
|
|
18
|
+
* 2. Check if distro already exists → smoke test
|
|
19
|
+
* 3. Import rootfs via `wsl --import` → smoke test
|
|
20
|
+
*/
|
|
21
|
+
export async function ensureWslSandbox(options) {
|
|
22
|
+
const { distro, wslDir, rootfsPath, version } = options;
|
|
23
|
+
if (!isWsl2Available()) {
|
|
24
|
+
return { installed: false, error: 'WSL2 is not available' };
|
|
25
|
+
}
|
|
26
|
+
const stampFile = join(wslDir, distro, '.rootfs-version');
|
|
27
|
+
// Already installed? Check version stamp.
|
|
28
|
+
if (isDistroInstalled(distro)) {
|
|
29
|
+
if (version && !isRootfsStale(stampFile, version)) {
|
|
30
|
+
// Version matches — already up to date, skip smoke test.
|
|
31
|
+
return { installed: true };
|
|
32
|
+
}
|
|
33
|
+
// Stale or missing stamp — unregister and reimport.
|
|
34
|
+
log.info('sandbox', `Rootfs stale or unversioned — reimporting (version=${version})`);
|
|
35
|
+
const unregResult = await spawnAsync('wsl', ['--unregister', distro], 10_000);
|
|
36
|
+
clearDetectionCache();
|
|
37
|
+
if (unregResult.exitCode !== 0) {
|
|
38
|
+
return {
|
|
39
|
+
installed: false,
|
|
40
|
+
error: `Rootfs update needed but failed to unregister — manual \`wsl --unregister ${distro}\` may be needed`
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
// Fall through to re-import
|
|
44
|
+
}
|
|
45
|
+
// Import rootfs
|
|
46
|
+
if (!existsSync(rootfsPath)) {
|
|
47
|
+
return { installed: false, error: `Rootfs not found at ${rootfsPath}` };
|
|
48
|
+
}
|
|
49
|
+
const installDir = join(wslDir, distro);
|
|
50
|
+
if (!existsSync(installDir)) {
|
|
51
|
+
mkdirSync(installDir, { recursive: true });
|
|
52
|
+
}
|
|
53
|
+
const importResult = await spawnAsync('wsl', ['--import', distro, installDir, rootfsPath, '--version', '2'], 60_000);
|
|
54
|
+
if (importResult.exitCode !== 0) {
|
|
55
|
+
return {
|
|
56
|
+
installed: false,
|
|
57
|
+
error: `WSL import failed: ${importResult.stderr.replace(/\0/g, '')}`
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
clearDetectionCache();
|
|
61
|
+
// Smoke test
|
|
62
|
+
const smoke = await runSandboxSmokeTestAsync(distro);
|
|
63
|
+
if (smoke.ok) {
|
|
64
|
+
if (version)
|
|
65
|
+
writeStamp(stampFile, version);
|
|
66
|
+
return { installed: true };
|
|
67
|
+
}
|
|
68
|
+
const unregResult = await spawnAsync('wsl', ['--unregister', distro], 10_000);
|
|
69
|
+
const unregistered = unregResult.exitCode === 0;
|
|
70
|
+
clearDetectionCache();
|
|
71
|
+
const failed = smoke.checks.filter((c) => !c.ok).map((c) => c.name);
|
|
72
|
+
const suffix = unregistered
|
|
73
|
+
? ' (distro unregistered — retry will re-import)'
|
|
74
|
+
: ' (warning: failed to unregister broken distro — manual `wsl --unregister` may be needed)';
|
|
75
|
+
return {
|
|
76
|
+
installed: false,
|
|
77
|
+
error: `Import succeeded but smoke test failed${suffix}. Missing: ${failed.join(', ')}`
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Enable WSL2 on a machine that doesn't have it yet.
|
|
82
|
+
* Requires admin privileges (will trigger UAC prompt).
|
|
83
|
+
*/
|
|
84
|
+
export function enableWsl2() {
|
|
85
|
+
const result = spawnSync('wsl', ['--install', '--no-distribution'], {
|
|
86
|
+
timeout: 120_000,
|
|
87
|
+
encoding: 'utf-8',
|
|
88
|
+
windowsHide: true
|
|
89
|
+
});
|
|
90
|
+
const output = ((result.stdout ?? '') + (result.stderr ?? '')).replace(/\0/g, '');
|
|
91
|
+
if (result.status === 0) {
|
|
92
|
+
const needsReboot = /reboot|restart/i.test(output);
|
|
93
|
+
return { success: true, needsReboot };
|
|
94
|
+
}
|
|
95
|
+
return { success: false, needsReboot: false, error: output || 'Failed to enable WSL2' };
|
|
96
|
+
}
|
|
97
|
+
function isRootfsStale(stampFile, currentVersion) {
|
|
98
|
+
try {
|
|
99
|
+
return !existsSync(stampFile) || readFileSync(stampFile, 'utf-8').trim() !== currentVersion;
|
|
100
|
+
}
|
|
101
|
+
catch {
|
|
102
|
+
return true;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
function writeStamp(stampFile, version) {
|
|
106
|
+
try {
|
|
107
|
+
writeFileSync(stampFile, version, 'utf-8');
|
|
108
|
+
}
|
|
109
|
+
catch (err) {
|
|
110
|
+
log.warn('sandbox', 'Failed to write rootfs version stamp', err);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
/** Non-blocking spawn wrapper. */
|
|
114
|
+
function spawnAsync(cmd, args, timeoutMs) {
|
|
115
|
+
return new Promise((resolve) => {
|
|
116
|
+
const child = spawn(cmd, args, {
|
|
117
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
118
|
+
windowsHide: true
|
|
119
|
+
});
|
|
120
|
+
let stdout = '';
|
|
121
|
+
let stderr = '';
|
|
122
|
+
let settled = false;
|
|
123
|
+
child.stdout?.on('data', (chunk) => {
|
|
124
|
+
stdout += chunk.toString();
|
|
125
|
+
});
|
|
126
|
+
child.stderr?.on('data', (chunk) => {
|
|
127
|
+
stderr += chunk.toString();
|
|
128
|
+
});
|
|
129
|
+
child.on('error', () => {
|
|
130
|
+
if (!settled) {
|
|
131
|
+
settled = true;
|
|
132
|
+
clearTimeout(timer);
|
|
133
|
+
resolve({ exitCode: null, stdout, stderr });
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
const timer = setTimeout(() => {
|
|
137
|
+
if (!settled) {
|
|
138
|
+
settled = true;
|
|
139
|
+
child.kill();
|
|
140
|
+
resolve({ exitCode: null, stdout, stderr });
|
|
141
|
+
}
|
|
142
|
+
}, timeoutMs);
|
|
143
|
+
child.on('close', (code) => {
|
|
144
|
+
if (!settled) {
|
|
145
|
+
settled = true;
|
|
146
|
+
clearTimeout(timer);
|
|
147
|
+
resolve({ exitCode: code, stdout, stderr });
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
//# sourceMappingURL=wsl-setup.js.map
|
|
@@ -22,8 +22,10 @@ import { createNetworkPrompt } from './sandbox-prompt.js';
|
|
|
22
22
|
*/
|
|
23
23
|
export function createSandboxBashTool(cwd, settingsManager) {
|
|
24
24
|
const sandboxMgr = new SandboxManager(cwd, settingsManager);
|
|
25
|
-
// Start network proxy if in proxy mode
|
|
26
|
-
|
|
25
|
+
// Start network proxy if in proxy mode.
|
|
26
|
+
// The startup promise is tracked by SandboxManager — the executor
|
|
27
|
+
// calls ensureReady() before each command, so there's no race.
|
|
28
|
+
if (sandboxMgr.getState().networkMode === 'proxy') {
|
|
27
29
|
// Domain check prompts need a UI context, which is only available during
|
|
28
30
|
// tool execution. We store a per-invocation context ref that the proxy
|
|
29
31
|
// callback reads. This ref may be overwritten by concurrent tool calls,
|
|
@@ -34,7 +36,8 @@ export function createSandboxBashTool(cwd, settingsManager) {
|
|
|
34
36
|
// Without this, concurrent bash commands cause overlapping prompts
|
|
35
37
|
// where only one succeeds and the rest get denied.
|
|
36
38
|
let promptQueue = Promise.resolve();
|
|
37
|
-
sandboxMgr
|
|
39
|
+
sandboxMgr
|
|
40
|
+
.startProxy({
|
|
38
41
|
onDomainCheck: async (domain) => {
|
|
39
42
|
if (!activeCtx?.hasUI) {
|
|
40
43
|
return 'once';
|
|
@@ -52,20 +55,22 @@ export function createSandboxBashTool(cwd, settingsManager) {
|
|
|
52
55
|
});
|
|
53
56
|
});
|
|
54
57
|
}
|
|
55
|
-
})
|
|
58
|
+
})
|
|
59
|
+
.catch(() => {
|
|
56
60
|
// Proxy failed to start — fall back to no network so the user
|
|
57
61
|
// isn't silently blocked thinking they have proxy-mode network.
|
|
58
62
|
sandboxMgr.setNetworkMode('none');
|
|
59
63
|
});
|
|
60
|
-
|
|
61
|
-
|
|
64
|
+
return buildTool(cwd, sandboxMgr, (ctx) => {
|
|
65
|
+
activeCtx = ctx;
|
|
66
|
+
});
|
|
62
67
|
}
|
|
63
68
|
return buildTool(cwd, sandboxMgr);
|
|
64
69
|
}
|
|
65
70
|
// ---------------------------------------------------------------------------
|
|
66
71
|
function buildTool(cwd, sandboxMgr, setActiveCtx) {
|
|
67
72
|
const baseTool = createBashTool(cwd, {
|
|
68
|
-
operations: createSandboxOperations(sandboxMgr
|
|
73
|
+
operations: createSandboxOperations(sandboxMgr),
|
|
69
74
|
sandboxActive: true
|
|
70
75
|
});
|
|
71
76
|
return {
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
* - Not installed → runs WSL2 + bubblewrap setup flow
|
|
5
5
|
* - Already installed → shows settings menu (enable/disable, network, write paths, allowed domains)
|
|
6
6
|
*/
|
|
7
|
-
import {
|
|
7
|
+
import { enableWsl2, ensureWslSandbox, isDistroInstalled, isWsl2Available } from './lib/index.js';
|
|
8
8
|
import chalk from 'chalk';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import { SANDBOX_DISTRO } from './
|
|
9
|
+
import { execSync } from 'node:child_process';
|
|
10
|
+
import { getAlpineRootfsPath, getSettingsPath, getWslDir, VERSION } from '../../config.js';
|
|
11
|
+
import { SANDBOX_DISTRO } from './index.js';
|
|
12
12
|
const WSL_INSTALL_HINT = '\n\n To fix this:\n' +
|
|
13
13
|
' 1. Open PowerShell or Command Prompt as Administrator\n' +
|
|
14
14
|
' 2. Run: wsl --install\n' +
|
|
@@ -38,7 +38,12 @@ export async function handleSandboxCommand(showStatus, select, input, settingsMa
|
|
|
38
38
|
}
|
|
39
39
|
// Step 3: Not installed → set up
|
|
40
40
|
showStatus('Setting up sandbox (importing Alpine Linux + bubblewrap)...');
|
|
41
|
-
const result = await ensureWslSandbox({
|
|
41
|
+
const result = await ensureWslSandbox({
|
|
42
|
+
distro: SANDBOX_DISTRO,
|
|
43
|
+
wslDir: getWslDir(),
|
|
44
|
+
rootfsPath: getAlpineRootfsPath(),
|
|
45
|
+
version: VERSION
|
|
46
|
+
});
|
|
42
47
|
if (result.installed) {
|
|
43
48
|
settingsManager.setSandboxMode('enabled');
|
|
44
49
|
showStatus('Sandbox ready — restart session to activate');
|
|
@@ -67,7 +72,7 @@ async function showSettingsMenu(showStatus, select, input, sm) {
|
|
|
67
72
|
`Allowed domains (${allowedDomains.length})`,
|
|
68
73
|
'Reset to defaults',
|
|
69
74
|
'Open config file',
|
|
70
|
-
'Cancel'
|
|
75
|
+
'Cancel'
|
|
71
76
|
]);
|
|
72
77
|
if (!choice || choice === 'Cancel')
|
|
73
78
|
return;
|
|
@@ -85,19 +90,19 @@ async function showSettingsMenu(showStatus, select, input, sm) {
|
|
|
85
90
|
else if (choice.startsWith('Read paths')) {
|
|
86
91
|
await showListMenu('Read Paths', readPaths ?? [], showStatus, select, input, {
|
|
87
92
|
placeholder: 'D:\\SharedData',
|
|
88
|
-
onSave: (paths) => sm.setSandboxReadPaths(paths)
|
|
93
|
+
onSave: (paths) => sm.setSandboxReadPaths(paths)
|
|
89
94
|
});
|
|
90
95
|
}
|
|
91
96
|
else if (choice.startsWith('Write paths')) {
|
|
92
97
|
await showListMenu('Write Paths', writePaths ?? [], showStatus, select, input, {
|
|
93
98
|
placeholder: 'C:\\Users\\you\\Downloads',
|
|
94
|
-
onSave: (paths) => sm.setSandboxWritePaths(paths)
|
|
99
|
+
onSave: (paths) => sm.setSandboxWritePaths(paths)
|
|
95
100
|
});
|
|
96
101
|
}
|
|
97
102
|
else if (choice.startsWith('Allowed domains')) {
|
|
98
103
|
await showListMenu('Allowed Domains', allowedDomains, showStatus, select, input, {
|
|
99
104
|
placeholder: '*.github.com',
|
|
100
|
-
onSave: (domains) => sm.setSandboxAllowedDomains(domains)
|
|
105
|
+
onSave: (domains) => sm.setSandboxAllowedDomains(domains)
|
|
101
106
|
});
|
|
102
107
|
}
|
|
103
108
|
else if (choice === 'Reset to defaults') {
|
|
@@ -124,9 +129,9 @@ async function showNetworkMenu(showStatus, select, sm) {
|
|
|
124
129
|
const labels = {
|
|
125
130
|
none: 'None — no network access',
|
|
126
131
|
proxy: 'Proxy — domain-level control with approval prompts',
|
|
127
|
-
full: 'Full — unrestricted network access'
|
|
132
|
+
full: 'Full — unrestricted network access'
|
|
128
133
|
};
|
|
129
|
-
const options = modes.map((m) => m === current ? `${labels[m]} (current)` : labels[m]);
|
|
134
|
+
const options = modes.map((m) => (m === current ? `${labels[m]} (current)` : labels[m]));
|
|
130
135
|
options.push('Cancel');
|
|
131
136
|
const choice = await select('Network Mode', options);
|
|
132
137
|
if (!choice || choice === 'Cancel')
|
|
@@ -138,11 +143,7 @@ async function showNetworkMenu(showStatus, select, sm) {
|
|
|
138
143
|
}
|
|
139
144
|
}
|
|
140
145
|
async function showListMenu(title, items, showStatus, select, input, opts) {
|
|
141
|
-
const options = [
|
|
142
|
-
'+ Add...',
|
|
143
|
-
...items.map((item) => ` ${item}`),
|
|
144
|
-
'Cancel',
|
|
145
|
-
];
|
|
146
|
+
const options = ['+ Add...', ...items.map((item) => ` ${item}`), 'Cancel'];
|
|
146
147
|
const choice = await select(title, options);
|
|
147
148
|
if (!choice || choice === 'Cancel')
|
|
148
149
|
return;
|
|
@@ -1,52 +1,27 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Sandboxed BashOperations implementation.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
* Uses SandboxManager.wrapCommand() to build the sandboxed command,
|
|
5
|
+
* then owns the process lifecycle (spawn, kill, stream, timeout).
|
|
6
6
|
*/
|
|
7
|
+
import { toLinuxPath } from './lib/index.js';
|
|
7
8
|
import { spawn } from 'child_process';
|
|
8
9
|
import { killProcessTree } from '../../utils/shell.js';
|
|
9
|
-
import { buildBwrapArgs } from './sandbox-config.js';
|
|
10
10
|
/**
|
|
11
11
|
* Create a BashOperations that runs commands inside a WSL2 + bwrap sandbox.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
13
|
+
* The manager builds the command (with proxy socket + cwd); this function owns spawning it.
|
|
14
|
+
* Awaits manager.ensureReady() before the first command to prevent proxy startup races.
|
|
14
15
|
*/
|
|
15
|
-
export function createSandboxOperations(
|
|
16
|
+
export function createSandboxOperations(manager) {
|
|
16
17
|
return {
|
|
17
|
-
exec: (command,
|
|
18
|
+
exec: async (command, cwd, { onData, signal, timeout }) => {
|
|
19
|
+
// Wait for proxy to be ready before first command
|
|
20
|
+
await manager.ensureReady();
|
|
21
|
+
const linuxCwd = cwd ? toLinuxPath(cwd) : undefined;
|
|
22
|
+
const wrapped = manager.wrapCommand(command, linuxCwd);
|
|
18
23
|
return new Promise((resolve, reject) => {
|
|
19
|
-
const
|
|
20
|
-
// When proxy mode is active, start a socat bridge inside bwrap
|
|
21
|
-
// (unix socket → TCP localhost:8899) and route all traffic through it.
|
|
22
|
-
// --unshare-net ensures nothing can bypass the proxy.
|
|
23
|
-
let resolvedCommand = command;
|
|
24
|
-
if (config.networkMode === 'proxy' && config.proxySocketPath) {
|
|
25
|
-
const proxySetup = [
|
|
26
|
-
`socat TCP-LISTEN:8899,reuseaddr,fork UNIX-CONNECT:${config.proxySocketPath} & PROXY_PID=$!`,
|
|
27
|
-
'for _i in 1 2 3 4 5; do nc -z 127.0.0.1 8899 2>/dev/null && break; sleep 0.1; done',
|
|
28
|
-
'export HTTP_PROXY=http://127.0.0.1:8899',
|
|
29
|
-
'export HTTPS_PROXY=http://127.0.0.1:8899',
|
|
30
|
-
'export http_proxy=http://127.0.0.1:8899',
|
|
31
|
-
'export https_proxy=http://127.0.0.1:8899',
|
|
32
|
-
'export no_proxy=',
|
|
33
|
-
'export NO_PROXY=',
|
|
34
|
-
].join('; ');
|
|
35
|
-
resolvedCommand = `${proxySetup}; ${command}; EXIT=$?; kill $PROXY_PID 2>/dev/null; true; exit $EXIT`;
|
|
36
|
-
}
|
|
37
|
-
// spawn('wsl', args) passes each array element as a discrete OS-level
|
|
38
|
-
// argument (via Windows CreateProcess). WSL forwards them directly to
|
|
39
|
-
// exec — no intermediate shell parses the args. So the command string
|
|
40
|
-
// must be passed raw to `bash -c`; any extra quoting becomes literal
|
|
41
|
-
// characters that bash tries to execute as a command name.
|
|
42
|
-
const wslArgs = [
|
|
43
|
-
'-d', config.distro,
|
|
44
|
-
'--',
|
|
45
|
-
'bwrap', ...bwrapArgs,
|
|
46
|
-
'--',
|
|
47
|
-
'bash', '-c', resolvedCommand
|
|
48
|
-
];
|
|
49
|
-
const child = spawn('wsl', wslArgs, {
|
|
24
|
+
const child = spawn(wrapped.file, wrapped.args, {
|
|
50
25
|
stdio: ['ignore', 'pipe', 'pipe'],
|
|
51
26
|
windowsHide: true
|
|
52
27
|
});
|
|
@@ -80,7 +55,7 @@ export function createSandboxOperations(config) {
|
|
|
80
55
|
reject(err);
|
|
81
56
|
}
|
|
82
57
|
});
|
|
83
|
-
// Abort handling
|
|
58
|
+
// Abort handling
|
|
84
59
|
const onAbort = () => {
|
|
85
60
|
if (child.pid) {
|
|
86
61
|
killProcessTree(child.pid);
|
|
@@ -1,39 +1,57 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Agent-side sandbox manager — thin adapter over @shortcut/sandbox.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
|
|
4
|
+
* Maps agent's SettingsManager to the package's SandboxConfig,
|
|
5
|
+
* and wires domain persistence through SettingsManager.
|
|
6
|
+
*/
|
|
7
|
+
import { SandboxManager as PackageSandboxManager, toLinuxPath } from './lib/index.js';
|
|
8
|
+
import { join } from 'path';
|
|
9
|
+
import { getAgentDir } from '../../config.js';
|
|
10
|
+
/** Map agent SandboxSettings to the package's SandboxConfig. */
|
|
11
|
+
function toPackageConfig(settingsManager) {
|
|
12
|
+
const settings = settingsManager.getSandboxSettings();
|
|
13
|
+
const pipDir = toLinuxPath(join(getAgentDir(), 'pip-packages'));
|
|
14
|
+
return {
|
|
15
|
+
readPaths: settings.readPaths,
|
|
16
|
+
writePaths: settings.writePaths,
|
|
17
|
+
networkMode: settings.network ?? 'none',
|
|
18
|
+
env: {
|
|
19
|
+
PYTHONUSERBASE: pipDir,
|
|
20
|
+
PIP_USER: '1',
|
|
21
|
+
PIP_BREAK_SYSTEM_PACKAGES: '1',
|
|
22
|
+
PATH: `${pipDir}/bin:/usr/local/bin:/usr/bin:/bin`
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Agent-side sandbox manager.
|
|
28
|
+
*
|
|
29
|
+
* Wraps the package SandboxManager and adds:
|
|
30
|
+
* - Settings → config mapping
|
|
31
|
+
* - Domain persistence via SettingsManager
|
|
7
32
|
*/
|
|
8
|
-
import { resolveSandboxConfig } from './sandbox-config.js';
|
|
9
|
-
import { startNetworkProxy, deployProxyWorker } from './network/index.js';
|
|
10
33
|
export class SandboxManager {
|
|
11
|
-
|
|
34
|
+
inner;
|
|
12
35
|
settingsManager;
|
|
13
|
-
proxyHandle = null;
|
|
14
36
|
constructor(cwd, settingsManager) {
|
|
15
|
-
this.config = resolveSandboxConfig(settingsManager.getSandboxSettings(), cwd);
|
|
16
37
|
this.settingsManager = settingsManager;
|
|
38
|
+
this.inner = new PackageSandboxManager(toPackageConfig(settingsManager), cwd);
|
|
17
39
|
}
|
|
18
|
-
|
|
19
|
-
return this.
|
|
40
|
+
getState() {
|
|
41
|
+
return this.inner.getState();
|
|
20
42
|
}
|
|
21
|
-
/** Override the network mode at runtime (e.g., fallback to 'none' on proxy failure). */
|
|
22
43
|
setNetworkMode(mode) {
|
|
23
|
-
this.
|
|
44
|
+
this.inner.setNetworkMode(mode);
|
|
45
|
+
}
|
|
46
|
+
async ensureReady() {
|
|
47
|
+
return this.inner.ensureReady();
|
|
48
|
+
}
|
|
49
|
+
wrapCommand(command, cwd) {
|
|
50
|
+
return this.inner.wrapCommand(command, cwd);
|
|
24
51
|
}
|
|
25
|
-
/**
|
|
26
|
-
* Start the network proxy if network mode is 'proxy'.
|
|
27
|
-
* Must be called before creating sandbox operations.
|
|
28
|
-
*/
|
|
29
52
|
async startProxy(handler) {
|
|
30
|
-
if (this.config.networkMode !== 'proxy')
|
|
31
|
-
return;
|
|
32
|
-
// Deploy the worker script into WSL
|
|
33
|
-
deployProxyWorker();
|
|
34
53
|
const allowedDomains = this.settingsManager.getSandboxAllowedDomains();
|
|
35
|
-
this.
|
|
36
|
-
allowedDomains,
|
|
54
|
+
await this.inner.startProxy(allowedDomains, {
|
|
37
55
|
onDomainCheck: async (domain) => {
|
|
38
56
|
const choice = await handler.onDomainCheck(domain);
|
|
39
57
|
if (choice === 'save') {
|
|
@@ -43,17 +61,11 @@ export class SandboxManager {
|
|
|
43
61
|
if (choice === 'once')
|
|
44
62
|
return 'once';
|
|
45
63
|
return false;
|
|
46
|
-
}
|
|
64
|
+
}
|
|
47
65
|
});
|
|
48
|
-
// Store the socket path so buildBwrapArgs can bind-mount it
|
|
49
|
-
this.config.proxySocketPath = this.proxyHandle.socketPath;
|
|
50
66
|
}
|
|
51
|
-
/** Stop the proxy worker. */
|
|
52
67
|
stopProxy() {
|
|
53
|
-
|
|
54
|
-
this.proxyHandle.stop();
|
|
55
|
-
this.proxyHandle = null;
|
|
56
|
-
}
|
|
68
|
+
this.inner.stopProxy();
|
|
57
69
|
}
|
|
58
70
|
}
|
|
59
71
|
//# sourceMappingURL=sandbox-manager.js.map
|
|
@@ -9,9 +9,9 @@ import { Border } from '../tools/approval.js';
|
|
|
9
9
|
const APPROVAL_BUTTONS = [
|
|
10
10
|
{ label: 'Allow Once', choice: 'once' },
|
|
11
11
|
{ label: 'Allow Always', choice: 'save' },
|
|
12
|
-
{ label: 'Deny', choice: 'deny' }
|
|
12
|
+
{ label: 'Deny', choice: 'deny' }
|
|
13
13
|
];
|
|
14
|
-
|
|
14
|
+
class SandboxPrompt extends Container {
|
|
15
15
|
selectedButton = 0;
|
|
16
16
|
buttonContainer = new Container();
|
|
17
17
|
theme;
|