From 20b2ce0998797cb99c8f9717632806ef96a18a1b Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:20:39 -0400 Subject: [PATCH 01/30] Record public GitHub data-plane bootstrap --- .../ION_GITHUB_DATA_PLANE_PROTOCOL.md | 30 +++++--- .../ion_github_data_plane_registry.yaml | 11 +-- .../kernel/ion_github_data_plane_audit.py | 15 +++- ...STRAP_PUSH_RECEIPT_2026-05-05T041453Z.json | 71 +++++++++++++++++++ ...test_kernel_ion_github_data_plane_audit.py | 14 +++- 5 files changed, 126 insertions(+), 15 deletions(-) create mode 100644 ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json diff --git a/ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md b/ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md index 4dce5279..7bd1c997 100644 --- a/ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md +++ b/ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md @@ -46,15 +46,17 @@ Current configured data-plane target: ```text branch: main remote: https://github.com/ION-operations/ion-codex.git -visibility: private +visibility: public collaboration repository auth path: gh browser login with git credential helper ``` -No first commit or push is authorized by this read-only setup slice. The next +The initial public bootstrap push was completed on 2026-05-05 after explicit +operator authorization, exact path staging, validation, and secret-scan receipt +evidence. This bootstrap does not grant general `main` push authority. The next push-capable slice must define ION runtime push authority with staged diff proof, validation proof, secret scan proof, receipt capture, and rollback proof. -Until that profile exists, operator bootstrap may perform the first push -manually, but manual approval is not the final automation model. +Future `main` updates should use the repository's branch and pull-request gate +unless a separate ION break-glass policy explicitly authorizes otherwise. ## Prior-Art Consolidation @@ -87,7 +89,7 @@ Rejected or constrained prior art: ## Repository Recommendation -Use one private canonical repository under the GitHub account/org: +Use one public collaboration repository under the GitHub account/org: ```text ION-operations/ion-codex @@ -99,6 +101,8 @@ Rationale: spaces; - keeps ION code, architecture docs, registries, connector state, and receipts in one reviewable repository; +- allows outside users and AI collaborators to inspect, discuss, and contribute + through public issues, branches, and pull requests; - allows issues, branches, pull requests, and releases to carry artifact refs without using MCP message bodies as the durable storage layer. @@ -106,6 +110,12 @@ Large binary artifacts should not be pasted through MCP. Store them as GitHub release assets, Git LFS objects, or external artifact refs recorded in ION receipts. +More perfected production builds, infrastructure configuration, deployment +state, credentials, and other sensitive operational surfaces may live in private +repositories later. Public collaboration status for this repo is not authority +to publish secrets, production credentials, private logs, or unsafe runtime +state. + ## Plane Split ```text @@ -150,7 +160,7 @@ not as proof that they still need to be run: ```bash gh auth login --hostname github.com --git-protocol https --scopes repo -gh repo create ION-operations/ion-codex --private --description "ION Codex carrier workspace and data plane" --disable-wiki +gh repo create ION-operations/ion-codex --public --description "ION Codex carrier workspace and data plane" --disable-wiki git remote add origin https://github.com/ION-operations/ion-codex.git git remote -v ``` @@ -163,7 +173,7 @@ git commit -m "Initialize ION Codex data plane" git push -u origin main ``` -If `gh` is unavailable, create the empty private repository in the GitHub UI +If `gh` is unavailable, create the empty public repository in the GitHub UI under `ION-operations`, then run only the `git remote add` and verification commands above. @@ -184,13 +194,15 @@ commands above. ## First Implementation Slices -Slice 0 is complete as local setup evidence only: +Slice 0 is complete as local setup and bootstrap evidence: - local git initialized; - branch is `main`; -- private GitHub repository exists under `ION-operations/ion-codex`; +- public GitHub repository exists under `ION-operations/ion-codex`; - `origin` points to `https://github.com/ION-operations/ion-codex.git`; - GitHub CLI authentication was completed by browser login outside ION files. +- initial bootstrap commit `6edea5f9ad843ad8526c4272d07885fca8065217` + was pushed to `origin/main` after gate checks. Slice 1 should be read-only: diff --git a/ION/03_registry/ion_github_data_plane_registry.yaml b/ION/03_registry/ion_github_data_plane_registry.yaml index 616c612e..6efa34f9 100644 --- a/ION/03_registry/ion_github_data_plane_registry.yaml +++ b/ION/03_registry/ion_github_data_plane_registry.yaml @@ -6,7 +6,8 @@ github_account_or_org: ION-operations recommended_repository: owner: ION-operations name: ion-codex - visibility: private + visibility: public + visibility_policy: public_collaboration_repo_private_production_builds_later remote_ssh: git@github.com:ION-operations/ion-codex.git remote_https: https://github.com/ION-operations/ion-codex.git local_root: @@ -16,8 +17,10 @@ local_root: active_branch: main active_remote: https://github.com/ION-operations/ion-codex.git auth_path: gh_browser_login_with_git_credential_helper - first_commit_pushed: false - setup_state: CONFIGURED_LOCAL_REMOTE_READY_NO_COMMIT_PUSH + first_commit_pushed: true + setup_state: CONFIGURED_INITIAL_BOOTSTRAP_PUSH_COMPLETE_PUBLIC_COLLABORATION_REPO + bootstrap_commit: 6edea5f9ad843ad8526c4272d07885fca8065217 + bootstrap_push_receipt: ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json control_plane: owner: ION/09_integrations/mcp/chatgpt_connector/ summary: MCP remains the carrier control plane for status, packets, queues, and proof-gated returns. @@ -106,7 +109,7 @@ human_setup_commands: - git init - git branch -M main - gh auth login --hostname github.com --git-protocol https --scopes repo - - gh repo create ION-operations/ion-codex --private --description "ION Codex carrier workspace and data plane" --disable-wiki + - gh repo create ION-operations/ion-codex --public --description "ION Codex carrier workspace and data plane" --disable-wiki - git remote add origin https://github.com/ION-operations/ion-codex.git - git remote -v guardrails: diff --git a/ION/04_packages/kernel/ion_github_data_plane_audit.py b/ION/04_packages/kernel/ion_github_data_plane_audit.py index 2a7858b1..255a017c 100644 --- a/ION/04_packages/kernel/ion_github_data_plane_audit.py +++ b/ION/04_packages/kernel/ion_github_data_plane_audit.py @@ -3,6 +3,7 @@ from __future__ import annotations import argparse +import fnmatch import json import re import subprocess @@ -95,6 +96,12 @@ def _parse_registry_bool(value: str | None) -> bool | None: return None +def _matches_any_pattern(value: str | None, patterns: list[str]) -> bool: + if not value: + return False + return any(fnmatch.fnmatchcase(value, pattern) for pattern in patterns) + + def _registry_scalar(text: str, key: str) -> str | None: pattern = re.compile(rf"^\s*{re.escape(key)}:\s*(.*?)\s*$") for line in text.splitlines(): @@ -263,7 +270,13 @@ def audit_github_data_plane(root: str | Path | None = None) -> dict[str, Any]: remote_alignment = "NOT_EVALUATED" branch_alignment = "NOT_EVALUATED" if git.get("git_present"): - branch_alignment = "MATCHES_REGISTRY" if git.get("current_branch") == expected_branch else "MISMATCH" + current_branch = git.get("current_branch") + if current_branch == expected_branch: + branch_alignment = "MATCHES_REGISTRY" + elif _matches_any_pattern(current_branch, DEFAULT_ALLOWED_PUSH_BRANCH_PATTERNS): + branch_alignment = "ALLOWED_WORK_BRANCH" + else: + branch_alignment = "MISMATCH" if branch_alignment == "MISMATCH": findings.append("active_branch_mismatch") diff --git a/ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json b/ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json new file mode 100644 index 00000000..8f877452 --- /dev/null +++ b/ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json @@ -0,0 +1,71 @@ +{ + "schema_id": "ion.github_data_plane.bootstrap_push_receipt.v1", + "created_at": "2026-05-05T04:14:53Z", + "action_id": "initial-github-data-plane-load-bootstrap-authorized", + "human_sovereign": "Braden", + "carrier": "CODEX_CLI_CARRIER", + "production_authority": false, + "live_execution_authority": false, + "github_mutation_performed": true, + "git_mutation_performed": true, + "operation": "one_time_initial_bootstrap_push", + "repository": { + "owner": "ION-operations", + "name": "ion-codex", + "url": "https://github.com/ION-operations/ion-codex", + "visibility": "public", + "default_branch": "main" + }, + "commit": { + "sha": "6edea5f9ad843ad8526c4272d07885fca8065217", + "short_sha": "6edea5f", + "message": "Initialize ION Codex data plane", + "branch": "main", + "remote_ref": "refs/heads/main" + }, + "authorization_evidence": { + "bootstrap_authorization": "ION/05_context/current/github_data_plane/BOOTSTRAP_UPLOAD_AUTHORIZATION_2026-05-05T041221Z.json", + "commit_proposal": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.json", + "path_manifest": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.paths.json" + }, + "pre_push_evidence": { + "remote_heads_before_push": [], + "worktree_clean_before_push": true, + "exact_path_manifest_staged": true, + "secret_scan_findings": 0, + "validation": [ + { + "command": "python3 -m pytest ION/tests -q", + "result": "264 passed" + }, + { + "command": "python3 -S -m kernel.ion_status --ion-root . --json", + "result": "ION_STATUS_READY" + } + ] + }, + "post_push_evidence": { + "origin_main_sha": "6edea5f9ad843ad8526c4272d07885fca8065217", + "upstream": "origin/main", + "worktree_clean_after_push": true, + "github_cli_view": { + "nameWithOwner": "ION-operations/ion-codex", + "isPrivate": false, + "viewerPermission": "ADMIN", + "pushedAt": "2026-05-05T04:14:53Z" + } + }, + "boundaries": { + "main_auto_push_allowed_after_bootstrap": false, + "future_main_update_path": "pull_request_or_merge_gate", + "production_deploy_authorized": false, + "secrets_authorized": false, + "force_push_authorized": false, + "repository_settings_authority": "operator_policy_only" + }, + "notes": [ + "The repository is intentionally public for collaboration.", + "Private production builds and infrastructure repositories may be introduced later.", + "This receipt records evidence only and does not authorize future pushes." + ] +} diff --git a/ION/tests/test_kernel_ion_github_data_plane_audit.py b/ION/tests/test_kernel_ion_github_data_plane_audit.py index f77179e4..9abc4fb8 100644 --- a/ION/tests/test_kernel_ion_github_data_plane_audit.py +++ b/ION/tests/test_kernel_ion_github_data_plane_audit.py @@ -58,7 +58,7 @@ def test_github_data_plane_audit_reports_current_repo_without_mutation(): assert result["verdict"] == READY_VERDICT assert result["git"]["git_present"] is True assert result["git"]["origin_configured"] is True - assert result["registry_alignment"]["branch_alignment"] == "MATCHES_REGISTRY" + assert result["registry_alignment"]["branch_alignment"] in {"MATCHES_REGISTRY", "ALLOWED_WORK_BRANCH"} assert result["registry_alignment"]["remote_alignment"] == "MATCHES_REGISTRY" assert result["network_access_used"] is False assert result["github_mutation_performed"] is False @@ -96,6 +96,18 @@ def test_github_data_plane_audit_handles_first_commit_ready_repo(tmp_path): assert result["first_commit_readiness"]["first_commit_status"] == "NO_LOCAL_COMMITS_YET" +def test_github_data_plane_audit_accepts_allowed_work_branch(tmp_path): + _write_owner_surfaces(tmp_path) + _init_repo(tmp_path) + _run_git(tmp_path, "checkout", "-b", "docs/public-data-plane-policy") + + result = audit_github_data_plane(tmp_path) + + assert result["accepted"] is True + assert result["registry_alignment"]["branch_alignment"] == "ALLOWED_WORK_BRANCH" + assert "active_branch_mismatch" not in result["findings"] + + def test_github_data_plane_audit_parses_dirty_worktree_counts(tmp_path): _write_owner_surfaces(tmp_path) _init_repo(tmp_path) From 172eb87219c0b3bc55f2884f32adb05326244627 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:27:28 -0400 Subject: [PATCH 02/30] Add public repo navigation docs --- CONTRIBUTING.md | 46 + ION/04_packages/README.md | 37 + ...2654Z0000_public_repo_navigation_docs.json | 174 + ...000_public_repo_navigation_docs.paths.json | 5549 +++++++++++++++++ ION/09_integrations/README.md | 28 + ION/README.md | 61 + ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 67 + ION/docs/README.md | 30 + README.md | 85 + SECURITY.md | 29 + 10 files changed, 6106 insertions(+) create mode 100644 CONTRIBUTING.md create mode 100644 ION/04_packages/README.md create mode 100644 ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json create mode 100644 ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json create mode 100644 ION/09_integrations/README.md create mode 100644 ION/README.md create mode 100644 ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md create mode 100644 ION/docs/README.md create mode 100644 README.md create mode 100644 SECURITY.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..6ca3a6df --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,46 @@ +# Contributing + +This repository is public for collaboration, but ION state is still governed by +packets, receipts, proof gates, and bounded carrier authority. + +## Before You Change Files + +1. Read `ION/REPO_AUTHORITY.md`. +2. Use a scoped branch: + - `docs/` + - `work/` + - `agent/` + - `data-plane/` +3. Keep changes narrow and explain the owner surface you reused. +4. Run the smallest meaningful validation for the change. +5. Open a pull request with evidence. + +## Pull Request Evidence + +Include: + +- objective +- touched paths +- validations run +- known blockers or skipped checks +- relevant ION packet, receipt, issue, branch, or artifact references + +## What Not To Submit + +- secrets, credentials, tokens, private browser profiles, tunnel credentials, or + `.env` files +- production deployment changes unless explicitly authorized by ION policy and + Braden +- broad rewrites that bypass existing architecture, registry, packet, or + receipt owners +- raw AI output as accepted state without proof-gated integration + +## Validation Commands + +Useful defaults from the shell root: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q +``` + diff --git a/ION/04_packages/README.md b/ION/04_packages/README.md new file mode 100644 index 00000000..c40d948b --- /dev/null +++ b/ION/04_packages/README.md @@ -0,0 +1,37 @@ +# ION Python Packages + +This directory contains the Python package source for the ION kernel. + +Package discovery is configured in the repository-root `pyproject.toml`: + +```text +where = ["ION/04_packages"] +include = ["kernel*"] +``` + +## Main Package + +```text +kernel/ +``` + +The kernel package contains status tools, carrier audits, packet processing, +ChatOps bridge support, GitHub data-plane audits, MCP previews, and other local +runtime helpers. + +## Common Commands + +Run from the repository root: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_github_data_plane_audit --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q +``` + +## Rule + +Kernel modules may emit receipts, packets, or projections. Raw tool output is +not accepted ION state unless an owning packet, receipt, or integration path +records it. + diff --git a/ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json b/ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json new file mode 100644 index 00000000..fac268cc --- /dev/null +++ b/ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json @@ -0,0 +1,174 @@ +{ + "action_id": "public-repo-navigation-docs", + "audit_summary": { + "accepted": true, + "can_prepare_human_review_commit": true, + "findings": [], + "first_commit_status": "REGISTRY_SAYS_PUSHED_NOT_NETWORK_VERIFIED", + "verdict": "ION_GITHUB_DATA_PLANE_AUDIT_READY", + "warnings": [] + }, + "commit_message": "Add public repo navigation docs", + "created_at": "2026-05-05T04:26:54+00:00", + "failure_classes": [ + "GITHUB_DATA_PLANE_NOT_CONFIGURED", + "GIT_WORKTREE_DIRTY_OR_UNSAFE", + "GIT_SECRET_SCAN_BLOCK", + "GIT_VALIDATION_BLOCK", + "CARRIER_ADAPTER_FAILURE", + "ION_CORE_FAILURE" + ], + "failure_classification": null, + "findings": [], + "git_mutation_performed": false, + "github_mutation_performed": false, + "live_execution_authority": false, + "network_access_used": false, + "path_bucket_counts": { + ".cursor": 36, + ".gitignore": 1, + ".vscode": 4, + "CONTRIBUTING.md": 1, + "FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt": 1, + "FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt": 1, + "FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt": 1, + "FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt": 1, + "FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt": 1, + "FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt": 1, + "FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt": 1, + "FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt": 1, + "FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt": 1, + "FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt": 1, + "FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt": 1, + "FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt": 1, + "FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt": 1, + "FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt": 1, + "FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt": 1, + "FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt": 1, + "FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt": 1, + "FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt": 1, + "FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt": 1, + "ION": 5456 + }, + "path_count": 5541, + "path_manifest_path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json", + "path_manifest_sha256": "b30cb0445412e97dd883304897aa40cc33584ece0b90fa1bb11770f9d6bf753a", + "path_samples": [ + ".cursor/agents/ion-context-cartographer.md", + ".cursor/agents/ion-mason.md", + ".cursor/agents/ion-nemesis.md", + ".cursor/agents/ion-persona-interface.md", + ".cursor/agents/ion-relay.md", + ".cursor/agents/ion-runtime-cartographer.md", + ".cursor/agents/ion-scribe.md", + ".cursor/agents/ion-spawn-row-slot.md", + ".cursor/agents/ion-steward.md", + ".cursor/commands/ion-cockpit.md", + ".cursor/commands/ion-context-plan.md", + ".cursor/commands/ion-continue.md", + ".cursor/commands/ion-health.md", + ".cursor/commands/ion-mcp-status.md", + ".cursor/commands/ion.md", + ".cursor/hooks.json", + ".cursor/hooks/ion_carrier_session_start.py", + ".cursor/hooks/ion_session_start_persona_mount.py", + ".cursor/hooks/ion_session_start_persona_mount.sh", + ".cursor/hooks/ion_stamp_operator_gate.py", + ".cursor/mcp.json", + ".cursor/rules/ion-agent-context-dynamics.mdc", + ".cursor/rules/ion-autopilot-command.mdc", + ".cursor/rules/ion-canonical-workflow-unification.mdc", + ".cursor/rules/ion-carrier-boot-packet.mdc", + ".cursor/rules/ion-carrier-mount.mdc", + ".cursor/rules/ion-carrier-relay-mediation.mdc", + ".cursor/rules/ion-carrier-runtime-foundation.mdc", + ".cursor/rules/ion-carrier-task-return-intake.mdc", + ".cursor/rules/ion-context-authority-team.mdc", + ".cursor/rules/ion-cursor-onboarding.mdc", + ".cursor/rules/ion-full-workflow-mount.mdc", + ".cursor/rules/ion-mcp-control-bridge.mdc", + ".cursor/rules/ion-persona-user-facing.mdc", + ".cursor/skills/ion-autopilot/SKILL.md", + ".cursor/skills/ion-carrier-control/SKILL.md", + ".gitignore", + ".vscode/extensions.json", + ".vscode/launch.json", + ".vscode/settings.json" + ], + "path_source": { + "ok": true, + "source": "git ls-files --cached --modified --others --exclude-standard" + }, + "policy": { + "commit_authority": false, + "main_auto_push_allowed": false, + "main_update_path": "pull_request_or_merge_gate_or_explicit_bootstrap_exception", + "push_authority": false, + "requires_before_commit_or_push": [ + "review_this_proposal_receipt", + "review_path_manifest", + "review_secret_scan", + "review_validation_results", + "record_approval_or_runtime_policy_gate" + ] + }, + "production_authority": false, + "proposal_id": "github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs", + "proposal_path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json", + "proposal_sha256": "41efb9d9e274d903345254317300eb7e5e8ebb6bf416989870041440af8b17fa", + "rollback": { + "post_commit_before_push": "Use git reset --soft HEAD~1 only under explicit human/ION gate; do not run automatically.", + "post_push": "Use git revert on a follow-up branch/PR unless explicit emergency rollback authority is mounted.", + "pre_push": "No rollback needed before commit/push; no git or GitHub mutation is performed by this proposal." + }, + "root": "/home/sev/ION - Production/ION_CODEX", + "schema_id": "ion.github_commit_proposal_receipt.v1", + "secret_scan": { + "accepted": true, + "finding_count": 0, + "findings": [], + "findings_truncated": false, + "scanned_file_count": 5535, + "schema_id": "ion.git_secret_scan_result.v1", + "secret_values_redacted": true, + "skipped_file_count": 6 + }, + "status": "ready_for_review", + "target_branch": "docs/github-public-data-plane-policy", + "target_remote": "https://github.com/ION-operations/ion-codex.git", + "validation": { + "commands": [ + { + "command": [ + "python3", + "-m", + "pytest", + "ION/tests", + "-q" + ], + "passed": true, + "returncode": 0, + "stderr_tail": "", + "stdout_tail": "........................................................................ [ 27%]\n........................................................................ [ 54%]\n........................................................................ [ 81%]\n................................................. [100%]\n265 passed in 1.83s" + }, + { + "command": [ + "python3", + "-S", + "-m", + "kernel.ion_status", + "--ion-root", + ".", + "--json" + ], + "passed": true, + "returncode": 0, + "stderr_tail": "", + "stdout_tail": "_spawn_plan\": \"ION/05_context/current/ACTIVE_ROLE_SPAWN_PLAN.json\",\n \"active_turn_packet\": \"ION/05_context/current/ACTIVE_CARRIER_TURN_PACKET.json\",\n \"active_work_packet\": \"ION/05_context/current/ACTIVE_WORK_PACKET.json\",\n \"cursor_hook_state\": \"ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json\",\n \"human_gate_queue\": \"ION/05_context/current/ACTIVE_HUMAN_GATE_QUEUE.json\",\n \"operator_message_queue\": \"ION/05_context/current/ACTIVE_OPERATOR_MESSAGE_QUEUE.json\",\n \"steward_integration_queue\": \"ION/05_context/current/ACTIVE_STEWARD_INTEGRATION_QUEUE.json\",\n \"task_return_ledger\": \"ION/05_context/current/ACTIVE_CARRIER_TASK_RETURN_LEDGER.json\",\n \"v72_mcp_donor_reconciliation_audit\": \"ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json\"\n },\n \"completed_role_count\": 3,\n \"cursor_hook_state\": {\n \"cursor_hook_bridge_verdict\": \"ION_CURSOR_HOOK_BRIDGE_READY\",\n \"host_connection_state\": \"NOT_CONNECTED_OR_NOT_OBSERVED\",\n \"live_hook_event_seen\": false,\n \"path\": \"ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json\",\n \"status\": \"projected_not_connected\"\n },\n \"deferred_spawn_count\": 0,\n \"execution_bundle_materialized\": true,\n \"live_execution_authority\": false,\n \"missing_state_surfaces\": [],\n \"next_lawful_action\": \"continue_or_queue_new_work\",\n \"objective\": \"Reconcile ChatGPT Browser MCP connector transport truth, health check, carrier-specific onboarding tick, and human trial instructions\",\n \"open_human_gate_count\": 0,\n \"open_human_gates\": [],\n \"operator_message_classification\": {\n \"action\": \"run_carrier_continue\",\n \"active_human_gate_count\": 0,\n \"classification\": \"continuation_signal\",\n \"confidence\": 0.98,\n \"live_execution_authority\": false,\n \"message\": \"continue\",\n \"mutates_runtime\": true,\n \"normalized_message\": \"continue\",\n \"production_authority\": false,\n \"requires_human_gate_resolution\": false,\n \"schema_id\": \"ion.operator_message_classification.v1\"\n },\n \"operator_message_interpretation\": \"CONTINUATION_SIGNAL_REUSE_ACTIVE_OBJECTIVE\",\n \"operator_queue_counts\": {\n \"carrier_packet_generated\": 39,\n \"superseded_test_residue\": 2\n },\n \"optional_evidence_paths\": {\n \"safe_full_project_package_result\": \"ION/05_context/current/SAFE_FULL_PROJECT_PACKAGE_RESULT_V*.json\",\n \"trunk_preservation_report\": \"ION/05_context/current/TRUNK_PRESERVATION_REPORT_V*.json\"\n },\n \"plan_spawn_count\": 0,\n \"production_authority\": false,\n \"safe_full_project_package\": {\n \"accepted\": null,\n \"archive_root_mode\": null,\n \"path\": null,\n \"path_pattern\": \"ION/05_context/current/SAFE_FULL_PROJECT_PACKAGE_RESULT_V*.json\",\n \"present\": false,\n \"zip_path\": null,\n \"zip_root_verdict\": null,\n \"zip_sha256\": null\n },\n \"schema_id\": \"ion.status.v1\",\n \"shell_root\": \"/home/sev/ION - Production/ION_CODEX\",\n \"spawn_queue\": [],\n \"spawn_queue_count\": 0,\n \"steward_queue_pending_count\": 0,\n \"steward_queue_rejected_count\": 0,\n \"task_return_counts\": {\n \"accepted\": 0,\n \"rejected\": 0,\n \"total\": 0\n },\n \"trunk_preservation\": {\n \"accepted\": null,\n \"contained_removed_files\": null,\n \"containment_move_count\": 0,\n \"new_full_zip\": null,\n \"packaging_verdict\": null,\n \"path\": null,\n \"path_pattern\": \"ION/05_context/current/TRUNK_PRESERVATION_REPORT_V*.json\",\n \"policy_version\": null,\n \"present\": false,\n \"protected_removed_files\": null,\n \"unexpected_removed_files\": null,\n \"version_line\": null\n },\n \"v72_mcp_donor_reconciliation\": {\n \"cursor_bridge_preserved\": true,\n \"donor_runtime_receipts_restored\": false,\n \"forbidden_runtime_file_count\": 0,\n \"live_execution_authority\": false,\n \"missing_donor_surface_count\": 0,\n \"path\": \"ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json\",\n \"present\": true,\n \"production_authority\": false,\n \"restored_donor_surface_count\": 38,\n \"verdict\": \"V72_MCP_DONOR_RECONCILIATION_PASS\"\n },\n \"verdict\": \"ION_STATUS_READY\",\n \"workstream\": \"implementation\"\n}" + } + ], + "passed": true, + "run_validation": true + }, + "verdict": "ION_GITHUB_COMMIT_PROPOSAL_READY_FOR_REVIEW" +} diff --git a/ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json b/ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json new file mode 100644 index 00000000..723fb367 --- /dev/null +++ b/ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json @@ -0,0 +1,5549 @@ +{ + "created_at": "2026-05-05T04:26:54+00:00", + "path_count": 5541, + "paths": [ + ".cursor/agents/ion-context-cartographer.md", + ".cursor/agents/ion-mason.md", + ".cursor/agents/ion-nemesis.md", + ".cursor/agents/ion-persona-interface.md", + ".cursor/agents/ion-relay.md", + ".cursor/agents/ion-runtime-cartographer.md", + ".cursor/agents/ion-scribe.md", + ".cursor/agents/ion-spawn-row-slot.md", + ".cursor/agents/ion-steward.md", + ".cursor/commands/ion-cockpit.md", + ".cursor/commands/ion-context-plan.md", + ".cursor/commands/ion-continue.md", + ".cursor/commands/ion-health.md", + ".cursor/commands/ion-mcp-status.md", + ".cursor/commands/ion.md", + ".cursor/hooks.json", + ".cursor/hooks/ion_carrier_session_start.py", + ".cursor/hooks/ion_session_start_persona_mount.py", + ".cursor/hooks/ion_session_start_persona_mount.sh", + ".cursor/hooks/ion_stamp_operator_gate.py", + ".cursor/mcp.json", + ".cursor/rules/ion-agent-context-dynamics.mdc", + ".cursor/rules/ion-autopilot-command.mdc", + ".cursor/rules/ion-canonical-workflow-unification.mdc", + ".cursor/rules/ion-carrier-boot-packet.mdc", + ".cursor/rules/ion-carrier-mount.mdc", + ".cursor/rules/ion-carrier-relay-mediation.mdc", + ".cursor/rules/ion-carrier-runtime-foundation.mdc", + ".cursor/rules/ion-carrier-task-return-intake.mdc", + ".cursor/rules/ion-context-authority-team.mdc", + ".cursor/rules/ion-cursor-onboarding.mdc", + ".cursor/rules/ion-full-workflow-mount.mdc", + ".cursor/rules/ion-mcp-control-bridge.mdc", + ".cursor/rules/ion-persona-user-facing.mdc", + ".cursor/skills/ion-autopilot/SKILL.md", + ".cursor/skills/ion-carrier-control/SKILL.md", + ".gitignore", + ".vscode/extensions.json", + ".vscode/launch.json", + ".vscode/settings.json", + ".vscode/tasks.json", + "CONTRIBUTING.md", + "FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt", + "FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt", + "FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt", + "FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt", + "FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt", + "FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt", + "FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt", + "FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt", + "FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt", + "FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt", + "FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt", + "FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt", + "FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt", + "FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt", + "FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt", + "FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt", + "FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt", + "FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt", + "FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt", + "FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt", + "FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt", + "FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt", + "FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt", + "FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt", + "FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt", + "FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt", + "FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt", + "FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt", + "FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt", + "FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt", + "FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt", + "FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt", + "FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt", + "FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt", + "FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt", + "FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt", + "FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt", + "FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt", + "FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt", + "FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt", + "ION/00_BOOTSTRAP/V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_LOCK.md", + "ION/00_BOOTSTRAP/V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE_LOCK.md", + "ION/00_BOOTSTRAP/V102_CONTEXT_METABOLISM_AND_LIFECYCLE_LOCK.md", + "ION/00_BOOTSTRAP/V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_LOCK.md", + "ION/00_BOOTSTRAP/V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_LOCK.md", + "ION/00_BOOTSTRAP/V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY_LOCK.md", + "ION/00_BOOTSTRAP/V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_LOCK.md", + "ION/00_BOOTSTRAP/V108_V72_MCP_DONOR_RECONCILIATION_LOCK.md", + "ION/00_BOOTSTRAP/V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_LOCK.md", + "ION/00_BOOTSTRAP/V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_LOCK.md", + "ION/00_BOOTSTRAP/V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_LOCK.md", + "ION/00_BOOTSTRAP/V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_LOCK.md", + "ION/00_BOOTSTRAP/V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_LOCK.md", + "ION/00_BOOTSTRAP/V114_DEFERRED_SPAWN_VISIBILITY_LOCK.md", + "ION/00_BOOTSTRAP/V115_AUDIT_TRUTH_RECONCILIATION_LOCK.md", + "ION/00_BOOTSTRAP/V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_LOCK.md", + "ION/00_BOOTSTRAP/V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_LOCK.md", + "ION/00_BOOTSTRAP/V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_LOCK.md", + "ION/00_BOOTSTRAP/V119_CURRENT_OPERATING_PACKET_LOCK.md", + "ION/00_BOOTSTRAP/V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_LOCK.md", + "ION/00_BOOTSTRAP/V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_LOCK.md", + "ION/00_BOOTSTRAP/V123_ROOT_ONBOARDING_SHIM_RETIREMENT_LOCK.md", + "ION/00_BOOTSTRAP/V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_LOCK.md", + "ION/00_BOOTSTRAP/V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_LOCK.md", + "ION/00_BOOTSTRAP/V32_CERTIFIED_DEMO_BASELINE_LOCK.md", + "ION/00_BOOTSTRAP/V34_GPT55_SELF_MOUNT_DELEGATION_LOCK.md", + "ION/00_BOOTSTRAP/V35_RUNTIME_IDENTITY_ENVELOPE_LOCK.md", + "ION/00_BOOTSTRAP/V36_SELF_SURFACE_DRIFT_GATE_LOCK.md", + "ION/00_BOOTSTRAP/V37_AGENT_SUCCESSION_PACKET_LOCK.md", + "ION/00_BOOTSTRAP/V38_SELF_MOUNT_GRAPH_INTEGRATION_LOCK.md", + "ION/00_BOOTSTRAP/V39_FRONT_DOOR_SELF_MOUNT_BINDING_LOCK.md", + "ION/00_BOOTSTRAP/V40_MAINTAINED_WORK_SURFACE_AND_PERSONA_SYSTEM_LOCK.md", + "ION/00_BOOTSTRAP/V41_FRONT_STAGE_COUNCIL_RUNTIME_RECEIPTS_LOCK.md", + "ION/00_BOOTSTRAP/V42_CONVERSATIONAL_RECEIPTS_AND_LIVE_REPAIR_LOCK.md", + "ION/00_BOOTSTRAP/V43_EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_LOCK.md", + "ION/00_BOOTSTRAP/V44_VISUAL_OBSERVATION_PACKET_SCHEMA_LOCK.md", + "ION/00_BOOTSTRAP/V45_VISUAL_DIAGNOSIS_RECEIPTS_AND_BROWSER_HARNESS_PLAN_LOCK.md", + "ION/00_BOOTSTRAP/V46_LOCAL_VISUAL_HARNESS_PROTOTYPE_LOCK.md", + "ION/00_BOOTSTRAP/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_LOCK.md", + "ION/00_BOOTSTRAP/V48_VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_LOCK.md", + "ION/00_BOOTSTRAP/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_LOCK.md", + "ION/00_BOOTSTRAP/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_LOCK.md", + "ION/00_BOOTSTRAP/V52_LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_LOCK.md", + "ION/00_BOOTSTRAP/V53_LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_LOCK.md", + "ION/00_BOOTSTRAP/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_LOCK.md", + "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_LOCK.md", + "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_LOCK.md", + "ION/00_BOOTSTRAP/V56_ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACTS_LOCK.md", + "ION/00_BOOTSTRAP/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_LOCK.md", + "ION/00_BOOTSTRAP/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING_LOCK.md", + "ION/00_BOOTSTRAP/V57_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V58_BUDGET_AND_API_RATE_GOVERNORS_LOCK.md", + "ION/00_BOOTSTRAP/V58_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V59_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V60_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_LOCK.md", + "ION/00_BOOTSTRAP/V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_LOCK.md", + "ION/00_BOOTSTRAP/V63_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V63_ION_MCP_MOUNT_AND_ACCOUNT_CONNECTION_PROTOCOL_LOCK.md", + "ION/00_BOOTSTRAP/V64_LOCAL_MCP_BRIDGE_LOCK.md", + "ION/00_BOOTSTRAP/V64_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_LOCK.md", + "ION/00_BOOTSTRAP/V65_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V66_LOCAL_MCP_SDK_COMPATIBILITY_AND_CLIENT_CERTIFICATION_LOCK.md", + "ION/00_BOOTSTRAP/V66_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V67_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_LOCK.md", + "ION/00_BOOTSTRAP/V68_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V69_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_LOCK.md", + "ION/00_BOOTSTRAP/V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_LOCK.md", + "ION/00_BOOTSTRAP/V70_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_LOCK.md", + "ION/00_BOOTSTRAP/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_LOCK.md", + "ION/00_BOOTSTRAP/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_LOCK.md", + "ION/00_BOOTSTRAP/V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_LOCK.md", + "ION/00_BOOTSTRAP/V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_LOCK.md", + "ION/00_BOOTSTRAP/V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_LOCK.md", + "ION/01_doctrine/CANONICAL_WORKFLOW.md", + "ION/01_doctrine/MAINTAINED_WORK_SURFACE_CANON.md", + "ION/01_doctrine/README.md", + "ION/01_doctrine/SOVEREIGN_CONSTITUTION.md", + "ION/01_doctrine/SOVEREIGN_KERNEL.md", + "ION/02_architecture/ACTIVATION_AUTHORITY_PROTOCOL.md", + "ION/02_architecture/ACTIVATION_SUMMARY_HANDOFF_CAPSULE_MATERIALIZATION_PROTOCOL.md", + "ION/02_architecture/ACTIVE_SURFACE_RETIREMENT_PROTOCOL.md", + "ION/02_architecture/AGENT_GRAPH_CUSTODIAN_AND_SUBSPECIALIST_FANOUT_PROTOCOL.md", + "ION/02_architecture/AGENT_REASONING_PROTOCOL.md", + "ION/02_architecture/AGENT_SELF_SURFACE_PROTOCOL.md", + "ION/02_architecture/AGENT_SUCCESSION_PACKET_PROTOCOL.md", + "ION/02_architecture/AGENT_SUCCESSION_PROTOCOL.md", + "ION/02_architecture/API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.md", + "ION/02_architecture/API_RATE_GOVERNOR_AND_PROVIDER_LIMIT_PROTOCOL.md", + "ION/02_architecture/API_RUNTIME_ENTRY_PROTOCOL.md", + "ION/02_architecture/APPROVED_CONTEXT_INDEX_PROTOCOL.md", + "ION/02_architecture/ARCHAEOLOGY_DAEMON_CONTRACT.md", + "ION/02_architecture/ARCHAEOLOGY_DAEMON_PROTOCOL.md", + "ION/02_architecture/AUTOMATION_STATE_PROTOCOL.md", + "ION/02_architecture/BATCH_AND_BACKGROUND_MODEL_EXECUTION_PROTOCOL.md", + "ION/02_architecture/BOUNDED_MULTI_AGENT_ALLOCATOR_PROTOCOL.md", + "ION/02_architecture/BOUNDED_PARALLELISM_AND_SETTLEMENT_PROTOCOL.md", + "ION/02_architecture/BRANCH_BUDGET_RECURSION_AND_DRIFT_CONTROL_PROTOCOL.md", + "ION/02_architecture/BRANCH_HORIZON_SCHEDULE_SYNCHRONIZATION_PROTOCOL.md", + "ION/02_architecture/BRANCH_RESCHEDULING_AND_REBINDING_PROTOCOL.md", + "ION/02_architecture/BRIDGE_PACKET_STATUS_CLARIFICATION.md", + "ION/02_architecture/BUDGET_AND_API_RATE_GOVERNORS_PROTOCOL.md", + "ION/02_architecture/CANON_PROMOTION_AND_RATIFICATION_PROTOCOL.md", + "ION/02_architecture/CHILD_WORK_OPERATIONALIZATION_PROTOCOL.md", + "ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md", + "ION/02_architecture/CODEX_EXTENSION_CARRIER_PROTOCOL.md", + "ION/02_architecture/CODEX_LEAD_ORCHESTRATION_PROTOCOL.md", + "ION/02_architecture/CONJUGATE_DAIMON_PROTOCOL.md", + "ION/02_architecture/CONSTITUTIONAL_AMENDMENT_PROTOCOL.md", + "ION/02_architecture/CONTEXT_GRAPH_ONTOLOGY_ADAPTER_PROTOCOL.md", + "ION/02_architecture/CONTEXT_GRAPH_SUBSTRATE_PROTOCOL.md", + "ION/02_architecture/CONTEXT_MODE_PROTOCOL.md", + "ION/02_architecture/CONTEXT_NODE_AND_PACKAGE_PROTOCOL.md", + "ION/02_architecture/CONTEXT_PERFECT_CONTINUATION_PROTOCOL.md", + "ION/02_architecture/CONTEXT_PLANES.md", + "ION/02_architecture/CONTINUITY_ARCHITECTURE.md", + "ION/02_architecture/CONTINUITY_OF_SELF_VS_CONTINUITY_OF_TASK_PROTOCOL.md", + "ION/02_architecture/CONTRACT_BOUND_EVENT_INTEGRATION_PROTOCOL.md", + "ION/02_architecture/CONTRACT_BOUND_EVENT_RUNTIME_PROTOCOL.md", + "ION/02_architecture/CONVERSATIONAL_RECEIPT_AND_LIVE_REPAIR_PROTOCOL.md", + "ION/02_architecture/COST_QUALITY_MARGIN_ROUTING_PROTOCOL.md", + "ION/02_architecture/CROSS_MODEL_AUDIT_AND_CONSENSUS_PROTOCOL.md", + "ION/02_architecture/DEMO_SPINE_BRANCH_CONSOLIDATION_PROTOCOL.md", + "ION/02_architecture/DISAGREEMENT_ESCALATION_PROTOCOL.md", + "ION/02_architecture/DOCTRINE_EVOLUTION_PROTOCOL.md", + "ION/02_architecture/DRIFT_OF_SELF_PROTOCOL.md", + "ION/02_architecture/EVENTED_TEMPLATE_FILE_GRAPH_PROTOCOL.md", + "ION/02_architecture/EXECUTOR_CAPABILITY_REGISTRY_PROTOCOL.md", + "ION/02_architecture/EXECUTOR_FLEET_LIFECYCLE_PROTOCOL.md", + "ION/02_architecture/EXECUTOR_LIFECYCLE_PROTOCOL.md", + "ION/02_architecture/EXECUTOR_WORK_CLOSURE_BINDING_PROTOCOL.md", + "ION/02_architecture/EXECUTOR_WORK_LIFECYCLE_BINDING_PROTOCOL.md", + "ION/02_architecture/EXPRESSIVE_TELEMETRY_AND_AFFECT_INTEGRITY_PROTOCOL.md", + "ION/02_architecture/EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_PROTOCOL.md", + "ION/02_architecture/EXTERNAL_EXECUTION_MCP_BRIDGE_PROTOCOL.md", + "ION/02_architecture/EXTERNAL_ZIP_RETURN_BRIDGE_PROTOCOL.md", + "ION/02_architecture/FAN_IN_MERGE_REVIEW_SETTLEMENT_PROTOCOL.md", + "ION/02_architecture/FLEET_EXECUTOR_CAPABILITY_BINDING_PROTOCOL.md", + "ION/02_architecture/FRONT_DOOR_CHAT_ORCHESTRATION_ADAPTER_PROTOCOL.md", + "ION/02_architecture/FRONT_DOOR_PERSONA_RELAY_STEWARD_BOUNDARY_PROTOCOL.md", + "ION/02_architecture/FRONT_DOOR_RUNTIME_ENTRY_PROTOCOL.md", + "ION/02_architecture/FRONT_DOOR_SELF_MOUNT_BINDING_PROTOCOL.md", + "ION/02_architecture/FRONT_STAGE_COUNCIL_PROTOCOL.md", + "ION/02_architecture/FRONT_STAGE_COUNCIL_RUNTIME_RECEIPT_PROTOCOL.md", + "ION/02_architecture/GPT55_SELF_MOUNT_CHARTER.md", + "ION/02_architecture/GRAPH_REACTION_REGISTRY_PROTOCOL.md", + "ION/02_architecture/GRAPH_WRITEBACK_AND_RECEIPT_PROTOCOL.md", + "ION/02_architecture/HANDOFF_CAPSULE_EXECUTOR_ENTRY_REHEARSAL_PROTOCOL.md", + "ION/02_architecture/HANDOFF_TAKEOVER_NORMALIZATION_PROTOCOL.md", + "ION/02_architecture/HORIZON_ENACTMENT_RECEIPT_PROTOCOL.md", + "ION/02_architecture/HORIZON_ORCHESTRATION_PROTOCOL.md", + "ION/02_architecture/HORIZON_PACKET_ENACTMENT_PROTOCOL.md", + "ION/02_architecture/HORIZON_STATE_AND_TIGHTENING_PROTOCOL.md", + "ION/02_architecture/HORIZON_TO_EXECUTION_WORKFLOW_REHEARSAL_PROTOCOL.md", + "ION/02_architecture/INGRESS_AUTHORITY_RESOLUTION_PROTOCOL.md", + "ION/02_architecture/INTELLIGENT_DOMAIN_PROTOCOL.md", + "ION/02_architecture/ION_ACCOUNT_WORKSPACE_AND_STATE_ROOT_PROTOCOL.md", + "ION/02_architecture/ION_AGENT_CONTEXT_CONTINUITY_TIMELINE_AND_ROUTE_MAP_PROTOCOL.md", + "ION/02_architecture/ION_AGENT_CONTEXT_DYNAMICS_AND_CONTEXT_WINDOW_PROTOCOL.md", + "ION/02_architecture/ION_AGENT_CONTEXT_SYSTEMS_PROTOCOL.md", + "ION/02_architecture/ION_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_PROTOCOL.md", + "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md", + "ION/02_architecture/ION_CARRIER_CYCLE_PLAN_PROTOCOL.md", + "ION/02_architecture/ION_CARRIER_ONBOARDING_AUTHORITY_PROTOCOL.md", + "ION/02_architecture/ION_CARRIER_RUNTIME_FOUNDATION_PROTOCOL.md", + "ION/02_architecture/ION_CARRIER_TASK_RETURN_INTAKE_PROTOCOL.md", + "ION/02_architecture/ION_CARRIER_TO_CARRIER_COMMUNICATION_PROTOCOL.md", + "ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md", + "ION/02_architecture/ION_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_CHATGPT_BROWSER_MCP_CONNECTOR_PROTOCOL.md", + "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md", + "ION/02_architecture/ION_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_PROTOCOL.md", + "ION/02_architecture/ION_CONTEXT_AUTHORITY_TEAM_PROTOCOL.md", + "ION/02_architecture/ION_CONTEXT_METABOLISM_AND_LIFECYCLE_PROTOCOL.md", + "ION/02_architecture/ION_CORE_TELEMETRY_TRIAD_PROTOCOL.md", + "ION/02_architecture/ION_CURSOR_AUTOPILOT_COMMAND_AND_SUBAGENT_PROTOCOL.md", + "ION/02_architecture/ION_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_PROTOCOL.md", + "ION/02_architecture/ION_CURSOR_CARRIER_CONTINUATION_WORKFLOW_PROTOCOL.md", + "ION/02_architecture/ION_CURSOR_COCKPIT_EXTENSION_PROTOCOL.md", + "ION/02_architecture/ION_CURSOR_FULL_WORKFLOW_MOUNT_PROTOCOL.md", + "ION/02_architecture/ION_CURSOR_SDK_HOOK_BRIDGE_PROTOCOL.md", + "ION/02_architecture/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_SYSTEM_TELEMETRY_PROTOCOL.md", + "ION/02_architecture/ION_DEFAULT_CARRIER_ONBOARDING_PROTOCOL.md", + "ION/02_architecture/ION_FILE_RECORD_SCHEMA_PROTOCOL.md", + "ION/02_architecture/ION_FRONT_DOOR_AUTONOMOUS_TEAM_WORKFLOW_PROTOCOL.md", + "ION/02_architecture/ION_FULL_CARRIER_MCP_PARITY_PROTOCOL.md", + "ION/02_architecture/ION_FULL_OPERATIONALIZATION_AND_TESTING_PROTOCOL.md", + "ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md", + "ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md", + "ION/02_architecture/ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACT_PROTOCOL.md", + "ION/02_architecture/ION_JOC_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_JOC_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_PROTOCOL.md", + "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_PROTOCOL.md", + "ION/02_architecture/ION_JOC_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_JOC_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_LEGACY_CLOUDFLARE_TUNNEL_REUSE_PROTOCOL.md", + "ION/02_architecture/ION_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_PROTOCOL.md", + "ION/02_architecture/ION_LIVING_ENCYCLOPEDIA_MAINTENANCE_PROTOCOL.md", + "ION/02_architecture/ION_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_PROTOCOL.md", + "ION/02_architecture/ION_LOCAL_MCP_BRIDGE_TO_KERNEL_AND_DAEMON_PROTOCOL.md", + "ION/02_architecture/ION_MCP_CONTROL_BRIDGE_PROTOCOL.md", + "ION/02_architecture/ION_MCP_FRONT_DOOR_AND_MOUNT_SESSION_PROTOCOL.md", + "ION/02_architecture/ION_MOUNT_CONTRACT.md", + "ION/02_architecture/ION_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_PROTOCOL.md", + "ION/02_architecture/ION_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_PROTOCOL.md", + "ION/02_architecture/ION_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_PROTOCOL.md", + "ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md", + "ION/02_architecture/ION_PRODUCTIZED_RUNTIME_BOUNDARY_PROTOCOL.md", + "ION/02_architecture/ION_SELF_MOUNT_COMPLETION_ROADMAP.md", + "ION/02_architecture/ION_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_PROTOCOL.md", + "ION/02_architecture/ION_V64_LOCAL_MCP_BRIDGE_EXECUTION_HORIZON_PROTOCOL.md", + "ION/02_architecture/ION_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_PROTOCOL.md", + "ION/02_architecture/ION_V66_LOCAL_MCP_CLIENT_CERTIFICATION_PROTOCOL.md", + "ION/02_architecture/ION_V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_PROTOCOL.md", + "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_PROTOCOL.md", + "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_EXECUTION_HORIZON_PROTOCOL.md", + "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_PROTOCOL.md", + "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_PROTOCOL.md", + "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_PROTOCOL.md", + "ION/02_architecture/ION_V72_MCP_DONOR_RECONCILIATION_PROTOCOL.md", + "ION/02_architecture/LAWFUL_ORCHESTRATION_SCHEDULER_PROTOCOL.md", + "ION/02_architecture/LIVE_PERSONA_LATENCY_AND_PROVISIONAL_UTTERANCE_PROTOCOL.md", + "ION/02_architecture/LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_PROTOCOL.md", + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_PROTOCOL.md", + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_PROTOCOL.md", + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_PROTOCOL.md", + "ION/02_architecture/LOCAL_MODEL_AND_PRIVATE_EXECUTION_LANE_PROTOCOL.md", + "ION/02_architecture/LOCAL_VISUAL_HARNESS_PROTOTYPE_PROTOCOL.md", + "ION/02_architecture/MANIFEST_AND_ROUTE_STATE_PROTOCOL.md", + "ION/02_architecture/MANUAL_AUTOMATION_EQUIVALENCE_PROTOCOL.md", + "ION/02_architecture/MANUAL_AUTOMATION_FALLBACK_PROTOCOL.md", + "ION/02_architecture/META_TEMPLATE_CONSTITUTION_PROTOCOL.md", + "ION/02_architecture/MODEL_CALL_RECEIPT_PROTOCOL.md", + "ION/02_architecture/MODEL_ROUTER_AND_COST_QUALITY_ROUTING_PROTOCOL.md", + "ION/02_architecture/MODEL_ROUTING_AND_PROVIDER_ECONOMICS_PROTOCOL.md", + "ION/02_architecture/MOUNTED_AGENT_IDENTITY_SCHEMA_PROTOCOL.md", + "ION/02_architecture/MULTI_CHAT_COORDINATION.md", + "ION/02_architecture/NAME_LINEAGE_REGISTRY_PROTOCOL.md", + "ION/02_architecture/OPERATIONAL_HARDENING_PROTOCOL.md", + "ION/02_architecture/OPERATOR_CONTROL_PROTOCOL.md", + "ION/02_architecture/OPERATOR_DELEGATION_AND_NON_MEDDLING_PROTOCOL.md", + "ION/02_architecture/OPERATOR_ENTRY_SURFACE_PROTOCOL.md", + "ION/02_architecture/ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md", + "ION/02_architecture/PACKET_AND_HANDOFF_STANDARDIZATION_PROTOCOL.md", + "ION/02_architecture/PERSONA_CONTEXT_BUDGET_AND_HORIZON_PROTOCOL.md", + "ION/02_architecture/PRODUCTION_RATIFICATION_MATRIX_PROTOCOL.md", + "ION/02_architecture/PRODUCTION_READINESS_GAP_REGISTER.md", + "ION/02_architecture/PRODUCT_READINESS_CHARTER.md", + "ION/02_architecture/RANK_AND_PRECEDENCE_PROTOCOL.md", + "ION/02_architecture/RECOVERY_AND_REPLAY_PROTOCOL.md", + "ION/02_architecture/RELEASE_READINESS_GATE_PROTOCOL.md", + "ION/02_architecture/REPRESENTATIONAL_INTEGRITY_PROTOCOL.md", + "ION/02_architecture/ROLE_CHASSIS_MOUNT_PROTOCOL.md", + "ION/02_architecture/ROLE_MIXING_AND_ROLE_SPLIT_GUARD_PROTOCOL.md", + "ION/02_architecture/ROOT_INVARIANT_RESTORATION_PROTOCOL.md", + "ION/02_architecture/RUNTIME_IDENTITY_ENVELOPE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_ANCHOR_NORMALIZATION_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_ARTIFACT_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_FAMILY_SUMMARY_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TEMPORAL_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_COMPARISON_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_BROWSER_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_COMPARATIVE_PROVENANCE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_CROSSLINK_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_BROWSER_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_CATALOG_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_DIGEST_REVERSE_TRACE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_FAMILY_SUMMARY_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_AGGREGATION_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_NAVIGATION_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_OPERATOR_DIGEST_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_PROFILE_DIGEST_TRACE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_PROVENANCE_TRACE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_TEMPORAL_PROVENANCE_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_TRIGGER_PROTOCOL.md", + "ION/02_architecture/RUNTIME_REPORT_VISIBILITY_PROTOCOL.md", + "ION/02_architecture/RUNTIME_SESSION_AUTHORITY_PROTOCOL.md", + "ION/02_architecture/RUNTIME_STATE_BINDING_PROTOCOL.md", + "ION/02_architecture/RUNTIME_STATE_QUERY_PROTOCOL.md", + "ION/02_architecture/RUNTIME_STATE_REPORTING_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_COMPLETION_AND_ASSIGNMENT_RELEASE_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_DISPATCH_AND_ASSIGNMENT_RECONCILIATION_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_LINEAGE_AND_SUPERSESSION_ARCHIVAL_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_LINEAGE_REPLAY_AND_ACTIVE_CYCLE_RECONSTRUCTION_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_RESUME_BUNDLE_MATERIALIZATION_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_RESUME_PROJECTION_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_SETTLEMENT_AND_FUTURE_REENTRY_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_STALE_RETRY_AND_REASSIGNMENT_PROTOCOL.md", + "ION/02_architecture/SCHEDULE_TAKEOVER_ENTRY_ACTIVATION_VALIDATION_PROTOCOL.md", + "ION/02_architecture/SELF_DOCUMENTATION_EVENT_PIPELINE_PROTOCOL.md", + "ION/02_architecture/SELF_DOCUMENTING_CONTEXT_GRAPH_PROTOCOL.md", + "ION/02_architecture/SELF_MODIFICATION_REVIEW_PROTOCOL.md", + "ION/02_architecture/SELF_MOUNT_FRONT_DOOR_BINDING_PROTOCOL.md", + "ION/02_architecture/SELF_MOUNT_GRAPH_INTEGRATION_PROTOCOL.md", + "ION/02_architecture/SELF_SURFACE_DRIFT_GATE_PROTOCOL.md", + "ION/02_architecture/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.md", + "ION/02_architecture/SINGLE_CARRIER_FULL_SPECTRUM_CHAT_PROTOCOL.md", + "ION/02_architecture/SOVEREIGN_RELAY_PROTOCOL.md", + "ION/02_architecture/STALE_NAME_DETECTION_PROTOCOL.md", + "ION/02_architecture/STEWARD_CURRENT_PHASE_ORCHESTRATION_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_BOUNDED_COMMIT_DEMO_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_CERTIFICATION_GATE_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_EVIDENCE_BUNDLE_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_CAPSULE_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_VERIFIER_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_CLI_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_DOCTOR_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RUNTIME_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_GRAPH_PROPOSAL_DEMO_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_PROJECTION_DEMO_PROTOCOL.md", + "ION/02_architecture/SUMMARY_REFRESH_REVIEW_DEMO_PROTOCOL.md", + "ION/02_architecture/SUPERVISED_AUTOMATION_POLICY_PROTOCOL.md", + "ION/02_architecture/SUPERVISED_DAEMON_SERVICE_PROTOCOL.md", + "ION/02_architecture/SYSTEM_CARD_AND_DOMAIN_MAP_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_BINDING_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_WITNESS_PHASE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_COMPLETION_WATCHER_AND_INDEXER_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_CONTRACT_PROJECTION_ALIGNMENT_AUDIT_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_CONTRACT_REGISTRY_PROJECTION_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_CONTRACT_RELEASE_GATE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_EVENT_REACTION_PIPELINE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_GRAPH_COMMIT_PHASE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_PROPOSAL_PHASE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_REVIEW_PHASE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_INDEX_PROJECTION_PHASE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_METADATA_CONTRACT_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_REACTION_SELECTION_WITNESS_PHASE_PROTOCOL.md", + "ION/02_architecture/TEMPLATE_SURFACE_EVOLUTION_PROTOCOL.md", + "ION/02_architecture/TEMPORAL_CONTEXT_LEASE_PROTOCOL.md", + "ION/02_architecture/TEMPORAL_OBJECT_SCHEMA.md", + "ION/02_architecture/TRIPLE_TIME_RECONCILIATION_PROTOCOL.md", + "ION/02_architecture/TRUE_NAME_AND_SEMANTIC_LAYER_PROTOCOL.md", + "ION/02_architecture/VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_PROTOCOL.md", + "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_PROTOCOL.md", + "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_PROTOCOL.md", + "ION/02_architecture/VISUAL_DIAGNOSIS_RECEIPT_AND_BROWSER_HARNESS_PROTOCOL.md", + "ION/02_architecture/VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_PROTOCOL.md", + "ION/02_architecture/VISUAL_OBSERVATION_PACKET_PROTOCOL.md", + "ION/02_architecture/VISUAL_PERCEPTION_AND_INTERACTION_AGENT_PROTOCOL.md", + "ION/02_architecture/VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_PROTOCOL.md", + "ION/02_architecture/VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_PROTOCOL.md", + "ION/02_architecture/WORKING_AGENT_SELF_USE_PROTOCOL.md", + "ION/03_registry/agent_context_dynamics_registry.yaml", + "ION/03_registry/agent_context_system_registry.yaml", + "ION/03_registry/agent_roster_registry.yaml", + "ION/03_registry/agent_succession_packet.schema.json", + "ION/03_registry/api_rate_governor_decision.schema.json", + "ION/03_registry/approved_context_index.yaml", + "ION/03_registry/authority_lineage_registry.json", + "ION/03_registry/boots/ATLAS.boot.md", + "ION/03_registry/boots/CANON_LIBRARIAN.boot.md", + "ION/03_registry/boots/CODEX.boot.md", + "ION/03_registry/boots/CONTEXT_CARTOGRAPHER.boot.md", + "ION/03_registry/boots/IONOLOGIST.boot.md", + "ION/03_registry/boots/MASON.boot.md", + "ION/03_registry/boots/NEMESIS.boot.md", + "ION/03_registry/boots/PERSONA_INTERFACE.boot.md", + "ION/03_registry/boots/RELAY.boot.md", + "ION/03_registry/boots/RUNTIME_CARTOGRAPHER.boot.md", + "ION/03_registry/boots/SCRIBE.boot.md", + "ION/03_registry/boots/STEWARD.boot.md", + "ION/03_registry/boots/TEMPLATE_CURATOR.boot.md", + "ION/03_registry/boots/THOTH.boot.md", + "ION/03_registry/boots/VESTIGE.boot.md", + "ION/03_registry/boots/VICE.boot.md", + "ION/03_registry/boots/VIZIER.boot.md", + "ION/03_registry/boots/VIZIER_DAIMON_GPT.boot.md", + "ION/03_registry/boots/VIZIER_DAIMON_OPUS.boot.md", + "ION/03_registry/branch_consolidation_ui_model_governor_binding.schema.json", + "ION/03_registry/branch_consolidation_ui_model_governor_policy.yaml", + "ION/03_registry/budget_governor_decision.schema.json", + "ION/03_registry/budget_policy.yaml", + "ION/03_registry/capabilities/capability_registry.json", + "ION/03_registry/carrier_capability_registry.yaml", + "ION/03_registry/chatgpt_browser_carrier_profile.yaml", + "ION/03_registry/codex_cli_carrier_profile.yaml", + "ION/03_registry/codex_extension_carrier_profile.yaml", + "ION/03_registry/context_graph_edge_class_registry.yaml", + "ION/03_registry/context_graph_node_class_registry.yaml", + "ION/03_registry/context_graph_region_registry.yaml", + "ION/03_registry/context_graph_substrate_registry.yaml", + "ION/03_registry/context_lifecycle_policy.yaml", + "ION/03_registry/conversational_receipt.schema.json", + "ION/03_registry/current_phase_template_surface_registry.yaml", + "ION/03_registry/cursor_subagent_role_mount.schema.json", + "ION/03_registry/daimon_matrix.yaml", + "ION/03_registry/doctrine_evolution_registry.yaml", + "ION/03_registry/domain_map_registry.yaml", + "ION/03_registry/domains/README.md", + "ION/03_registry/domains/activation_witness/2026-04-07_confidence_drift_review.activation.yaml", + "ION/03_registry/domains/activation_witness/2026-04-07_construction_routing_integration.activation.yaml", + "ION/03_registry/domains/activation_witness/2026-04-07_continuity_context_resumability.activation.yaml", + "ION/03_registry/domains/activation_witness/2026-04-12_current_phase_orchestration_management.activation.yaml", + "ION/03_registry/domains/activation_witness/2026-04-22_archaeology_drift_watch.activation.yaml", + "ION/03_registry/domains/activation_witness/2026-04-22_communications_packet_relay.activation.yaml", + "ION/03_registry/domains/domain.archaeology_drift_watch.domain.yaml", + "ION/03_registry/domains/domain.communications_packet_relay.domain.yaml", + "ION/03_registry/domains/domain.confidence_drift_review.domain.yaml", + "ION/03_registry/domains/domain.construction_routing_integration.domain.yaml", + "ION/03_registry/domains/domain.continuity_context_resumability.domain.yaml", + "ION/03_registry/domains/domain.current_phase_orchestration_management.domain.yaml", + "ION/03_registry/domains/domain.user_persona_interface.domain.yaml", + "ION/03_registry/expressive_telemetry_policy.yaml", + "ION/03_registry/expressive_telemetry_runtime.schema.json", + "ION/03_registry/expressive_telemetry_runtime_policy.yaml", + "ION/03_registry/front_door_self_mount_binding.schema.json", + "ION/03_registry/front_stage_council_policy.yaml", + "ION/03_registry/front_stage_council_receipt.schema.json", + "ION/03_registry/front_stage_council_runtime_policy.yaml", + "ION/03_registry/gpt55_agent_succession_policy.yaml", + "ION/03_registry/gpt55_front_door_self_mount_binding_policy.yaml", + "ION/03_registry/gpt55_runtime_identity_mount_registry.yaml", + "ION/03_registry/gpt55_self_mount_graph_registry.yaml", + "ION/03_registry/gpt55_self_mount_registry.yaml", + "ION/03_registry/gpt55_self_surface_drift_policy.yaml", + "ION/03_registry/graph_reaction_registry.yaml", + "ION/03_registry/ion_chatgpt_browser_cloudflare_tunnel.schema.json", + "ION/03_registry/ion_chatgpt_browser_http_mcp_preview.schema.json", + "ION/03_registry/ion_chatgpt_browser_mcp_connector.schema.json", + "ION/03_registry/ion_chatgpt_browser_mcp_tool_policy.yaml", + "ION/03_registry/ion_chatops_action.schema.yaml", + "ION/03_registry/ion_chatops_extension_policy.yaml", + "ION/03_registry/ion_chatops_local_daemon_policy.yaml", + "ION/03_registry/ion_context_authority_team_registry.yaml", + "ION/03_registry/ion_cursor_hook_state.schema.json", + "ION/03_registry/ion_file_record_schema.yaml", + "ION/03_registry/ion_front_door_proof_trace.schema.json", + "ION/03_registry/ion_github_data_plane_registry.yaml", + "ION/03_registry/ion_lane_timeline_view_model.schema.json", + "ION/03_registry/ion_lifecycle_package_manifest.schema.json", + "ION/03_registry/ion_mcp_capability_scope_policy.yaml", + "ION/03_registry/ion_mcp_client_certification_policy.yaml", + "ION/03_registry/ion_mcp_client_certification_report.schema.json", + "ION/03_registry/ion_mcp_client_config_policy.yaml", + "ION/03_registry/ion_mcp_hosted_alpha_boundary_report.schema.json", + "ION/03_registry/ion_mcp_hosted_auth_alpha_policy.yaml", + "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_policy.yaml", + "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_report.schema.json", + "ION/03_registry/ion_mcp_hosted_http_alpha_boundary_report.schema.json", + "ION/03_registry/ion_mcp_hosted_oauth_http_preview_policy.yaml", + "ION/03_registry/ion_mcp_hosted_oauth_http_preview_report.schema.json", + "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_policy.yaml", + "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_report.schema.json", + "ION/03_registry/ion_mcp_local_bridge_tool_policy.yaml", + "ION/03_registry/ion_mcp_local_bridge_tool_result.schema.json", + "ION/03_registry/ion_mcp_local_smoke_report.schema.json", + "ION/03_registry/ion_mcp_mount_session.schema.json", + "ION/03_registry/ion_mcp_sdk_wrapper_boundary_policy.yaml", + "ION/03_registry/ion_mcp_transport_preview_policy.yaml", + "ION/03_registry/ion_mcp_transport_preview_report.schema.json", + "ION/03_registry/ion_operational_readiness_gate_policy.yaml", + "ION/03_registry/ion_receipt_hydration_view_model.schema.json", + "ION/03_registry/ion_runtime_debug_overlay.schema.json", + "ION/03_registry/ion_trunk_preservation_policy.yaml", + "ION/03_registry/ion_trunk_preservation_report.schema.json", + "ION/03_registry/ion_v72_mcp_donor_reconciliation_audit.schema.json", + "ION/03_registry/joc_cockpit_component_contract.schema.json", + "ION/03_registry/joc_cockpit_layout_manifest.yaml", + "ION/03_registry/joc_cognitive_explorer_policy.yaml", + "ION/03_registry/joc_cognitive_explorer_route_view_model.schema.json", + "ION/03_registry/joc_dispatch_authorization_policy.yaml", + "ION/03_registry/joc_dispatch_authorization_view_model.schema.json", + "ION/03_registry/joc_dry_run_dispatch_trace_policy.yaml", + "ION/03_registry/joc_dry_run_dispatch_trace_view_model.schema.json", + "ION/03_registry/joc_export_handoff_manifest_policy.yaml", + "ION/03_registry/joc_export_handoff_manifest_view_model.schema.json", + "ION/03_registry/joc_handoff_package_assembly_policy.yaml", + "ION/03_registry/joc_handoff_package_assembly_view_model.schema.json", + "ION/03_registry/joc_mission_dispatch_route_policy.yaml", + "ION/03_registry/joc_mission_dispatch_route_view_model.schema.json", + "ION/03_registry/joc_operator_approval_policy.yaml", + "ION/03_registry/joc_operator_approval_queue.schema.json", + "ION/03_registry/joc_provider_adapter_readiness_policy.yaml", + "ION/03_registry/joc_provider_adapter_readiness_view_model.schema.json", + "ION/03_registry/joc_reactive_os_stream_policy.yaml", + "ION/03_registry/joc_reactive_os_stream_view_model.schema.json", + "ION/03_registry/joc_release_candidate_preview_policy.yaml", + "ION/03_registry/joc_release_candidate_preview_view_model.schema.json", + "ION/03_registry/joc_result_save_proposal_policy.yaml", + "ION/03_registry/joc_result_save_proposal_view_model.schema.json", + "ION/03_registry/joc_synthetic_response_capture_policy.yaml", + "ION/03_registry/joc_synthetic_response_capture_view_model.schema.json", + "ION/03_registry/joc_synthetic_synthesis_route_policy.yaml", + "ION/03_registry/joc_synthetic_synthesis_route_view_model.schema.json", + "ION/03_registry/live_persona_latency_policy.yaml", + "ION/03_registry/live_repair_policy.yaml", + "ION/03_registry/local_browser_capture_adapter.schema.json", + "ION/03_registry/local_browser_capture_adapter_policy.yaml", + "ION/03_registry/local_browser_execution_harness.schema.json", + "ION/03_registry/local_browser_execution_harness_policy.yaml", + "ION/03_registry/local_browser_execution_run_receipt.schema.json", + "ION/03_registry/local_browser_execution_run_receipt_policy.yaml", + "ION/03_registry/local_browser_execution_sandbox_spec.schema.json", + "ION/03_registry/local_browser_execution_sandbox_spec_policy.yaml", + "ION/03_registry/local_visual_harness.schema.json", + "ION/03_registry/local_visual_harness_policy.yaml", + "ION/03_registry/maintained_work_surface.schema.json", + "ION/03_registry/maintained_work_surface_canon.yaml", + "ION/03_registry/mcp_full_carrier_tool_registry.yaml", + "ION/03_registry/model_capability_registry.yaml", + "ION/03_registry/model_data_handling_registry.yaml", + "ION/03_registry/model_economics_implementation_schedule.yaml", + "ION/03_registry/model_economics_registry_skeleton_report.schema.json", + "ION/03_registry/model_eval_score_registry.yaml", + "ION/03_registry/model_pricing_registry.yaml", + "ION/03_registry/model_rate_limit_registry.yaml", + "ION/03_registry/model_route_decision.schema.json", + "ION/03_registry/model_routing_policy.yaml", + "ION/03_registry/mounted_agent_identity.schema.json", + "ION/03_registry/name_lineage_registry.yaml", + "ION/03_registry/provider_registry.yaml", + "ION/03_registry/reintegration/README.md", + "ION/03_registry/reintegration/authority_registry.yaml", + "ION/03_registry/reintegration/canonicalization_queue.yaml", + "ION/03_registry/reintegration/duplicate_competition_registry.yaml", + "ION/03_registry/reintegration/lineage_registry.yaml", + "ION/03_registry/reintegration/root_manifest.yaml", + "ION/03_registry/retrieval_zone_registry.yaml", + "ION/03_registry/runtime_identity_envelope.schema.json", + "ION/03_registry/self_documentation_watch_registry.yaml", + "ION/03_registry/self_mount_graph_integration.schema.json", + "ION/03_registry/self_surface_drift_gate.schema.json", + "ION/03_registry/semantic_identities/CANON_LIBRARIAN.semantic.yaml", + "ION/03_registry/semantic_identities/CODEX.semantic.yaml", + "ION/03_registry/semantic_identities/CONTEXT_CARTOGRAPHER.semantic.yaml", + "ION/03_registry/semantic_identities/IONOLOGIST.semantic.yaml", + "ION/03_registry/semantic_identities/NEMESIS.semantic.yaml", + "ION/03_registry/semantic_identities/PERSONA_INTERFACE.semantic.yaml", + "ION/03_registry/semantic_identities/README.md", + "ION/03_registry/semantic_identities/RELAY.semantic.yaml", + "ION/03_registry/semantic_identities/RUNTIME_CARTOGRAPHER.semantic.yaml", + "ION/03_registry/semantic_identities/STEWARD.semantic.yaml", + "ION/03_registry/semantic_identities/TEMPLATE_CURATOR.semantic.yaml", + "ION/03_registry/semantic_identities/VESTIGE.semantic.yaml", + "ION/03_registry/semantic_identities/VICE.semantic.yaml", + "ION/03_registry/semantic_identities/VIZIER.semantic.yaml", + "ION/03_registry/system_card_registry.yaml", + "ION/03_registry/template_completion_watch_registry.yaml", + "ION/03_registry/template_metadata_contract_registry.projection.json", + "ION/03_registry/template_metadata_contract_registry.yaml", + "ION/03_registry/ui_work_surface_projection.schema.json", + "ION/03_registry/ui_work_surface_projection_policy.yaml", + "ION/03_registry/visual_before_after_verification.schema.json", + "ION/03_registry/visual_before_after_verification_policy.yaml", + "ION/03_registry/visual_browser_harness_plan.schema.json", + "ION/03_registry/visual_closure_graph_projection.schema.json", + "ION/03_registry/visual_closure_graph_projection_policy.yaml", + "ION/03_registry/visual_diagnosis_policy.yaml", + "ION/03_registry/visual_diagnosis_receipt.schema.json", + "ION/03_registry/visual_fixture_runner_sandbox_review.schema.json", + "ION/03_registry/visual_fixture_runner_sandbox_review_policy.yaml", + "ION/03_registry/visual_observation_packet.schema.json", + "ION/03_registry/visual_observation_policy.yaml", + "ION/03_registry/visual_perception_agent_policy.yaml", + "ION/03_registry/visual_regression_fixture_runner.schema.json", + "ION/03_registry/visual_regression_fixture_runner_policy.yaml", + "ION/03_registry/visual_run_receipt_to_diagnosis_binding.schema.json", + "ION/03_registry/visual_run_receipt_to_diagnosis_binding_policy.yaml", + "ION/03_registry/work_class_model_policy.yaml", + "ION/04_agents/AGENT_LIFECYCLE_PROTOCOL.md", + "ION/04_agents/AGENT_SPAWN_PROTOCOL.md", + "ION/04_agents/carriers/CARRIER_AGENT.boot.md", + "ION/04_agents/carriers/CARRIER_SESSION_PROTOCOL.md", + "ION/04_agents/carriers/CHATGPT_CARRIER.profile.md", + "ION/04_agents/carriers/CLAUDE_CARRIER.profile.md", + "ION/04_agents/carriers/CODEX_CARRIER.profile.md", + "ION/04_agents/carriers/CURSOR_CARRIER.profile.md", + "ION/04_agents/carriers/GEMINI_CARRIER.profile.md", + "ION/04_agents/carriers/MANUAL_CARRIER.profile.md", + "ION/04_agents/carriers/MCP_CARRIER.profile.md", + "ION/04_agents/carriers/META_CARRIER_EVOLUTION_PROTOCOL.md", + "ION/04_agents/carriers/carrier_registry.json", + "ION/04_packages/README.md", + "ION/04_packages/__init__.py", + "ION/04_packages/kernel/TEMPORAL_IMPLEMENTATION_STARTER_README.md", + "ION/04_packages/kernel/TEMPORAL_KERNEL_MODULE_PLAN.md", + "ION/04_packages/kernel/__init__.py", + "ION/04_packages/kernel/__main__.py", + "ION/04_packages/kernel/agent_self_surface.py", + "ION/04_packages/kernel/agent_succession_packet.py", + "ION/04_packages/kernel/allocator.py", + "ION/04_packages/kernel/api_rate_governor.py", + "ION/04_packages/kernel/api_runtime_entry.py", + "ION/04_packages/kernel/authority_lineage.py", + "ION/04_packages/kernel/automation_policy.py", + "ION/04_packages/kernel/automation_state.py", + "ION/04_packages/kernel/bootstrap_activation.py", + "ION/04_packages/kernel/bootstrap_bridge.py", + "ION/04_packages/kernel/bootstrap_init.py", + "ION/04_packages/kernel/branch_consolidation_ui_model_governor_binding.py", + "ION/04_packages/kernel/branch_controls.py", + "ION/04_packages/kernel/branch_horizon_sync.py", + "ION/04_packages/kernel/branch_rescheduling.py", + "ION/04_packages/kernel/budget_governor.py", + "ION/04_packages/kernel/capsule_manager.py", + "ION/04_packages/kernel/carrier_mount.py", + "ION/04_packages/kernel/child_work_service.py", + "ION/04_packages/kernel/children.py", + "ION/04_packages/kernel/commit.py", + "ION/04_packages/kernel/context_compiler.py", + "ION/04_packages/kernel/context_graph_ontology_adapter.py", + "ION/04_packages/kernel/continuation.py", + "ION/04_packages/kernel/contract_bound_event_runtime.py", + "ION/04_packages/kernel/conversational_receipt.py", + "ION/04_packages/kernel/cost_quality_router.py", + "ION/04_packages/kernel/cursor_subagent_ion_role_registry.py", + "ION/04_packages/kernel/daemon.py", + "ION/04_packages/kernel/daemon_actions.py", + "ION/04_packages/kernel/daemon_loop.py", + "ION/04_packages/kernel/daemon_service.py", + "ION/04_packages/kernel/dispatch.py", + "ION/04_packages/kernel/equivalence.py", + "ION/04_packages/kernel/execution.py", + "ION/04_packages/kernel/executor_registry.py", + "ION/04_packages/kernel/expressive_telemetry.py", + "ION/04_packages/kernel/external_execution_bridge.py", + "ION/04_packages/kernel/fleet_executor_capability_binding.py", + "ION/04_packages/kernel/fleet_executor_work_closure_binding.py", + "ION/04_packages/kernel/fleet_executor_work_lifecycle_binding.py", + "ION/04_packages/kernel/fleet_lifecycle_store.py", + "ION/04_packages/kernel/front_door_chat_orchestration.py", + "ION/04_packages/kernel/front_door_runtime_entry.py", + "ION/04_packages/kernel/front_door_self_mount_binding.py", + "ION/04_packages/kernel/front_stage_council_receipt.py", + "ION/04_packages/kernel/governed_write.py", + "ION/04_packages/kernel/graph.py", + "ION/04_packages/kernel/horizon_state.py", + "ION/04_packages/kernel/id_compaction.py", + "ION/04_packages/kernel/index.py", + "ION/04_packages/kernel/ion_active_state_integrity_audit.py", + "ION/04_packages/kernel/ion_agent_context_dynamics.py", + "ION/04_packages/kernel/ion_agent_context_system_audit.py", + "ION/04_packages/kernel/ion_agent_context_systems.py", + "ION/04_packages/kernel/ion_agent_invocation_broker.py", + "ION/04_packages/kernel/ion_autonomous_loop.py", + "ION/04_packages/kernel/ion_carrier_continue.py", + "ION/04_packages/kernel/ion_carrier_onboard.py", + "ION/04_packages/kernel/ion_carrier_onboarding_authority_audit.py", + "ION/04_packages/kernel/ion_carrier_onboarding_packet.py", + "ION/04_packages/kernel/ion_carrier_task_return.py", + "ION/04_packages/kernel/ion_carrier_tick.py", + "ION/04_packages/kernel/ion_carrier_workflow_audit.py", + "ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py", + "ION/04_packages/kernel/ion_chatgpt_browser_legacy_tunnel_reuse_audit.py", + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py", + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py", + "ION/04_packages/kernel/ion_chatops_bridge.py", + "ION/04_packages/kernel/ion_cockpit_view_model.py", + "ION/04_packages/kernel/ion_codex_cli_carrier_audit.py", + "ION/04_packages/kernel/ion_codex_extension_carrier_audit.py", + "ION/04_packages/kernel/ion_codex_queue_runner.py", + "ION/04_packages/kernel/ion_compiled_role_context_bundle_audit.py", + "ION/04_packages/kernel/ion_context_authority_team_audit.py", + "ION/04_packages/kernel/ion_context_lifecycle.py", + "ION/04_packages/kernel/ion_context_proof_gate.py", + "ION/04_packages/kernel/ion_cursor_autopilot_audit.py", + "ION/04_packages/kernel/ion_cursor_autopilot_packet.py", + "ION/04_packages/kernel/ion_cursor_canonical_workflow_audit.py", + "ION/04_packages/kernel/ion_cursor_hook_state.py", + "ION/04_packages/kernel/ion_cursor_hooks_audit.py", + "ION/04_packages/kernel/ion_cycle_runner.py", + "ION/04_packages/kernel/ion_deep_operational_cartography.py", + "ION/04_packages/kernel/ion_front_door_proof_trace.py", + "ION/04_packages/kernel/ion_full_carrier_capability_audit.py", + "ION/04_packages/kernel/ion_github_commit_proposal_receipt.py", + "ION/04_packages/kernel/ion_github_data_plane_audit.py", + "ION/04_packages/kernel/ion_human_gate_queue.py", + "ION/04_packages/kernel/ion_lane_timeline_view_model.py", + "ION/04_packages/kernel/ion_lifecycle_packager.py", + "ION/04_packages/kernel/ion_mcp_bridge_audit.py", + "ION/04_packages/kernel/ion_mcp_client_certification.py", + "ION/04_packages/kernel/ion_mcp_client_configs.py", + "ION/04_packages/kernel/ion_mcp_hosted_auth_alpha.py", + "ION/04_packages/kernel/ion_mcp_hosted_bundle_replay_alpha.py", + "ION/04_packages/kernel/ion_mcp_hosted_oauth_http_preview.py", + "ION/04_packages/kernel/ion_mcp_hosted_storage_receipt_ledger_alpha.py", + "ION/04_packages/kernel/ion_mcp_local_bridge.py", + "ION/04_packages/kernel/ion_mcp_local_bridge_smoke.py", + "ION/04_packages/kernel/ion_mcp_sdk_wrapper_boundary.py", + "ION/04_packages/kernel/ion_mcp_transport_preview.py", + "ION/04_packages/kernel/ion_operational_truth_audit.py", + "ION/04_packages/kernel/ion_operator_message_classifier.py", + "ION/04_packages/kernel/ion_operator_message_queue.py", + "ION/04_packages/kernel/ion_receipt_hydration_mapper.py", + "ION/04_packages/kernel/ion_runtime_debug_overlay.py", + "ION/04_packages/kernel/ion_safe_full_project_packager.py", + "ION/04_packages/kernel/ion_status.py", + "ION/04_packages/kernel/ion_steward_integrate.py", + "ION/04_packages/kernel/ion_template_action_gate.py", + "ION/04_packages/kernel/ion_temporal_context_enforcement_audit.py", + "ION/04_packages/kernel/ion_trunk_preservation_gate.py", + "ION/04_packages/kernel/ion_v72_mcp_donor_reconciliation_audit.py", + "ION/04_packages/kernel/joc_cockpit_component_contract.py", + "ION/04_packages/kernel/joc_cognitive_explorer_route_view_model.py", + "ION/04_packages/kernel/joc_dispatch_authorization_view_model.py", + "ION/04_packages/kernel/joc_dry_run_dispatch_trace_view_model.py", + "ION/04_packages/kernel/joc_export_handoff_manifest_view_model.py", + "ION/04_packages/kernel/joc_handoff_package_assembly_plan_view_model.py", + "ION/04_packages/kernel/joc_mission_dispatch_route_view_model.py", + "ION/04_packages/kernel/joc_operator_approval_queue_view_model.py", + "ION/04_packages/kernel/joc_provider_adapter_readiness_view_model.py", + "ION/04_packages/kernel/joc_reactive_os_stream_view_model.py", + "ION/04_packages/kernel/joc_release_candidate_preview_view_model.py", + "ION/04_packages/kernel/joc_result_save_proposal_view_model.py", + "ION/04_packages/kernel/joc_synthetic_response_capture_view_model.py", + "ION/04_packages/kernel/joc_synthetic_synthesis_route_result_view_model.py", + "ION/04_packages/kernel/local_browser_capture_adapter.py", + "ION/04_packages/kernel/local_browser_execution_harness.py", + "ION/04_packages/kernel/local_browser_execution_run_receipt.py", + "ION/04_packages/kernel/local_browser_execution_sandbox_spec.py", + "ION/04_packages/kernel/local_visual_harness.py", + "ION/04_packages/kernel/maintained_work_surface.py", + "ION/04_packages/kernel/manifest_state.py", + "ION/04_packages/kernel/model.py", + "ION/04_packages/kernel/model_economics_registry.py", + "ION/04_packages/kernel/model_economics_schedule.py", + "ION/04_packages/kernel/model_router.py", + "ION/04_packages/kernel/name_lineage.py", + "ION/04_packages/kernel/operational_hardening.py", + "ION/04_packages/kernel/operator_cli.py", + "ION/04_packages/kernel/operator_control.py", + "ION/04_packages/kernel/packet_validation.py", + "ION/04_packages/kernel/planner_gate.py", + "ION/04_packages/kernel/production_readiness.py", + "ION/04_packages/kernel/question_answers.py", + "ION/04_packages/kernel/questions.py", + "ION/04_packages/kernel/receipts.py", + "ION/04_packages/kernel/recovery_replay.py", + "ION/04_packages/kernel/release_readiness.py", + "ION/04_packages/kernel/reviews.py", + "ION/04_packages/kernel/root_authority_bundle.py", + "ION/04_packages/kernel/runtime_identity_envelope.py", + "ION/04_packages/kernel/runtime_report_anchors.py", + "ION/04_packages/kernel/runtime_report_artifacts.py", + "ION/04_packages/kernel/runtime_report_bidirectional_trace.py", + "ION/04_packages/kernel/runtime_report_bidirectional_trace_comparison.py", + "ION/04_packages/kernel/runtime_report_bidirectional_trace_family_summary.py", + "ION/04_packages/kernel/runtime_report_bidirectional_trace_temporal.py", + "ION/04_packages/kernel/runtime_report_browser.py", + "ION/04_packages/kernel/runtime_report_comparative_provenance.py", + "ION/04_packages/kernel/runtime_report_crosslinks.py", + "ION/04_packages/kernel/runtime_report_digest_profile_browser.py", + "ION/04_packages/kernel/runtime_report_digest_profile_catalog.py", + "ION/04_packages/kernel/runtime_report_digest_profiles.py", + "ION/04_packages/kernel/runtime_report_digest_reverse_trace.py", + "ION/04_packages/kernel/runtime_report_family_summary.py", + "ION/04_packages/kernel/runtime_report_governance.py", + "ION/04_packages/kernel/runtime_report_governance_aggregation.py", + "ION/04_packages/kernel/runtime_report_navigation.py", + "ION/04_packages/kernel/runtime_report_operator_digest.py", + "ION/04_packages/kernel/runtime_report_profile_digest_trace.py", + "ION/04_packages/kernel/runtime_report_provenance.py", + "ION/04_packages/kernel/runtime_report_temporal_provenance.py", + "ION/04_packages/kernel/runtime_report_triggers.py", + "ION/04_packages/kernel/runtime_report_visibility.py", + "ION/04_packages/kernel/runtime_reporting.py", + "ION/04_packages/kernel/runtime_session_dispatch_binding.py", + "ION/04_packages/kernel/runtime_session_store.py", + "ION/04_packages/kernel/runtime_state_sync.py", + "ION/04_packages/kernel/runtime_state_views.py", + "ION/04_packages/kernel/schedule_completion_release.py", + "ION/04_packages/kernel/schedule_controls.py", + "ION/04_packages/kernel/schedule_dispatch_reconciliation.py", + "ION/04_packages/kernel/schedule_executor_start_packet.py", + "ION/04_packages/kernel/schedule_handoff_capsule.py", + "ION/04_packages/kernel/schedule_handoff_entry_rehearsal.py", + "ION/04_packages/kernel/schedule_lineage.py", + "ION/04_packages/kernel/schedule_lineage_replay.py", + "ION/04_packages/kernel/schedule_resume_bundle.py", + "ION/04_packages/kernel/schedule_resume_projection.py", + "ION/04_packages/kernel/schedule_settlement.py", + "ION/04_packages/kernel/schedule_takeover_activation.py", + "ION/04_packages/kernel/scheduler.py", + "ION/04_packages/kernel/self_mount_graph_integration.py", + "ION/04_packages/kernel/self_surface_drift_gate.py", + "ION/04_packages/kernel/sequential_kernel.py", + "ION/04_packages/kernel/settlement.py", + "ION/04_packages/kernel/signal_followups.py", + "ION/04_packages/kernel/signals.py", + "ION/04_packages/kernel/store.py", + "ION/04_packages/kernel/summary_refresh_demo.py", + "ION/04_packages/kernel/summary_refresh_demo_certification.py", + "ION/04_packages/kernel/summary_refresh_demo_doctor.py", + "ION/04_packages/kernel/summary_refresh_demo_evidence_bundle.py", + "ION/04_packages/kernel/summary_refresh_demo_release_candidate.py", + "ION/04_packages/kernel/summary_refresh_demo_release_candidate_verify.py", + "ION/04_packages/kernel/summary_refresh_demo_replay.py", + "ION/04_packages/kernel/takeover.py", + "ION/04_packages/kernel/template_completion_events.py", + "ION/04_packages/kernel/template_contract_projection_audit.py", + "ION/04_packages/kernel/template_contract_registry.py", + "ION/04_packages/kernel/template_contract_release_gate.py", + "ION/04_packages/kernel/template_graph_commit.py", + "ION/04_packages/kernel/template_graph_writeback_proposals.py", + "ION/04_packages/kernel/template_graph_writeback_review.py", + "ION/04_packages/kernel/template_index_projection.py", + "ION/04_packages/kernel/template_metadata_contracts.py", + "ION/04_packages/kernel/template_reaction_selection.py", + "ION/04_packages/kernel/temporal_evaluator.py", + "ION/04_packages/kernel/temporal_leases.py", + "ION/04_packages/kernel/temporal_model.py", + "ION/04_packages/kernel/temporal_object_adapters.py", + "ION/04_packages/kernel/temporal_receipts.py", + "ION/04_packages/kernel/temporal_reconciliation.py", + "ION/04_packages/kernel/temporal_relevance.py", + "ION/04_packages/kernel/threshold.py", + "ION/04_packages/kernel/ui_work_surface_projection.py", + "ION/04_packages/kernel/v73_cursor_carrier_mount_audit.py", + "ION/04_packages/kernel/v74_template_binding_restoration_audit.py", + "ION/04_packages/kernel/v75_cursor_full_workflow_mount_audit.py", + "ION/04_packages/kernel/v75_cursor_subagent_spawn_readiness_audit.py", + "ION/04_packages/kernel/v76_cursor_work_cycle_audit.py", + "ION/04_packages/kernel/v78_ion_mount_contract_audit.py", + "ION/04_packages/kernel/validation.py", + "ION/04_packages/kernel/visual_before_after_verification.py", + "ION/04_packages/kernel/visual_closure_graph_projection.py", + "ION/04_packages/kernel/visual_diagnosis_receipt.py", + "ION/04_packages/kernel/visual_observation_packet.py", + "ION/04_packages/kernel/visual_regression_fixture_runner.py", + "ION/04_packages/kernel/visual_run_receipt_to_diagnosis_binding.py", + "ION/04_packages/kernel/visual_sandbox_security_review.py", + "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/00_BOOTSTRAP/V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_GATE_LOCK.md", + "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/docs/consolidation/ION_V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_REPORT_20260502.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/AGENTS.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/OPERATOR_VISIBLE_LAST_RUN_20260427_STALE_START_HERE.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/START_HERE_FOR_ANY_AGENT.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/_tmp_onboard_20260427_STALE_START_HERE.json", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_EXERCISE_BRIEF.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_RETURN_STUB.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_READ_MODE.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BUNDLE_MANIFEST.yaml", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_EXERCISE_BRIEF.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_RETURN_STUB.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_READ_MODE.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CURSOR_CODEX_READ_MODE.md", + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/START_HERE.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_to_relay_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/05_relay_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_to_thoth_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_to_atlas_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_to_vestige_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/04_vestige_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_to_relay_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/05_relay_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_to_relay_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/05_relay_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_to_relay_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/05_relay_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_review_followup_resolution_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_recursive_witness_drift_rollback/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-05_codex_agent_reasoning_protocol_first_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_to_vizier_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_to_mason_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_to_vice_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_to_nemesis_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/05_nemesis_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_execution_symmetry_horizon_pass/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/04_manual_automation_fallback.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/04_manual_automation_fallback.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/04_manual_automation_fallback.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/04_manual_automation_fallback.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/04_manual_automation_fallback.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/01_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/HANDOFF.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/ROLE_SESSION.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/03_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/03_thoth_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/04_vestige_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/05_thoth_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/06_operator_onboarding_sequence.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/07_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/03_codex_proposal.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/04_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/03_mason_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/04_mason_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/05_operator_onboarding_sequence.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/03_browser_external_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/04_external_return.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/05_patch_package.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/06_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/03_disagreement_escalation.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/06_codex_proposal.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/07_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/03_mason_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/04_vestige_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/05_browser_external_unmounted_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/06_context_bank_feed_proof.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/07_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/01_task.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/02_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/03_thoth_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/04_vestige_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/05_thoth_cursor_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/06_operator_onboarding_sequence.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/07_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/README.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/01_template_surface_change.md", + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/02_role_chassis_mount.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/01_template_surface_change.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/01_template_surface_change.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/01_template_surface_change.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/01_template_surface_change.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/01_template_surface_change.md", + "ION/05_context/comms/kernel_router_runs/2026-04-23_vm_healthcheck_continuation_route.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/02_handoff.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/00_trace.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/01_role_session.md", + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/02_handoff.md", + "ION/05_context/comms/migration_ledgers/automation_operationalization_ledger.md", + "ION/05_context/comms/migration_ledgers/domain_semantic_runtime_migration.md", + "ION/05_context/comms/roundtable/ROUNDTABLE_PARTICIPANTS.md", + "ION/05_context/comms/roundtable/vizier_article7_version_governance.md", + "ION/05_context/comms/roundtable/vizier_decisions_and_ratification_request.md", + "ION/05_context/comms/roundtable/vizier_full_status_report.md", + "ION/05_context/comms/roundtable/vizier_ideas_and_first_action.md", + "ION/05_context/comms/roundtable/vizier_ratification_assessment.md", + "ION/05_context/comms/roundtable/vizier_response_recalibration.md", + "ION/05_context/comms/roundtable/vizier_synthesis_response.md", + "ION/05_context/comms/sovereign/2026-04-03_codex_operating_state_delta_after_kernel_pilots.md", + "ION/05_context/comms/sovereign/directive_full_status_report.md", + "ION/05_context/comms/sovereign/directive_preratification_deepdive.md", + "ION/05_context/comms/sovereign/directive_recalibration.md", + "ION/05_context/comms/sovereign/ratification_summary_for_sovereign.md", + "ION/05_context/continuation_bundles/GPT55_SELF_MOUNT_V34_SUCCESSOR_HANDOFF.md", + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/00_source_packet.md", + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/01_role_session.md", + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/02_manifest.json", + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/01_doctrine/CANONICAL_WORKFLOW.md", + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md", + "ION/05_context/current/ACTIVE_AGENT_CONTEXT_WINDOW_PLAN.json", + "ION/05_context/current/ACTIVE_CARRIER_MESSAGE_QUEUE.json", + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.codex_cli.json", + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.json", + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.sev.json", + "ION/05_context/current/ACTIVE_CARRIER_TASK_RETURN_LEDGER.json", + "ION/05_context/current/ACTIVE_CARRIER_TICK.json", + "ION/05_context/current/ACTIVE_CARRIER_TURN_PACKET.json", + "ION/05_context/current/ACTIVE_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL.json", + "ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json", + "ION/05_context/current/ACTIVE_COCKPIT_VIEW_MODEL.json", + "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_PACKET.json", + "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_STATE.json", + "ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json", + "ION/05_context/current/ACTIVE_FRONT_DOOR_PROOF_TRACE.json", + "ION/05_context/current/ACTIVE_FRONT_DOOR_TEAM_PLAN.json", + "ION/05_context/current/ACTIVE_HUMAN_GATE_QUEUE.json", + "ION/05_context/current/ACTIVE_LANE_TIMELINE_VIEW_MODEL.json", + "ION/05_context/current/ACTIVE_MCP_BRIDGE_STATE.json", + "ION/05_context/current/ACTIVE_OPERATOR_MESSAGE_QUEUE.json", + "ION/05_context/current/ACTIVE_RECEIPT_HYDRATION_VIEW_MODEL.json", + "ION/05_context/current/ACTIVE_ROLE_SPAWN_PLAN.json", + "ION/05_context/current/ACTIVE_RUNTIME_DEBUG_OVERLAY.json", + "ION/05_context/current/ACTIVE_STATE_INTEGRITY_AUDIT.json", + "ION/05_context/current/ACTIVE_STEWARD_INTEGRATION_QUEUE.json", + "ION/05_context/current/ACTIVE_WORK_PACKET.json", + "ION/05_context/current/BASELINE_MANIFEST_V124.json", + "ION/05_context/current/CARRIER_AGENT_SYSTEM_BUILD_PLAN_V105.json", + "ION/05_context/current/CARRIER_CAPABILITY_SURVEY_20260427_CURSOR_L0.md", + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V116.json", + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V117.json", + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V123.json", + "ION/05_context/current/CARRIER_RUN_20260427.md", + "ION/05_context/current/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_V122.json", + "ION/05_context/current/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_V121.json", + "ION/05_context/current/CHATGPT_BROWSER_LEGACY_TUNNEL_REUSE_AUDIT_V124.json", + "ION/05_context/current/CHATGPT_BROWSER_MCP_CONNECTOR_CONTRACT_V120.json", + "ION/05_context/current/CODEX_CLI_CARRIER_AUDIT_V125.json", + "ION/05_context/current/CODEX_EXTENSION_CARRIER_AUDIT_V106.json", + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_AUTHORITY_BUNDLE_START_HERE.json", + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_ONBOARDING_SHIMS.json", + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_STALE_OPERATOR_VISIBLE_LAST_RUN.json", + "ION/05_context/current/CONTEXT_LIFECYCLE_AUDIT_V102.json", + "ION/05_context/current/CONTEXT_METABOLISM_MANIFEST_V102.json", + "ION/05_context/current/CURSOR_AGENT_HANDOFF_20260428_WORKSPACE_AND_CARRIER_FOUNDATION.md", + "ION/05_context/current/ION_CORE_SYSTEM_TELEMETRY_REQUIREMENTS_V105.json", + "ION/05_context/current/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AUDIT_V105.json", + "ION/05_context/current/ION_LIVING_ENCYCLOPEDIA_MANIFEST_V100.json", + "ION/05_context/current/ION_LONG_HORIZON_ORCHESTRATION_PLAN_V105.json", + "ION/05_context/current/ION_MASTER_OPERATIONAL_ROADMAP_V104.json", + "ION/05_context/current/ION_MASTER_RECOVERY_ROADMAP_V98.json", + "ION/05_context/current/ION_OPEN_WORK_REGISTER_V104.json", + "ION/05_context/current/ION_OPERATIONAL_TRUTH_AUDIT_V104.json", + "ION/05_context/current/ION_RUNTIME_SEPARATION_PLAN_V99.json", + "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V84.json", + "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V85.json", + "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V84.json", + "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V85.json", + "ION/05_context/current/LAST_KERNEL_ONBOARD_RAW.json", + "ION/05_context/current/LAST_KERNEL_TRACE.txt", + "ION/05_context/current/LAST_SUBAGENT_SPAWN_RUN.txt", + "ION/05_context/current/LAST_TOOL_CHAIN.txt", + "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_COMPACT_RUNTIME_V106.json", + "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_V105_ZIP_ROOT_AUDIT_V106.json", + "ION/05_context/current/OPERATOR_MECHANICAL_REPORT_20260427.md", + "ION/05_context/current/POST_PATCH_MANIFEST_V124.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V101.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V104.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V105.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V84.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V85.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V90.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V91.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V92.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V93.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V94.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V95.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V96.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V97.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V98.json", + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V99.json", + "ION/05_context/current/STEWARD_INTEGRATION_RECEIPT_20260427.txt", + "ION/05_context/current/TASK_RUN_CORRECTNESS_AUDIT_20260427.md", + "ION/05_context/current/TEMPORAL_CONTEXT_ENFORCEMENT_AUDIT_V103.json", + "ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json", + "ION/05_context/current/_tmp_kernel.txt", + "ION/05_context/current/agent_context_systems/AGENT_CONTEXT_SYSTEMS_INDEX.md", + "ION/05_context/current/agent_context_systems/ATLAS.context_system.md", + "ION/05_context/current/agent_context_systems/CANON_LIBRARIAN.context_system.md", + "ION/05_context/current/agent_context_systems/CONTEXT_CARTOGRAPHER.context_system.md", + "ION/05_context/current/agent_context_systems/IONOLOGIST.context_system.md", + "ION/05_context/current/agent_context_systems/LEAD_DEV_ACTIVE_OPERATING_CONTEXT_V105.md", + "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_CONTROL_SURFACE.context_system.md", + "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_METABOLISM_SURFACE_V102.md", + "ION/05_context/current/agent_context_systems/MASON.context_system.md", + "ION/05_context/current/agent_context_systems/NEMESIS.context_system.md", + "ION/05_context/current/agent_context_systems/PERSONA_INTERFACE.context_system.md", + "ION/05_context/current/agent_context_systems/RELAY.context_system.md", + "ION/05_context/current/agent_context_systems/RUNTIME_CARTOGRAPHER.context_system.md", + "ION/05_context/current/agent_context_systems/SCRIBE.context_system.md", + "ION/05_context/current/agent_context_systems/STEWARD.context_system.md", + "ION/05_context/current/agent_context_systems/TEMPLATE_CURATOR.context_system.md", + "ION/05_context/current/agent_context_systems/THOTH.context_system.md", + "ION/05_context/current/agent_context_systems/VESTIGE.context_system.md", + "ION/05_context/current/agent_context_systems/VICE.context_system.md", + "ION/05_context/current/agent_context_systems/VIZIER.context_system.md", + "ION/05_context/current/backups/carrier_runtime_foundation_merge_timestamp.txt", + "ION/05_context/current/backups/pre_carrier_runtime_foundation_git_status.txt", + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213423Z0000_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json", + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213935Z0000_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_step_g.json", + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T214342Z0000_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_queue_run.json", + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T220209Z0000_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the_42_to.json", + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T190847Z0000_full_carrier_visibility_smoke_20260504_1838_md.json", + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T200552Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json", + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T202351Z0000_codex_cli_30_tool_visibility_smoke_20260504t202351z_md.json", + "ION/05_context/current/chatgpt_connector/artifact_uploads/chunks/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md_00000000.chunk", + "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json", + "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T211434Z0000_ion_large_work_packet_artifact_backed_dispatch_spec_20260504_md.json", + "ION/05_context/current/chatgpt_connector/artifacts/CHATGPT_BROWSER_ARTIFACT_UPLOAD_SMOKE_20260504.md", + "ION/05_context/current/chatgpt_connector/artifacts/codex_cli_30_tool_visibility_smoke_20260504T202351Z.md", + "ION/05_context/current/chatgpt_connector/artifacts/full_carrier_visibility_smoke_20260504_1838.md", + "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195739Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json", + "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195901Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json", + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T190847Z0000_carmsg_2026_05_04t190847z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T194616Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json", + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T195851Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json", + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T202351Z0000_carmsg_2026_05_04t202351z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T204207Z0000_carmsg_2026_05_04t204207z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/context_receipt.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/prompt.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/run.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/context_receipt.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/latest_return.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/prompt.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/run.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/context_receipt.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/latest_return.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/prompt.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/run.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/context_receipt.json", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/latest_return.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/prompt.md", + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/run.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T023146Z0000_v120_live_http_connector_smoke_codex_local_visibility_and_proof_return.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T073641Z0000_public_connector_smoke_test_bounded_work_request.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T174407Z0000_create_a_markdown_planning_artifact_for_full_ion_carrier_parity_over_mcp_seed_it.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T175712Z0000_inspect_existing_ion_carrier_comms_queue_agent_message_operator_message_relay_st.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T180446Z0000_evolve_the_chatgpt_browser_mcp_connector_toward_full_ion_carrier_parity_focusing.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T183803Z0000_continue_full_carrier_mcp_parity_rollout_current_chatgpt_browser_connector_tool_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T201043Z0000_push_chatgpt_browser_mcp_beyond_the_current_22_tool_artifact_comms_slice_toward_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T203755Z0000_build_the_next_ion_automation_layer_so_chatgpt_browser_can_operate_the_local_ion.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T211836Z0000_build_the_next_layer_multi_agent_codex_backed_ion_swarm_control_from_sev_gpt_bro.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213423Z0000_agent_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213935Z0000_agent_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T214342Z0000_agent_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_que.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T215059Z0000_repair_codex_queue_runner_stale_active_run_reconciliation_current_evidence_ion_d.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T220209Z0000_agent_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T225611Z0000_design_the_github_data_plane_setup_for_ion_using_github_account_org_ion_operatio.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T235100Z0000_implement_the_next_read_only_github_data_plane_audit_slice_identified_by_prior_a.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T202947Z0000_use_sev_as_the_project_facing_callsign_for_the_chatgpt_browser_gpt_5_5_carrier_w.json", + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210125Z0000_record_the_sev_ion_operating_relationship_braden_remains_the_human_sovereign_sou.json", + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210413Z0000_record_the_current_ion_dogfooding_model_gpt_5_5_pro_sev_is_best_used_as_a_high_q.json", + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210648Z0000_record_gpt_browser_sev_as_the_preferred_ion_dogfooding_workflow_sev_operates_fro.json", + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T232134Z0000_use_neutral_ion_naming_for_github_ssh_identity_labels_and_local_ssh_key_names_pr.json", + "ION/05_context/current/chatgpt_connector/runtime/active_connector_url.txt", + "ION/05_context/current/chatgpt_connector/runtime/agent_invocation_broker_state.json", + "ION/05_context/current/chatgpt_connector/runtime/cloudflared_version.txt", + "ION/05_context/current/chatgpt_connector/runtime/codex_queue_runner_state.json", + "ION/05_context/current/chatgpt_connector/runtime/http_preview_health.json", + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list.json", + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_after_restart.json", + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_final.json", + "ION/05_context/current/chatgpt_connector/runtime/public_carrier_message_sev_callsign_ack.json", + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue.json", + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_after_return.json", + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_latest_check.json", + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_request.json", + "ION/05_context/current/chatgpt_connector/runtime/public_ion_status_tool_call.json", + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list.json", + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_33_codex_queue_runner.json", + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_42_agent_invocation_broker.json", + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_after_restart.json", + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_final.json", + "ION/05_context/current/chatgpt_connector/runtime/public_onboarding_packet_tool_call.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_poll_after_restart.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_after_restart.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_cockpit_sev_callsign.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_put_text_after_restart.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_read_sev_profile.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_invoke_prepare_only.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_result_prepare_only.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_autorun_status.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_process_once_prepare_only.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_after_runner_projection_patch.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_codex_queue_runner.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_put_text_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_read_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_search_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_tool_manifest_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_onboarding_sev_callsign.json", + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_after_restart.json", + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_final.json", + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_201043_30_tool_visibility.json", + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_203755_codex_queue_runner.json", + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_211836_agent_invocation_broker.json", + "ION/05_context/current/chatgpt_connector/runtime/public_task_return_submit.json", + "ION/05_context/current/chatgpt_connector/runtime/public_write_without_confirmation.json", + "ION/05_context/current/chatgpt_connector/runtime/v121_refresh.json", + "ION/05_context/current/chatgpt_connector/runtime/v122_refresh.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023146Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023221Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T073730Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174553Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174618Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174648Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174723Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return_1.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T183625Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T190955Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T191128Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T192325Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T202613Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T210025Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T213558Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214127Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214229Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214848Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215640Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215710Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215826Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220450Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220553Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T230157Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T235644Z0000_task_return.json", + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-05T010310Z0000_task_return.json", + "ION/05_context/current/chatops_bridge/actions/sev_20260505_0001_smoke.json", + "ION/05_context/current/chatops_bridge/actions/sev_20260505_021500_chatops_reentry_hardening.json", + "ION/05_context/current/chatops_bridge/actions/sev_20260505_022020_chatops_reentry_hardening.json", + "ION/05_context/current/chatops_bridge/actions/sev_20260505_chatops_bridge_smoke.json", + "ION/05_context/current/chatops_bridge/actions/sev_20260505t014904z_smoke.json", + "ION/05_context/current/chatops_bridge/actions/sev_20260505t015046z_codex_work.json", + "ION/05_context/current/chatops_bridge/actions/sev_yyyymmdd_hhmmss_short_slug.json", + "ION/05_context/current/chatops_bridge/artifacts/smoke/sev_chatops_bridge_smoke.txt", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t005355z_sev_20260505_chatops_bridge_smoke.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t014907z_sev_20260505t014904z_smoke.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t015047z_sev_20260505t015046z_codex_work.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t020928z_sev_yyyymmdd_hhmmss_short_slug.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t021106z_sev_yyyymmdd_hhmmss_short_slug.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022253z_sev_20260505_022020_chatops_reentry_hardening.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022651z_sev_20260505_022020_chatops_reentry_hardening.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022734z_sev_20260505_022020_chatops_reentry_hardening.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022944z_sev_20260505_021500_chatops_reentry_hardening.json", + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t030803z_sev_20260505_0001_smoke.json", + "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE.md", + "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE_sev-20260505t014904z.md", + "ION/05_context/current/codex_cli/gpt55_lead_mount_prompt_v126.md", + "ION/05_context/current/codex_cli/latest_prompt.md", + "ION/05_context/current/codex_cli/latest_return.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/00_trace.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_to_relay_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_COMPILED_RELAY_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_to_thoth_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_COMPILED_THOTH_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_to_atlas_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_COMPILED_ATLAS_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_session.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_to_vestige_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_COMPILED_VESTIGE_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_context_load_receipt.json", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_cursor_task_prompt.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json", + "ION/05_context/current/github_data_plane/BOOTSTRAP_UPLOAD_AUTHORIZATION_2026-05-05T041221Z.json", + "ION/05_context/current/github_data_plane/PRIOR_ART_CONSOLIDATION_2026-05-04.md", + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.json", + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.paths.json", + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.json", + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.paths.json", + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json", + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json", + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_mason.json", + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_steward.json", + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_vizier.json", + "ION/05_context/current/steward_integrations/queue_01_steward_097a5d1a960d_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_0acfdf36909f_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_176bca037f29_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_179c09697797_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_1cae53b1c30f_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_1ec9f8c8671f_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_27c7864b79f8_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_467e0b5d928d_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_01_steward_c6b37295e2c4_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_02_relay_375e9f194049_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_02_vizier_166495dc4711_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_02_vizier_35dd3ebd7d66_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_02_vizier_3822716abedd_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_02_vizier_999875a0162f_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_02_vizier_e523d62ef484_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_03_mason_0e0b154df17f_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_03_mason_17e1a03addeb_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_03_mason_7e4c5f06fcb8_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_03_mason_8804d46ae1cf_steward_integration.json", + "ION/05_context/current/steward_integrations/queue_03_mason_e6aef65bae37_steward_integration.json", + "ION/05_context/current/task_returns/2026-04-29T145622Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-03T040939Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-03T040939Z0000_02_relay_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T040927Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T042221Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T043310Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T044412Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T044541Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T050105Z0000_02_vizier_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T050836Z0000_03_mason_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T054324Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T055154Z0000_02_vizier_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T055843Z0000_03_mason_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T070637Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T070956Z0000_02_vizier_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T071209Z0000_03_mason_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T072945Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T073253Z0000_02_vizier_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T073841Z0000_03_mason_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T145628Z0000_01_steward_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T145708Z0000_02_vizier_task_return.md", + "ION/05_context/current/task_returns/2026-05-04T145756Z0000_03_mason_task_return.md", + "ION/05_context/fixtures/consolidation/v60_branch_consolidation.valid.json", + "ION/05_context/fixtures/ui/v56_joc_cockpit_component_manifest.valid.json", + "ION/05_context/fixtures/ui/v57_reactive_os_stream_view_model.valid.json", + "ION/05_context/fixtures/ui/v58_cognitive_explorer_route_view_model.valid.json", + "ION/05_context/fixtures/visual_regression/v49_demo_visual_fixture_suite.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-0fe4fcb96c4fdea2.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-1b85e0f7eba9afe6.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-264afc5e5f82c248.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-599a6cc850978c82.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-5d934fb9d7b5b606.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-7059b321b2c76018.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-8529a531d01f3a3d.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-86cfb183da7bbc55.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-89bbf704bbd11cc2.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-a05b820d556831ea.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b3fc5b5af61ea610.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b7923f00b4f444ce.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-bd4c385ca237f83a.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-d4483ed529a9773a.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-dded4d06ec213a89.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-de85a8041f7a6bcf.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-e6c0d545a4278920.self_mount_graph_projection.json", + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-fced94c1fd004817.self_mount_graph_projection.json", + "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-712038e6c588c333.template_graph_edge.json", + "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-e7cbb3279d673f06.template_graph_edge.json", + "ION/05_context/graph/template_event_graph_state/nodes/ctx-template-event-node-e2ae3524b04fc459.template_graph_node.json", + "ION/05_context/handoff/V35_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V38_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V39_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V40_MAINTAINED_WORK_SURFACE_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V41_FRONT_STAGE_COUNCIL_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V44_VISUAL_OBSERVATION_PACKET_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V45_VISUAL_DIAGNOSIS_RECEIPT_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V46_LOCAL_VISUAL_HARNESS_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V48_VISUAL_BEFORE_AFTER_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V53_VISUAL_AGENT_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V58_MODEL_ECONOMICS_SUCCESSOR_HANDOFF.md", + "ION/05_context/handoff/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_HANDOFF.md", + "ION/05_context/handoff/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_HANDOFF.md", + "ION/05_context/handoff/agent_succession_packets/agent-succession-09e421cbd616f3e4.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-188c4823c393edd1.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-34a56d95766f5be9.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-4e67a14a5f9c9204.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-5af858de6ec8056f.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-93ee6d7ae63bd72b.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-94dc736c484e8782.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-a904ed885c6598ad.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-afe4b4787dd89751.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-c40f3356dba7bbac.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-cbc0b3efae7348a2.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-cf77bf26adefb8b6.agent_succession_packet.json", + "ION/05_context/handoff/agent_succession_packets/agent-succession-ea492c604ff09db2.agent_succession_packet.json", + "ION/05_context/history/conversational_receipts/2cdb4920b2dc401d7cd84c79.conversational_receipt.json", + "ION/05_context/history/conversational_receipts/7116638c9d43023d44c6efe4.conversational_receipt.json", + "ION/05_context/history/conversational_receipts/9163df7a9a5760d705dbeec1.conversational_receipt.json", + "ION/05_context/history/front_door_proof_traces/fdproof-20938bb98d449d3782.front_door_proof_trace.json", + "ION/05_context/history/front_door_proof_traces/fdproof-527a3f11276e5936a1.front_door_proof_trace.json", + "ION/05_context/history/front_door_proof_traces/fdproof-5682a7ece065be3977.front_door_proof_trace.json", + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.dispatch_packet.json", + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.dispatch_packet.json", + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.dispatch_packet.json", + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-fdsession-e3325d8e7fd2e91c61-user-sovereign-e30502b0d5c8.json", + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-9266b5943379.json", + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-fe357c69b2f6.json", + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-fdsession-e3325d8e7fd2e91c61-stewa-a2aab6e5f3e3.json", + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-092bc3cb2479.json", + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-3722235d458f.json", + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-fdsession-e3325d8e7fd2e-79ca4f6cb160.json", + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-98778d054ede.json", + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-b1e6e7d48025.json", + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7-328f39c7cc61.json", + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-4ff78b994961.json", + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-88300a5c737c.json", + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-fdsession-e3325d8e7fd2e91c61-steward-proof-99a27cc53338.json", + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-2fdd60e1bd98.json", + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-c7e2ebaf2583.json", + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-user-sov-ba415756fb8a.json", + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-a1af2bd9ee2c.json", + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-f1dc5baef7bc.json", + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-d0f82d9dad63.json", + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-129dac14513f.json", + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-8a98a48a44d3.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-847548dfe713.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-a74825790fa0.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-01e3c1d927aa.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-4a7f5f80f40d.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-d7d1526ee22c.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/fdsession-e3325d8e7fd2e91c61.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/v106-front-door-proof-trace.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/fdsession-e3325d8e7fd2e91c61.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/v106-front-door-proof-trace.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/fdsession-e3325d8e7fd2e91c61.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/v106-front-door-proof-trace.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/fdsession-e3325d8e7fd2e91c61.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/v106-front-door-proof-trace.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-3ca30902024f.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4306744c9ecc.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4a7805181eea.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4b3e9da4b7e0.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-54356c43b417.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-58419c8d9419.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-73dca9f058c6.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-764c0ab3e724.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-92a7b76c067a.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-a0594a05f017.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b1425da06b34.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b4acfeb08f08.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-ca371b333632.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e4aad22c1617.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e988da043a82.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/fdsession-e3325d8e7fd2e91c61.json", + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/v106-front-door-proof-trace.json", + "ION/05_context/history/front_stage_council_receipts/fsc-27a1a8398ae020b89d.front_stage_council_receipt.json", + "ION/05_context/history/front_stage_council_receipts/fsc-553f46a0537d871778.front_stage_council_receipt.json", + "ION/05_context/history/front_stage_council_receipts/fsc-b3e8eb0f49710e6013.front_stage_council_receipt.json", + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-7f8c0860d4ee.json", + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-aad5212e511b.json", + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-c218ca2f6615.json", + "ION/05_context/history/kernel_store/work_units/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.json", + "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.json", + "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.json", + "ION/05_context/inbox/README.md", + "ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "ION/05_context/inbox/bootstrap/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "ION/05_context/inbox/completed/codex_agent_reasoning_protocol_first_pass_2026-04-05.task.md", + "ION/05_context/inbox/completed/codex_context_compiler_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_ion_kernel_constitution_self_use_alignment_2026-04-10.task.md", + "ION/05_context/inbox/completed/codex_kernel_answer_record_and_planner_manifest_runtime_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_child_work_issuance_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_commit_applier_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_daemon_act_once_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_daemon_arbiter_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_daemon_loop_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_daemon_signal_consumption_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_dispatch_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_execution_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_graph_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_index_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_loop_receipts_telemetry_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_model_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_open_question_routing_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_question_answer_and_planner_gate_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_queue_projection_and_planner_housekeeping_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_queue_refresh_and_planner_sweep_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_review_escalation_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_review_followup_resolution_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_kernel_scheduler_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_signal_consumption_archive_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_signal_followup_automation_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_signal_interpretation_expiry_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_store_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_validation_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_kernel_validation_receipt_signal_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_live_kernel_status_pilot_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_official_lead_and_support_topology_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_orchestration_blueprint_and_lead_prep_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_recursive_witness_drift_rollback_2026-04-04.task.md", + "ION/05_context/inbox/completed/codex_sequential_runtime_portability_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_sovereign_operating_state_delta_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_template_architecture_shared_vs_agent_specific_2026-04-03.task.md", + "ION/05_context/inbox/completed/codex_template_bindings_first_pass_2026-04-03.task.md", + "ION/05_context/inbox/completed/mason_kernel_scaffold.task.md", + "ION/05_context/inbox/completed/thoth_current_phase_staffing_and_semantic_identity_2026-04-12.task.md", + "ION/05_context/inbox/completed/vizier_phase0b_proof_loop_2026-04-03.task.md", + "ION/05_context/inbox/completed/vizier_plan_continuity_patch_2026-04-03.task.md", + "ION/05_context/inbox/completed/vizier_supervisor_continuity_patch_2026-04-03.task.md", + "ION/05_context/inbox/context_graph/context_graph_substrate_ratification_20260424.task.md", + "ION/05_context/inbox/context_graph/event_reaction_pipeline_ratification_20260424.task.md", + "ION/05_context/inbox/context_graph/evented_template_file_graph_ratification_20260424.task.md", + "ION/05_context/inbox/context_graph/template_completion_event_phase1_review_20260424.task.md", + "ION/05_context/inbox/context_graph/template_graph_commit_phase6_20260424.task.md", + "ION/05_context/inbox/context_graph/template_graph_writeback_proposal_phase4_review_20260424.task.md", + "ION/05_context/inbox/context_graph/template_graph_writeback_review_phase5_20260424.task.md", + "ION/05_context/inbox/context_graph/template_index_projection_phase3_review_20260424.task.md", + "ION/05_context/inbox/context_graph/template_reaction_selection_phase2_review_20260424.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-3329e48b89507651.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-5864ba79a36a9c3b.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-5c69698288020b46.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-74c83a707e199872.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-77b1b20da0a6e1b7.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-83fa2d2e94e4df73.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-988bbfba396b4e95.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-9d2d70899db17de4.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-ba6fa817b54b2add.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-e9ac90a32590953e.task.md", + "ION/05_context/inbox/product_mvp/summary-refresh-demo-fc719a7b48548cb8.task.md", + "ION/05_context/inbox/steward/model_economics/V55_API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.task.md", + "ION/05_context/inbox/steward/model_economics/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS.task.md", + "ION/05_context/inbox/steward/model_economics/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING.task.md", + "ION/05_context/inbox/steward/model_economics/V58_BUDGET_AND_API_RATE_GOVERNORS.task.md", + "ION/05_context/inbox/system_evolution/context_graph_ontology_adapter_creation_20260424.task.md", + "ION/05_context/inbox/system_evolution/contract_bound_event_integration_20260424.task.md", + "ION/05_context/inbox/system_evolution/contract_bound_event_runtime_hardening_20260424.task.md", + "ION/05_context/inbox/system_evolution/demo_spine_consolidation_20260425.task.md", + "ION/05_context/inbox/system_evolution/doctrine_evolution_governance_creation_20260424.task.md", + "ION/05_context/inbox/system_evolution/production_readiness_charter_and_ratification_matrix_20260425.task.md", + "ION/05_context/inbox/system_evolution/release_readiness_gate_20260424.task.md", + "ION/05_context/inbox/system_evolution/self_documenting_approved_context_system_creation_20260424.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_bounded_commit_demo_runtime_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_certification_gate_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_evidence_bundle_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_capsule_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_verifier_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_cli_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_doctor_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_demo_runtime_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_graph_proposal_demo_runtime_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_projection_demo_runtime_20260425.task.md", + "ION/05_context/inbox/system_evolution/summary_refresh_review_demo_runtime_20260425.task.md", + "ION/05_context/inbox/system_evolution/template_contract_projection_alignment_audit_20260424.task.md", + "ION/05_context/inbox/system_evolution/template_contract_registry_projection_default_loading_20260424.task.md", + "ION/05_context/inbox/system_evolution/template_contract_release_gate_20260424.task.md", + "ION/05_context/inbox/system_evolution/template_metadata_contract_hardening_20260424.task.md", + "ION/05_context/inbox/takeover/bootstrap_first_lawful_daemon_pressure__manual_takeover.role_session.md", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-042cea3b48cdee49.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-17d52e26cf721b2f.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-38213e02965ea244.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-3dcd59b4a848c69a.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-4ca6b186e914f9cd.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-5769ee9766aa6012.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-606ebc1690b39a6f.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-8a4239d71058d7c5.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-c340ad2ab4545c1d.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-e76d1553278436c7.runtime_identity_envelope.json", + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-fc95610581b4f742.runtime_identity_envelope.json", + "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.json", + "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.md", + "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.json", + "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.md", + "ION/05_context/signals/ATLAS_AIMOS_MCP_COUNT_20260403.signal.md", + "ION/05_context/signals/ATLAS_AIMOS_PACKAGE_20260403.signal.md", + "ION/05_context/signals/ATLAS_AI_OS_EXPANSION_20260403.signal.md", + "ION/05_context/signals/ATLAS_ALGOL_PASCAL_20260403.signal.md", + "ION/05_context/signals/ATLAS_ALPINE_LINUX_20260403.signal.md", + "ION/05_context/signals/ATLAS_AMD_ROCM_20260403.signal.md", + "ION/05_context/signals/ATLAS_CDN_EDGE_20260410.signal.md", + "ION/05_context/signals/ATLAS_CDN_RISCV_20260411.signal.md", + "ION/05_context/signals/ATLAS_CLANG_AND_K8S_SYSTEMD_20260412.signal.md", + "ION/05_context/signals/ATLAS_CLOUD_EDGE_20260409.signal.md", + "ION/05_context/signals/ATLAS_CONTEXT_PLANES_20260412.signal.md", + "ION/05_context/signals/ATLAS_CRUN_20260403.signal.md", + "ION/05_context/signals/ATLAS_DATA_PLANE_20260404.signal.md", + "ION/05_context/signals/ATLAS_DEBIAN_20260403.signal.md", + "ION/05_context/signals/ATLAS_DEBUG_ADAPTER_PROTOCOL_20260412.signal.md", + "ION/05_context/signals/ATLAS_DIRECT3D_20260403.signal.md", + "ION/05_context/signals/ATLAS_ELF_OBJECT_FORMAT_20260412.signal.md", + "ION/05_context/signals/ATLAS_FEDORA_20260403.signal.md", + "ION/05_context/signals/ATLAS_FORTRAN_C_COBOL_20260403.signal.md", + "ION/05_context/signals/ATLAS_GLIBC_20260403.signal.md", + "ION/05_context/signals/ATLAS_GNU_BINUTILS_20260412.signal.md", + "ION/05_context/signals/ATLAS_GNU_GCC_20260412.signal.md", + "ION/05_context/signals/ATLAS_GNU_GDB_20260412.signal.md", + "ION/05_context/signals/ATLAS_GNU_LIBSTDCXX_20260403.signal.md", + "ION/05_context/signals/ATLAS_INGRESS_BLS_20260406.signal.md", + "ION/05_context/signals/ATLAS_INGRESS_TEE_20260407.signal.md", + "ION/05_context/signals/ATLAS_ISO_CATALOG_PRIMARIES_20260403.signal.md", + "ION/05_context/signals/ATLAS_JVM_ECMA335_20260403.signal.md", + "ION/05_context/signals/ATLAS_LANGUAGES_PLAN9_20260403.signal.md", + "ION/05_context/signals/ATLAS_LEVEL_ZERO_20260403.signal.md", + "ION/05_context/signals/ATLAS_LLDB_20260412.signal.md", + "ION/05_context/signals/ATLAS_LLVM_DWARF_20260403.signal.md", + "ION/05_context/signals/ATLAS_LLVM_LIBCXXABI_20260403.signal.md", + "ION/05_context/signals/ATLAS_LLVM_LIBCXX_20260403.signal.md", + "ION/05_context/signals/ATLAS_LLVM_LLD_20260412.signal.md", + "ION/05_context/signals/ATLAS_MESH_BOOT_UKI_20260405.signal.md", + "ION/05_context/signals/ATLAS_METAL_20260403.signal.md", + "ION/05_context/signals/ATLAS_MUSL_20260403.signal.md", + "ION/05_context/signals/ATLAS_NGINX_ARM_SYSTEMD_20260408.signal.md", + "ION/05_context/signals/ATLAS_NVIDIA_CUDA_20260403.signal.md", + "ION/05_context/signals/ATLAS_OCI_DISTRIBUTION_SPEC_20260403.signal.md", + "ION/05_context/signals/ATLAS_OCI_IMAGE_SPEC_20260403.signal.md", + "ION/05_context/signals/ATLAS_OCI_RUNTIME_SPEC_20260403.signal.md", + "ION/05_context/signals/ATLAS_OPENCL_20260403.signal.md", + "ION/05_context/signals/ATLAS_OPENGL_20260403.signal.md", + "ION/05_context/signals/ATLAS_OPENGL_ES_20260403.signal.md", + "ION/05_context/signals/ATLAS_ORIENTATION_20260403.signal.md", + "ION/05_context/signals/ATLAS_RHEL_20260403.signal.md", + "ION/05_context/signals/ATLAS_ROCKY_ALMALINUX_20260403.signal.md", + "ION/05_context/signals/ATLAS_RUST_ADA_GOLANG_20260403.signal.md", + "ION/05_context/signals/ATLAS_SPIRV_PTX_20260403.signal.md", + "ION/05_context/signals/ATLAS_SYCL_20260403.signal.md", + "ION/05_context/signals/ATLAS_SYSTEMD_CONFEXT_20260403.signal.md", + "ION/05_context/signals/ATLAS_SYSTEMD_PORTABLE_20260412.signal.md", + "ION/05_context/signals/ATLAS_SYSTEMD_SYSEXT_20260403.signal.md", + "ION/05_context/signals/ATLAS_SYSTEMD_UNIT_MODEL_20260412.signal.md", + "ION/05_context/signals/ATLAS_UBUNTU_20260403.signal.md", + "ION/05_context/signals/ATLAS_VULKAN_20260403.signal.md", + "ION/05_context/signals/ATLAS_WASI_COMPONENT_MODEL_20260403.signal.md", + "ION/05_context/signals/ATLAS_WEBASSEMBLY_20260403.signal.md", + "ION/05_context/signals/ATLAS_WEBGL_20260403.signal.md", + "ION/05_context/signals/ATLAS_WEBGPU_20260403.signal.md", + "ION/05_context/signals/CARRIER_LEVEL_DECISION.example.json", + "ION/05_context/signals/CODEX_AGENT_REASONING_PROTOCOL_FIRST_PASS_20260405T1015.signal.md", + "ION/05_context/signals/CODEX_BOOT_LANE_FORMALIZED_20260403T1329.signal.md", + "ION/05_context/signals/CODEX_BRANCH_PARALLEL_SCENARIO_PROOF_20260411T203127.signal.md", + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_AGENT_ONBOARDING_20260412T125519.signal.md", + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_CLARIFICATION_20260412T142448.signal.md", + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_PROPOSAL_20260412T131830.signal.md", + "ION/05_context/signals/CODEX_CAPSULE_PROTOCOL_WEB_MAP_20260403T1225.signal.md", + "ION/05_context/signals/CODEX_CONTEXT_COMPILER_FIRST_PASS_20260403T1855.signal.md", + "ION/05_context/signals/CODEX_CONTINUITY_LAW_AND_PROOF_LOOP_20260403T1228.signal.md", + "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFICATION_ASSESSMENT_20260412T151315.signal.md", + "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFIED_20260412T152659.signal.md", + "ION/05_context/signals/CODEX_DOCTRINE_FLOOR_20260403T1626.signal.md", + "ION/05_context/signals/CODEX_EDGE_ROLE_BOOTS_NORMALIZED_20260403T1633.signal.md", + "ION/05_context/signals/CODEX_EXTERNAL_API_PARITY_SCENARIO_PROOF_20260411T205820.signal.md", + "ION/05_context/signals/CODEX_EXTERNAL_CANONICALIZATION_MEMO_RESPONSE_20260403T2029.signal.md", + "ION/05_context/signals/CODEX_EXTERNAL_GROUNDING_20260403T1214.signal.md", + "ION/05_context/signals/CODEX_GOVERNANCE_PACKET_PILOT_20260403T1754.signal.md", + "ION/05_context/signals/CODEX_HORIZON_REFINEMENT_SCENARIO_PROOF_20260411T204349.signal.md", + "ION/05_context/signals/CODEX_INBOX_NORMALIZED_20260403T1750.signal.md", + "ION/05_context/signals/CODEX_ION_ACCEPTANCE_EVIDENCE_BUNDLE_20260412T150950.signal.md", + "ION/05_context/signals/CODEX_ION_ACTIVE_COMMITMENT_LEDGER_20260411T200339.signal.md", + "ION/05_context/signals/CODEX_ION_CENTERING_RESPONSE_20260403T1253.signal.md", + "ION/05_context/signals/CODEX_ION_DESTINATION_HORIZON_STRATIFICATION_20260411T103346.signal.md", + "ION/05_context/signals/CODEX_ION_KERNEL_CONSTITUTION_SELF_USE_ALIGNMENT_20260410T1545.signal.md", + "ION/05_context/signals/CODEX_ION_LAYERED_IDENTITY_STRATIFICATION_20260411T102929.signal.md", + "ION/05_context/signals/CODEX_ION_ORIGIN_PHASE_ROOT_STRATIFICATION_20260411T103145.signal.md", + "ION/05_context/signals/CODEX_ION_RECOVERY_INDEX_20260411T103541.signal.md", + "ION/05_context/signals/CODEX_KERNEL_ANSWER_RECORD_AND_PLANNER_MANIFEST_RUNTIME_FIRST_PASS_20260404T1235.signal.md", + "ION/05_context/signals/CODEX_KERNEL_CHILD_WORK_ISSUANCE_FIRST_PASS_20260403T2139.signal.md", + "ION/05_context/signals/CODEX_KERNEL_COMMIT_FIRST_PASS_20260403T2103.signal.md", + "ION/05_context/signals/CODEX_KERNEL_DAEMON_ACT_ONCE_FIRST_PASS_20260403T2155.signal.md", + "ION/05_context/signals/CODEX_KERNEL_DAEMON_ARBITER_FIRST_PASS_20260403T2149.signal.md", + "ION/05_context/signals/CODEX_KERNEL_DAEMON_LOOP_FIRST_PASS_20260403T2221.signal.md", + "ION/05_context/signals/CODEX_KERNEL_DAEMON_SIGNAL_CONSUMPTION_FIRST_PASS_20260403T2214.signal.md", + "ION/05_context/signals/CODEX_KERNEL_DISPATCH_FIRST_PASS_20260403T2011.signal.md", + "ION/05_context/signals/CODEX_KERNEL_EXECUTION_FIRST_PASS_20260403T2043.signal.md", + "ION/05_context/signals/CODEX_KERNEL_GRAPH_FIRST_PASS_20260403T1840.signal.md", + "ION/05_context/signals/CODEX_KERNEL_INDEX_FIRST_PASS_20260403T1827.signal.md", + "ION/05_context/signals/CODEX_KERNEL_LOOP_RECEIPTS_TELEMETRY_FIRST_PASS_20260404T0920.signal.md", + "ION/05_context/signals/CODEX_KERNEL_MODEL_FIRST_PASS_20260403T1759.signal.md", + "ION/05_context/signals/CODEX_KERNEL_OPEN_QUESTION_ROUTING_FIRST_PASS_20260403T2113.signal.md", + "ION/05_context/signals/CODEX_KERNEL_QUESTION_ANSWER_AND_PLANNER_GATE_FIRST_PASS_20260404T1155.signal.md", + "ION/05_context/signals/CODEX_KERNEL_QUEUE_PROJECTION_AND_PLANNER_HOUSEKEEPING_FIRST_PASS_20260404T1445.signal.md", + "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_AND_PLANNER_SWEEP_FIRST_PASS_20260404T1605.signal.md", + "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_RECEIPTS_AND_SWEEP_AGGREGATION_FIRST_PASS_20260404T1725.signal.md", + "ION/05_context/signals/CODEX_KERNEL_REVIEWER_QUEUE_AND_PLANNER_LIFECYCLE_FIRST_PASS_20260404T1335.signal.md", + "ION/05_context/signals/CODEX_KERNEL_REVIEW_ESCALATION_FIRST_PASS_20260403T2251.signal.md", + "ION/05_context/signals/CODEX_KERNEL_REVIEW_FOLLOWUP_RESOLUTION_FIRST_PASS_20260404T1015.signal.md", + "ION/05_context/signals/CODEX_KERNEL_ROUTER_TRANSITION_20260403T1548.signal.md", + "ION/05_context/signals/CODEX_KERNEL_SCHEDULER_FIRST_PASS_20260403T1948.signal.md", + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_CONSUMPTION_ARCHIVE_FIRST_PASS_20260403T2127.signal.md", + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_FOLLOWUP_AUTOMATION_FIRST_PASS_20260403T2320.signal.md", + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_INTERPRETATION_EXPIRY_FIRST_PASS_20260403T2206.signal.md", + "ION/05_context/signals/CODEX_KERNEL_STORE_FIRST_PASS_20260403T1814.signal.md", + "ION/05_context/signals/CODEX_KERNEL_VALIDATION_FIRST_PASS_20260403T2052.signal.md", + "ION/05_context/signals/CODEX_KERNEL_VALIDATION_RECEIPT_SIGNAL_FIRST_PASS_20260403T2120.signal.md", + "ION/05_context/signals/CODEX_LANE_NATIVE_SUPPORT_FIELD_STAGING_20260412T165740.signal.md", + "ION/05_context/signals/CODEX_LIVE_KERNEL_STATUS_PILOT_20260403T1745.signal.md", + "ION/05_context/signals/CODEX_M16_ENTRY_CHAIN_RECOVERY_20260411T095033.signal.md", + "ION/05_context/signals/CODEX_M16_EXECUTION_PRIORITY_CARD_20260411T200529.signal.md", + "ION/05_context/signals/CODEX_M16_SECOND_PASS_IDENTITY_ROUTE_20260411T102558.signal.md", + "ION/05_context/signals/CODEX_M16_STARTUP_PACKET_20260411T102003.signal.md", + "ION/05_context/signals/CODEX_M17_EXECUTOR_START_PACKET_LANDED_20260411T202006.signal.md", + "ION/05_context/signals/CODEX_M17_PROOF_HARDENING_20260411T202533.signal.md", + "ION/05_context/signals/CODEX_MASON_PACKAGING_HARDENING_ONBOARDING_20260412T151504.signal.md", + "ION/05_context/signals/CODEX_MINIMAL_TEMPLATE_STACK_20260403T1551.signal.md", + "ION/05_context/signals/CODEX_MISSING_ASSESSMENTS_COMPLETED_20260403T1543.signal.md", + "ION/05_context/signals/CODEX_OFFICIAL_LEAD_TOPOLOGY_20260403T1857.signal.md", + "ION/05_context/signals/CODEX_OPERATOR_SURFACES_RECONCILED_20260403T1633.signal.md", + "ION/05_context/signals/CODEX_ORCHESTRATION_BLUEPRINT_PACKAGE_20260403T1925.signal.md", + "ION/05_context/signals/CODEX_PHASE1_BRIDGE_TRIPLES_LANDED_20260412T112636.signal.md", + "ION/05_context/signals/CODEX_PHASE1_BROWSER_EXTERNAL_RETURN_DRILL_20260412T114946.signal.md", + "ION/05_context/signals/CODEX_PHASE1_DISAGREEMENT_DRILL_20260412T114401.signal.md", + "ION/05_context/signals/CODEX_PHASE1_MOUNT_PROOF_20260412T112636.signal.md", + "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_CLOSEOUT_20260412T115522.signal.md", + "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_PLAN_20260412T110212.signal.md", + "ION/05_context/signals/CODEX_PHASE_FRAME_TEAM_CHECKIN_20260403T1138.signal.md", + "ION/05_context/signals/CODEX_PLAN_PATCH_PACKAGE_20260403T1343.signal.md", + "ION/05_context/signals/CODEX_PLAN_SURFACE_DRIFT_20260403T1333.signal.md", + "ION/05_context/signals/CODEX_PROTOCOL_MISMATCH_WARNING_20260411T094542.signal.md", + "ION/05_context/signals/CODEX_PROTOCOL_TRANSITION_NOTES_20260403T1553.signal.md", + "ION/05_context/signals/CODEX_RATIFICATION_ASSESSMENT_20260403T1513.signal.md", + "ION/05_context/signals/CODEX_RATIFICATION_BRIDGE_20260403T1314.signal.md", + "ION/05_context/signals/CODEX_RATIFICATION_RESPONSE_20260403T1454.signal.md", + "ION/05_context/signals/CODEX_RECOVERY_REPLAY_SCENARIO_PROOF_20260411T203817.signal.md", + "ION/05_context/signals/CODEX_RECURSIVE_WITNESS_DRIFT_ROLLBACK_20260404T2235.signal.md", + "ION/05_context/signals/CODEX_ROUNDTABLE_BRIEF_20260403T1129.signal.md", + "ION/05_context/signals/CODEX_ROUNDTABLE_DELTA_AFTER_READY_20260403T1535.signal.md", + "ION/05_context/signals/CODEX_ROUNDTABLE_IDEAS_AND_FIRST_MOVE_20260403T1228.signal.md", + "ION/05_context/signals/CODEX_RUNTIME_ASSISTED_SEQUENCE_SCENARIO_PROOF_20260411T205345.signal.md", + "ION/05_context/signals/CODEX_SCHEDULER_LAW_SCENARIO_PROOF_20260411T204827.signal.md", + "ION/05_context/signals/CODEX_SEQUENTIAL_KERNEL_PROOF_20260403T1734.signal.md", + "ION/05_context/signals/CODEX_SEQUENTIAL_RUNTIME_PORTABILITY_FIRST_PASS_20260403T2036.signal.md", + "ION/05_context/signals/CODEX_STAFFING_SEMANTIC_IDENTITY_ONBOARDING_20260412T164544.signal.md", + "ION/05_context/signals/CODEX_STARTUP_AUTHORITY_RATIFICATION_RECONCILED_20260412T162824.signal.md", + "ION/05_context/signals/CODEX_STATUS_REPORT_20260403T1513.signal.md", + "ION/05_context/signals/CODEX_SUPERVISOR_CONTINUITY_PACKAGE_20260403T1346.signal.md", + "ION/05_context/signals/CODEX_TASK_WRITEBACK_PILOT_20260403T1748.signal.md", + "ION/05_context/signals/CODEX_TEAM_STATE_TIMELINE_AND_WATCH_20260403T1356.signal.md", + "ION/05_context/signals/CODEX_TEMPLATE_ARCHITECTURE_LAYERING_20260403T1910.signal.md", + "ION/05_context/signals/CODEX_TEMPLATE_BINDINGS_FIRST_PASS_20260403T1923.signal.md", + "ION/05_context/signals/CODEX_TEMPLATE_REFERENCE_RESTORE_20260403T1627.signal.md", + "ION/05_context/signals/CODEX_TOTAL_ION_DEEP_DIVE_20260403T1202.signal.md", + "ION/05_context/signals/CODEX_TRACE_EXECUTOR_REPLAY_20260403T1739.signal.md", + "ION/05_context/signals/CODEX_WITNESS_AUTHORITY_CROSSWALK_20260411T095654.signal.md", + "ION/05_context/signals/CODEX_WORKING_THESIS_PROTOCOL_FIELD_20260403T1156.signal.md", + "ION/05_context/signals/DAIMON_VICE_COMPLETE_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md", + "ION/05_context/signals/DAIMON_VICE_DISSENT_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T1230_ROUNDTABLE_NEXT_MOVE.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T123636_BOOT_SURFACE_MATRIX.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124424_SUPERVISOR_CONTINUITY.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124605_ROOT_PROJECTION_RECONCILIATION.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T125500_TEAM_CHECKIN_PROOF_LOOP_HAUNT.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T130033_ROUNDTABLE_DELTA_AFTER_RECONCILIATION.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T131522_RATIFICATION_PACKAGE_HAUNT.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T135756_TEAM_SNAPSHOT.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T141448_SNAPSHOT_CONCURRENCY_DECISION.signal.md", + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T144835_RATIFICATION_ASSESSMENT.signal.md", + "ION/05_context/signals/MASON_PACKAGING_ENTRY_HARDENING_20260412T161500.signal.md", + "ION/05_context/signals/MASON_TASK_COMPLETE_scaffold.signal.md", + "ION/05_context/signals/NEMESIS_AGENT_SETUP_DAIMON_ARCHAEOLOGY.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_CONTINUITY_STABILIZATION.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PHASE0_SCHEMAS.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_REV2.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_TARGETED.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_TIGHTENING_PASS.signal.md", + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_VIZIER_LATEST.signal.md", + "ION/05_context/signals/NEMESIS_BUILDER_ROUNDTABLE_RESPONSE.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_DECISION_READY.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_DELTA_CONDITIONAL.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CANDIDATE.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CONVERGENCE.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_RATIFICATION_PACKAGE.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_FILED.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_REFRESHED.signal.md", + "ION/05_context/signals/NEMESIS_CONTINUITY_RATIFICATION_DELTA.signal.md", + "ION/05_context/signals/NEMESIS_DIRECTIVE_ROUNDTABLE_ONLY.signal.md", + "ION/05_context/signals/NEMESIS_ESCALATION_CONTINUITY_ROUNDTABLE.signal.md", + "ION/05_context/signals/NEMESIS_IDEAS_AND_FIRST_MOVE_FILED.signal.md", + "ION/05_context/signals/NEMESIS_RATIFICATION_ASSESSMENT_FILED.signal.md", + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_EXPLORE_WITH_CONTINUITY.signal.md", + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_MANUAL_AUTO.signal.md", + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_ION_ACRONYM.signal.md", + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_REFLECTION_ION.signal.md", + "ION/05_context/signals/NEMESIS_RELAY_EUNOIA_INTEGRATION.signal.md", + "ION/05_context/signals/NEMESIS_RELAY_RENAMED.signal.md", + "ION/05_context/signals/NEMESIS_RELAY_ROLE_SETUP.signal.md", + "ION/05_context/signals/NEMESIS_ROUNDTABLE_CHECKPOINT_AWAITING_SOVEREIGN.signal.md", + "ION/05_context/signals/NEMESIS_ROUNDTABLE_CORE_PERSPECTIVES_FILED.signal.md", + "ION/05_context/signals/NEMESIS_ROUNDTABLE_RESPONSE_STATUS.signal.md", + "ION/05_context/signals/NEMESIS_ROUNDTABLE_SYNTHESIS_FILED.signal.md", + "ION/05_context/signals/NEMESIS_ROUNDTABLE_WORKSPACE_READY.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AETHER_ATLAS_ION_REFERENCE.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AGENT_HIERARCHY_REALMS.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AIMOS_DEEP_GAP_ANALYSIS.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_CAPSULE_PROTOCOL_WEB.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_CONTINUITY_PROTOCOL_FIELD.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_MISSION_TOTAL_ION_DEFINITION.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SINGLE_CHAT_MULTI_ROLE.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SOVEREIGN_RELAY_SCOPE.signal.md", + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SYSTEMS_ATLAS_ULTIMATE_OS.signal.md", + "ION/05_context/signals/RELAY_READY_20260403_CONTINUITY_ROUNDTABLE_BRIEF.signal.md", + "ION/05_context/signals/RELAY_VISIBLE_REPORT_20260427.md", + "ION/05_context/signals/THOTH_BRIDGE_PACKET_STATUS_EVIDENCE_COMPLETE_20260412T130500.signal.md", + "ION/05_context/signals/THOTH_CURRENT_PHASE_STAFFING_SEMANTIC_IDENTITY_COMPLETE_20260412T171000.signal.md", + "ION/05_context/signals/VESTIGE_ROUNDTABLE_CONTINUITY_ARCHAEOLOGY_20260403T1400.signal.md", + "ION/05_context/signals/VESTIGE_TASK_COMPLETE_BRIDGE_PACKET_ARCHAEOLOGY_20260412.signal.md", + "ION/05_context/signals/VESTIGE_TASK_COMPLETE_STAFFING_SEMANTIC_IDENTITY_20260412.signal.md", + "ION/05_context/signals/VIZIER_ARTICLE7_PROPOSED_20260403T2200.signal.md", + "ION/05_context/signals/VIZIER_BOOT_CREATED_20260403T1715.signal.md", + "ION/05_context/signals/VIZIER_FORMAL_ROUNDTABLE_20260403T1230.signal.md", + "ION/05_context/signals/VIZIER_HIERARCHY_FILED_20260403T1930.signal.md", + "ION/05_context/signals/VIZIER_IDEAS_FIRST_ACTION_20260403T1600.signal.md", + "ION/05_context/signals/VIZIER_P0_BOOTS_COMPLETE_20260403T1800.signal.md", + "ION/05_context/signals/VIZIER_P1_COMPLETE_20260403T1830.signal.md", + "ION/05_context/signals/VIZIER_P2_INFRA_COMPLETE_20260403T1900.signal.md", + "ION/05_context/signals/VIZIER_PHASE0A_COMPLETE_20260403T0100.signal.md", + "ION/05_context/signals/VIZIER_PHASE0B_PROOF_LOOP_20260403T1700.signal.md", + "ION/05_context/signals/VIZIER_PHASE0_COMPLETE_20260403T0040.signal.md", + "ION/05_context/signals/VIZIER_PLAN_REVISED_R2_20260402T2300.signal.md", + "ION/05_context/signals/VIZIER_PRERATIFICATION_DIRECTIVE_20260403T2100.signal.md", + "ION/05_context/signals/VIZIER_RATIFICATION_ASSESSMENT_20260403T2100.signal.md", + "ION/05_context/signals/VIZIER_RATIFICATION_READY_20260403T2130.signal.md", + "ION/05_context/signals/VIZIER_RATIFICATION_REQUEST_20260403T2030.signal.md", + "ION/05_context/signals/VIZIER_ROOT_PROJECTION_RECONCILED_20260403T1730.signal.md", + "ION/05_context/signals/VIZIER_ROUNDTABLE_RECALIBRATION_20260403T1210.signal.md", + "ION/05_context/signals/VIZIER_ROUNDTABLE_RESPONSE_20260403T1130.signal.md", + "ION/05_context/signals/VIZIER_SCHEMA_REVISION_20260403T0130.signal.md", + "ION/05_context/signals/VIZIER_STATUS_REPORT_20260403T2000.signal.md", + "ION/05_context/signals/VIZIER_SYNTHESIS_RESPONSE_20260403T1500.signal.md", + "ION/05_context/signals/VIZIER_TASK_COMPLETE_T01_20260402T2345.signal.md", + "ION/05_context/signals/VIZIER_TIGHTENING_PASS_20260403T0135.signal.md", + "ION/05_context/signals/VIZIER_TOTAL_ION_DIRECTION_20260403T1300.signal.md", + "ION/05_context/signals/VIZIER_TRUE_CORES_20260403T1400.signal.md", + "ION/05_context/signals/VIZIER_WEB_MAP_COMPLETE_20260403T1630.signal.md", + "ION/05_context/signals/archive/BOOTSTRAP_BLOCKED_BOOTSTRAP_FIRST_LAWFUL_DAEMON_PRESSURE_FROM_THIS_ROOT_20260423150348_TASK_20260423150348.signal.json", + "ION/05_context/signals/current_shell_stabilization_receipt_20260427.txt", + "ION/05_context/signals/ion_default_carrier_onboarding_receipt_20260427.txt", + "ION/05_context/signals/ion_default_carrier_onboarding_sample_20260427.json", + "ION/05_context/signals/v100_living_encyclopedia_maintenance_receipt_20260501.txt", + "ION/05_context/signals/v102_context_metabolism_receipt_20260502.txt", + "ION/05_context/signals/v103_temporal_context_enforcement_reconciliation_receipt_20260502.txt", + "ION/05_context/signals/v104_operational_truth_audit_receipt_20260502.txt", + "ION/05_context/signals/v105_deep_operational_cartography_receipt_20260502.txt", + "ION/05_context/signals/v106_core_telemetry_runtime_floor_receipt_20260502.txt", + "ION/05_context/signals/v75_relay_spawn_report_20260427.md", + "ION/05_context/signals/v75_spawn_packet_mason_structure_audit_20260427.md", + "ION/05_context/signals/v75_spawn_packet_vestige_provenance_audit_20260427.md", + "ION/05_context/signals/v75_spawn_return_mason_structure_audit_20260427.md", + "ION/05_context/signals/v75_spawn_return_vestige_provenance_audit_20260427.md", + "ION/05_context/signals/v75_steward_spawn_integration_receipt_20260427.txt", + "ION/05_context/signals/v76_cursor_capability_and_mcp_bridge_receipt_20260427.txt", + "ION/05_context/signals/v76_mcp_bridge_auditor_return_20260427.md", + "ION/05_context/signals/v76_mcp_bridge_mason_return_20260427.md", + "ION/05_context/signals/v76_mcp_bridge_relay_report_20260427.md", + "ION/05_context/signals/v76_mcp_bridge_steward_integration_receipt_20260427.txt", + "ION/05_context/signals/v76_mcp_bridge_workpacket_20260427.md", + "ION/05_context/signals/v76_relay_visible_workflow_report_20260427.md", + "ION/05_context/signals/v76_relay_work_cycle_input_20260427.md", + "ION/05_context/signals/v76_role_carrier_return_proposal_20260427.md", + "ION/05_context/signals/v76_steward_integration_receipt_20260427.txt", + "ION/05_context/signals/v76_steward_route_decision_20260427.md", + "ION/05_context/signals/v77_carrier_context_proof_gate_receipt_20260428.txt", + "ION/05_context/signals/v78_canonical_mount_demo_packet_20260427.json", + "ION/05_context/signals/v79_ion_context_authority_team_receipt_20260428.txt", + "ION/05_context/signals/v80_cursor_full_project_consolidation_receipt_20260428.txt", + "ION/05_context/signals/v81_agent_context_systems_repair_receipt_20260428.txt", + "ION/05_context/signals/v82_agent_context_system_runtime_wiring_receipt_20260428.txt", + "ION/05_context/signals/v84_carrier_continuation_and_productized_runtime_receipt_20260429.txt", + "ION/05_context/signals/v85_carrier_task_return_intake_receipt_20260429.txt", + "ION/05_context/signals/v90_live_joc_cockpit_webview_binding_receipt_20260429.txt", + "ION/05_context/signals/v91_agent_context_dynamics_and_frontdoor_receipt_20260429.txt", + "ION/05_context/signals/v92_mcp_control_bridge_receipt_20260430.txt", + "ION/05_context/signals/v93_cursor_ion_autopilot_command_and_subagent_surface_receipt_20260430.txt", + "ION/05_context/signals/v94_cursor_canonical_workflow_unification_receipt_20260430.txt", + "ION/05_context/signals/v95_compiled_role_context_bundle_invariant_receipt_20260430.txt", + "ION/05_context/signals/v96_full_consolidated_runtime_receipt_20260430.txt", + "ION/05_context/signals/v97_lead_dev_survival_audit_and_autonomous_loop_recovery_receipt_20260501.txt", + "ION/05_context/signals/v98_master_orchestration_automation_and_ui_recovery_receipt_20260501.txt", + "ION/05_context/signals/v99_agent_context_continuity_and_runtime_separation_receipt_20260501.txt", + "ION/05_context/steward_handoffs/ION_Steward_Implementation_Handoff_API_Provider_Orchestration_Model_Economics.md", + "ION/06_intelligence/archaeology/vestige/alerts/README.md", + "ION/06_intelligence/archaeology/vestige/continuity.md", + "ION/06_intelligence/archaeology/vestige/open_threads/2026-04-12_current_phase_staffing_and_semantic_identity.md", + "ION/06_intelligence/archaeology/vestige/open_threads/README.md", + "ION/06_intelligence/archaeology/vestige/reports/2026-04-03_continuity_roundtable.md", + "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_bridge_packet_family_archaeology.md", + "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_current_phase_staffing_and_semantic_identity_archaeology.md", + "ION/06_intelligence/archaeology/vestige/reports/README.md", + "ION/06_intelligence/archaeology/vestige/watchlist.md", + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_audit.md", + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_rev2_audit.md", + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_targeted_fixes_audit.md", + "ION/06_intelligence/audits/2026-04-02_phase0_schema_set_audit.md", + "ION/06_intelligence/audits/2026-04-02_vizier_latest_work_audit.md", + "ION/06_intelligence/audits/2026-04-03_codex_runtime_readiness_audit.md", + "ION/06_intelligence/audits/2026-04-03_continuity_recovery_delta_audit.md", + "ION/06_intelligence/audits/2026-04-03_continuity_roundtable_kickoff.md", + "ION/06_intelligence/audits/2026-04-03_continuity_stabilization_audit.md", + "ION/06_intelligence/audits/2026-04-03_nemesis_ratification_assessment.md", + "ION/06_intelligence/audits/2026-04-03_vizier_tightening_pass_audit.md", + "ION/06_intelligence/audits/2026-04-04_codex_recursive_witness_drift_rollback.md", + "ION/06_intelligence/audits/2026-04-08_ion_operational_rebase_audit.md", + "ION/06_intelligence/audits/2026-04-08_workflow_module_alignment_audit.md", + "ION/06_intelligence/audits/2026-04-08_workflow_self_use_audit.md", + "ION/06_intelligence/audits/2026-04-12_phase1_browser_mount_boundary_audit.md", + "ION/06_intelligence/daimon/vizier/dissent_ledger.md", + "ION/06_intelligence/daimon/vizier/future_answerability.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_boot_and_surface_drift_matrix.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_continuity_roundtable_haunt.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_ratification_package_haunt.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_root_projection_reconciliation_vice.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_decision_request_snapshot_concurrency.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_delta_after_reconciliation_vice.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_next_move_operational_landing_vice.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_supervisor_continuity_classification_vice.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_checkin_convergence_and_proof_loop_haunt.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_objective_timeline_snapshot.md", + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_vice_ratification_assessment.md", + "ION/06_intelligence/daimon/vizier/shadow_continuity.md", + "ION/06_intelligence/daimon/vizier/unresolved_contradictions.md", + "ION/06_intelligence/decisions/2026-04-17_aim_ion_aim_os_classification_canonicalization_decision.md", + "ION/06_intelligence/decisions/2026-04-17_external_transport_shell_current_phase_disposition_decision.md", + "ION/06_intelligence/decisions/2026-04-17_packaged_root_nested_path_disambiguation_canonicalization_decision.md", + "ION/06_intelligence/decisions/2026-04-17_retained_dual_center_settlement_canonicalization_decision.md", + "ION/06_intelligence/decisions/2026-04-17_root_authority_carrier_export_bundle_canonicalization_decision.md", + "ION/06_intelligence/decisions/2026-04-17_top_level_production_surface_promotion_map_canonicalization_decision.md", + "ION/06_intelligence/decisions/2026-04-17_workspace_root_authority_canonicalization_decision.md", + "ION/06_intelligence/decisions/T08-T14_authority_resolutions.md", + "ION/06_intelligence/decisions/relay_vestige_continuity_class.md", + "ION/06_intelligence/evidence/README.md", + "ION/06_intelligence/orchestration/2026-04-08_ion_acceptance_matrix_and_definition_of_done.md", + "ION/06_intelligence/orchestration/2026-04-08_ion_completion_phase_architecture.md", + "ION/06_intelligence/orchestration/2026-04-08_ion_dependency_graph_and_critical_path.md", + "ION/06_intelligence/orchestration/2026-04-08_ion_execution_tracks_and_workstreams.md", + "ION/06_intelligence/orchestration/2026-04-08_ion_project_completion_orchestration.md", + "ION/06_intelligence/orchestration/2026-04-08_ion_risk_register_and_controls.md", + "ION/06_intelligence/orchestration/2026-04-09_current_state_trajectory_and_l2_execution_assessment.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_current_state_vs_end_state_roadmap.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_full_system_architecture_and_end_state_framework.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_horizon_tightening_and_enactment_model.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_ide_and_operating_substrate_vision.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_kernel_law_and_runtime_model.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_packet_handoff_and_takeover_model.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_scheduler_and_orchestration_model.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_system_overview.md", + "ION/06_intelligence/orchestration/2026-04-09_ion_workflow_and_continuity_lifecycle.md", + "ION/06_intelligence/orchestration/2026-04-09_post_k6_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_k7_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_l0_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_l1_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_l2_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_l3_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_l4_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_m0_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-09_post_m1_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_activation_protocol_next_packet.md", + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md", + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_manifest_protocol_next_packet.md", + "ION/06_intelligence/orchestration/2026-04-10_daemon_bootstrap_bridge_next_packet.md", + "ION/06_intelligence/orchestration/2026-04-10_ion_kernel_constitution_self_use_alignment_and_forward_path.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m10_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m11_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m12_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m13_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m14_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m15_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m16_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m2_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m3_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m4_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m5_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m6_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m7_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m8_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-10_post_m9_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_branch_parallel_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_external_api_parity_scenario_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_horizon_refinement_scenario_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_recovery_replay_scenario_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_runtime_assisted_sequence_scenario_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_scheduler_law_scenario_proof_hardening_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-11_post_m17_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-12_composer2_support_field_setup_and_operator_runbook.md", + "ION/06_intelligence/orchestration/2026-04-12_current_branch_active_center_map.md", + "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_assessment.md", + "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_record.md", + "ION/06_intelligence/orchestration/2026-04-12_current_phase_orchestration_management_map.md", + "ION/06_intelligence/orchestration/2026-04-12_governed_template_context_feed_map.md", + "ION/06_intelligence/orchestration/2026-04-12_ion_acceptance_evidence_bundle_current_state.md", + "ION/06_intelligence/orchestration/2026-04-12_phase1_template_governance_rollout_plan.md", + "ION/06_intelligence/orchestration/2026-04-12_post_phase1_template_governance_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-12_post_ratification_execution_preparation_and_startup_map.md", + "ION/06_intelligence/orchestration/2026-04-12_staffing_and_semantic_identity_codex_consolidation_proposal.md", + "ION/06_intelligence/orchestration/2026-04-12_steward_current_phase_truename_and_template_update_note.md", + "ION/06_intelligence/orchestration/2026-04-13_consolidation_state_remaining_work_and_evolution_path.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass10_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass11_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass12_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass13_atlas_base_stabilization_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass14_working_atlas_base_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass15_operating_layer_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass16_packet_gate_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass17_work_start_examples_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass18_question_class_control_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass19_answer_output_control_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass20_landing_horizon_control_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass21_control_card_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass22_lifecycle_demonstration_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass23_stable_operating_layer_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass24_project_control_kernel_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass25_kernel_escalation_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass26_return_reassessment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass27_kernel_freeze_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass28_kernel_thaw_protocol_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass29_kernel_revision_lifecycle_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass2_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass30_kernel_governance_cadence_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass31_governance_outcomes_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass32_era2_transition_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass33_lane_a_meta_template_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass34_lane_b_activation_authority_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass35_lane_c_runtime_session_api_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass36_runtime_surface_design_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass37_activation_surface_design_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass3_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass4_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass5_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass6_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass7_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass8_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass9_enrichment_note.md", + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_program_index.md", + "ION/06_intelligence/orchestration/2026-04-13_current_repo_authority_stabilization.md", + "ION/06_intelligence/orchestration/2026-04-13_fractured_core_recovery_map.md", + "ION/06_intelligence/orchestration/2026-04-13_master_recovery_record.md", + "ION/06_intelligence/orchestration/2026-04-13_prior_audits_failure_record.md", + "ION/06_intelligence/orchestration/2026-04-13_recovery_program.md", + "ION/06_intelligence/orchestration/2026-04-13_staffing_and_semantic_identity_steward_consolidation_proposal.md", + "ION/06_intelligence/orchestration/2026-04-13_startup_template_feed_and_task_routing_defaults.md", + "ION/06_intelligence/orchestration/2026-04-13_steward_fifth_pass_role_and_binding_alignment.md", + "ION/06_intelligence/orchestration/2026-04-13_steward_second_pass_active_surface_alignment.md", + "ION/06_intelligence/orchestration/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults.md", + "ION/06_intelligence/orchestration/2026-04-13_steward_sixth_pass_role_field_and_path_normalization.md", + "ION/06_intelligence/orchestration/2026-04-13_steward_third_pass_template_and_example_alignment.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass38_meta_template_surface_design_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass39_activation_authority_review_draft_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass40_executor_lifecycle_review_draft_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass41_activation_lifecycle_interface_review_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass42_activation_lifecycle_joint_promotion_candidate_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass43_activation_lifecycle_counterexample_review_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass44_activation_lifecycle_carrier_crossing_examples_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass45_activation_lifecycle_receipt_settlement_examples_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass46_activation_lifecycle_install_path_mapping_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass47_activation_lifecycle_thaw_readiness_reassessment_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass48_activation_lifecycle_bounded_thaw_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass49_activation_lifecycle_thaw_closure_review_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass50_activation_lifecycle_active_law_emission_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass51_orchestration_board_reset_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass52_branch_charter_pack_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass53_lane_c_runtime_review_entry_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass54_runtime_seam_pressure_note.md", + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass55_runtime_worked_examples_note.md", + "ION/06_intelligence/orchestration/2026-04-17_branch_root_shell_vs_content_root_clarification.md", + "ION/06_intelligence/orchestration/2026-04-17_canonicalization_decision_template_surface_change.md", + "ION/06_intelligence/orchestration/2026-04-17_class_c_operator_docs_selective_extraction_and_reanchoring.md", + "ION/06_intelligence/orchestration/2026-04-17_external_service_shell_vs_runtime_entry_clarification.md", + "ION/06_intelligence/orchestration/2026-04-17_post_q005_execution_phase_readiness_assessment.md", + "ION/06_intelligence/orchestration/2026-04-17_post_reintegration_canonicalization_state_forward_path_and_codex_handoff.md", + "ION/06_intelligence/orchestration/2026-04-17_reintegration_state_and_canonical_root_assessment.md", + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_current_carrier_exercise_receipt.md", + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_external_carrier_exercise_briefs.md", + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_modeled_carrier_read_test.md", + "ION/06_intelligence/orchestration/2026-04-17_system_lineage_profile_template_surface_change.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass56_runtime_promotion_candidate_review_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass57_runtime_install_path_mapping_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass58_runtime_receipt_linkage_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass59_runtime_negative_case_review_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass60_runtime_pause_reentry_closure_and_thaw_reassessment_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass61_runtime_bounded_thaw_packet_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass62_runtime_thaw_closure_review_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass63_runtime_active_law_emission_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass64_post_lane_c_reassessment_and_lane_a_selection_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass65_lane_a_recovery_first_note.md", + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass66_lane_a_bridge_repair_eligibility_note.md", + "ION/06_intelligence/orchestration/2026-04-18_post_lane_c_active_law_emission_state_and_next_horizon_reassessment.md", + "ION/06_intelligence/orchestration/2026-04-18_post_reintegration_floor_state_and_next_horizon_selection.md", + "ION/06_intelligence/orchestration/2026-04-22_codex_current_phase_role_and_boot_retirement_note.md", + "ION/06_intelligence/orchestration/2026-04-22_current_phase_agent_roster_settlement_packet.md", + "ION/06_intelligence/orchestration/2026-04-22_promoted_lane_native_support_role_continuity_normalization_note.md", + "ION/06_intelligence/orchestration/2026-04-22_promoted_support_role_rank_refinement_note.md", + "ION/06_intelligence/orchestration/2026-04-22_relay_semantic_promotion_review_note.md", + "ION/06_intelligence/orchestration/2026-04-22_vestige_semantic_promotion_review_note.md", + "ION/06_intelligence/orchestration/2026-04-22_weaver_current_phase_disposition_clarification.md", + "ION/06_intelligence/orchestration/2026-04-23_orchestration_surface_sync_after_lane_a_bridge_pair_landing.md", + "ION/06_intelligence/orchestration/2026-04-23_vm_manual_auto_healthcheck_mission_report.md", + "ION/06_intelligence/orchestration/2026-04-24_cursor_ion_demo_audit_and_build_mission.md", + "ION/06_intelligence/orchestration/2026-04-24_ultimate_ai_chat_demo_spine_plan.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_rootlaw_ratification_and_build_plan.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_implementation_plan.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_origin_recovery_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_recovery_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v10_bounded_commit_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v4_operationalization_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v6_reaction_selection_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v7_projection_index_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v8_graph_writeback_proposal_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v9_review_gate_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_origin_to_current_context_graph_mapping.md", + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_template_completion_event_phase1_implementation_packet.md", + "ION/06_intelligence/orchestration/context_graph_restoration/graph_py_comparison_report.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_base_usage_contract.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_card.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_lifecycle_demonstration.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_gated_work_start_record_template.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_operating_layer_transition.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_orchestration_horizon_record_template.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_packet_gate_checklist.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_work_gating_protocol.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/bounded_extension_vs_illegal_reinvention.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_classes.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_defaults.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_class_defaults.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_classes.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_classes.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_defaults.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/bridge_repair_current_branch_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/consult_only_runtime_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/recover_first_meta_template_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/stop_and_reassess_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/widen_and_return_activation_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/default_project_control_kernel_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_controlled_reintegration_transition_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_reintegration_lane_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_control_defaults_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_authority_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_completion_note.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_packet_requirements.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/bridge_repair_current_branch_question.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/compare_centers_activation_question.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/consult_only_runtime_question.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/recover_first_meta_template_question.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_completion_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_freeze_manifest.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_trust_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/non_widening_work_classes.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/operating_layer_stability_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/orchestration_horizon_and_completion_requirements.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_change_classes.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_record_template.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_manifest.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_cadence.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_classes.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_defaults.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_schedule.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_health_checks.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_manifest.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_reassessment_triggers.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_return_conditions.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/defaults_correction_review.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/keep_frozen_review.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/revision_warranted_review.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_record_template.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_and_thaw_protocol.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_approval_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/clarification_only_revision.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/defaults_correction_revision.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/new_control_primitive_revision.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_record_template.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_state_card.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_phases.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_rules.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_scope.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_status.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/stable_operating_layer_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/00_program/work_posture_selection_guide.md", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_chronology.md", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_relations.md", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/current_branch_variant_chain.md", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/master_archive_register.csv", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_matrix.md", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_status_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.csv", + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.md", + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_provenance_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_relation_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/contradiction_ledger.md", + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_failure_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_consolidation_outcomes.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/aether_os_v4_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/atlas_systems_reference_library.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/composeraudit_wrapper_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/conjugate_basis_hidden_field_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/consolidated_atlas_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/current_branch_template_law_kernel_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/geminiaudit_wrapper_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ion_build_runtime_api_session_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ionv2_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/old_aether_law_atlas_template_development_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/operation_victus_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_codex_precursor_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_precursor_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_gemini_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_opus_meta_consolidation_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_family.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_gemini_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_opus_profile.md", + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/victus_gemini_manager_orchestrator_swarm_line.md", + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.md", + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/most_evolved_systems_register.csv", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_meta_template_vs_current_branch_delta_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_template_development_exact_match_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_comparison_matrix.md", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_recovery.md", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/protocol_atlas.md", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_atlas.md", + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_surface_evolution_history.md", + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/compactness_vs_explicitness_conflict_note.md", + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/conjugate_basis_hidden_field_ontology_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/linkage_failure_map.md", + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/smallest_values_constitution.md", + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/soul_coherence_audit.md", + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/values_loss_and_drift_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_execution_policies_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_session_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/queue_scheduler_session_lineage.md", + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/runtime_api_session_recovery_map.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_full_pipeline_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_orchestrator_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_project_gemini_swarm_cycle_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/activation_authority_center_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_activation_lineage.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_orchestrator_swarm_recovery_map.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/swarm_test_lineage.md", + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/victus_project_gemini_rehomed_fork_comparison.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/current_branch_vs_precursor_compaction_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/ionv2_vs_current_branch_compactness_and_loss_map.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/predecessor_loss_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/supersession_graph.md", + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/system_equivalence_map.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/implementation_lineage_register.csv", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_aether_os_v4_runtime_swarm_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_conjugate_basis_hidden_field_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ion_build_static_capability_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ionv2_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_codex_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_gemini_pipeline_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_opus_pipeline_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_pipeline_pytest_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_victus_gemini_static_capability_receipt.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_index.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_read_order.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_control_surface.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_operating_kernel.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_project_control_kernel.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/era2_controlled_reintegration.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/frozen_kernel_change_path.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_of_ION.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_semantic_map.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/navigation_guide_for_future_ai.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_governance_card.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_lifecycle.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_atlas_base.md", + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_center_selection_guide.md", + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/conflict_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/missing_evidence_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/unresolved_identity_register.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_transition_candidates.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_transition_candidates.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_transition_candidates.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/API_RUNTIME_ENTRY_PROTOCOL.review_draft.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/RUNTIME_SESSION_AUTHORITY_PROTOCOL.review_draft.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.review_draft.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/runtime_session_review_boundary_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_outlines.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_outlines.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_outlines.md", + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_AUTHORITY_PROTOCOL.review_draft.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_LIFECYCLE_INTERFACE.review_note.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/EXECUTOR_LIFECYCLE_PROTOCOL.review_draft.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_findings.md", + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_thaw_readiness_criteria.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_thaw_readiness_criteria.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples.md", + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_findings.md", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_findings.md", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples.md", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping.md", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping.md", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment.md", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment.md", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_adjacent_edits.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_touch_set.csv", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_review_only_remainder.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_adjacent_edits.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_touch_set.csv", + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_review_only_remainder.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review.md", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board.md", + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/adversarial_audit_branch_charter.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_charter_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_output_contract.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_start_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/conductor_chat_charter.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/current_parallelization_strategy.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_a_meta_template_branch_charter.md", + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_c_runtime_branch_charter.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/01_constitutional_reintegration_and_canon_foundry_proposal.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/02_ion_estate_build_lines_and_root_status_assessment.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/03_aim_os_and_aim_ion_comparative_integration_report.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/04_canon_foundry_operating_model_and_registry_stack.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/05_ion_future_evolution_timeline_from_reintegration.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/06_decision_gates_open_questions_and_first_execution_order.md", + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_matrix.csv", + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_review_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_reassessment_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_packet.md", + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/README.md", + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_judgment.md", + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_packet.md", + "ION/06_intelligence/orchestration/custom_gpt/00_CUSTOM_GPT_PREP_INDEX.md", + "ION/06_intelligence/orchestration/custom_gpt/01_CUSTOM_GPT_READINESS_ASSESSMENT.md", + "ION/06_intelligence/orchestration/custom_gpt/02_ION_CUSTOM_GPT_BUILD_SPEC.md", + "ION/06_intelligence/orchestration/custom_gpt/03_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md", + "ION/06_intelligence/orchestration/custom_gpt/04_WORKING_CONTINUITY_BUNDLE_SCHEMA.md", + "ION/06_intelligence/orchestration/custom_gpt/05_VAULT_CONTINUITY_BUNDLE_SCHEMA.md", + "ION/06_intelligence/orchestration/custom_gpt/06_CONTINUITY_EXPORT_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/07_CONTINUITY_RESUME_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/08_ACTIONS_DECISION_TREE_FOR_ION.md", + "ION/06_intelligence/orchestration/custom_gpt/09_ION_CUSTOM_GPT_INSTRUCTION_TEMPLATE.md", + "ION/06_intelligence/orchestration/custom_gpt/10_ION_CUSTOM_GPT_KNOWLEDGE_PACK_LAYOUT.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/00_BUILDER_READY_INDEX.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/01_BUILDER_READY_INSTRUCTIONS.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/02_CONVERSATION_STARTERS.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/03_BUILDER_WORKFLOW.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/04_KNOWLEDGE_PACK_MANIFEST.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/05_OPENAI_SURFACE_NOTES.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/06_END_TO_END_VALIDATION_RUNBOOK.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/07_EXAMPLE_BUNDLE_USAGE.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/01_ION_GPT_SHELL_LAW.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/02_WORKING_CONTINUITY_BUNDLE_SCHEMA.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/03_CONTINUITY_EXPORT_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/04_CONTINUITY_RESUME_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/05_TEMPORAL_OBJECT_SCHEMA.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/06_ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/07_TEMPORAL_CONTEXT_LEASE_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/08_TRIPLE_TIME_RECONCILIATION_PROTOCOL.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/09_ION_CUSTOM_GPT_BUILD_SPEC.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/10_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md", + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/README.md", + "ION/06_intelligence/orchestration/demo_spine/2026-04-25_v21_demo_spine_consolidation_report.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v22_summary_refresh_demo_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v23_summary_refresh_projection_demo_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v24_summary_refresh_graph_proposal_demo_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v25_summary_refresh_review_demo_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v26_summary_refresh_bounded_commit_demo_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v27_summary_refresh_demo_replay_cli_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v28_summary_refresh_demo_replay_doctor_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v29_summary_refresh_demo_certification_gate_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v30_summary_refresh_demo_evidence_bundle_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v31_summary_refresh_demo_release_candidate_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v32_summary_refresh_demo_release_candidate_verifier_plan.md", + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v33_production_readiness_charter_and_ratification_matrix_plan.md", + "ION/06_intelligence/orchestration/temporal_stack/00_TEMPORAL_STACK_INDEX.md", + "ION/06_intelligence/orchestration/temporal_stack/01_ION_TEMPORAL_DEVELOPMENT_FRAMEWORK_EXPANDED.md", + "ION/06_intelligence/orchestration/temporal_stack/02_TEMPORAL_WORKED_SCENARIOS_FOR_ION.md", + "ION/06_intelligence/orchestration/temporal_stack/03_TEMPORAL_STACK_MAPPING_INTO_CURRENT_ION.md", + "ION/06_intelligence/orchestration/temporal_stack/04_FIRST_PASS_TEMPORAL_EVALUATOR_DESIGN.md", + "ION/06_intelligence/orchestration/temporal_stack/05_TEMPORAL_EVALUATOR_PSEUDOCODE_AND_DATA_STRUCTURES.md", + "ION/06_intelligence/orchestration/temporal_stack/06_EXACT_CURRENT_ION_MODULE_MAPPING.md", + "ION/06_intelligence/orchestration/temporal_stack/context/CURRENT_BRANCH_IMPORT_LEDGER_AND_SIBLING_AUTHORITIES.md", + "ION/06_intelligence/relay/relay/briefs/2026-04-03_continuity_roundtable_brief.md", + "ION/06_intelligence/relay/relay/briefs/2026-04-03_relay_ratification_assessment.md", + "ION/06_intelligence/relay/relay/briefs/MISSION_TOTAL_ION_DEFINITION_AND_LINK_GRAPH.md", + "ION/06_intelligence/relay/relay/briefs/README.md", + "ION/06_intelligence/relay/relay/continuity.md", + "ION/06_intelligence/relay/relay/inbound/README.md", + "ION/06_intelligence/relay/relay/interaction_digest.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_mission_total_ion_definition_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_agent_hierarchy_realms_specialists_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_aimos_deep_gap_analysis_for_ion_understanding_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_capsule_web_of_protocol_context_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_consider_aether_atlas_for_ion_understanding_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_continuity_as_protocol_field_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_relay_scope_mission_hub_disclaimer_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_single_chat_multi_role_kernel_routing_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_systems_atlas_for_ultimate_os_ion_to_ALL.md", + "ION/06_intelligence/relay/relay/outbound/README.md", + "ION/06_intelligence/relay/relay/persona_state.md", + "ION/06_intelligence/relay/relay/sovereign_profile.md", + "ION/06_intelligence/reports/2026-04-23_vm_healthcheck_continuation_pass.md", + "ION/06_intelligence/research/2026-04-03_TOTAL_ION_DIRECTION_vizier.md", + "ION/06_intelligence/research/2026-04-03_TRUE_CORES_OF_ION_vizier.md", + "ION/06_intelligence/research/2026-04-03_agent_hierarchy_field_map.md", + "ION/06_intelligence/research/2026-04-03_builder_continuity_roundtable.md", + "ION/06_intelligence/research/2026-04-03_codex_capsule_protocol_web_and_recovery_map.md", + "ION/06_intelligence/research/2026-04-03_codex_context_compiler_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_continuity_roundtable.md", + "ION/06_intelligence/research/2026-04-03_codex_end_to_end_law_protocol_template_review_and_kernel_router_transition.md", + "ION/06_intelligence/research/2026-04-03_codex_future_orchestration_blueprint.md", + "ION/06_intelligence/research/2026-04-03_codex_governance_packet_pilot.md", + "ION/06_intelligence/research/2026-04-03_codex_ide_native_phase_frame_and_team_checkin.md", + "ION/06_intelligence/research/2026-04-03_codex_inbox_normalization.md", + "ION/06_intelligence/research/2026-04-03_codex_ion_centering_response.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_child_work_issuance_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_commit_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_act_once_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_arbiter_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_loop_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_dispatch_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_execution_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_graph_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_index_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_model_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_open_question_routing_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_review_escalation_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_scheduler_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_consumption_archive_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_followup_automation_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_store_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_receipt_signal_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_lead_journal.md", + "ION/06_intelligence/research/2026-04-03_codex_live_kernel_status_pilot.md", + "ION/06_intelligence/research/2026-04-03_codex_official_agent_and_support_topology.md", + "ION/06_intelligence/research/2026-04-03_codex_phase_0b_build_run_priorities.md", + "ION/06_intelligence/research/2026-04-03_codex_plan_continuity_patch_package.md", + "ION/06_intelligence/research/2026-04-03_codex_plan_surface_drift_note.md", + "ION/06_intelligence/research/2026-04-03_codex_protocol_field_working_thesis.md", + "ION/06_intelligence/research/2026-04-03_codex_ratification_response_and_guardrails.md", + "ION/06_intelligence/research/2026-04-03_codex_response_to_external_canonicalization_memo.md", + "ION/06_intelligence/research/2026-04-03_codex_roundtable_delta_after_ratification_ready.md", + "ION/06_intelligence/research/2026-04-03_codex_roundtable_ideas_and_first_move.md", + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_governance_trace.md", + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_implementation_trace.md", + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_router_build_and_test.md", + "ION/06_intelligence/research/2026-04-03_codex_sequential_runtime_portability_first_pass.md", + "ION/06_intelligence/research/2026-04-03_codex_supervisor_continuity_correction_package.md", + "ION/06_intelligence/research/2026-04-03_codex_task_writeback_pilot.md", + "ION/06_intelligence/research/2026-04-03_codex_team_checkin_and_external_grounding.md", + "ION/06_intelligence/research/2026-04-03_codex_team_state_objectives_timeline_and_watch.md", + "ION/06_intelligence/research/2026-04-03_codex_template_architecture_shared_vs_agent_specific.md", + "ION/06_intelligence/research/2026-04-03_codex_total_ion_deep_dive.md", + "ION/06_intelligence/research/2026-04-03_codex_trace_executor_and_replay_bundle.md", + "ION/06_intelligence/research/2026-04-03_end_to_end_governance_map_vizier.md", + "ION/06_intelligence/research/2026-04-03_protocol_context_web_map.md", + "ION/06_intelligence/research/2026-04-03_vizier_continuity_roundtable.md", + "ION/06_intelligence/research/2026-04-03_vizier_inbox_loop_proof.md", + "ION/06_intelligence/research/2026-04-03_vizier_phase0b_proof_loop.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_review_followup_resolution_first_pass.md", + "ION/06_intelligence/research/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass.md", + "ION/06_intelligence/research/2026-04-05_codex_agent_reasoning_window_and_anti_drift_protocol.md", + "ION/06_intelligence/research/2026-04-07_ion_evolution_consolidated_plan.md", + "ION/06_intelligence/research/2026-04-08_alignment_journal.md", + "ION/06_intelligence/research/2026-04-08_codex_workflow_realignment_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-08_end_to_end_workflow_rehearsal.md", + "ION/06_intelligence/research/2026-04-08_execution_symmetry_and_horizon_journal.md", + "ION/06_intelligence/research/2026-04-08_ion_operationalization_master_plan.md", + "ION/06_intelligence/research/2026-04-08_k2_packet_handoff_standardization_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-08_k3_horizon_groundwork_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-08_master_completion_orchestration_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-08_operator_entry_cli_examples.md", + "ION/06_intelligence/research/2026-04-09_k3_horizon_state_groundwork_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_rehearsal_expansion_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_workflow_rehearsal_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-09_k7_blind_continuation_takeover_rehearsal_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-09_m1_bounded_multi_agent_allocator_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_bootstrap_activation_landed.md", + "ION/06_intelligence/research/2026-04-10_bootstrap_init_landed.md", + "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_bridge_landed.md", + "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_non_idle_proof.md", + "ION/06_intelligence/research/2026-04-10_daemon_surface_verification_and_bootstrap_path.md", + "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment.md", + "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m17_handoff_capsule_executor_start_packet_materialization_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_carrier_rebinding_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_rebinding_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_active_commitment_vs_strategic_witness_ledger.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_destination_horizon_stratification.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_evidence_map.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_working_map.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_origin_destination_recovery_index.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_layered_identity_stratification.md", + "ION/06_intelligence/research/2026-04-11_codex_ion_origin_phase_and_root_stratification.md", + "ION/06_intelligence/research/2026-04-11_codex_m16_entry_chain_and_stale_surface_fences.md", + "ION/06_intelligence/research/2026-04-11_codex_m16_execution_priority_card_from_active_commitments.md", + "ION/06_intelligence/research/2026-04-11_codex_m16_witness_authority_crosswalk.md", + "ION/06_intelligence/research/2026-04-11_ion_master_documentation_toc_and_outline.md", + "ION/06_intelligence/research/2026-04-12_bridge_packet_family_status_and_validation_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-12_current_phase_staffing_and_semantic_identity_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-12_disagreement_escalation_provenance_note.md", + "ION/06_intelligence/research/2026-04-12_external_zip_return_bridge_provenance_note.md", + "ION/06_intelligence/research/2026-04-12_outsider_grade_packaging_hardening_next_workload_plan.md", + "ION/06_intelligence/research/2026-04-12_phase1_browser_mount_boundary_research.md", + "ION/06_intelligence/research/2026-04-12_phase1_template_governance_gate_surface_map.md", + "ION/06_intelligence/research/2026-04-12_role_chassis_mount_provenance_note.md", + "ION/06_intelligence/research/2026-04-12_thoth_bridge_packet_status_evidence.md", + "ION/06_intelligence/research/2026-04-12_thoth_current_phase_staffing_and_semantic_identity_evidence.md", + "ION/06_intelligence/research/2026-04-22_codex_canonical_agent_roster_and_evolution_dynamics_proposal.md", + "ION/06_intelligence/research/2026-04-24_gpt55_steward_startup_authority_validation_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-24_steward_persona_front_door_correction_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-24_steward_persona_fronted_live_use_proof_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-24_steward_post_a1_lane_a_continuation_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-24_steward_single_carrier_full_spectrum_rehearsal_reasoning_journal.md", + "ION/06_intelligence/research/2026-04-24_steward_single_carrier_protocol_landing_reasoning_journal.md", + "ION/06_intelligence/research/multi_model_orchestration_inventory.md", + "ION/06_intelligence/roundtable/continuity_crisis/INDEX.md", + "ION/06_intelligence/roundtable/continuity_crisis/RESPONSE_STATUS.md", + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_boot_and_lane_proposal.md", + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_ratification_ready_continuity_law.md", + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_recovery_conditions_after_law.md", + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_minimal_manual_continuity_update_protocol.md", + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_proposed_ion_continuity_law.md", + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_role_continuity_matrix.md", + "ION/06_intelligence/roundtable/continuity_crisis/references/2026-04-03_codex_continuity_dependency_register.md", + "ION/06_intelligence/roundtable/continuity_crisis/references/historical_capsule_inventory.md", + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_explore_with_continuity.md", + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_manual_auto_and_model_allocation.md", + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_acronym.md", + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_name_and_singularity.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_decision_ready_summary.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_candidate.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_convergence_matrix.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_ratification_package.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_ratification_delta_package.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_recovery_conditions.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_end_to_end_law_protocol_template_program.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_ion_core_and_continuity_synthesis.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_nemesis_ideas_and_first_move.md", + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_roundtable_checkpoint_awaiting_sovereign.md", + "ION/06_intelligence/specs/T01_TransitionSchema.schema.yaml", + "ION/06_intelligence/specs/T01_TransitionSchema.spec.md", + "ION/06_intelligence/specs/T02_WorkUnitSchema.schema.yaml", + "ION/06_intelligence/specs/T02_WorkUnitSchema.spec.md", + "ION/06_intelligence/specs/T03_ContextPackageSchema.schema.yaml", + "ION/06_intelligence/specs/T03_ContextPackageSchema.spec.md", + "ION/06_intelligence/specs/T04_CommitDeltaSchema.schema.yaml", + "ION/06_intelligence/specs/T04_CommitDeltaSchema.spec.md", + "ION/06_intelligence/specs/T04_ReasoningWindowSchema.spec.md", + "ION/06_intelligence/specs/T05_OpenQuestionSchema.schema.yaml", + "ION/06_intelligence/specs/T05_OpenQuestionSchema.spec.md", + "ION/06_intelligence/specs/T06_AuthorityClassSchema.schema.yaml", + "ION/06_intelligence/specs/T06_AuthorityClassSchema.spec.md", + "ION/06_intelligence/specs/T07_SignalSchema.schema.yaml", + "ION/06_intelligence/specs/T07_SignalSchema.spec.md", + "ION/06_intelligence/specs/T08_ConfidenceAndDriftSchema.spec.md", + "ION/06_intelligence/specs/T09_ManifestRouteStateSchema.spec.md", + "ION/06_intelligence/specs/T100_ScheduleValidateActivationCliAndStatus.spec.md", + "ION/06_intelligence/specs/T101_ScheduleActivationHandoffCapsuleReceipt.spec.md", + "ION/06_intelligence/specs/T102_HandoffCapsuleLinkageAndCompactEntryArtifact.spec.md", + "ION/06_intelligence/specs/T103_ScheduleMaterializeHandoffCapsuleCliAndStatus.spec.md", + "ION/06_intelligence/specs/T104_ScheduleHandoffEntryRehearsalReceipt.spec.md", + "ION/06_intelligence/specs/T105_HandoffCapsuleEntrySufficiencyBehavior.spec.md", + "ION/06_intelligence/specs/T106_ScheduleRehearseHandoffEntryCliAndStatus.spec.md", + "ION/06_intelligence/specs/T10_CrossModelAuditCalibration.spec.md", + "ION/06_intelligence/specs/T11_AutomationStateSchema.spec.md", + "ION/06_intelligence/specs/T12_RuntimeStateBindingEvents.spec.md", + "ION/06_intelligence/specs/T13_RuntimeStateQueryConsumption.spec.md", + "ION/06_intelligence/specs/T14_RuntimeStateOperationalRendering.spec.md", + "ION/06_intelligence/specs/T15_RuntimeReportArtifactEmission.spec.md", + "ION/06_intelligence/specs/T16_RuntimeReportTriggerPolicy.spec.md", + "ION/06_intelligence/specs/T17_RuntimeReportGovernanceReflection.spec.md", + "ION/06_intelligence/specs/T18_RuntimeReportGovernanceAggregation.spec.md", + "ION/06_intelligence/specs/T19_RuntimeReportVisibilityProjection.spec.md", + "ION/06_intelligence/specs/T20_RuntimeReportNavigationQuery.spec.md", + "ION/06_intelligence/specs/T21_RuntimeReportBrowserReadOnlyView.spec.md", + "ION/06_intelligence/specs/T22_RuntimeReportCrosslinkTraversal.spec.md", + "ION/06_intelligence/specs/T23_RuntimeReportAnchorNormalization.spec.md", + "ION/06_intelligence/specs/T24_RuntimeReportProvenanceTrace.spec.md", + "ION/06_intelligence/specs/T25_RuntimeReportComparativeProvenance.spec.md", + "ION/06_intelligence/specs/T26_RuntimeReportTemporalProvenance.spec.md", + "ION/06_intelligence/specs/T27_RuntimeReportFamilySummary.spec.md", + "ION/06_intelligence/specs/T28_RuntimeReportOperatorDigest.spec.md", + "ION/06_intelligence/specs/T29_RuntimeReportDigestProfile.spec.md", + "ION/06_intelligence/specs/T30_RuntimeReportDigestProfileCatalog.spec.md", + "ION/06_intelligence/specs/T31_RuntimeReportDigestProfileBrowser.spec.md", + "ION/06_intelligence/specs/T32_RuntimeReportProfileDigestTrace.spec.md", + "ION/06_intelligence/specs/T33_RuntimeReportDigestReverseTrace.spec.md", + "ION/06_intelligence/specs/T34_RuntimeReportBidirectionalTrace.spec.md", + "ION/06_intelligence/specs/T35_RuntimeReportBidirectionalTraceComparison.spec.md", + "ION/06_intelligence/specs/T36_RuntimeReportBidirectionalTemporalTrace.spec.md", + "ION/06_intelligence/specs/T37_RuntimeReportBidirectionalFamilySummary.spec.md", + "ION/06_intelligence/specs/T38_SupervisedAutomationPolicyMatrix.spec.md", + "ION/06_intelligence/specs/T39_SupervisedDaemonService.spec.md", + "ION/06_intelligence/specs/T40_OperatorControlState.spec.md", + "ION/06_intelligence/specs/T41_RecoveryReplayContract.spec.md", + "ION/06_intelligence/specs/T42_ChildWorkOperationalization.spec.md", + "ION/06_intelligence/specs/T43_ExternalExecutionBridgeContract.spec.md", + "ION/06_intelligence/specs/T44_MCPAutomationSurface.spec.md", + "ION/06_intelligence/specs/T45_OperationalHardeningLifecycle.spec.md", + "ION/06_intelligence/specs/T46_OperationalAcceptancePackaging.spec.md", + "ION/06_intelligence/specs/T47_HorizonOrchestrationWindows.spec.md", + "ION/06_intelligence/specs/T48_ManualAutomationFallback.spec.md", + "ION/06_intelligence/specs/T49_OperatorEntrySurface.spec.md", + "ION/06_intelligence/specs/T50_PacketAndHandoffTaxonomy.spec.md", + "ION/06_intelligence/specs/T51_WorkflowPacketValidationHelpers.spec.md", + "ION/06_intelligence/specs/T52_WorkingAgentSelfUseDiscipline.spec.md", + "ION/06_intelligence/specs/T53_HorizonStateFamily.spec.md", + "ION/06_intelligence/specs/T54_HorizonTighteningProjection.spec.md", + "ION/06_intelligence/specs/T55_HorizonPacketEnactmentHelper.spec.md", + "ION/06_intelligence/specs/T56_HorizonPacketEnactmentCliBridge.spec.md", + "ION/06_intelligence/specs/T57_HorizonEnactmentReceiptFamily.spec.md", + "ION/06_intelligence/specs/T58_HorizonEnactmentReceiptOperatorProjection.spec.md", + "ION/06_intelligence/specs/T59_HorizonToExecutionWorkflowRehearsal.spec.md", + "ION/06_intelligence/specs/T60_HorizonCarrierSymmetryRehearsal.spec.md", + "ION/06_intelligence/specs/T61_BoundedMultiAgentAllocatorProjection.spec.md", + "ION/06_intelligence/specs/T62_BranchClaimReceiptPersistenceAndCli.spec.md", + "ION/06_intelligence/specs/T63_FanInSettlementReceiptAndMergeProposal.spec.md", + "ION/06_intelligence/specs/T64_FanInSettlementCliAndStatus.spec.md", + "ION/06_intelligence/specs/T65_BoundedFanInSettlementRehearsal.spec.md", + "ION/06_intelligence/specs/T66_BranchControlReceiptAndBudgetPosture.spec.md", + "ION/06_intelligence/specs/T67_AllocatorAndSettlementBranchControlIntegration.spec.md", + "ION/06_intelligence/specs/T68_BranchControlCliAndStatus.spec.md", + "ION/06_intelligence/specs/T69_BranchHorizonSyncReceiptAndProjection.spec.md", + "ION/06_intelligence/specs/T70_BranchFuturePostureMapping.spec.md", + "ION/06_intelligence/specs/T71_BranchSyncCliAndStatus.spec.md", + "ION/06_intelligence/specs/T72_BranchRescheduleReceipt.spec.md", + "ION/06_intelligence/specs/T73_BranchRescheduleCliAndStatus.spec.md", + "ION/06_intelligence/specs/T74_ScheduleControlReceipt.spec.md", + "ION/06_intelligence/specs/T75_ScheduleMaintainCliAndStatus.spec.md", + "ION/06_intelligence/specs/T76_ScheduleRetryReassignmentBehavior.spec.md", + "ION/06_intelligence/specs/T77_ScheduleDispatchReconciliationReceipt.spec.md", + "ION/06_intelligence/specs/T78_ScheduleReconcileCliAndStatus.spec.md", + "ION/06_intelligence/specs/T79_ScheduleAssignmentRetirementBehavior.spec.md", + "ION/06_intelligence/specs/T80_ScheduleCompletionReleaseReceipt.spec.md", + "ION/06_intelligence/specs/T81_ScheduleReleaseCompletionCliAndStatus.spec.md", + "ION/06_intelligence/specs/T82_AssignmentReleaseTerminalStateBehavior.spec.md", + "ION/06_intelligence/specs/T83_ScheduleSettlementReceipt.spec.md", + "ION/06_intelligence/specs/T84_ScheduleFutureReentryBehavior.spec.md", + "ION/06_intelligence/specs/T85_ScheduleSettleCliAndStatus.spec.md", + "ION/06_intelligence/specs/T86_ScheduleLineageArchiveReceipt.spec.md", + "ION/06_intelligence/specs/T87_ScheduleLineageCliAndStatus.spec.md", + "ION/06_intelligence/specs/T88_ScheduleActiveLineVersusArchivedHistory.spec.md", + "ION/06_intelligence/specs/T89_ScheduleLineageReplayReceipt.spec.md", + "ION/06_intelligence/specs/T90_ActiveCycleReconstructionStages.spec.md", + "ION/06_intelligence/specs/T91_ScheduleReplayCliAndStatus.spec.md", + "ION/06_intelligence/specs/T92_ScheduleResumeProjectionReceipt.spec.md", + "ION/06_intelligence/specs/T93_ScheduleResumePacketBehavior.spec.md", + "ION/06_intelligence/specs/T94_ScheduleProjectResumeCliAndStatus.spec.md", + "ION/06_intelligence/specs/T95_ScheduleResumeBundleMaterializationReceipt.spec.md", + "ION/06_intelligence/specs/T96_ScheduleResumeBundleContinuationLink.spec.md", + "ION/06_intelligence/specs/T97_ScheduleResumeBundleCliAndStatus.spec.md", + "ION/06_intelligence/specs/T98_ScheduleTakeoverEntryActivationReceipt.spec.md", + "ION/06_intelligence/specs/T99_ScheduleActivationSummaryProjection.spec.md", + "ION/07_templates/README.md", + "ION/07_templates/_MASTER.md", + "ION/07_templates/actions/AGENT_SPAWN.md", + "ION/07_templates/actions/CODE.md", + "ION/07_templates/actions/CURSOR_HANDOFF.md", + "ION/07_templates/actions/DISAGREEMENT_ESCALATION.md", + "ION/07_templates/actions/EXTERNAL_RETURN.md", + "ION/07_templates/actions/FULL_CARRIER_ACTION_RECEIPT.md", + "ION/07_templates/actions/HANDOFF.md", + "ION/07_templates/actions/MANUAL_AUTOMATION_FALLBACK.md", + "ION/07_templates/actions/PATCH_PACKAGE.md", + "ION/07_templates/actions/ROLE_CHASSIS_MOUNT.md", + "ION/07_templates/actions/ROLE_SESSION.md", + "ION/07_templates/actions/SIGNAL.md", + "ION/07_templates/actions/TASK.md", + "ION/07_templates/actions/TEMPLATE_DEVELOPMENT.md", + "ION/07_templates/actions/TEMPLATE_SURFACE_CHANGE.md", + "ION/07_templates/agents/AGENT_RESULT_PACKET.md", + "ION/07_templates/agents/AGENT_SPAWN_REQUEST.md", + "ION/07_templates/agents/ION_CONTEXT_SPECIALIST_RETURN.md", + "ION/07_templates/automation/MANUAL_AUTOMATION_FALLBACK_PACKET.md", + "ION/07_templates/bindings/CODEX__CODE.md", + "ION/07_templates/bindings/CODEX__CSR.md", + "ION/07_templates/bindings/CODEX__PROPOSAL.md", + "ION/07_templates/bindings/CODEX__REASONING_JOURNAL.md", + "ION/07_templates/bindings/CODEX__STATUS_REPORT.md", + "ION/07_templates/bindings/CODEX__TASK.md", + "ION/07_templates/bindings/MASON__CODE.md", + "ION/07_templates/bindings/NEMESIS__AUDIT.md", + "ION/07_templates/bindings/PERSONA_INTERFACE__USER_RESPONSE.md", + "ION/07_templates/bindings/README.md", + "ION/07_templates/bindings/RELAY__HANDOFF.md", + "ION/07_templates/bindings/RELAY__SEMANTIC_BOUNDARY.md", + "ION/07_templates/bindings/STEWARD__PROPOSAL.md", + "ION/07_templates/bindings/STEWARD__STATUS_REPORT.md", + "ION/07_templates/bindings/STEWARD__TASK.md", + "ION/07_templates/bindings/STEWARD__TEMPLATE_SURFACE_CHANGE.md", + "ION/07_templates/bindings/THOTH__RESEARCH.md", + "ION/07_templates/bindings/VESTIGE__EVIDENCE.md", + "ION/07_templates/carriers/CARRIER_CAPABILITY_SURVEY.md", + "ION/07_templates/carriers/CARRIER_LEVEL_DECISION.md", + "ION/07_templates/carriers/CARRIER_MOUNT_PROOF.md", + "ION/07_templates/carriers/CARRIER_SESSION_PACKET.md", + "ION/07_templates/carriers/CARRIER_UPGRADE_REQUEST.md", + "ION/07_templates/carriers/CHATGPT_BROWSER_CONNECTOR_SESSION_PACKET.md", + "ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md", + "ION/07_templates/carriers/CODEX_EXTENSION_EXECUTION_PACKET.md", + "ION/07_templates/carriers/FULL_CARRIER_MOUNT_PROOF.md", + "ION/07_templates/confidence/CSR.md", + "ION/07_templates/context/AGENT_CONTEXT_BUILD_STEP.md", + "ION/07_templates/context/AGENT_CONTEXT_PACKAGE.md", + "ION/07_templates/context/AGENT_CONTEXT_PACKAGE_INDEX.md", + "ION/07_templates/context/AGENT_CONTEXT_SYSTEM_CARD.md", + "ION/07_templates/context/AGENT_DYNAMIC_CONTEXT_WINDOW_PLAN.md", + "ION/07_templates/context/CONTEXT_NODE.md", + "ION/07_templates/context/CONTEXT_PACKAGE.md", + "ION/07_templates/context/EVENTED_TEMPLATE_FILE_OBJECT.md", + "ION/07_templates/context/FAN_IN_SETTLEMENT.md", + "ION/07_templates/context/FAN_OUT_REQUEST.md", + "ION/07_templates/context/ION_CONTEXT_DELTA_RECEIPT.md", + "ION/07_templates/context/ION_CONTEXT_LOAD_PROOF.md", + "ION/07_templates/context_graph/CONTEXT_GRAPH_ONTOLOGY_COMPARISON_REPORT.md", + "ION/07_templates/custom_gpt/README.md", + "ION/07_templates/custom_gpt/examples/README.md", + "ION/08_ui/joc_cockpit_shell/CarrierTurnPanel.tsx", + "ION/08_ui/joc_cockpit_shell/ContextPackageInspectorPanel.tsx", + "ION/08_ui/joc_cockpit_shell/CursorHookStatePanel.tsx", + "ION/08_ui/joc_cockpit_shell/FrontDoorProofTracePanel.tsx", + "ION/08_ui/joc_cockpit_shell/HumanGateQueuePanel.tsx", + "ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx", + "ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx", + "ION/08_ui/joc_cockpit_shell/OperatorMessageQueuePanel.tsx", + "ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx", + "ION/08_ui/joc_cockpit_shell/RuntimeDebugOverlayPanel.tsx", + "ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx", + "ION/08_ui/joc_cockpit_shell/SpawnQueuePanel.tsx", + "ION/08_ui/joc_cockpit_shell/StewardIntegrationQueuePanel.tsx", + "ION/08_ui/joc_cockpit_shell/TaskReturnLedgerPanel.tsx", + "ION/08_ui/joc_cockpit_shell/ion-runtime-cockpit.css", + "ION/08_ui/joc_cockpit_shell/ionRuntimeCockpitTypes.ts", + "ION/09_integrations/README.md", + "ION/09_integrations/browser_extension/ion_chatops_bridge/README.md", + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js", + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js", + "ION/09_integrations/browser_extension/ion_chatops_bridge/examples/SEV_CHATOPS_SMOKE.yaml", + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-128.png", + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-16.png", + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-32.png", + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-48.png", + "ION/09_integrations/browser_extension/ion_chatops_bridge/manifest.json", + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts", + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts", + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts", + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/schema.ts", + "ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js", + "ION/09_integrations/cursor_extension/README.md", + "ION/09_integrations/cursor_extension/package.json", + "ION/09_integrations/cursor_extension/src/extension.ts", + "ION/09_integrations/cursor_extension/src/ionCommands.ts", + "ION/09_integrations/cursor_extension/src/ionFileWatchers.ts", + "ION/09_integrations/cursor_extension/src/ionKernel.ts", + "ION/09_integrations/cursor_extension/src/ionWorkspace.ts", + "ION/09_integrations/cursor_extension/src/providers/StatusTreeProvider.ts", + "ION/09_integrations/cursor_extension/src/webviews/cockpit/CockpitWebviewProvider.ts", + "ION/09_integrations/cursor_extension/src/webviews/cockpit/index.html", + "ION/09_integrations/cursor_extension/tsconfig.json", + "ION/09_integrations/cursor_sdk/README.md", + "ION/09_integrations/cursor_sdk/package.json", + "ION/09_integrations/cursor_sdk/src/ion_cursor_sdk_carrier.ts", + "ION/09_integrations/local_daemon/ion_chatops_bridge/README.md", + "ION/09_integrations/local_daemon/ion_chatops_bridge/ion_chatops_daemon.py", + "ION/09_integrations/mcp/README.md", + "ION/09_integrations/mcp/chatgpt_connector/README.md", + "ION/09_integrations/mcp/chatgpt_connector/connector_manifest.json", + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_cloudflare_tunnel.py", + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_connector.py", + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_http_mcp_preview.py", + "ION/09_integrations/mcp/ion_mcp_server.py", + "ION/README.md", + "ION/REPO_AUTHORITY.md", + "ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md", + "ION/docs/README.md", + "ION/docs/consolidation/ION_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_REPORT_20260501.md", + "ION/docs/consolidation/ION_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_REPORT_20260501.md", + "ION/docs/consolidation/ION_V102_CONTEXT_METABOLISM_AND_LIFECYCLE_REPORT_20260502.md", + "ION/docs/consolidation/ION_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_REPORT_20260502.md", + "ION/docs/consolidation/ION_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_REPORT_20260502.md", + "ION/docs/consolidation/ION_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_PREPAREDNESS_REPORT_20260502.md", + "ION/docs/consolidation/ION_V106_CORE_TELEMETRY_TRIAD_AND_RUNTIME_FLOOR_REPAIR_REPORT_20260502.md", + "ION/docs/consolidation/ION_V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_REPORT_20260502.md", + "ION/docs/consolidation/ION_V108_V72_MCP_DONOR_RECONCILIATION_REPORT_20260502.md", + "ION/docs/consolidation/ION_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_REPORT_20260503.md", + "ION/docs/consolidation/ION_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_REPORT_20260503.md", + "ION/docs/consolidation/ION_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_REPORT_20260503.md", + "ION/docs/consolidation/ION_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_REPORT_20260503.md", + "ION/docs/consolidation/ION_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_REPORT_20260503.md", + "ION/docs/consolidation/ION_V114_DEFERRED_SPAWN_VISIBILITY_REPORT_20260503.md", + "ION/docs/consolidation/ION_V115_AUDIT_TRUTH_RECONCILIATION_REPORT_20260503.md", + "ION/docs/consolidation/ION_V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_REPORT_20260503.md", + "ION/docs/consolidation/ION_V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_REPORT_20260503.md", + "ION/docs/consolidation/ION_V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_REPORT_20260503.md", + "ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md", + "ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md", + "ION/docs/consolidation/ION_V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_REPORT_20260503.md", + "ION/docs/consolidation/ION_V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_REPORT_20260503.md", + "ION/docs/consolidation/ION_V123_ROOT_ONBOARDING_SHIM_RETIREMENT_FORENSIC_REPORT_20260503.md", + "ION/docs/consolidation/ION_V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_REPORT_20260503.md", + "ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md", + "ION/docs/consolidation/ION_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING_REPORT_20260429.md", + "ION/docs/consolidation/ION_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONT_DOOR_TEAM_REPORT_20260429.md", + "ION/docs/consolidation/ION_V92_MCP_CONTROL_BRIDGE_REPORT_20260430.md", + "ION/docs/consolidation/ION_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE_REPORT_20260430.md", + "ION/docs/consolidation/ION_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_REPORT_20260430.md", + "ION/docs/consolidation/ION_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_REPORT_20260430.md", + "ION/docs/consolidation/ION_V96_FULL_CONSOLIDATED_RUNTIME_REPORT_20260430.md", + "ION/docs/consolidation/ION_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_PLAN_20260501.md", + "ION/docs/consolidation/ION_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_PLAN_20260501.md", + "ION/docs/consolidation/ION_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_DESIGN_20260501.md", + "ION/docs/cursor/ION_CURSOR_WORK_CYCLE_PACKET.md", + "ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md", + "ION/docs/mcp/HOSTED_MCP_AUTH_ALPHA_BOUNDARY_GUIDE.md", + "ION/docs/mcp/HOSTED_MCP_BUNDLE_IMPORT_EXPORT_REPLAY_ALPHA_GUIDE.md", + "ION/docs/mcp/HOSTED_MCP_OAUTH_HTTP_PREVIEW_GUIDE.md", + "ION/docs/mcp/HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA_GUIDE.md", + "ION/docs/mcp/LOCAL_MCP_BRIDGE_CLIENT_CONFIGURATION_GUIDE.md", + "ION/docs/mcp/LOCAL_MCP_CLIENT_CERTIFICATION_GUIDE.md", + "ION/docs/mcp/LOCAL_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_GUIDE.md", + "ION/docs/mcp/LOCAL_MCP_TRANSPORT_PREVIEW_GUIDE.md", + "ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md", + "ION/docs/setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md", + "ION/docs/setup/CHATGPT_BROWSER_LEGACY_CLOUDFLARE_TUNNEL_REUSE_V124.md", + "ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md", + "ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md", + "ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md", + "ION/examples/mcp/client-certification-profile.json", + "ION/examples/mcp/codex.config.toml", + "ION/examples/mcp/cursor.mcp.json", + "ION/examples/mcp/generated/codex.config.toml", + "ION/examples/mcp/generated/codex.config.toml.meta.json", + "ION/examples/mcp/generated/cursor.mcp.json", + "ION/examples/mcp/generated/cursor.mcp.json.meta.json", + "ION/examples/mcp/generated/generic-stdio.json", + "ION/examples/mcp/generated/generic-stdio.json.meta.json", + "ION/examples/mcp/generated/vscode.mcp.json", + "ION/examples/mcp/generated/vscode.mcp.json.meta.json", + "ION/examples/mcp/generic-stdio.json", + "ION/examples/mcp/hosted-auth-alpha-request.json", + "ION/examples/mcp/hosted-bundle-replay-alpha-report-request.json", + "ION/examples/mcp/hosted-http-alpha-boundary-request.json", + "ION/examples/mcp/hosted-oauth-http-preview-request.json", + "ION/examples/mcp/hosted-storage-receipt-ledger-alpha-report-request.json", + "ION/examples/mcp/streamable-http-preview-request.json", + "ION/examples/mcp/vscode.mcp.json", + "ION/tests/test_kernel_ion_active_state_integrity_audit.py", + "ION/tests/test_kernel_ion_agent_context_dynamics.py", + "ION/tests/test_kernel_ion_agent_invocation_broker.py", + "ION/tests/test_kernel_ion_autonomous_loop.py", + "ION/tests/test_kernel_ion_carrier_continue.py", + "ION/tests/test_kernel_ion_carrier_onboarding_authority_audit.py", + "ION/tests/test_kernel_ion_carrier_onboarding_packet.py", + "ION/tests/test_kernel_ion_carrier_task_return.py", + "ION/tests/test_kernel_ion_carrier_tick.py", + "ION/tests/test_kernel_ion_carrier_workflow_audit.py", + "ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py", + "ION/tests/test_kernel_ion_chatgpt_browser_connector_e2e_flow.py", + "ION/tests/test_kernel_ion_chatgpt_browser_legacy_tunnel_reuse_audit.py", + "ION/tests/test_kernel_ion_chatgpt_browser_mcp_connector_contract.py", + "ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py", + "ION/tests/test_kernel_ion_chatops_action_schema.py", + "ION/tests/test_kernel_ion_chatops_bridge_policy.py", + "ION/tests/test_kernel_ion_cockpit_view_model.py", + "ION/tests/test_kernel_ion_codex_cli_carrier_audit.py", + "ION/tests/test_kernel_ion_codex_extension_carrier_audit.py", + "ION/tests/test_kernel_ion_codex_queue_runner.py", + "ION/tests/test_kernel_ion_compiled_role_context_bundle_audit.py", + "ION/tests/test_kernel_ion_context_lifecycle.py", + "ION/tests/test_kernel_ion_cursor_autopilot.py", + "ION/tests/test_kernel_ion_cursor_canonical_workflow_audit.py", + "ION/tests/test_kernel_ion_cursor_hook_state.py", + "ION/tests/test_kernel_ion_deep_operational_cartography.py", + "ION/tests/test_kernel_ion_front_door_proof_trace.py", + "ION/tests/test_kernel_ion_full_carrier_capability_audit.py", + "ION/tests/test_kernel_ion_github_commit_proposal_receipt.py", + "ION/tests/test_kernel_ion_github_data_plane_audit.py", + "ION/tests/test_kernel_ion_lane_timeline_view_model.py", + "ION/tests/test_kernel_ion_lifecycle_packager.py", + "ION/tests/test_kernel_ion_mcp_bridge_audit.py", + "ION/tests/test_kernel_ion_mcp_client_certification.py", + "ION/tests/test_kernel_ion_mcp_hosted_auth_alpha.py", + "ION/tests/test_kernel_ion_mcp_hosted_bundle_replay_alpha.py", + "ION/tests/test_kernel_ion_mcp_hosted_oauth_http_preview.py", + "ION/tests/test_kernel_ion_mcp_hosted_storage_receipt_ledger_alpha.py", + "ION/tests/test_kernel_ion_mcp_local_bridge.py", + "ION/tests/test_kernel_ion_mcp_local_bridge_smoke_and_configs.py", + "ION/tests/test_kernel_ion_mcp_sdk_wrapper_boundary.py", + "ION/tests/test_kernel_ion_mcp_transport_preview.py", + "ION/tests/test_kernel_ion_operational_truth_audit.py", + "ION/tests/test_kernel_ion_operator_message_classifier.py", + "ION/tests/test_kernel_ion_operator_queue_human_gate_status.py", + "ION/tests/test_kernel_ion_receipt_hydration_mapper.py", + "ION/tests/test_kernel_ion_runtime_debug_overlay.py", + "ION/tests/test_kernel_ion_safe_full_project_packager.py", + "ION/tests/test_kernel_ion_status.py", + "ION/tests/test_kernel_ion_steward_integrate.py", + "ION/tests/test_kernel_ion_template_action_gate.py", + "ION/tests/test_kernel_ion_temporal_context_enforcement_audit.py", + "ION/tests/test_kernel_ion_trunk_preservation_gate.py", + "ION/tests/test_kernel_ion_v72_mcp_donor_reconciliation_audit.py", + "ION/tests/test_kernel_v78_ion_mount_contract_audit.py", + "README.md", + "SECURITY.md", + "pyproject.toml" + ], + "proposal_id": "github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs", + "schema_id": "ion.github_commit_path_manifest.v1" +} diff --git a/ION/09_integrations/README.md b/ION/09_integrations/README.md new file mode 100644 index 00000000..f3b6fd9b --- /dev/null +++ b/ION/09_integrations/README.md @@ -0,0 +1,28 @@ +# ION Integrations + +This directory contains carrier and transport integrations around the ION +kernel. + +## Integration Map + +```text +browser_extension/ ChatOps browser carrier extension surfaces +cursor_extension/ Cursor extension carrier surface +cursor_sdk/ Cursor SDK carrier adapter +local_daemon/ localhost daemon bridges +mcp/ MCP servers, previews, and ChatGPT connector surfaces +``` + +## Current High-Value Surfaces + +- `browser_extension/ion_chatops_bridge/README.md` +- `local_daemon/ion_chatops_bridge/README.md` +- `mcp/README.md` +- `mcp/chatgpt_connector/README.md` + +## Boundary + +Integrations are carrier adapters. They do not become ION identity, Steward +authority, production authority, or broad shell authority by existing in this +directory. + diff --git a/ION/README.md b/ION/README.md new file mode 100644 index 00000000..52ed44f6 --- /dev/null +++ b/ION/README.md @@ -0,0 +1,61 @@ +# ION Content Root + +This directory is the canonical ION content root for this repository. + +Use the repository root for commands that depend on `pyproject.toml`. Use this +directory for code and document navigation. + +## Authority + +Read `ION/REPO_AUTHORITY.md` first. It defines the current root, shell-root +distinction, mount order, active carrier lanes, and what is canonical here. + +Important starting points: + +- `ION/REPO_AUTHORITY.md` +- `ION/02_architecture/ION_MOUNT_CONTRACT.md` +- `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` +- `ION/01_doctrine/CANONICAL_WORKFLOW.md` +- `ION/07_templates/README.md` + +## Directory Map + +```text +00_BOOTSTRAP startup and historical bootstrap material +01_doctrine doctrine floor and workflow law +02_architecture protocols, carrier law, integration architecture +03_registry profiles, policies, capabilities, tool registries +04_agents role/carrier agent surfaces +04_packages Python kernel implementation +05_context current context, queues, receipts, runtime evidence +06_intelligence reports, audits, research, orchestration evidence +07_templates packet, proof, receipt, carrier, and action templates +08_ui cockpit and UI surfaces +09_integrations MCP, browser extension, local daemon, Cursor integrations +docs setup guides, consolidation reports, public guides +examples examples and smoke inputs +tests pytest suite +``` + +## Carrier And Integration Entry Points + +- Codex CLI carrier: + `ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md` +- ChatGPT Browser MCP connector: + `ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md` +- ChatOps browser carrier runtime: + `ION/09_integrations/browser_extension/ion_chatops_bridge/README.md` +- Local ChatOps daemon: + `ION/09_integrations/local_daemon/ion_chatops_bridge/README.md` +- MCP integration: + `ION/09_integrations/mcp/README.md` + +## Common Commands + +Run from the repository root: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q +``` + diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md new file mode 100644 index 00000000..0c799d1a --- /dev/null +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -0,0 +1,67 @@ +# Public Repo Navigation And Cleanup Plan + +Status: draft implementation plan +Production authority: false +Live execution authority: false + +## Objective + +Make the public repository easier for humans and AI carriers to navigate +without deleting evidence, losing receipts, or inventing a second authority +system. + +## Current Problems + +- There was no root `README.md` for public GitHub entry. +- `pyproject.toml` points at `ION/README.md`, but that file was missing. +- `ION/docs/README.md` was referenced as a supporting surface but was missing. +- Root-level version witness files are useful evidence, but noisy for first + navigation. +- Integration surfaces exist across MCP, browser extension, local daemon, and + Cursor lanes, but public entry points were scattered. + +## Cleanup Principles + +- No deletion as cleanup. If files need to move, use a lifecycle transition + with receipt evidence. +- Do not move runtime/current context until owner references and tests are + audited. +- Keep public collaboration docs separate from future private production + infrastructure docs. +- Prefer indexes and explicit path maps before reorganization. +- Treat generated reports, receipts, and witness manifests as evidence unless a + policy says otherwise. + +## Implemented First Slice + +- Add root `README.md` for public entry, commands, and boundaries. +- Add `CONTRIBUTING.md` for scoped branch and PR evidence expectations. +- Add `SECURITY.md` for public repo secret-handling boundaries. +- Add `ION/README.md` for content-root navigation. +- Add `ION/docs/README.md` for docs navigation. +- Add `ION/04_packages/README.md` and `ION/09_integrations/README.md` for + package and integration orientation. + +## Proposed Next Slices + +1. Add directory-local README files for: + - `ION/02_architecture/` + - `ION/03_registry/` + - `ION/05_context/` + - `ION/06_intelligence/` +2. Add a generated or checked navigation index for high-value kernel modules. +3. Add a public-safe issue template for work packets and proof returns. +4. Add a lifecycle proposal for root-level `FILES_ADDED_V*.txt` witness files: + keep them tracked, but consider moving future witness manifests under + `ION/docs/consolidation/` or `ION/05_context/archive/` with receipts. +5. Add a public/private split plan for future production infrastructure repos. +6. Refine `kernel.ion_github_commit_proposal_receipt` so small follow-up + proposals can emit a changed-path manifest instead of the whole repository + path set when that is the safer review surface. + +## Non-Goals + +- No broad file reorganization in this slice. +- No deletion of historical receipts, reports, or witness files. +- No production deployment setup. +- No credential storage guidance beyond refusing to store credentials here. diff --git a/ION/docs/README.md b/ION/docs/README.md new file mode 100644 index 00000000..31a8f5cc --- /dev/null +++ b/ION/docs/README.md @@ -0,0 +1,30 @@ +# ION Docs + +This directory contains public setup guides, MCP guides, consolidation reports, +and navigation material. + +## Main Subdirectories + +```text +consolidation/ versioned implementation and reconciliation reports +cursor/ Cursor carrier workflow material +encyclopedia/ broader system encyclopedia surfaces +mcp/ MCP bridge, client, hosted preview, and replay guides +setup/ current setup and operating packets +``` + +## High-Value Reads + +- `setup/ION_CURRENT_OPERATING_PACKET_V119.md` +- `setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md` +- `setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md` +- `setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md` +- `setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md` +- `PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md` + +## Reading Rule + +Consolidation reports are evidence and history. They are useful, but they do +not outrank `ION/REPO_AUTHORITY.md`, the mount contract, active packets, +registries, templates, or current work packets. + diff --git a/README.md b/README.md new file mode 100644 index 00000000..56645bab --- /dev/null +++ b/README.md @@ -0,0 +1,85 @@ +# ION Codex + +ION Codex is the public collaboration repository for the current runnable ION +kernel branch, carrier integrations, context artifacts, and proof-gated local +automation work. + +This repository is public so outside users and AI collaborators can inspect, +discuss, and contribute. It is not a production deployment surface and it does +not grant authority to publish secrets, credentials, private logs, or unsafe +runtime state. + +## Start Here + +The authoritative content root is: + +```text +ION/ +``` + +The shell root is this repository root. Run commands from here when they rely +on `pyproject.toml`, package discovery, or pytest configuration. + +Recommended first reads: + +1. `ION/REPO_AUTHORITY.md` +2. `ION/README.md` +3. `ION/02_architecture/ION_MOUNT_CONTRACT.md` +4. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` +5. `ION/docs/README.md` + +## Quick Proof Commands + +```bash +test -f pyproject.toml && test -f ION/REPO_AUTHORITY.md +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q +``` + +## Public Collaboration Boundaries + +- Do not commit secrets, API keys, tokens, private `.env` files, browser + profiles, tunnel credentials, or production infrastructure state. +- Do not treat issue comments, GitHub comments, or raw AI output as accepted + ION state. Durable work should pass through ION packets, receipts, or PRs. +- Do not push directly to `main` for normal work. Use scoped branches such as + `docs/*`, `work/*`, `agent/*`, or `data-plane/*` and open a pull request. +- Do not claim ION identity, Steward authority, production authority, or live + external execution authority through this repository. + +## Main Directory Map + +```text +ION/00_BOOTSTRAP bootstrap and historical mount surfaces +ION/01_doctrine doctrine floor and workflow law +ION/02_architecture protocols and architecture authority +ION/03_registry carrier, tool, capability, and policy registries +ION/04_agents role and carrier agent surfaces +ION/04_packages Python kernel package +ION/05_context active context, queues, receipts, runtime evidence +ION/06_intelligence reports, audits, research, orchestration maps +ION/07_templates packet, receipt, carrier, and action templates +ION/08_ui UI/cockpit surfaces +ION/09_integrations MCP, browser extension, daemon, Cursor integrations +ION/docs setup guides, consolidation reports, public docs +ION/examples examples and harness inputs +ION/tests pytest suite +``` + +## GitHub Data Plane + +The canonical public repository is: + +```text +https://github.com/ION-operations/ion-codex +``` + +GitHub is a durable collaboration/data plane. ION remains the authority layer +for packets, context, receipts, proof gates, and carrier boundaries. + +See: + +- `ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md` +- `ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md` +- `ION/03_registry/ion_github_data_plane_registry.yaml` + diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000..a8bc335b --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,29 @@ +# Security Policy + +This public repository must not contain secrets or production-only operational +state. + +## Do Not Commit + +- API keys, access tokens, OAuth client secrets, session cookies, or refresh + tokens +- `.env` files or private config with credentials +- browser profiles, credential helper dumps, cloudflared credentials, or tunnel + tokens +- private logs, incident material, customer/user data, or production + infrastructure state + +## Report A Concern + +Open a GitHub security advisory or contact the repository owner out of band if +the issue includes a secret, credential, or exploit detail that should not be +public. + +For non-sensitive hardening work, open a normal issue or pull request and label +it clearly. + +## Authority Boundary + +Security reports, issues, and pull requests are evidence and proposals. They do +not directly mutate ION runtime state and do not grant production authority. + From b2369466f823ea0d5e24f8027c2ff2160bedb23f Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:30:29 -0400 Subject: [PATCH 03/30] Add public issue templates and owner indexes --- .github/ISSUE_TEMPLATE/config.yml | 6 ++ .github/ISSUE_TEMPLATE/ion_work_packet.yml | 69 +++++++++++++++++++ .github/ISSUE_TEMPLATE/public_bug_report.yml | 45 ++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 33 +++++++++ ION/02_architecture/README.md | 30 ++++++++ ION/03_registry/README.md | 41 +++++++++++ ION/05_context/README.md | 38 ++++++++++ ION/06_intelligence/README.md | 33 +++++++++ ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 24 +++++-- 9 files changed, 314 insertions(+), 5 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/ion_work_packet.yml create mode 100644 .github/ISSUE_TEMPLATE/public_bug_report.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 ION/02_architecture/README.md create mode 100644 ION/03_registry/README.md create mode 100644 ION/05_context/README.md create mode 100644 ION/06_intelligence/README.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..37ca0dda --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,6 @@ +blank_issues_enabled: true +contact_links: + - name: Security or secret exposure + url: https://github.com/ION-operations/ion-codex/security/advisories/new + about: Report secrets, credentials, or sensitive vulnerabilities privately. + diff --git a/.github/ISSUE_TEMPLATE/ion_work_packet.yml b/.github/ISSUE_TEMPLATE/ion_work_packet.yml new file mode 100644 index 00000000..92360d85 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ion_work_packet.yml @@ -0,0 +1,69 @@ +name: ION work packet +description: Propose a bounded ION work item with proof and authority boundaries. +title: "[ION Work] " +labels: + - ion-work +body: + - type: markdown + attributes: + value: | + Use this for public, non-secret work proposals. GitHub issues are discussion and data-plane evidence; they do not directly become accepted ION state. + - type: textarea + id: objective + attributes: + label: Objective + description: What should change or be investigated? + placeholder: Build, fix, audit, document, or analyze a bounded ION surface. + validations: + required: true + - type: textarea + id: owner_surfaces + attributes: + label: Existing owner surfaces + description: List files or directories that should own this work. + placeholder: | + ION/02_architecture/... + ION/03_registry/... + ION/04_packages/kernel/... + ION/tests/... + validations: + required: true + - type: dropdown + id: output_type + attributes: + label: Output type + options: + - protocol/docs + - registry/template update + - bounded implementation patch + - tests/validation + - receipt/evidence + - question/review + validations: + required: true + - type: checkboxes + id: boundaries + attributes: + label: Authority boundaries + options: + - label: This does not request production deployment. + required: true + - label: This does not request secrets, credentials, or private logs. + required: true + - label: This does not request direct push to main. + required: true + - label: This should preserve ION packet, receipt, and proof-gate principles. + required: true + - type: textarea + id: validation + attributes: + label: Expected validation + placeholder: | + PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json + PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q + - type: textarea + id: notes + attributes: + label: Notes, links, or receipts + description: Add non-secret context, GitHub refs, ION receipt paths, or prior discussion links. + diff --git a/.github/ISSUE_TEMPLATE/public_bug_report.yml b/.github/ISSUE_TEMPLATE/public_bug_report.yml new file mode 100644 index 00000000..c5336411 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/public_bug_report.yml @@ -0,0 +1,45 @@ +name: Public bug report +description: Report a non-sensitive problem in the public ION Codex repo. +title: "[Bug] " +labels: + - bug +body: + - type: markdown + attributes: + value: | + Do not include secrets, credentials, private logs, tokens, or production-only state. Use a security advisory for sensitive reports. + - type: textarea + id: summary + attributes: + label: Summary + description: What is wrong? + validations: + required: true + - type: textarea + id: steps + attributes: + label: Reproduction or evidence + description: Include commands, paths, screenshots, or public logs when safe. + placeholder: | + Command: + Expected: + Actual: + validations: + required: true + - type: textarea + id: affected_paths + attributes: + label: Affected paths + placeholder: | + ION/04_packages/kernel/... + ION/09_integrations/... + - type: checkboxes + id: safety + attributes: + label: Safety check + options: + - label: I did not include secrets, credentials, tokens, private logs, or production-only state. + required: true + - label: I understand this issue is public. + required: true + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..198a23a9 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,33 @@ +# Summary + +Describe the bounded change and the owner surfaces reused. + +## ION Boundaries + +- Production authority: false +- Live external execution authority: false +- Secrets or credentials included: no +- Direct `main` push requested: no + +## Touched Paths + +```text + +``` + +## Validation + +```text + +``` + +## Receipts Or Evidence + +```text + +``` + +## Notes + +List known blockers, skipped checks, or follow-up work. + diff --git a/ION/02_architecture/README.md b/ION/02_architecture/README.md new file mode 100644 index 00000000..de00dabf --- /dev/null +++ b/ION/02_architecture/README.md @@ -0,0 +1,30 @@ +# ION Architecture + +This directory contains protocols, contracts, boundary documents, carrier laws, +and architecture decision surfaces. + +## Read First + +- `ION_MOUNT_CONTRACT.md` +- `ION_GITHUB_DATA_PLANE_PROTOCOL.md` +- `ION_GITHUB_WORK_DAEMON_PROTOCOL.md` +- `ION_FULL_CARRIER_MCP_PARITY_PROTOCOL.md` +- `ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md` +- `ION_CHATOPS_YAML_ACTION_PROTOCOL.md` +- `CODEX_CLI_CARRIER_PROTOCOL.md` + +## How To Use This Directory + +- Treat protocols as owner surfaces, not loose notes. +- Prefer extending an existing protocol before creating a new authority lane. +- If a protocol is draft/proposed, keep language honest about non-production + status and missing runtime proof. +- Pair implementation changes with registry, template, test, or receipt updates + when those owners exist. + +## Public Collaboration Boundary + +Public architecture work may discuss design, tool surfaces, packet flow, and +tests. It must not publish secrets, private infrastructure, or production +credentials. + diff --git a/ION/03_registry/README.md b/ION/03_registry/README.md new file mode 100644 index 00000000..23d53ffc --- /dev/null +++ b/ION/03_registry/README.md @@ -0,0 +1,41 @@ +# ION Registry + +This directory contains structured registries, schemas, and policy files used +by carriers, tools, templates, audits, integrations, and runtime projections. + +## Common Registry Types + +```text +*_registry.yaml/json named surfaces, owners, roles, or capabilities +*.schema.json/yaml data shapes and validation contracts +*_policy.yaml bounded behavior and guardrail policy +*_profile.yaml carrier or runtime profiles +``` + +## Key Current Surfaces + +- `codex_cli_carrier_profile.yaml` +- `chatgpt_browser_carrier_profile.yaml` +- `carrier_capability_registry.yaml` +- `mcp_full_carrier_tool_registry.yaml` +- `ion_github_data_plane_registry.yaml` +- `ion_chatops_action.schema.yaml` +- `ion_chatops_extension_policy.yaml` +- `ion_chatops_local_daemon_policy.yaml` +- `ion_chatgpt_browser_mcp_tool_policy.yaml` + +## Subdirectories + +```text +boots/ role boot packets +capabilities/ capability registry material +domains/ domain maps and domain-specific registries +reintegration/ reintegration and recovery mappings +semantic_identities/ semantic identity surfaces +``` + +## Rule + +Registry changes should be small and traceable. When changing runtime behavior, +update the relevant protocol, tests, and receipt path where practical. + diff --git a/ION/05_context/README.md b/ION/05_context/README.md new file mode 100644 index 00000000..d7fbe492 --- /dev/null +++ b/ION/05_context/README.md @@ -0,0 +1,38 @@ +# ION Context + +This directory contains active context, queues, receipts, runtime evidence, +handoffs, archives, and history. + +## High-Traffic Areas + +```text +current/ active packets, queues, receipts, connector state, work requests +archive/ contained or retired context evidence +comms/ communication and migration ledgers +graph/ context graph state +handoff/ handoff and succession packets +history/ historical receipts and runtime traces +inbox/ inbound work and staging lanes +signals/ signals and signal archives +``` + +## Current-State Rule + +Files under `current/` are often operational evidence. Do not clean them by +moving or deleting without a lifecycle policy, receipt, and owner audit. + +## Public Repo Rule + +Because this repository is public, do not place secrets, tokens, private logs, +production infrastructure state, browser profiles, or sensitive user data in +context files. + +## Useful Current Paths + +- `current/ACTIVE_WORK_PACKET.json` +- `current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json` +- `current/ACTIVE_CARRIER_MESSAGE_QUEUE.json` +- `current/github_data_plane/` +- `current/chatops_bridge/` +- `current/chatgpt_connector/` + diff --git a/ION/06_intelligence/README.md b/ION/06_intelligence/README.md new file mode 100644 index 00000000..3b246123 --- /dev/null +++ b/ION/06_intelligence/README.md @@ -0,0 +1,33 @@ +# ION Intelligence + +This directory contains reports, audits, research, decisions, orchestration +maps, evidence, and recovery archaeology. + +## Subdirectory Map + +```text +archaeology/ historical recovery and vestige material +audits/ audit outputs and audit planning +daimon/ daimon/vizier-oriented analysis surfaces +decisions/ decision records +evidence/ evidence artifacts +orchestration/ plans, maps, recovery programs, and workstream indexes +relay/ relay-oriented material +reports/ reports outside the docs consolidation lane +research/ research notes and crosswalks +roundtable/ roundtable and consensus material +specs/ specifications +``` + +## Reading Rule + +This directory is evidence-rich, but not every file is current authority. Prefer +`ION/REPO_AUTHORITY.md`, active packets, architecture protocols, registries, and +templates when deciding current behavior. + +## Cleanup Rule + +Do not delete or reorganize historical intelligence material without a lifecycle +transition plan and receipt. Public navigation should start with indexes and +cross-links, then move only when ownership and references are clear. + diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index 0c799d1a..7ee6ac45 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -42,15 +42,29 @@ system. - Add `ION/04_packages/README.md` and `ION/09_integrations/README.md` for package and integration orientation. +## Implemented Second Slice + +- Add public-safe GitHub issue templates for: + - bounded ION work packets; + - non-sensitive bug reports. +- Add a pull request template that requires touched paths, validation, receipts, + and authority boundaries. +- Add directory-local README indexes for: + - `ION/02_architecture/`; + - `ION/03_registry/`; + - `ION/05_context/`; + - `ION/06_intelligence/`. + ## Proposed Next Slices 1. Add directory-local README files for: - - `ION/02_architecture/` - - `ION/03_registry/` - - `ION/05_context/` - - `ION/06_intelligence/` + - `ION/00_BOOTSTRAP/` + - `ION/04_agents/` + - `ION/07_templates/actions/` + - `ION/07_templates/carriers/` 2. Add a generated or checked navigation index for high-value kernel modules. -3. Add a public-safe issue template for work packets and proof returns. +3. Add a public-safe issue template for proof returns or task returns if GitHub + issues become a durable return surface. 4. Add a lifecycle proposal for root-level `FILES_ADDED_V*.txt` witness files: keep them tracked, but consider moving future witness manifests under `ION/docs/consolidation/` or `ION/05_context/archive/` with receipts. From 655379e3bc30b7d878ea26cb491b7bfd43cf62d1 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:33:37 -0400 Subject: [PATCH 04/30] Archive root witness manifests --- ION/05_context/README.md | 12 ++++++- ...LOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt | 0 ...1_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt | 0 ..._V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt | 0 ...RAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt | 0 ...H_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt | 0 ...ATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt | 0 ...DDED_V108_V72_MCP_DONOR_RECONCILIATION.txt | 0 ...ILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt | 0 ...NTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt | 0 ...1_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt | 0 ...NNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt | 0 ...ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt | 0 ...S_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt | 0 ..._CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt | 0 ..._MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt | 0 .../FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt | 0 ...AL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt | 0 ...DED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt | 0 .../FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt | 0 ...WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt | 0 .../FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt | 0 ...DDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt | 0 ...OSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt | 0 ...DED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt | 0 ...R_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt | 0 ...S_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt | 0 ...D_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt | 0 ...1_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt | 0 .../FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt | 0 ...AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt | 0 ..._CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt | 0 ...COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt | 0 ...ES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt | 0 ...VAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt | 0 ...CHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt | 0 ...TEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt | 0 ...CT_CONSOLIDATION_RECEIPT_V100_20260501.txt | 0 ...CT_CONSOLIDATION_RECEIPT_V102_20260502.txt | 0 ...CT_CONSOLIDATION_RECEIPT_V103_20260502.txt | 0 ...CT_CONSOLIDATION_RECEIPT_V104_20260502.txt | 0 .../archive/root_witness_manifests/README.md | 36 +++++++++++++++++++ ...RELOCATION_RECEIPT_2026-05-05T043241Z.json | 30 ++++++++++++++++ ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 15 ++++++-- README.md | 9 ++++- 45 files changed, 97 insertions(+), 5 deletions(-) rename FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt (100%) rename FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt (100%) rename FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt (100%) rename FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt (100%) rename FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt (100%) rename FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt (100%) rename FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt (100%) rename FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt (100%) rename FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt (100%) rename FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt (100%) rename FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt (100%) rename FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt (100%) rename FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt (100%) rename FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt (100%) rename FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt (100%) rename FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt (100%) rename FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt (100%) rename FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt (100%) rename FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt (100%) rename FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt (100%) rename FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt (100%) rename FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt (100%) rename FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt (100%) rename FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt (100%) rename FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt (100%) rename FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt (100%) rename FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt (100%) rename FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt (100%) rename FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt (100%) rename FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt (100%) rename FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt (100%) rename FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt (100%) rename FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt (100%) rename FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt (100%) rename FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt (100%) rename FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt => ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt (100%) rename FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt => ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt (100%) rename FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt => ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt (100%) rename FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt => ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt (100%) rename FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt => ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt (100%) create mode 100644 ION/05_context/archive/root_witness_manifests/README.md create mode 100644 ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json diff --git a/ION/05_context/README.md b/ION/05_context/README.md index d7fbe492..d9c29c62 100644 --- a/ION/05_context/README.md +++ b/ION/05_context/README.md @@ -27,6 +27,17 @@ Because this repository is public, do not place secrets, tokens, private logs, production infrastructure state, browser profiles, or sensitive user data in context files. +## Archive Notes + +Root-level witness files from the initial public upload were moved to: + +```text +archive/root_witness_manifests/ +``` + +That move is a lifecycle relocation, not deletion. Historical manifests may +still reference the old root paths as prior-state evidence. + ## Useful Current Paths - `current/ACTIVE_WORK_PACKET.json` @@ -35,4 +46,3 @@ context files. - `current/github_data_plane/` - `current/chatops_bridge/` - `current/chatgpt_connector/` - diff --git a/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt similarity index 100% rename from FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt diff --git a/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt similarity index 100% rename from FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt diff --git a/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt similarity index 100% rename from FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt diff --git a/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt similarity index 100% rename from FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt diff --git a/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt similarity index 100% rename from FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt diff --git a/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt similarity index 100% rename from FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt diff --git a/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt similarity index 100% rename from FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt diff --git a/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt similarity index 100% rename from FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt diff --git a/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt similarity index 100% rename from FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt diff --git a/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt similarity index 100% rename from FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt diff --git a/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt similarity index 100% rename from FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt diff --git a/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt similarity index 100% rename from FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt diff --git a/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt similarity index 100% rename from FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt diff --git a/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt similarity index 100% rename from FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt diff --git a/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt similarity index 100% rename from FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt diff --git a/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt similarity index 100% rename from FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt diff --git a/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt similarity index 100% rename from FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt diff --git a/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt similarity index 100% rename from FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt diff --git a/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt similarity index 100% rename from FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt diff --git a/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt similarity index 100% rename from FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt diff --git a/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt similarity index 100% rename from FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt diff --git a/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt similarity index 100% rename from FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt diff --git a/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt similarity index 100% rename from FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt diff --git a/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt similarity index 100% rename from FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt diff --git a/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt similarity index 100% rename from FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt diff --git a/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt similarity index 100% rename from FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt diff --git a/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt similarity index 100% rename from FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt diff --git a/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt similarity index 100% rename from FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt diff --git a/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt similarity index 100% rename from FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt diff --git a/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt similarity index 100% rename from FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt diff --git a/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt similarity index 100% rename from FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt diff --git a/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt similarity index 100% rename from FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt diff --git a/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt similarity index 100% rename from FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt diff --git a/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt similarity index 100% rename from FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt diff --git a/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt similarity index 100% rename from FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt diff --git a/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt b/ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt similarity index 100% rename from FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt rename to ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt diff --git a/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt b/ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt similarity index 100% rename from FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt rename to ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt diff --git a/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt b/ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt similarity index 100% rename from FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt rename to ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt diff --git a/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt b/ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt similarity index 100% rename from FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt rename to ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt diff --git a/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt b/ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt similarity index 100% rename from FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt rename to ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt diff --git a/ION/05_context/archive/root_witness_manifests/README.md b/ION/05_context/archive/root_witness_manifests/README.md new file mode 100644 index 00000000..883f14b4 --- /dev/null +++ b/ION/05_context/archive/root_witness_manifests/README.md @@ -0,0 +1,36 @@ +# Root Witness Manifests + +This directory contains witness files that previously lived at the repository +root. + +They were moved here during public repository cleanup so the GitHub root can +serve as a clear entry point while preserving historical evidence. + +## Moved File Classes + +```text +FILES_ADDED_V*.txt +FULL_PROJECT_CONSOLIDATION_RECEIPT_*.txt +``` + +Moved count: 40 files. + +## Why They Are Here + +These files are version and consolidation witnesses. They are not the best first +thing a public collaborator should see, but they are still useful evidence. + +Historical manifests and receipts may still reference the old root-level paths. +Those references are not rewritten because they record the state of the +repository at the time they were produced. + +## Current Location Rule + +For current navigation, use this directory: + +```text +ION/05_context/archive/root_witness_manifests/ +``` + +Do not delete or rewrite these witnesses without a lifecycle transition receipt. + diff --git a/ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json b/ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json new file mode 100644 index 00000000..224df383 --- /dev/null +++ b/ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json @@ -0,0 +1,30 @@ +{ + "schema_id": "ion.github_data_plane.root_witness_manifest_relocation_receipt.v1", + "created_at": "2026-05-05T04:32:41Z", + "action_id": "public-repo-root-witness-manifest-cleanup", + "carrier": "CODEX_CLI_CARRIER", + "production_authority": false, + "live_execution_authority": false, + "git_mutation_performed": true, + "github_mutation_performed": false, + "operation": "lifecycle_relocation_no_deletion", + "source_root": ".", + "target_directory": "ION/05_context/archive/root_witness_manifests/", + "moved_file_count": 40, + "moved_file_patterns": [ + "FILES_ADDED_V*.txt", + "FULL_PROJECT_CONSOLIDATION_RECEIPT_*.txt" + ], + "reason": "Reduce public GitHub root clutter while preserving witness evidence.", + "no_silent_loss": { + "deleted_files": 0, + "relocation_readme": "ION/05_context/archive/root_witness_manifests/README.md", + "historical_references_preserved": true, + "note": "Historical manifests may still reference pre-relocation root paths because they record prior repository state." + }, + "boundaries": { + "main_direct_push": false, + "production_deploy_authorized": false, + "secrets_authorized": false + } +} diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index 7ee6ac45..1f36c473 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -55,6 +55,15 @@ system. - `ION/05_context/`; - `ION/06_intelligence/`. +## Implemented Third Slice + +- Move root-level witness files into: + `ION/05_context/archive/root_witness_manifests/`. +- Add a directory README explaining the lifecycle relocation. +- Add a relocation receipt under `ION/05_context/current/github_data_plane/`. +- Keep historical manifests unchanged where they reference old root paths, + because those references describe prior repository state. + ## Proposed Next Slices 1. Add directory-local README files for: @@ -65,9 +74,9 @@ system. 2. Add a generated or checked navigation index for high-value kernel modules. 3. Add a public-safe issue template for proof returns or task returns if GitHub issues become a durable return surface. -4. Add a lifecycle proposal for root-level `FILES_ADDED_V*.txt` witness files: - keep them tracked, but consider moving future witness manifests under - `ION/docs/consolidation/` or `ION/05_context/archive/` with receipts. +4. Decide where future witness manifests should land by default: + `ION/docs/consolidation/` for public report indexes, or + `ION/05_context/archive/` for lifecycle evidence. 5. Add a public/private split plan for future production infrastructure repos. 6. Refine `kernel.ion_github_commit_proposal_receipt` so small follow-up proposals can emit a changed-path manifest instead of the whole repository diff --git a/README.md b/README.md index 56645bab..fdd990c9 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOL ## Main Directory Map ```text +.github public issue and pull request templates +.cursor Cursor carrier configuration and rules +.vscode editor launch/settings recommendations ION/00_BOOTSTRAP bootstrap and historical mount surfaces ION/01_doctrine doctrine floor and workflow law ION/02_architecture protocols and architecture authority @@ -64,8 +67,13 @@ ION/09_integrations MCP, browser extension, daemon, Cursor integrations ION/docs setup guides, consolidation reports, public docs ION/examples examples and harness inputs ION/tests pytest suite +pyproject.toml Python package/test configuration ``` +Historical root witness files such as `FILES_ADDED_V*.txt` and +`FULL_PROJECT_CONSOLIDATION_RECEIPT_*.txt` are archived under +`ION/05_context/archive/root_witness_manifests/` to keep this root readable. + ## GitHub Data Plane The canonical public repository is: @@ -82,4 +90,3 @@ See: - `ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md` - `ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md` - `ION/03_registry/ion_github_data_plane_registry.yaml` - From 1acffc61886d6465be53d60d3e2100511be953e0 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:37:44 -0400 Subject: [PATCH 05/30] Polish public landing README --- ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 7 + README.md | 857 ++++++++++++++++-- pyproject.toml | 2 +- 3 files changed, 805 insertions(+), 61 deletions(-) diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index 1f36c473..13d9f9e3 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -64,6 +64,13 @@ system. - Keep historical manifests unchanged where they reference old root paths, because those references describe prior repository state. +## Implemented Fourth Slice + +- Replace the short root README with a full public landing-page README. +- Keep `ION/README.md` as the content-root navigation index. +- Point `pyproject.toml` package metadata at the root `README.md` so the public + landing page is the package readme. + ## Proposed Next Slices 1. Add directory-local README files for: diff --git a/README.md b/README.md index fdd990c9..ccefe8a3 100644 --- a/README.md +++ b/README.md @@ -1,92 +1,829 @@ -# ION Codex +# ION -ION Codex is the public collaboration repository for the current runnable ION -kernel branch, carrier integrations, context artifacts, and proof-gated local -automation work. +> **A protocol of continuity for AI work.** +> Not just an application, not just an agent framework, and not just a set of +> prompts - **ION** is a governed operating substrate for long-horizon AI +> orchestration, context continuity, proof-gated action, and carrier-agnostic +> execution. -This repository is public so outside users and AI collaborators can inspect, -discuss, and contribute. It is not a production deployment surface and it does -not grant authority to publish secrets, credentials, private logs, or unsafe -runtime state. +--- -## Start Here +## Table Of Contents -The authoritative content root is: +1. [What ION Is](#what-ion-is) +2. [Why ION Exists](#why-ion-exists) +3. [The Central Thesis](#the-central-thesis) +4. [Current Truthful Posture](#current-truthful-posture) +5. [A Whole-System Map](#a-whole-system-map) +6. [The Canonical Workflow](#the-canonical-workflow) +7. [Roles, Carriers, And Identity Boundaries](#roles-carriers-and-identity-boundaries) +8. [The Repository Atlas](#the-repository-atlas) +9. [The Kernel Surface](#the-kernel-surface) +10. [Context, State, And Continuity](#context-state-and-continuity) +11. [Integrations](#integrations) +12. [The UI / Cockpit Direction](#the-ui--cockpit-direction) +13. [Getting Started](#getting-started) +14. [How To Mount Correctly](#how-to-mount-correctly) +15. [How To Verify Truth](#how-to-verify-truth) +16. [Design Laws And Invariants](#design-laws-and-invariants) +17. [Selected File Index](#selected-file-index) +18. [What ION Is Not](#what-ion-is-not) +19. [Roadmap And Near-Term Frontiers](#roadmap-and-near-term-frontiers) +20. [Why This Project Matters](#why-this-project-matters) + +--- + +## What ION Is + +ION is a **local-first, law-governed, packetized AI operating substrate**. + +Its purpose is to let complex AI work continue across time, carriers, tools, +and contexts without collapsing into drift, hand-wavy memory, or ungoverned +execution. + +At its core, ION treats meaningful work as a governed loop: + +- a work packet is opened; +- context is compiled and bounded; +- roles are mounted through carriers; +- outputs are returned as proposals; +- proofs and gates decide whether those outputs may affect state; +- receipts preserve continuity; +- the next cycle begins from preserved truth rather than improvisation. + +ION is best understood as a hybrid of: + +- an AI runtime kernel; +- an orchestration protocol; +- a context continuity system; +- a receipt and proof membrane; +- a carrier model for IDEs, ChatGPT Browser, Codex CLI, MCP, and future + adapters; +- and an emerging cockpit UI for observing and steering the system. + +It is not built on the assumption that a single model, chat, or context window +can remain authoritative forever. Instead, it encodes the idea that continuity +must be constructed, governed, projected, and renewed. + +## Why ION Exists + +Modern AI work breaks down in predictable ways: + +- context windows overflow; +- tools and chats lose continuity; +- outputs are mistaken for truth; +- hosts confuse carrier behavior with system authority; +- agent systems drift into improvisation; +- automations mutate state without sufficient proof; +- large projects become impossible to steward coherently over time. + +ION exists to answer that failure mode. + +It is an attempt to turn AI work from an ephemeral conversation into a +**governed operational continuum**. + +The project is especially concerned with: + +- long-horizon orchestration; +- continuity across sessions and carriers; +- truthful state rather than role-played state; +- manual fallback that is still lawful; +- explicit authority boundaries between thinking, acting, integrating, and + presenting. + +## The Central Thesis + +### 1. Continuity Must Be Protocolized + +AI continuity should not depend on a model "remembering" in an informal sense. +It should depend on governed packets, context bundles, registries, receipts, +and laws. + +### 2. Work Must Be Bounded + +Every meaningful step should be representable as a bounded work unit with clear +scope, allowed paths, forbidden paths, validations, and return expectations. + +### 3. Carriers Are Not Identities + +ChatGPT Browser, Cursor, Codex CLI, MCP, and other hosts are **carriers**. They +are not ION itself. A carrier can mount a role, but it does not become the +ontology or authority of the system. + +### 4. Output Is Not Truth By Default + +Raw worker output is proposal material until it crosses proof and acceptance +boundaries. + +### 5. Manual Operation Is Real Operation + +ION rejects the idea that only full automation is legitimate. Manual execution +must remain a lawful fallback so the system stays operable even when hosts or +adapters are weak. + +### 6. Automation Is Shadow Until Proven + +A claimed automation is not enough. It must be bounded, auditable, and proven +against the same law that governs manual execution. + +### 7. No Silent Loss + +Authority-bearing state must not simply disappear. Harmful or obsolete surfaces +may move to containment, quarantine, archive, or supersession - but only with +explicit custody, classification, and proof. + +## Current Truthful Posture + +This README reflects the public collaboration branch represented by PR #1. + +### Verified Shell / Root Shape + +- **Shell root:** repository root containing `pyproject.toml` and + `ION/REPO_AUTHORITY.md` +- **Canonical content root:** `ION/` +- **Package root:** `ION/04_packages/kernel/` +- **Test root:** `ION/tests/` + +### Latest Verified Runtime Posture + +- `ion_status` verdict: **`ION_STATUS_READY`** +- active-state integrity verdict: **`ION_ACTIVE_STATE_INTEGRITY_READY`** +- production authority: **false** +- live execution authority: **false** +- open human gates: **0** +- spawn queue count: **0** + +### Latest Verified Validation + +From the repository shell root: + +```bash +PYTHONDONTWRITEBYTECODE=1 \ +PYTHONPATH=ION/04_packages \ +PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \ +python3 -m pytest ION/tests -q +``` + +Observed result in the latest PR validation pass: ```text -ION/ +265 passed ``` -The shell root is this repository root. Run commands from here when they rely -on `pyproject.toml`, package discovery, or pytest configuration. +### Important Current Caution -Recommended first reads: +This branch contains working surfaces for MCP, ChatOps, Codex CLI, current-state +packets, GitHub data-plane work, and UI view models. Default authority remains +intentionally bounded. The system does not claim production authority or +unconstrained live execution because code exists. -1. `ION/REPO_AUTHORITY.md` -2. `ION/README.md` -3. `ION/02_architecture/ION_MOUNT_CONTRACT.md` -4. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` -5. `ION/docs/README.md` +## A Whole-System Map -## Quick Proof Commands +```mermaid +flowchart TB + A[Human Sovereign / Operator] --> B[Carrier] -```bash -test -f pyproject.toml && test -f ION/REPO_AUTHORITY.md -PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json -PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q + subgraph C[Carriers] + C1[ChatGPT Browser] + C2[Cursor IDE] + C3[Codex CLI] + C4[MCP Client] + C5[Future Adapters] + end + + B --> C + C --> D[ION Mount Contract] + D --> E[Doctrine] + D --> F[Registry] + D --> G[Execution Packets] + D --> H[Role Boots / Context Bundles] + + subgraph I[Kernel] + I1[ion_status] + I2[carrier onboarding] + I3[cycle runner] + I4[proof gates] + I5[task return intake] + I6[cockpit view models] + I7[packagers / audits / queues] + end + + E --> I + F --> I + G --> I + H --> I + + subgraph J[Active State] + J1[05_context/current] + J2[queues] + J3[receipts] + J4[handoffs] + J5[compiled bundles] + end + + I --> J + + subgraph K[Integrations] + K1[Browser ChatOps Extension] + K2[Local ChatOps Daemon] + K3[Cursor Extension] + K4[Local MCP Server] + K5[ChatGPT Connector] + K6[GitHub Data Plane] + end + + I --> K + K --> J + + subgraph L[UI / Cockpit] + L1[JOC Cockpit Panels] + L2[Runtime Debug Overlay] + L3[Lane Timeline] + L4[Queue + Receipt Views] + end + + I --> L + L --> A ``` -## Public Collaboration Boundaries +### The Continuity Membrane -- Do not commit secrets, API keys, tokens, private `.env` files, browser - profiles, tunnel credentials, or production infrastructure state. -- Do not treat issue comments, GitHub comments, or raw AI output as accepted - ION state. Durable work should pass through ION packets, receipts, or PRs. -- Do not push directly to `main` for normal work. Use scoped branches such as - `docs/*`, `work/*`, `agent/*`, or `data-plane/*` and open a pull request. -- Do not claim ION identity, Steward authority, production authority, or live - external execution authority through this repository. +```mermaid +flowchart LR + A[Input / Objective] --> B[Work Packet] + B --> C[Bounded Role Execution] + C --> D[Proposal / Return] + D --> E[Context Proof Gate] + D --> F[Template Action Gate] + E --> G[Steward Integration] + F --> G + G --> H[Receipt / Handoff / Updated State] + H --> I[Next Cycle] + I --> B +``` -## Main Directory Map +This is the heart of ION. The point is not merely to "have agents," but to +ensure each cycle can be resumed, audited, integrated, and trusted. + +## The Canonical Workflow + +ION's workflow law is distributed across several authority files: + +- `ION/REPO_AUTHORITY.md` +- `ION/02_architecture/ION_MOUNT_CONTRACT.md` +- `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` +- `ION/01_doctrine/CANONICAL_WORKFLOW.md` + +The practical loop is: + +1. **Enter the correct root.** Confirm the shell root by the presence of + `pyproject.toml` and `ION/REPO_AUTHORITY.md`. +2. **Mount through law, not vibes.** Read repo authority, mount contract, + current operating packet, carrier profile, and the relevant execution + packet. +3. **Run status.** Let the kernel tell you the actual current state. +4. **Frame the work.** Intake and work-cycle framing happen before broad + execution. +5. **Route deliberately.** Role, carrier, and work packet boundaries decide the + lawful lane. +6. **Execute bounded work.** A carrier may traverse multiple phases in sequence, + but role identity remains bounded to the current phase. +7. **Treat outputs as proposals.** Nothing becomes truth merely because a worker + produced it. +8. **Use proof gates.** Context proof, template action proof, task return + intake, and other gates govern whether proposals may affect state. +9. **Close with receipts.** Integration or rejection should leave evidence for + the next cycle. + +ION prefers lawful continuation over clever improvisation. + +## Roles, Carriers, And Identity Boundaries + +One of the most important ideas in ION is the distinction between **role** and +**carrier**. + +### Roles + +ION's role web includes orchestration, presentation, context, analysis, memory, +and specialized technical functions. + +| Role | Function | +| --- | --- | +| **STEWARD** | systems integration, routing, acceptance/rejection, authority closure | +| **RELAY** | intake, packet formation, transmission, final visible handoff | +| **PERSONA_INTERFACE** | front-stage user-facing presentation when explicitly mounted | +| **VIZIER** | high-level strategy and route intelligence | +| **MASON** | construction / implementation / build execution coordination | +| **VICE** | discipline, critique, pressure testing, hardening | +| **NEMESIS** | adversarial audit and failure-mode pressure | +| **VESTIGE** | memory, archaeology, historical continuity, residue interpretation | +| **SCRIBE** | structured capture and documentation support | + +### Carriers + +Carriers are hosts or execution chassis: + +| Carrier | Meaning | +| --- | --- | +| **ChatGPT Browser** | continuity, coordination, conversation, bounded connector lane | +| **Cursor IDE** | local IDE carrier with extension and subagent surfaces | +| **Codex CLI** | bounded local filesystem/build/test worker carrier | +| **MCP** | protocol transport and tool exposure surface | +| **Future adapters** | additional hosts that may mount ION lawfully | + +### Non-Negotiable Boundary ```text -.github public issue and pull request templates -.cursor Cursor carrier configuration and rules -.vscode editor launch/settings recommendations -ION/00_BOOTSTRAP bootstrap and historical mount surfaces -ION/01_doctrine doctrine floor and workflow law -ION/02_architecture protocols and architecture authority -ION/03_registry carrier, tool, capability, and policy registries -ION/04_agents role and carrier agent surfaces -ION/04_packages Python kernel package -ION/05_context active context, queues, receipts, runtime evidence -ION/06_intelligence reports, audits, research, orchestration maps -ION/07_templates packet, receipt, carrier, and action templates -ION/08_ui UI/cockpit surfaces -ION/09_integrations MCP, browser extension, daemon, Cursor integrations -ION/docs setup guides, consolidation reports, public docs -ION/examples examples and harness inputs -ION/tests pytest suite -pyproject.toml Python package/test configuration +ION orchestrates. +Cursor carries. +Codex carries. +ChatGPT Browser carries. +MCP carries. +No carrier is ION identity. ``` +This rule is one of the project's central anti-drift protections. + +## The Repository Atlas + +The project combines doctrine, architecture, registries, runtime state, +templates, UI, integrations, and tests. + +### Top-Level Directory Structure + +| Path | Purpose | +| --- | --- | +| `.github/` | public issue and pull request templates | +| `.cursor/` | Cursor carrier configuration and rules | +| `.vscode/` | editor launch/settings recommendations | +| `ION/00_BOOTSTRAP/` | bootstrapping and startup surfaces | +| `ION/01_doctrine/` | constitutional and doctrinal law | +| `ION/02_architecture/` | protocols, lifecycle rules, carrier/runtime architecture | +| `ION/03_registry/` | registries, schemas, policies, carrier profiles | +| `ION/04_agents/` | carrier doctrine and related agent surfaces | +| `ION/04_packages/` | executable Python kernel package root | +| `ION/05_context/` | active state, history, inbox, reports, handoffs, archives | +| `ION/06_intelligence/` | audits, archaeology, reports, orchestration research | +| `ION/07_templates/` | templates for action, context, carriers, automation | +| `ION/08_ui/` | cockpit shell and UI surfaces | +| `ION/09_integrations/` | browser extension, Cursor extension, daemon, MCP | +| `ION/docs/` | setup, encyclopedia, consolidation reports | +| `ION/examples/` | examples and helper surfaces | +| `ION/tests/` | kernel and integration test suite | + Historical root witness files such as `FILES_ADDED_V*.txt` and -`FULL_PROJECT_CONSOLIDATION_RECEIPT_*.txt` are archived under -`ION/05_context/archive/root_witness_manifests/` to keep this root readable. +`FULL_PROJECT_CONSOLIDATION_RECEIPT_*.txt` are archived under: + +```text +ION/05_context/archive/root_witness_manifests/ +``` + +### How To Think About These Directories + +- `01_doctrine` tells you what must remain true. +- `02_architecture` tells you how the system is supposed to work. +- `03_registry` tells you what entities, policies, and schemas exist. +- `04_packages/kernel` is what actually runs. +- `05_context` is where runtime continuity lives. +- `07_templates` is the governed substrate through which actions and context are + shaped. +- `08_ui` is the projection surface. +- `09_integrations` is where carriers and adapters meet the kernel. -## GitHub Data Plane +## The Kernel Surface -The canonical public repository is: +The package root is: ```text -https://github.com/ION-operations/ion-codex +ION/04_packages/kernel/ ``` -GitHub is a durable collaboration/data plane. ION remains the authority layer -for packets, context, receipts, proof gates, and carrier boundaries. +This is the executable center of gravity for the current repo. + +Representative kernel modules include: + +- `ion_status.py` +- `ion_carrier_onboard.py` +- `ion_carrier_continue.py` +- `ion_cycle_runner.py` +- `ion_context_proof_gate.py` +- `ion_template_action_gate.py` +- `ion_carrier_task_return.py` +- `ion_steward_integrate.py` +- `ion_active_state_integrity_audit.py` +- `ion_cockpit_view_model.py` +- `ion_codex_queue_runner.py` +- `ion_agent_invocation_broker.py` +- `ion_chatops_bridge.py` +- `ion_github_data_plane_audit.py` +- `ion_lifecycle_packager.py` +- `ion_safe_full_project_packager.py` + +Conceptually, the kernel does four things: + +1. **Projects state truthfully** - status, view models, audits, packets, queues. +2. **Runs bounded work cycles** - onboarding, continuation, routing, packet + processing, queue handling. +3. **Protects the membrane** - proof gates, task return intake, authority + checks, trunk preservation, containment logic. +4. **Bridges to carriers and tools** - MCP, ChatOps, Cursor, Codex, packaging, + diagnostics. + +## Context, State, And Continuity + +ION treats context as a structured system, not a loose chat log. + +The hot operational center is: + +```text +ION/05_context/current/ +``` + +Representative active surfaces include: + +- `ACTIVE_WORK_PACKET.json` +- `ACTIVE_ROLE_SPAWN_PLAN.json` +- `ACTIVE_CARRIER_TURN_PACKET.json` +- `ACTIVE_OPERATOR_MESSAGE_QUEUE.json` +- `ACTIVE_HUMAN_GATE_QUEUE.json` +- `ACTIVE_CARRIER_TASK_RETURN_LEDGER.json` +- `ACTIVE_STEWARD_INTEGRATION_QUEUE.json` +- `ACTIVE_COCKPIT_VIEW_MODEL.json` + +Around the current-state root, ION maintains additional context planes: + +- `archive/` +- `history/` +- `handoff/` +- `runtime_reports/` +- `signals/` +- `steward_handoffs/` +- `inbox/` +- `continuation_bundles/` + +The project stance is that context should remain navigable, history should +remain recoverable, generated or superseded surfaces should be contained rather +than silently erased, and no single context artifact should be confused with the +whole system. + +## Integrations + +ION is increasingly a multi-carrier system. + +### MCP + +Relevant surfaces: + +- `ION/09_integrations/mcp/` +- `ION/04_packages/kernel/ion_mcp_local_bridge.py` +- `ION/04_packages/kernel/ion_mcp_bridge_audit.py` +- `ION/03_registry/ion_mcp_*` + +The local MCP lane exposes bounded ION tools rather than arbitrary shell or +filesystem power. + +### ChatGPT Browser Connector Lane + +Relevant surfaces: + +- `ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md` +- `ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py` +- `ION/09_integrations/mcp/chatgpt_connector/` + +This bridge lets ChatGPT Browser operate as a continuity and coordination lane +while remaining bounded. + +### Browser ChatOps Extension + Local Daemon + +Relevant surfaces: + +- `ION/09_integrations/browser_extension/ion_chatops_bridge/` +- `ION/09_integrations/local_daemon/ion_chatops_bridge/` +- `ION/04_packages/kernel/ion_chatops_bridge.py` +- `ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md` +- `ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md` + +The extension detects valid `ion_action` YAML blocks rendered in ChatGPT +Browser, validates them through a localhost daemon, presents approval controls, +and turns approved actions into ION-side artifacts, receipts, work packets, or +package exports. + +### Cursor Extension -See: +Relevant surfaces: + +- `ION/09_integrations/cursor_extension/` +- `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md` + +The Cursor lane gives ION a local IDE carrier with file visibility, subagent +slots, and a path toward integrated development workflows. + +### Codex CLI + +Relevant surfaces: + +- `ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md` +- `ION/03_registry/codex_cli_carrier_profile.yaml` +- `ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md` +- `ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md` +- `ION/04_packages/kernel/ion_codex_cli_carrier_audit.py` + +Codex CLI is positioned as the preferred local bounded worker carrier for +build/test/diff work. + +### GitHub Data Plane + +Relevant surfaces: - `ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md` - `ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md` +- `ION/04_packages/kernel/ion_github_data_plane_audit.py` - `ION/03_registry/ion_github_data_plane_registry.yaml` + +GitHub is not the authority of ION. It is the public collaboration and versioning +data plane. Local ION law remains the authority membrane. + +## The UI / Cockpit Direction + +ION is not only trying to behave correctly. It is trying to **show its own +truth**. + +Existing JOC cockpit shell surfaces under `ION/08_ui/joc_cockpit_shell/` +include: + +- `RuntimeStatusPanel.tsx` +- `CarrierTurnPanel.tsx` +- `ContextPackageInspectorPanel.tsx` +- `LaneTimelinePanel.tsx` +- `HumanGateQueuePanel.tsx` +- `TaskReturnLedgerPanel.tsx` +- `StewardIntegrationQueuePanel.tsx` +- `ReceiptHydrationPanel.tsx` +- `RuntimeDebugOverlayPanel.tsx` + +The cockpit is meant to expose current objective, lane state, queue state, role +progression, gates and blockers, receipts, integration decisions, runtime +overlays, and the true flow of work through the system. + +## Getting Started + +### Requirements + +- Python 3.11+ +- a local shell environment +- optional IDE/carrier integrations depending on lane + +### Install / Run The Package + +From the repository shell root: + +```bash +python3 -m venv .venv +source .venv/bin/activate +pip install -e . +``` + +After editable install, the intended package behavior is: + +- `import kernel` works without manual `PYTHONPATH`; +- `python -m kernel` works; +- pytest runs from the shell root against `ION/tests`. + +### Fast Verification + +```bash +python3 -m kernel.ion_status --ion-root . --json +python3 -m pytest ION/tests -q +``` + +### Without Editable Install + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +``` + +## How To Mount Correctly + +If you enter the repo fresh, do not begin by guessing. + +Read in this order: + +1. `ION/REPO_AUTHORITY.md` +2. `ION/02_architecture/ION_MOUNT_CONTRACT.md` +3. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` +4. the selected carrier profile under `ION/03_registry/` +5. the selected carrier execution packet template under + `ION/07_templates/carriers/` +6. the active packet or spawn-row context package under + `ION/05_context/current/` +7. `ION/01_doctrine/CANONICAL_WORKFLOW.md` when broad workflow doctrine is + needed + +That is the repo's own stated mount order. + +Example status and continuation trace: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_carrier_continue --ion-root . --carrier CHATGPT_BROWSER_CARRIER --operator-message "continue" --json +``` + +## How To Verify Truth + +The most important habit in ION is to distinguish between **described state** +and **observed state**. + +Useful verification commands: + +```bash +python3 -m kernel.ion_status --ion-root . --json +python3 -m kernel.ion_carrier_onboarding_authority_audit --ion-root . --json +python3 -m kernel.ion_mcp_bridge_audit --ion-root . --json +python3 -m kernel.ion_codex_cli_carrier_audit --ion-root . --json +python3 -m kernel.ion_github_data_plane_audit --ion-root . --json +python3 -m pytest ION/tests -q +``` + +The project strongly prefers auditable proof over chat claims. + +## Design Laws And Invariants + +### Manual ION Is Real + +Manual mode is the lawful fallback that keeps the system usable when higher +automation levels are unavailable. + +### Automation Is Shadow Until Proven + +No carrier, adapter, or daemon should claim more power or correctness than has +actually been demonstrated. + +### No Silent Loss + Containment Preservation + +A file or authority surface should not vanish unreceipted. The right answer to +stale or conflicting state is custody and classification. + +### One Canonical Workflow + +Multiple carriers may exist, but they should converge on one law-governed +operational loop rather than inventing contradictory execution stories. + +### Bounded Work And Bounded Identity + +Roles, phases, allowed paths, and validations are meant to stay explicit. + +### Context Packages Over Vague Memory + +Structured context artifacts outrank loose implied memory. + +### Projection Discipline + +UI, status, and reporting surfaces should project truth rather than improvise +it. + +## Selected File Index + +### Core Authority + +- `ION/REPO_AUTHORITY.md` +- `ION/02_architecture/ION_MOUNT_CONTRACT.md` +- `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` +- `ION/01_doctrine/CANONICAL_WORKFLOW.md` +- `ION/01_doctrine/SOVEREIGN_CONSTITUTION.md` +- `ION/01_doctrine/SOVEREIGN_KERNEL.md` + +### Carrier And Runtime Architecture + +- `ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md` +- `ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md` +- `ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md` +- `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md` + +### Registry / Profile Surfaces + +- `ION/03_registry/chatgpt_browser_carrier_profile.yaml` +- `ION/03_registry/codex_cli_carrier_profile.yaml` +- `ION/03_registry/mcp_full_carrier_tool_registry.yaml` +- `ION/03_registry/ion_chatops_action.schema.yaml` +- `ION/03_registry/ion_chatops_extension_policy.yaml` +- `ION/03_registry/ion_chatops_local_daemon_policy.yaml` + +### Executable Kernel Surfaces + +- `ION/04_packages/kernel/ion_status.py` +- `ION/04_packages/kernel/ion_carrier_onboard.py` +- `ION/04_packages/kernel/ion_carrier_continue.py` +- `ION/04_packages/kernel/ion_cycle_runner.py` +- `ION/04_packages/kernel/ion_chatops_bridge.py` +- `ION/04_packages/kernel/ion_codex_queue_runner.py` +- `ION/04_packages/kernel/ion_agent_invocation_broker.py` +- `ION/04_packages/kernel/ion_cockpit_view_model.py` +- `ION/04_packages/kernel/ion_github_data_plane_audit.py` + +### Integrations + +- `ION/09_integrations/browser_extension/ion_chatops_bridge/README.md` +- `ION/09_integrations/local_daemon/ion_chatops_bridge/README.md` +- `ION/09_integrations/mcp/chatgpt_connector/README.md` +- `ION/09_integrations/cursor_extension/README.md` + +### UI And Cockpit + +- `ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx` +- `ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx` +- `ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx` + +### Living Project Documentation + +- `ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md` +- `ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md` +- `ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md` +- `ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md` + +## What ION Is Not + +ION is **not**: + +- a generic "agent swarm" with hand-wavy autonomy claims; +- a simple memory layer pasted onto a chatbot; +- a single UI pretending to be the system; +- a replacement for git, tests, or local development discipline; +- a justification for unconstrained automation; +- a prompt trick dressed up as infrastructure. + +It is trying to be something harder: a coherent, inspectable, protocolized +operating substrate for AI work. + +## Roadmap And Near-Term Frontiers + +### 1. Browser-Side ION Operation + +The ChatOps extension and daemon suggest a future where ChatGPT Browser can +operate as a genuine carrier lane with approval-gated local effects, package +export, queue visibility, and sandbox return intake. + +### 2. Stronger Cockpit UI + +The JOC cockpit can evolve into the primary truth surface for active objective, +lane state, queue progression, approvals, receipts, and continuity review. + +### 3. ChatGPT Sandbox Return Lane + +A promising direction is the ability for ChatGPT Browser to work on a local ZIP +or package in its sandbox, then return a patch or artifact to +`ION/05_context/inbox/` for formal local review and integration. + +### 4. GitHub Data Plane Maturation + +GitHub can support public/private collaboration, issue planning, PR review, +release packaging, and citation-backed code analysis while local ION law remains +the authority membrane. + +### 5. Visual And Browser Execution Agents + +The registry and architecture show interest in local visual harnesses, browser +execution harnesses, and richer automated perception/verification surfaces. + +### 6. Hosted / HTTP MCP Evolution + +The repo contains hosted MCP alpha work, including transport preview, auth, +OAuth/HTTP preview, storage receipt ledgers, and replay. + +## Why This Project Matters + +Most AI systems today are either too weakly structured to preserve truth or too +rigidly productized to allow real ontological growth. + +ION attempts a rarer path. It aims to preserve: + +- continuity without illusion; +- autonomy without lawlessness; +- modularity without fragmentation; +- orchestration without role confusion; +- evolution without silent drift. + +That makes it more than a repo. It is a sustained attempt to answer a hard +question: + +**What would an actually serious operating substrate for AI continuity look like +if it were built from first principles, under law, and in public technical +form?** + +ION is one answer. + +## Final Note + +This repository is best approached as a living kernelized branch rather than a +finished product brochure. + +It contains doctrine, law, runtime code, context systems, UI projections, +carrier adapters, audits, and living receipts - all in active dialogue with one +another. + +If you want the shortest truthful summary, it is this: + +> **ION is a continuity machine.** +> It turns AI work from isolated outputs into a governed, inspectable, resumable +> operational continuum. + diff --git a/pyproject.toml b/pyproject.toml index d08f72b6..456e8a9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "ion-kernel" version = "0.0.0" description = "ION kernel (extracted working branch; install for import/CLI without PYTHONPATH)." -readme = "ION/README.md" +readme = "README.md" requires-python = ">=3.11" dependencies = [] From ea87284438c20e5ed9ab6e3bd34bcfd988a5fff0 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:53:45 -0400 Subject: [PATCH 06/30] Sharpen public landing README --- ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 8 + README.md | 948 +++++------------- 2 files changed, 240 insertions(+), 716 deletions(-) diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index 13d9f9e3..24c4b65e 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -71,6 +71,14 @@ system. - Point `pyproject.toml` package metadata at the root `README.md` so the public landing page is the package readme. +## Implemented Fifth Slice + +- Replace the long catalog-style public README with a sharper landing page + centered on ION as a continuity substrate. +- Keep detailed navigation in `ION/README.md` and directory-local README files. +- Correct the landing-page verified test count to the current `265 passed` + validation evidence. + ## Proposed Next Slices 1. Add directory-local README files for: diff --git a/README.md b/README.md index ccefe8a3..421b177d 100644 --- a/README.md +++ b/README.md @@ -1,829 +1,345 @@ # ION -> **A protocol of continuity for AI work.** -> Not just an application, not just an agent framework, and not just a set of -> prompts - **ION** is a governed operating substrate for long-horizon AI -> orchestration, context continuity, proof-gated action, and carrier-agnostic -> execution. +**A continuity substrate for AI work.** --- -## Table Of Contents - -1. [What ION Is](#what-ion-is) -2. [Why ION Exists](#why-ion-exists) -3. [The Central Thesis](#the-central-thesis) -4. [Current Truthful Posture](#current-truthful-posture) -5. [A Whole-System Map](#a-whole-system-map) -6. [The Canonical Workflow](#the-canonical-workflow) -7. [Roles, Carriers, And Identity Boundaries](#roles-carriers-and-identity-boundaries) -8. [The Repository Atlas](#the-repository-atlas) -9. [The Kernel Surface](#the-kernel-surface) -10. [Context, State, And Continuity](#context-state-and-continuity) -11. [Integrations](#integrations) -12. [The UI / Cockpit Direction](#the-ui--cockpit-direction) -13. [Getting Started](#getting-started) -14. [How To Mount Correctly](#how-to-mount-correctly) -15. [How To Verify Truth](#how-to-verify-truth) -16. [Design Laws And Invariants](#design-laws-and-invariants) -17. [Selected File Index](#selected-file-index) -18. [What ION Is Not](#what-ion-is-not) -19. [Roadmap And Near-Term Frontiers](#roadmap-and-near-term-frontiers) -20. [Why This Project Matters](#why-this-project-matters) +Most AI sessions are sophisticated amnesia. ---- - -## What ION Is - -ION is a **local-first, law-governed, packetized AI operating substrate**. - -Its purpose is to let complex AI work continue across time, carriers, tools, -and contexts without collapsing into drift, hand-wavy memory, or ungoverned -execution. - -At its core, ION treats meaningful work as a governed loop: - -- a work packet is opened; -- context is compiled and bounded; -- roles are mounted through carriers; -- outputs are returned as proposals; -- proofs and gates decide whether those outputs may affect state; -- receipts preserve continuity; -- the next cycle begins from preserved truth rather than improvisation. - -ION is best understood as a hybrid of: - -- an AI runtime kernel; -- an orchestration protocol; -- a context continuity system; -- a receipt and proof membrane; -- a carrier model for IDEs, ChatGPT Browser, Codex CLI, MCP, and future - adapters; -- and an emerging cockpit UI for observing and steering the system. - -It is not built on the assumption that a single model, chat, or context window -can remain authoritative forever. Instead, it encodes the idea that continuity -must be constructed, governed, projected, and renewed. - -## Why ION Exists - -Modern AI work breaks down in predictable ways: - -- context windows overflow; -- tools and chats lose continuity; -- outputs are mistaken for truth; -- hosts confuse carrier behavior with system authority; -- agent systems drift into improvisation; -- automations mutate state without sufficient proof; -- large projects become impossible to steward coherently over time. - -ION exists to answer that failure mode. - -It is an attempt to turn AI work from an ephemeral conversation into a -**governed operational continuum**. - -The project is especially concerned with: - -- long-horizon orchestration; -- continuity across sessions and carriers; -- truthful state rather than role-played state; -- manual fallback that is still lawful; -- explicit authority boundaries between thinking, acting, integrating, and - presenting. - -## The Central Thesis - -### 1. Continuity Must Be Protocolized - -AI continuity should not depend on a model "remembering" in an informal sense. -It should depend on governed packets, context bundles, registries, receipts, -and laws. - -### 2. Work Must Be Bounded - -Every meaningful step should be representable as a bounded work unit with clear -scope, allowed paths, forbidden paths, validations, and return expectations. - -### 3. Carriers Are Not Identities +A model produces something useful. You close the tab. The next session starts +from nothing: no memory of what was decided, no record of what changed, no way +for a fresh agent to know what the last one knew. You reconstruct. You +re-explain. You lose ground. -ChatGPT Browser, Cursor, Codex CLI, MCP, and other hosts are **carriers**. They -are not ION itself. A carrier can mount a role, but it does not become the -ontology or authority of the system. +ION is built on a different premise: continuity is an engineering problem, not +a model capability problem. It does not wait for models to remember. It governs +the work so that any capable model can pick up where the last one stopped. -### 4. Output Is Not Truth By Default - -Raw worker output is proposal material until it crosses proof and acceptance -boundaries. - -### 5. Manual Operation Is Real Operation - -ION rejects the idea that only full automation is legitimate. Manual execution -must remain a lawful fallback so the system stays operable even when hosts or -adapters are weak. - -### 6. Automation Is Shadow Until Proven - -A claimed automation is not enough. It must be bounded, auditable, and proven -against the same law that governs manual execution. - -### 7. No Silent Loss - -Authority-bearing state must not simply disappear. Harmful or obsolete surfaces -may move to containment, quarantine, archive, or supersession - but only with -explicit custody, classification, and proof. - -## Current Truthful Posture - -This README reflects the public collaboration branch represented by PR #1. - -### Verified Shell / Root Shape - -- **Shell root:** repository root containing `pyproject.toml` and - `ION/REPO_AUTHORITY.md` -- **Canonical content root:** `ION/` -- **Package root:** `ION/04_packages/kernel/` -- **Test root:** `ION/tests/` - -### Latest Verified Runtime Posture - -- `ion_status` verdict: **`ION_STATUS_READY`** -- active-state integrity verdict: **`ION_ACTIVE_STATE_INTEGRITY_READY`** -- production authority: **false** -- live execution authority: **false** -- open human gates: **0** -- spawn queue count: **0** - -### Latest Verified Validation +--- -From the repository shell root: +## The Central Question -```bash -PYTHONDONTWRITEBYTECODE=1 \ -PYTHONPATH=ION/04_packages \ -PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \ -python3 -m pytest ION/tests -q +```text +What is an AI output allowed to change? ``` -Observed result in the latest PR validation pass: +ION answers by putting every meaningful act through a single controlled path: ```text -265 passed +intent -> packet -> context -> role -> execution -> proof -> gate -> receipt -> next state ``` -### Important Current Caution +Output is not truth. Output is a proposal. A proposal earns the right to become +state by passing context proof, template action proof, and Steward integration. +If a result cannot show its packet, its context, its authority path, and its +receipt, it is not yet ION state. -This branch contains working surfaces for MCP, ChatOps, Codex CLI, current-state -packets, GitHub data-plane work, and UI view models. Default authority remains -intentionally bounded. The system does not claim production authority or -unconstrained live execution because code exists. +This is not bureaucracy. It is the difference between a system that continues +and a system that restarts. -## A Whole-System Map +--- -```mermaid -flowchart TB - A[Human Sovereign / Operator] --> B[Carrier] - - subgraph C[Carriers] - C1[ChatGPT Browser] - C2[Cursor IDE] - C3[Codex CLI] - C4[MCP Client] - C5[Future Adapters] - end - - B --> C - C --> D[ION Mount Contract] - D --> E[Doctrine] - D --> F[Registry] - D --> G[Execution Packets] - D --> H[Role Boots / Context Bundles] - - subgraph I[Kernel] - I1[ion_status] - I2[carrier onboarding] - I3[cycle runner] - I4[proof gates] - I5[task return intake] - I6[cockpit view models] - I7[packagers / audits / queues] - end - - E --> I - F --> I - G --> I - H --> I +## How It Works + +ION is a hybrid runtime: part Python kernel, part governance protocol, part +context engine. + +A **work packet** carries the bounded intent for a task: what is being +attempted, under which authority, with which constraints. A **context package** +compiles exactly the material the role needs for that step, ranked and bounded, +rather than relying on a model's ambient recall. A **mounted role** - STEWARD, +MASON, VIZIER, NEMESIS, and others - executes a bounded function inside ION's +authority model. A **carrier** is the machine carrying the role: ChatGPT +Browser, Cursor IDE, Codex CLI, MCP, or future adapters. Roles and carriers are +not the same thing. - subgraph J[Active State] - J1[05_context/current] - J2[queues] - J3[receipts] - J4[handoffs] - J5[compiled bundles] - end - - I --> J - - subgraph K[Integrations] - K1[Browser ChatOps Extension] - K2[Local ChatOps Daemon] - K3[Cursor Extension] - K4[Local MCP Server] - K5[ChatGPT Connector] - K6[GitHub Data Plane] - end - - I --> K - K --> J - - subgraph L[UI / Cockpit] - L1[JOC Cockpit Panels] - L2[Runtime Debug Overlay] - L3[Lane Timeline] - L4[Queue + Receipt Views] - end - - I --> L - L --> A +```text +ION governs. +Carriers carry. +Roles execute bounded functions. +No carrier becomes ION identity. ``` -### The Continuity Membrane +Returns come back as proposals. Proof gates evaluate them. Steward integration +accepts or rejects them. Receipts land. The next state is explicit, +inspectable, and inheritable. ```mermaid flowchart LR - A[Input / Objective] --> B[Work Packet] - B --> C[Bounded Role Execution] - C --> D[Proposal / Return] - D --> E[Context Proof Gate] - D --> F[Template Action Gate] - E --> G[Steward Integration] - F --> G - G --> H[Receipt / Handoff / Updated State] - H --> I[Next Cycle] - I --> B + A[Operator Intent] --> B[Work Packet] + B --> C[Compiled Context] + C --> D[Mounted Role] + D --> E[Carrier Execution] + E --> F[Proof-Bearing Return] + F --> G[Context Proof Gate] + F --> H[Template Action Gate] + G --> I[Steward Integration] + H --> I + I --> J[Receipt / Ledger / Handoff] + J --> K[Next State Projection] + K --> B ``` -This is the heart of ION. The point is not merely to "have agents," but to -ensure each cycle can be resumed, audited, integrated, and trusted. - -## The Canonical Workflow - -ION's workflow law is distributed across several authority files: - -- `ION/REPO_AUTHORITY.md` -- `ION/02_architecture/ION_MOUNT_CONTRACT.md` -- `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` -- `ION/01_doctrine/CANONICAL_WORKFLOW.md` - -The practical loop is: +--- -1. **Enter the correct root.** Confirm the shell root by the presence of - `pyproject.toml` and `ION/REPO_AUTHORITY.md`. -2. **Mount through law, not vibes.** Read repo authority, mount contract, - current operating packet, carrier profile, and the relevant execution - packet. -3. **Run status.** Let the kernel tell you the actual current state. -4. **Frame the work.** Intake and work-cycle framing happen before broad - execution. -5. **Route deliberately.** Role, carrier, and work packet boundaries decide the - lawful lane. -6. **Execute bounded work.** A carrier may traverse multiple phases in sequence, - but role identity remains bounded to the current phase. -7. **Treat outputs as proposals.** Nothing becomes truth merely because a worker - produced it. -8. **Use proof gates.** Context proof, template action proof, task return - intake, and other gates govern whether proposals may affect state. -9. **Close with receipts.** Integration or rejection should leave evidence for - the next cycle. +## What It Solves -ION prefers lawful continuation over clever improvisation. +| Problem | ION answer | +| --- | --- | +| Context loss | Compile bounded context packages. Do not rely on informal memory. | +| Role confusion | Separate roles from carriers. Bind work to mounted authority. | +| Output laundering | Raw returns are proposals until proof gates and Steward integration accept them. | +| Unbounded automation | Automation is subordinate to explicit policies, approvals, and receipts. | +| Continuity drift | State survives through packets, ledgers, receipts, audits, and visible projections. | -## Roles, Carriers, And Identity Boundaries +--- -One of the most important ideas in ION is the distinction between **role** and -**carrier**. +## Roles And Carriers -### Roles +ION defines roles as bounded functions, not as the machines that run them. The +same role may be carried by different models across different sessions. What +persists is the mounted authority and the compiled context, not the model's +memory. -ION's role web includes orchestration, presentation, context, analysis, memory, -and specialized technical functions. +**Core roles:** | Role | Function | | --- | --- | -| **STEWARD** | systems integration, routing, acceptance/rejection, authority closure | -| **RELAY** | intake, packet formation, transmission, final visible handoff | -| **PERSONA_INTERFACE** | front-stage user-facing presentation when explicitly mounted | -| **VIZIER** | high-level strategy and route intelligence | -| **MASON** | construction / implementation / build execution coordination | -| **VICE** | discipline, critique, pressure testing, hardening | -| **NEMESIS** | adversarial audit and failure-mode pressure | -| **VESTIGE** | memory, archaeology, historical continuity, residue interpretation | -| **SCRIBE** | structured capture and documentation support | - -### Carriers - -Carriers are hosts or execution chassis: - -| Carrier | Meaning | +| `STEWARD` | Integration, routing, acceptance, rejection, closure. | +| `RELAY` | Intake, packet formation, transmission, handoff. | +| `VIZIER` | Strategy, route intelligence, high-level planning. | +| `MASON` | Build coordination and implementation work. | +| `NEMESIS` | Adversarial audit and failure-mode attack. | +| `VESTIGE` | Memory, archaeology, residue interpretation. | +| `SCRIBE` | Structured capture and documentation. | +| `VICE` | Discipline, critique, hardening pressure. | + +**Current carriers:** + +| Carrier | Role in the system | | --- | --- | -| **ChatGPT Browser** | continuity, coordination, conversation, bounded connector lane | -| **Cursor IDE** | local IDE carrier with extension and subagent surfaces | -| **Codex CLI** | bounded local filesystem/build/test worker carrier | -| **MCP** | protocol transport and tool exposure surface | -| **Future adapters** | additional hosts that may mount ION lawfully | - -### Non-Negotiable Boundary - -```text -ION orchestrates. -Cursor carries. -Codex carries. -ChatGPT Browser carries. -MCP carries. -No carrier is ION identity. -``` - -This rule is one of the project's central anti-drift protections. +| ChatGPT Browser | Conversation, continuity, coordination. | +| Cursor IDE | Local IDE carrier with file visibility. | +| Codex CLI | Bounded local filesystem, build, and test worker. | +| MCP | Tool transport and capability exposure. | -## The Repository Atlas - -The project combines doctrine, architecture, registries, runtime state, -templates, UI, integrations, and tests. - -### Top-Level Directory Structure - -| Path | Purpose | -| --- | --- | -| `.github/` | public issue and pull request templates | -| `.cursor/` | Cursor carrier configuration and rules | -| `.vscode/` | editor launch/settings recommendations | -| `ION/00_BOOTSTRAP/` | bootstrapping and startup surfaces | -| `ION/01_doctrine/` | constitutional and doctrinal law | -| `ION/02_architecture/` | protocols, lifecycle rules, carrier/runtime architecture | -| `ION/03_registry/` | registries, schemas, policies, carrier profiles | -| `ION/04_agents/` | carrier doctrine and related agent surfaces | -| `ION/04_packages/` | executable Python kernel package root | -| `ION/05_context/` | active state, history, inbox, reports, handoffs, archives | -| `ION/06_intelligence/` | audits, archaeology, reports, orchestration research | -| `ION/07_templates/` | templates for action, context, carriers, automation | -| `ION/08_ui/` | cockpit shell and UI surfaces | -| `ION/09_integrations/` | browser extension, Cursor extension, daemon, MCP | -| `ION/docs/` | setup, encyclopedia, consolidation reports | -| `ION/examples/` | examples and helper surfaces | -| `ION/tests/` | kernel and integration test suite | - -Historical root witness files such as `FILES_ADDED_V*.txt` and -`FULL_PROJECT_CONSOLIDATION_RECEIPT_*.txt` are archived under: - -```text -ION/05_context/archive/root_witness_manifests/ -``` - -### How To Think About These Directories - -- `01_doctrine` tells you what must remain true. -- `02_architecture` tells you how the system is supposed to work. -- `03_registry` tells you what entities, policies, and schemas exist. -- `04_packages/kernel` is what actually runs. -- `05_context` is where runtime continuity lives. -- `07_templates` is the governed substrate through which actions and context are - shaped. -- `08_ui` is the projection surface. -- `09_integrations` is where carriers and adapters meet the kernel. +--- -## The Kernel Surface +## The Kernel -The package root is: +The executable kernel lives at: ```text ION/04_packages/kernel/ ``` -This is the executable center of gravity for the current repo. - -Representative kernel modules include: - -- `ion_status.py` -- `ion_carrier_onboard.py` -- `ion_carrier_continue.py` -- `ion_cycle_runner.py` -- `ion_context_proof_gate.py` -- `ion_template_action_gate.py` -- `ion_carrier_task_return.py` -- `ion_steward_integrate.py` -- `ion_active_state_integrity_audit.py` -- `ion_cockpit_view_model.py` -- `ion_codex_queue_runner.py` -- `ion_agent_invocation_broker.py` -- `ion_chatops_bridge.py` -- `ion_github_data_plane_audit.py` -- `ion_lifecycle_packager.py` -- `ion_safe_full_project_packager.py` - -Conceptually, the kernel does four things: - -1. **Projects state truthfully** - status, view models, audits, packets, queues. -2. **Runs bounded work cycles** - onboarding, continuation, routing, packet - processing, queue handling. -3. **Protects the membrane** - proof gates, task return intake, authority - checks, trunk preservation, containment logic. -4. **Bridges to carriers and tools** - MCP, ChatOps, Cursor, Codex, packaging, - diagnostics. - -## Context, State, And Continuity - -ION treats context as a structured system, not a loose chat log. - -The hot operational center is: - -```text -ION/05_context/current/ -``` - -Representative active surfaces include: - -- `ACTIVE_WORK_PACKET.json` -- `ACTIVE_ROLE_SPAWN_PLAN.json` -- `ACTIVE_CARRIER_TURN_PACKET.json` -- `ACTIVE_OPERATOR_MESSAGE_QUEUE.json` -- `ACTIVE_HUMAN_GATE_QUEUE.json` -- `ACTIVE_CARRIER_TASK_RETURN_LEDGER.json` -- `ACTIVE_STEWARD_INTEGRATION_QUEUE.json` -- `ACTIVE_COCKPIT_VIEW_MODEL.json` - -Around the current-state root, ION maintains additional context planes: - -- `archive/` -- `history/` -- `handoff/` -- `runtime_reports/` -- `signals/` -- `steward_handoffs/` -- `inbox/` -- `continuation_bundles/` - -The project stance is that context should remain navigable, history should -remain recoverable, generated or superseded surfaces should be contained rather -than silently erased, and no single context artifact should be confused with the -whole system. - -## Integrations - -ION is increasingly a multi-carrier system. +Its job is to make state, authority, and transitions inspectable, not to sound +intelligent. -### MCP +Key surfaces: -Relevant surfaces: +- `ion_status.py` - ground truth for current system state +- `ion_carrier_onboard.py` - lawful carrier mount entry +- `ion_carrier_continue.py` - continuation from prior receipt +- `ion_cycle_runner.py` - bounded work cycle execution +- `ion_context_proof_gate.py` - context verification membrane +- `ion_template_action_gate.py` - template compliance verification +- `ion_steward_integrate.py` - integration control surface +- `ion_agent_invocation_broker.py` - governed agent dispatch +- `ion_codex_queue_runner.py` - Codex CLI work queue management +- `ion_cockpit_view_model.py` - operator-facing state projection -- `ION/09_integrations/mcp/` -- `ION/04_packages/kernel/ion_mcp_local_bridge.py` -- `ION/04_packages/kernel/ion_mcp_bridge_audit.py` -- `ION/03_registry/ion_mcp_*` - -The local MCP lane exposes bounded ION tools rather than arbitrary shell or -filesystem power. - -### ChatGPT Browser Connector Lane - -Relevant surfaces: - -- `ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md` -- `ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py` -- `ION/09_integrations/mcp/chatgpt_connector/` - -This bridge lets ChatGPT Browser operate as a continuity and coordination lane -while remaining bounded. - -### Browser ChatOps Extension + Local Daemon - -Relevant surfaces: - -- `ION/09_integrations/browser_extension/ion_chatops_bridge/` -- `ION/09_integrations/local_daemon/ion_chatops_bridge/` -- `ION/04_packages/kernel/ion_chatops_bridge.py` -- `ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md` -- `ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md` - -The extension detects valid `ion_action` YAML blocks rendered in ChatGPT -Browser, validates them through a localhost daemon, presents approval controls, -and turns approved actions into ION-side artifacts, receipts, work packets, or -package exports. - -### Cursor Extension - -Relevant surfaces: - -- `ION/09_integrations/cursor_extension/` -- `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md` - -The Cursor lane gives ION a local IDE carrier with file visibility, subagent -slots, and a path toward integrated development workflows. - -### Codex CLI - -Relevant surfaces: - -- `ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md` -- `ION/03_registry/codex_cli_carrier_profile.yaml` -- `ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md` -- `ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md` -- `ION/04_packages/kernel/ion_codex_cli_carrier_audit.py` - -Codex CLI is positioned as the preferred local bounded worker carrier for -build/test/diff work. - -### GitHub Data Plane - -Relevant surfaces: - -- `ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md` -- `ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md` -- `ION/04_packages/kernel/ion_github_data_plane_audit.py` -- `ION/03_registry/ion_github_data_plane_registry.yaml` - -GitHub is not the authority of ION. It is the public collaboration and versioning -data plane. Local ION law remains the authority membrane. - -## The UI / Cockpit Direction - -ION is not only trying to behave correctly. It is trying to **show its own -truth**. - -Existing JOC cockpit shell surfaces under `ION/08_ui/joc_cockpit_shell/` -include: - -- `RuntimeStatusPanel.tsx` -- `CarrierTurnPanel.tsx` -- `ContextPackageInspectorPanel.tsx` -- `LaneTimelinePanel.tsx` -- `HumanGateQueuePanel.tsx` -- `TaskReturnLedgerPanel.tsx` -- `StewardIntegrationQueuePanel.tsx` -- `ReceiptHydrationPanel.tsx` -- `RuntimeDebugOverlayPanel.tsx` - -The cockpit is meant to expose current objective, lane state, queue state, role -progression, gates and blockers, receipts, integration decisions, runtime -overlays, and the true flow of work through the system. - -## Getting Started - -### Requirements - -- Python 3.11+ -- a local shell environment -- optional IDE/carrier integrations depending on lane - -### Install / Run The Package - -From the repository shell root: +**Fast verification:** ```bash +# Install python3 -m venv .venv source .venv/bin/activate pip install -e . -``` - -After editable install, the intended package behavior is: -- `import kernel` works without manual `PYTHONPATH`; -- `python -m kernel` works; -- pytest runs from the shell root against `ION/tests`. - -### Fast Verification - -```bash +# Current state python3 -m kernel.ion_status --ion-root . --json -python3 -m pytest ION/tests -q -``` - -### Without Editable Install -```bash -PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +# Full test suite +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -m pytest ION/tests -q ``` -## How To Mount Correctly - -If you enter the repo fresh, do not begin by guessing. - -Read in this order: - -1. `ION/REPO_AUTHORITY.md` -2. `ION/02_architecture/ION_MOUNT_CONTRACT.md` -3. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` -4. the selected carrier profile under `ION/03_registry/` -5. the selected carrier execution packet template under - `ION/07_templates/carriers/` -6. the active packet or spawn-row context package under - `ION/05_context/current/` -7. `ION/01_doctrine/CANONICAL_WORKFLOW.md` when broad workflow doctrine is - needed - -That is the repo's own stated mount order. - -Example status and continuation trace: - -```bash -PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json -PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_carrier_continue --ion-root . --carrier CHATGPT_BROWSER_CARRIER --operator-message "continue" --json -``` +--- -## How To Verify Truth +## Repository Shape -The most important habit in ION is to distinguish between **described state** -and **observed state**. +ION is large because it is not only code. It contains doctrine, protocols, +registries, templates, runtime state, receipts, UI, and integrations. -Useful verification commands: +| Path | Purpose | +| --- | --- | +| `ION/01_doctrine/` | Constitutional law. What must remain true. | +| `ION/02_architecture/` | How the system works. Protocols and lifecycle rules. | +| `ION/03_registry/` | Entities, carrier profiles, schemas, policies. | +| `ION/04_packages/kernel/` | What actually runs. | +| `ION/05_context/` | Active state, history, receipts, handoffs. | +| `ION/06_intelligence/` | Audits, research, orchestration artifacts. | +| `ION/07_templates/` | The shape work must take. | +| `ION/08_ui/` | Operator cockpit surfaces. | +| `ION/09_integrations/` | Browser extension, Cursor, daemon, MCP, ChatGPT connector. | + +Root-level witness files from earlier consolidation passes are archived under: -```bash -python3 -m kernel.ion_status --ion-root . --json -python3 -m kernel.ion_carrier_onboarding_authority_audit --ion-root . --json -python3 -m kernel.ion_mcp_bridge_audit --ion-root . --json -python3 -m kernel.ion_codex_cli_carrier_audit --ion-root . --json -python3 -m kernel.ion_github_data_plane_audit --ion-root . --json -python3 -m pytest ION/tests -q +```text +ION/05_context/archive/root_witness_manifests/ ``` -The project strongly prefers auditable proof over chat claims. - -## Design Laws And Invariants - -### Manual ION Is Real - -Manual mode is the lawful fallback that keeps the system usable when higher -automation levels are unavailable. - -### Automation Is Shadow Until Proven - -No carrier, adapter, or daemon should claim more power or correctness than has -actually been demonstrated. - -### No Silent Loss + Containment Preservation - -A file or authority surface should not vanish unreceipted. The right answer to -stale or conflicting state is custody and classification. - -### One Canonical Workflow - -Multiple carriers may exist, but they should converge on one law-governed -operational loop rather than inventing contradictory execution stories. - -### Bounded Work And Bounded Identity - -Roles, phases, allowed paths, and validations are meant to stay explicit. +--- -### Context Packages Over Vague Memory +## Mounting A Carrier -Structured context artifacts outrank loose implied memory. +Fresh entry rule: **do not begin by guessing.** -### Projection Discipline +Read in order before acting: -UI, status, and reporting surfaces should project truth rather than improvise -it. +1. `ION/REPO_AUTHORITY.md` +2. `ION/02_architecture/ION_MOUNT_CONTRACT.md` +3. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` +4. The selected carrier profile under `ION/03_registry/` +5. The selected carrier execution packet under `ION/07_templates/carriers/` +6. The active packet or context package under `ION/05_context/current/` -## Selected File Index +A carrier is not trusted because it announces itself. It is trusted when the +mount path, context, template, return contract, and proof path are in force. -### Core Authority +--- -- `ION/REPO_AUTHORITY.md` -- `ION/02_architecture/ION_MOUNT_CONTRACT.md` -- `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` -- `ION/01_doctrine/CANONICAL_WORKFLOW.md` -- `ION/01_doctrine/SOVEREIGN_CONSTITUTION.md` -- `ION/01_doctrine/SOVEREIGN_KERNEL.md` +## Design Laws -### Carrier And Runtime Architecture +These are not principles. They are anti-failure constraints discovered under +pressure. -- `ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md` -- `ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md` -- `ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md` -- `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md` +**Manual operation is real operation.** Manual mode is not a degraded fallback. +It is the lawful baseline that keeps the system honest when carriers are weak. -### Registry / Profile Surfaces +**Automation is shadow until proven.** A daemon or connector has no authority +because it can execute. It earns authority through bounded, audited, approved, +receipted operation. -- `ION/03_registry/chatgpt_browser_carrier_profile.yaml` -- `ION/03_registry/codex_cli_carrier_profile.yaml` -- `ION/03_registry/mcp_full_carrier_tool_registry.yaml` -- `ION/03_registry/ion_chatops_action.schema.yaml` -- `ION/03_registry/ion_chatops_extension_policy.yaml` -- `ION/03_registry/ion_chatops_local_daemon_policy.yaml` +**Output is proposal until accepted.** Worker output can be correct, even +brilliant. It does not become ION state until the appropriate proof and +integration path accepts it. -### Executable Kernel Surfaces +**No silent loss.** State-bearing artifacts do not disappear for convenience. +Obsolete surfaces require custody: containment, archive, supersession, or +explicit revocation. -- `ION/04_packages/kernel/ion_status.py` -- `ION/04_packages/kernel/ion_carrier_onboard.py` -- `ION/04_packages/kernel/ion_carrier_continue.py` -- `ION/04_packages/kernel/ion_cycle_runner.py` -- `ION/04_packages/kernel/ion_chatops_bridge.py` -- `ION/04_packages/kernel/ion_codex_queue_runner.py` -- `ION/04_packages/kernel/ion_agent_invocation_broker.py` -- `ION/04_packages/kernel/ion_cockpit_view_model.py` -- `ION/04_packages/kernel/ion_github_data_plane_audit.py` +**One workflow.** Manual execution, IDE-native execution, daemon-assisted +execution, and swarm execution are all carriers of the same canonical loop. +They are not different systems. -### Integrations +**Context packages over vague memory.** ION does not rely on a carrier knowing +what you mean. It compiles and proves the context the step requires. -- `ION/09_integrations/browser_extension/ion_chatops_bridge/README.md` -- `ION/09_integrations/local_daemon/ion_chatops_bridge/README.md` -- `ION/09_integrations/mcp/chatgpt_connector/README.md` -- `ION/09_integrations/cursor_extension/README.md` +**Projection discipline.** Status surfaces describe actual authority. A cockpit +that hides limits is worse than no cockpit. -### UI And Cockpit +--- -- `ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx` -- `ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx` -- `ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx` -- `ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx` +## Integrations -### Living Project Documentation +**ChatGPT Browser** connects through a bounded MCP connector contract at +`ION/09_integrations/mcp/chatgpt_connector/`. The connector exposes a governed +tool surface, not unconstrained shell access wrapped in protocol. -- `ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md` -- `ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md` -- `ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md` -- `ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md` +**Codex CLI** operates as a bounded local worker through a governed queue. Work +packets go in. Proof-gated receipts come out. Raw Codex output does not become +ION state directly. -## What ION Is Not +**Browser ChatOps extension** detects valid `ion_action` YAML blocks in ChatGPT +Browser, validates them through a local daemon, presents approval controls, and +converts approved actions into ION artifacts and receipts. -ION is **not**: +**Cursor IDE** provides file visibility and an editor-adjacent carrier lane +under `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md`. -- a generic "agent swarm" with hand-wavy autonomy claims; -- a simple memory layer pasted onto a chatbot; -- a single UI pretending to be the system; -- a replacement for git, tests, or local development discipline; -- a justification for unconstrained automation; -- a prompt trick dressed up as infrastructure. +**GitHub** is the data plane: collaboration, mirroring, review, release +packaging. It is not the authority of ION. Local law, gates, receipts, and the +custody model hold that authority. -It is trying to be something harder: a coherent, inspectable, protocolized -operating substrate for AI work. +--- -## Roadmap And Near-Term Frontiers +## The Cockpit -### 1. Browser-Side ION Operation +ION should not be invisible orchestration. If the system claims a state, the +operator must be able to inspect it. If automation claims authority, the +cockpit must show the boundary. -The ChatOps extension and daemon suggest a future where ChatGPT Browser can -operate as a genuine carrier lane with approval-gated local effects, package -export, queue visibility, and sandbox return intake. +Current JOC cockpit panels under `ION/08_ui/joc_cockpit_shell/`: -### 2. Stronger Cockpit UI +- `RuntimeStatusPanel` - current objective, production authority, live execution + posture +- `CarrierTurnPanel` - active carrier, mounted role, turn state +- `LaneTimelinePanel` - ordered lane progression and history +- `HumanGateQueuePanel` - pending operator decisions +- `TaskReturnLedgerPanel` - accepted and rejected return history +- `StewardIntegrationQueuePanel` - integration decisions in flight +- `ReceiptHydrationPanel` - receipt trail and inheritance chain -The JOC cockpit can evolve into the primary truth surface for active objective, -lane state, queue progression, approvals, receipts, and continuity review. +--- -### 3. ChatGPT Sandbox Return Lane +## What Comes Next -A promising direction is the ability for ChatGPT Browser to work on a local ZIP -or package in its sandbox, then return a patch or artifact to -`ION/05_context/inbox/` for formal local review and integration. +**Browser-first operation.** The ChatOps lane points toward full ION operation +from a browser: approval-gated local effects, package export, queue visibility, +and diagnostics without a local IDE. -### 4. GitHub Data Plane Maturation +**ChatGPT sandbox return lane.** ChatGPT Browser works on a local package in +sandbox, then returns a patch to `ION/05_context/inbox/` for local review and +formal integration. Powerful compute without surrendering proof boundaries. -GitHub can support public/private collaboration, issue planning, PR review, -release packaging, and citation-backed code analysis while local ION law remains -the authority membrane. +**Hosted runtime.** A cloud-hosted ION instance can preserve local-first +governance while making the system accessible from any device. -### 5. Visual And Browser Execution Agents +**Swarm control.** The agent invocation broker enables GPT Browser to invoke +named roles - MASON, VIZIER, NEMESIS, STEWARD, and others - as governed +Codex-backed workers. The carrier loop closes from browser to local execution +to receipted return. -The registry and architecture show interest in local visual harnesses, browser -execution harnesses, and richer automated perception/verification surfaces. +--- -### 6. Hosted / HTTP MCP Evolution +## Verified State -The repo contains hosted MCP alpha work, including transport preview, auth, -OAuth/HTTP preview, storage receipt ledgers, and replay. +```text +ion_status verdict: ION_STATUS_READY +Tests: 265 passed +Production authority: false (by design, at this stage) +``` -## Why This Project Matters +The useful question is never "does this look right?" It is: -Most AI systems today are either too weakly structured to preserve truth or too -rigidly productized to allow real ontological growth. +```text +What receipt, gate, manifest, or ledger proves the claim? +``` -ION attempts a rarer path. It aims to preserve: +--- -- continuity without illusion; -- autonomy without lawlessness; -- modularity without fragmentation; -- orchestration without role confusion; -- evolution without silent drift. +## Why This Project Exists -That makes it more than a repo. It is a sustained attempt to answer a hard -question: +AI work is becoming serious faster than its continuity machinery. -**What would an actually serious operating substrate for AI continuity look like -if it were built from first principles, under law, and in public technical -form?** +There are many systems that act alive for a few minutes. Fewer that can tell +you exactly what happened, which context was loaded, which role acted, which +proof passed, which authority was withheld, and what the next worker may +inherit. -ION is one answer. +ION attacks that gap directly. -## Final Note +The shortest true description: -This repository is best approached as a living kernelized branch rather than a -finished product brochure. +```text +ION is a continuity machine. +It turns AI work from isolated outputs into governed, inspectable, resumable state. +``` -It contains doctrine, law, runtime code, context systems, UI projections, -carrier adapters, audits, and living receipts - all in active dialogue with one -another. +A model can answer. ION is built to continue. -If you want the shortest truthful summary, it is this: +--- -> **ION is a continuity machine.** -> It turns AI work from isolated outputs into a governed, inspectable, resumable -> operational continuum. +*Local-first. Proof-gated. Carrier-agnostic.* From 0955ebd16cadfff9dcc2f74bf62a608522d00977 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 00:59:27 -0400 Subject: [PATCH 07/30] Add encyclopedia link to landing README --- ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 6 + README.md | 184 +++++++++++------- 2 files changed, 116 insertions(+), 74 deletions(-) diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index 24c4b65e..33da6826 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -79,6 +79,12 @@ system. - Correct the landing-page verified test count to the current `265 passed` validation evidence. +## Implemented Sixth Slice + +- Revise the landing README language for tighter public positioning. +- Add a full-encyclopedia link with an authority caution so the encyclopedia is + discoverable without becoming the active mount source. + ## Proposed Next Slices 1. Add directory-local README files for: diff --git a/README.md b/README.md index 421b177d..a8fe59d6 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,26 @@ **A continuity substrate for AI work.** +*Local-first. Proof-gated. Carrier-agnostic.* + --- Most AI sessions are sophisticated amnesia. A model produces something useful. You close the tab. The next session starts -from nothing: no memory of what was decided, no record of what changed, no way -for a fresh agent to know what the last one knew. You reconstruct. You -re-explain. You lose ground. +from nothing: no durable record of what was decided, no proof of what changed, +no reliable way for a fresh agent to know what the last one knew. You +reconstruct. You re-explain. You lose ground. + +ION is built on a different premise: + +```text +Continuity is an engineering problem, not a model-memory feature. +``` -ION is built on a different premise: continuity is an engineering problem, not -a model capability problem. It does not wait for models to remember. It governs -the work so that any capable model can pick up where the last one stopped. +ION does not wait for a model to remember. It governs the work so any capable +carrier can resume from explicit state, bounded context, accepted receipts, and +inspectable authority. --- @@ -23,19 +31,20 @@ the work so that any capable model can pick up where the last one stopped. What is an AI output allowed to change? ``` -ION answers by putting every meaningful act through a single controlled path: +ION answers by putting meaningful work through a controlled path: ```text intent -> packet -> context -> role -> execution -> proof -> gate -> receipt -> next state ``` -Output is not truth. Output is a proposal. A proposal earns the right to become -state by passing context proof, template action proof, and Steward integration. -If a result cannot show its packet, its context, its authority path, and its -receipt, it is not yet ION state. +Output is not truth. Output is a proposal. + +A proposal earns the right to become state by passing context proof, template +action proof, and Steward integration. If a result cannot show its packet, +context, authority path, and receipt, it is not yet ION state. This is not bureaucracy. It is the difference between a system that continues -and a system that restarts. +and a system that merely restarts with better notes. --- @@ -44,14 +53,20 @@ and a system that restarts. ION is a hybrid runtime: part Python kernel, part governance protocol, part context engine. -A **work packet** carries the bounded intent for a task: what is being -attempted, under which authority, with which constraints. A **context package** -compiles exactly the material the role needs for that step, ranked and bounded, -rather than relying on a model's ambient recall. A **mounted role** - STEWARD, -MASON, VIZIER, NEMESIS, and others - executes a bounded function inside ION's -authority model. A **carrier** is the machine carrying the role: ChatGPT -Browser, Cursor IDE, Codex CLI, MCP, or future adapters. Roles and carriers are -not the same thing. +A **work packet** carries bounded task intent: what is being attempted, under +which authority, against which constraints. + +A **context package** compiles the material a role needs for a step. It is +ranked, bounded, and explicit. It is not a model's ambient recall. + +A **mounted role** executes a bounded function inside ION's authority model. +Roles include `STEWARD`, `MASON`, `VIZIER`, `NEMESIS`, `VESTIGE`, `SCRIBE`, and +others. + +A **carrier** is the machine carrying the role: ChatGPT Browser, Cursor IDE, +Codex CLI, MCP, or a future adapter. + +Roles and carriers are not the same thing. ```text ION governs. @@ -60,9 +75,9 @@ Roles execute bounded functions. No carrier becomes ION identity. ``` -Returns come back as proposals. Proof gates evaluate them. Steward integration -accepts or rejects them. Receipts land. The next state is explicit, -inspectable, and inheritable. +Returns come back as proposals. Proof gates evaluate them. Steward integrates +or rejects them. Receipts land. The next state becomes explicit, inspectable, +and inheritable. ```mermaid flowchart LR @@ -88,9 +103,9 @@ flowchart LR | --- | --- | | Context loss | Compile bounded context packages. Do not rely on informal memory. | | Role confusion | Separate roles from carriers. Bind work to mounted authority. | -| Output laundering | Raw returns are proposals until proof gates and Steward integration accept them. | -| Unbounded automation | Automation is subordinate to explicit policies, approvals, and receipts. | -| Continuity drift | State survives through packets, ledgers, receipts, audits, and visible projections. | +| Output laundering | Treat raw returns as proposals until proof gates and Steward integration accept them. | +| Unbounded automation | Keep automation subordinate to explicit policies, approvals, and receipts. | +| Continuity drift | Preserve state through packets, ledgers, receipts, audits, and visible projections. | --- @@ -98,10 +113,10 @@ flowchart LR ION defines roles as bounded functions, not as the machines that run them. The same role may be carried by different models across different sessions. What -persists is the mounted authority and the compiled context, not the model's -memory. +persists is mounted authority, compiled context, and accepted state - not the +model's private memory. -**Core roles:** +### Core Roles | Role | Function | | --- | --- | @@ -114,7 +129,7 @@ memory. | `SCRIBE` | Structured capture and documentation. | | `VICE` | Discipline, critique, hardening pressure. | -**Current carriers:** +### Current Carriers | Carrier | Role in the system | | --- | --- | @@ -133,15 +148,15 @@ The executable kernel lives at: ION/04_packages/kernel/ ``` -Its job is to make state, authority, and transitions inspectable, not to sound -intelligent. +Its job is to make state, authority, and transitions inspectable. It is not +there to sound intelligent. Key surfaces: -- `ion_status.py` - ground truth for current system state +- `ion_status.py` - current system state - `ion_carrier_onboard.py` - lawful carrier mount entry -- `ion_carrier_continue.py` - continuation from prior receipt -- `ion_cycle_runner.py` - bounded work cycle execution +- `ion_carrier_continue.py` - continuation from prior receipts +- `ion_cycle_runner.py` - bounded work-cycle execution - `ion_context_proof_gate.py` - context verification membrane - `ion_template_action_gate.py` - template compliance verification - `ion_steward_integrate.py` - integration control surface @@ -149,13 +164,11 @@ Key surfaces: - `ion_codex_queue_runner.py` - Codex CLI work queue management - `ion_cockpit_view_model.py` - operator-facing state projection -**Fast verification:** +### Fast Verification ```bash # Install -python3 -m venv .venv -source .venv/bin/activate -pip install -e . +python3 -m venv .venv && source .venv/bin/activate && pip install -e . # Current state python3 -m kernel.ion_status --ion-root . --json @@ -169,19 +182,19 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -m pytest ION/tests ## Repository Shape ION is large because it is not only code. It contains doctrine, protocols, -registries, templates, runtime state, receipts, UI, and integrations. +registries, templates, runtime state, receipts, UI, integrations, and audits. | Path | Purpose | | --- | --- | | `ION/01_doctrine/` | Constitutional law. What must remain true. | -| `ION/02_architecture/` | How the system works. Protocols and lifecycle rules. | -| `ION/03_registry/` | Entities, carrier profiles, schemas, policies. | -| `ION/04_packages/kernel/` | What actually runs. | -| `ION/05_context/` | Active state, history, receipts, handoffs. | -| `ION/06_intelligence/` | Audits, research, orchestration artifacts. | +| `ION/02_architecture/` | Protocols, lifecycle rules, and runtime architecture. | +| `ION/03_registry/` | Entities, carrier profiles, schemas, and policies. | +| `ION/04_packages/kernel/` | Executable kernel. What actually runs. | +| `ION/05_context/` | Active state, history, receipts, and handoffs. | +| `ION/06_intelligence/` | Audits, research, and orchestration artifacts. | | `ION/07_templates/` | The shape work must take. | | `ION/08_ui/` | Operator cockpit surfaces. | -| `ION/09_integrations/` | Browser extension, Cursor, daemon, MCP, ChatGPT connector. | +| `ION/09_integrations/` | Browser extension, Cursor, daemon, MCP, and ChatGPT connector lanes. | Root-level witness files from earlier consolidation passes are archived under: @@ -191,18 +204,36 @@ ION/05_context/archive/root_witness_manifests/ --- +## Full Encyclopedia + +The long-form system reference is the living encyclopedia: + +[ION Production Encyclopedia v4.0](ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md) + +Use it when you need broader history, context-system background, recovery +lineage, and the larger system map. It is not a production ratification and it +does not outrank current startup authority. For active work, mount through +`ION/REPO_AUTHORITY.md`, `ION/02_architecture/ION_MOUNT_CONTRACT.md`, current +packets, registries, templates, and receipts. + +--- + ## Mounting A Carrier -Fresh entry rule: **do not begin by guessing.** +Fresh entry rule: + +```text +Do not begin by guessing. +``` Read in order before acting: 1. `ION/REPO_AUTHORITY.md` 2. `ION/02_architecture/ION_MOUNT_CONTRACT.md` 3. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` -4. The selected carrier profile under `ION/03_registry/` -5. The selected carrier execution packet under `ION/07_templates/carriers/` -6. The active packet or context package under `ION/05_context/current/` +4. the selected carrier profile under `ION/03_registry/` +5. the selected carrier execution packet under `ION/07_templates/carriers/` +6. the active packet or context package under `ION/05_context/current/` A carrier is not trusted because it announces itself. It is trusted when the mount path, context, template, return contract, and proof path are in force. @@ -211,7 +242,7 @@ mount path, context, template, return contract, and proof path are in force. ## Design Laws -These are not principles. They are anti-failure constraints discovered under +These are not slogans. They are anti-failure constraints discovered under pressure. **Manual operation is real operation.** Manual mode is not a degraded fallback. @@ -230,11 +261,11 @@ Obsolete surfaces require custody: containment, archive, supersession, or explicit revocation. **One workflow.** Manual execution, IDE-native execution, daemon-assisted -execution, and swarm execution are all carriers of the same canonical loop. -They are not different systems. +execution, and swarm execution are carriers of the same canonical loop. They +are not different systems. **Context packages over vague memory.** ION does not rely on a carrier knowing -what you mean. It compiles and proves the context the step requires. +what the operator means. It compiles and proves the context the step requires. **Projection discipline.** Status surfaces describe actual authority. A cockpit that hides limits is worse than no cockpit. @@ -259,16 +290,17 @@ converts approved actions into ION artifacts and receipts. under `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md`. **GitHub** is the data plane: collaboration, mirroring, review, release -packaging. It is not the authority of ION. Local law, gates, receipts, and the -custody model hold that authority. +packaging. It is not the authority of ION. Local law, gates, receipts, and +custody hold authority. --- ## The Cockpit -ION should not be invisible orchestration. If the system claims a state, the -operator must be able to inspect it. If automation claims authority, the -cockpit must show the boundary. +ION should not be invisible orchestration. + +If the system claims state, the operator must be able to inspect it. If +automation claims authority, the cockpit must show the boundary. Current JOC cockpit panels under `ION/08_ui/joc_cockpit_shell/`: @@ -293,11 +325,11 @@ and diagnostics without a local IDE. sandbox, then returns a patch to `ION/05_context/inbox/` for local review and formal integration. Powerful compute without surrendering proof boundaries. -**Hosted runtime.** A cloud-hosted ION instance can preserve local-first -governance while making the system accessible from any device. +**Hosted runtime.** A cloud-hosted ION instance that preserves local-first +governance while making the system reachable from any device. **Swarm control.** The agent invocation broker enables GPT Browser to invoke -named roles - MASON, VIZIER, NEMESIS, STEWARD, and others - as governed +named roles - `MASON`, `VIZIER`, `NEMESIS`, `STEWARD`, and others - as governed Codex-backed workers. The carrier loop closes from browser to local execution to receipted return. @@ -308,10 +340,18 @@ to receipted return. ```text ion_status verdict: ION_STATUS_READY Tests: 265 passed -Production authority: false (by design, at this stage) +Production authority: false ``` -The useful question is never "does this look right?" It is: +Production authority is withheld by design at this stage. + +The useful question is never: + +```text +Does this look right? +``` + +It is: ```text What receipt, gate, manifest, or ledger proves the claim? @@ -323,23 +363,19 @@ What receipt, gate, manifest, or ledger proves the claim? AI work is becoming serious faster than its continuity machinery. -There are many systems that act alive for a few minutes. Fewer that can tell -you exactly what happened, which context was loaded, which role acted, which -proof passed, which authority was withheld, and what the next worker may -inherit. +There are many systems that act alive for a few minutes. There are fewer +systems that can tell you exactly what happened, which context was loaded, +which role acted, which proof passed, which authority was withheld, and what +the next worker may inherit. ION attacks that gap directly. -The shortest true description: - ```text ION is a continuity machine. It turns AI work from isolated outputs into governed, inspectable, resumable state. ``` -A model can answer. ION is built to continue. +A model can answer. ---- - -*Local-first. Proof-gated. Carrier-agnostic.* +ION is built to continue. From 9ece32e0f4a988f3aeed236d710140e4d3eac9c9 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 11:54:34 -0400 Subject: [PATCH 08/30] Polish public GitHub docs entry points --- CONTRIBUTING.md | 41 ++ ION/docs/AGENTS_ROLES_CARRIERS.md | 81 ++++ ION/docs/CONTEXT_SYSTEM.md | 70 +++ ION/docs/ION_FUNDAMENTALS.md | 100 ++++ ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 28 +- ION/docs/README.md | 17 +- ION/docs/TEMPLATE_LAW.md | 78 ++++ README.md | 428 +++++++----------- SECURITY.md | 13 + 9 files changed, 577 insertions(+), 279 deletions(-) create mode 100644 ION/docs/AGENTS_ROLES_CARRIERS.md create mode 100644 ION/docs/CONTEXT_SYSTEM.md create mode 100644 ION/docs/ION_FUNDAMENTALS.md create mode 100644 ION/docs/TEMPLATE_LAW.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6ca3a6df..77a04f5a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,6 +3,26 @@ This repository is public for collaboration, but ION state is still governed by packets, receipts, proof gates, and bounded carrier authority. +## Start Here + +Read the public landing page first: + +- `README.md` + +Then use the docs layer for the shape of the system: + +- `ION/docs/README.md` +- `ION/docs/ION_FUNDAMENTALS.md` +- `ION/docs/TEMPLATE_LAW.md` +- `ION/docs/CONTEXT_SYSTEM.md` +- `ION/docs/AGENTS_ROLES_CARRIERS.md` + +Use the encyclopedia for broad history and architecture: + +- `ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md` + +The encyclopedia is reference material, not active runtime authority. + ## Before You Change Files 1. Read `ION/REPO_AUTHORITY.md`. @@ -15,6 +35,20 @@ packets, receipts, proof gates, and bounded carrier authority. 4. Run the smallest meaningful validation for the change. 5. Open a pull request with evidence. +## Contribution Lanes + +Use the smallest lane that matches the work: + +| Lane | Good for | +| --- | --- | +| Docs | README, guides, explanation, public navigation. | +| Kernel | Python runtime, tests, audits, gates, queue projections. | +| Integration | MCP, browser extension, daemon, Cursor, Codex carrier surfaces. | +| Context evidence | Receipts, work packets, queue settlement, lifecycle records. | + +Keep public docs, runtime implementation, and active-state evidence in separate +pull requests when possible. That makes review and future indexing cleaner. + ## Pull Request Evidence Include: @@ -44,3 +78,10 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_st PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q ``` +## GitHub Is A Data Plane + +GitHub issues and pull requests are collaboration surfaces. They do not grant +runtime authority, production authority, secret authority, or Steward +acceptance by themselves. Accepted state still requires the ION proof path: +packet, context, template, proof-bearing return, gate, Steward decision, and +receipt. diff --git a/ION/docs/AGENTS_ROLES_CARRIERS.md b/ION/docs/AGENTS_ROLES_CARRIERS.md new file mode 100644 index 00000000..6a8c6cd6 --- /dev/null +++ b/ION/docs/AGENTS_ROLES_CARRIERS.md @@ -0,0 +1,81 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# Agents, Roles, And Carriers + +ION is not centered on model personalities. + +It separates: + +- agents +- roles +- carriers +- authority +- accepted state + +That separation is one of the main anti-drift protections in the system. + +## Agent + +An agent is a domain-bound threshold: the point where intent, compiled context, +mounted role, governing template, and carrier execution align into a lawful act. + +The domain defines the agent. Prompt text alone does not. + +As the domain matures, templates sharpen, receipts accumulate, and context +improves. The agent's world changes because the governed structure changes. + +## Role + +A role is a bounded ION function. + +Examples: + +| Role | Function | +| --- | --- | +| `STEWARD` | Integration, acceptance, rejection, closure. | +| `RELAY` | Intake, packet formation, handoff. | +| `VIZIER` | Strategy and route intelligence. | +| `MASON` | Build coordination and implementation. | +| `NEMESIS` | Adversarial audit and failure-mode attack. | +| `VESTIGE` | Memory, archaeology, residue interpretation. | +| `SCRIBE` | Structured capture and documentation. | +| `VICE` | Discipline, critique, hardening pressure. | + +Roles do not become true because a carrier claims them. They are mounted +through packets, context, templates, and return contracts. + +## Carrier + +A carrier is the host executing or transporting the work. + +| Carrier | Boundary | +| --- | --- | +| ChatGPT Browser | Coordination, continuity, bounded connector lane. | +| Cursor IDE | Local IDE carrier with file visibility. | +| Codex CLI | Bounded local filesystem, build, and test worker. | +| MCP | Tool transport and governed capability exposure. | +| Browser Extension + Daemon | Approval-gated ChatGPT-to-local ION bridge. | +| GitHub | Public collaboration and data plane, not ION runtime authority. | + +## Identity Boundary + +```text +ION governs. +Carriers carry. +Roles execute bounded functions. +No carrier becomes ION identity. +``` + +This lets the same role move across different carriers without confusing host +behavior for system authority. + +## Runtime Boundary + +This document is orientation. Active role and carrier authority lives in +carrier profiles, mount contracts, execution packet templates, active packets, +role context packages, task returns, and Steward integration records. diff --git a/ION/docs/CONTEXT_SYSTEM.md b/ION/docs/CONTEXT_SYSTEM.md new file mode 100644 index 00000000..258bb177 --- /dev/null +++ b/ION/docs/CONTEXT_SYSTEM.md @@ -0,0 +1,70 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# Context System + +ION treats context as inherited operational state, not as a long prompt. + +The goal is not to give a model everything. The goal is to give a mounted role +the bounded material needed for the current lawful act. + +## Compiled Context + +A context package is a compiled, bounded, ranked input to a role. + +It should make explicit: + +- current objective +- relevant authority files +- role and carrier boundary +- active packet references +- allowed and forbidden paths +- needed history +- expected return contract +- validation requirements + +This is different from relying on a model's ambient recall. + +## Inherited Context + +In ION, the next context is inherited from accepted movement. + +That means receipts matter not only as audit logs, but as future context +material. A receipt closes one act and improves the next act's starting point. + +```text +accepted act -> receipt -> updated context -> next lawful act +``` + +## No Informal Memory Authority + +Private model memory is not ION authority. + +A model may remember something useful, but ION state must be recoverable from +packets, context packages, registries, receipts, manifests, and gates. + +This is what lets different carriers continue the same work without pretending +to be the same identity. + +## Context Failure Modes + +Common failures: + +- stale context treated as current +- historical report treated as live authority +- summary treated as proof +- carrier memory treated as accepted state +- large context pasted without selection law +- receipt omitted, so the next worker cannot inherit the delta + +ION addresses these by making context explicit, bounded, and proof-linked. + +## Runtime Boundary + +This document is orientation. Active context authority lives in current packets, +compiled context bundles, carrier onboarding packets, role context packages, +and the context proof gate. diff --git a/ION/docs/ION_FUNDAMENTALS.md b/ION/docs/ION_FUNDAMENTALS.md new file mode 100644 index 00000000..42a7ee7e --- /dev/null +++ b/ION/docs/ION_FUNDAMENTALS.md @@ -0,0 +1,100 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# ION Fundamentals + +ION is a continuity substrate for AI work. + +Its core claim is simple: + +```text +AI output does not become state because it was generated. +It becomes state only through lawful movement. +``` + +The public README is the compressed front door. This document expands the +foundation without replacing runtime authority. For active work, use +`ION/REPO_AUTHORITY.md`, the mount contract, current packets, registries, +templates, gates, receipts, manifests, and tests. + +## The Lawful Act + +The primitive in ION is the lawful act: + +```text +intent +-> work packet +-> compiled context package +-> governing template +-> mounted role +-> carrier execution +-> proof-bearing return +-> gate +-> Steward decision +-> receipt +-> next state +``` + +This chain is what separates continuation from reconstruction. A fresh carrier +does not need to trust an older model's private memory. It can inherit the +packet, context, template, proof, decision, and receipt trail. + +## Candidate State + +Every meaningful AI result is a candidate state transition. + +Candidate state is allowed to be useful, insightful, or even correct. It is not +accepted state until it crosses the proof and integration membrane. + +ION therefore rejects the common shortcut: + +```text +model said something -> treated as truth +``` + +and replaces it with: + +```text +candidate -> proof -> decision -> receipt -> inheritable state +``` + +## Context Inheritance + +ION context is not merely selected for a worker. It is inherited from prior +accepted template movements. + +That matters because context quality improves only when accepted work changes +what future workers receive. If a receipt does not improve the next context, +the system has recorded activity without true continuation. + +## Runtime Truth + +README prose, docs, and historical reports are orientation. Runtime truth is +proven by: + +- kernel status +- active packets +- context packages +- template gates +- Steward integration records +- receipts +- manifests +- tests + +The practical question is always: + +```text +What proves this claim now? +``` + +## Public Posture + +ION is public so others can inspect, critique, and contribute to the protocol. +Public GitHub is the collaboration and data plane. It is not runtime authority, +production authority, secret authority, or proof of acceptance. + +Local ION law remains the authority membrane. diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index 33da6826..cad42886 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -76,8 +76,8 @@ system. - Replace the long catalog-style public README with a sharper landing page centered on ION as a continuity substrate. - Keep detailed navigation in `ION/README.md` and directory-local README files. -- Correct the landing-page verified test count to the current `265 passed` - validation evidence. +- Remove fixed landing-page test-count claims. Public prose should point readers + to live validation commands instead of freezing a number that can go stale. ## Implemented Sixth Slice @@ -85,6 +85,30 @@ system. - Add a full-encyclopedia link with an authority caution so the encyclopedia is discoverable without becoming the active mount source. +## Implemented Seventh Slice + +- Split public landing prose from deeper doctrine references: + - `README.md` stays concise. + - `ION/docs/ION_FUNDAMENTALS.md` carries fundamentals. + - `ION/docs/TEMPLATE_LAW.md` carries template law. + - `ION/docs/CONTEXT_SYSTEM.md` carries context inheritance. + - `ION/docs/AGENTS_ROLES_CARRIERS.md` carries role/carrier boundaries. +- Record the dirty-branch landing split plan at + `ION/05_context/current/BRANCH_LANDING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md`. +- Preserve generated runtime receipts and queue hygiene evidence as a separate + evidence slice rather than mixing them into the public docs slice. + +## Implemented Eighth Slice + +- Align the GitHub community-health tab surfaces: + - `README.md` stays the short public landing page. + - `CONTRIBUTING.md` carries lawful public collaboration and PR evidence + expectations. + - `SECURITY.md` carries the public/private boundary and sensitive report + path. + - `ION/docs/README.md` indexes the deeper orientation docs and encyclopedia. +- Keep GitHub framed as collaboration/data plane, not runtime authority. + ## Proposed Next Slices 1. Add directory-local README files for: diff --git a/ION/docs/README.md b/ION/docs/README.md index 31a8f5cc..af4b6856 100644 --- a/ION/docs/README.md +++ b/ION/docs/README.md @@ -15,16 +15,31 @@ setup/ current setup and operating packets ## High-Value Reads +Public orientation: + +- `ION_FUNDAMENTALS.md` +- `TEMPLATE_LAW.md` +- `CONTEXT_SYSTEM.md` +- `AGENTS_ROLES_CARRIERS.md` + +Setup and carrier operation: + - `setup/ION_CURRENT_OPERATING_PACKET_V119.md` - `setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md` - `setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md` - `setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md` - `setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md` + +Public repo stewardship: + - `PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md` +Long-form reference: + +- `encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md` + ## Reading Rule Consolidation reports are evidence and history. They are useful, but they do not outrank `ION/REPO_AUTHORITY.md`, the mount contract, active packets, registries, templates, or current work packets. - diff --git a/ION/docs/TEMPLATE_LAW.md b/ION/docs/TEMPLATE_LAW.md new file mode 100644 index 00000000..5f93bacd --- /dev/null +++ b/ION/docs/TEMPLATE_LAW.md @@ -0,0 +1,78 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# Template Law + +A template in ION is the action type of the work. + +It defines: + +- what kind of act is happening +- what context is required +- what output is valid +- what authority is exercised +- what state may be touched +- what proof is owed +- how the result becomes future context + +Templates prevent untyped cognition from becoming state. + +## Work Types Are Not Interchangeable + +```text +AUDIT is not BUILD. +BUILD is not HANDOFF. +HANDOFF is not RATIFICATION. +COMPLETION is not ACCEPTANCE. +``` + +When these distinctions collapse, drift enters. A builder starts ratifying. A +handoff pretends to be proof. A summary becomes state. ION keeps the act typed +so the gate can evaluate the right obligations. + +## Template Movement + +Templates are not static forms. They are governed movement through a state +transition. + +A valid template movement should clarify: + +- input packet +- context package +- role mount +- allowed paths +- forbidden paths +- validation commands +- return contract +- receipt requirement +- next-context effect + +## Meta-Template Path + +ION can expand into new domains because template creation is itself governed. + +New template creation should be treated as a template-governed act. It needs a +bounded objective, source evidence, proof obligations, authority ceilings, and +a receipt showing why the new type is needed. + +The point is not to freeze ION. The point is to make evolution inspectable. + +## Anti-Drift Rule + +No carrier should invent a new workflow story because it is convenient. + +If a current template cannot handle the domain, the lawful path is: + +```text +identify gap -> propose template evolution -> prove need -> receive Steward decision -> receipt new state +``` + +## Runtime Boundary + +This document is orientation. Active template authority lives in +`ION/07_templates/`, active packets, current carrier execution packets, and the +template action gate. diff --git a/README.md b/README.md index a8fe59d6..f8553743 100644 --- a/README.md +++ b/README.md @@ -2,380 +2,256 @@ **A continuity substrate for AI work.** -*Local-first. Proof-gated. Carrier-agnostic.* +*Local-first. Template-governed. Context-bound. Proof-gated. Stewarded. Carrier-agnostic.* + +> *ION is the law by which AI work becomes state.* + +--- + +Most AI sessions produce outputs. + +ION produces **state**. + +The difference is this: an output exists because a model generated it. State +exists because a bounded act, governed by a template, situated by a compiled +context package, executed through a mounted role, returned a proof-bearing +result, passed a gate, and earned a receipt that the next worker can inherit. + +That chain is not ceremony. It is the only thing that separates continuation +from reconstruction. --- -Most AI sessions are sophisticated amnesia. +## The Primitive -A model produces something useful. You close the tab. The next session starts -from nothing: no durable record of what was decided, no proof of what changed, -no reliable way for a fresh agent to know what the last one knew. You -reconstruct. You re-explain. You lose ground. +The primitive in ION is not the agent. It is not the chat. It is not memory. -ION is built on a different premise: +It is the **lawful act**. ```text -Continuity is an engineering problem, not a model-memory feature. +intent +-> work packet +-> compiled context package +-> governing template +-> mounted role +-> carrier execution +-> proof-bearing return +-> gate +-> Steward decision +-> receipt +-> next state ``` -ION does not wait for a model to remember. It governs the work so any capable -carrier can resume from explicit state, bounded context, accepted receipts, and -inspectable authority. +Output that cannot show its packet, its context, its template, its proof path, +and its receipt is not yet ION state. It is a candidate. --- -## The Central Question +## Six Laws ```text -What is an AI output allowed to change? +1. Meaningful AI work is a candidate state transition. +2. Every state-bearing act must be governed by a template. +3. Every template execution must be situated by a bounded context package. +4. Every return is proposal until proof gates and Steward integration accept it. +5. Every accepted delta must leave a receipt. +6. Every receipt must improve the next context, or the system has not continued. ``` -ION answers by putting meaningful work through a controlled path: +These are anti-failure constraints, not slogans. They prevent one specific +collapse: ```text -intent -> packet -> context -> role -> execution -> proof -> gate -> receipt -> next state +model said something -> treated as truth ``` -Output is not truth. Output is a proposal. +and replace it with: -A proposal earns the right to become state by passing context proof, template -action proof, and Steward integration. If a result cannot show its packet, -context, authority path, and receipt, it is not yet ION state. +```text +candidate -> proof -> decision -> receipt -> inheritable state +``` -This is not bureaucracy. It is the difference between a system that continues -and a system that merely restarts with better notes. +In ION, the next context is not merely assembled. It is inherited from prior +accepted template movements. --- -## How It Works - -ION is a hybrid runtime: part Python kernel, part governance protocol, part -context engine. - -A **work packet** carries bounded task intent: what is being attempted, under -which authority, against which constraints. - -A **context package** compiles the material a role needs for a step. It is -ranked, bounded, and explicit. It is not a model's ambient recall. +## Templates -A **mounted role** executes a bounded function inside ION's authority model. -Roles include `STEWARD`, `MASON`, `VIZIER`, `NEMESIS`, `VESTIGE`, `SCRIBE`, and -others. +A template in ION is not a markdown form. It is the **action type** of the work. -A **carrier** is the machine carrying the role: ChatGPT Browser, Cursor IDE, -Codex CLI, MCP, or a future adapter. +A template defines what kind of act is happening, what context is required, +what output is valid, what authority is exercised, what state may be touched, +what proof is owed, and how the result becomes future context. -Roles and carriers are not the same thing. +This matters because untyped cognition is where drift enters. ```text -ION governs. -Carriers carry. -Roles execute bounded functions. -No carrier becomes ION identity. +AUDIT is not BUILD. +BUILD is not HANDOFF. +HANDOFF is not RATIFICATION. +COMPLETION is not ACCEPTANCE. ``` -Returns come back as proposals. Proof gates evaluate them. Steward integrates -or rejects them. Receipts land. The next state becomes explicit, inspectable, -and inheritable. - -```mermaid -flowchart LR - A[Operator Intent] --> B[Work Packet] - B --> C[Compiled Context] - C --> D[Mounted Role] - D --> E[Carrier Execution] - E --> F[Proof-Bearing Return] - F --> G[Context Proof Gate] - F --> H[Template Action Gate] - G --> I[Steward Integration] - H --> I - I --> J[Receipt / Ledger / Handoff] - J --> K[Next State Projection] - K --> B -``` +ION agents do not improvise workflows. They move through proven templates, +evolve templates under governed law, or create new ones through a meta-template +path. The same movement that governs current work builds the context future +workers inherit. + +ION can expand into new domains because template creation is itself governed. --- -## What It Solves +## Agents -| Problem | ION answer | -| --- | --- | -| Context loss | Compile bounded context packages. Do not rely on informal memory. | -| Role confusion | Separate roles from carriers. Bind work to mounted authority. | -| Output laundering | Treat raw returns as proposals until proof gates and Steward integration accept them. | -| Unbounded automation | Keep automation subordinate to explicit policies, approvals, and receipts. | -| Continuity drift | Preserve state through packets, ledgers, receipts, audits, and visible projections. | +In ION, an agent is not a personality assigned to a model. + +An agent is a **domain-bound threshold**: the point where intent, compiled +context, mounted role, governing template, and carrier execution align into a +lawful act. + +The domain defines the agent, not the other way around. As the project's +domains mature, templates sharpen, receipts accumulate, and context improves, +the agent's world changes with it. ION does not evolve agents by editing their +prompts. It evolves them by evolving the governed structure they act inside. --- ## Roles And Carriers -ION defines roles as bounded functions, not as the machines that run them. The -same role may be carried by different models across different sessions. What -persists is mounted authority, compiled context, and accepted state - not the -model's private memory. - -### Core Roles +A role is a bounded ION function. A carrier is the host executing it. They are +not the same thing. | Role | Function | | --- | --- | -| `STEWARD` | Integration, routing, acceptance, rejection, closure. | -| `RELAY` | Intake, packet formation, transmission, handoff. | -| `VIZIER` | Strategy, route intelligence, high-level planning. | -| `MASON` | Build coordination and implementation work. | +| `STEWARD` | Integration, acceptance, rejection, closure. | +| `RELAY` | Intake, packet formation, handoff. | +| `VIZIER` | Strategy and route intelligence. | +| `MASON` | Build coordination and implementation. | | `NEMESIS` | Adversarial audit and failure-mode attack. | | `VESTIGE` | Memory, archaeology, residue interpretation. | | `SCRIBE` | Structured capture and documentation. | | `VICE` | Discipline, critique, hardening pressure. | -### Current Carriers - | Carrier | Role in the system | | --- | --- | -| ChatGPT Browser | Conversation, continuity, coordination. | +| ChatGPT Browser | Coordination, continuity, bounded connector lane. | | Cursor IDE | Local IDE carrier with file visibility. | | Codex CLI | Bounded local filesystem, build, and test worker. | -| MCP | Tool transport and capability exposure. | - ---- - -## The Kernel - -The executable kernel lives at: +| MCP | Tool transport and governed capability exposure. | +| Browser Extension + Daemon | Approval-gated ChatGPT-to-local ION bridge. | +| GitHub | Public collaboration and data plane, not ION runtime authority. | ```text -ION/04_packages/kernel/ +ION governs. +Carriers carry. +Roles execute bounded functions. +No carrier becomes ION identity. ``` -Its job is to make state, authority, and transitions inspectable. It is not -there to sound intelligent. - -Key surfaces: +--- -- `ion_status.py` - current system state -- `ion_carrier_onboard.py` - lawful carrier mount entry -- `ion_carrier_continue.py` - continuation from prior receipts -- `ion_cycle_runner.py` - bounded work-cycle execution -- `ion_context_proof_gate.py` - context verification membrane -- `ion_template_action_gate.py` - template compliance verification -- `ion_steward_integrate.py` - integration control surface -- `ion_agent_invocation_broker.py` - governed agent dispatch -- `ion_codex_queue_runner.py` - Codex CLI work queue management -- `ion_cockpit_view_model.py` - operator-facing state projection +## What Runs -### Fast Verification +The executable kernel lives at `ION/04_packages/kernel/`. Its job is to make +state, authority, and transitions **inspectable**. -```bash -# Install -python3 -m venv .venv && source .venv/bin/activate && pip install -e . +Core surfaces: -# Current state -python3 -m kernel.ion_status --ion-root . --json +`ion_status` - `ion_carrier_onboard` - `ion_carrier_continue` - +`ion_cycle_runner` - `ion_context_proof_gate` - `ion_template_action_gate` - +`ion_steward_integrate` - `ion_agent_invocation_broker` - +`ion_codex_queue_runner` - `ion_cockpit_view_model` -# Full test suite -PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -m pytest ION/tests -q -``` +Active state lives at `ION/05_context/current/`: packets, queues, ledgers, +receipts, handoffs, and projections maintained as explicit runtime objects, +not chat transcripts. --- -## Repository Shape - -ION is large because it is not only code. It contains doctrine, protocols, -registries, templates, runtime state, receipts, UI, integrations, and audits. - -| Path | Purpose | -| --- | --- | -| `ION/01_doctrine/` | Constitutional law. What must remain true. | -| `ION/02_architecture/` | Protocols, lifecycle rules, and runtime architecture. | -| `ION/03_registry/` | Entities, carrier profiles, schemas, and policies. | -| `ION/04_packages/kernel/` | Executable kernel. What actually runs. | -| `ION/05_context/` | Active state, history, receipts, and handoffs. | -| `ION/06_intelligence/` | Audits, research, and orchestration artifacts. | -| `ION/07_templates/` | The shape work must take. | -| `ION/08_ui/` | Operator cockpit surfaces. | -| `ION/09_integrations/` | Browser extension, Cursor, daemon, MCP, and ChatGPT connector lanes. | - -Root-level witness files from earlier consolidation passes are archived under: - -```text -ION/05_context/archive/root_witness_manifests/ -``` +## Full Reference ---- +The deeper public orientation layer lives under `ION/docs/`: -## Full Encyclopedia +- [ION Fundamentals](ION/docs/ION_FUNDAMENTALS.md) +- [Template Law](ION/docs/TEMPLATE_LAW.md) +- [Context System](ION/docs/CONTEXT_SYSTEM.md) +- [Agents, Roles, And Carriers](ION/docs/AGENTS_ROLES_CARRIERS.md) The long-form system reference is the living encyclopedia: [ION Production Encyclopedia v4.0](ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md) -Use it when you need broader history, context-system background, recovery -lineage, and the larger system map. It is not a production ratification and it -does not outrank current startup authority. For active work, mount through -`ION/REPO_AUTHORITY.md`, `ION/02_architecture/ION_MOUNT_CONTRACT.md`, current -packets, registries, templates, and receipts. - ---- - -## Mounting A Carrier +Use it for wider system history, context architecture, recovery lineage, and +the larger map. It is not the active startup authority. For live work, mount +through `ION/REPO_AUTHORITY.md`, `ION/02_architecture/ION_MOUNT_CONTRACT.md`, +current packets, registries, templates, and receipts. -Fresh entry rule: +## Public Collaboration -```text -Do not begin by guessing. -``` - -Read in order before acting: - -1. `ION/REPO_AUTHORITY.md` -2. `ION/02_architecture/ION_MOUNT_CONTRACT.md` -3. `ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md` -4. the selected carrier profile under `ION/03_registry/` -5. the selected carrier execution packet under `ION/07_templates/carriers/` -6. the active packet or context package under `ION/05_context/current/` - -A carrier is not trusted because it announces itself. It is trusted when the -mount path, context, template, return contract, and proof path are in force. - ---- - -## Design Laws - -These are not slogans. They are anti-failure constraints discovered under -pressure. - -**Manual operation is real operation.** Manual mode is not a degraded fallback. -It is the lawful baseline that keeps the system honest when carriers are weak. - -**Automation is shadow until proven.** A daemon or connector has no authority -because it can execute. It earns authority through bounded, audited, approved, -receipted operation. - -**Output is proposal until accepted.** Worker output can be correct, even -brilliant. It does not become ION state until the appropriate proof and -integration path accepts it. - -**No silent loss.** State-bearing artifacts do not disappear for convenience. -Obsolete surfaces require custody: containment, archive, supersession, or -explicit revocation. - -**One workflow.** Manual execution, IDE-native execution, daemon-assisted -execution, and swarm execution are carriers of the same canonical loop. They -are not different systems. - -**Context packages over vague memory.** ION does not rely on a carrier knowing -what the operator means. It compiles and proves the context the step requires. - -**Projection discipline.** Status surfaces describe actual authority. A cockpit -that hides limits is worse than no cockpit. - ---- - -## Integrations - -**ChatGPT Browser** connects through a bounded MCP connector contract at -`ION/09_integrations/mcp/chatgpt_connector/`. The connector exposes a governed -tool surface, not unconstrained shell access wrapped in protocol. - -**Codex CLI** operates as a bounded local worker through a governed queue. Work -packets go in. Proof-gated receipts come out. Raw Codex output does not become -ION state directly. - -**Browser ChatOps extension** detects valid `ion_action` YAML blocks in ChatGPT -Browser, validates them through a local daemon, presents approval controls, and -converts approved actions into ION artifacts and receipts. +GitHub is the public collaboration and data plane. It is not ION runtime +authority. -**Cursor IDE** provides file visibility and an editor-adjacent carrier lane -under `ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md`. +Use these repository entry points: -**GitHub** is the data plane: collaboration, mirroring, review, release -packaging. It is not the authority of ION. Local law, gates, receipts, and -custody hold authority. +- [Contributing](CONTRIBUTING.md) - branch, pull request, evidence, and + validation expectations. +- [Security](SECURITY.md) - secret-handling rules and sensitive report path. +- [ION docs index](ION/docs/README.md) - public docs, setup guides, reports, + and the encyclopedia. +- [ION content root](ION/README.md) - directory map for the full repository. ---- - -## The Cockpit - -ION should not be invisible orchestration. - -If the system claims state, the operator must be able to inspect it. If -automation claims authority, the cockpit must show the boundary. - -Current JOC cockpit panels under `ION/08_ui/joc_cockpit_shell/`: - -- `RuntimeStatusPanel` - current objective, production authority, live execution - posture -- `CarrierTurnPanel` - active carrier, mounted role, turn state -- `LaneTimelinePanel` - ordered lane progression and history -- `HumanGateQueuePanel` - pending operator decisions -- `TaskReturnLedgerPanel` - accepted and rejected return history -- `StewardIntegrationQueuePanel` - integration decisions in flight -- `ReceiptHydrationPanel` - receipt trail and inheritance chain +Issues, pull requests, comments, and external AI reviews are evidence and +proposals. They become ION state only through the same proof-gated path as any +other work. --- -## What Comes Next +## Getting Started -**Browser-first operation.** The ChatOps lane points toward full ION operation -from a browser: approval-gated local effects, package export, queue visibility, -and diagnostics without a local IDE. - -**ChatGPT sandbox return lane.** ChatGPT Browser works on a local package in -sandbox, then returns a patch to `ION/05_context/inbox/` for local review and -formal integration. Powerful compute without surrendering proof boundaries. - -**Hosted runtime.** A cloud-hosted ION instance that preserves local-first -governance while making the system reachable from any device. - -**Swarm control.** The agent invocation broker enables GPT Browser to invoke -named roles - `MASON`, `VIZIER`, `NEMESIS`, `STEWARD`, and others - as governed -Codex-backed workers. The carrier loop closes from browser to local execution -to receipted return. - ---- +```bash +python3 -m venv .venv && source .venv/bin/activate && pip install -e . -## Verified State +# Verify state +python3 -m kernel.ion_status --ion-root . --json -```text -ion_status verdict: ION_STATUS_READY -Tests: 265 passed -Production authority: false +# Run tests +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -m pytest ION/tests -q ``` -Production authority is withheld by design at this stage. +Before acting in any carrier, read in order: -The useful question is never: +1. `ION/REPO_AUTHORITY.md` +2. `ION/02_architecture/ION_MOUNT_CONTRACT.md` +3. The current operating packet under `ION/docs/setup/` +4. The carrier profile under `ION/03_registry/` +5. The active context package under `ION/05_context/current/` -```text -Does this look right? -``` +Do not treat README prose as runtime truth. Verify with the kernel, current +packets, gates, receipts, manifests, and tests. -It is: +The useful question is never *does this look right?* ```text -What receipt, gate, manifest, or ledger proves the claim? +What receipt, gate, manifest, or test proves the claim? ``` --- -## Why This Project Exists +## Why This Exists AI work is becoming serious faster than its continuity machinery. -There are many systems that act alive for a few minutes. There are fewer -systems that can tell you exactly what happened, which context was loaded, -which role acted, which proof passed, which authority was withheld, and what -the next worker may inherit. - -ION attacks that gap directly. +There are many systems that act alive for a few minutes. Fewer can tell you +what packet opened the work, what context was compiled, what template governed +the act, what proof passed, what Steward accepted, what receipt was emitted, +and what the next worker may inherit. -```text -ION is a continuity machine. -It turns AI work from isolated outputs into governed, inspectable, resumable state. -``` +ION is built to make that chain explicit, inspectable, and durable across +models, tools, sessions, and carriers. -A model can answer. +--- -ION is built to continue. +*A model can answer.* +*ION is built to continue.* diff --git a/SECURITY.md b/SECURITY.md index a8bc335b..7b6395e6 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -3,6 +3,13 @@ This public repository must not contain secrets or production-only operational state. +## Public / Private Boundary + +This repository is intended to be public collaboration infrastructure for ION. +Future private production infrastructure may live elsewhere. Do not treat the +presence of public code, docs, issues, or pull requests as production authority +or live external execution authority. + ## Do Not Commit - API keys, access tokens, OAuth client secrets, session cookies, or refresh @@ -13,6 +20,9 @@ state. - private logs, incident material, customer/user data, or production infrastructure state +If a file is useful only because it contains a secret, credential, or private +session artifact, it does not belong in this public repository. + ## Report A Concern Open a GitHub security advisory or contact the repository owner out of band if @@ -27,3 +37,6 @@ it clearly. Security reports, issues, and pull requests are evidence and proposals. They do not directly mutate ION runtime state and do not grant production authority. +Security fixes should still preserve ION's state boundary where practical: +describe the affected paths, the risk, the validation run, and any receipt, +gate, issue, or pull request that proves the handling path. From beb0edda3736c51ab78c2c26dccb676b0c562308 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:00:35 -0400 Subject: [PATCH 09/30] Add sandbox return intake support --- ..._CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md | 182 +++++ .../ion_chatgpt_sandbox_return.schema.json | 127 +++ .../ion_chatops_extension_policy.yaml | 7 + .../ion_chatops_local_daemon_policy.yaml | 11 + .../ion_chatgpt_sandbox_return_intake.py | 732 ++++++++++++++++++ ION/04_packages/kernel/ion_chatops_bridge.py | 157 ++++ .../kernel/ion_cockpit_view_model.py | 25 + .../ion_chatops_bridge/README.md | 12 +- .../ion_chatops_bridge/dist/background.js | 42 + .../ion_chatops_bridge/src/background.ts | 42 + .../local_daemon/ion_chatops_bridge/README.md | 13 + ...ernel_ion_chatgpt_sandbox_return_intake.py | 184 +++++ .../test_kernel_ion_chatops_bridge_policy.py | 7 + .../test_kernel_ion_cockpit_view_model.py | 26 + 14 files changed, 1566 insertions(+), 1 deletion(-) create mode 100644 ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md create mode 100644 ION/03_registry/ion_chatgpt_sandbox_return.schema.json create mode 100644 ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py create mode 100644 ION/tests/test_kernel_ion_chatgpt_sandbox_return_intake.py diff --git a/ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md b/ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md new file mode 100644 index 00000000..968ebecb --- /dev/null +++ b/ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md @@ -0,0 +1,182 @@ +--- +type: protocol +authority: A3_IMPLEMENTATION +status: DRAFT_NON_PRODUCTION +created: 2026-05-05 +production_authority: false +live_execution_authority: false +--- + +# ION ChatGPT Sandbox Return Intake Protocol + +This protocol defines how Sev/ChatGPT Browser may return sandbox-produced work +to local ION for review. + +It is not ION law, not production authority, and not direct patch authority. +It is a bounded implementation lane under the existing ION proof and receipt +model. + +## Core Rule + +```text +ChatGPT sandbox output is inbox evidence, not accepted state. +``` + +A sandbox return may contain a summary, manifest, patch, validation notes, and +optional full-file overlays. It must land under: + +```text +ION/05_context/inbox/chatgpt_sandbox_returns// +``` + +No sandbox endpoint may patch live source, delete files, push git, access +credentials, deploy production, or accept worker output directly into state. + +## Return Identity + +Return IDs use: + +```text +sev-YYYYMMDD-HHMMSS- +``` + +Example: + +```text +sev-20260505-041500-chatops-ui-return +``` + +Each return ID is immutable after registration. Duplicate IDs are blocked. + +## Required Files + +Every committed return must contain: + +```text +SANDBOX_RETURN_MANIFEST.json +SUMMARY.md +``` + +Preferred code-change evidence: + +```text +PATCH.diff +``` + +Optional overlay material may appear under: + +```text +files/ +``` + +Overlay files are review material only and never apply themselves. + +## Manifest Commitments + +The manifest schema is: + +```text +ion.chatgpt_sandbox_return.v1 +``` + +It must record: + +- `return_id` +- authoring carrier `Sev` / `chatgpt_browser` / `sandbox: true` +- human sovereign `Braden` +- source snapshot package path and sha256 when known +- expected archive root markers `pyproject.toml` and `ION/REPO_AUTHORITY.md` +- changed paths +- sandbox validation claims +- requested receipts +- `production_authority: false` +- `live_execution_authority: false` +- `direct_apply_authority: false` +- `git_push_authority: false` + +## Active Queue + +The active projection lives at: + +```text +ION/05_context/current/ACTIVE_CHATGPT_SANDBOX_RETURN_QUEUE.json +``` + +Queue statuses: + +```text +RETURN_DRAFT_WRITTEN +RETURN_COMMITTED_FOR_REVIEW +DIFF_PREVIEW_READY +CODEX_REVIEW_QUEUED +CODEX_REVIEW_RUNNING +RETURN_REVIEW_ACCEPTED +RETURN_REVIEW_BLOCKED +SUPERSEDED_BY_NEW_BASE +``` + +## Kernel Owner + +The implementation owner is: + +```text +ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py +``` + +The owner provides: + +```text +register_sandbox_return +write_sandbox_return_file +commit_sandbox_return +build_sandbox_return_diff_preview +queue_sandbox_return_codex_review +build_sandbox_return_queue_projection +``` + +## ChatOps Daemon Surface + +The local daemon may expose bounded endpoints: + +```text +GET /sandbox/returns +GET /sandbox/returns/{return_id} +POST /sandbox/returns/register +POST /sandbox/returns/file +POST /sandbox/returns/commit +POST /sandbox/returns/diff-preview +POST /sandbox/returns/queue-review +``` + +All mutating endpoints require Braden approval through the daemon operation +approval gate. + +## Review Path + +Diff preview may run read-only commands such as: + +```bash +git apply --check ION/05_context/inbox/chatgpt_sandbox_returns//PATCH.diff +git apply --stat ION/05_context/inbox/chatgpt_sandbox_returns//PATCH.diff +``` + +If a patch must be tested, apply it only in a temporary review root. Live source +patching remains outside this protocol. + +## Failure Classes + +Use existing ChatOps/ION failure classes where possible: + +```text +CHATOPS_SCHEMA_FAILURE +USER_APPROVAL_REJECTED +LOCAL_DAEMON_FAILURE +ION_PACKET_WRITE_FAILURE +CODEX_BACKEND_FAILURE +CARRIER_ADAPTER_FAILURE +ION_CORE_FAILURE +POLICY_BLOCK_WORKING_AS_DESIGNED +``` + +Missing or malformed sandbox return material is normally +`POLICY_BLOCK_WORKING_AS_DESIGNED`, not `ION_CORE_FAILURE`. diff --git a/ION/03_registry/ion_chatgpt_sandbox_return.schema.json b/ION/03_registry/ion_chatgpt_sandbox_return.schema.json new file mode 100644 index 00000000..17abe4e2 --- /dev/null +++ b/ION/03_registry/ion_chatgpt_sandbox_return.schema.json @@ -0,0 +1,127 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "ion.chatgpt_sandbox_return.v1", + "title": "ION ChatGPT Sandbox Return Manifest", + "type": "object", + "additionalProperties": true, + "required": [ + "schema_id", + "return_id", + "created_at", + "authoring_carrier", + "human_sovereign", + "source_snapshot", + "base_assumptions", + "changed_paths", + "sandbox_validation", + "receipts_requested" + ], + "properties": { + "schema_id": { + "const": "ion.chatgpt_sandbox_return.v1" + }, + "return_id": { + "type": "string", + "pattern": "^sev-[0-9]{8}-[0-9]{6}-[a-z0-9][a-z0-9_-]{1,80}$" + }, + "created_at": { + "type": "string" + }, + "authoring_carrier": { + "type": "object", + "additionalProperties": false, + "required": ["callsign", "carrier", "sandbox"], + "properties": { + "callsign": { + "const": "Sev" + }, + "carrier": { + "const": "chatgpt_browser" + }, + "sandbox": { + "const": true + } + } + }, + "human_sovereign": { + "const": "Braden" + }, + "source_snapshot": { + "type": "object", + "additionalProperties": true, + "required": [ + "archive_root_confirmed", + "expected_root_markers" + ], + "properties": { + "package_path_seen_by_chatgpt": { + "type": ["string", "null"] + }, + "package_sha256": { + "type": "string" + }, + "archive_root_confirmed": { + "const": true + }, + "expected_root_markers": { + "type": "array", + "items": { + "type": "string" + }, + "contains": { + "const": "pyproject.toml" + } + } + } + }, + "base_assumptions": { + "type": "object", + "additionalProperties": true, + "required": [ + "production_authority", + "live_execution_authority", + "direct_apply_authority", + "git_push_authority" + ], + "properties": { + "production_authority": { + "const": false + }, + "live_execution_authority": { + "const": false + }, + "direct_apply_authority": { + "const": false + }, + "git_push_authority": { + "const": false + } + } + }, + "changed_paths": { + "type": "array", + "items": { + "type": "string", + "not": { + "pattern": "(^/|\\.\\.|\\.env|secret|token|credential|vault)" + } + } + }, + "intended_review_commands": { + "type": "array", + "items": { + "type": "string" + } + }, + "sandbox_validation": { + "type": "object", + "additionalProperties": true + }, + "receipts_requested": { + "type": "array", + "items": { + "type": "string" + } + } + } +} diff --git a/ION/03_registry/ion_chatops_extension_policy.yaml b/ION/03_registry/ion_chatops_extension_policy.yaml index 2258ea82..dcc85117 100644 --- a/ION/03_registry/ion_chatops_extension_policy.yaml +++ b/ION/03_registry/ion_chatops_extension_policy.yaml @@ -25,6 +25,13 @@ approval_policy: require_preview_for_mutation: true require_braden_approval_for_submit: true approval_token: ION_CHATOPS_APPROVED +sandbox_tab_policy: + read_queue: GET /sandbox/returns + diff_preview_requires_braden_approval: true + queue_review_requires_braden_approval: true + direct_patch_apply_allowed: false + git_push_allowed: false + inbox_root: ION/05_context/inbox/chatgpt_sandbox_returns/ blocked_extension_behaviors: - direct_filesystem_access - silent_auto_approval diff --git a/ION/03_registry/ion_chatops_local_daemon_policy.yaml b/ION/03_registry/ion_chatops_local_daemon_policy.yaml index ca07ff06..9a2db693 100644 --- a/ION/03_registry/ion_chatops_local_daemon_policy.yaml +++ b/ION/03_registry/ion_chatops_local_daemon_policy.yaml @@ -10,6 +10,8 @@ storage: receipts: ION/05_context/current/chatops_bridge/receipts/ runtime: ION/05_context/current/chatops_bridge/runtime/ artifacts: ION/05_context/current/chatops_bridge/artifacts/ + sandbox_returns: ION/05_context/inbox/chatgpt_sandbox_returns/ + sandbox_return_receipts: ION/05_context/current/chatgpt_sandbox_returns/receipts/ supported_mvp_intents: - register_artifact - write_file_draft @@ -20,6 +22,15 @@ allowed_write_prefixes: - ION/03_registry/ - ION/05_context/current/chatops_bridge/ - ION/05_context/inbox/ +sandbox_return_surface: + owner: ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py + protocol: ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md + schema: ION/03_registry/ion_chatgpt_sandbox_return.schema.json + queue: ION/05_context/current/ACTIVE_CHATGPT_SANDBOX_RETURN_QUEUE.json + inbox_root: ION/05_context/inbox/chatgpt_sandbox_returns/ + direct_apply_authority: false + git_push_authority: false + approval_required_for_write_endpoints: true protected_path_tokens: - /.git/ - .env diff --git a/ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py b/ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py new file mode 100644 index 00000000..dccaeceb --- /dev/null +++ b/ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py @@ -0,0 +1,732 @@ +"""ChatGPT sandbox return intake. + +This owner receives review material produced by Sev/ChatGPT Browser in a +sandbox. It never applies patches to source. Sandbox output lands as inbox +evidence, receives receipts, and can queue a bounded Codex review packet. +""" + +from __future__ import annotations + +import argparse +import base64 +import hashlib +import json +import re +import subprocess +from datetime import datetime, timezone +from pathlib import Path +from typing import Any, Mapping + +from .ion_carrier_onboard import resolve_shell_root_from_ion_root + +SCHEMA_ID = "ion.chatgpt_sandbox_return_intake.v1" +MANIFEST_SCHEMA_ID = "ion.chatgpt_sandbox_return.v1" +QUEUE_SCHEMA_ID = "ion.chatgpt_sandbox_return_queue.v1" +RECEIPT_SCHEMA_ID = "ion.chatgpt_sandbox_return_receipt.v1" +READY_VERDICT = "ION_CHATGPT_SANDBOX_RETURN_INTAKE_READY" +BLOCKED_VERDICT = "ION_CHATGPT_SANDBOX_RETURN_INTAKE_BLOCKED" + +INBOX_ROOT = Path("ION/05_context/inbox/chatgpt_sandbox_returns") +ACTIVE_QUEUE_PATH = Path("ION/05_context/current/ACTIVE_CHATGPT_SANDBOX_RETURN_QUEUE.json") +RECEIPTS_DIR = Path("ION/05_context/current/chatgpt_sandbox_returns/receipts") + +REQUIRED_MARKERS = ("pyproject.toml", "ION/REPO_AUTHORITY.md") +RETURN_ID_RE = re.compile(r"^sev-\d{8}-\d{6}-[a-z0-9][a-z0-9_-]{1,80}$") +PROTECTED_PATH_TOKENS = ( + "/.git/", + ".env", + "secret", + "token", + "credential", + "vault", +) + + +def _now() -> str: + return datetime.now(timezone.utc).replace(microsecond=0).isoformat() + + +def _safe_slug(value: str) -> str: + return re.sub(r"[^a-z0-9]+", "_", value.lower()).strip("_")[:96] or "sandbox_return" + + +def _resolve_root(root: str | Path | None) -> Path: + candidate = Path(root or ".").expanduser().resolve() + for path in (candidate, *candidate.parents): + if (path / "pyproject.toml").exists() and (path / "ION/REPO_AUTHORITY.md").exists(): + return path + return resolve_shell_root_from_ion_root(root) + + +def _repo_rel(path: Path, root: Path) -> str: + return path.relative_to(root).as_posix() + + +def _read_json(path: Path) -> dict[str, Any] | None: + if not path.exists(): + return None + value = json.loads(path.read_text(encoding="utf-8")) + return value if isinstance(value, dict) else None + + +def _write_json(path: Path, value: Mapping[str, Any]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(value, indent=2, sort_keys=True) + "\n", encoding="utf-8") + + +def _sha256_bytes(value: bytes) -> str: + return hashlib.sha256(value).hexdigest() + + +def _sha256_file(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as fh: + for chunk in iter(lambda: fh.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + +def _return_root(root: Path, return_id: str) -> Path: + return root / INBOX_ROOT / return_id + + +def _has_protected_token(rel: str) -> bool: + lowered = f"/{rel.lower()}" + return any(token in lowered for token in PROTECTED_PATH_TOKENS) + + +def _validate_repo_rel_value(value: str, *, allow_files_overlay: bool = False) -> str | None: + rel = value.replace("\\", "/").strip() + if not rel: + return "path_required" + if rel.startswith("/") or rel.startswith("../") or "/../" in rel or rel.endswith("/.."): + return "path_escape" + if _has_protected_token(rel): + return "protected_path_token" + if allow_files_overlay: + return None + if rel.startswith("files/"): + return "files_overlay_prefix_not_allowed_here" + return None + + +def _safe_return_file_path(root: Path, return_id: str, rel_path: str) -> tuple[Path | None, str | None]: + finding = _validate_repo_rel_value(rel_path, allow_files_overlay=True) + if finding: + return None, finding + base = _return_root(root, return_id).resolve() + target = (base / rel_path).resolve() + try: + target.relative_to(base) + except ValueError: + return None, "path_escape" + return target, None + + +def _queue_default() -> dict[str, Any]: + return { + "schema_id": QUEUE_SCHEMA_ID, + "created_at": _now(), + "updated_at": _now(), + "return_count": 0, + "returns": [], + "production_authority": False, + "live_execution_authority": False, + } + + +def _load_queue(root: Path) -> dict[str, Any]: + queue = _read_json(root / ACTIVE_QUEUE_PATH) + if not queue: + return _queue_default() + if not isinstance(queue.get("returns"), list): + queue["returns"] = [] + return queue + + +def _write_queue(root: Path, queue: Mapping[str, Any]) -> str: + payload = dict(queue) + payload["updated_at"] = _now() + payload["return_count"] = len(payload.get("returns") or []) + _write_json(root / ACTIVE_QUEUE_PATH, payload) + return ACTIVE_QUEUE_PATH.as_posix() + + +def _upsert_queue_item(root: Path, return_id: str, update: Mapping[str, Any]) -> str: + queue = _load_queue(root) + returns = [item for item in queue.get("returns", []) if isinstance(item, dict)] + existing = next((item for item in returns if item.get("return_id") == return_id), None) + if existing is None: + existing = { + "return_id": return_id, + "created_at": _now(), + "status": "RETURN_DRAFT_WRITTEN", + } + returns.append(existing) + existing.update(dict(update)) + existing["updated_at"] = _now() + queue["returns"] = returns + return _write_queue(root, queue) + + +def _write_receipt( + root: Path, + *, + operation: str, + return_id: str, + status: str, + result: Mapping[str, Any], + files_touched: list[str] | None = None, + failure_classification: str | None = None, +) -> str: + receipt_id = f"sandbox_return_receipt_{datetime.now(timezone.utc).strftime('%Y%m%dT%H%M%SZ')}_{_safe_slug(return_id)}_{_safe_slug(operation)}" + receipt = { + "schema_id": RECEIPT_SCHEMA_ID, + "receipt_id": receipt_id, + "return_id": return_id, + "operation": operation, + "created_at": _now(), + "actor": { + "callsign": "Sev", + "carrier": "chatgpt_browser", + "sandbox": True, + }, + "human_sovereign": "Braden", + "status": status, + "files_touched": list(files_touched or []), + "validation": {"result": dict(result)}, + "failure_classification": failure_classification, + "production_authority": False, + "live_execution_authority": False, + "direct_apply_authority": False, + "git_push_authority": False, + } + path = root / RECEIPTS_DIR / f"{_safe_slug(receipt_id)}.json" + _write_json(path, receipt) + return _repo_rel(path, root) + + +def _normalize_manifest(packet: Mapping[str, Any]) -> dict[str, Any]: + manifest = dict(packet.get("manifest")) if isinstance(packet.get("manifest"), Mapping) else {} + return_id = str(packet.get("return_id") or manifest.get("return_id") or "").strip() + source_snapshot = manifest.get("source_snapshot") if isinstance(manifest.get("source_snapshot"), Mapping) else {} + if isinstance(packet.get("source_snapshot"), Mapping): + source_snapshot = {**source_snapshot, **dict(packet["source_snapshot"])} + base_assumptions = manifest.get("base_assumptions") if isinstance(manifest.get("base_assumptions"), Mapping) else {} + changed_paths = packet.get("changed_paths", manifest.get("changed_paths", [])) + sandbox_validation = packet.get("sandbox_validation", manifest.get("sandbox_validation", {})) + return { + "schema_id": MANIFEST_SCHEMA_ID, + "return_id": return_id, + "created_at": str(manifest.get("created_at") or packet.get("created_at") or _now()), + "authoring_carrier": { + "callsign": "Sev", + "carrier": "chatgpt_browser", + "sandbox": True, + }, + "human_sovereign": "Braden", + "source_snapshot": { + "package_path_seen_by_chatgpt": source_snapshot.get("package_path_seen_by_chatgpt"), + "package_sha256": source_snapshot.get("package_sha256", "unknown-unless-provided-or-computed"), + "archive_root_confirmed": source_snapshot.get("archive_root_confirmed") is True, + "expected_root_markers": list(source_snapshot.get("expected_root_markers") or REQUIRED_MARKERS), + }, + "base_assumptions": { + "production_authority": base_assumptions.get("production_authority") is True, + "live_execution_authority": base_assumptions.get("live_execution_authority") is True, + "direct_apply_authority": base_assumptions.get("direct_apply_authority") is True, + "git_push_authority": base_assumptions.get("git_push_authority") is True, + }, + "changed_paths": list(changed_paths or []), + "intended_review_commands": list( + packet.get( + "intended_review_commands", + manifest.get( + "intended_review_commands", + [ + f"git apply --check {INBOX_ROOT.as_posix()}/{return_id}/PATCH.diff", + "PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q -p no:cacheprovider", + ], + ), + ) + or [] + ), + "sandbox_validation": dict(sandbox_validation) if isinstance(sandbox_validation, Mapping) else {}, + "receipts_requested": list( + packet.get( + "receipts_requested", + manifest.get( + "receipts_requested", + [ + "sandbox_return_intake_receipt", + "sha256_receipt", + "diff_preview_receipt", + "codex_review_packet_receipt", + ], + ), + ) + or [] + ), + } + + +def validate_sandbox_return_manifest(manifest: Mapping[str, Any]) -> dict[str, Any]: + findings: list[str] = [] + warnings: list[str] = [] + if manifest.get("schema_id") != MANIFEST_SCHEMA_ID: + findings.append("schema_id_must_be_ion_chatgpt_sandbox_return_v1") + return_id = str(manifest.get("return_id") or "").strip() + if not RETURN_ID_RE.match(return_id): + findings.append("return_id_must_match_sev_yyyymmdd_hhmmss_slug") + carrier = manifest.get("authoring_carrier") if isinstance(manifest.get("authoring_carrier"), Mapping) else {} + if carrier.get("callsign") != "Sev": + findings.append("authoring_carrier_callsign_must_be_Sev") + if carrier.get("carrier") != "chatgpt_browser": + findings.append("authoring_carrier_must_be_chatgpt_browser") + if carrier.get("sandbox") is not True: + findings.append("authoring_carrier_sandbox_must_be_true") + if manifest.get("human_sovereign") != "Braden": + findings.append("human_sovereign_must_be_Braden") + snapshot = manifest.get("source_snapshot") if isinstance(manifest.get("source_snapshot"), Mapping) else {} + if snapshot.get("archive_root_confirmed") is not True: + findings.append("archive_root_confirmed_must_be_true") + markers = set(snapshot.get("expected_root_markers") or []) + for marker in REQUIRED_MARKERS: + if marker not in markers: + findings.append(f"expected_root_marker_missing:{marker}") + assumptions = manifest.get("base_assumptions") if isinstance(manifest.get("base_assumptions"), Mapping) else {} + for key in ("production_authority", "live_execution_authority", "direct_apply_authority", "git_push_authority"): + if assumptions.get(key) is not False: + findings.append(f"{key}_must_be_false") + changed_paths = manifest.get("changed_paths") + if not isinstance(changed_paths, list): + findings.append("changed_paths_must_be_list") + else: + for rel in changed_paths: + if not isinstance(rel, str): + findings.append("changed_path_must_be_string") + continue + finding = _validate_repo_rel_value(rel) + if finding: + findings.append(f"changed_path_{finding}:{rel}") + if not manifest.get("receipts_requested"): + warnings.append("receipts_requested_empty") + return { + "schema_id": "ion.chatgpt_sandbox_return_manifest_validation.v1", + "accepted": not findings, + "return_id": return_id or None, + "findings": findings, + "warnings": warnings, + "production_authority": False, + "live_execution_authority": False, + "direct_apply_authority": False, + "git_push_authority": False, + } + + +def register_sandbox_return(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + manifest = _normalize_manifest(packet) + validation = validate_sandbox_return_manifest(manifest) + return_id = str(manifest.get("return_id") or "invalid_sandbox_return") + summary = str(packet.get("summary_text") or packet.get("summary") or "").strip() + if not summary: + validation["accepted"] = False + validation["findings"].append("summary_text_required") + target_root = _return_root(shell_root, return_id) + if target_root.exists(): + validation["accepted"] = False + validation["findings"].append("return_id_already_exists") + if not validation["accepted"]: + receipt_path = _write_receipt( + shell_root, + operation="register", + return_id=return_id, + status="rejected", + result=validation, + failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + return { + "schema_id": "ion.chatgpt_sandbox_return_register_result.v1", + "ok": False, + "verdict": BLOCKED_VERDICT, + "finding": "validation_failed", + "validation": validation, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + } + target_root.mkdir(parents=True, exist_ok=False) + manifest_path = target_root / "SANDBOX_RETURN_MANIFEST.json" + summary_path = target_root / "SUMMARY.md" + _write_json(manifest_path, manifest) + summary_path.write_text(summary + "\n", encoding="utf-8") + files = [_repo_rel(manifest_path, shell_root), _repo_rel(summary_path, shell_root)] + queue_path = _upsert_queue_item( + shell_root, + return_id, + { + "status": "RETURN_DRAFT_WRITTEN", + "return_root": _repo_rel(target_root, shell_root), + "manifest_path": files[0], + "summary_path": files[1], + "changed_path_count": len(manifest.get("changed_paths") or []), + "blocked_findings": [], + }, + ) + result = { + "ok": True, + "return_id": return_id, + "return_root": _repo_rel(target_root, shell_root), + "manifest_path": files[0], + "summary_path": files[1], + "queue_path": queue_path, + "sha256": {rel: _sha256_file(shell_root / rel) for rel in files}, + } + receipt_path = _write_receipt(shell_root, operation="register", return_id=return_id, status="completed", result=result, files_touched=files + [queue_path]) + _upsert_queue_item(shell_root, return_id, {"latest_receipt_path": receipt_path}) + return { + "schema_id": "ion.chatgpt_sandbox_return_register_result.v1", + "ok": True, + "verdict": READY_VERDICT, + "receipt_path": receipt_path, + **result, + "production_authority": False, + "live_execution_authority": False, + } + + +def _return_is_committed(root: Path, return_id: str) -> bool: + return (_return_root(root, return_id) / "RETURN_COMMITTED.json").exists() + + +def write_sandbox_return_file(root: str | Path | None, return_id: str, rel_path: str, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + base = _return_root(shell_root, return_id) + target, finding = _safe_return_file_path(shell_root, return_id, rel_path) + if finding or target is None: + result = {"ok": False, "finding": finding} + elif not base.exists(): + result = {"ok": False, "finding": "return_id_not_registered"} + elif _return_is_committed(shell_root, return_id): + result = {"ok": False, "finding": "return_is_committed_immutable"} + elif target.exists(): + result = {"ok": False, "finding": "target_exists_overwrite_false"} + else: + content = packet.get("content") if isinstance(packet.get("content"), Mapping) else {} + if "content_b64" in packet: + data = base64.b64decode(str(packet.get("content_b64") or ""), validate=True) + else: + text = str(packet.get("text") if "text" in packet else content.get("text") or "") + data = text.encode(str(content.get("encoding") or packet.get("encoding") or "utf-8")) + target.parent.mkdir(parents=True, exist_ok=True) + target.write_bytes(data) + rel = _repo_rel(target, shell_root) + result = {"ok": True, "path": rel, "sha256": _sha256_bytes(data), "bytes": len(data)} + status = "completed" if result.get("ok") else "failed" + files = [result["path"]] if result.get("ok") else [] + receipt_path = _write_receipt( + shell_root, + operation="file", + return_id=return_id, + status=status, + result=result, + files_touched=files, + failure_classification=None if result.get("ok") else "POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + if result.get("ok"): + _upsert_queue_item(shell_root, return_id, {"status": "RETURN_DRAFT_WRITTEN", "latest_receipt_path": receipt_path}) + return { + "schema_id": "ion.chatgpt_sandbox_return_file_result.v1", + "verdict": READY_VERDICT if result.get("ok") else BLOCKED_VERDICT, + "receipt_path": receipt_path, + **result, + "production_authority": False, + "live_execution_authority": False, + } + + +def commit_sandbox_return(root: str | Path | None, return_id: str) -> dict[str, Any]: + shell_root = _resolve_root(root) + base = _return_root(shell_root, return_id) + findings: list[str] = [] + if not base.exists(): + findings.append("return_id_not_registered") + if _return_is_committed(shell_root, return_id): + findings.append("return_already_committed") + manifest_path = base / "SANDBOX_RETURN_MANIFEST.json" + summary_path = base / "SUMMARY.md" + if not manifest_path.exists(): + findings.append("manifest_missing") + if not summary_path.exists(): + findings.append("summary_missing") + manifest = _read_json(manifest_path) or {} + validation = validate_sandbox_return_manifest(manifest) if manifest else {"accepted": False, "findings": ["manifest_missing"], "warnings": []} + if not validation.get("accepted"): + findings.extend([f"manifest:{finding}" for finding in validation.get("findings", [])]) + if findings: + result = {"ok": False, "return_id": return_id, "findings": findings} + receipt_path = _write_receipt( + shell_root, + operation="commit", + return_id=return_id, + status="failed", + result=result, + failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + return {"schema_id": "ion.chatgpt_sandbox_return_commit_result.v1", "ok": False, "verdict": BLOCKED_VERDICT, "receipt_path": receipt_path, **result} + files = sorted(path for path in base.rglob("*") if path.is_file()) + file_refs = [ + { + "path": _repo_rel(path, shell_root), + "sha256": _sha256_file(path), + "bytes": path.stat().st_size, + } + for path in files + ] + commit_marker = base / "RETURN_COMMITTED.json" + commit_payload = { + "schema_id": "ion.chatgpt_sandbox_return_commit.v1", + "return_id": return_id, + "committed_at": _now(), + "status": "RETURN_COMMITTED_FOR_REVIEW", + "file_count": len(file_refs), + "files": file_refs, + "production_authority": False, + "live_execution_authority": False, + "direct_apply_authority": False, + "git_push_authority": False, + } + _write_json(commit_marker, commit_payload) + marker_rel = _repo_rel(commit_marker, shell_root) + result = { + "ok": True, + "return_id": return_id, + "status": "RETURN_COMMITTED_FOR_REVIEW", + "return_root": _repo_rel(base, shell_root), + "commit_marker_path": marker_rel, + "file_count": len(file_refs), + "patch_path": _repo_rel(base / "PATCH.diff", shell_root) if (base / "PATCH.diff").exists() else None, + } + receipt_path = _write_receipt(shell_root, operation="commit", return_id=return_id, status="completed", result=result, files_touched=[marker_rel]) + _upsert_queue_item(shell_root, return_id, {**result, "latest_receipt_path": receipt_path}) + return {"schema_id": "ion.chatgpt_sandbox_return_commit_result.v1", "verdict": READY_VERDICT, "receipt_path": receipt_path, **result} + + +def _patch_changed_paths(patch_text: str) -> list[str]: + paths: list[str] = [] + for line in patch_text.splitlines(): + if line.startswith("+++ b/"): + rel = line[len("+++ b/"):].strip() + if rel != "/dev/null" and rel not in paths: + paths.append(rel) + return paths + + +def _run_git_apply(root: Path, patch_path: Path, arg: str) -> dict[str, Any]: + try: + completed = subprocess.run( + ["git", "apply", arg, patch_path.as_posix()], + cwd=root, + check=False, + capture_output=True, + text=True, + timeout=15, + ) + return { + "available": True, + "returncode": completed.returncode, + "stdout": completed.stdout[-4000:], + "stderr": completed.stderr[-4000:], + } + except Exception as exc: # pragma: no cover - depends on host git + return {"available": False, "error": str(exc)} + + +def build_sandbox_return_diff_preview(root: str | Path | None, return_id: str) -> dict[str, Any]: + shell_root = _resolve_root(root) + base = _return_root(shell_root, return_id) + patch_path = base / "PATCH.diff" + if not patch_path.exists(): + result = {"ok": False, "return_id": return_id, "finding": "patch_diff_missing"} + receipt_path = _write_receipt(shell_root, operation="diff_preview", return_id=return_id, status="failed", result=result, failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED") + return {"schema_id": "ion.chatgpt_sandbox_return_diff_preview_result.v1", "verdict": BLOCKED_VERDICT, "receipt_path": receipt_path, **result} + patch_text = patch_path.read_text(encoding="utf-8", errors="replace") + changed_paths = _patch_changed_paths(patch_text) + blocked_findings = [f"changed_path_{finding}:{rel}" for rel in changed_paths if (finding := _validate_repo_rel_value(rel))] + check = _run_git_apply(shell_root, patch_path, "--check") + stat = _run_git_apply(shell_root, patch_path, "--stat") + preview = { + "schema_id": "ion.chatgpt_sandbox_return_diff_preview.v1", + "return_id": return_id, + "created_at": _now(), + "patch_path": _repo_rel(patch_path, shell_root), + "changed_paths": changed_paths, + "changed_path_count": len(changed_paths), + "line_count": len(patch_text.splitlines()), + "git_apply_check": check, + "git_apply_stat": stat, + "blocked_findings": blocked_findings, + "direct_apply_performed": False, + "production_authority": False, + "live_execution_authority": False, + "direct_apply_authority": False, + "git_push_authority": False, + } + preview_path = base / "DIFF_PREVIEW.json" + _write_json(preview_path, preview) + result = { + "ok": not blocked_findings, + "return_id": return_id, + "preview_path": _repo_rel(preview_path, shell_root), + "changed_paths": changed_paths, + "blocked_findings": blocked_findings, + "git_apply_check_returncode": check.get("returncode"), + "direct_apply_performed": False, + } + receipt_path = _write_receipt( + shell_root, + operation="diff_preview", + return_id=return_id, + status="completed" if result["ok"] else "failed", + result=result, + files_touched=[_repo_rel(preview_path, shell_root)], + failure_classification=None if result["ok"] else "POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + _upsert_queue_item(shell_root, return_id, {"status": "DIFF_PREVIEW_READY", "latest_receipt_path": receipt_path, **result}) + return {"schema_id": "ion.chatgpt_sandbox_return_diff_preview_result.v1", "verdict": READY_VERDICT if result["ok"] else BLOCKED_VERDICT, "receipt_path": receipt_path, **result} + + +def queue_sandbox_return_codex_review(root: str | Path | None, return_id: str) -> dict[str, Any]: + shell_root = _resolve_root(root) + base = _return_root(shell_root, return_id) + if not _return_is_committed(shell_root, return_id): + result = {"ok": False, "return_id": return_id, "finding": "return_not_committed_for_review"} + receipt_path = _write_receipt(shell_root, operation="queue_review", return_id=return_id, status="failed", result=result, failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED") + return {"schema_id": "ion.chatgpt_sandbox_return_queue_review_result.v1", "verdict": BLOCKED_VERDICT, "receipt_path": receipt_path, **result} + manifest = _read_json(base / "SANDBOX_RETURN_MANIFEST.json") or {} + patch_rel = _repo_rel(base / "PATCH.diff", shell_root) if (base / "PATCH.diff").exists() else None + objective = "\n".join( + [ + f"Review ChatGPT sandbox return {return_id}.", + "Treat sandbox output as inbox evidence, not accepted state.", + f"Manifest: {_repo_rel(base / 'SANDBOX_RETURN_MANIFEST.json', shell_root)}", + f"Summary: {_repo_rel(base / 'SUMMARY.md', shell_root)}", + f"Patch: {patch_rel or 'none'}", + f"Changed paths: {json.dumps(manifest.get('changed_paths') or [])}", + "Check manifest/source snapshot/path authority. Do not apply to live source.", + "If applying for review, use a temporary review root. Run focused tests and return CONTEXT PROOF, TEMPLATE ACTION PROOF, VALIDATION, and RESULT.", + ] + ) + from .ion_chatgpt_browser_mcp_connector_contract import call_chatgpt_connector_tool + + connector = call_chatgpt_connector_tool( + shell_root, + "ion_request_codex_work_packet", + { + "objective": objective, + "confirmation": "ION_BOUNDED_WRITE_CONFIRMED", + }, + ) + ok = bool(connector.get("ok")) + data = connector.get("data") if isinstance(connector.get("data"), Mapping) else {} + result = { + "ok": ok, + "return_id": return_id, + "connector_result": connector, + "request_id": data.get("request_id"), + "packet_path": data.get("packet_path"), + } + receipt_path = _write_receipt( + shell_root, + operation="queue_review", + return_id=return_id, + status="completed" if ok else "failed", + result=result, + files_touched=[str(data.get("packet_path"))] if data.get("packet_path") else [], + failure_classification=None if ok else "ION_PACKET_WRITE_FAILURE", + ) + if ok: + _upsert_queue_item(shell_root, return_id, {"status": "CODEX_REVIEW_QUEUED", "latest_receipt_path": receipt_path, "codex_review_packet_path": data.get("packet_path"), "codex_review_request_id": data.get("request_id")}) + return {"schema_id": "ion.chatgpt_sandbox_return_queue_review_result.v1", "verdict": READY_VERDICT if ok else BLOCKED_VERDICT, "receipt_path": receipt_path, **result} + + +def build_sandbox_return_queue_projection(root: str | Path | None = None) -> dict[str, Any]: + shell_root = _resolve_root(root) + queue = _load_queue(shell_root) + known = {item.get("return_id"): dict(item) for item in queue.get("returns", []) if isinstance(item, Mapping) and item.get("return_id")} + inbox = shell_root / INBOX_ROOT + if inbox.exists(): + for path in sorted([p for p in inbox.iterdir() if p.is_dir()]): + return_id = path.name + known.setdefault( + return_id, + { + "return_id": return_id, + "status": "RETURN_DRAFT_WRITTEN", + "return_root": _repo_rel(path, shell_root), + }, + ) + records: list[dict[str, Any]] = [] + for return_id, item in sorted(known.items(), key=lambda pair: str(pair[1].get("updated_at") or pair[1].get("created_at") or ""), reverse=True): + base = _return_root(shell_root, str(return_id)) + manifest = _read_json(base / "SANDBOX_RETURN_MANIFEST.json") or {} + changed_paths = manifest.get("changed_paths") if isinstance(manifest.get("changed_paths"), list) else [] + records.append( + { + **item, + "return_id": return_id, + "return_root": _repo_rel(base, shell_root) if base.exists() else item.get("return_root"), + "manifest_path": _repo_rel(base / "SANDBOX_RETURN_MANIFEST.json", shell_root) if (base / "SANDBOX_RETURN_MANIFEST.json").exists() else item.get("manifest_path"), + "summary_path": _repo_rel(base / "SUMMARY.md", shell_root) if (base / "SUMMARY.md").exists() else item.get("summary_path"), + "patch_path": _repo_rel(base / "PATCH.diff", shell_root) if (base / "PATCH.diff").exists() else item.get("patch_path"), + "diff_preview_path": _repo_rel(base / "DIFF_PREVIEW.json", shell_root) if (base / "DIFF_PREVIEW.json").exists() else item.get("preview_path"), + "committed": _return_is_committed(shell_root, str(return_id)), + "changed_path_count": len(changed_paths), + "changed_paths": changed_paths[:20], + } + ) + return { + "schema_id": "ion.chatgpt_sandbox_return_queue_projection.v1", + "ok": True, + "verdict": READY_VERDICT, + "queue_path": ACTIVE_QUEUE_PATH.as_posix(), + "inbox_root": INBOX_ROOT.as_posix(), + "return_count": len(records), + "returns": records, + "production_authority": False, + "live_execution_authority": False, + "direct_apply_authority": False, + "git_push_authority": False, + } + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="ION ChatGPT sandbox return intake.") + parser.add_argument("--ion-root", default=".") + parser.add_argument("--list", action="store_true") + parser.add_argument("--register-json", default=None) + parser.add_argument("--return-id", default=None) + parser.add_argument("--commit", action="store_true") + parser.add_argument("--diff-preview", action="store_true") + parser.add_argument("--queue-review", action="store_true") + parser.add_argument("--json", action="store_true") + args = parser.parse_args(argv) + + if args.register_json: + packet = json.loads(Path(args.register_json).read_text(encoding="utf-8")) + result = register_sandbox_return(args.ion_root, packet) + elif args.commit: + result = commit_sandbox_return(args.ion_root, str(args.return_id or "")) + elif args.diff_preview: + result = build_sandbox_return_diff_preview(args.ion_root, str(args.return_id or "")) + elif args.queue_review: + result = queue_sandbox_return_codex_review(args.ion_root, str(args.return_id or "")) + else: + result = build_sandbox_return_queue_projection(args.ion_root) + print(json.dumps(result, indent=2, sort_keys=True) if args.json or args.list else result.get("verdict")) + return 0 if result.get("ok", True) else 1 + + +if __name__ == "__main__": # pragma: no cover + raise SystemExit(main()) diff --git a/ION/04_packages/kernel/ion_chatops_bridge.py b/ION/04_packages/kernel/ion_chatops_bridge.py index bb0bc779..e8e43dd7 100644 --- a/ION/04_packages/kernel/ion_chatops_bridge.py +++ b/ION/04_packages/kernel/ion_chatops_bridge.py @@ -20,6 +20,14 @@ from .ion_carrier_onboard import resolve_shell_root_from_ion_root from .ion_carrier_onboarding_packet import build_carrier_onboarding_packet from .ion_chatgpt_browser_mcp_connector_contract import call_chatgpt_connector_tool +from .ion_chatgpt_sandbox_return_intake import ( + build_sandbox_return_diff_preview, + build_sandbox_return_queue_projection, + commit_sandbox_return, + queue_sandbox_return_codex_review, + register_sandbox_return, + write_sandbox_return_file, +) from .ion_codex_queue_runner import ( build_codex_queue_runner_status, prepare_codex_queue_run, @@ -53,6 +61,9 @@ "extension_policy": "ION/03_registry/ion_chatops_extension_policy.yaml", "daemon_policy": "ION/03_registry/ion_chatops_local_daemon_policy.yaml", "github_data_plane_registry": "ION/03_registry/ion_github_data_plane_registry.yaml", + "sandbox_return_protocol": "ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md", + "sandbox_return_schema": "ION/03_registry/ion_chatgpt_sandbox_return.schema.json", + "sandbox_return_intake": "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py", "connector_contract": "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py", "codex_queue_runner": "ION/04_packages/kernel/ion_codex_queue_runner.py", "lifecycle_packager": "ION/04_packages/kernel/ion_lifecycle_packager.py", @@ -867,6 +878,7 @@ def build_chatops_context_pack(root: str | Path | None = None) -> dict[str, Any] sev_context = build_sev_context_brief(shell_root) agent_status = build_chatops_agent_status(shell_root) agent_queue = build_chatops_agent_queue(shell_root) + sandbox_returns = build_sandbox_return_queue_projection(shell_root) latest_receipts = _latest_chatops_files(shell_root, RECEIPTS_DIR, limit=8) pack = { "schema": "ion.chatops.context_pack.v1", @@ -887,6 +899,12 @@ def build_chatops_context_pack(root: str | Path | None = None) -> dict[str, Any] "request_count": agent_queue.get("request_count"), "requests": agent_queue.get("requests"), }, + "sandbox_returns": { + "queue_path": sandbox_returns.get("queue_path"), + "inbox_root": sandbox_returns.get("inbox_root"), + "return_count": sandbox_returns.get("return_count"), + "returns": sandbox_returns.get("returns"), + }, "latest_chatops_receipts": latest_receipts, "bridge_tools": { "onboard": "GET /context/sev/onboarding", @@ -895,6 +913,9 @@ def build_chatops_context_pack(root: str | Path | None = None) -> dict[str, Any] "agent_prepare_next": "POST /agent/prepare-next with Braden approval", "agent_start_one": "POST /agent/process-one with start=true and Braden approval", "compact_zip": "POST /exports/lifecycle-zip with package_class=COMPACT_RUNTIME and Braden approval", + "sandbox_returns": "GET /sandbox/returns", + "sandbox_diff_preview": "POST /sandbox/returns/diff-preview with Braden approval", + "sandbox_queue_review": "POST /sandbox/returns/queue-review with Braden approval", }, "authority": { "production_authority": False, @@ -1046,6 +1067,101 @@ def create_chatops_safe_full_zip(root: str | Path | None, packet: Mapping[str, A return {"schema_id": "ion.chatops.export_result.v1", "ok": False, "finding": "package_failed", "error": str(exc), "receipt_path": receipt_path} +def _sandbox_approval_or_reject(root: Path, packet: Mapping[str, Any], operation: str) -> dict[str, Any] | None: + approval = _validate_bridge_operation_approval(packet) + if approval["accepted"]: + return None + receipt_path = _write_operation_receipt( + root, + operation=operation, + status="rejected", + packet=packet, + result=approval, + failure_classification="USER_APPROVAL_REJECTED", + ) + return { + "schema_id": "ion.chatops.sandbox_return_operation_result.v1", + "ok": False, + "finding": "approval_failed", + "approval": approval, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + } + + +def _sandbox_return_detail(root: Path, return_id: str) -> dict[str, Any]: + projection = build_sandbox_return_queue_projection(root) + rows = [row for row in projection.get("returns", []) if isinstance(row, Mapping) and row.get("return_id") == return_id] + if not rows: + return { + "schema_id": "ion.chatops.sandbox_return_detail.v1", + "ok": False, + "finding": "return_not_found", + "return_id": return_id, + "production_authority": False, + "live_execution_authority": False, + } + base = root / "ION/05_context/inbox/chatgpt_sandbox_returns" / return_id + manifest = _read_json(base / "SANDBOX_RETURN_MANIFEST.json") or {} + diff_preview = _read_json(base / "DIFF_PREVIEW.json") or {} + summary = "" + if (base / "SUMMARY.md").exists(): + summary = (base / "SUMMARY.md").read_text(encoding="utf-8", errors="replace")[:4000] + return { + "schema_id": "ion.chatops.sandbox_return_detail.v1", + "ok": True, + "return": rows[0], + "manifest": manifest, + "summary": summary, + "diff_preview": diff_preview, + "production_authority": False, + "live_execution_authority": False, + } + + +def register_chatops_sandbox_return(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + rejected = _sandbox_approval_or_reject(shell_root, packet, "sandbox_return_register") + if rejected: + return rejected + return register_sandbox_return(shell_root, packet) + + +def write_chatops_sandbox_return_file(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + rejected = _sandbox_approval_or_reject(shell_root, packet, "sandbox_return_file") + if rejected: + return rejected + return_id = str(packet.get("return_id") or "").strip() + rel_path = str(packet.get("path") or packet.get("rel_path") or "").strip() + return write_sandbox_return_file(shell_root, return_id, rel_path, packet) + + +def commit_chatops_sandbox_return(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + rejected = _sandbox_approval_or_reject(shell_root, packet, "sandbox_return_commit") + if rejected: + return rejected + return commit_sandbox_return(shell_root, str(packet.get("return_id") or "").strip()) + + +def preview_chatops_sandbox_return_diff(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + rejected = _sandbox_approval_or_reject(shell_root, packet, "sandbox_return_diff_preview") + if rejected: + return rejected + return build_sandbox_return_diff_preview(shell_root, str(packet.get("return_id") or "").strip()) + + +def queue_chatops_sandbox_return_review(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + rejected = _sandbox_approval_or_reject(shell_root, packet, "sandbox_return_queue_review") + if rejected: + return rejected + return queue_sandbox_return_codex_review(shell_root, str(packet.get("return_id") or "").strip()) + + def build_chatops_policy(root: str | Path | None = None) -> dict[str, Any]: shell_root = _resolve_root(root) owner_paths = { @@ -1084,6 +1200,19 @@ def build_chatops_policy(root: str | Path | None = None) -> dict[str, Any]: "ION/04_packages/kernel/ion_safe_full_project_packager.py", ], }, + "sandbox_return_surface": { + "queue": "GET /sandbox/returns", + "detail": "GET /sandbox/returns/{return_id}", + "register": "POST /sandbox/returns/register", + "file": "POST /sandbox/returns/file", + "commit": "POST /sandbox/returns/commit", + "diff_preview": "POST /sandbox/returns/diff-preview", + "queue_review": "POST /sandbox/returns/queue-review", + "inbox_root": "ION/05_context/inbox/chatgpt_sandbox_returns/", + "owner": "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py", + "direct_apply_authority": False, + "git_push_authority": False, + }, "main_policy": { "main_auto_push_allowed": False, "scoped_branch_push_allowed": "policy_gated_later", @@ -1297,6 +1426,14 @@ def do_GET(self) -> None: # noqa: N802 - stdlib handler name if path == "/exports/context-pack": _http_response(self, 200, build_chatops_context_pack(root)) return + if path == "/sandbox/returns": + _http_response(self, 200, build_sandbox_return_queue_projection(root)) + return + if path.startswith("/sandbox/returns/"): + return_id = path.rsplit("/", 1)[-1] + payload = _sandbox_return_detail(root, return_id) + _http_response(self, 200 if payload.get("ok") else 404, payload) + return if path.startswith("/actions/"): action_id = path.rsplit("/", 1)[-1] payload = _read_json(_action_path(root, action_id)) @@ -1344,6 +1481,26 @@ def do_POST(self) -> None: # noqa: N802 - stdlib handler name result = create_chatops_safe_full_zip(root, packet) _http_response(self, 200 if result.get("ok") else 409, result) return + if path == "/sandbox/returns/register": + result = register_chatops_sandbox_return(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return + if path == "/sandbox/returns/file": + result = write_chatops_sandbox_return_file(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return + if path == "/sandbox/returns/commit": + result = commit_chatops_sandbox_return(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return + if path == "/sandbox/returns/diff-preview": + result = preview_chatops_sandbox_return_diff(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return + if path == "/sandbox/returns/queue-review": + result = queue_chatops_sandbox_return_review(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return _http_response(self, 404, {"ok": False, "finding": "not_found"}) return ChatOpsHandler diff --git a/ION/04_packages/kernel/ion_cockpit_view_model.py b/ION/04_packages/kernel/ion_cockpit_view_model.py index f196dafd..e7c7d920 100644 --- a/ION/04_packages/kernel/ion_cockpit_view_model.py +++ b/ION/04_packages/kernel/ion_cockpit_view_model.py @@ -16,6 +16,7 @@ from typing import Any, Iterable from .ion_agent_invocation_broker import build_agent_broker_status +from .ion_chatgpt_sandbox_return_intake import build_sandbox_return_queue_projection from .ion_codex_queue_runner import build_codex_queue_runner_status CURRENT = Path("ION/05_context/current") @@ -411,6 +412,27 @@ def _chatgpt_browser_mcp_summary(root: Path) -> dict[str, Any]: } +def _chatgpt_sandbox_returns_summary(root: Path) -> dict[str, Any]: + projection = build_sandbox_return_queue_projection(root) + returns = [row for row in listify(projection.get("returns")) if isinstance(row, dict)] + status_counts: dict[str, int] = {} + for row in returns: + status = compact(row.get("status"), "unknown") + status_counts[status] = status_counts.get(status, 0) + 1 + return { + "schema_id": "ion.chatgpt_sandbox_returns_cockpit_summary.v1", + "queue_path": projection.get("queue_path"), + "inbox_root": projection.get("inbox_root"), + "return_count": projection.get("return_count"), + "status_counts": status_counts, + "latest_returns": returns[:10], + "direct_apply_authority": False, + "git_push_authority": False, + "production_authority": False, + "live_execution_authority": False, + } + + def build_cockpit_view_model(ion_root: str | Path = ".") -> dict[str, Any]: root = Path(ion_root).resolve() active_files = dict(ACTIVE_FILES) @@ -432,6 +454,7 @@ def build_cockpit_view_model(ion_root: str | Path = ".") -> dict[str, Any]: active_spawn_count = _active_spawn_queue_count(data["turn"], spawn_rows) plan_spawn_count = _spawn_count(spawn_rows) deferred_spawn_count = _deferred_spawn_count(spawn_rows) + sandbox_returns = _chatgpt_sandbox_returns_summary(root) counts = { "spawn_rows": len(spawn_rows), "spawn_true": active_spawn_count, @@ -468,6 +491,7 @@ def build_cockpit_view_model(ion_root: str | Path = ".") -> dict[str, Any]: "return_counts": return_counts, "steward_queue_count": len(steward_items), "operator_queue_pending": len(pending_operator), + "sandbox_return_count": sandbox_returns.get("return_count", 0), }, "queues": { "operator_messages": operator_items, @@ -483,6 +507,7 @@ def build_cockpit_view_model(ion_root: str | Path = ".") -> dict[str, Any]: "safe_full_project_package": data["safe_full_project_package"], "v72_mcp_donor_reconciliation": data["v72_mcp_donor_reconciliation"], "chatgpt_browser_mcp": _chatgpt_browser_mcp_summary(root), + "chatgpt_sandbox_returns": sandbox_returns, "receipts": recent_receipts(root), "authority_classes": [ "ACTIVE_RUNTIME_AUTHORITY", diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 7bed7805..c16cf851 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -12,11 +12,14 @@ MVP behavior: - show Rescan and Onboard controls in the toolbar; - fetch a compact Sev carrier onboarding/context brief from the local daemon and paste it into ChatGPT; -- expand downward into tabbed Status, Action, Agent, Packages, Diagnostics, and Log views; +- expand downward into tabbed Status, Action, Agent, Packages, Sandbox, + Diagnostics, and Log views; - show Codex queue runner status/queue and approval-gated prepare/start controls backed by `kernel.ion_codex_queue_runner`; - request pasteable context packs and approval-gated package ZIPs backed by the existing lifecycle and safe full-project packagers; +- list ChatGPT sandbox returns and request approval-gated diff preview or + Codex review queueing through the sandbox return intake owner; - show an approval modal for Braden; - insert a known-good Sev re-entry prompt into the ChatGPT composer; - keep fabricated smoke/Codex work-packet actions under Diagnostics as local bridge tests; @@ -92,3 +95,10 @@ The Packages tab is for moving context into ChatGPT or another carrier sandbox. `Context Pack` pastes a compact current-state packet into the composer. `Compact ZIP` and `Safe Full ZIP` create local package artifacts through the existing ION packagers and copy the resulting path, sha256, and receipt summary. + +The Sandbox tab projects returns under +`ION/05_context/inbox/chatgpt_sandbox_returns/`. `Returns` is a read-only queue +projection. `Diff Preview` runs the bounded preview/check path for the latest +return after Braden approval. `Queue Review` creates a focused Codex review +packet after Braden approval. None of these controls apply patches to live +source. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js index b0a848d1..90507c5c 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js @@ -95,6 +95,48 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_sandbox_returns") { + (async () => { + const result = await getJson("/sandbox/returns"); + sendResponse({ ok: Boolean(result?.ok), stage: "sandbox_returns", result }); + })().catch((error) => { + sendResponse({ ok: false, stage: "sandbox_returns_exception", error: error.message }); + }); + return true; + } + + if (message.type === "ion_chatops_sandbox_diff_latest") { + (async () => { + const returnId = String(message.payload?.return_id ?? "").trim(); + const approved = await requestBridgeApproval(sender, "sandbox_return_diff_preview", `Build a read-only diff preview for sandbox return ${returnId}.`); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED" }); + return; + } + const result = await postJson("/sandbox/returns/diff-preview", approvedPayload({ return_id: returnId })); + sendResponse({ ok: Boolean(result?.ok), stage: "sandbox_diff_preview", result }); + })().catch((error) => { + sendResponse({ ok: false, stage: "sandbox_diff_preview_exception", error: error.message }); + }); + return true; + } + + if (message.type === "ion_chatops_sandbox_queue_latest") { + (async () => { + const returnId = String(message.payload?.return_id ?? "").trim(); + const approved = await requestBridgeApproval(sender, "sandbox_return_queue_review", `Queue a bounded Codex review packet for sandbox return ${returnId}.`); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED" }); + return; + } + const result = await postJson("/sandbox/returns/queue-review", approvedPayload({ return_id: returnId })); + sendResponse({ ok: Boolean(result?.ok), stage: "sandbox_queue_review", result }); + })().catch((error) => { + sendResponse({ ok: false, stage: "sandbox_queue_review_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_agent_prepare_next") { (async () => { const approved = await requestBridgeApproval(sender, "agent_prepare_next", "Create a prepared Codex queue run packet for the next queued ION work request."); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts index 0fb72db5..19accbf4 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts @@ -97,6 +97,48 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_sandbox_returns") { + (async () => { + const result = await getJson("/sandbox/returns"); + sendResponse({ ok: Boolean(result?.ok), stage: "sandbox_returns", result }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "sandbox_returns_exception", error: error.message }); + }); + return true; + } + + if (message.type === "ion_chatops_sandbox_diff_latest") { + (async () => { + const returnId = String(message.payload?.return_id ?? "").trim(); + const approved = await requestBridgeApproval(sender, "sandbox_return_diff_preview", `Build a read-only diff preview for sandbox return ${returnId}.`); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED" }); + return; + } + const result = await postJson("/sandbox/returns/diff-preview", approvedPayload({ return_id: returnId })); + sendResponse({ ok: Boolean(result?.ok), stage: "sandbox_diff_preview", result }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "sandbox_diff_preview_exception", error: error.message }); + }); + return true; + } + + if (message.type === "ion_chatops_sandbox_queue_latest") { + (async () => { + const returnId = String(message.payload?.return_id ?? "").trim(); + const approved = await requestBridgeApproval(sender, "sandbox_return_queue_review", `Queue a bounded Codex review packet for sandbox return ${returnId}.`); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED" }); + return; + } + const result = await postJson("/sandbox/returns/queue-review", approvedPayload({ return_id: returnId })); + sendResponse({ ok: Boolean(result?.ok), stage: "sandbox_queue_review", result }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "sandbox_queue_review_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_agent_prepare_next") { (async () => { const approved = await requestBridgeApproval(sender, "agent_prepare_next", "Create a prepared Codex queue run packet for the next queued ION work request."); diff --git a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md index 48f71a7a..7d6e84c9 100644 --- a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md +++ b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md @@ -21,8 +21,21 @@ POST /actions/validate POST /actions/submit GET /actions/{action_id} GET /receipts/{receipt_id} +GET /sandbox/returns +GET /sandbox/returns/{return_id} +POST /sandbox/returns/register +POST /sandbox/returns/file +POST /sandbox/returns/commit +POST /sandbox/returns/diff-preview +POST /sandbox/returns/queue-review ``` The daemon does not expose shell, delete, credential access, production deploy, or git push. It writes receipts under `ION/05_context/current/chatops_bridge/receipts/`. + +The sandbox return endpoints land review material only under +`ION/05_context/inbox/chatgpt_sandbox_returns/` and use +`ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py`. They do not apply +patches to live source; `queue-review` only creates a bounded Codex review work +packet. diff --git a/ION/tests/test_kernel_ion_chatgpt_sandbox_return_intake.py b/ION/tests/test_kernel_ion_chatgpt_sandbox_return_intake.py new file mode 100644 index 00000000..3a12bea4 --- /dev/null +++ b/ION/tests/test_kernel_ion_chatgpt_sandbox_return_intake.py @@ -0,0 +1,184 @@ +import json +from pathlib import Path + +from kernel.ion_chatgpt_sandbox_return_intake import ( + ACTIVE_QUEUE_PATH, + BLOCKED_VERDICT, + INBOX_ROOT, + READY_VERDICT, + build_sandbox_return_diff_preview, + build_sandbox_return_queue_projection, + commit_sandbox_return, + queue_sandbox_return_codex_review, + register_sandbox_return, + validate_sandbox_return_manifest, + write_sandbox_return_file, +) +from kernel.ion_chatops_bridge import APPROVAL_TOKEN, register_chatops_sandbox_return + + +RETURN_ID = "sev-20260505-041500-chatops-ui-return" + + +def _seed_root(root: Path) -> None: + (root / "pyproject.toml").write_text("[project]\nname = \"ion-sandbox-return-test\"\n", encoding="utf-8") + (root / "ION/REPO_AUTHORITY.md").parent.mkdir(parents=True, exist_ok=True) + (root / "ION/REPO_AUTHORITY.md").write_text("# authority\n", encoding="utf-8") + + +def _packet(return_id: str = RETURN_ID) -> dict: + return { + "return_id": return_id, + "summary_text": "# Sandbox Return\n\nReview this patch only as inbox evidence.", + "source_snapshot": { + "package_path_seen_by_chatgpt": "ION_CODEX_7.zip", + "package_sha256": "unknown-unless-provided-or-computed", + "archive_root_confirmed": True, + "expected_root_markers": ["pyproject.toml", "ION/REPO_AUTHORITY.md"], + }, + "changed_paths": ["ION/09_integrations/browser_extension/ion_chatops_bridge/README.md"], + "sandbox_validation": { + "commands_run": [], + "passed": None, + "limitations": ["sandbox only"], + }, + } + + +def _approved(packet: dict) -> dict: + return { + **packet, + "approval": { + "approved": True, + "approved_by": "Braden", + "approval_token": APPROVAL_TOKEN, + }, + } + + +def _patch_text() -> str: + return "\n".join( + [ + "diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md", + "--- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md", + "+++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md", + "@@ -1,3 +1,4 @@", + " # ION ChatOps Bridge Extension", + "+", + "+Sandbox return test line.", + "", + ] + ) + + +def test_sandbox_return_manifest_validation_requires_false_authority_values(): + manifest = { + "schema_id": "ion.chatgpt_sandbox_return.v1", + "return_id": RETURN_ID, + "created_at": "2026-05-05T04:15:00Z", + "authoring_carrier": {"callsign": "Sev", "carrier": "chatgpt_browser", "sandbox": True}, + "human_sovereign": "Braden", + "source_snapshot": { + "archive_root_confirmed": True, + "expected_root_markers": ["pyproject.toml", "ION/REPO_AUTHORITY.md"], + }, + "base_assumptions": { + "production_authority": False, + "live_execution_authority": True, + "direct_apply_authority": False, + "git_push_authority": False, + }, + "changed_paths": [], + "sandbox_validation": {}, + "receipts_requested": ["sandbox_return_intake_receipt"], + } + + result = validate_sandbox_return_manifest(manifest) + + assert result["accepted"] is False + assert "live_execution_authority_must_be_false" in result["findings"] + + +def test_register_sandbox_return_writes_manifest_summary_queue_and_receipt(tmp_path): + _seed_root(tmp_path) + + result = register_sandbox_return(tmp_path, _packet()) + + assert result["ok"] is True + assert result["verdict"] == READY_VERDICT + return_root = tmp_path / INBOX_ROOT / RETURN_ID + assert (return_root / "SANDBOX_RETURN_MANIFEST.json").exists() + assert (return_root / "SUMMARY.md").exists() + assert (tmp_path / ACTIVE_QUEUE_PATH).exists() + queue = json.loads((tmp_path / ACTIVE_QUEUE_PATH).read_text(encoding="utf-8")) + assert queue["return_count"] == 1 + assert queue["returns"][0]["status"] == "RETURN_DRAFT_WRITTEN" + assert (tmp_path / result["receipt_path"]).exists() + + +def test_register_blocks_duplicate_return_id(tmp_path): + _seed_root(tmp_path) + assert register_sandbox_return(tmp_path, _packet())["ok"] is True + + result = register_sandbox_return(tmp_path, _packet()) + + assert result["ok"] is False + assert result["verdict"] == BLOCKED_VERDICT + assert "return_id_already_exists" in result["validation"]["findings"] + + +def test_sandbox_return_file_commit_diff_preview_and_queue_review(tmp_path): + _seed_root(tmp_path) + register_sandbox_return(tmp_path, _packet()) + + file_result = write_sandbox_return_file( + tmp_path, + RETURN_ID, + "PATCH.diff", + {"content": {"encoding": "utf-8", "text": _patch_text()}}, + ) + commit_result = commit_sandbox_return(tmp_path, RETURN_ID) + after_commit_write = write_sandbox_return_file( + tmp_path, + RETURN_ID, + "LATE.md", + {"text": "blocked"}, + ) + preview_result = build_sandbox_return_diff_preview(tmp_path, RETURN_ID) + review_result = queue_sandbox_return_codex_review(tmp_path, RETURN_ID) + projection = build_sandbox_return_queue_projection(tmp_path) + + assert file_result["ok"] is True + assert commit_result["ok"] is True + assert commit_result["status"] == "RETURN_COMMITTED_FOR_REVIEW" + assert after_commit_write["ok"] is False + assert after_commit_write["finding"] == "return_is_committed_immutable" + assert preview_result["ok"] is True + assert preview_result["direct_apply_performed"] is False + assert preview_result["changed_paths"] == ["ION/09_integrations/browser_extension/ion_chatops_bridge/README.md"] + assert review_result["ok"] is True + assert review_result["packet_path"].startswith("ION/05_context/current/chatgpt_connector/codex_work_requests/") + latest = projection["returns"][0] + assert latest["status"] == "CODEX_REVIEW_QUEUED" + assert latest["committed"] is True + + +def test_sandbox_return_file_blocks_path_escape(tmp_path): + _seed_root(tmp_path) + register_sandbox_return(tmp_path, _packet()) + + result = write_sandbox_return_file(tmp_path, RETURN_ID, "../PATCH.diff", {"text": "escape"}) + + assert result["ok"] is False + assert result["finding"] == "path_escape" + + +def test_chatops_sandbox_register_requires_braden_approval(tmp_path): + _seed_root(tmp_path) + + blocked = register_chatops_sandbox_return(tmp_path, _packet("sev-20260505-041501-no-approval")) + accepted = register_chatops_sandbox_return(tmp_path, _approved(_packet("sev-20260505-041502-approved"))) + + assert blocked["ok"] is False + assert blocked["finding"] == "approval_failed" + assert accepted["ok"] is True diff --git a/ION/tests/test_kernel_ion_chatops_bridge_policy.py b/ION/tests/test_kernel_ion_chatops_bridge_policy.py index 6a78cad4..fde67a82 100644 --- a/ION/tests/test_kernel_ion_chatops_bridge_policy.py +++ b/ION/tests/test_kernel_ion_chatops_bridge_policy.py @@ -24,14 +24,17 @@ def _seed_root(root: Path) -> None: for rel in [ "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md", "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md", + "ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md", "ION/02_architecture/ION_MOUNT_CONTRACT.md", "ION/03_registry/ion_chatops_action.schema.yaml", "ION/03_registry/ion_chatops_extension_policy.yaml", "ION/03_registry/ion_chatops_local_daemon_policy.yaml", "ION/03_registry/ion_github_data_plane_registry.yaml", + "ION/03_registry/ion_chatgpt_sandbox_return.schema.json", "ION/03_registry/chatgpt_browser_carrier_profile.yaml", "ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md", "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py", + "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py", "ION/04_packages/kernel/ion_codex_queue_runner.py", "ION/04_packages/kernel/ion_lifecycle_packager.py", "ION/04_packages/kernel/ion_safe_full_project_packager.py", @@ -100,6 +103,8 @@ def test_chatops_policy_owner_surfaces_ready(tmp_path): assert "write_file_draft" in result["supported_mvp_intents"] assert result["agent_surface"]["backend_owner"] == "ION/04_packages/kernel/ion_codex_queue_runner.py" assert "compact_runtime_zip" in result["export_surface"] + assert result["sandbox_return_surface"]["owner"] == "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py" + assert result["sandbox_return_surface"]["direct_apply_authority"] is False assert result["main_policy"]["main_auto_push_allowed"] is False assert all(owner["exists"] for owner in result["owner_paths"].values()) @@ -370,6 +375,8 @@ def test_chatops_context_pack_includes_agent_and_package_controls(tmp_path): assert result["pack"]["callsign"] == "Sev" assert result["pack"]["bridge_tools"]["agent_prepare_next"] == "POST /agent/prepare-next with Braden approval" assert result["pack"]["bridge_tools"]["compact_zip"] == "POST /exports/lifecycle-zip with package_class=COMPACT_RUNTIME and Braden approval" + assert result["pack"]["bridge_tools"]["sandbox_returns"] == "GET /sandbox/returns" + assert result["pack"]["sandbox_returns"]["inbox_root"] == "ION/05_context/inbox/chatgpt_sandbox_returns" assert "ION local context pack" in result["prompt"] diff --git a/ION/tests/test_kernel_ion_cockpit_view_model.py b/ION/tests/test_kernel_ion_cockpit_view_model.py index 7102b2ff..7aca3aad 100644 --- a/ION/tests/test_kernel_ion_cockpit_view_model.py +++ b/ION/tests/test_kernel_ion_cockpit_view_model.py @@ -11,6 +11,9 @@ def write_json(root: Path, rel: str, payload: dict): def seed_runtime(root: Path): + (root / "pyproject.toml").write_text("[project]\nname = \"ion-cockpit-test\"\n", encoding="utf-8") + (root / "ION/REPO_AUTHORITY.md").parent.mkdir(parents=True, exist_ok=True) + (root / "ION/REPO_AUTHORITY.md").write_text("# authority\n", encoding="utf-8") current = "ION/05_context/current" write_json(root, f"{current}/ACTIVE_CURSOR_HOOK_STATE.json", {"schema_id": "ion.cursor_hook_state.v1", "status": "ready"}) write_json(root, f"{current}/ACTIVE_WORK_PACKET.json", {"carrier": "cursor", "objective": "test cockpit"}) @@ -58,6 +61,7 @@ def test_build_cockpit_view_model_summarizes_v88_runtime(tmp_path): assert model["top_bar"]["spawn_rows_total"] == 2 assert model["top_bar"]["return_counts"]["accepted"] == 1 assert model["top_bar"]["operator_queue_pending"] == 1 + assert model["top_bar"]["sandbox_return_count"] == 0 assert model["top_bar"]["gate_count"] == 0 assert model["agents"]["spawn_rows"][0]["role"] == "STEWARD" assert model["agents"]["spawn_rows"][0]["return_recorded"] is True @@ -158,3 +162,25 @@ def test_cockpit_projects_chatgpt_browser_callsign(tmp_path): assert summary["project_facing_callsign"] == "Sev" assert summary["callsign_authority"] == "carrier_continuity_label_only_not_ion_authority" assert summary["codex_queue_runner"]["schema_id"] == "ion.codex_queue_runner.v1" + + +def test_cockpit_projects_chatgpt_sandbox_returns(tmp_path): + seed_runtime(tmp_path) + return_root = tmp_path / "ION/05_context/inbox/chatgpt_sandbox_returns/sev-20260505-041500-chatops-ui-return" + return_root.mkdir(parents=True) + (return_root / "SANDBOX_RETURN_MANIFEST.json").write_text( + json.dumps( + { + "schema_id": "ion.chatgpt_sandbox_return.v1", + "return_id": "sev-20260505-041500-chatops-ui-return", + "changed_paths": ["ION/09_integrations/browser_extension/ion_chatops_bridge/README.md"], + } + ), + encoding="utf-8", + ) + + model = build_cockpit_view_model(tmp_path) + + assert model["top_bar"]["sandbox_return_count"] == 1 + assert model["chatgpt_sandbox_returns"]["return_count"] == 1 + assert model["chatgpt_sandbox_returns"]["direct_apply_authority"] is False From 2eaf9842e60ffa678e53b90b6f28e1339cb2a509 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:01:06 -0400 Subject: [PATCH 10/30] Evolve ChatOps browser extension cockpit --- ...54049z_extension_dom_cockpit_registry.json | 51 ++ .../ION_EXT_ARTIFACT_FILE_LANE_PACKET.md | 153 ++++ .../ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md | 132 +++ .../ION_EXT_DOM_ACTION_REGISTRY_PACKET.md | 144 ++++ .../ION_EXT_DOM_COCKPIT_SHELL_PACKET.md | 170 ++++ ...ION_EXT_GUARDED_MACRO_AUTOMATION_PACKET.md | 169 ++++ .../README.md | 25 + .../ion_chatops_bridge/dist/content.js | 763 +++++++++++++++++- .../ion_chatops_bridge/src/approval_ui.ts | 425 +++++++++- .../ion_chatops_bridge/src/content.ts | 364 +++++++++ .../tests/live_smoke_parser_simulation.js | 55 +- 11 files changed, 2366 insertions(+), 85 deletions(-) create mode 100644 ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t154049z_extension_dom_cockpit_registry.json create mode 100644 ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_ARTIFACT_FILE_LANE_PACKET.md create mode 100644 ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md create mode 100644 ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_ACTION_REGISTRY_PACKET.md create mode 100644 ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_COCKPIT_SHELL_PACKET.md create mode 100644 ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_GUARDED_MACRO_AUTOMATION_PACKET.md create mode 100644 ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/README.md diff --git a/ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t154049z_extension_dom_cockpit_registry.json b/ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t154049z_extension_dom_cockpit_registry.json new file mode 100644 index 00000000..5000eee1 --- /dev/null +++ b/ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t154049z_extension_dom_cockpit_registry.json @@ -0,0 +1,51 @@ +{ + "schema_id": "ion.chatops.extension_packet_receipt.v1", + "receipt_id": "chatops_receipt_20260505t154049z_extension_dom_cockpit_registry", + "created_at": "2026-05-05T15:40:49Z", + "actor": { + "carrier": "codex_cli", + "callsign": "CODEX_CLI_CARRIER" + }, + "source_packets": [ + "ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_COCKPIT_SHELL_PACKET.md", + "ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_ACTION_REGISTRY_PACKET.md", + "ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md" + ], + "status": "completed_with_manual_browser_reload_pending", + "implemented_slices": [ + "composer-anchored ChatGPT cockpit shell", + "upward-expanding tab panel", + "Status/Action/Agent/Packages/Sandbox/Automation/Artifacts/Diagnostics/Logs tabs", + "composer anchor diagnostics and fallback layout", + "visual-only DOM action registry", + "message/code/YAML/control annotations", + "duplicate and invalid YAML status markers", + "read-only Codex agent preview", + "latest Codex run projection" + ], + "files_touched": [ + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts", + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts", + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js", + "ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js" + ], + "validation": { + "node_bundle_syntax": "passed", + "browser_parser_registry_simulation": "passed", + "focused_pytest": "30 passed", + "full_pytest": "272 passed", + "ascii_check": "passed" + }, + "authority": { + "production_authority": false, + "live_execution_authority": false, + "macro_execution_added": false, + "file_upload_automation_added": false + }, + "manual_checks_pending": [ + "reload unpacked Chrome extension", + "verify cockpit is attached to the ChatGPT composer pill", + "verify tabs open upward and close/switch correctly", + "verify DOM labels and halos are visually acceptable on the live ChatGPT page" + ] +} diff --git a/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_ARTIFACT_FILE_LANE_PACKET.md b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_ARTIFACT_FILE_LANE_PACKET.md new file mode 100644 index 00000000..4259540e --- /dev/null +++ b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_ARTIFACT_FILE_LANE_PACKET.md @@ -0,0 +1,153 @@ +# ION Work Packet — Artifact And File Lane + +## Status + +`PROPOSED_WORK_PACKET` + +## Objective + +Create an Artifacts/Packages/Sandbox lane in the browser extension for file and package exchange between ChatGPT Browser and local ION. + +This packet should treat all external files as witness/candidate material until ION ingests, hashes, classifies, gates, and receipts them. + +## Scope + +Implement UI and bridge behavior for: + +```text +list local ION exportable packages if daemon supports it +show package manifests and hashes +capture ChatGPT code blocks as candidate artifacts +capture generated/downloadable files where browser APIs allow +send candidate text/artifact to daemon inbox +queue sandbox return review +show artifact duplicate warnings +show Drive/local-folder references when present +``` + +## Artifact Types + +Support visible classification: + +```text +candidate_patch +review_report +markdown_doc +zip_package +console_log +screenshot_bundle +drive_reference +chat_code_block +yaml_action_block +unknown_witness +``` + +## File Transfer Law + +```text +Drive may carry artifacts. +Downloads may carry artifacts. +ChatGPT may produce artifacts. +The extension may detect and stage artifacts. +ION state changes only after ingest, proof, Steward decision, and receipt. +``` + +## UI Tabs + +Relevant tabs: + +```text +Packages +Sandbox +Artifacts +``` + +### Packages + +```text +export package +show active package +copy manifest +open package folder via daemon if supported +prepare package for ChatGPT +``` + +### Sandbox + +```text +capture patch/report from chat +diff preview latest if daemon supports it +submit sandbox return candidate +queue Codex review +show status transition +``` + +### Artifacts + +```text +show detected chat artifacts +show Drive/link references +show local candidate returns +show hashes/manifests where available +show duplicate and stale-base warnings +``` + +## Required Manifest + +When possible, require or generate: + +```json +{ + "artifact_id": "string", + "source": "chatgpt_browser", + "authority": "proposal_only", + "artifact_type": "candidate_patch", + "base_package_sha256": "optional", + "files": [], + "allowed_effect": "steward_review_only" +} +``` + +## Acceptance Criteria + +```text +Artifacts tab lists detected code blocks/files/links +Sandbox tab can stage a candidate return from selected content +daemon receives candidate artifact through approved call +artifact status shows pending/reviewed/blocked if daemon provides state +duplicate/stale warnings are visible where detectable +no artifact is applied directly +no local file is uploaded without user approval +``` + +## Validation + +```text +capture code block as candidate patch +capture markdown as review report +send candidate to daemon inbox +verify hash/classification appears if supported +queue Codex review with approval +confirm no direct patch apply occurs +``` + +## Authority Boundary + +Allowed: + +```text +artifact detection +manifest generation +approved staging to inbox +approved queue review +``` + +Forbidden: + +```text +silent upload +silent download execution +automatic patch apply +automatic git mutation +Drive treated as authority +``` diff --git a/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md new file mode 100644 index 00000000..284f2b79 --- /dev/null +++ b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md @@ -0,0 +1,132 @@ +# ION Work Packet — Codex Agent Cockpit + +## Status + +`PROPOSED_WORK_PACKET` + +## Objective + +Expose Codex CLI as a bounded local worker lane inside the ChatGPT browser extension cockpit. + +Codex must remain controlled by the local daemon/ION kernel. The extension commands, inspects, approves, and displays. Codex does not live inside the extension. + +## Architecture + +```text +ChatGPT DOM cockpit +-> extension background bridge +-> local ION daemon +-> Codex queue +-> Codex CLI worker +-> proof-bearing return +-> task return intake +-> Steward integration queue +-> receipt/status back to extension +``` + +## Scope + +Implement UI and bridge calls for: + +```text +Codex queue status +queued/running/blocked/returned/accepted/superseded states +request bounded Codex work packet +preview objective before enqueue +show latest Codex returns +submit return to ION task intake if existing API supports it +open/queue Steward review +logs and diagnostics +``` + +## Agent Tab Behavior + +The Agent tab should show: + +```text +ION daemon status +Codex queue count +running item if any +recent returns +blocked returns +action buttons: + - request Codex work + - refresh queue + - view latest return + - queue review +``` + +## Required User Approval + +Actions requiring explicit approval: + +```text +enqueue Codex work +start/process Codex queue +submit task return +queue Steward review +``` + +The extension may refresh status without approval. + +## Work Request Shape + +A Codex work request should include: + +```text +objective +scope +allowed paths +forbidden actions +expected output +proof obligations +max runtime +requested_by carrier +template/action relation if known +``` + +## Acceptance Criteria + +```text +Agent tab displays Codex queue status from daemon +user can preview bounded work request before enqueue +enqueue uses existing daemon/ION endpoint +queue refresh works +latest return can be viewed +blocked/proof-blocked states are visible, not hidden +no Codex execution starts silently +no raw Codex output is treated as accepted ION state +``` + +## Validation + +```text +daemon offline -> Agent tab shows degraded state +daemon online -> queue status visible +enqueue test bounded no-op objective +confirm queue item appears +process manually or through approved action only +confirm return state is visible +confirm no silent Steward acceptance +``` + +## Authority Boundary + +Allowed: + +```text +status reads +approved enqueue +approved queue processing if endpoint exists +approved task-return submission +``` + +Forbidden: + +```text +silent Codex run +silent patch apply +silent git commit/push +secret access +production/deployment changes +``` diff --git a/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_ACTION_REGISTRY_PACKET.md b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_ACTION_REGISTRY_PACKET.md new file mode 100644 index 00000000..bf1ce8e3 --- /dev/null +++ b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_ACTION_REGISTRY_PACKET.md @@ -0,0 +1,144 @@ +# ION Work Packet — DOM Action Registry And YAML Annotation + +## Status + +`PROPOSED_WORK_PACKET` + +## Objective + +Add a DOM action registry that detects ChatGPT composer controls, messages, code blocks, and valid ION YAML blocks, then annotates them with ION-aware affordances. + +This packet creates visibility and addressability. It does not execute high-risk actions. + +## Scope + +Implement: + +```text +composer control detection +message numbering +code block numbering +YAML block validation markers +duplicate YAML/action detection support +automation-availability halos +copy-to-extension action hooks +diagnostics for detected DOM elements +``` + +## Composer Controls To Detect + +Detect and track these when available: + +```text +composer input +send button +attach/add file button +microphone / dictate button +thinking/model controls +voice mode controls +file chips +``` + +Add non-invasive visual affordance halos indicating automation availability. + +Halos must not imply execution authority. + +## Message And Code Annotation + +For visible conversation messages: + +```text +assign stable-ish visible sequence number +show small ION badge/number +track assistant/user role if detectable +``` + +For code blocks: + +```text +assign code block sequence number +detect language if available +detect YAML +validate possible ion_action YAML +show valid/invalid marker +show duplicate-risk marker if same YAML appears multiple times +add copy-to-extension affordance +``` + +## YAML Protocol Behavior + +Detect YAML blocks that appear to be ION actions. + +For valid blocks: + +```text +mark block as ION-valid +assign sequence number +show action type +show approval-needed status +offer queue/preview action using existing approval path +``` + +For invalid blocks: + +```text +mark as invalid +show reason in Diagnostics or tooltip +do not submit +``` + +For duplicates: + +```text +show duplicate warning +prevent accidental duplicate ingestion unless explicitly approved +``` + +## Acceptance Criteria + +```text +messages receive visible ION sequence labels +code blocks receive visible ION sequence labels +valid ION YAML blocks are marked +invalid YAML blocks are not submitted +duplicate YAML blocks are detected or flagged +composer controls receive visual automation-availability halos +Diagnostics tab lists detected controls/messages/code/YAML counts +no send/upload/daemon mutation occurs without existing approval path +``` + +## Validation + +Manual validation: + +```text +open chat with multiple user/assistant messages +create multiple code blocks +create valid ion_action YAML block +create invalid YAML block +copy/repeat a YAML block +confirm numbering and duplicate warnings +confirm existing copy button remains usable +check console for errors +``` + +## Authority Boundary + +Allowed: + +```text +read and annotate DOM +copy text into extension preview +send valid YAML to existing approval modal only after user action +``` + +Forbidden: + +```text +silent submission +silent send click +silent file upload +silent daemon mutation +patch application +Git push +``` diff --git a/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_COCKPIT_SHELL_PACKET.md b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_COCKPIT_SHELL_PACKET.md new file mode 100644 index 00000000..519d4496 --- /dev/null +++ b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_DOM_COCKPIT_SHELL_PACKET.md @@ -0,0 +1,170 @@ +# ION Work Packet — ChatGPT DOM Cockpit Shell + +## Status + +`PROPOSED_WORK_PACKET` + +## Objective + +Implement the first bounded slice of the ChatGPT DOM cockpit evolution for the ION browser extension. + +The extension should move from a floating top panel toward a native-feeling ChatGPT composer cockpit: + +```text +Status | Action | Agent | Packages | Sandbox | Automation | Artifacts | Diagnostics | Logs +``` + +The tabs should visually attach to the lower ChatGPT composer pill and open panels upward from that composer area. + +## Scope + +Implement: + +```text +composer anchor discovery +composer-relative tab rail +upward expanding panel +tab open / close / switch behavior +top one-line status rail +anchor health diagnostics +resize / rerender tracking +fail-closed fallback +``` + +Do not implement macro execution in this packet. + +Do not implement file upload automation in this packet. + +Do not apply repo-wide architectural rewrites. + +## Existing Surfaces + +Expected current extension surfaces: + +```text +ION/09_integrations/browser_extension/ion_chatops_bridge/ + src/content.ts + src/approval_ui.ts + src/background.ts + src/schema.ts + dist/content.js + dist/background.js + manifest.json +``` + +## Design Requirements + +### Composer anchoring + +Detect the ChatGPT composer/input pill by robust heuristics, not brittle single class names. + +Prefer a strategy such as: + +```text +find textarea/contenteditable composer +walk to rounded composer container +confirm visible bounds +confirm contains send / attach / mic controls when available +track via ResizeObserver and MutationObserver +``` + +### Cockpit rail + +Render an ION-owned overlay container positioned relative to the composer bounds. + +Tabs: + +```text +Status +Action +Agent +Packages +Sandbox +Automation +Artifacts +Diagnostics +Logs +``` + +Behavior: + +```text +click closed tab -> open panel +click active tab -> close panel +click different tab -> switch panel +escape -> close panel +lost anchor -> hide / degraded mode +``` + +### Panel + +Panel expands upward from composer area. + +Panel should adapt to: + +```text +composer grows with long text +dictation/voice mode expands composer +file chips change composer height +window resize +visual viewport shifts +ChatGPT rerenders +``` + +### Top status rail + +Replace or minimize the old floating panel into a subtle top status rail: + +```text +green/yellow/red dot +ION ChatOps +short status text +latest warning/error +``` + +The full details move to lower cockpit tabs. + +## Acceptance Criteria + +```text +extension reloads without console errors +composer cockpit appears visually attached to ChatGPT composer pill +tabs open upward panels and close/switch correctly +panel tracks composer resizing and page rerenders +top status rail renders as one-line status surface +existing YAML scan and approval modal behavior still works +Diagnostics tab reports anchor health and failure state +no automatic clicks or file uploads are introduced +``` + +## Validation + +Run or perform: + +```text +extension build / compile if available +manual Chrome extension reload +open ChatGPT chat +confirm cockpit rail +type long input +toggle dictation/voice if available +attach/detach file chips if available +resize window +check console for errors +verify existing YAML detection still works +``` + +## Authority Boundary + +This packet may change browser extension UI code. + +It may not: + +```text +send chat messages automatically +upload files automatically +invoke Codex automatically +mutate ION state without existing approval path +depend on secrets +change Git/GitHub behavior +``` diff --git a/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_GUARDED_MACRO_AUTOMATION_PACKET.md b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_GUARDED_MACRO_AUTOMATION_PACKET.md new file mode 100644 index 00000000..b32b375e --- /dev/null +++ b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/ION_EXT_GUARDED_MACRO_AUTOMATION_PACKET.md @@ -0,0 +1,169 @@ +# ION Work Packet — Guarded Macro Automation MVP + +## Status + +`PROPOSED_WORK_PACKET` + +## Objective + +Implement the first safe layer of browser DOM macro automation for ChatGPT composer controls. + +The goal is not full autonomy. The goal is visible, approval-gated, logged DOM assistance. + +## Automation Law + +```text +visible target +-> preview +-> explicit approval +-> stale-target check +-> execute +-> log +-> receipt if ION state is touched +``` + +## Scope + +Implement safe macros first: + +```text +focus composer +insert approved text into composer +copy latest assistant response +copy selected code block +scroll to message number +open extension panel/tab +highlight attach/send/mic controls +``` + +Implement approval-required macros only as previewable actions: + +```text +click send +open attach file picker +submit valid YAML action +enqueue Codex work +submit sandbox return +``` + +Do not implement silent send/upload. + +## DOM Target Model + +Each macro target should carry: + +```text +target_id +target_kind +selector/heuristic source +bounding box +visible state +enabled/disabled state +last_seen_at +stale_after_ms +risk_level +``` + +Before execution, re-check: + +```text +target still exists +target visible +target not disabled +target bounds sufficiently unchanged +active tab/window still expected +user approval matches target +``` + +## Risk Levels + +### Safe + +```text +focus input +insert text +copy text +scroll +open/close ION panel +``` + +### Approval Required + +```text +click send +click attach +submit YAML +queue Codex +submit artifact +``` + +### Forbidden In MVP + +```text +silent send +silent file upload +silent daemon mutation +apply patch +git commit/push +delete/archive state +``` + +## UI + +Automation tab should show: + +```text +detected controls +available macros +risk level +preview +last run +last failure +approval required badge +``` + +Composer controls may receive colored halos, but halos indicate availability only, not permission. + +## Acceptance Criteria + +```text +safe macros work without console errors +approval-required macros show preview before execution +send click is never silent +attach click is never silent +stale target detection blocks execution +Automation tab logs success/failure +Diagnostics tab shows target registry +existing extension behavior remains intact +``` + +## Validation + +```text +focus composer +insert approved test text +copy a code block +scroll to numbered message +try stale target scenario by rerendering page before approval +confirm execution is blocked +confirm send requires explicit approval +``` + +## Authority Boundary + +Allowed: + +```text +DOM assistance +approved local UI action +logs +``` + +Forbidden: + +```text +unapproved send +unapproved upload +unapproved daemon mutation +background autonomous browser operation +production/deployment authority diff --git a/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/README.md b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/README.md new file mode 100644 index 00000000..fab1a9a6 --- /dev/null +++ b/ION/05_context/current/chatops_bridge/work_packets/2026-05-05_ion_extension_evolution/README.md @@ -0,0 +1,25 @@ +# ION Extension Evolution Work Packets + +These packets decompose the ChatGPT DOM cockpit and automation evolution into bounded implementation slices. + +## Packets + +1. `ION_EXT_DOM_COCKPIT_SHELL_PACKET.md` +2. `ION_EXT_DOM_ACTION_REGISTRY_PACKET.md` +3. `ION_EXT_CODEX_AGENT_COCKPIT_PACKET.md` +4. `ION_EXT_ARTIFACT_FILE_LANE_PACKET.md` +5. `ION_EXT_GUARDED_MACRO_AUTOMATION_PACKET.md` + +## Recommended Order + +```text +1. DOM cockpit shell +2. DOM action registry and YAML annotation +3. Codex agent cockpit +4. Artifact/file lane +5. Guarded macro automation MVP +``` + +## Shared Boundary + +No silent send, no silent upload, no silent Codex run, no silent patch apply, no Git mutation, no production authority. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index a57b28a2..1b2385a7 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -25,8 +25,18 @@ ]; const PANEL_ID = "ion-chatops-bridge-panel"; const MODAL_ID = "ion-chatops-bridge-approval"; + const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const STYLE_ID = "ion-chatops-bridge-style"; const LOG_LIMIT = 12; + const TOP_BAR_GAP = 8; + const PANEL_TOP = 2; + const DEFAULT_LEFT_BOUNDARY = 50; + const DEFAULT_RIGHT_RESERVE = 250; + const PANEL_PREFERRED_WIDTH = 640; + const PANEL_MIN_WIDTH = 320; + const PANEL_TINY_WIDTH = 230; + const COMPOSER_GAP = 8; + const COMPOSER_PANEL_MAX_WIDTH = 920; const bridgeState = { title: "Monitoring ChatGPT", detail: "Waiting for ion_action YAML blocks.", @@ -34,9 +44,18 @@ action: "No action detected yet.", agent: "Codex-backed agent status has not been requested yet.", packages: "No context pack or ZIP export has been requested yet.", + sandbox: "No ChatGPT sandbox returns have been requested yet.", + automation: "Automation controls are staged only. This packet does not execute macros.", + artifacts: "Artifact detection is staged only. No upload or local file movement occurs in this shell slice.", diagnostics: "Normal carrier flow: Sev emits an ion_action YAML block in ChatGPT, the extension detects it, Braden approves it, the local daemon records/executes it, and ION writes a receipt.\n\nThe buttons below are local diagnostics only. They fabricate known-good test actions so the extension/daemon path can be checked without waiting on ChatGPT to emit YAML.", tools: "Daemon: http://127.0.0.1:8767\nUse Rescan after ChatGPT finishes rendering a YAML block.", logs: [], + anchor: { + mode: "topbar_fallback", + rect: null, + health: "degraded", + detail: "Composer anchor has not been evaluated yet.", + }, }; const SEV_REENTRY_PROMPT = `You are Sev, Braden's ION browser carrier. @@ -112,6 +131,218 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp - codex_work_packet_receipt - action_receipt`; + function ensureDomRegistryStyle() { + if (document.getElementById(DOM_REGISTRY_STYLE_ID)) return; + const style = document.createElement("style"); + style.id = DOM_REGISTRY_STYLE_ID; + style.textContent = ` + .ion-dom-badge { + position: absolute; + top: 2px; + left: 2px; + z-index: 7; + height: 18px; + max-width: 180px; + padding: 0 5px; + border: 1px solid rgba(255,255,255,0.12); + border-radius: 6px; + background: rgba(32,33,35,0.88); + color: rgba(255,255,255,0.72); + font: 10px/17px ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; + pointer-events: none; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + box-shadow: 0 4px 14px rgba(0,0,0,0.18); + } + .ion-dom-badge[data-tone="valid"] { + border-color: rgba(16,185,129,0.45); + color: rgba(209,250,229,0.94); + } + .ion-dom-badge[data-tone="invalid"], + .ion-dom-badge[data-tone="duplicate"] { + border-color: rgba(251,191,36,0.45); + color: rgba(254,243,199,0.94); + } + [data-ion-code-index] { + outline: 1px solid rgba(255,255,255,0.06); + outline-offset: 2px; + } + [data-ion-yaml-status="valid"] { + outline-color: rgba(16,185,129,0.42); + } + [data-ion-yaml-status="invalid"], + [data-ion-yaml-status="duplicate"] { + outline-color: rgba(251,191,36,0.42); + } + [data-ion-control-role] { + box-shadow: 0 0 0 1px rgba(16,185,129,0.18), 0 0 0 4px rgba(16,185,129,0.05) !important; + } + `; + document.documentElement.appendChild(style); + } + + function registryText(node) { + const inner = typeof node.innerText === "string" ? node.innerText : ""; + return inner || node.textContent || ""; + } + + function registryRectVisible(node) { + if (shouldIgnoreScanNode(node)) return false; + const rect = node.getBoundingClientRect(); + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; + } + + function allowRegistryBadge(host) { + const currentPosition = window.getComputedStyle(host).position; + if (!currentPosition || currentPosition === "static") host.style.position = "relative"; + } + + function ensureRegistryBadge(host, kind, text, tone = "idle") { + allowRegistryBadge(host); + const existing = Array.from(host.children).find((child) => child.dataset?.ionBadge === kind); + const badge = existing ?? document.createElement("span"); + badge.className = "ion-dom-badge"; + badge.dataset.ionBadge = kind; + badge.dataset.tone = tone; + if (badge.textContent !== text) badge.textContent = text; + if (!existing) host.appendChild(badge); + } + + function uniqueElements(selectors) { + const elements = []; + const seenElements = new Set(); + document.querySelectorAll(selectors).forEach((node) => { + if (seenElements.has(node) || shouldIgnoreScanNode(node) || !registryRectVisible(node)) return; + seenElements.add(node); + elements.push(node); + }); + return elements; + } + + function annotateMessages(stats) { + const nodes = uniqueElements("[data-message-author-role], article"); + nodes.forEach((node, index) => { + const role = node.getAttribute("data-message-author-role") || "message"; + node.dataset.ionMessageIndex = String(index + 1); + ensureRegistryBadge(node, "message", `ION msg ${index + 1} ${role}`, "idle"); + }); + stats.messages = nodes.length; + } + + function codeBlockHosts() { + const hosts = []; + const seenHosts = new Set(); + document.querySelectorAll("pre, pre code, code, [class*='font-mono'], [class*='whitespace-pre'], [class*='overflow-x-auto']").forEach((node) => { + if (shouldIgnoreScanNode(node) || !registryRectVisible(node)) return; + const host = node.closest("pre") ?? node; + if (seenHosts.has(host) || shouldIgnoreScanNode(host) || !registryRectVisible(host)) return; + seenHosts.add(host); + hosts.push(host); + }); + return hosts; + } + + function annotateCodeBlocks(stats) { + const actionIds = new Set(); + const hosts = codeBlockHosts(); + hosts.forEach((host, index) => { + const label = `ION code ${index + 1}`; + host.dataset.ionCodeIndex = String(index + 1); + host.dataset.ionYamlStatus = "none"; + let tone = "idle"; + let badge = label; + const text = registryText(host); + if (ION_ACTION_LINE.test(text) || extractIonActionYaml(text) !== null) { + stats.yamlBlocks += 1; + const parsed = parseIonActionYamlWithDiagnostics(text); + const packet = parsed.packet; + const actionId = packet?.ion_action?.action_id; + if (!packet) { + stats.invalidActions += 1; + tone = "invalid"; + badge = `ION YAML ${index + 1} blocked`; + host.dataset.ionYamlStatus = "invalid"; + host.dataset.ionYamlFinding = parsed.finding ?? "parse_failed"; + } else if (actionId && actionIds.has(actionId)) { + stats.duplicateActions += 1; + tone = "duplicate"; + badge = `ION YAML ${index + 1} duplicate`; + host.dataset.ionYamlStatus = "duplicate"; + host.dataset.ionActionId = actionId; + } else { + if (actionId) actionIds.add(actionId); + const local = localValidate(packet); + host.dataset.ionActionId = actionId ?? ""; + if (local.accepted) { + stats.validActions += 1; + tone = "valid"; + badge = `ION YAML ${index + 1} ok`; + host.dataset.ionYamlStatus = "valid"; + } else { + stats.invalidActions += 1; + tone = "invalid"; + badge = `ION YAML ${index + 1} blocked`; + host.dataset.ionYamlStatus = "invalid"; + host.dataset.ionYamlFinding = local.findings.join("|"); + } + } + } + ensureRegistryBadge(host, "code", badge, tone); + }); + stats.codeBlocks = hosts.length; + } + + function annotateComposerControls(stats) { + const composer = findComposer(); + const composerRect = composer?.getBoundingClientRect(); + const controls = uniqueElements("button, input[type='file']").filter((node) => { + const rect = node.getBoundingClientRect(); + const nearComposer = composerRect ? Math.abs(rect.top - composerRect.top) < 180 || Math.abs(rect.bottom - composerRect.bottom) < 180 : false; + const label = `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""}`.toLowerCase(); + return nearComposer || /send|attach|upload|file|voice|mic|stop|plus/.test(label); + }); + controls.forEach((node) => { + const label = `${node.getAttribute("aria-label") ?? node.getAttribute("data-testid") ?? node.tagName}`.toLowerCase(); + const role = label.includes("send") ? "send" : label.includes("attach") || label.includes("upload") || label.includes("file") || label.includes("plus") ? "attach" : label.includes("mic") || label.includes("voice") ? "voice" : label.includes("stop") ? "stop" : "composer"; + node.dataset.ionControlRole = role; + }); + stats.composerControls = controls.length; + } + + function updateDomActionRegistry() { + ensureDomRegistryStyle(); + const stats = { + messages: 0, + codeBlocks: 0, + yamlBlocks: 0, + validActions: 0, + invalidActions: 0, + duplicateActions: 0, + composerControls: 0, + lastUpdated: new Date().toLocaleTimeString(), + }; + annotateMessages(stats); + annotateCodeBlocks(stats); + annotateComposerControls(stats); + setBridgeDiagnosticsDetail( + [ + "DOM action registry", + `messages: ${stats.messages}`, + `code_blocks: ${stats.codeBlocks}`, + `ion_yaml_blocks: ${stats.yamlBlocks}`, + `valid_actions: ${stats.validActions}`, + `invalid_actions: ${stats.invalidActions}`, + `duplicate_actions: ${stats.duplicateActions}`, + `composer_controls: ${stats.composerControls}`, + `last_updated: ${stats.lastUpdated}`, + "", + "Automation markers are visual only. They do not click, submit, upload, or mutate ION state.", + ].join("\n"), + ); + return stats; + } + function scalar(raw) { const value = raw.trim().replace(/\s+#.*$/, ""); if (value === "true") return true; @@ -313,13 +544,14 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } #${PANEL_ID} { position: fixed; - top: 2px; + top: auto; left: 58px; right: auto; - bottom: auto; + bottom: 82px; z-index: 2147483646; - width: clamp(430px, 56vw, 640px); - max-width: calc(100vw - 380px); + width: min(640px, calc(100vw - 86px)); + max-width: none; + box-sizing: border-box; border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; background: rgba(33, 33, 33, 0.94); @@ -327,9 +559,15 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp padding: 4px; backdrop-filter: blur(12px); } + #${PANEL_ID}[data-anchor-mode="composer"] { + border-radius: 12px; + box-shadow: 0 12px 34px rgba(0,0,0,0.28); + } + #${PANEL_ID}[data-anchor-health="degraded"] { + border-color: rgba(251,191,36,0.30); + } #${PANEL_ID}[data-expanded="true"] { - width: clamp(430px, 56vw, 640px); - max-width: calc(100vw - 380px); + max-width: none; } #${PANEL_ID} .ion-toolbar { display: flex; @@ -361,6 +599,10 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp font-size: 12px; font-weight: 600; line-height: 1.25; + max-width: 220px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; overflow-wrap: anywhere; color: rgba(255,255,255,0.88); } @@ -400,6 +642,32 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp gap: 2px; flex: 0 0 auto; } + #${PANEL_ID}[data-layout="compact"] .ion-title { + max-width: 150px; + } + #${PANEL_ID}[data-layout="compact"] .ion-label { + display: none; + } + #${PANEL_ID}[data-layout="compact"] .ion-tool, + #${PANEL_ID}[data-layout="compact"] .ion-toggle { + height: 27px; + padding: 0 6px; + font-size: 11px; + } + #${PANEL_ID}[data-layout="tiny"] .ion-row > div { + display: none; + } + #${PANEL_ID}[data-layout="tiny"] .ion-tool { + padding: 0 5px; + font-size: 0; + } + #${PANEL_ID}[data-layout="tiny"] .ion-tool::first-letter, + #${PANEL_ID}[data-layout="tiny"] .ion-toggle { + font-size: 11px; + } + #${PANEL_ID}[data-layout="tiny"] [data-tool="insert-reentry"] { + display: none; + } #${PANEL_ID} .ion-tab-panel .ion-toolbar-actions { flex-wrap: wrap; gap: 6px; @@ -409,22 +677,31 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp #${PANEL_ID} .ion-expanded { display: none; } + #${PANEL_ID} .ion-tabs { + display: flex; + gap: 4px; + align-items: center; + overflow-x: auto; + scrollbar-width: none; + border-top: 1px solid rgba(255,255,255,0.07); + margin: 2px 2px 0; + padding: 4px 2px 0; + } + #${PANEL_ID} .ion-tabs::-webkit-scrollbar { + display: none; + } #${PANEL_ID}[data-expanded="true"] .ion-expanded { display: block; border-top: 1px solid rgba(255,255,255,0.08); - margin: 4px 2px 0; + border-bottom: 1px solid rgba(255,255,255,0.08); + margin: 2px 2px 4px; padding: 8px 8px 9px; - } - #${PANEL_ID}[data-expanded="true"] .ion-tabs { - display: flex; + max-height: min(54vh, 520px); + overflow: auto; } #${PANEL_ID}[data-expanded="true"] .ion-tab-panel[data-active="true"] { display: flex; } - #${PANEL_ID} .ion-tabs { - gap: 6px; - margin-top: 0; - } #${PANEL_ID} .ion-tab[data-active="true"] { color: rgba(255,255,255,0.96); background: rgba(255,255,255,0.11); @@ -443,6 +720,14 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp gap: 8px; margin-top: 9px; } + #${PANEL_ID}[data-layout="compact"] .ion-tab { + height: 26px; + padding: 0 6px; + font-size: 11px; + } + #${PANEL_ID}[data-layout="tiny"] .ion-tabs { + display: none; + } #${MODAL_ID} { position: fixed; top: 62px; @@ -503,6 +788,191 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp document.documentElement.appendChild(style); } + function rectIsVisible(rect) { + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; + } + + function isBridgeElement(element) { + return Boolean(element.closest(`#${PANEL_ID}`) ?? element.closest(`#${MODAL_ID}`)); + } + + function visibleRect(element) { + if (isBridgeElement(element)) return null; + const style = window.getComputedStyle(element); + if (style.display === "none" || style.visibility === "hidden" || Number(style.opacity) === 0) return null; + const rect = element.getBoundingClientRect(); + return rectIsVisible(rect) ? rect : null; + } + + function detectLeftBoundary() { + const selectors = [ + "nav", + "aside", + "[role='navigation']", + "[aria-label*='sidebar' i]", + "[aria-label*='side bar' i]", + "[data-testid*='sidebar' i]", + "[data-testid*='left' i]", + "[class*='sidebar' i]", + "[class*='side-bar' i]", + ]; + let boundary = DEFAULT_LEFT_BOUNDARY; + document.querySelectorAll(selectors.join(",")).forEach((element) => { + const rect = visibleRect(element); + if (!rect) return; + const plausibleLeftSurface = + rect.left <= 24 && + rect.top <= 92 && + rect.bottom >= 34 && + rect.width >= 38 && + rect.width <= window.innerWidth * 0.72; + if (plausibleLeftSurface) boundary = Math.max(boundary, rect.right); + }); + return Math.min(Math.max(boundary, DEFAULT_LEFT_BOUNDARY), window.innerWidth - 120); + } + + function detectRightBoundary() { + let boundary = window.innerWidth - TOP_BAR_GAP; + const selectors = [ + "header button", + "header a[role='button']", + "[role='banner'] button", + "[role='banner'] a[role='button']", + "button[aria-label*='share' i]", + "button[aria-label*='more' i]", + "button[aria-label*='memory' i]", + "[data-testid*='share' i]", + "[data-testid*='more' i]", + ]; + document.querySelectorAll(selectors.join(",")).forEach((element) => { + const rect = visibleRect(element); + if (!rect) return; + const plausibleRightTopControl = + rect.top <= 82 && + rect.bottom >= 16 && + rect.left >= window.innerWidth * 0.48 && + rect.width <= 180 && + rect.height <= 56; + if (plausibleRightTopControl) boundary = Math.min(boundary, rect.left); + }); + if (boundary === window.innerWidth - TOP_BAR_GAP) { + boundary = Math.max(TOP_BAR_GAP, window.innerWidth - DEFAULT_RIGHT_RESERVE); + } + return Math.max(boundary, 160); + } + + function applyTopBarLayout(panel) { + const left = Math.ceil(detectLeftBoundary() + TOP_BAR_GAP); + const right = Math.floor(detectRightBoundary() - TOP_BAR_GAP); + const available = Math.max(PANEL_TINY_WIDTH, right - left); + const preferred = Math.min(PANEL_PREFERRED_WIDTH, Math.floor(window.innerWidth * 0.58)); + const width = Math.max(Math.min(preferred, available), Math.min(PANEL_MIN_WIDTH, available)); + const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 430 ? "compact" : "normal"; + panel.dataset.anchorMode = "topbar_fallback"; + panel.dataset.anchorHealth = "degraded"; + panel.dataset.layout = layout; + panel.style.top = `${PANEL_TOP}px`; + panel.style.left = `${left}px`; + panel.style.right = "auto"; + panel.style.bottom = "auto"; + panel.style.width = `${width}px`; + panel.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + if (typeof panel.style.setProperty === "function") { + panel.style.setProperty("--ion-chatops-modal-left", `${left}px`); + panel.style.setProperty("--ion-chatops-modal-width", `${Math.min(420, available)}px`); + } + positionApprovalModal(); + } + + function viewportHeight() { + return Math.floor(window.visualViewport?.height ?? window.innerHeight); + } + + function findComposerInput() { + const selectors = [ + "#prompt-textarea", + "textarea", + "[contenteditable='true'][role='textbox']", + "[contenteditable='true']", + ]; + for (const selector of selectors) { + const node = document.querySelector(selector); + if (!node || isBridgeElement(node)) continue; + const rect = visibleRect(node); + if (rect && rect.top > viewportHeight() * 0.45) return node; + } + return null; + } + + function candidateComposerContainer(input) { + let best = input; + let current = input; + let depth = 0; + while (current?.parentElement && depth < 10) { + current = current.parentElement; + depth += 1; + if (isBridgeElement(current)) break; + const rect = visibleRect(current); + if (!rect) continue; + const bottomHalf = rect.top > viewportHeight() * 0.38; + const plausibleWidth = rect.width >= Math.min(360, window.innerWidth * 0.62) && rect.width <= window.innerWidth - 12; + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(260, viewportHeight() * 0.38); + if (bottomHalf && plausibleWidth && plausibleHeight) best = current; + } + return best; + } + + function detectComposerAnchor() { + const input = findComposerInput(); + if (!input) { + return { + mode: "topbar_fallback", + rect: null, + health: "degraded", + detail: "Composer anchor not found; using top-bar fallback layout.", + }; + } + const container = candidateComposerContainer(input); + const rect = container.getBoundingClientRect(); + if (!rectIsVisible(rect)) { + return { + mode: "topbar_fallback", + rect: null, + health: "degraded", + detail: "Composer candidate was not visible; using top-bar fallback layout.", + }; + } + return { + mode: "composer", + rect, + health: "ready", + detail: `Composer anchor ready: ${Math.round(rect.left)},${Math.round(rect.top)} ${Math.round(rect.width)}x${Math.round(rect.height)}.`, + }; + } + + function applyComposerLayout(panel, anchor) { + if (anchor.mode !== "composer" || !anchor.rect) return false; + const rect = anchor.rect; + const viewport = viewportHeight(); + const margin = 12; + const left = Math.max(margin, Math.round(rect.left)); + const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); + const width = Math.min(COMPOSER_PANEL_MAX_WIDTH, Math.max(PANEL_MIN_WIDTH, available)); + const bottom = Math.max(10, Math.round(viewport - rect.top + COMPOSER_GAP)); + const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; + panel.dataset.anchorMode = "composer"; + panel.dataset.anchorHealth = anchor.health; + panel.dataset.layout = layout; + panel.style.top = "auto"; + panel.style.left = `${left}px`; + panel.style.right = "auto"; + panel.style.bottom = `${bottom}px`; + panel.style.width = `${Math.min(width, available)}px`; + panel.style.maxWidth = `${available}px`; + positionApprovalModal(); + return true; + } + function ensurePanel() { ensureStyle(); let panel = document.getElementById(PANEL_ID); @@ -513,29 +983,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.dataset.expanded = "false"; panel.dataset.tab = "status"; panel.innerHTML = ` -
-
- -
-
ION ChatOps
-
-
-
-
- - - -
-
-
- - - - - - -
@@ -543,6 +991,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+ +
@@ -555,6 +1005,16 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+
+
+
+ + + +
+
+
+
@@ -564,6 +1024,31 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+
+
+ +
+
ION ChatOps
+
+
+
+
+ + + +
+
+
+ + + + + + + + + +
`; document.documentElement.appendChild(panel); panel.querySelector(".ion-toggle")?.addEventListener("click", () => { @@ -572,10 +1057,23 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); panel.querySelectorAll(".ion-tab").forEach((tab) => { tab.addEventListener("click", () => { - panel.dataset.tab = tab.dataset.tab ?? "status"; + const nextTab = tab.dataset.tab ?? "status"; + if (panel.dataset.expanded === "true" && panel.dataset.tab === nextTab) { + panel.dataset.expanded = "false"; + } else { + panel.dataset.expanded = "true"; + panel.dataset.tab = nextTab; + } renderPanel(panel); }); }); + if (typeof document.addEventListener === "function") { + document.addEventListener("keydown", (event) => { + if (event.key !== "Escape") return; + panel.dataset.expanded = "false"; + renderPanel(panel); + }); + } panel.querySelector('[data-tool="rescan"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-rescan")); }); @@ -594,6 +1092,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="agent-queue"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-agent-queue")); }); + panel.querySelector('[data-tool="agent-preview"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-agent-preview")); + }); + panel.querySelector('[data-tool="agent-latest"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-agent-latest")); + }); panel.querySelector('[data-tool="agent-prepare"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-agent-prepare")); }); @@ -609,6 +1113,15 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="safe-full-zip"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-safe-full-zip")); }); + panel.querySelector('[data-tool="sandbox-returns"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-returns")); + }); + panel.querySelector('[data-tool="sandbox-diff"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-diff")); + }); + panel.querySelector('[data-tool="sandbox-review"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-review")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -618,10 +1131,26 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } function positionPanelAboveComposer(panel = ensurePanel()) { - panel.style.top = "2px"; - panel.style.left = "58px"; - panel.style.right = "auto"; - panel.style.bottom = "auto"; + const anchor = detectComposerAnchor(); + bridgeState.anchor = anchor; + if (!applyComposerLayout(panel, anchor)) applyTopBarLayout(panel); + } + + function positionApprovalModal(modal = document.getElementById(MODAL_ID)) { + const panel = document.getElementById(PANEL_ID); + if (!modal || !panel) return; + const rect = panel.getBoundingClientRect(); + const available = Math.max(PANEL_TINY_WIDTH, window.innerWidth - rect.left - TOP_BAR_GAP); + modal.style.left = `${rect.left}px`; + modal.style.width = `${Math.min(420, available)}px`; + modal.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + if (panel.dataset.anchorMode === "composer") { + modal.style.top = "auto"; + modal.style.bottom = `${Math.max(12, viewportHeight() - rect.top + TOP_BAR_GAP)}px`; + } else { + modal.style.bottom = "auto"; + modal.style.top = `${Math.max(48, rect.bottom + TOP_BAR_GAP)}px`; + } } function renderPanel(panel = ensurePanel()) { @@ -642,13 +1171,19 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const actionNode = panel.querySelector('[data-field="action"]'); const agentNode = panel.querySelector('[data-field="agent"]'); const packagesNode = panel.querySelector('[data-field="packages"]'); + const sandboxNode = panel.querySelector('[data-field="sandbox"]'); + const automationNode = panel.querySelector('[data-field="automation"]'); + const artifactsNode = panel.querySelector('[data-field="artifacts"]'); const diagnosticsNode = panel.querySelector('[data-field="diagnostics"]'); const toolsNode = panel.querySelector('[data-field="tools"]'); if (statusNode) statusNode.textContent = bridgeState.detail; if (actionNode) actionNode.textContent = bridgeState.action; if (agentNode) agentNode.textContent = bridgeState.agent; if (packagesNode) packagesNode.textContent = bridgeState.packages; - if (diagnosticsNode) diagnosticsNode.textContent = bridgeState.diagnostics; + if (sandboxNode) sandboxNode.textContent = bridgeState.sandbox; + if (automationNode) automationNode.textContent = bridgeState.automation; + if (artifactsNode) artifactsNode.textContent = bridgeState.artifacts; + if (diagnosticsNode) diagnosticsNode.textContent = `${bridgeState.anchor.detail}\n\n${bridgeState.diagnostics}`; if (toolsNode) { toolsNode.textContent = `${bridgeState.tools}\n\nRecent:\n${bridgeState.logs.join("\n") || "No events yet."}`; } @@ -682,6 +1217,16 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp renderPanel(); } + function setBridgeSandboxDetail(detail) { + bridgeState.sandbox = detail; + renderPanel(); + } + + function setBridgeDiagnosticsDetail(detail) { + bridgeState.diagnostics = detail; + renderPanel(); + } + function refreshBridgePosition() { positionPanelAboveComposer(); } @@ -733,6 +1278,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp modal.querySelector('[data-choice="reject"]')?.addEventListener("click", () => finish(false)); modal.querySelector('[data-choice="approve"]')?.addEventListener("click", () => finish(true)); document.documentElement.appendChild(modal); + positionApprovalModal(modal); }); } @@ -774,6 +1320,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp modal.querySelector('[data-choice="reject"]')?.addEventListener("click", () => finish(false)); modal.querySelector('[data-choice="approve"]')?.addEventListener("click", () => finish(true)); document.documentElement.appendChild(modal); + positionApprovalModal(modal); }); } @@ -950,6 +1497,74 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); } + function inactiveQueueStatus(status) { + return /SUPERSEDED|FULFILLED|INVALID|ARCHIVE_ONLY|SETTLED|DUPLICATE|BLOCKED|CANCELLED/i.test(status); + } + + function firstActionableRequest(queue) { + const rows = Array.isArray(queue?.requests) ? queue.requests : []; + return rows.find((row) => !inactiveQueueStatus(String(row?.status ?? ""))) ?? null; + } + + function requestAgentPreview() { + setBridgeStatus("Agent preview", "Reading queue/status before any Codex mutation.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_agent_status" }, (statusResponse) => { + chrome.runtime.sendMessage({ type: "ion_chatops_agent_queue" }, async (queueResponse) => { + if (!statusResponse?.ok || !queueResponse?.ok) { + const detail = !statusResponse?.ok ? blockedDetail(statusResponse) : blockedDetail(queueResponse); + setBridgeAgentDetail(detail); + setBridgeStatus("Agent preview blocked", detail, "error"); + return; + } + const status = statusResponse.result; + const queue = queueResponse.result; + const request = firstActionableRequest(queue); + const detail = [ + "Codex agent preview", + `runner_verdict: ${status?.verdict ?? ""}`, + `queued_request_count: ${status?.queued_request_count ?? 0}`, + `active_process_running: ${Boolean(status?.active_process_running)}`, + `next_request_path: ${status?.next_request_path ?? "none"}`, + request + ? `next_actionable_request: ${request.request_id ?? ""}\nstatus: ${request.status ?? ""}\nobjective: ${request.objective ?? ""}` + : "next_actionable_request: none", + "", + "Preview only. No Codex worker was prepared or started.", + ].join("\n"); + setBridgeAgentDetail(detail); + setBridgeStatus("Agent preview ready", detail.split("\n")[1] ?? "", "success"); + await copyBridgeResult("Agent preview", detail); + }); + }); + } + + function requestAgentLatestRuns() { + setBridgeStatus("Latest Codex runs", "Reading latest Codex queue runner receipts.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_agent_status" }, async (response) => { + if (!response?.ok) { + const detail = blockedDetail(response); + setBridgeAgentDetail(detail); + setBridgeStatus("Latest Codex runs blocked", detail, "error"); + return; + } + const runs = Array.isArray(response.result?.latest_runs) ? response.result.latest_runs : []; + const detail = runs.length + ? runs + .slice(0, 6) + .map((run, index) => [ + `#${index + 1} ${run.status ?? ""}`, + `run_id: ${run.run_id ?? ""}`, + `request_id: ${run.request_id ?? ""}`, + `path: ${run.path ?? ""}`, + ].join("\n")) + .join("\n\n") + : "No Codex queue runs found."; + setBridgeAgentDetail(detail); + setBridgeStatus("Latest Codex runs ready", runs[0]?.status ?? "No runs found.", "success"); + await copyBridgeResult("Latest Codex runs", detail); + }); + } + function requestContextPack() { setBridgeStatus("Context pack", "Fetching current ION/agent context from local daemon.", "working"); chrome.runtime.sendMessage({ type: "ion_chatops_context_pack" }, (response) => { @@ -982,6 +1597,41 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); } + function latestSandboxReturnId(result) { + const rows = Array.isArray(result?.returns) ? result.returns : []; + const first = rows.find((row) => typeof row?.return_id === "string" && row.return_id.trim()); + return first?.return_id ?? null; + } + + function requestSandboxReturns() { + setBridgeStatus("Sandbox returns", "Fetching ChatGPT sandbox return queue.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_sandbox_returns" }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeSandboxDetail(detail); + setBridgeStatus(response?.ok ? "Sandbox returns ready" : "Sandbox returns blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult("Sandbox returns", detail); + }); + } + + function requestSandboxMutation(type, label) { + setBridgeStatus(label, "Requesting latest sandbox return projection before approval.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_sandbox_returns" }, (queueResponse) => { + const returnId = latestSandboxReturnId(queueResponse?.result); + if (!queueResponse?.ok || !returnId) { + const detail = queueResponse?.ok ? "No sandbox returns are available." : blockedDetail(queueResponse); + setBridgeSandboxDetail(detail); + setBridgeStatus(`${label} blocked`, detail, "error"); + return; + } + chrome.runtime.sendMessage({ type, payload: { return_id: returnId } }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeSandboxDetail(detail); + setBridgeStatus(response?.ok ? `${label} submitted` : `${label} blocked`, detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult(label, detail); + }); + }); + } + function actionSummary(packet) { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -1056,6 +1706,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp function scan() { refreshBridgePosition(); + updateDomActionRegistry(); let processed = 0; for (const block of candidateBlocks()) { const key = `${block.length}:${block.slice(0, 160)}`; @@ -1133,7 +1784,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp parseStrictIonActionYaml, localValidate, candidateBlocks, + updateDomActionRegistry, submitActionText, + refreshBridgePosition, rescan: () => { seen.clear(); return scan(); @@ -1143,6 +1796,17 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const observer = new MutationObserver(() => scan()); observer.observe(document.documentElement, { childList: true, subtree: true }); window.addEventListener("resize", () => refreshBridgePosition()); + if (typeof document.addEventListener === "function") { + document.addEventListener("transitionend", () => refreshBridgePosition(), true); + document.addEventListener( + "click", + () => { + window.setTimeout(() => refreshBridgePosition(), 60); + window.setTimeout(() => refreshBridgePosition(), 260); + }, + true, + ); + } window.addEventListener("ion-chatops-rescan", () => { seen.clear(); setBridgeStatus("Manual rescan", "Scanning rendered ChatGPT code blocks.", "working"); @@ -1170,6 +1834,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-agent-queue", () => { requestAgentRead("ion_chatops_agent_queue", "Agent queue"); }); + window.addEventListener("ion-chatops-agent-preview", () => { + requestAgentPreview(); + }); + window.addEventListener("ion-chatops-agent-latest", () => { + requestAgentLatestRuns(); + }); window.addEventListener("ion-chatops-agent-prepare", () => { requestAgentMutation("ion_chatops_agent_prepare_next", "Agent prepare next"); }); @@ -1185,6 +1855,15 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-safe-full-zip", () => { requestZip("ion_chatops_safe_full_zip", "Safe full project ZIP"); }); + window.addEventListener("ion-chatops-sandbox-returns", () => { + requestSandboxReturns(); + }); + window.addEventListener("ion-chatops-sandbox-diff", () => { + requestSandboxMutation("ion_chatops_sandbox_diff_latest", "Sandbox diff preview"); + }); + window.addEventListener("ion-chatops-sandbox-review", () => { + requestSandboxMutation("ion_chatops_sandbox_queue_latest", "Sandbox queue review"); + }); setBridgeStatus("Monitoring ChatGPT", "Waiting for ion_action YAML blocks.", "idle"); scan(); })(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index dfa8e6b5..37f8badb 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -6,6 +6,22 @@ const PANEL_ID = "ion-chatops-bridge-panel"; const MODAL_ID = "ion-chatops-bridge-approval"; const STYLE_ID = "ion-chatops-bridge-style"; const LOG_LIMIT = 12; +const TOP_BAR_GAP = 8; +const PANEL_TOP = 2; +const DEFAULT_LEFT_BOUNDARY = 50; +const DEFAULT_RIGHT_RESERVE = 250; +const PANEL_PREFERRED_WIDTH = 640; +const PANEL_MIN_WIDTH = 320; +const PANEL_TINY_WIDTH = 230; +const COMPOSER_GAP = 8; +const COMPOSER_PANEL_MAX_WIDTH = 920; + +type AnchorInfo = { + mode: "composer" | "topbar_fallback"; + rect: DOMRect | null; + health: "ready" | "degraded"; + detail: string; +}; const bridgeState = { title: "Monitoring ChatGPT", @@ -14,10 +30,19 @@ const bridgeState = { action: "No action detected yet.", agent: "Codex-backed agent status has not been requested yet.", packages: "No context pack or ZIP export has been requested yet.", + sandbox: "No ChatGPT sandbox returns have been requested yet.", + automation: "Automation controls are staged only. This packet does not execute macros.", + artifacts: "Artifact detection is staged only. No upload or local file movement occurs in this shell slice.", diagnostics: "Normal carrier flow: Sev emits an ion_action YAML block in ChatGPT, the extension detects it, Braden approves it, the local daemon records/executes it, and ION writes a receipt.\n\nThe buttons below are local diagnostics only. They fabricate known-good test actions so the extension/daemon path can be checked without waiting on ChatGPT to emit YAML.", tools: "Daemon: http://127.0.0.1:8767\nUse Rescan after ChatGPT finishes rendering a YAML block.", logs: [] as string[], + anchor: { + mode: "topbar_fallback", + rect: null, + health: "degraded", + detail: "Composer anchor has not been evaluated yet.", + } as AnchorInfo, }; function ensureStyle(): void { @@ -32,13 +57,14 @@ function ensureStyle(): void { } #${PANEL_ID} { position: fixed; - top: 2px; + top: auto; left: 58px; right: auto; - bottom: auto; + bottom: 82px; z-index: 2147483646; - width: clamp(430px, 56vw, 640px); - max-width: calc(100vw - 380px); + width: min(640px, calc(100vw - 86px)); + max-width: none; + box-sizing: border-box; border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; background: rgba(33, 33, 33, 0.94); @@ -46,9 +72,15 @@ function ensureStyle(): void { padding: 4px; backdrop-filter: blur(12px); } + #${PANEL_ID}[data-anchor-mode="composer"] { + border-radius: 12px; + box-shadow: 0 12px 34px rgba(0,0,0,0.28); + } + #${PANEL_ID}[data-anchor-health="degraded"] { + border-color: rgba(251,191,36,0.30); + } #${PANEL_ID}[data-expanded="true"] { - width: clamp(430px, 56vw, 640px); - max-width: calc(100vw - 380px); + max-width: none; } #${PANEL_ID} .ion-toolbar { display: flex; @@ -80,6 +112,10 @@ function ensureStyle(): void { font-size: 12px; font-weight: 600; line-height: 1.25; + max-width: 220px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; overflow-wrap: anywhere; color: rgba(255,255,255,0.88); } @@ -119,6 +155,32 @@ function ensureStyle(): void { gap: 2px; flex: 0 0 auto; } + #${PANEL_ID}[data-layout="compact"] .ion-title { + max-width: 150px; + } + #${PANEL_ID}[data-layout="compact"] .ion-label { + display: none; + } + #${PANEL_ID}[data-layout="compact"] .ion-tool, + #${PANEL_ID}[data-layout="compact"] .ion-toggle { + height: 27px; + padding: 0 6px; + font-size: 11px; + } + #${PANEL_ID}[data-layout="tiny"] .ion-row > div { + display: none; + } + #${PANEL_ID}[data-layout="tiny"] .ion-tool { + padding: 0 5px; + font-size: 0; + } + #${PANEL_ID}[data-layout="tiny"] .ion-tool::first-letter, + #${PANEL_ID}[data-layout="tiny"] .ion-toggle { + font-size: 11px; + } + #${PANEL_ID}[data-layout="tiny"] [data-tool="insert-reentry"] { + display: none; + } #${PANEL_ID} .ion-tab-panel .ion-toolbar-actions { flex-wrap: wrap; gap: 6px; @@ -128,22 +190,31 @@ function ensureStyle(): void { #${PANEL_ID} .ion-expanded { display: none; } + #${PANEL_ID} .ion-tabs { + display: flex; + gap: 4px; + align-items: center; + overflow-x: auto; + scrollbar-width: none; + border-top: 1px solid rgba(255,255,255,0.07); + margin: 2px 2px 0; + padding: 4px 2px 0; + } + #${PANEL_ID} .ion-tabs::-webkit-scrollbar { + display: none; + } #${PANEL_ID}[data-expanded="true"] .ion-expanded { display: block; border-top: 1px solid rgba(255,255,255,0.08); - margin: 4px 2px 0; + border-bottom: 1px solid rgba(255,255,255,0.08); + margin: 2px 2px 4px; padding: 8px 8px 9px; - } - #${PANEL_ID}[data-expanded="true"] .ion-tabs { - display: flex; + max-height: min(54vh, 520px); + overflow: auto; } #${PANEL_ID}[data-expanded="true"] .ion-tab-panel[data-active="true"] { display: flex; } - #${PANEL_ID} .ion-tabs { - gap: 6px; - margin-top: 0; - } #${PANEL_ID} .ion-tab[data-active="true"] { color: rgba(255,255,255,0.96); background: rgba(255,255,255,0.11); @@ -162,6 +233,14 @@ function ensureStyle(): void { gap: 8px; margin-top: 9px; } + #${PANEL_ID}[data-layout="compact"] .ion-tab { + height: 26px; + padding: 0 6px; + font-size: 11px; + } + #${PANEL_ID}[data-layout="tiny"] .ion-tabs { + display: none; + } #${MODAL_ID} { position: fixed; top: 62px; @@ -222,6 +301,191 @@ function ensureStyle(): void { document.documentElement.appendChild(style); } +function rectIsVisible(rect: DOMRect): boolean { + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; +} + +function isBridgeElement(element: Element): boolean { + return Boolean(element.closest(`#${PANEL_ID}`) ?? element.closest(`#${MODAL_ID}`)); +} + +function visibleRect(element: Element): DOMRect | null { + if (isBridgeElement(element)) return null; + const style = window.getComputedStyle(element); + if (style.display === "none" || style.visibility === "hidden" || Number(style.opacity) === 0) return null; + const rect = element.getBoundingClientRect(); + return rectIsVisible(rect) ? rect : null; +} + +function detectLeftBoundary(): number { + const selectors = [ + "nav", + "aside", + "[role='navigation']", + "[aria-label*='sidebar' i]", + "[aria-label*='side bar' i]", + "[data-testid*='sidebar' i]", + "[data-testid*='left' i]", + "[class*='sidebar' i]", + "[class*='side-bar' i]", + ]; + let boundary = DEFAULT_LEFT_BOUNDARY; + document.querySelectorAll(selectors.join(",")).forEach((element) => { + const rect = visibleRect(element); + if (!rect) return; + const plausibleLeftSurface = + rect.left <= 24 && + rect.top <= 92 && + rect.bottom >= 34 && + rect.width >= 38 && + rect.width <= window.innerWidth * 0.72; + if (plausibleLeftSurface) boundary = Math.max(boundary, rect.right); + }); + return Math.min(Math.max(boundary, DEFAULT_LEFT_BOUNDARY), window.innerWidth - 120); +} + +function detectRightBoundary(): number { + let boundary = window.innerWidth - TOP_BAR_GAP; + const selectors = [ + "header button", + "header a[role='button']", + "[role='banner'] button", + "[role='banner'] a[role='button']", + "button[aria-label*='share' i]", + "button[aria-label*='more' i]", + "button[aria-label*='memory' i]", + "[data-testid*='share' i]", + "[data-testid*='more' i]", + ]; + document.querySelectorAll(selectors.join(",")).forEach((element) => { + const rect = visibleRect(element); + if (!rect) return; + const plausibleRightTopControl = + rect.top <= 82 && + rect.bottom >= 16 && + rect.left >= window.innerWidth * 0.48 && + rect.width <= 180 && + rect.height <= 56; + if (plausibleRightTopControl) boundary = Math.min(boundary, rect.left); + }); + if (boundary === window.innerWidth - TOP_BAR_GAP) { + boundary = Math.max(TOP_BAR_GAP, window.innerWidth - DEFAULT_RIGHT_RESERVE); + } + return Math.max(boundary, 160); +} + +function applyTopBarLayout(panel: HTMLElement): void { + const left = Math.ceil(detectLeftBoundary() + TOP_BAR_GAP); + const right = Math.floor(detectRightBoundary() - TOP_BAR_GAP); + const available = Math.max(PANEL_TINY_WIDTH, right - left); + const preferred = Math.min(PANEL_PREFERRED_WIDTH, Math.floor(window.innerWidth * 0.58)); + const width = Math.max(Math.min(preferred, available), Math.min(PANEL_MIN_WIDTH, available)); + const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 430 ? "compact" : "normal"; + panel.dataset.anchorMode = "topbar_fallback"; + panel.dataset.anchorHealth = "degraded"; + panel.dataset.layout = layout; + panel.style.top = `${PANEL_TOP}px`; + panel.style.left = `${left}px`; + panel.style.right = "auto"; + panel.style.bottom = "auto"; + panel.style.width = `${width}px`; + panel.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + if (typeof panel.style.setProperty === "function") { + panel.style.setProperty("--ion-chatops-modal-left", `${left}px`); + panel.style.setProperty("--ion-chatops-modal-width", `${Math.min(420, available)}px`); + } + positionApprovalModal(); +} + +function viewportHeight(): number { + return Math.floor(window.visualViewport?.height ?? window.innerHeight); +} + +function findComposerInput(): HTMLElement | null { + const selectors = [ + "#prompt-textarea", + "textarea", + "[contenteditable='true'][role='textbox']", + "[contenteditable='true']", + ]; + for (const selector of selectors) { + const node = document.querySelector(selector); + if (!node || isBridgeElement(node)) continue; + const rect = visibleRect(node); + if (rect && rect.top > viewportHeight() * 0.45) return node; + } + return null; +} + +function candidateComposerContainer(input: HTMLElement): HTMLElement { + let best: HTMLElement = input; + let current: HTMLElement | null = input; + let depth = 0; + while (current?.parentElement && depth < 10) { + current = current.parentElement; + depth += 1; + if (isBridgeElement(current)) break; + const rect = visibleRect(current); + if (!rect) continue; + const bottomHalf = rect.top > viewportHeight() * 0.38; + const plausibleWidth = rect.width >= Math.min(360, window.innerWidth * 0.62) && rect.width <= window.innerWidth - 12; + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(260, viewportHeight() * 0.38); + if (bottomHalf && plausibleWidth && plausibleHeight) best = current; + } + return best; +} + +function detectComposerAnchor(): AnchorInfo { + const input = findComposerInput(); + if (!input) { + return { + mode: "topbar_fallback", + rect: null, + health: "degraded", + detail: "Composer anchor not found; using top-bar fallback layout.", + }; + } + const container = candidateComposerContainer(input); + const rect = container.getBoundingClientRect(); + if (!rectIsVisible(rect)) { + return { + mode: "topbar_fallback", + rect: null, + health: "degraded", + detail: "Composer candidate was not visible; using top-bar fallback layout.", + }; + } + return { + mode: "composer", + rect, + health: "ready", + detail: `Composer anchor ready: ${Math.round(rect.left)},${Math.round(rect.top)} ${Math.round(rect.width)}x${Math.round(rect.height)}.`, + }; +} + +function applyComposerLayout(panel: HTMLElement, anchor: AnchorInfo): boolean { + if (anchor.mode !== "composer" || !anchor.rect) return false; + const rect = anchor.rect; + const viewport = viewportHeight(); + const margin = 12; + const left = Math.max(margin, Math.round(rect.left)); + const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); + const width = Math.min(COMPOSER_PANEL_MAX_WIDTH, Math.max(PANEL_MIN_WIDTH, available)); + const bottom = Math.max(10, Math.round(viewport - rect.top + COMPOSER_GAP)); + const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; + panel.dataset.anchorMode = "composer"; + panel.dataset.anchorHealth = anchor.health; + panel.dataset.layout = layout; + panel.style.top = "auto"; + panel.style.left = `${left}px`; + panel.style.right = "auto"; + panel.style.bottom = `${bottom}px`; + panel.style.width = `${Math.min(width, available)}px`; + panel.style.maxWidth = `${available}px`; + positionApprovalModal(); + return true; +} + function ensurePanel(): HTMLElement { ensureStyle(); let panel = document.getElementById(PANEL_ID); @@ -232,29 +496,7 @@ function ensurePanel(): HTMLElement { panel.dataset.expanded = "false"; panel.dataset.tab = "status"; panel.innerHTML = ` -
-
- -
-
ION ChatOps
-
-
-
-
- - - -
-
-
- - - - - - -
@@ -262,6 +504,8 @@ function ensurePanel(): HTMLElement {
+ +
@@ -274,6 +518,16 @@ function ensurePanel(): HTMLElement {
+
+
+
+ + + +
+
+
+
@@ -283,6 +537,31 @@ function ensurePanel(): HTMLElement {
+
+
+ +
+
ION ChatOps
+
+
+
+
+ + + +
+
+
+ + + + + + + + + +
`; document.documentElement.appendChild(panel); panel.querySelector(".ion-toggle")?.addEventListener("click", () => { @@ -291,10 +570,23 @@ function ensurePanel(): HTMLElement { }); panel.querySelectorAll(".ion-tab").forEach((tab) => { tab.addEventListener("click", () => { - panel.dataset.tab = tab.dataset.tab ?? "status"; + const nextTab = tab.dataset.tab ?? "status"; + if (panel.dataset.expanded === "true" && panel.dataset.tab === nextTab) { + panel.dataset.expanded = "false"; + } else { + panel.dataset.expanded = "true"; + panel.dataset.tab = nextTab; + } renderPanel(panel); }); }); + if (typeof document.addEventListener === "function") { + document.addEventListener("keydown", (event) => { + if (event.key !== "Escape") return; + panel.dataset.expanded = "false"; + renderPanel(panel); + }); + } panel.querySelector('[data-tool="rescan"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-rescan")); }); @@ -313,6 +605,12 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="agent-queue"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-agent-queue")); }); + panel.querySelector('[data-tool="agent-preview"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-agent-preview")); + }); + panel.querySelector('[data-tool="agent-latest"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-agent-latest")); + }); panel.querySelector('[data-tool="agent-prepare"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-agent-prepare")); }); @@ -328,6 +626,15 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="safe-full-zip"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-safe-full-zip")); }); + panel.querySelector('[data-tool="sandbox-returns"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-returns")); + }); + panel.querySelector('[data-tool="sandbox-diff"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-diff")); + }); + panel.querySelector('[data-tool="sandbox-review"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-review")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -354,21 +661,43 @@ function renderPanel(panel = ensurePanel()): void { const actionNode = panel.querySelector('[data-field="action"]'); const agentNode = panel.querySelector('[data-field="agent"]'); const packagesNode = panel.querySelector('[data-field="packages"]'); + const sandboxNode = panel.querySelector('[data-field="sandbox"]'); + const automationNode = panel.querySelector('[data-field="automation"]'); + const artifactsNode = panel.querySelector('[data-field="artifacts"]'); const diagnosticsNode = panel.querySelector('[data-field="diagnostics"]'); const toolsNode = panel.querySelector('[data-field="tools"]'); if (statusNode) statusNode.textContent = bridgeState.detail; if (actionNode) actionNode.textContent = bridgeState.action; if (agentNode) agentNode.textContent = bridgeState.agent; if (packagesNode) packagesNode.textContent = bridgeState.packages; - if (diagnosticsNode) diagnosticsNode.textContent = bridgeState.diagnostics; + if (sandboxNode) sandboxNode.textContent = bridgeState.sandbox; + if (automationNode) automationNode.textContent = bridgeState.automation; + if (artifactsNode) artifactsNode.textContent = bridgeState.artifacts; + if (diagnosticsNode) diagnosticsNode.textContent = `${bridgeState.anchor.detail}\n\n${bridgeState.diagnostics}`; if (toolsNode) toolsNode.textContent = `${bridgeState.tools}\n\nRecent:\n${bridgeState.logs.join("\n") || "No events yet."}`; } function positionPanelAboveComposer(panel = ensurePanel()): void { - panel.style.top = "2px"; - panel.style.left = "58px"; - panel.style.right = "auto"; - panel.style.bottom = "auto"; + const anchor = detectComposerAnchor(); + bridgeState.anchor = anchor; + if (!applyComposerLayout(panel, anchor)) applyTopBarLayout(panel); +} + +function positionApprovalModal(modal = document.getElementById(MODAL_ID)): void { + const panel = document.getElementById(PANEL_ID) as HTMLElement | null; + if (!modal || !panel) return; + const rect = panel.getBoundingClientRect(); + const available = Math.max(PANEL_TINY_WIDTH, window.innerWidth - rect.left - TOP_BAR_GAP); + modal.style.left = `${rect.left}px`; + modal.style.width = `${Math.min(420, available)}px`; + modal.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + if (panel.dataset.anchorMode === "composer") { + modal.style.top = "auto"; + modal.style.bottom = `${Math.max(12, viewportHeight() - rect.top + TOP_BAR_GAP)}px`; + } else { + modal.style.bottom = "auto"; + modal.style.top = `${Math.max(48, rect.bottom + TOP_BAR_GAP)}px`; + } } export function setBridgeStatus(title: string, detail = "", tone: BridgeTone = "idle"): void { @@ -394,6 +723,16 @@ export function setBridgePackageDetail(detail: string): void { renderPanel(); } +export function setBridgeSandboxDetail(detail: string): void { + bridgeState.sandbox = detail; + renderPanel(); +} + +export function setBridgeDiagnosticsDetail(detail: string): void { + bridgeState.diagnostics = detail; + renderPanel(); +} + export function appendBridgeLog(entry: string): void { bridgeState.logs.unshift(`${new Date().toLocaleTimeString()} ${entry}`); bridgeState.logs.splice(LOG_LIMIT); @@ -450,6 +789,7 @@ export async function requestApproval(packet: IonActionPacket, validation: Valid modal.querySelector('[data-choice="reject"]')?.addEventListener("click", () => finish(false)); modal.querySelector('[data-choice="approve"]')?.addEventListener("click", () => finish(true)); document.documentElement.appendChild(modal); + positionApprovalModal(modal); }); } @@ -491,6 +831,7 @@ export async function requestBridgeApproval(operation: string, summary: string, modal.querySelector('[data-choice="reject"]')?.addEventListener("click", () => finish(false)); modal.querySelector('[data-choice="approve"]')?.addEventListener("click", () => finish(true)); document.documentElement.appendChild(modal); + positionApprovalModal(modal); }); } diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index adf00384..f18a4978 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -5,7 +5,9 @@ import { refreshBridgePosition, setBridgeActionDetail, setBridgeAgentDetail, + setBridgeDiagnosticsDetail, setBridgePackageDetail, + setBridgeSandboxDetail, setBridgeStatus, } from "./approval_ui"; import { extractIonActionYaml, localValidate, parseIonActionYamlWithDiagnostics, parseStrictIonActionYaml } from "./schema"; @@ -14,6 +16,9 @@ const seen = new Set(); const inFlightActionIds = new Set(); const submittedActionIds = new Set(); const reportedBlockedActionIds = new Set(); +const PANEL_ID = "ion-chatops-bridge-panel"; +const MODAL_ID = "ion-chatops-bridge-approval"; +const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; const ACTION_SCAN_SELECTORS = [ "pre code", @@ -111,6 +116,233 @@ const CODEX_WORK_ACTION = `ion_action: - codex_work_packet_receipt - action_receipt`; +type DomRegistryStats = { + messages: number; + codeBlocks: number; + yamlBlocks: number; + validActions: number; + invalidActions: number; + duplicateActions: number; + composerControls: number; + lastUpdated: string; +}; + +function ensureDomRegistryStyle(): void { + if (document.getElementById(DOM_REGISTRY_STYLE_ID)) return; + const style = document.createElement("style"); + style.id = DOM_REGISTRY_STYLE_ID; + style.textContent = ` + .ion-dom-badge { + position: absolute; + top: 2px; + left: 2px; + z-index: 7; + height: 18px; + max-width: 180px; + padding: 0 5px; + border: 1px solid rgba(255,255,255,0.12); + border-radius: 6px; + background: rgba(32,33,35,0.88); + color: rgba(255,255,255,0.72); + font: 10px/17px ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; + pointer-events: none; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + box-shadow: 0 4px 14px rgba(0,0,0,0.18); + } + .ion-dom-badge[data-tone="valid"] { + border-color: rgba(16,185,129,0.45); + color: rgba(209,250,229,0.94); + } + .ion-dom-badge[data-tone="invalid"], + .ion-dom-badge[data-tone="duplicate"] { + border-color: rgba(251,191,36,0.45); + color: rgba(254,243,199,0.94); + } + [data-ion-code-index] { + outline: 1px solid rgba(255,255,255,0.06); + outline-offset: 2px; + } + [data-ion-yaml-status="valid"] { + outline-color: rgba(16,185,129,0.42); + } + [data-ion-yaml-status="invalid"], + [data-ion-yaml-status="duplicate"] { + outline-color: rgba(251,191,36,0.42); + } + [data-ion-control-role] { + box-shadow: 0 0 0 1px rgba(16,185,129,0.18), 0 0 0 4px rgba(16,185,129,0.05) !important; + } + `; + document.documentElement.appendChild(style); +} + +function registryText(node: Element): string { + const inner = typeof (node as HTMLElement).innerText === "string" ? (node as HTMLElement).innerText : ""; + return inner || node.textContent || ""; +} + +function registryRectVisible(node: Element): boolean { + if (shouldIgnoreScanNode(node)) return false; + const rect = node.getBoundingClientRect(); + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; +} + +function allowRegistryBadge(host: HTMLElement): void { + const currentPosition = window.getComputedStyle(host).position; + if (!currentPosition || currentPosition === "static") host.style.position = "relative"; +} + +function ensureRegistryBadge(host: HTMLElement, kind: string, text: string, tone = "idle"): void { + allowRegistryBadge(host); + const existing = Array.from(host.children).find((child) => (child as HTMLElement).dataset?.ionBadge === kind) as HTMLElement | undefined; + const badge = existing ?? document.createElement("span"); + badge.className = "ion-dom-badge"; + badge.dataset.ionBadge = kind; + badge.dataset.tone = tone; + if (badge.textContent !== text) badge.textContent = text; + if (!existing) host.appendChild(badge); +} + +function uniqueElements(selectors: string): HTMLElement[] { + const elements: HTMLElement[] = []; + const seenElements = new Set(); + document.querySelectorAll(selectors).forEach((node) => { + if (seenElements.has(node) || shouldIgnoreScanNode(node) || !registryRectVisible(node)) return; + seenElements.add(node); + elements.push(node); + }); + return elements; +} + +function annotateMessages(stats: DomRegistryStats): void { + const nodes = uniqueElements("[data-message-author-role], article"); + nodes.forEach((node, index) => { + const role = node.getAttribute("data-message-author-role") || "message"; + node.dataset.ionMessageIndex = String(index + 1); + ensureRegistryBadge(node, "message", `ION msg ${index + 1} ${role}`, "idle"); + }); + stats.messages = nodes.length; +} + +function codeBlockHosts(): HTMLElement[] { + const hosts: HTMLElement[] = []; + const seenHosts = new Set(); + document.querySelectorAll("pre, pre code, code, [class*='font-mono'], [class*='whitespace-pre'], [class*='overflow-x-auto']").forEach((node) => { + if (shouldIgnoreScanNode(node) || !registryRectVisible(node)) return; + const host = (node.closest("pre") as HTMLElement | null) ?? node; + if (seenHosts.has(host) || shouldIgnoreScanNode(host) || !registryRectVisible(host)) return; + seenHosts.add(host); + hosts.push(host); + }); + return hosts; +} + +function annotateCodeBlocks(stats: DomRegistryStats): void { + const actionIds = new Set(); + codeBlockHosts().forEach((host, index) => { + const label = `ION code ${index + 1}`; + host.dataset.ionCodeIndex = String(index + 1); + host.dataset.ionYamlStatus = "none"; + let tone = "idle"; + let badge = label; + const text = registryText(host); + if (ION_ACTION_LINE.test(text) || extractIonActionYaml(text) !== null) { + stats.yamlBlocks += 1; + const parsed = parseIonActionYamlWithDiagnostics(text); + const packet = parsed.packet; + const actionId = packet?.ion_action?.action_id; + if (!packet) { + stats.invalidActions += 1; + tone = "invalid"; + badge = `ION YAML ${index + 1} blocked`; + host.dataset.ionYamlStatus = "invalid"; + host.dataset.ionYamlFinding = parsed.finding ?? "parse_failed"; + } else if (actionId && actionIds.has(actionId)) { + stats.duplicateActions += 1; + tone = "duplicate"; + badge = `ION YAML ${index + 1} duplicate`; + host.dataset.ionYamlStatus = "duplicate"; + host.dataset.ionActionId = actionId; + } else { + if (actionId) actionIds.add(actionId); + const local = localValidate(packet); + host.dataset.ionActionId = actionId ?? ""; + if (local.accepted) { + stats.validActions += 1; + tone = "valid"; + badge = `ION YAML ${index + 1} ok`; + host.dataset.ionYamlStatus = "valid"; + } else { + stats.invalidActions += 1; + tone = "invalid"; + badge = `ION YAML ${index + 1} blocked`; + host.dataset.ionYamlStatus = "invalid"; + host.dataset.ionYamlFinding = local.findings.join("|"); + } + } + } + ensureRegistryBadge(host, "code", badge, tone); + }); + stats.codeBlocks = codeBlockHosts().length; +} + +function annotateComposerControls(stats: DomRegistryStats): void { + const composer = findComposer(); + const composerRect = composer?.getBoundingClientRect(); + const controls = uniqueElements("button, input[type='file']").filter((node) => { + const rect = node.getBoundingClientRect(); + const nearComposer = composerRect ? Math.abs(rect.top - composerRect.top) < 180 || Math.abs(rect.bottom - composerRect.bottom) < 180 : false; + const label = `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""}`.toLowerCase(); + return nearComposer || /send|attach|upload|file|voice|mic|stop|plus/.test(label); + }); + controls.forEach((node) => { + const label = `${node.getAttribute("aria-label") ?? node.getAttribute("data-testid") ?? node.tagName}`.toLowerCase(); + const role = + label.includes("send") ? "send" : + label.includes("attach") || label.includes("upload") || label.includes("file") || label.includes("plus") ? "attach" : + label.includes("mic") || label.includes("voice") ? "voice" : + label.includes("stop") ? "stop" : + "composer"; + node.dataset.ionControlRole = role; + }); + stats.composerControls = controls.length; +} + +function updateDomActionRegistry(): DomRegistryStats { + ensureDomRegistryStyle(); + const stats: DomRegistryStats = { + messages: 0, + codeBlocks: 0, + yamlBlocks: 0, + validActions: 0, + invalidActions: 0, + duplicateActions: 0, + composerControls: 0, + lastUpdated: new Date().toLocaleTimeString(), + }; + annotateMessages(stats); + annotateCodeBlocks(stats); + annotateComposerControls(stats); + setBridgeDiagnosticsDetail( + [ + "DOM action registry", + `messages: ${stats.messages}`, + `code_blocks: ${stats.codeBlocks}`, + `ion_yaml_blocks: ${stats.yamlBlocks}`, + `valid_actions: ${stats.validActions}`, + `invalid_actions: ${stats.invalidActions}`, + `duplicate_actions: ${stats.duplicateActions}`, + `composer_controls: ${stats.composerControls}`, + `last_updated: ${stats.lastUpdated}`, + "", + "Automation markers are visual only. They do not click, submit, upload, or mutate ION state.", + ].join("\n"), + ); + return stats; +} + function shouldIgnoreScanNode(node: Element): boolean { if (typeof node.closest !== "function") return false; return Boolean( @@ -276,6 +508,74 @@ function requestAgentMutation(type: "ion_chatops_agent_prepare_next" | "ion_chat }); } +function inactiveQueueStatus(status: string): boolean { + return /SUPERSEDED|FULFILLED|INVALID|ARCHIVE_ONLY|SETTLED|DUPLICATE|BLOCKED|CANCELLED/i.test(status); +} + +function firstActionableRequest(queue: any): any | null { + const rows = Array.isArray(queue?.requests) ? queue.requests : []; + return rows.find((row: any) => !inactiveQueueStatus(String(row?.status ?? ""))) ?? null; +} + +function requestAgentPreview(): void { + setBridgeStatus("Agent preview", "Reading queue/status before any Codex mutation.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_agent_status" }, (statusResponse) => { + chrome.runtime.sendMessage({ type: "ion_chatops_agent_queue" }, async (queueResponse) => { + if (!statusResponse?.ok || !queueResponse?.ok) { + const detail = !statusResponse?.ok ? blockedDetail(statusResponse) : blockedDetail(queueResponse); + setBridgeAgentDetail(detail); + setBridgeStatus("Agent preview blocked", detail, "error"); + return; + } + const status = statusResponse.result; + const queue = queueResponse.result; + const request = firstActionableRequest(queue); + const detail = [ + "Codex agent preview", + `runner_verdict: ${status?.verdict ?? ""}`, + `queued_request_count: ${status?.queued_request_count ?? 0}`, + `active_process_running: ${Boolean(status?.active_process_running)}`, + `next_request_path: ${status?.next_request_path ?? "none"}`, + request + ? `next_actionable_request: ${request.request_id ?? ""}\nstatus: ${request.status ?? ""}\nobjective: ${request.objective ?? ""}` + : "next_actionable_request: none", + "", + "Preview only. No Codex worker was prepared or started.", + ].join("\n"); + setBridgeAgentDetail(detail); + setBridgeStatus("Agent preview ready", detail.split("\n")[1] ?? "", "success"); + await copyBridgeResult("Agent preview", detail); + }); + }); +} + +function requestAgentLatestRuns(): void { + setBridgeStatus("Latest Codex runs", "Reading latest Codex queue runner receipts.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_agent_status" }, async (response) => { + if (!response?.ok) { + const detail = blockedDetail(response); + setBridgeAgentDetail(detail); + setBridgeStatus("Latest Codex runs blocked", detail, "error"); + return; + } + const runs = Array.isArray(response.result?.latest_runs) ? response.result.latest_runs : []; + const detail = runs.length + ? runs + .slice(0, 6) + .map((run: any, index: number) => [ + `#${index + 1} ${run.status ?? ""}`, + `run_id: ${run.run_id ?? ""}`, + `request_id: ${run.request_id ?? ""}`, + `path: ${run.path ?? ""}`, + ].join("\n")) + .join("\n\n") + : "No Codex queue runs found."; + setBridgeAgentDetail(detail); + setBridgeStatus("Latest Codex runs ready", runs[0]?.status ?? "No runs found.", "success"); + await copyBridgeResult("Latest Codex runs", detail); + }); +} + function requestContextPack(): void { setBridgeStatus("Context pack", "Fetching current ION/agent context from local daemon.", "working"); chrome.runtime.sendMessage({ type: "ion_chatops_context_pack" }, (response) => { @@ -308,6 +608,41 @@ function requestZip(type: "ion_chatops_compact_zip" | "ion_chatops_safe_full_zip }); } +function latestSandboxReturnId(result: any): string | null { + const rows = Array.isArray(result?.returns) ? result.returns : []; + const first = rows.find((row: any) => typeof row?.return_id === "string" && row.return_id.trim()); + return first?.return_id ?? null; +} + +function requestSandboxReturns(): void { + setBridgeStatus("Sandbox returns", "Fetching ChatGPT sandbox return queue.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_sandbox_returns" }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeSandboxDetail(detail); + setBridgeStatus(response?.ok ? "Sandbox returns ready" : "Sandbox returns blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult("Sandbox returns", detail); + }); +} + +function requestSandboxMutation(type: "ion_chatops_sandbox_diff_latest" | "ion_chatops_sandbox_queue_latest", label: string): void { + setBridgeStatus(label, "Requesting latest sandbox return projection before approval.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_sandbox_returns" }, (queueResponse) => { + const returnId = latestSandboxReturnId(queueResponse?.result); + if (!queueResponse?.ok || !returnId) { + const detail = queueResponse?.ok ? "No sandbox returns are available." : blockedDetail(queueResponse); + setBridgeSandboxDetail(detail); + setBridgeStatus(`${label} blocked`, detail, "error"); + return; + } + chrome.runtime.sendMessage({ type, payload: { return_id: returnId } }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeSandboxDetail(detail); + setBridgeStatus(response?.ok ? `${label} submitted` : `${label} blocked`, detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult(label, detail); + }); + }); +} + function actionSummary(packet: ReturnType): string { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -382,6 +717,7 @@ function submitActionText(label: string, text: string): void { function scan(): number { refreshBridgePosition(); + updateDomActionRegistry(); let processed = 0; for (const block of candidateBlocks()) { const key = `${block.length}:${block.slice(0, 160)}`; @@ -459,7 +795,9 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { parseStrictIonActionYaml, localValidate, candidateBlocks, + updateDomActionRegistry, submitActionText, + refreshBridgePosition, rescan: () => { seen.clear(); return scan(); @@ -469,6 +807,17 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { const observer = new MutationObserver(() => scan()); observer.observe(document.documentElement, { childList: true, subtree: true }); window.addEventListener("resize", () => refreshBridgePosition()); +if (typeof document.addEventListener === "function") { + document.addEventListener("transitionend", () => refreshBridgePosition(), true); + document.addEventListener( + "click", + () => { + window.setTimeout(() => refreshBridgePosition(), 60); + window.setTimeout(() => refreshBridgePosition(), 260); + }, + true, + ); +} window.addEventListener("ion-chatops-rescan", () => { seen.clear(); setBridgeStatus("Manual rescan", "Scanning rendered ChatGPT code blocks.", "working"); @@ -496,6 +845,12 @@ window.addEventListener("ion-chatops-agent-status", () => { window.addEventListener("ion-chatops-agent-queue", () => { requestAgentRead("ion_chatops_agent_queue", "Agent queue"); }); +window.addEventListener("ion-chatops-agent-preview", () => { + requestAgentPreview(); +}); +window.addEventListener("ion-chatops-agent-latest", () => { + requestAgentLatestRuns(); +}); window.addEventListener("ion-chatops-agent-prepare", () => { requestAgentMutation("ion_chatops_agent_prepare_next", "Agent prepare next"); }); @@ -511,5 +866,14 @@ window.addEventListener("ion-chatops-compact-zip", () => { window.addEventListener("ion-chatops-safe-full-zip", () => { requestZip("ion_chatops_safe_full_zip", "Safe full project ZIP"); }); +window.addEventListener("ion-chatops-sandbox-returns", () => { + requestSandboxReturns(); +}); +window.addEventListener("ion-chatops-sandbox-diff", () => { + requestSandboxMutation("ion_chatops_sandbox_diff_latest", "Sandbox diff preview"); +}); +window.addEventListener("ion-chatops-sandbox-review", () => { + requestSandboxMutation("ion_chatops_sandbox_queue_latest", "Sandbox queue review"); +}); setBridgeStatus("Monitoring ChatGPT", "Waiting for ion_action YAML blocks.", "idle"); scan(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index 9e59e5e2..81232d58 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -76,12 +76,15 @@ const byId = new Map(); class Element { constructor(tag) { this.tag = tag; + this.tagName = tag.toUpperCase(); this.children = []; this.dataset = {}; this.attributes = {}; this.style = {}; this.textContent = ""; this.innerText = ""; + this.parentElement = null; + this.rect = { top: 800, left: 0, right: 640, bottom: 840, width: 640, height: 40 }; this._id = ""; this._innerHTML = ""; this.classNodes = new Map(); @@ -107,8 +110,13 @@ class Element { this.attributes[key] = value; } + getAttribute(key) { + return this.attributes[key] ?? null; + } + appendChild(child) { this.children.push(child); + child.parentElement = this; if (child.id) byId.set(child.id, child); return child; } @@ -122,7 +130,7 @@ class Element { } getBoundingClientRect() { - return { top: 800 }; + return this.rect; } addEventListener() {} @@ -155,6 +163,10 @@ const context = { }, window: { innerHeight: 1000, + innerWidth: 1000, + getComputedStyle() { + return { display: "block", visibility: "visible", opacity: "1" }; + }, addEventListener() {}, dispatchEvent() {}, }, @@ -189,6 +201,21 @@ vm.runInContext( if (!byId.has("ion-chatops-bridge-panel")) { throw new Error("status panel did not render"); } +const composerContainer = new Element("form"); +composerContainer.rect = { top: 820, left: 190, right: 810, bottom: 910, width: 620, height: 90 }; +const composer = new Element("div"); +composer.id = "prompt-textarea"; +composer.rect = { top: 850, left: 220, right: 780, bottom: 890, width: 560, height: 40 }; +composerContainer.appendChild(composer); +context.document.querySelector = (selector) => (selector === "#prompt-textarea" ? composer : null); +context.window.__ION_CHATOPS_BRIDGE_DEBUG__.refreshBridgePosition(); +const panel = byId.get("ion-chatops-bridge-panel"); +if (panel.dataset.anchorMode !== "composer") { + throw new Error("composer anchor layout did not activate"); +} +if (!String(panel.style.bottom || "").endsWith("px")) { + throw new Error("composer anchored panel did not set bottom offset"); +} if (!sent || sent.type !== "ion_chatops_candidate") { throw new Error("candidate was not sent"); } @@ -269,6 +296,31 @@ if (!pageFallbackBlocks.some((block) => block.includes("sev-20260505-rendered-co throw new Error("page fallback missed later concrete ion_action block"); } +const registryMessage = new Element("article"); +registryMessage.setAttribute("data-message-author-role", "assistant"); +registryMessage.rect = { top: 240, left: 190, right: 810, bottom: 340, width: 620, height: 100 }; +const registryCode = new Element("pre"); +registryCode.textContent = renderedCodeBlockYaml; +registryCode.innerText = renderedCodeBlockYaml; +registryCode.rect = { top: 360, left: 210, right: 790, bottom: 500, width: 580, height: 140 }; +const registryButton = new Element("button"); +registryButton.setAttribute("aria-label", "Send message"); +registryButton.rect = { top: 860, left: 760, right: 800, bottom: 900, width: 40, height: 40 }; +context.document.querySelector = (selector) => (selector === "#prompt-textarea" ? composer : null); +context.document.querySelectorAll = (selector) => { + if (selector === "[data-message-author-role], article") return [registryMessage]; + if (selector === "pre, pre code, code, [class*='font-mono'], [class*='whitespace-pre'], [class*='overflow-x-auto']") return [registryCode]; + if (selector === "button, input[type='file']") return [registryButton]; + return []; +}; +const registryStats = context.window.__ION_CHATOPS_BRIDGE_DEBUG__.updateDomActionRegistry(); +if (registryStats.messages !== 1) throw new Error("DOM registry did not count messages"); +if (registryStats.codeBlocks !== 1) throw new Error("DOM registry did not count code blocks"); +if (registryStats.validActions !== 1) throw new Error("DOM registry did not mark valid YAML action"); +if (registryStats.composerControls !== 1) throw new Error("DOM registry did not mark composer controls"); +if (registryCode.dataset.ionYamlStatus !== "valid") throw new Error("DOM registry did not set valid YAML status"); +if (registryButton.dataset.ionControlRole !== "send") throw new Error("DOM registry did not classify send control"); + console.log(JSON.stringify({ ok: true, panel: true, @@ -280,4 +332,5 @@ console.log(JSON.stringify({ assistant_container_detected: assistantBlocks.length, rendered_dom_detected: renderedBlocks.length, page_fallback_blocks: pageFallbackBlocks.length, + dom_registry: registryStats, })); From 4eed0d624a27c359c6b864eb7d954f210365cf53 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:01:41 -0400 Subject: [PATCH 11/30] Restore JOC cockpit shell support files --- .../AutomationOverlayPanel.tsx | 30 + .../CognitiveExplorerPanel.tsx | 50 ++ .../DispatchAuthorizationPanel.tsx | 55 ++ .../DryRunDispatchHandoffPanel.tsx | 11 + .../joc_cockpit_shell/GovernorVerdictRail.tsx | 37 + .../InfiniteContextCommandPalette.tsx | 23 + .../MissionDispatchRouterPanel.tsx | 54 ++ .../ModelRouteMatrixPanel.tsx | 20 + .../OperatorApprovalQueuePanel.tsx | 37 + .../ReactiveOsStreamPanel.tsx | 44 ++ .../dispatch-authorization.css | 135 ++++ .../dispatchAuthorizationTypes.ts | 75 ++ ION/08_ui/joc_cockpit_shell/icons.tsx | 36 + ION/08_ui/joc_cockpit_shell/joc-cockpit.css | 707 ++++++++++++++++++ .../joc_cockpit_shell/operator-approval.css | 16 + .../operatorApprovalTypes.ts | 69 ++ .../joc_cockpit_shell/projectionFixtures.ts | 116 +++ ION/08_ui/joc_cockpit_shell/reactiveTypes.ts | 93 +++ 18 files changed, 1608 insertions(+) create mode 100644 ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/CognitiveExplorerPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/DispatchAuthorizationPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/DryRunDispatchHandoffPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/GovernorVerdictRail.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/InfiniteContextCommandPalette.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/MissionDispatchRouterPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/ModelRouteMatrixPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/OperatorApprovalQueuePanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/dispatch-authorization.css create mode 100644 ION/08_ui/joc_cockpit_shell/dispatchAuthorizationTypes.ts create mode 100644 ION/08_ui/joc_cockpit_shell/icons.tsx create mode 100644 ION/08_ui/joc_cockpit_shell/joc-cockpit.css create mode 100644 ION/08_ui/joc_cockpit_shell/operator-approval.css create mode 100644 ION/08_ui/joc_cockpit_shell/operatorApprovalTypes.ts create mode 100644 ION/08_ui/joc_cockpit_shell/projectionFixtures.ts create mode 100644 ION/08_ui/joc_cockpit_shell/reactiveTypes.ts diff --git a/ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx b/ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx new file mode 100644 index 00000000..431eaf19 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx @@ -0,0 +1,30 @@ +import type { ReactiveStreamEvent } from './reactiveTypes'; + +export function AutomationOverlayPanel({ events }: { events: ReactiveStreamEvent[] }) { + const sessionEvents = events.filter((event) => event.loopId === 'SESSION_HEALTH_LOOP'); + const blocked = Array.from(new Set(sessionEvents.flatMap((event) => event.blockedCapabilities))); + return ( +
+
BROWSER SESSION AUTOMATION OVERLAY
+
+ + + + +
+
+
INJECTION TARGET
+
EXTRACTION TARGET
+
DOM HEALTH GATE
+
+
BLOCKED AUTOMATION CAPABILITIES
+
+ {blocked.map((cap) => {cap})} +
+
+ ); +} + +function OverlayMetric({ label, value }: { label: string; value: string }) { + return
{label}{value}
; +} diff --git a/ION/08_ui/joc_cockpit_shell/CognitiveExplorerPanel.tsx b/ION/08_ui/joc_cockpit_shell/CognitiveExplorerPanel.tsx new file mode 100644 index 00000000..a76d66ed --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/CognitiveExplorerPanel.tsx @@ -0,0 +1,50 @@ +import type { CognitiveRouteViewModel } from './reactiveTypes'; + +export function CognitiveExplorerPanel({ route }: { route: CognitiveRouteViewModel }) { + return ( +
+
+ COGNITIVE EXPLORER + {route.verdict} +
+
{route.query}
+
+ {route.routeClasses.map((routeClass) => {routeClass})} +
+
+
+
SELECTED CONTEXT
+ {route.selectedNodes.map((node) => ( +
+
{node.nodeClass}{node.confidence}
+ {node.label} + {node.path} + {node.symbol || 'path'} - {node.lineRange} +
+ ))} +
+
+
DEPENDENCY WEB
+ {route.dependencyEdges.map((edge) => ( +
+ {edge.source} + {edge.edgeClass} + {edge.target} + {edge.evidenceRef} +
+ ))} +
+
+
+
+
ROUTE REASONING
+

{route.routeReasoning}

+
+
+
SOURCE LINE RAIL
+
    {route.sourceCitations.map((citation) =>
  • {citation}
  • )}
+
+
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/DispatchAuthorizationPanel.tsx b/ION/08_ui/joc_cockpit_shell/DispatchAuthorizationPanel.tsx new file mode 100644 index 00000000..1db8a8f4 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/DispatchAuthorizationPanel.tsx @@ -0,0 +1,55 @@ +import { dispatchAuthorizationFixture, type DispatchAuthorizationViewModel } from './dispatchAuthorizationTypes'; +import { GovernorVerdictRail } from './GovernorVerdictRail'; + +export function DispatchAuthorizationPanel({ + model = dispatchAuthorizationFixture, +}: { + model?: DispatchAuthorizationViewModel; +}) { + const blocked = model.authorization_verdict.startsWith('BLOCKED'); + + return ( +
+
+
+ MISSION AUTHORIZATION +

{model.mission_id}

+
+ + {model.authorization_verdict} + +
+ +
+
TARGET{model.selected_target}
+
RING{model.compute_ring}
+
ACCESS{model.access_method}
+
CLAIM{model.claim_lane}
+
COST${model.estimated_cost_usd.toFixed(2)}
+
QUALITY{model.quality_band}
+
+ + + + {model.blocked_capabilities.length > 0 && ( +
+ BLOCKED CAPABILITIES + {model.blocked_capabilities.map((capability) => ( + {capability} + ))} +
+ )} + +
+ OPERATOR REASON +

{model.operator_reason}

+ NEXT REQUIRED ACTION +

{model.next_required_action}

+
+ +
+ PROJECTION ONLY / NO LIVE DISPATCH / NO PRODUCTION AUTHORITY +
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/DryRunDispatchHandoffPanel.tsx b/ION/08_ui/joc_cockpit_shell/DryRunDispatchHandoffPanel.tsx new file mode 100644 index 00000000..444fa2e8 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/DryRunDispatchHandoffPanel.tsx @@ -0,0 +1,11 @@ +import { operatorApprovalFixture, type OperatorApprovalQueueViewModel } from './operatorApprovalTypes'; + +export function DryRunDispatchHandoffPanel({ model = operatorApprovalFixture }: { model?: OperatorApprovalQueueViewModel }) { + return ( +
+
DRY-RUN HANDOFF PREVIEW
+
{JSON.stringify(model.dry_run_handoff_preview, null, 2)}
+
external_model_call_authorized=false / live_dispatch_claim=false / production_authority=false
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/GovernorVerdictRail.tsx b/ION/08_ui/joc_cockpit_shell/GovernorVerdictRail.tsx new file mode 100644 index 00000000..19989a67 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/GovernorVerdictRail.tsx @@ -0,0 +1,37 @@ +import type { DispatchAuthorizationViewModel } from './dispatchAuthorizationTypes'; + +function verdictClass(value: string): string { + if (value.includes('BLOCK') || value.includes('EXCEEDED') || value.includes('FORBIDDEN')) return 'is-blocked'; + if (value.includes('SUPERVISED') || value.includes('REQUIRED')) return 'is-supervised'; + return 'is-clear'; +} + +export function GovernorVerdictRail({ model }: { model: DispatchAuthorizationViewModel }) { + const rows = [ + ['BUDGET', model.budget_governor_verdict], + ['API RATE', model.api_rate_governor_verdict], + ['CAPABILITY', model.capability_policy_verdict], + ['APPROVAL', model.approval_mode], + ['AUTHORITY', model.authority_scope], + ]; + + return ( +
+
GOVERNOR VERDICTS
+
+ {rows.map(([label, value]) => ( +
+ {label} + {value} +
+ ))} +
+
+ EVIDENCE + {model.evidence_refs.map((ref) => ( + {ref} + ))} +
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/InfiniteContextCommandPalette.tsx b/ION/08_ui/joc_cockpit_shell/InfiniteContextCommandPalette.tsx new file mode 100644 index 00000000..6f11b214 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/InfiniteContextCommandPalette.tsx @@ -0,0 +1,23 @@ +import type { CognitiveRouteViewModel } from './reactiveTypes'; + +export function InfiniteContextCommandPalette({ route }: { route: CognitiveRouteViewModel }) { + return ( +
+
+ INFINITE CONTEXT COMMAND PALETTE + PREVIEW ONLY +
+
+ CMD+K + > {route.query} +
+
+
INJECTION PREVIEW
+

{route.injectionPreview}

+
+
+ {route.blockedCapabilities.map((capability) => {capability})} +
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/MissionDispatchRouterPanel.tsx b/ION/08_ui/joc_cockpit_shell/MissionDispatchRouterPanel.tsx new file mode 100644 index 00000000..71643c41 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/MissionDispatchRouterPanel.tsx @@ -0,0 +1,54 @@ +import type { MissionDispatchRouteViewModel, MissionRouteTarget } from './reactiveTypes'; + +export function MissionDispatchRouterPanel({ route }: { route: MissionDispatchRouteViewModel }) { + const targets = [route.primaryTarget, ...route.fallbackTargets]; + return ( +
+
MISSION DISPATCH ROUTER
+
+
+

{route.missionId}

+

{route.missionTitle}

+
+ {route.verdict} +
+
+ + + +
+
+ {targets.map((target) => )} +
+
+
ROUTE REASONING
+

{route.routeReasoning}

+
+
+
DISPATCH RECEIPT PREVIEW
+

{route.dispatchReceiptPreview}

+
+
+ ); +} + +function TargetCard({ target, primary }: { target: MissionRouteTarget; primary: boolean }) { + return ( +
+
{target.computeRing}{target.status}
+

{target.displayName}

+
+ {target.accessMethod} + {target.costBand} + {target.latencyBand} + {target.qualityBand} +
+
{target.capabilityTags.map((tag) => {tag})}
+ {target.riskNotes.length > 0 &&

{target.riskNotes.join(' - ')}

} +
+ ); +} + +function Metric({ label, value }: { label: string; value: string }) { + return
{label}{value}
; +} diff --git a/ION/08_ui/joc_cockpit_shell/ModelRouteMatrixPanel.tsx b/ION/08_ui/joc_cockpit_shell/ModelRouteMatrixPanel.tsx new file mode 100644 index 00000000..af85ac8f --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/ModelRouteMatrixPanel.tsx @@ -0,0 +1,20 @@ +import type { MissionDispatchRouteViewModel } from './reactiveTypes'; + +export function ModelRouteMatrixPanel({ route }: { route: MissionDispatchRouteViewModel }) { + return ( +
+
MODEL ROUTE MATRIX
+
+ {route.routeFactors.map((factor) => ( +
+ {factor.factorId} + {factor.value} +

{factor.rationale}

+
+ ))} +
+
BLOCKED DISPATCH CAPABILITIES
+
{route.blockedCapabilities.map((cap) => {cap})}
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/OperatorApprovalQueuePanel.tsx b/ION/08_ui/joc_cockpit_shell/OperatorApprovalQueuePanel.tsx new file mode 100644 index 00000000..806ce5fe --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/OperatorApprovalQueuePanel.tsx @@ -0,0 +1,37 @@ +import { operatorApprovalFixture, type OperatorApprovalQueueViewModel } from './operatorApprovalTypes'; + +export function OperatorApprovalQueuePanel({ model = operatorApprovalFixture }: { model?: OperatorApprovalQueueViewModel }) { + const blocked = model.approval_verdict.startsWith('BLOCKED') || model.approval_verdict === 'OPERATOR_DENIED'; + return ( +
+
+
+ OPERATOR APPROVAL QUEUE +

{model.mission_id}

+
+ {model.approval_verdict} +
+
+
TARGET{model.selected_target}
+
DECISION{model.operator_decision}
+
MODE{model.execution_mode}
+
COST${model.estimated_cost_usd.toFixed(2)}
+
LATENCY{model.estimated_latency_band}
+
QUALITY{model.quality_band}
+
+
+ REQUEST +

{model.requested_action_summary}

+ OPERATOR REASON +

{model.operator_reason}

+ NEXT REQUIRED ACTION +

{model.next_required_action}

+
+
+ APPROVAL EVIDENCE + {model.approval_evidence_refs.map((ref) => {ref})} +
+
APPROVAL QUEUE ONLY / DRY-RUN HANDOFF ONLY / NO LIVE DISPATCH
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx b/ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx new file mode 100644 index 00000000..343be26f --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx @@ -0,0 +1,44 @@ +import type { ReactiveStreamEvent } from './reactiveTypes'; +import { loopCoverage } from './reactiveTypes'; + +const requiredLoops = [ + 'VISUAL_ISSUE_CLOSURE_LOOP', + 'MISSION_DISPATCH_LOOP', + 'SESSION_HEALTH_LOOP', + 'CONTEXT_PROJECTION_LOOP', + 'CONVERSATIONAL_REPAIR_LOOP', + 'MODEL_COST_QUALITY_LOOP', +]; + +export function ReactiveOsStreamPanel({ events }: { events: ReactiveStreamEvent[] }) { + const coverage = loopCoverage(events, requiredLoops); + return ( +
+
REACTIVE OS STREAM
+
+ LOOP COVERAGE + {coverage.map((item) => ( + {item.loop} + ))} +
+
+ {events.map((event) => ( +
+
+ + {event.loopId} + {event.claimLane} +
+
{event.phase} / {event.status}
+

{event.detail}

+
+ {event.evidenceRefs.map((ref) => {ref})} + {event.blockedCapabilities.map((cap) => {cap})} +
+
{event.authorityScope}
+
+ ))} +
+
+ ); +} diff --git a/ION/08_ui/joc_cockpit_shell/dispatch-authorization.css b/ION/08_ui/joc_cockpit_shell/dispatch-authorization.css new file mode 100644 index 00000000..025365b9 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/dispatch-authorization.css @@ -0,0 +1,135 @@ +.ion-dispatch-auth-panel, +.ion-governor-rail { + background: #0e0e0e; + border: 1px solid #1e1e1e; + color: #cccccc; + font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace); + border-radius: 2px; + padding: 10px; +} + +.ion-panel-header { + display: flex; + justify-content: space-between; + align-items: flex-start; + gap: 12px; + border-bottom: 1px solid #1e1e1e; + padding-bottom: 8px; + margin-bottom: 10px; +} + +.ion-panel-header h2 { + margin: 2px 0 0; + font-size: 14px; + line-height: 1; + letter-spacing: 1px; + font-weight: 700; +} + +.ion-kicker, +.ion-label, +.ion-section-header { + display: block; + color: #555555; + font-size: 8px; + line-height: 1.3; + font-weight: 700; + letter-spacing: 1px; + text-transform: uppercase; +} + +.ion-section-header { + font-size: 9px; + margin-bottom: 8px; +} + +.ion-route-summary-grid, +.ion-governor-grid { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 6px; + margin-bottom: 10px; +} + +.ion-route-summary-grid > div, +.ion-governor-row { + min-height: 36px; + background: #111111; + border: 1px solid #1e1e1e; + padding: 6px; +} + +.ion-route-summary-grid strong { + display: block; + margin-top: 3px; + font-size: 10px; + font-weight: 700; + color: #cccccc; + text-transform: uppercase; + letter-spacing: .5px; +} + +.ion-badge { + display: inline-flex; + align-items: center; + min-height: 18px; + padding: 2px 6px; + border: 1px solid #2a2a2a; + background: #111111; + color: #aaaaaa; + font-size: 8px; + font-weight: 700; + letter-spacing: .8px; + text-transform: uppercase; + border-radius: 2px; +} + +.ion-badge.is-clear { color: #33cc66; border-color: rgba(51,204,102,.35); } +.ion-badge.is-supervised { color: #cc9900; border-color: rgba(204,153,0,.4); } +.ion-badge.is-blocked { color: #cc3333; border-color: rgba(204,51,51,.45); } + +.ion-evidence-list, +.ion-blocked-capabilities, +.ion-operator-reason { + background: #0a0a0a; + border: 1px solid #1e1e1e; + padding: 8px; + margin-top: 8px; +} + +.ion-evidence-list code { + display: block; + color: #aaaaaa; + font-size: 8px; + line-height: 1.45; + word-break: break-all; + margin-top: 4px; +} + +.ion-blocked-capabilities { + display: flex; + flex-wrap: wrap; + gap: 6px; +} + +.ion-blocked-capabilities .ion-label { + flex-basis: 100%; +} + +.ion-operator-reason p { + margin: 4px 0 8px; + color: #aaaaaa; + font-size: 10px; + line-height: 1.5; +} + +.ion-non-authority-footer { + margin-top: 10px; + border-top: 1px solid #1e1e1e; + padding-top: 8px; + color: #555555; + font-size: 8px; + font-weight: 700; + letter-spacing: 1px; + text-transform: uppercase; +} diff --git a/ION/08_ui/joc_cockpit_shell/dispatchAuthorizationTypes.ts b/ION/08_ui/joc_cockpit_shell/dispatchAuthorizationTypes.ts new file mode 100644 index 00000000..840c99ee --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/dispatchAuthorizationTypes.ts @@ -0,0 +1,75 @@ +export type AuthorizationVerdict = + | 'AUTHORIZATION_PREVIEW_READY' + | 'NEEDS_SUPERVISED_APPROVAL' + | 'BLOCKED_BY_BUDGET' + | 'BLOCKED_BY_API_RATE_LIMIT' + | 'BLOCKED_BY_FORBIDDEN_CAPABILITY' + | 'BLOCKED_BY_MISSING_GOVERNOR_EVIDENCE' + | 'BLOCKED_BY_CLAIM_REVIEW' + | 'BLOCKED_BY_PRODUCTION_BOUNDARY'; + +export type ApprovalMode = + | 'AUTO_FORBIDDEN' + | 'SUPERVISED_REQUIRED' + | 'MANUAL_ONLY' + | 'VIEW_ONLY_BLOCKED'; + +export interface DispatchAuthorizationViewModel { + version: 'V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL'; + mission_id: string; + route_preview_id: string; + selected_target: string; + compute_ring: string; + access_method: string; + task_class: string; + claim_lane: string; + authorization_verdict: AuthorizationVerdict; + authority_scope: 'DISPATCH_AUTHORIZATION_VIEW_MODEL_RECEIPT_ONLY'; + approval_mode: ApprovalMode; + budget_governor_verdict: string; + api_rate_governor_verdict: string; + capability_policy_verdict: string; + estimated_cost_usd: number; + estimated_latency_band: string; + quality_band: string; + blocked_capabilities: string[]; + route_factors: string[]; + evidence_refs: string[]; + operator_reason: string; + next_required_action: string; + production_authority: false; + live_dispatch_claim: false; +} + +export const dispatchAuthorizationFixture: DispatchAuthorizationViewModel = { + version: 'V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL', + mission_id: 'M-061', + route_preview_id: 'route-preview-v59-001', + selected_target: 'gemini-cli', + compute_ring: 'RING_2_API_CLI_LOCAL', + access_method: 'cli', + task_class: 'context_route_analysis', + claim_lane: 'C2', + authorization_verdict: 'NEEDS_SUPERVISED_APPROVAL', + authority_scope: 'DISPATCH_AUTHORIZATION_VIEW_MODEL_RECEIPT_ONLY', + approval_mode: 'SUPERVISED_REQUIRED', + budget_governor_verdict: 'BUDGET_WITHIN_LIMITS', + api_rate_governor_verdict: 'API_RATE_WITHIN_LIMITS', + capability_policy_verdict: 'CAPABILITY_ALLOWED_WITH_SUPERVISION', + estimated_cost_usd: 0.02, + estimated_latency_band: 'interactive_seconds', + quality_band: 'high', + blocked_capabilities: [], + route_factors: ['cost', 'latency', 'quality', 'context_window'], + evidence_refs: [ + 'ION/03_registry/model_budget_policy.yaml', + 'ION/03_registry/api_rate_governor_policy.yaml', + 'ION/04_packages/kernel/joc_mission_dispatch_route_view_model.py', + ], + operator_reason: + 'Governors allow route preview to request supervised approval; no live dispatch authority is granted.', + next_required_action: + 'Present to operator with budget/rate/capability evidence and require explicit approval before execution.', + production_authority: false, + live_dispatch_claim: false, +}; diff --git a/ION/08_ui/joc_cockpit_shell/icons.tsx b/ION/08_ui/joc_cockpit_shell/icons.tsx new file mode 100644 index 00000000..e1946883 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/icons.tsx @@ -0,0 +1,36 @@ +import type { SVGProps } from 'react'; + +const base = { + width: 16, + height: 16, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + strokeWidth: 1.7, + strokeLinecap: 'round' as const, + strokeLinejoin: 'round' as const, +}; + +export function WorkSurfaceIcon(props: SVGProps) { + return ; +} + +export function ReceiptIcon(props: SVGProps) { + return ; +} + +export function LensIcon(props: SVGProps) { + return ; +} + +export function StreamIcon(props: SVGProps) { + return ; +} + +export function RouteIcon(props: SVGProps) { + return ; +} + +export function GraphIcon(props: SVGProps) { + return ; +} diff --git a/ION/08_ui/joc_cockpit_shell/joc-cockpit.css b/ION/08_ui/joc_cockpit_shell/joc-cockpit.css new file mode 100644 index 00000000..ddf5d243 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/joc-cockpit.css @@ -0,0 +1,707 @@ +:root { + --ion-bg: #0a0a0a; + --ion-surface: #0e0e0e; + --ion-panel: #111111; + --ion-border: #1e1e1e; + --ion-border-active: #444444; + --ion-text: #cccccc; + --ion-text-secondary: #aaaaaa; + --ion-text-muted: #555555; + --ion-ok: #33cc66; + --ion-watch: #cc9900; + --ion-blocked: #cc3333; + --ion-font: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace); +} + +.ion-joc-shell { + min-height: 100vh; + display: grid; + grid-template-columns: 48px minmax(0, 1fr) 360px; + grid-template-rows: 40px minmax(0, 1fr) 240px; + grid-template-areas: + "top top top" + "rail main inspector" + "rail timeline inspector"; + background: var(--ion-bg); + color: var(--ion-text); + font-family: var(--ion-font); + letter-spacing: 0.7px; +} + +.ion-topbar { + grid-area: top; + display: flex; + align-items: center; + gap: 18px; + padding: 0 12px; + background: var(--ion-surface); + border-bottom: 1px solid var(--ion-border); +} + +.ion-brand { + font-size: 11px; + font-weight: 700; + color: #888888; +} + +.ion-topnav { + display: flex; + height: 100%; +} + +.ion-topnav button, +.ion-left-rail button { + color: var(--ion-text-secondary); + background: transparent; + border: 0; + font-family: var(--ion-font); + font-size: 9px; + font-weight: 700; + letter-spacing: 1.1px; + cursor: pointer; +} + +.ion-topnav button { + padding: 0 10px; + border-left: 1px solid transparent; + border-right: 1px solid transparent; +} + +.ion-topnav button:hover { + color: var(--ion-text); + background: var(--ion-panel); + border-color: var(--ion-border); +} + +.ion-state-strip { + margin-left: auto; + display: flex; + gap: 12px; + font-size: 8px; + color: var(--ion-text-muted); + text-transform: uppercase; +} + +.ion-left-rail { + grid-area: rail; + display: flex; + flex-direction: column; + align-items: stretch; + background: #080808; + border-right: 1px solid var(--ion-border); +} + +.ion-left-rail button { + width: 47px; + height: 44px; + display: grid; + place-items: center; + border-bottom: 1px solid var(--ion-border); +} + +.ion-left-rail button:hover { + color: var(--ion-text); + background: var(--ion-panel); +} + +.ion-main-work-surface { + grid-area: main; + min-width: 0; + padding: 12px; + display: grid; + gap: 12px; + grid-template-columns: repeat(2, minmax(0, 1fr)); + grid-auto-rows: min-content; + overflow: auto; +} + +.ion-right-inspector { + grid-area: inspector; + min-width: 0; + padding: 10px; + background: var(--ion-surface); + border-left: 1px solid var(--ion-border); + overflow: auto; +} + +.ion-bottom-timeline { + grid-area: timeline; + min-width: 0; + padding: 8px 10px; + background: var(--ion-surface); + border-top: 1px solid var(--ion-border); + overflow: auto; +} + +.ion-panel, +.ion-receipt-card { + background: var(--ion-surface); + border: 1px solid var(--ion-border); + border-radius: 2px; + padding: 10px; +} + +.ion-hero-panel { + grid-column: 1 / -1; + min-height: 150px; + background: + linear-gradient(180deg, rgba(255,255,255,0.025), transparent 38%), + var(--ion-surface); +} + +.ion-section-title { + margin-bottom: 7px; + color: var(--ion-text-muted); + font-size: 9px; + font-weight: 700; + letter-spacing: 1.2px; + text-transform: uppercase; +} + +.ion-hero-panel h1 { + margin: 0 0 10px; + font-size: 14px; + line-height: 1.3; + text-transform: uppercase; +} + +.ion-verdict-band { + display: inline-block; + margin: 0 0 12px; + padding: 5px 8px; + border: 1px solid var(--ion-border-active); + background: #0b120e; + color: var(--ion-ok); + font-size: 9px; + font-weight: 700; + text-transform: uppercase; +} + +.ion-grid-3 { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 8px; +} + +.ion-metric { + border: 1px solid var(--ion-border); + background: var(--ion-panel); + padding: 8px; + min-height: 44px; +} + +.ion-metric span, +.ion-receipt-scope, +.ion-stream-row p { + display: block; + color: var(--ion-text-muted); + font-size: 8px; + line-height: 1.45; + text-transform: uppercase; +} + +.ion-metric b { + display: block; + margin-top: 4px; + color: var(--ion-text); + font-size: 11px; + line-height: 1.25; + text-transform: uppercase; +} + +.ion-evidence-chain { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 6px; + margin-bottom: 10px; +} + +.ion-evidence-chain span, +.ion-blocked-list span { + border: 1px solid var(--ion-border); + background: var(--ion-panel); + padding: 6px; + color: var(--ion-text-secondary); + font-size: 8px; + font-weight: 700; + text-align: center; + text-transform: uppercase; +} + +.ion-visual-lens p { + margin: 0; + color: var(--ion-text-secondary); + font-size: 10px; + line-height: 1.55; +} + +.ion-receipt-card { + margin-bottom: 8px; +} + +.ion-receipt-head { + display: flex; + justify-content: space-between; + gap: 10px; + color: var(--ion-text-secondary); + font-size: 8px; + font-weight: 700; + text-transform: uppercase; +} + +.ion-receipt-head b { + color: var(--ion-ok); +} + +.ion-receipt-verdict { + margin-top: 6px; + color: var(--ion-text); + font-size: 10px; + line-height: 1.35; + text-transform: uppercase; +} + +.ion-receipt-card ul { + margin: 8px 0 0; + padding-left: 16px; + color: var(--ion-text-secondary); + font-size: 8px; + line-height: 1.5; + text-transform: uppercase; +} + +.ion-blocked-list { + display: grid; + gap: 5px; +} + +.ion-blocked-list span { + color: var(--ion-blocked); + text-align: left; +} + +.ion-stream-row { + display: grid; + grid-template-columns: 72px 230px 140px minmax(0, 1fr); + align-items: start; + gap: 8px; + padding: 6px 0; + border-top: 1px solid var(--ion-border); + font-size: 8px; + text-transform: uppercase; +} + +.ion-stream-row time { + color: var(--ion-text-muted); +} + +.ion-stream-row span, +.ion-stream-row b { + color: var(--ion-text-secondary); +} + +.ion-stream-row.is-ok b { color: var(--ion-ok); } +.ion-stream-row.is-watch b { color: var(--ion-watch); } +.ion-stream-row.is-blocked b { color: var(--ion-blocked); } + +@media (min-width: 2560px) { + .ion-joc-shell { + grid-template-columns: 48px minmax(0, 1fr) 400px; + } + .ion-main-work-surface { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } +} + +@media (max-width: 1279px) { + .ion-joc-shell { + grid-template-columns: 44px minmax(0, 1fr); + grid-template-rows: 40px minmax(0, 1fr) 180px; + grid-template-areas: + "top top" + "rail main" + "timeline timeline"; + } + .ion-right-inspector { display: none; } + .ion-main-work-surface { grid-template-columns: 1fr; } +} + + +.ion-reactive-stream-panel { + padding: 0; + border: 0; + background: transparent; +} + +.ion-loop-coverage { + display: grid; + grid-template-columns: 110px repeat(3, minmax(0, 1fr)); + gap: 4px; + margin-bottom: 8px; + align-items: stretch; +} + +.ion-loop-coverage span, +.ion-loop-coverage b { + display: block; + border: 1px solid var(--ion-border); + background: var(--ion-panel); + padding: 5px 6px; + color: var(--ion-text-muted); + font-size: 8px; + font-weight: 700; + line-height: 1.2; + text-transform: uppercase; +} + +.ion-loop-coverage b.is-covered { + color: var(--ion-ok); +} + +.ion-loop-coverage b.is-missing { + color: var(--ion-blocked); +} + +.ion-stream-stack { + display: grid; + gap: 6px; +} + +.ion-stream-event { + border: 1px solid var(--ion-border); + background: + linear-gradient(180deg, rgba(255,255,255,0.02), transparent 42%), + var(--ion-panel); + border-radius: 2px; + padding: 8px; +} + +.ion-stream-event.is-ok { + border-left: 2px solid var(--ion-ok); +} + +.ion-stream-event.is-watch { + border-left: 2px solid var(--ion-watch); +} + +.ion-stream-event.is-blocked, +.ion-stream-event.is-repair { + border-left: 2px solid var(--ion-blocked); +} + +.ion-stream-event-head { + display: grid; + grid-template-columns: 52px minmax(0, 1fr) 32px; + gap: 6px; + color: var(--ion-text-secondary); + font-size: 8px; + font-weight: 700; + text-transform: uppercase; +} + +.ion-stream-event-head b { + color: var(--ion-text); + text-align: right; +} + +.ion-stream-phase, +.ion-authority-scope { + margin-top: 5px; + color: var(--ion-text-muted); + font-size: 8px; + font-weight: 700; + letter-spacing: 1px; + text-transform: uppercase; +} + +.ion-stream-event p { + margin: 6px 0; + color: var(--ion-text-secondary); + font-size: 10px; + line-height: 1.45; +} + +.ion-evidence-tags { + display: flex; + flex-wrap: wrap; + gap: 4px; +} + +.ion-evidence-tags span { + border: 1px solid var(--ion-border); + background: #090909; + padding: 4px 5px; + color: var(--ion-text-muted); + font-size: 7px; + font-weight: 700; + text-transform: uppercase; +} + +.ion-evidence-tags span.is-blocked { + color: var(--ion-blocked); + border-color: #3a1515; +} + +.ion-automation-overlay-panel { + min-height: 260px; +} + +.ion-overlay-grid { + display: grid; + grid-template-columns: repeat(4, minmax(0, 1fr)); + gap: 6px; + margin-bottom: 10px; +} + +.ion-overlay-frame { + position: relative; + height: 128px; + margin-bottom: 10px; + border: 1px solid var(--ion-border); + background: + linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px), + linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px), + #070707; + background-size: 24px 24px; + overflow: hidden; +} + +.ion-overlay-target { + position: absolute; + border: 1px solid var(--ion-border-active); + background: rgba(14,14,14,0.86); + padding: 5px 7px; + color: var(--ion-text-secondary); + font-size: 8px; + font-weight: 700; + text-transform: uppercase; +} + +.ion-overlay-target.is-injection { + left: 18px; + bottom: 18px; +} + +.ion-overlay-target.is-extraction { + right: 18px; + top: 18px; +} + +.ion-overlay-target.is-health { + left: 42%; + top: 46%; + color: var(--ion-watch); +} + +/* V58 Cognitive Explorer and Infinite Context command palette */ +.ion-command-palette, +.ion-cognitive-explorer { + border-color: #2a2a2a; +} + +.ion-panel-head, +.ion-node-top { + display: flex; + align-items: center; + justify-content: space-between; + gap: 8px; +} + +.ion-panel-head b, +.ion-node-top b { + font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace); + font-size: 8px; + letter-spacing: 0.8px; + text-transform: uppercase; + color: #aaaaaa; +} + +.ion-query-readout, +.ion-command-input { + margin: 8px 0; + padding: 8px; + border: 1px solid #1e1e1e; + background: #0a0a0a; + font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace); + font-size: 10px; + color: #cccccc; +} + +.ion-command-input { + display: flex; + gap: 10px; + align-items: center; +} + +.ion-command-input span, +.ion-route-class-row span, +.ion-blocked-list span { + border: 1px solid #1e1e1e; + background: #111111; + color: #aaaaaa; + padding: 3px 6px; + font-size: 8px; + letter-spacing: 0.8px; + text-transform: uppercase; +} + +.ion-route-class-row { + display: flex; + flex-wrap: wrap; + gap: 5px; + margin: 6px 0 10px; +} + +.ion-explorer-grid { + display: grid; + grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); + gap: 8px; +} + +.ion-node-list, +.ion-dependency-web, +.ion-route-proof > div, +.ion-injection-preview { + border: 1px solid #1e1e1e; + background: #0a0a0a; + padding: 8px; +} + +.ion-node-card, +.ion-edge-card { + border-top: 1px solid #1e1e1e; + padding: 7px 0; +} + +.ion-node-card strong, +.ion-node-card code, +.ion-node-card small, +.ion-edge-card span, +.ion-edge-card b, +.ion-edge-card small { + display: block; + font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace); +} + +.ion-node-card strong { + color: #cccccc; + font-size: 10px; + margin: 4px 0; +} + +.ion-node-card code, +.ion-node-card small, +.ion-edge-card span, +.ion-edge-card small, +.ion-route-proof li { + color: #888888; + font-size: 8px; + overflow-wrap: anywhere; +} + +.ion-edge-card b { + color: #cccccc; + font-size: 8px; + margin: 3px 0; + letter-spacing: 0.8px; + text-transform: uppercase; +} + +.ion-route-proof { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); + gap: 8px; + margin-top: 8px; +} + +.ion-route-proof p, +.ion-injection-preview p { + margin: 0; + color: #aaaaaa; + font-size: 9px; + line-height: 1.45; +} + +.ion-route-proof ul { + margin: 0; + padding-left: 14px; +} + +.ion-mission-router, +.ion-route-matrix { display: grid; gap: 10px; } +.ion-route-head, +.ion-target-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; } +.ion-route-head h2, +.ion-target-card h3 { margin: 0; font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace); font-size: 11px; letter-spacing: 0.8px; color: #cccccc; text-transform: uppercase; } +.ion-route-head p, +.ion-route-reasoning p, +.ion-receipt-preview p, +.ion-risk-note, +.ion-route-factor-grid p { margin: 4px 0 0; font-size: 9px; line-height: 1.45; color: #888888; } +.ion-verdict-chip { border: 1px solid #2a2a2a; color: #cccccc; background: #111111; padding: 4px 6px; font-size: 8px; letter-spacing: 1px; text-transform: uppercase; } +.ion-ring-lanes { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; } +.ion-target-card, +.ion-route-factor-grid article { background: #0e0e0e; border: 1px solid #1e1e1e; border-radius: 2px; padding: 8px; } +.ion-target-primary { border-color: #444444; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); } +.ion-target-top span, +.ion-target-top b, +.ion-route-factor-grid span, +.ion-route-factor-grid b { font-size: 8px; letter-spacing: 1px; color: #555555; text-transform: uppercase; } +.ion-target-top b, +.ion-route-factor-grid b { color: #aaaaaa; } +.ion-target-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin-top: 8px; } +.ion-tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; } +.ion-target-meta span, +.ion-tag-row span { border: 1px solid #1e1e1e; background: #111111; color: #777777; padding: 3px 5px; font-size: 8px; text-transform: uppercase; letter-spacing: 0.7px; } +.ion-route-factor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 6px; } + +/* V88 runtime projection strip (live cockpit view model) */ +.ion-runtime-panel { + border-color: #2a2a2a; + margin-bottom: 10px; +} +.ion-runtime-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); + gap: 8px; + margin-top: 8px; +} +.ion-runtime-metric { + border: 1px solid #1e1e1e; + border-radius: 2px; + padding: 6px 8px; + background: #0e0e0e; +} +.ion-runtime-metric span { + display: block; + font-size: 8px; + letter-spacing: 0.08em; + color: #666666; + text-transform: uppercase; +} +.ion-runtime-metric b { + font-size: 11px; + color: #cccccc; +} +.ion-runtime-status.ion-runtime-status--ok { + color: var(--ion-ok); +} +.ion-runtime-status.ion-runtime-status--warn { + color: var(--ion-watch); +} +.ion-runtime-objective { + margin-top: 10px; + font-size: 10px; + line-height: 1.4; + color: #9a9a9a; + word-break: break-word; +} +.ion-runtime-meta { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin-top: 8px; + font-size: 9px; + color: #666666; + letter-spacing: 0.04em; +} diff --git a/ION/08_ui/joc_cockpit_shell/operator-approval.css b/ION/08_ui/joc_cockpit_shell/operator-approval.css new file mode 100644 index 00000000..1df0fd04 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/operator-approval.css @@ -0,0 +1,16 @@ +.ion-operator-approval-panel, .ion-dry-run-handoff-panel { + background: #0e0e0e; + border: 1px solid #1e1e1e; + padding: 10px; + color: #cccccc; + font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace); +} +.ion-dry-run-handoff-panel pre { + max-height: 220px; + overflow: auto; + background: #090909; + border: 1px solid #1e1e1e; + padding: 8px; + font-size: 9px; + color: #aaaaaa; +} diff --git a/ION/08_ui/joc_cockpit_shell/operatorApprovalTypes.ts b/ION/08_ui/joc_cockpit_shell/operatorApprovalTypes.ts new file mode 100644 index 00000000..41bb29db --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/operatorApprovalTypes.ts @@ -0,0 +1,69 @@ +export type OperatorDecision = 'PENDING' | 'APPROVED' | 'DENIED' | 'EXPIRED'; +export type ApprovalQueueVerdict = + | 'QUEUED_FOR_OPERATOR_REVIEW' + | 'BLOCKED_AUTHORIZATION_NOT_APPROVABLE' + | 'BLOCKED_MISSING_AUTHORIZATION_EVIDENCE' + | 'BLOCKED_MISSING_OPERATOR_APPROVAL_EVIDENCE' + | 'OPERATOR_DENIED' + | 'DRY_RUN_HANDOFF_READY' + | 'EXPIRED_REQUIRES_REVIEW_REFRESH'; + +export interface OperatorApprovalQueueViewModel { + version: 'V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF'; + mission_id: string; + authorization_view_model_ref: string; + route_preview_id: string; + selected_target: string; + approval_verdict: ApprovalQueueVerdict; + authority_scope: 'OPERATOR_APPROVAL_QUEUE_VIEW_MODEL_RECEIPT_ONLY'; + execution_mode: 'DRY_RUN_HANDOFF_ONLY' | 'VIEW_ONLY_BLOCKED'; + operator_decision: OperatorDecision; + operator_id: string | null; + requested_action_summary: string; + estimated_cost_usd: number; + estimated_latency_band: string; + quality_band: string; + view_surfaces: string[]; + approval_evidence_refs: string[]; + denial_reason: string | null; + operator_reason: string; + next_required_action: string; + dry_run_handoff_preview: Record; + production_authority: false; + live_dispatch_claim: false; + external_model_call_authorized: false; +} + +export const operatorApprovalFixture: OperatorApprovalQueueViewModel = { + version: 'V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF', + mission_id: 'M-062', + authorization_view_model_ref: 'V61_DISPATCH_AUTHORIZATION_VIEW_MODEL:M-061', + route_preview_id: 'route-preview-v59-001', + selected_target: 'gemini-cli', + approval_verdict: 'QUEUED_FOR_OPERATOR_REVIEW', + authority_scope: 'OPERATOR_APPROVAL_QUEUE_VIEW_MODEL_RECEIPT_ONLY', + execution_mode: 'DRY_RUN_HANDOFF_ONLY', + operator_decision: 'PENDING', + operator_id: null, + requested_action_summary: 'Approve dry-run handoff for supervised mission dispatch preview.', + estimated_cost_usd: 0.02, + estimated_latency_band: 'interactive_seconds', + quality_band: 'high', + view_surfaces: ['OPERATOR_APPROVAL_QUEUE', 'GOVERNOR_EVIDENCE_RAIL', 'APPROVAL_DECISION_CARD', 'DENIAL_REASON_LANE', 'DRY_RUN_HANDOFF_PREVIEW', 'NON_AUTHORITY_BOUNDARY_STRIP'], + approval_evidence_refs: ['ION/04_packages/kernel/joc_dispatch_authorization_view_model.py', 'ION/03_registry/joc_dispatch_authorization_policy.yaml'], + denial_reason: null, + operator_reason: 'Authorization is approvable and queued for supervised operator decision.', + next_required_action: 'Show operator the target, governors, evidence, blocked capabilities, and dry-run-only boundary.', + dry_run_handoff_preview: { + version: 'V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF', + mission_id: 'M-062', + selected_target: 'gemini-cli', + execution_mode: 'DRY_RUN_HANDOFF_ONLY', + external_model_call_authorized: false, + live_dispatch_claim: false, + production_authority: false, + }, + production_authority: false, + live_dispatch_claim: false, + external_model_call_authorized: false, +}; diff --git a/ION/08_ui/joc_cockpit_shell/projectionFixtures.ts b/ION/08_ui/joc_cockpit_shell/projectionFixtures.ts new file mode 100644 index 00000000..f89fcbf3 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/projectionFixtures.ts @@ -0,0 +1,116 @@ +import type { CognitiveRouteViewModel, MissionDispatchRouteViewModel, ReactiveStreamEvent } from './reactiveTypes'; + +export type ClaimLane = 'C0' | 'C1' | 'C2' | 'C3' | 'C4' | 'C5'; + +export type ReceiptSummary = { + id: string; + family: string; + claimLane: ClaimLane; + verdict: string; + authorityScope: string; + evidenceRefs: string[]; + repairRequired: boolean; +}; + +export type AutomationEvent = { + id: string; + time: string; + loop: string; + phase: string; + status: 'ok' | 'watch' | 'blocked'; + detail: string; +}; + +export type CockpitProjectionFixture = { + version: string; + stewardState: string; + oracleMode: 'AUTO' | 'SUPERVISED' | 'MANUAL' | 'OFFLINE'; + activeSurface: string; + closureVerdict: string; + receiptSummaries: ReceiptSummary[]; + automationEvents: AutomationEvent[]; + reactiveEvents: ReactiveStreamEvent[]; + cognitiveRoute: CognitiveRouteViewModel; + missionRoute: MissionDispatchRouteViewModel; + blockedCapabilities: string[]; +}; + +export const v57ReactiveEvents: ReactiveStreamEvent[] = [ + { eventId: 'v57-evt-visual-001', occurredAt: '18:12:01', loopId: 'VISUAL_ISSUE_CLOSURE_LOOP', phase: 'closure_render', status: 'OK', claimLane: 'C0', renderedSurface: 'VISUAL_EVIDENCE_LENS', authorityScope: 'VISUAL_RUN_TO_DIAGNOSIS_CLOSURE_RECEIPT_ONLY', evidenceRefs: ['V45 diagnosis receipt', 'V48 before-after receipt', 'V53 local browser run receipt', 'V54 closure binding receipt'], repairRequired: false, blockedCapabilities: [], detail: 'Visual closure may be rendered as scoped evidence because run and diagnosis lineage agree.' }, + { eventId: 'v57-evt-context-001', occurredAt: '18:12:09', loopId: 'CONTEXT_PROJECTION_LOOP', phase: 'surface_projection', status: 'OK', claimLane: 'C2', renderedSurface: 'CONTEXT_GRAPH_COGNITIVE_EXPLORER', authorityScope: 'UI_WORK_SURFACE_PROJECTION_RECEIPT_ONLY', evidenceRefs: ['V55 projection receipt', 'V56 component contract'], repairRequired: false, blockedCapabilities: [], detail: 'Projection surfaces are mapped into cockpit regions for operator inspection.' }, + { eventId: 'v57-evt-mission-001', occurredAt: '18:12:17', loopId: 'MISSION_DISPATCH_LOOP', phase: 'route_preview', status: 'WATCH', claimLane: 'C2', renderedSurface: 'MISSION_DISPATCH_AND_MODEL_ROUTE_PANEL', authorityScope: 'MISSION_ROUTE_PREVIEW_ONLY', evidenceRefs: ['JOC mission lifecycle doctrine', 'compute ring routing plan'], repairRequired: false, blockedCapabilities: [], detail: 'Route plan may be previewed, but dispatch remains unmounted in this branch.' }, + { eventId: 'v57-evt-session-001', occurredAt: '18:12:24', loopId: 'SESSION_HEALTH_LOOP', phase: 'browser_authority_gate', status: 'BLOCKED', claimLane: 'C1', renderedSurface: 'BROWSER_SESSION_AUTOMATION_OVERLAY', authorityScope: 'BROWSER_AUTOMATION_VISIBILITY_ONLY', evidenceRefs: [], repairRequired: false, blockedCapabilities: ['credential_access', 'form_submission', 'persistent_dom_mutation', 'production_visual_automation'], detail: 'Session overlay can display injection and extraction zones but cannot operate credentials or submit forms.' }, + { eventId: 'v57-evt-repair-001', occurredAt: '18:12:31', loopId: 'CONVERSATIONAL_REPAIR_LOOP', phase: 'artifact_repair_visibility', status: 'REPAIR', claimLane: 'C3', renderedSurface: 'CONVERSATIONAL_REPAIR_QUEUE', authorityScope: 'CONVERSATIONAL_REPAIR_QUEUE_VISIBILITY_ONLY', evidenceRefs: ['V42 conversational repair doctrine', 'current UI branch continuation obligation'], repairRequired: true, blockedCapabilities: [], detail: 'Chat correction and artifact correction remain visibly distinct in the cockpit queue.' }, + { eventId: 'v57-evt-cost-001', occurredAt: '18:12:38', loopId: 'MODEL_COST_QUALITY_LOOP', phase: 'compute_ring_score', status: 'WATCH', claimLane: 'C2', renderedSurface: 'COMPUTE_AND_COST_ROUTER', authorityScope: 'ROUTING_RECOMMENDATION_ONLY', evidenceRefs: ['JOC compute ring design', 'model route policy placeholder'], repairRequired: false, blockedCapabilities: [], detail: 'Cost and quality route scoring is display-only until live dispatch drivers are mounted.' }, + { eventId: 'v59-evt-route-001', occurredAt: '18:13:02', loopId: 'MISSION_DISPATCH_LOOP', phase: 'three_ring_route_preview', status: 'WATCH', claimLane: 'C2', renderedSurface: 'MISSION_DISPATCH_PANEL', authorityScope: 'MISSION_DISPATCH_ROUTE_VIEW_MODEL_RECEIPT_ONLY', evidenceRefs: ['V58 context route receipt', 'V59 route factors', 'V59 approval gate'], repairRequired: false, blockedCapabilities: ['live_external_model_dispatch', 'paid_cloud_launch', 'credential_access'], detail: 'Mission dispatch is rendered as preview-only with primary target, fallbacks, cost/latency bands, and supervised approval gate.' }, +]; + +export const v58CognitiveRoute: CognitiveRouteViewModel = { + query: 'Explain the reactive OS stream and automation overlay path.', + verdict: 'VALID_CONTEXT_ROUTE_VIEW_MODEL', + routeClasses: ['EXACT_SYMBOL', 'FILE_PATH', 'DEPENDENCY_EDGE', 'RECEIPT_FAMILY', 'FALLBACK_BOUNDARY'], + viewSurfaces: ['COGNITIVE_EXPLORER', 'INFINITE_CONTEXT_COMMAND_PALETTE', 'SELECTED_CONTEXT_LENS', 'STRUCTURAL_BLUEPRINT_VIEW', 'DEPENDENCY_WEB_VIEW', 'SOURCE_LINE_CITATION_RAIL', 'ROUTE_REASONING_PANEL'], + selectedNodes: [ + { nodeId: 'node.kernel.joc_reactive_os_stream_view_model', label: 'Reactive OS Stream verifier', nodeClass: 'FUNCTION', path: 'ION/04_packages/kernel/joc_reactive_os_stream_view_model.py', symbol: 'validate_reactive_os_stream_view_model', lineRange: 'L1-L220', confidence: 'SOURCE_INDEXED' }, + { nodeId: 'node.ui.ReactiveOsStreamPanel', label: 'Reactive OS Stream panel', nodeClass: 'UI_COMPONENT', path: 'ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx', symbol: 'ReactiveOsStreamPanel', lineRange: 'L1-L80', confidence: 'SOURCE_INDEXED' }, + { nodeId: 'node.ui.AutomationOverlayPanel', label: 'Browser automation overlay panel', nodeClass: 'UI_COMPONENT', path: 'ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx', symbol: 'AutomationOverlayPanel', lineRange: 'L1-L90', confidence: 'SOURCE_INDEXED' }, + { nodeId: 'node.protocol.reactive_os_stream', label: 'Reactive OS stream protocol', nodeClass: 'PROTOCOL', path: 'ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md', symbol: 'V57 protocol', lineRange: 'L1-L140', confidence: 'RECEIPT_BACKED' }, + ], + dependencyEdges: [ + { source: 'node.kernel.joc_reactive_os_stream_view_model', target: 'node.ui.ReactiveOsStreamPanel', edgeClass: 'projects_to', evidenceRef: 'V57 stream fixture' }, + { source: 'node.ui.AutomationOverlayPanel', target: 'node.protocol.reactive_os_stream', edgeClass: 'conforms_to', evidenceRef: 'V57 protocol required surfaces' }, + ], + sourceCitations: ['ION/04_packages/kernel/joc_reactive_os_stream_view_model.py:L1-L220', 'ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx:L1-L80', 'ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx:L1-L90', 'ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md:L1-L140'], + routeReasoning: 'Exact indexed symbols and files satisfy the route before semantic fallback. Dependency edges explain how kernel receipts project into cockpit components.', + injectionPreview: 'Preview only: include V57 stream verifier, ReactiveOsStreamPanel, AutomationOverlayPanel, and protocol lines. Dispatch is not executed in V58.', + blockedCapabilities: ['production_authority', 'external_model_dispatch', 'browser_session_mutation', 'credential_access', 'source_summary_rewrite', 'canonical_graph_write', 'unrestricted_agent_activation', 'live_ui_claim'], +}; + +export const v59MissionRoute: MissionDispatchRouteViewModel = { + missionId: 'M-V59-ION-JOC-DISPATCH-ROUTE', + missionTitle: 'Route V58 cognitive context into supervised mission dispatch lanes', + taskClass: 'UI_ARCHITECTURE_AND_RUNTIME_VIEW_MODEL', + verdict: 'ROUTE_PREVIEW_READY', + authorityScope: 'MISSION_DISPATCH_ROUTE_VIEW_MODEL_RECEIPT_ONLY', + contextRouteRef: 'V58_COGNITIVE_EXPLORER_ROUTE_VIEW_MODEL_RECEIPT', + primaryTarget: { targetId: 'target.gpt.reasoning_supervised', displayName: 'GPT reasoning lane', computeRing: 'RING_2_API_CLI_LOCAL', accessMethod: 'api', status: 'PRIMARY_RECOMMENDED', capabilityTags: ['architectural_reasoning', 'code_review', 'receipt_synthesis'], costBand: 'MEDIUM', latencyBand: 'INTERACTIVE_SECONDS', qualityBand: 'HIGH', riskNotes: ['requires supervised approval before live dispatch'] }, + fallbackTargets: [ + { targetId: 'target.browser.chatgpt_manual', displayName: 'ChatGPT browser session', computeRing: 'RING_1_BROWSER_SESSION', accessMethod: 'browser', status: 'SUPERVISED_ONLY', capabilityTags: ['interactive_chat', 'visual_session_context', 'manual_injection'], costBand: 'SUBSCRIPTION_INCLUDED', latencyBand: 'INTERACTIVE_10_60S', qualityBand: 'HIGH_VARIANT', riskNotes: ['browser mutation remains blocked in V59'] }, + { targetId: 'target.local.small_classifier', displayName: 'Local small-model classifier', computeRing: 'RING_2_API_CLI_LOCAL', accessMethod: 'local', status: 'FALLBACK_READY', capabilityTags: ['classification', 'cheap_triage', 'privacy_preserving'], costBand: 'FREE_LOCAL', latencyBand: 'LOW_SECONDS', qualityBand: 'BOUNDED_LOW_RISK', riskNotes: [] }, + { targetId: 'target.vertex.heavy_cloud', displayName: 'Cloud heavy compute lane', computeRing: 'RING_3_CLOUD_COMPUTE', accessMethod: 'cloud_vm', status: 'SUPERVISED_ONLY', capabilityTags: ['heavy_simulation', 'large_batch', 'future_training'], costBand: 'HIGH_PAID_APPROVAL_REQUIRED', latencyBand: 'MINUTES_TO_HOURS', qualityBand: 'SPECIALIZED_HEAVY', riskNotes: ['paid launch remains blocked without explicit operator approval'] }, + ], + routeFactors: [ + { factorId: 'TASK_CLASS', value: 'UI_ARCHITECTURE_AND_RUNTIME_VIEW_MODEL', rationale: 'The mission asks for ION/JOC UI-runtime synthesis and scaffold work.' }, + { factorId: 'CONTEXT_SIZE', value: 'MEDIUM_PROJECT_ROUTE', rationale: 'V58 selected exact files and citations; no full-repo prompt is needed.' }, + { factorId: 'QUALITY_REQUIREMENT', value: 'HIGH', rationale: 'Architecture and runtime law should be handled by a strong reasoning lane.' }, + { factorId: 'LATENCY_REQUIREMENT', value: 'INTERACTIVE', rationale: 'The branch is being developed in a live conversation loop.' }, + { factorId: 'COST_SENSITIVITY', value: 'CONTROLLED', rationale: 'Use already-mounted local/interactive lanes before paid cloud.' }, + { factorId: 'CAPABILITY_MATCH', value: 'REASONING_PLUS_CODE_PATCH', rationale: 'Primary lane must reason about architecture and produce project files/tests.' }, + { factorId: 'RISK_CLASS', value: 'C2_DESIGN_CANDIDATE', rationale: 'Route preview is a design/runtime candidate, not production dispatch.' }, + { factorId: 'FALLBACK_AVAILABILITY', value: 'THREE_RING_FALLBACK_VISIBLE', rationale: 'Browser, local/API/CLI, and cloud lanes are all represented.' }, + ], + viewSurfaces: ['MISSION_DISPATCH_PANEL', 'MODEL_ROUTE_MATRIX', 'COMPUTE_RING_SELECTOR', 'COST_LATENCY_QUALITY_BAND', 'CAPABILITY_MATCH_PANEL', 'FALLBACK_CHAIN_PANEL', 'HUMAN_APPROVAL_GATE', 'DISPATCH_RECEIPT_PREVIEW'], + approvalGate: 'SUPERVISED_APPROVAL_REQUIRED', + routeReasoning: 'The V58 route has exact context, so V59 previews a supervised mission dispatch plan. A high-quality reasoning/code lane is primary; browser, local, and cloud lanes remain visible as fallbacks without enabling live dispatch.', + dispatchReceiptPreview: 'If approved by a later live driver branch, the dispatch receipt must record mission id, selected target, context route ref, cost/latency estimate, operator approval, response extraction status, and return routing.', + blockedCapabilities: ['production_authority', 'live_external_model_dispatch', 'browser_session_mutation', 'credential_access', 'form_submission', 'paid_cloud_launch', 'source_summary_rewrite', 'canonical_graph_write', 'unrestricted_agent_activation'], +}; + +export const v56CockpitProjectionFixture: CockpitProjectionFixture = { + version: 'V59_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL', + stewardState: 'STEWARD_VZ_SCOPED_REVIEW', + oracleMode: 'SUPERVISED', + activeSurface: 'Mission Route Preview', + closureVerdict: 'VISUAL_ISSUE_CLOSED_WITH_RUN_EVIDENCE', + receiptSummaries: [ + { id: 'v54-visual-run-diagnosis-binding-reference', family: 'visual closure', claimLane: 'C0', verdict: 'VISUAL_ISSUE_CLOSED_WITH_RUN_EVIDENCE', authorityScope: 'VISUAL_RUN_TO_DIAGNOSIS_CLOSURE_RECEIPT_ONLY', evidenceRefs: ['V45 diagnosis', 'V48 before/after', 'V53 local run'], repairRequired: false }, + { id: 'v57-reactive-os-stream-reference', family: 'reactive stream', claimLane: 'C2', verdict: 'VALID_REACTIVE_OS_STREAM_VIEW_MODEL', authorityScope: 'REACTIVE_OS_STREAM_VIEW_MODEL_RECEIPT_ONLY', evidenceRefs: ['loop coverage', 'event evidence', 'blocked capability visibility'], repairRequired: false }, + { id: 'v58-cognitive-explorer-route-reference', family: 'context route', claimLane: 'C2', verdict: 'VALID_CONTEXT_ROUTE_VIEW_MODEL', authorityScope: 'COGNITIVE_EXPLORER_ROUTE_VIEW_MODEL_RECEIPT_ONLY', evidenceRefs: ['selected nodes', 'dependency edges', 'source citations', 'route reasoning'], repairRequired: false }, + { id: 'v59-mission-dispatch-route-reference', family: 'mission route', claimLane: 'C2', verdict: 'ROUTE_PREVIEW_READY', authorityScope: 'MISSION_DISPATCH_ROUTE_VIEW_MODEL_RECEIPT_ONLY', evidenceRefs: ['primary target', 'fallback chain', 'route factors', 'approval gate'], repairRequired: false }, + ], + automationEvents: v57ReactiveEvents.slice(0, 4).map((event) => ({ id: event.eventId, time: event.occurredAt, loop: event.loopId, phase: event.phase, status: event.status === 'OK' ? 'ok' : event.status === 'BLOCKED' ? 'blocked' : 'watch', detail: event.detail })), + reactiveEvents: v57ReactiveEvents, + cognitiveRoute: v58CognitiveRoute, + missionRoute: v59MissionRoute, + blockedCapabilities: ['production_authority', 'credential_access', 'external_network_authority', 'form_submission', 'persistent_dom_mutation', 'production_visual_automation', 'external_model_dispatch', 'canonical_graph_write'], +}; diff --git a/ION/08_ui/joc_cockpit_shell/reactiveTypes.ts b/ION/08_ui/joc_cockpit_shell/reactiveTypes.ts new file mode 100644 index 00000000..2be20d52 --- /dev/null +++ b/ION/08_ui/joc_cockpit_shell/reactiveTypes.ts @@ -0,0 +1,93 @@ +export type ClaimLane = 'C0' | 'C1' | 'C2' | 'C3' | 'C4' | 'C5'; +export type ReactiveStatus = 'OK' | 'WATCH' | 'BLOCKED' | 'REPAIR'; + +export type ReactiveStreamEvent = { + eventId: string; + occurredAt: string; + loopId: string; + phase: string; + status: ReactiveStatus; + claimLane: ClaimLane; + renderedSurface: string; + authorityScope: string; + evidenceRefs: string[]; + repairRequired: boolean; + blockedCapabilities: string[]; + detail: string; +}; + +export type ExplorerNodeClass = 'FILE' | 'CLASS' | 'FUNCTION' | 'PROTOCOL' | 'REGISTRY' | 'RECEIPT' | 'TEST' | 'UI_COMPONENT'; + +export type ExplorerNode = { + nodeId: string; + label: string; + nodeClass: ExplorerNodeClass; + path: string; + symbol?: string; + lineRange: string; + confidence: 'SOURCE_INDEXED' | 'DERIVED_EDGE' | 'RECEIPT_BACKED'; +}; + +export type DependencyEdge = { + source: string; + target: string; + edgeClass: string; + evidenceRef: string; +}; + +export type CognitiveRouteViewModel = { + query: string; + verdict: 'VALID_CONTEXT_ROUTE_VIEW_MODEL' | 'WATCH' | 'BLOCKED'; + routeClasses: string[]; + viewSurfaces: string[]; + selectedNodes: ExplorerNode[]; + dependencyEdges: DependencyEdge[]; + sourceCitations: string[]; + routeReasoning: string; + injectionPreview: string; + blockedCapabilities: string[]; +}; + +export function loopCoverage(events: ReactiveStreamEvent[], requiredLoops: string[]) { + const present = new Set(events.map((event) => event.loopId)); + return requiredLoops.map((loop) => ({ loop, present: present.has(loop) })); +} + +export type ComputeRing = 'RING_1_BROWSER_SESSION' | 'RING_2_API_CLI_LOCAL' | 'RING_3_CLOUD_COMPUTE'; +export type RouteTargetStatus = 'PRIMARY_RECOMMENDED' | 'FALLBACK_READY' | 'SUPERVISED_ONLY' | 'BLOCKED'; + +export type MissionRouteTarget = { + targetId: string; + displayName: string; + computeRing: ComputeRing; + accessMethod: 'browser' | 'api' | 'cli' | 'local' | 'cloud_vm'; + status: RouteTargetStatus; + capabilityTags: string[]; + costBand: string; + latencyBand: string; + qualityBand: string; + riskNotes: string[]; +}; + +export type MissionRouteFactor = { + factorId: string; + value: string; + rationale: string; +}; + +export type MissionDispatchRouteViewModel = { + missionId: string; + missionTitle: string; + taskClass: string; + verdict: 'ROUTE_PREVIEW_READY' | 'BLOCKED'; + authorityScope: 'MISSION_DISPATCH_ROUTE_VIEW_MODEL_RECEIPT_ONLY'; + contextRouteRef: string; + primaryTarget: MissionRouteTarget; + fallbackTargets: MissionRouteTarget[]; + routeFactors: MissionRouteFactor[]; + viewSurfaces: string[]; + approvalGate: 'SUPERVISED_APPROVAL_REQUIRED'; + routeReasoning: string; + dispatchReceiptPreview: string; + blockedCapabilities: string[]; +}; From 3a0500784f50bff9491052774a54b8ee4bb3705f Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:04:02 -0400 Subject: [PATCH 12/30] Record queue hygiene and runtime evidence --- ...VE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json | 32 +- ...ING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md | 155 + .../TRUNK_FILE_MANIFEST_BASELINE_V118.json | 33927 +++++++++++++++ .../TRUNK_FILE_MANIFEST_POSTPATCH_V118.json | 33937 ++++++++++++++++ .../TRUNK_PRESERVATION_REPORT_V118.json | 76 + ..._checklist_using_existing_ion_owners_.json | 10 +- ...ntime_work_from_the_latest_browser_co.json | 10 +- ...d_work_for_local_codex_ion_to_perform.json | 10 +- ...d_work_for_local_codex_ion_to_perform.json | 10 +- ...ser_carrier_runtime_after_successful_.json | 11 +- ...ser_carrier_runtime_after_successful_.json | 11 +- ...ser_carrier_runtime_after_successful_.json | 11 +- ...ser_carrier_runtime_after_successful_.json | 10 +- ..._chatops_public_landing_queue_hygiene.json | 87 + ...20260505t044017z_export_safe_full_zip.json | 6164 +++ 15 files changed, 74429 insertions(+), 32 deletions(-) create mode 100644 ION/05_context/current/BRANCH_LANDING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md create mode 100644 ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json create mode 100644 ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json create mode 100644 ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json create mode 100644 ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json create mode 100644 ION/05_context/current/chatops_bridge/receipts/chatops_bridge_operation_20260505t044017z_export_safe_full_zip.json diff --git a/ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json b/ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json index 70b77605..9676fb90 100644 --- a/ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json +++ b/ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json @@ -13,8 +13,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", "request_id": "codex_req_2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:29:44+00:00" + "status": "FULFILLED_BY_LOCAL_BRANCH_WORK_PENDING_TASK_RETURN", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 0, @@ -25,8 +25,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", "request_id": "codex_req_2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:27:34+00:00" + "status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 0, @@ -37,8 +37,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", "request_id": "codex_req_2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:26:51+00:00" + "status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 0, @@ -49,8 +49,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", "request_id": "codex_req_2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:22:53+00:00" + "status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 0, @@ -61,8 +61,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", "request_id": "codex_req_2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:11:06+00:00" + "status": "INVALID_PLACEHOLDER_ACTION_ARCHIVE_ONLY", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 0, @@ -73,8 +73,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", "request_id": "codex_req_2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:09:28+00:00" + "status": "INVALID_PLACEHOLDER_ACTION_ARCHIVE_ONLY", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 0, @@ -85,8 +85,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json", "request_id": "codex_req_2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T01:50:47+00:00" + "status": "SUPERSEDED_BY_CHATOPS_BRANCH_WORK_PENDING_TASK_RETURN", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 1, @@ -125,8 +125,8 @@ "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json", "request_id": "codex_req_2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_", "return_packet_paths": [], - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-04T22:21:32+00:00" + "status": "SUPERSEDED_BY_CHATOPS_REENTRY_BRIDGE_WORK", + "updated_at": "2026-05-05T14:58:21Z" }, { "accepted_return_count": 1, diff --git a/ION/05_context/current/BRANCH_LANDING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md b/ION/05_context/current/BRANCH_LANDING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md new file mode 100644 index 00000000..0c0a595e --- /dev/null +++ b/ION/05_context/current/BRANCH_LANDING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md @@ -0,0 +1,155 @@ +# Branch Landing Plan - ChatOps, Public Docs, Sandbox Return, JOC Restoration + +created_at: 2026-05-05T14:58:21Z +branch: docs/github-public-data-plane-policy +production_authority: false +live_execution_authority: false +git_push_authority: false + +## Context Proof + +root_confirmed: +- `/home/sev/ION - Production/ION_CODEX` +- `pyproject.toml` present +- `ION/REPO_AUTHORITY.md` present + +operator_confirmation: +- Braden confirmed the new ChatOps extension top-bar placement is live-acceptable after reload. + +queue_hygiene: +- Receipt: `ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json` +- Stale runner-active requests before cleanup: 8 +- Stale runner-active requests after cleanup: 0 +- No request packets were deleted. + +## Landing Slices + +### Slice A - Public README and Docs + +Purpose: +- Make the public GitHub landing page concise and serious. +- Move ontology-heavy material into `ION/docs/`. + +Primary paths: +- `README.md` +- `ION/docs/README.md` +- `ION/docs/ION_FUNDAMENTALS.md` +- `ION/docs/TEMPLATE_LAW.md` +- `ION/docs/CONTEXT_SYSTEM.md` +- `ION/docs/AGENTS_ROLES_CARRIERS.md` + +Landing note: +- Avoid hardcoded test counts in public prose unless generated immediately before commit. + +### Slice B - Sandbox Return Runtime + +Purpose: +- Add first-class ChatGPT sandbox return intake as inbox evidence, not accepted source state. +- Add daemon endpoints and cockpit projection support. + +Primary paths: +- `ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md` +- `ION/03_registry/ion_chatgpt_sandbox_return.schema.json` +- `ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py` +- `ION/04_packages/kernel/ion_chatops_bridge.py` +- `ION/04_packages/kernel/ion_cockpit_view_model.py` +- `ION/tests/test_kernel_ion_chatgpt_sandbox_return_intake.py` +- `ION/tests/test_kernel_ion_chatops_bridge_policy.py` +- `ION/tests/test_kernel_ion_cockpit_view_model.py` +- `ION/03_registry/ion_chatops_extension_policy.yaml` +- `ION/03_registry/ion_chatops_local_daemon_policy.yaml` + +Landing note: +- This is runtime code, not public-doc polish. +- Keep separate from README-only review. + +### Slice C - ChatOps Browser Extension Topbar and Sandbox UI + +Purpose: +- Keep the ChatOps extension within the ChatGPT top bar. +- Respect left rail/drawer, right Memory/Share/more controls, and narrower screen widths. +- Expose Agent/Packages/Sandbox controls without blocking chat input. + +Primary paths: +- `ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts` +- `ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts` +- `ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts` +- `ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js` +- `ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js` +- `ION/09_integrations/browser_extension/ion_chatops_bridge/README.md` +- `ION/09_integrations/local_daemon/ion_chatops_bridge/README.md` + +Manual proof: +- Braden confirmed the new extension placement after reload. + +### Slice D - JOC Cockpit Restoration + +Purpose: +- Restore missing direct imports used by `JocCockpitShell.tsx` from the local prior ION/Cursor tree. +- Preserve the current shell; do not replace it with the older shell. + +Primary paths: +- `ION/08_ui/joc_cockpit_shell/AutomationOverlayPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/CognitiveExplorerPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/DispatchAuthorizationPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/DryRunDispatchHandoffPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/GovernorVerdictRail.tsx` +- `ION/08_ui/joc_cockpit_shell/InfiniteContextCommandPalette.tsx` +- `ION/08_ui/joc_cockpit_shell/MissionDispatchRouterPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/ModelRouteMatrixPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/OperatorApprovalQueuePanel.tsx` +- `ION/08_ui/joc_cockpit_shell/ReactiveOsStreamPanel.tsx` +- `ION/08_ui/joc_cockpit_shell/dispatch-authorization.css` +- `ION/08_ui/joc_cockpit_shell/dispatchAuthorizationTypes.ts` +- `ION/08_ui/joc_cockpit_shell/icons.tsx` +- `ION/08_ui/joc_cockpit_shell/joc-cockpit.css` +- `ION/08_ui/joc_cockpit_shell/operator-approval.css` +- `ION/08_ui/joc_cockpit_shell/operatorApprovalTypes.ts` +- `ION/08_ui/joc_cockpit_shell/projectionFixtures.ts` +- `ION/08_ui/joc_cockpit_shell/reactiveTypes.ts` + +Validation note: +- Local import resolution is clean. +- There is no standalone `ION/08_ui` TypeScript build target yet. + +### Slice E - Generated Runtime Receipts and Package Manifests + +Purpose: +- Preserve operational evidence without mixing it into public/docs commits. + +Primary paths: +- `ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json` +- `ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json` +- `ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json` +- `ION/05_context/current/chatops_bridge/receipts/chatops_bridge_operation_20260505t044017z_export_safe_full_zip.json` +- `ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json` +- `ION/05_context/current/BRANCH_LANDING_PLAN_20260505_CHATOPS_PUBLIC_GITHUB.md` + +Landing note: +- Review generated artifacts separately. They may be evidence, not product source. + +## Required Validation Before Push + +Run: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_codex_queue_runner --ion-root . --json +node ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q -p no:cacheprovider +``` + +Expected minimum: +- `ion_status` verdict: `ION_STATUS_READY` +- `ion_codex_queue_runner` queued request count: `0` before a new smoke packet is intentionally created +- browser parser smoke: `ok: true` +- Python suite: pass + +## Next Lawful Moves + +1. Stage and commit Slice A alone if the next goal is public GitHub readability. +2. Stage and commit Slice B only after reviewing runtime diffs. +3. Stage and commit Slice C after the live extension placement proof remains acceptable across left drawer open/closed. +4. Stage and commit Slice D after deciding whether to add a real JOC TypeScript build harness. +5. Keep Slice E as evidence or move it into a deliberate evidence commit; do not mix it silently into public docs. +6. Create one fresh browser ChatOps `create_codex_work_packet` smoke after the queue is clean, then run one bounded queue-runner cycle. diff --git a/ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json b/ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json new file mode 100644 index 00000000..e65267ca --- /dev/null +++ b/ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json @@ -0,0 +1,33927 @@ +{ + "file_count": 5581, + "files": { + ".cursor/agents/ion-context-cartographer.md": { + "path": ".cursor/agents/ion-context-cartographer.md", + "sha256": "85d187298c8e356638c49f55863fafd2b236b22b691890cca18f01ffc3a8a36f", + "size": 558 + }, + ".cursor/agents/ion-mason.md": { + "path": ".cursor/agents/ion-mason.md", + "sha256": "7916ec8d4fe4a5948aff77786ca84088f6b853a5ac8f4fc93bd4d77cc9604c7a", + "size": 526 + }, + ".cursor/agents/ion-nemesis.md": { + "path": ".cursor/agents/ion-nemesis.md", + "sha256": "cb20466afffcd8e6b809a2580a985f7d8ad5c61f5185b26cd0267710cea0a144", + "size": 546 + }, + ".cursor/agents/ion-persona-interface.md": { + "path": ".cursor/agents/ion-persona-interface.md", + "sha256": "8d577d2aab241e58126469fd942e01c86decb14d2b9d4359b25ef92ba999c61d", + "size": 460 + }, + ".cursor/agents/ion-relay.md": { + "path": ".cursor/agents/ion-relay.md", + "sha256": "3c343b84cbb450c947873df28d0c058362ee5a5ed48fd952452a00ee04949109", + "size": 502 + }, + ".cursor/agents/ion-runtime-cartographer.md": { + "path": ".cursor/agents/ion-runtime-cartographer.md", + "sha256": "0f51827c97f3eed5bbca7c82361fd7deb320882c582d60729c1f6a38f6c0fb96", + "size": 565 + }, + ".cursor/agents/ion-scribe.md": { + "path": ".cursor/agents/ion-scribe.md", + "sha256": "e92509e8b485eea369bfedfb892e546f282f815395175a3fcc686b2d262eb2f8", + "size": 480 + }, + ".cursor/agents/ion-spawn-row-slot.md": { + "path": ".cursor/agents/ion-spawn-row-slot.md", + "sha256": "2376521840fce48e3affc99df18fe909d855aef618843aa5e613464ea683df92", + "size": 1799 + }, + ".cursor/agents/ion-steward.md": { + "path": ".cursor/agents/ion-steward.md", + "sha256": "1e19b99699f1bdf2bb18dcf30835acb6f497ea8c90382fe58ee2a0e7dec6ff26", + "size": 791 + }, + ".cursor/commands/ion-cockpit.md": { + "path": ".cursor/commands/ion-cockpit.md", + "sha256": "de4e2758e40a3b5ec37cc115852606c812bfb15af0777c4a0a26d31f1ac73920", + "size": 493 + }, + ".cursor/commands/ion-context-plan.md": { + "path": ".cursor/commands/ion-context-plan.md", + "sha256": "992a8c6e18be0b607aab7b7dc1d1bc2735519d816c74503e4debc28898b3d905", + "size": 518 + }, + ".cursor/commands/ion-continue.md": { + "path": ".cursor/commands/ion-continue.md", + "sha256": "3d62b42f0feb970d1e551d12273596a37153df0d560824a03a4731b4177dd33e", + "size": 1040 + }, + ".cursor/commands/ion-health.md": { + "path": ".cursor/commands/ion-health.md", + "sha256": "49eb299af33fd121905e0d524f2779eaacb2ef9c5c099e3fec1bf29c3edb8c9d", + "size": 343 + }, + ".cursor/commands/ion-mcp-status.md": { + "path": ".cursor/commands/ion-mcp-status.md", + "sha256": "df2c55680a224fb09b2627556490c14623829fce1098f5a3498ba586150f75ee", + "size": 360 + }, + ".cursor/commands/ion.md": { + "path": ".cursor/commands/ion.md", + "sha256": "492a6ea2a7f19ea850fbdf1eca8a0eec4599d0d1dc3f05efd50b23279207ebd2", + "size": 2717 + }, + ".cursor/hooks.json": { + "path": ".cursor/hooks.json", + "sha256": "d6efaa9edfe47a0d064dd1066a5745a07714cff3f71aaa8677283522070cf64c", + "size": 153 + }, + ".cursor/hooks/ion_carrier_session_start.py": { + "path": ".cursor/hooks/ion_carrier_session_start.py", + "sha256": "228bae8ad8e196845df56573e84d414d3002790132d19ec1978b92f1804faa60", + "size": 9302 + }, + ".cursor/hooks/ion_session_start_persona_mount.py": { + "path": ".cursor/hooks/ion_session_start_persona_mount.py", + "sha256": "43fb5842ab480b9240200b66fde157df53c3af80ecb7bdc1017c544a3f3ced9b", + "size": 8808 + }, + ".cursor/hooks/ion_session_start_persona_mount.sh": { + "path": ".cursor/hooks/ion_session_start_persona_mount.sh", + "sha256": "5515912ea4318b4d91aa8a00fb07fd2236afbbd5ec436e57fc1ec8dc4ab9f943", + "size": 184 + }, + ".cursor/hooks/ion_stamp_operator_gate.py": { + "path": ".cursor/hooks/ion_stamp_operator_gate.py", + "sha256": "177fa66f10fb5ccdcbd7bad5e5a4457485fc3d495094d4a0469251acf0e95136", + "size": 2865 + }, + ".cursor/mcp.json": { + "path": ".cursor/mcp.json", + "sha256": "409005ede18fbe07b197b142c27913ea08c44ecdecf447236f23f34308127426", + "size": 310 + }, + ".cursor/rules/ion-agent-context-dynamics.mdc": { + "path": ".cursor/rules/ion-agent-context-dynamics.mdc", + "sha256": "c5f779c9c85181c014b86bfd6dbbc2a72f8e2a487d3fb47bfe177ba90d9a11d7", + "size": 988 + }, + ".cursor/rules/ion-autopilot-command.mdc": { + "path": ".cursor/rules/ion-autopilot-command.mdc", + "sha256": "7d4d97d38d7dd033bc348d4945adca7d0fb7bcdc5ab2b4b1c8e553951f5ad047", + "size": 1684 + }, + ".cursor/rules/ion-canonical-workflow-unification.mdc": { + "path": ".cursor/rules/ion-canonical-workflow-unification.mdc", + "sha256": "d6b17574307749158fe52071be93c1c06f3b660885f766eda69c26b4ff0488c5", + "size": 2339 + }, + ".cursor/rules/ion-carrier-boot-packet.mdc": { + "path": ".cursor/rules/ion-carrier-boot-packet.mdc", + "sha256": "76114d7d7d614b43319146742018ac0c8de951f62fe58b7c24318e33a5c1a815", + "size": 1193 + }, + ".cursor/rules/ion-carrier-mount.mdc": { + "path": ".cursor/rules/ion-carrier-mount.mdc", + "sha256": "bc1f3f5c8dd47bdc3fc9f201c2618333549d4f8b681fc011d5834ddb7c8b7528", + "size": 3163 + }, + ".cursor/rules/ion-carrier-relay-mediation.mdc": { + "path": ".cursor/rules/ion-carrier-relay-mediation.mdc", + "sha256": "ea3fbbd5b8d57f956f0ccd61abf7d5d4afe9561952388e4c746788c4d3ef1e5f", + "size": 11995 + }, + ".cursor/rules/ion-carrier-runtime-foundation.mdc": { + "path": ".cursor/rules/ion-carrier-runtime-foundation.mdc", + "sha256": "2e3299cf6ca1480be2dbc4f695ab6c05032db54c1885e2a114e365d6c3dc8e91", + "size": 1716 + }, + ".cursor/rules/ion-carrier-task-return-intake.mdc": { + "path": ".cursor/rules/ion-carrier-task-return-intake.mdc", + "sha256": "0f6841dd2bed38e22669d568db4648b53735efbc396a98385ee10cf59a561c13", + "size": 785 + }, + ".cursor/rules/ion-context-authority-team.mdc": { + "path": ".cursor/rules/ion-context-authority-team.mdc", + "sha256": "dee4d3c58ce5b5c59c480b70f7151eba99196b13c5d7b328b693a72d5b0530f2", + "size": 1129 + }, + ".cursor/rules/ion-cursor-onboarding.mdc": { + "path": ".cursor/rules/ion-cursor-onboarding.mdc", + "sha256": "69776bec21cb1de4a51adac50953f0fe962c7ce1789085928f429402d6eb14a9", + "size": 2281 + }, + ".cursor/rules/ion-full-workflow-mount.mdc": { + "path": ".cursor/rules/ion-full-workflow-mount.mdc", + "sha256": "211022c1cfd448a160c04de53ad4bb97ea40c9f1d73d587a0a2580cc2f8945e4", + "size": 1607 + }, + ".cursor/rules/ion-mcp-control-bridge.mdc": { + "path": ".cursor/rules/ion-mcp-control-bridge.mdc", + "sha256": "0c63262518fb2f891921b790c8c0e2de13fb3c4a5cdceeeb27c7a11739e41cb8", + "size": 877 + }, + ".cursor/rules/ion-persona-user-facing.mdc": { + "path": ".cursor/rules/ion-persona-user-facing.mdc", + "sha256": "2626f8079aad72133804a87e19d87d11fdac52531a520d292c3de07e20238ec8", + "size": 1527 + }, + ".cursor/skills/ion-autopilot/SKILL.md": { + "path": ".cursor/skills/ion-autopilot/SKILL.md", + "sha256": "baf3ecbe9b2b527ce6e58b4cd981e5d42e9a032564c7580ec1d34332589dc5af", + "size": 2279 + }, + ".cursor/skills/ion-carrier-control/SKILL.md": { + "path": ".cursor/skills/ion-carrier-control/SKILL.md", + "sha256": "7833f6fb4200026fd47003b083ae26fffffc1aa6afade4c30e5dfdb5e63609f6", + "size": 1171 + }, + ".github/ISSUE_TEMPLATE/config.yml": { + "path": ".github/ISSUE_TEMPLATE/config.yml", + "sha256": "aade932569664b9ce4330e51aa45f74a431cca70e8d689baeed7a45316d6132e", + "size": 238 + }, + ".github/ISSUE_TEMPLATE/ion_work_packet.yml": { + "path": ".github/ISSUE_TEMPLATE/ion_work_packet.yml", + "sha256": "d60819411cf2016e02548dd122a70265db8720539479ba0089624e3a20e0eade", + "size": 2296 + }, + ".github/ISSUE_TEMPLATE/public_bug_report.yml": { + "path": ".github/ISSUE_TEMPLATE/public_bug_report.yml", + "sha256": "b39930a980bb8b6224aa9a4097e66fa40e1d622beb6ad2cf4e0b5fda2be45508", + "size": 1225 + }, + ".github/PULL_REQUEST_TEMPLATE.md": { + "path": ".github/PULL_REQUEST_TEMPLATE.md", + "sha256": "898854c87f897bac371acd91c5cc64c2fbba355de0404528806e7521b0c2e7bb", + "size": 404 + }, + ".gitignore": { + "path": ".gitignore", + "sha256": "96b15217d8bb4da66ccf8f314c62dd62c1d5285ae906a2697503475a34ef0c10", + "size": 684 + }, + ".pytest_cache/.gitignore": { + "path": ".pytest_cache/.gitignore", + "sha256": "3ed731b65d06150c138e2dadb0be0697550888a6b47eb8c45ecc9adba8b8e9bd", + "size": 37 + }, + ".pytest_cache/CACHEDIR.TAG": { + "path": ".pytest_cache/CACHEDIR.TAG", + "sha256": "37dc88ef9a0abeddbe81053a6dd8fdfb13afb613045ea1eb4a5c815a74a3bde4", + "size": 191 + }, + ".pytest_cache/README.md": { + "path": ".pytest_cache/README.md", + "sha256": "73fd6fccdd802c419a6b2d983d6c3173b7da97558ac4b589edec2dfe443db9ad", + "size": 302 + }, + ".pytest_cache/v/cache/lastfailed": { + "path": ".pytest_cache/v/cache/lastfailed", + "sha256": "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a", + "size": 2 + }, + ".pytest_cache/v/cache/nodeids": { + "path": ".pytest_cache/v/cache/nodeids", + "sha256": "f80fcd7526fe7b61553732069b9a46e67a7692ad0f7e2bb8588abf13d69bf7c2", + "size": 31539 + }, + ".vscode/extensions.json": { + "path": ".vscode/extensions.json", + "sha256": "bf8afec74beffbc8ad8ad9cfd706b6e24a5b95387a98534d17bfb617b6517c5b", + "size": 74 + }, + ".vscode/launch.json": { + "path": ".vscode/launch.json", + "sha256": "9e8ecb92a397899a619261494b775636806c55b9f9843f7a589172fa2791d904", + "size": 1469 + }, + ".vscode/settings.json": { + "path": ".vscode/settings.json", + "sha256": "316aa5bd73fc5d1855279e6d721286c361e6dc6f2e17cd83c007777ddfb4df36", + "size": 806 + }, + ".vscode/tasks.json": { + "path": ".vscode/tasks.json", + "sha256": "82c1071b39272ec2322019f29eb49dbbf6a2b9ac36e58b3cd6f92ca414e8566e", + "size": 591 + }, + "CONTRIBUTING.md": { + "path": "CONTRIBUTING.md", + "sha256": "bc2e59c543b1b1e7dbea10c61b14a4d260b8ab142986d4e5bc6e447aec76cc70", + "size": 1367 + }, + "ION/00_BOOTSTRAP/V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_LOCK.md", + "sha256": "97f5fb7cff632a0da437bf975db4be067fcc5616161d125c7ed2470a75228fbb", + "size": 1572 + }, + "ION/00_BOOTSTRAP/V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE_LOCK.md", + "sha256": "530a669003d2d18ee93658d786f7cc683cbc45f9757b2f9975b8fa96d6d0f5ee", + "size": 1288 + }, + "ION/00_BOOTSTRAP/V102_CONTEXT_METABOLISM_AND_LIFECYCLE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V102_CONTEXT_METABOLISM_AND_LIFECYCLE_LOCK.md", + "sha256": "e36d7a34a7a0f7c8d61bc2be1ab56db3f6098250d681cc6fa4371c77f7acc23a", + "size": 1249 + }, + "ION/00_BOOTSTRAP/V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_LOCK.md", + "sha256": "d15d45292e823964d11241192bba6d7b1e45cffffa6f6f3dfe9158025ad70410", + "size": 1191 + }, + "ION/00_BOOTSTRAP/V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_LOCK.md", + "sha256": "3df604eee76434dbcca5e38d6ccb375f92b7b65f866eab7841a95cdd9a78055d", + "size": 1036 + }, + "ION/00_BOOTSTRAP/V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY_LOCK.md", + "sha256": "7a71cd2b0bbfeec48239e513469e0e1c750fe89c6a311cbf154aa909a1cdc455", + "size": 507 + }, + "ION/00_BOOTSTRAP/V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_LOCK.md", + "sha256": "2c6fdbfde5cd2739f33252fba37701eeaae7dbda76f2bb57ff69b750cd338b0c", + "size": 888 + }, + "ION/00_BOOTSTRAP/V108_V72_MCP_DONOR_RECONCILIATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V108_V72_MCP_DONOR_RECONCILIATION_LOCK.md", + "sha256": "74a4007a7e2270e2eab6952ad9750c7f8497f247264ad05751d0bb917cafe6fe", + "size": 2035 + }, + "ION/00_BOOTSTRAP/V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_LOCK.md", + "sha256": "1542ea96ff0f9b5e0179226ebe0f8e297dc1e095c3b4d994a797e8d488cb7278", + "size": 1380 + }, + "ION/00_BOOTSTRAP/V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_LOCK.md", + "sha256": "946df50f853a118c24a8669a29b6e546dee268166e0cbab1f500124b3c2ea871", + "size": 1267 + }, + "ION/00_BOOTSTRAP/V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_LOCK.md", + "sha256": "ab6606bfbd992e7c53354c20c0bb18b88251f8ebcfc28c182e53fb63d2c85f26", + "size": 1502 + }, + "ION/00_BOOTSTRAP/V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_LOCK.md", + "sha256": "84bbc01a82225d6236b2e558e18356a01e96b9991e958f407b81b4fe60115082", + "size": 1610 + }, + "ION/00_BOOTSTRAP/V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_LOCK.md", + "sha256": "b74dca0749323745a0945df8a53707bb999492212307c0419c90a896219f3251", + "size": 1488 + }, + "ION/00_BOOTSTRAP/V114_DEFERRED_SPAWN_VISIBILITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V114_DEFERRED_SPAWN_VISIBILITY_LOCK.md", + "sha256": "c8f4347a356d339cb1de98c4f1f07fb14b8f2c19822f3246ea3a578d79551dcf", + "size": 1432 + }, + "ION/00_BOOTSTRAP/V115_AUDIT_TRUTH_RECONCILIATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V115_AUDIT_TRUTH_RECONCILIATION_LOCK.md", + "sha256": "b8e0f63ed8a9982477780ca36cfcdbb633d9396d353d850a5b262ce1f986276d", + "size": 1526 + }, + "ION/00_BOOTSTRAP/V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_LOCK.md", + "sha256": "f0f7ffd6986eee07517490621730a024b5961cc3bf3f2d1faeb6dde8f94cffae", + "size": 1574 + }, + "ION/00_BOOTSTRAP/V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_LOCK.md", + "sha256": "aeee41302cb0fff7e504117767257153161e1ca53a6aece5ebaa8f0a03bc1326", + "size": 1985 + }, + "ION/00_BOOTSTRAP/V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_LOCK.md", + "sha256": "d8d531108311ebbda367a5ddb7e55958e5be30596631f02bf9441c5d589f8a14", + "size": 1848 + }, + "ION/00_BOOTSTRAP/V119_CURRENT_OPERATING_PACKET_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V119_CURRENT_OPERATING_PACKET_LOCK.md", + "sha256": "adcf6b4b985164eaf0c5225a598db0bc6ea6eb11b69e4e13398823d2d2e242dd", + "size": 1427 + }, + "ION/00_BOOTSTRAP/V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_LOCK.md", + "sha256": "1718aad4d15abef0239bc7599cc10acf2edb5ea1875704f61431373137f74de7", + "size": 953 + }, + "ION/00_BOOTSTRAP/V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_LOCK.md", + "sha256": "c9523ee1426da7aa71810e677fca7c2bde86230cbf9ea73f702974a406f73e8d", + "size": 829 + }, + "ION/00_BOOTSTRAP/V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_LOCK.md", + "sha256": "8afbc1757cbdeb3569cae420ac2061dd63f3940a34a4f2212755aac800b32cea", + "size": 654 + }, + "ION/00_BOOTSTRAP/V123_ROOT_ONBOARDING_SHIM_RETIREMENT_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V123_ROOT_ONBOARDING_SHIM_RETIREMENT_LOCK.md", + "sha256": "4a5955798efa9f5daea22d04cc9d23fc1e28e4ad0eb6fd6590c1186506d63b90", + "size": 2932 + }, + "ION/00_BOOTSTRAP/V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_LOCK.md", + "sha256": "d31244dfdb07775297b640168330af175801e36b3216551cbd9c1b57dea35321", + "size": 1578 + }, + "ION/00_BOOTSTRAP/V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_LOCK.md", + "sha256": "d20d765c49763fe92e68270385fdad1921848a5484a7873d76eca45ac2404481", + "size": 1436 + }, + "ION/00_BOOTSTRAP/V32_CERTIFIED_DEMO_BASELINE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V32_CERTIFIED_DEMO_BASELINE_LOCK.md", + "sha256": "58a2360dccebae0f801f55a56bd67db8ac4d5de40903b0994dd839a37135729d", + "size": 1153 + }, + "ION/00_BOOTSTRAP/V34_GPT55_SELF_MOUNT_DELEGATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V34_GPT55_SELF_MOUNT_DELEGATION_LOCK.md", + "sha256": "bf071f54528e8e25909f1dcaf9647e0c66d0da522b858177a8140ecbeb46b073", + "size": 1533 + }, + "ION/00_BOOTSTRAP/V35_RUNTIME_IDENTITY_ENVELOPE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V35_RUNTIME_IDENTITY_ENVELOPE_LOCK.md", + "sha256": "3b74f218199a58d3a6d60a812746e6c5c85eb277edfdb5035157ae742bad79cb", + "size": 1423 + }, + "ION/00_BOOTSTRAP/V36_SELF_SURFACE_DRIFT_GATE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V36_SELF_SURFACE_DRIFT_GATE_LOCK.md", + "sha256": "318be2d6b965a1a59c7f773aa7db25bcae5a272ddd27bdbd7bd73c51807e0854", + "size": 573 + }, + "ION/00_BOOTSTRAP/V37_AGENT_SUCCESSION_PACKET_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V37_AGENT_SUCCESSION_PACKET_LOCK.md", + "sha256": "da8b239e97c3d7ef6f663b916e831e7e5639a9b2c358e251f4e0b24d57ded28d", + "size": 476 + }, + "ION/00_BOOTSTRAP/V38_SELF_MOUNT_GRAPH_INTEGRATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V38_SELF_MOUNT_GRAPH_INTEGRATION_LOCK.md", + "sha256": "f967f7b7c13e6ad2f85ee1c1580fbb1d0d056310be4e2b1523c2f0e1287ca7a4", + "size": 439 + }, + "ION/00_BOOTSTRAP/V39_FRONT_DOOR_SELF_MOUNT_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V39_FRONT_DOOR_SELF_MOUNT_BINDING_LOCK.md", + "sha256": "ea758cd7ef0dba04fa4a957655ac071da6a7ab274169dc1675b1d70cdec5cff1", + "size": 915 + }, + "ION/00_BOOTSTRAP/V40_MAINTAINED_WORK_SURFACE_AND_PERSONA_SYSTEM_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V40_MAINTAINED_WORK_SURFACE_AND_PERSONA_SYSTEM_LOCK.md", + "sha256": "20d23d8ce9327500e11ba2897ba33947d6c878a68a08863793c2d1f63a74bdfe", + "size": 1426 + }, + "ION/00_BOOTSTRAP/V41_FRONT_STAGE_COUNCIL_RUNTIME_RECEIPTS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V41_FRONT_STAGE_COUNCIL_RUNTIME_RECEIPTS_LOCK.md", + "sha256": "5679d52139565014f0ddaab5de8ba6fb7204a872021ded872b7da8d6063f8c13", + "size": 1066 + }, + "ION/00_BOOTSTRAP/V42_CONVERSATIONAL_RECEIPTS_AND_LIVE_REPAIR_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V42_CONVERSATIONAL_RECEIPTS_AND_LIVE_REPAIR_LOCK.md", + "sha256": "273e55bca9e621613df005ea2c774a76fa61b0613f08b9bd1bda793d055ed789", + "size": 380 + }, + "ION/00_BOOTSTRAP/V43_EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V43_EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_LOCK.md", + "sha256": "fbcd414c2d947f25a169e2461e7ac7093a9f8291e3997c841f90e7fe8434fad8", + "size": 358 + }, + "ION/00_BOOTSTRAP/V44_VISUAL_OBSERVATION_PACKET_SCHEMA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V44_VISUAL_OBSERVATION_PACKET_SCHEMA_LOCK.md", + "sha256": "bdee235db2e40d924f4c14cb0786420ac6c7ad6b7f63425ed972e5dda3b0c2fd", + "size": 423 + }, + "ION/00_BOOTSTRAP/V45_VISUAL_DIAGNOSIS_RECEIPTS_AND_BROWSER_HARNESS_PLAN_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V45_VISUAL_DIAGNOSIS_RECEIPTS_AND_BROWSER_HARNESS_PLAN_LOCK.md", + "sha256": "b7fd0e85a8bf0fbacda8df177b08c2ca787b071b2eb32f3c0330b5c65bc03391", + "size": 905 + }, + "ION/00_BOOTSTRAP/V46_LOCAL_VISUAL_HARNESS_PROTOTYPE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V46_LOCAL_VISUAL_HARNESS_PROTOTYPE_LOCK.md", + "sha256": "509b9f3f40f711aaa6ffd6675db24ad9a76fdf2f4d67ae96caa3e01f0ea3a29f", + "size": 997 + }, + "ION/00_BOOTSTRAP/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_LOCK.md", + "sha256": "e7502027fd687095ebad3495d23a113f7fc95dbd5e27da5774329514993bec45", + "size": 317 + }, + "ION/00_BOOTSTRAP/V48_VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V48_VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_LOCK.md", + "sha256": "db2307eca6e49e0318ec667c942794f5374ca5f097dab005e14c77525f4963e6", + "size": 298 + }, + "ION/00_BOOTSTRAP/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_LOCK.md", + "sha256": "945bd3ff8aca0456b82654f7efda9db3b6ea24fbc9cc5b690a47fb481044542b", + "size": 1094 + }, + "ION/00_BOOTSTRAP/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_LOCK.md", + "sha256": "798f7f839cb69061b847210a05f376edf1868977926409cc462875f9db28c347", + "size": 1422 + }, + "ION/00_BOOTSTRAP/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_LOCK.md", + "sha256": "979a5122585dd7dc20b3df778cd515e9b26acbd236f3be7487a2326775ae8aa4", + "size": 1389 + }, + "ION/00_BOOTSTRAP/V52_LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V52_LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_LOCK.md", + "sha256": "336de0643ca4160e637fccd05f07ac85334f97c809d4c7c7c6f8e09dc98a9140", + "size": 274 + }, + "ION/00_BOOTSTRAP/V53_LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V53_LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_LOCK.md", + "sha256": "90c383a33369bb4c376852b9dfe874157773b887a2de2750e9e9ec05372bc2a6", + "size": 434 + }, + "ION/00_BOOTSTRAP/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_LOCK.md", + "sha256": "295d003ddd34e8efa5f3d58558b127f28c72f3a1ba23012096ee4babed55b418", + "size": 689 + }, + "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_LOCK.md", + "sha256": "a3f2d162d0bd57a3ab5d86a9c535aa9e37485cdcdbe95fc552320a7efd8aae07", + "size": 2163 + }, + "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_LOCK.md", + "sha256": "2f61f04e4c47bb3a477a1d0a1f7ec21ba9ec143f33d4272b4f75db9306e968a5", + "size": 479 + }, + "ION/00_BOOTSTRAP/V56_ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACTS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V56_ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACTS_LOCK.md", + "sha256": "3b00692ae615861ed244777ffc418aabcdf3712925056bd41170cf8c9fb5c396", + "size": 2346 + }, + "ION/00_BOOTSTRAP/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_LOCK.md", + "sha256": "48741676a172edf8216b6dbb9eaf5823317baab98b23432393ff0b33dd0f09cb", + "size": 845 + }, + "ION/00_BOOTSTRAP/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING_LOCK.md", + "sha256": "74ea368793ab6087aaeba9d3cdaa8e889f901ec6b5401d766656ca3fb4d64a7b", + "size": 895 + }, + "ION/00_BOOTSTRAP/V57_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V57_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_LOCK.md", + "sha256": "a043d22e995424ffdff2bf68cca1338ac9664bc8855c6ee47dda8d03c9b43fe9", + "size": 1602 + }, + "ION/00_BOOTSTRAP/V58_BUDGET_AND_API_RATE_GOVERNORS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V58_BUDGET_AND_API_RATE_GOVERNORS_LOCK.md", + "sha256": "54aaf89fa0145c066d69dedc03134946fe2e83baf885774fae0f4e132f41b754", + "size": 1004 + }, + "ION/00_BOOTSTRAP/V58_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V58_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_LOCK.md", + "sha256": "953bef11f833ae1cc4773268d9c095f8f718563a7166aa99df0bfe31ef57ea6d", + "size": 1608 + }, + "ION/00_BOOTSTRAP/V59_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V59_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_LOCK.md", + "sha256": "9caad42678f66ed345a3f4dedb9c8656ff26d2f7b0ae648f6c1d69f316d189ab", + "size": 1369 + }, + "ION/00_BOOTSTRAP/V60_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V60_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_LOCK.md", + "sha256": "ff987e7e8a18c89a3411e585b68f823b2bb3636d8341d079ebec92a5622f574e", + "size": 1187 + }, + "ION/00_BOOTSTRAP/V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_LOCK.md", + "sha256": "91e860dbf8c70d1a58d98a338720dc2b63833653d8def1a2e8a88418dcce09c0", + "size": 1388 + }, + "ION/00_BOOTSTRAP/V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_LOCK.md", + "sha256": "c1aa7988e890aebb524e4a83872c68989ff1a0d5bf3b0311e122d625d1c5c317", + "size": 1605 + }, + "ION/00_BOOTSTRAP/V63_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V63_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_LOCK.md", + "sha256": "a970499700cdccfbf5b7c7d18a4cd7d7dc2adce3734131d8afa723fc476e2d71", + "size": 1249 + }, + "ION/00_BOOTSTRAP/V63_ION_MCP_MOUNT_AND_ACCOUNT_CONNECTION_PROTOCOL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V63_ION_MCP_MOUNT_AND_ACCOUNT_CONNECTION_PROTOCOL_LOCK.md", + "sha256": "cf3391521c1ef75911e8cd2be48245bf663d71de99b008bcd22303e5ac616225", + "size": 1776 + }, + "ION/00_BOOTSTRAP/V64_LOCAL_MCP_BRIDGE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V64_LOCAL_MCP_BRIDGE_LOCK.md", + "sha256": "9fed969409ece0cd03b5affc4b38530f5b7efaa7d522344d66945d609a68d681", + "size": 1060 + }, + "ION/00_BOOTSTRAP/V64_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V64_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_LOCK.md", + "sha256": "b1ab18d0515c64c88661a777ddaa15a2f5d9fdf2ad3bc8ec47dc1c10e8b4887d", + "size": 1076 + }, + "ION/00_BOOTSTRAP/V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_LOCK.md", + "sha256": "9f83cb88fa2c5366519dbb864efd7184372e245f8194e752384b7081c061fb32", + "size": 1004 + }, + "ION/00_BOOTSTRAP/V65_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V65_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_LOCK.md", + "sha256": "789aeb1f705079f070add2b1d662f54ce9ac4ec6377459619a684186aaef1aab", + "size": 1262 + }, + "ION/00_BOOTSTRAP/V66_LOCAL_MCP_SDK_COMPATIBILITY_AND_CLIENT_CERTIFICATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V66_LOCAL_MCP_SDK_COMPATIBILITY_AND_CLIENT_CERTIFICATION_LOCK.md", + "sha256": "60f4dead3285864d22a85bd9ea1c5d2cce8b9578770bc7ebd01da8d4d0f4d337", + "size": 1092 + }, + "ION/00_BOOTSTRAP/V66_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V66_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_LOCK.md", + "sha256": "3076c655f04ce3bb1aa57f04af8394cb4739d214252b4902f1e6eea26d239f06", + "size": 1283 + }, + "ION/00_BOOTSTRAP/V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_LOCK.md", + "sha256": "cf3252f009b96b7a8bbfd6d7f93ae135fb38dbb6c8e4c3154c4f103fac5c940b", + "size": 627 + }, + "ION/00_BOOTSTRAP/V67_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V67_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_LOCK.md", + "sha256": "1f8697f3caa9494a6362293f2d5e178e58e4d6cf3928a039a2702bac4fc7836a", + "size": 1226 + }, + "ION/00_BOOTSTRAP/V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_LOCK.md", + "sha256": "b6484a68362a83ea2fc61a701350232000a582548ba3196f0b1ba1829a300815", + "size": 930 + }, + "ION/00_BOOTSTRAP/V68_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V68_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_LOCK.md", + "sha256": "6628345eb5b836f601772c81e7f596d45c950951f7e07e39f5fc50e19aa54334", + "size": 885 + }, + "ION/00_BOOTSTRAP/V69_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V69_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_LOCK.md", + "sha256": "1333bad055313a9c04b2b6c38e2de760eb0a6423cc17c11126d00e61d4c23d10", + "size": 621 + }, + "ION/00_BOOTSTRAP/V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_LOCK.md", + "sha256": "40af4af92381ce03e36128cff9bf4b0506945a0b8084ebce467628e7dea0cd0b", + "size": 719 + }, + "ION/00_BOOTSTRAP/V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_LOCK.md", + "sha256": "15261c92680c23ff40d1499448526cf3b8f07d331e2b03259517fd20f4869620", + "size": 592 + }, + "ION/00_BOOTSTRAP/V70_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V70_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_LOCK.md", + "sha256": "a06282d33a54963d3c0bc098b4b12c9902ed4d0d8a73108fa7341ae7e1d44365", + "size": 698 + }, + "ION/00_BOOTSTRAP/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_LOCK.md", + "sha256": "bb8148c38ecee7cc2508a583889e884be4686f05344cc696f7c6f477731ef1b6", + "size": 511 + }, + "ION/00_BOOTSTRAP/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_LOCK.md", + "sha256": "cd7ead2ab3c074e438bbd4ea6cc393fe57ff6d8eb75621cdfc99763c30ae9f78", + "size": 509 + }, + "ION/00_BOOTSTRAP/V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_LOCK.md", + "sha256": "c6820f0af80b307510903a9794f1663597b2aab1bf47bec7afe15d47ebaa55a3", + "size": 847 + }, + "ION/00_BOOTSTRAP/V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_LOCK.md", + "sha256": "313ce137ef01a19bb098a0b560cafa3d6e393db6acad6f314e91315c079c4312", + "size": 1324 + }, + "ION/00_BOOTSTRAP/V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_LOCK.md", + "sha256": "86629c05f18e8c4138096596fbbfbd7e336a840b5f6cf6afa2322ce70ca8ebcc", + "size": 546 + }, + "ION/01_doctrine/CANONICAL_WORKFLOW.md": { + "path": "ION/01_doctrine/CANONICAL_WORKFLOW.md", + "sha256": "290d7d54c01c90003169735c96375418270de38167c22deee49cefb4091f3955", + "size": 3629 + }, + "ION/01_doctrine/MAINTAINED_WORK_SURFACE_CANON.md": { + "path": "ION/01_doctrine/MAINTAINED_WORK_SURFACE_CANON.md", + "sha256": "e2cfc8c00a47dfeb4e2b8b63a668937b0e374cf2a3bc4373ed69036287eae826", + "size": 1766 + }, + "ION/01_doctrine/README.md": { + "path": "ION/01_doctrine/README.md", + "sha256": "e21cf9a6d664d419bf749a539ba3b8ec9f62ad459b64226ebbbdae51f0173421", + "size": 1586 + }, + "ION/01_doctrine/SOVEREIGN_CONSTITUTION.md": { + "path": "ION/01_doctrine/SOVEREIGN_CONSTITUTION.md", + "sha256": "881cbc57448454003073c0e99d7d04f4497bd3564f219e2f0cdb77840ce5efdd", + "size": 4201 + }, + "ION/01_doctrine/SOVEREIGN_KERNEL.md": { + "path": "ION/01_doctrine/SOVEREIGN_KERNEL.md", + "sha256": "11ebe10b53bd93bb56fd92ec28c3fa4e8de4df39f9fbc511b4bb72500d9adaa1", + "size": 2347 + }, + "ION/02_architecture/ACTIVATION_AUTHORITY_PROTOCOL.md": { + "path": "ION/02_architecture/ACTIVATION_AUTHORITY_PROTOCOL.md", + "sha256": "82c4952a083237e03cd441bc5c50fb71d7c1c135eecd34d9e919c8e4d454f6c3", + "size": 8905 + }, + "ION/02_architecture/ACTIVATION_SUMMARY_HANDOFF_CAPSULE_MATERIALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/ACTIVATION_SUMMARY_HANDOFF_CAPSULE_MATERIALIZATION_PROTOCOL.md", + "sha256": "bdfdefb226196829e2588a3f38d5783c9446491c267535e02296f077900a056d", + "size": 2873 + }, + "ION/02_architecture/ACTIVE_SURFACE_RETIREMENT_PROTOCOL.md": { + "path": "ION/02_architecture/ACTIVE_SURFACE_RETIREMENT_PROTOCOL.md", + "sha256": "de778417ce6da20884f733df12c3c3ff6afec36efc409e135b598854f247b225", + "size": 1432 + }, + "ION/02_architecture/AGENT_GRAPH_CUSTODIAN_AND_SUBSPECIALIST_FANOUT_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_GRAPH_CUSTODIAN_AND_SUBSPECIALIST_FANOUT_PROTOCOL.md", + "sha256": "504e617729963cb4abc0e2e44f812c8f0238ab8e8276de82d578a4f8c4a84740", + "size": 2170 + }, + "ION/02_architecture/AGENT_REASONING_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_REASONING_PROTOCOL.md", + "sha256": "07981ef5399e06b4d4912fbd47f9b3101f4e1407cf61443d17a1fcb727fea869", + "size": 7005 + }, + "ION/02_architecture/AGENT_SELF_SURFACE_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_SELF_SURFACE_PROTOCOL.md", + "sha256": "d7d673569220769daeef926d764f6be44ca1b911ca8d6dba7b2e9bd134ee9d90", + "size": 2458 + }, + "ION/02_architecture/AGENT_SUCCESSION_PACKET_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_SUCCESSION_PACKET_PROTOCOL.md", + "sha256": "4317b2ceac1ec454c5ea0ac6202fca2e507876beb1ea5a85f45f59d1b2232f65", + "size": 1000 + }, + "ION/02_architecture/AGENT_SUCCESSION_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_SUCCESSION_PROTOCOL.md", + "sha256": "b1bdfade38c35aaa419507f3af460331c0e20d33834a20870916bf2a1248a421", + "size": 1619 + }, + "ION/02_architecture/API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.md": { + "path": "ION/02_architecture/API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.md", + "sha256": "8745953fa36af72c0d1044d10c965aa1288964180c457df009c9b1f9c6325a85", + "size": 719 + }, + "ION/02_architecture/API_RATE_GOVERNOR_AND_PROVIDER_LIMIT_PROTOCOL.md": { + "path": "ION/02_architecture/API_RATE_GOVERNOR_AND_PROVIDER_LIMIT_PROTOCOL.md", + "sha256": "6282a9305f6a695c03530da484e24b9b26be7cadb92af89c26e8e9d93ef0bfa3", + "size": 1488 + }, + "ION/02_architecture/API_RUNTIME_ENTRY_PROTOCOL.md": { + "path": "ION/02_architecture/API_RUNTIME_ENTRY_PROTOCOL.md", + "sha256": "e191e618a45a1d6288d630e43ca030e65a6273317874d52fcf1f2fad2a77e6ff", + "size": 2970 + }, + "ION/02_architecture/APPROVED_CONTEXT_INDEX_PROTOCOL.md": { + "path": "ION/02_architecture/APPROVED_CONTEXT_INDEX_PROTOCOL.md", + "sha256": "6b40b88683fcff1f77258c914f7422d50aabd948ed0285b7f77763088b5195c9", + "size": 2104 + }, + "ION/02_architecture/ARCHAEOLOGY_DAEMON_CONTRACT.md": { + "path": "ION/02_architecture/ARCHAEOLOGY_DAEMON_CONTRACT.md", + "sha256": "3afedb2a87b18fca3be58fcb4a0264316832e13c59c548f3afa0e9b80a818885", + "size": 9028 + }, + "ION/02_architecture/ARCHAEOLOGY_DAEMON_PROTOCOL.md": { + "path": "ION/02_architecture/ARCHAEOLOGY_DAEMON_PROTOCOL.md", + "sha256": "a5c52d4453c986bc101401a7e2e2f85a5f8429b78c7823b9f8c386fe258bb8de", + "size": 4458 + }, + "ION/02_architecture/AUTOMATION_STATE_PROTOCOL.md": { + "path": "ION/02_architecture/AUTOMATION_STATE_PROTOCOL.md", + "sha256": "c3df6a43b2187135a4bfc297d6c10d98ee8b33c1567eeff3cd5744dd3bb3a753", + "size": 5090 + }, + "ION/02_architecture/BATCH_AND_BACKGROUND_MODEL_EXECUTION_PROTOCOL.md": { + "path": "ION/02_architecture/BATCH_AND_BACKGROUND_MODEL_EXECUTION_PROTOCOL.md", + "sha256": "743517fa5c101ceec9015c15ecff1c4155f3193727c97061992cb2d7135460d1", + "size": 1439 + }, + "ION/02_architecture/BOUNDED_MULTI_AGENT_ALLOCATOR_PROTOCOL.md": { + "path": "ION/02_architecture/BOUNDED_MULTI_AGENT_ALLOCATOR_PROTOCOL.md", + "sha256": "af2bda2249fc6608ee6314cef07f99ab348080a114337b63921e3226414c32d5", + "size": 3921 + }, + "ION/02_architecture/BOUNDED_PARALLELISM_AND_SETTLEMENT_PROTOCOL.md": { + "path": "ION/02_architecture/BOUNDED_PARALLELISM_AND_SETTLEMENT_PROTOCOL.md", + "sha256": "89b40f8f1cf5e30f43ae184df1e92f3ced6efe8b856eabca2cacf909a944f200", + "size": 6500 + }, + "ION/02_architecture/BRANCH_BUDGET_RECURSION_AND_DRIFT_CONTROL_PROTOCOL.md": { + "path": "ION/02_architecture/BRANCH_BUDGET_RECURSION_AND_DRIFT_CONTROL_PROTOCOL.md", + "sha256": "298ae4d82fa28fac7a6b702d7a324be0c6622f5253d47adf20e8ad2fe81f6394", + "size": 3281 + }, + "ION/02_architecture/BRANCH_HORIZON_SCHEDULE_SYNCHRONIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/BRANCH_HORIZON_SCHEDULE_SYNCHRONIZATION_PROTOCOL.md", + "sha256": "60c463210c9374304d0b911105b387a806091636e2b5db5da189be30f9cbcc2b", + "size": 3848 + }, + "ION/02_architecture/BRANCH_RESCHEDULING_AND_REBINDING_PROTOCOL.md": { + "path": "ION/02_architecture/BRANCH_RESCHEDULING_AND_REBINDING_PROTOCOL.md", + "sha256": "a7c7bd5e42c8a4e196e624550d8a0b41bebc3eb6d405c50250d580f5a0884c64", + "size": 2195 + }, + "ION/02_architecture/BRIDGE_PACKET_STATUS_CLARIFICATION.md": { + "path": "ION/02_architecture/BRIDGE_PACKET_STATUS_CLARIFICATION.md", + "sha256": "d08a8a8cdf0200f73b07516286822838107f161dd71bb48716d24e8fc049ead2", + "size": 3109 + }, + "ION/02_architecture/BUDGET_AND_API_RATE_GOVERNORS_PROTOCOL.md": { + "path": "ION/02_architecture/BUDGET_AND_API_RATE_GOVERNORS_PROTOCOL.md", + "sha256": "6164ff5fc7740af6a433c2935b7950ffae17c1d5a81831e2092ede3627aa96af", + "size": 1794 + }, + "ION/02_architecture/CANON_PROMOTION_AND_RATIFICATION_PROTOCOL.md": { + "path": "ION/02_architecture/CANON_PROMOTION_AND_RATIFICATION_PROTOCOL.md", + "sha256": "cc156bd5829eeb3b980dd3e61a3f215cf0d6235b1a954913175ad9eafa6ee11b", + "size": 1448 + }, + "ION/02_architecture/CHILD_WORK_OPERATIONALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/CHILD_WORK_OPERATIONALIZATION_PROTOCOL.md", + "sha256": "f6ab4bbbd4201884aa2aa647f5ca16a064fd1bdb3426e1f8f11be8e767627ed1", + "size": 1939 + }, + "ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md": { + "path": "ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md", + "sha256": "540b09f8d7f53d31675f719c780d1a71ad9f646d00f035658238b497432874f8", + "size": 3824 + }, + "ION/02_architecture/CODEX_EXTENSION_CARRIER_PROTOCOL.md": { + "path": "ION/02_architecture/CODEX_EXTENSION_CARRIER_PROTOCOL.md", + "sha256": "a6003ed4bc00fdb8f86ede880e60784b907bce9bd9d201d35671e85d6607c656", + "size": 1479 + }, + "ION/02_architecture/CODEX_LEAD_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/CODEX_LEAD_ORCHESTRATION_PROTOCOL.md", + "sha256": "3d2331af7f88977d1a2b2d1443939a8f2d3f960892accebe83e1e5c531292674", + "size": 1744 + }, + "ION/02_architecture/CONJUGATE_DAIMON_PROTOCOL.md": { + "path": "ION/02_architecture/CONJUGATE_DAIMON_PROTOCOL.md", + "sha256": "4ddfe011ac307c89cc3e27f585a49b1e798248eec2f3c9417730910ceed85052", + "size": 12191 + }, + "ION/02_architecture/CONSTITUTIONAL_AMENDMENT_PROTOCOL.md": { + "path": "ION/02_architecture/CONSTITUTIONAL_AMENDMENT_PROTOCOL.md", + "sha256": "2547fb46f07fc0cef07037b3eaa2f1e8747cc0f5dc03a47f604aeab866564f39", + "size": 1383 + }, + "ION/02_architecture/CONTEXT_GRAPH_ONTOLOGY_ADAPTER_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_GRAPH_ONTOLOGY_ADAPTER_PROTOCOL.md", + "sha256": "8cdd77447cafc45928749a3adc65a6451383c29b43cd72780f71830766188199", + "size": 4773 + }, + "ION/02_architecture/CONTEXT_GRAPH_SUBSTRATE_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_GRAPH_SUBSTRATE_PROTOCOL.md", + "sha256": "96dc47a1892c60022b1a0f20fe09c5a414e7cfa0bdcf32e61b75569f04c76b0c", + "size": 2754 + }, + "ION/02_architecture/CONTEXT_MODE_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_MODE_PROTOCOL.md", + "sha256": "e93412f113881ae9ef2e67f0dc11472f521e877a703ecf0e93173d13ad79eea7", + "size": 6516 + }, + "ION/02_architecture/CONTEXT_NODE_AND_PACKAGE_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_NODE_AND_PACKAGE_PROTOCOL.md", + "sha256": "ff21a39dd08cc1d31237af79255b25b587d0c7e9cdb8d3795bd0fee8365fde48", + "size": 1078 + }, + "ION/02_architecture/CONTEXT_PERFECT_CONTINUATION_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_PERFECT_CONTINUATION_PROTOCOL.md", + "sha256": "aa29f121edc14228f4a22ebed18fdb857b7eef0906ac0801e8a31a10d6d8d20d", + "size": 4550 + }, + "ION/02_architecture/CONTEXT_PLANES.md": { + "path": "ION/02_architecture/CONTEXT_PLANES.md", + "sha256": "ad9189b2dc9217999958c5c117c6e763addd1b5d9930c1557859f391d05b0521", + "size": 4237 + }, + "ION/02_architecture/CONTINUITY_ARCHITECTURE.md": { + "path": "ION/02_architecture/CONTINUITY_ARCHITECTURE.md", + "sha256": "f4b0c040cd4584e5ecf6b93768d314fb37bf9600d67886a96b1f12afeb567f13", + "size": 9151 + }, + "ION/02_architecture/CONTINUITY_OF_SELF_VS_CONTINUITY_OF_TASK_PROTOCOL.md": { + "path": "ION/02_architecture/CONTINUITY_OF_SELF_VS_CONTINUITY_OF_TASK_PROTOCOL.md", + "sha256": "c8a7cb90f7e9786dcb73c58c93aa1e4f7f636c68110c732b703b2d452ad5e7b8", + "size": 1817 + }, + "ION/02_architecture/CONTRACT_BOUND_EVENT_INTEGRATION_PROTOCOL.md": { + "path": "ION/02_architecture/CONTRACT_BOUND_EVENT_INTEGRATION_PROTOCOL.md", + "sha256": "4f099128d25dc0aa445800cbcac6de63949870c36af4b8f02d85f02620c9f9c5", + "size": 2684 + }, + "ION/02_architecture/CONTRACT_BOUND_EVENT_RUNTIME_PROTOCOL.md": { + "path": "ION/02_architecture/CONTRACT_BOUND_EVENT_RUNTIME_PROTOCOL.md", + "sha256": "eb98cc67f7619cc98c5fa5b0e6e2aa09ad365b83c3f94a8d339ab72e8f9e6e4f", + "size": 2837 + }, + "ION/02_architecture/CONVERSATIONAL_RECEIPT_AND_LIVE_REPAIR_PROTOCOL.md": { + "path": "ION/02_architecture/CONVERSATIONAL_RECEIPT_AND_LIVE_REPAIR_PROTOCOL.md", + "sha256": "bb8a1c170899eaf60ab526ba3c8479dbc171275c15f6fb63e2cb27b73d3b3a4c", + "size": 958 + }, + "ION/02_architecture/COST_QUALITY_MARGIN_ROUTING_PROTOCOL.md": { + "path": "ION/02_architecture/COST_QUALITY_MARGIN_ROUTING_PROTOCOL.md", + "sha256": "422d27bae79f4eff9f447776ee9108b205a4ae10334ba674efec5a3fa8068c52", + "size": 1493 + }, + "ION/02_architecture/CROSS_MODEL_AUDIT_AND_CONSENSUS_PROTOCOL.md": { + "path": "ION/02_architecture/CROSS_MODEL_AUDIT_AND_CONSENSUS_PROTOCOL.md", + "sha256": "7a8475a7580f0b6725ef7b3eb1e93272f18ad297e0465d29c8b6f3ab865d43f2", + "size": 1458 + }, + "ION/02_architecture/DEMO_SPINE_BRANCH_CONSOLIDATION_PROTOCOL.md": { + "path": "ION/02_architecture/DEMO_SPINE_BRANCH_CONSOLIDATION_PROTOCOL.md", + "sha256": "da9b58b36146d948c9ff5f9149ed5b2d0bac0239b234a5732eba2a11dddfca06", + "size": 1444 + }, + "ION/02_architecture/DISAGREEMENT_ESCALATION_PROTOCOL.md": { + "path": "ION/02_architecture/DISAGREEMENT_ESCALATION_PROTOCOL.md", + "sha256": "affe40e821a9df539e094940443a0e15166747a478329c60ea13ed2ab8d14d76", + "size": 3085 + }, + "ION/02_architecture/DOCTRINE_EVOLUTION_PROTOCOL.md": { + "path": "ION/02_architecture/DOCTRINE_EVOLUTION_PROTOCOL.md", + "sha256": "10c1e56ba907ef38e7d75012fd8c5fb2b5d36d6ecfccdae74d9aca08c0c75901", + "size": 8228 + }, + "ION/02_architecture/DRIFT_OF_SELF_PROTOCOL.md": { + "path": "ION/02_architecture/DRIFT_OF_SELF_PROTOCOL.md", + "sha256": "28cf2658ff9e9f825168ede6b5fc846e1667f6201770c8a497c8df42fe073a81", + "size": 1483 + }, + "ION/02_architecture/EVENTED_TEMPLATE_FILE_GRAPH_PROTOCOL.md": { + "path": "ION/02_architecture/EVENTED_TEMPLATE_FILE_GRAPH_PROTOCOL.md", + "sha256": "12f1789a5caca78c4a97a90d43580da9aab4406ae1256e37c4754401cf28b8c5", + "size": 7116 + }, + "ION/02_architecture/EXECUTOR_CAPABILITY_REGISTRY_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_CAPABILITY_REGISTRY_PROTOCOL.md", + "sha256": "dc7b11867cd5d828a24be68f7e14ccca5ff7aded05c9bd312901d7bdaa7043bb", + "size": 4979 + }, + "ION/02_architecture/EXECUTOR_FLEET_LIFECYCLE_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_FLEET_LIFECYCLE_PROTOCOL.md", + "sha256": "42a25baa48b0492725d6c4d3170988e4d3210454cb0139f8c5ef353a56fb9f80", + "size": 3861 + }, + "ION/02_architecture/EXECUTOR_LIFECYCLE_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_LIFECYCLE_PROTOCOL.md", + "sha256": "4d8c0111c5409291b37dec2f5035974b1d0450dd4120616cbae6189e0af5add8", + "size": 9442 + }, + "ION/02_architecture/EXECUTOR_WORK_CLOSURE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_WORK_CLOSURE_BINDING_PROTOCOL.md", + "sha256": "51d417b248ac5998a6f2e629a62d2fbaea60a88fa107674ea0c669a7c61da13c", + "size": 1372 + }, + "ION/02_architecture/EXECUTOR_WORK_LIFECYCLE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_WORK_LIFECYCLE_BINDING_PROTOCOL.md", + "sha256": "e0e7408a2380d78b9ea6cb7eba01c19f55fda5732cd41721ce9ba2c6f5bbaf8f", + "size": 2299 + }, + "ION/02_architecture/EXPRESSIVE_TELEMETRY_AND_AFFECT_INTEGRITY_PROTOCOL.md": { + "path": "ION/02_architecture/EXPRESSIVE_TELEMETRY_AND_AFFECT_INTEGRITY_PROTOCOL.md", + "sha256": "b948d36c498ae399ba65a14ddc4e3b2cbc990e4fcbfb03a06215a1167c7093ec", + "size": 1464 + }, + "ION/02_architecture/EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_PROTOCOL.md", + "sha256": "a637385c91cda70cb883821040591c28c4cb0bbc1437cfdb19ea2de570842fcb", + "size": 581 + }, + "ION/02_architecture/EXTERNAL_EXECUTION_MCP_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/EXTERNAL_EXECUTION_MCP_BRIDGE_PROTOCOL.md", + "sha256": "c0102c35d7d5b86e6e07500e3d71fc303cc211a5c8e460cf5def2401890420d1", + "size": 2839 + }, + "ION/02_architecture/EXTERNAL_ZIP_RETURN_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/EXTERNAL_ZIP_RETURN_BRIDGE_PROTOCOL.md", + "sha256": "253ef3855fe6f6aae57d97a87d34571f07db9268b087a8513c31cebb72afc28e", + "size": 2963 + }, + "ION/02_architecture/FAN_IN_MERGE_REVIEW_SETTLEMENT_PROTOCOL.md": { + "path": "ION/02_architecture/FAN_IN_MERGE_REVIEW_SETTLEMENT_PROTOCOL.md", + "sha256": "43e76d656b17617cc341fdc3bc732e3b125776e0d8734aff075b0f624721662d", + "size": 3044 + }, + "ION/02_architecture/FLEET_EXECUTOR_CAPABILITY_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/FLEET_EXECUTOR_CAPABILITY_BINDING_PROTOCOL.md", + "sha256": "6a76acddc526761a96a497b6040c9fdd887efcf32e41de6dd42227782401606e", + "size": 2031 + }, + "ION/02_architecture/FRONT_DOOR_CHAT_ORCHESTRATION_ADAPTER_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_CHAT_ORCHESTRATION_ADAPTER_PROTOCOL.md", + "sha256": "ddb4653fb485b6c9cb84fe96c51d7f3ab3f260db3b2978ae96d1941e2a27c4c2", + "size": 3032 + }, + "ION/02_architecture/FRONT_DOOR_PERSONA_RELAY_STEWARD_BOUNDARY_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_PERSONA_RELAY_STEWARD_BOUNDARY_PROTOCOL.md", + "sha256": "21b2e2ae2d9d8cd21158219bfcaf972a3bf436f71b83e61fcec8f418457aea57", + "size": 6284 + }, + "ION/02_architecture/FRONT_DOOR_RUNTIME_ENTRY_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_RUNTIME_ENTRY_PROTOCOL.md", + "sha256": "69fe31621cc562f380d138f6b79ae155f0812bdbb8d9245b9e4d7101b1bf84dd", + "size": 2261 + }, + "ION/02_architecture/FRONT_DOOR_SELF_MOUNT_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_SELF_MOUNT_BINDING_PROTOCOL.md", + "sha256": "fd9845def08968acd9450d7900e684214d0611c72b29529154931d06517aab78", + "size": 1524 + }, + "ION/02_architecture/FRONT_STAGE_COUNCIL_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_STAGE_COUNCIL_PROTOCOL.md", + "sha256": "db11b5e35532701bcfa4215ff23adb616282a845553c96c57d55e3aae512f93c", + "size": 1231 + }, + "ION/02_architecture/FRONT_STAGE_COUNCIL_RUNTIME_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_STAGE_COUNCIL_RUNTIME_RECEIPT_PROTOCOL.md", + "sha256": "e764d751922aa5e3693aad057ea2ac2fc2abf57806779ca662107f70ac76ae7c", + "size": 2310 + }, + "ION/02_architecture/GPT55_SELF_MOUNT_CHARTER.md": { + "path": "ION/02_architecture/GPT55_SELF_MOUNT_CHARTER.md", + "sha256": "fb641d2cf01b10c3b0947c87dcf8a7ee542ef45d1310631d1f5892fe9bc6d6f2", + "size": 2478 + }, + "ION/02_architecture/GRAPH_REACTION_REGISTRY_PROTOCOL.md": { + "path": "ION/02_architecture/GRAPH_REACTION_REGISTRY_PROTOCOL.md", + "sha256": "810a9673b1ade8ec79bd4f55bcf2e0210a27b24e921788ef62129406265d7528", + "size": 1944 + }, + "ION/02_architecture/GRAPH_WRITEBACK_AND_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/GRAPH_WRITEBACK_AND_RECEIPT_PROTOCOL.md", + "sha256": "054cf5850adddab9f42f092f769c138e2a64e2e13a9b0611249e5b1e39b6049c", + "size": 1870 + }, + "ION/02_architecture/HANDOFF_CAPSULE_EXECUTOR_ENTRY_REHEARSAL_PROTOCOL.md": { + "path": "ION/02_architecture/HANDOFF_CAPSULE_EXECUTOR_ENTRY_REHEARSAL_PROTOCOL.md", + "sha256": "e24244054879ae9abd74ff01155a92b60d4347496cca1da59fa8458d318a2729", + "size": 3127 + }, + "ION/02_architecture/HANDOFF_TAKEOVER_NORMALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/HANDOFF_TAKEOVER_NORMALIZATION_PROTOCOL.md", + "sha256": "6279daaaee9b7c5a4279e60364fbdf3025d0012b7b0148396fbbaeca99e1429c", + "size": 4458 + }, + "ION/02_architecture/HORIZON_ENACTMENT_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_ENACTMENT_RECEIPT_PROTOCOL.md", + "sha256": "6ec26b2f9dbeb831d2b0d3cb1fd5f8b8f7e56bffe80c04bb5e13d3954011105b", + "size": 1809 + }, + "ION/02_architecture/HORIZON_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_ORCHESTRATION_PROTOCOL.md", + "sha256": "8a8421bc4701f584a55b9447aa345832044e1c72279be6e24ec68d7b41ac837e", + "size": 2027 + }, + "ION/02_architecture/HORIZON_PACKET_ENACTMENT_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_PACKET_ENACTMENT_PROTOCOL.md", + "sha256": "e4b6cb332fa91d17b4393e91992507bbf80abbcf76ac80d4a9f244b0a37181d0", + "size": 1977 + }, + "ION/02_architecture/HORIZON_STATE_AND_TIGHTENING_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_STATE_AND_TIGHTENING_PROTOCOL.md", + "sha256": "dba9a68aea7ff6d138eb7604f632ff59aff472dc7452390f1826353e59033e40", + "size": 2032 + }, + "ION/02_architecture/HORIZON_TO_EXECUTION_WORKFLOW_REHEARSAL_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_TO_EXECUTION_WORKFLOW_REHEARSAL_PROTOCOL.md", + "sha256": "f372f9241cfacbfa1e42f958794994157b64b621282ae395a30196ac555804ce", + "size": 1987 + }, + "ION/02_architecture/INGRESS_AUTHORITY_RESOLUTION_PROTOCOL.md": { + "path": "ION/02_architecture/INGRESS_AUTHORITY_RESOLUTION_PROTOCOL.md", + "sha256": "5df4d548724c56a02e953c2d47c5a3079f4f0d7a42e37b1e7a34b982db43c567", + "size": 1688 + }, + "ION/02_architecture/INTELLIGENT_DOMAIN_PROTOCOL.md": { + "path": "ION/02_architecture/INTELLIGENT_DOMAIN_PROTOCOL.md", + "sha256": "4cd405967b6e5f7d3970de385cc477f87284412c0f72bbc519126033780259b2", + "size": 5333 + }, + "ION/02_architecture/ION_ACCOUNT_WORKSPACE_AND_STATE_ROOT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_ACCOUNT_WORKSPACE_AND_STATE_ROOT_PROTOCOL.md", + "sha256": "59bc9baab631633d44a4979ac1183bed5b4948b2e60df1d5f0ed2af8de660c51", + "size": 4906 + }, + "ION/02_architecture/ION_AGENT_CONTEXT_CONTINUITY_TIMELINE_AND_ROUTE_MAP_PROTOCOL.md": { + "path": "ION/02_architecture/ION_AGENT_CONTEXT_CONTINUITY_TIMELINE_AND_ROUTE_MAP_PROTOCOL.md", + "sha256": "2b64dc0641a0aa4f54ad96af9f8fb5cc3b009d978808e8780a0b17348045229e", + "size": 10046 + }, + "ION/02_architecture/ION_AGENT_CONTEXT_DYNAMICS_AND_CONTEXT_WINDOW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_AGENT_CONTEXT_DYNAMICS_AND_CONTEXT_WINDOW_PROTOCOL.md", + "sha256": "30ec213c9b9a8dffc346075a51b2f94b50dbc0d64817c95c4fcc0a540d05c56a", + "size": 6451 + }, + "ION/02_architecture/ION_AGENT_CONTEXT_SYSTEMS_PROTOCOL.md": { + "path": "ION/02_architecture/ION_AGENT_CONTEXT_SYSTEMS_PROTOCOL.md", + "sha256": "37c4f30751a51a4da5d3de74b1d8cf9eb879e10c6fbf4dee398a8c227dad4aca", + "size": 5465 + }, + "ION/02_architecture/ION_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/ION_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_PROTOCOL.md", + "sha256": "8bc5982d0c46ccd31cd23304c0d9279d1044c197c607345654daf91973c8c6d5", + "size": 1661 + }, + "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md": { + "path": "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md", + "sha256": "9d9c04f5601409ebe37887c829d50309b97e2d557edd6a7c31047695990d63e4", + "size": 5542 + }, + "ION/02_architecture/ION_CARRIER_CYCLE_PLAN_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_CYCLE_PLAN_PROTOCOL.md", + "sha256": "b8c32e7aefc01d38386b3b3c72ee28adf6d083af5f2ce664a109868b0c7350bd", + "size": 1442 + }, + "ION/02_architecture/ION_CARRIER_ONBOARDING_AUTHORITY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_ONBOARDING_AUTHORITY_PROTOCOL.md", + "sha256": "bc512a5a361fc1beefec0ec39187ca4febee26588e866f0347d8454ca87f8dde", + "size": 4336 + }, + "ION/02_architecture/ION_CARRIER_RUNTIME_FOUNDATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_RUNTIME_FOUNDATION_PROTOCOL.md", + "sha256": "47d188c93871a7361b0f2b4c7ead24ad943ee2680a442f284d9c3c16b8660658", + "size": 1561 + }, + "ION/02_architecture/ION_CARRIER_TASK_RETURN_INTAKE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_TASK_RETURN_INTAKE_PROTOCOL.md", + "sha256": "ff45c4fb90c53fa48e6b932e8755a59782ec1963ad16b620a85a819b8eb0fb98", + "size": 1997 + }, + "ION/02_architecture/ION_CARRIER_TO_CARRIER_COMMUNICATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_TO_CARRIER_COMMUNICATION_PROTOCOL.md", + "sha256": "4da3c70220212a6124825f4d7ddf1258ca99306bd86573e6a7bcb5c7698c4d20", + "size": 2455 + }, + "ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md", + "sha256": "b7081fe506a36b099914ff475008400c5351f83c2f3157633962c3c2412c0c55", + "size": 1763 + }, + "ION/02_architecture/ION_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_PROTOCOL.md", + "sha256": "64e318ae5436025f112048f1df824730f7b3537f34b3d8123ac9306432dfeb26", + "size": 2140 + }, + "ION/02_architecture/ION_CHATGPT_BROWSER_MCP_CONNECTOR_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATGPT_BROWSER_MCP_CONNECTOR_PROTOCOL.md", + "sha256": "9c8931029cc7df778d04c62238c0f63db65d5955705e437696cc55f457cfea27", + "size": 5093 + }, + "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md", + "sha256": "a042ac4da299442316b5624ddc1ae7015ebb6ceb307d6822bdddf66345802429", + "size": 3194 + }, + "ION/02_architecture/ION_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_PROTOCOL.md", + "sha256": "b17cdbdc5448a9201c8d3fa1af3b7bce4832791acd169941034726b1e1465b75", + "size": 975 + }, + "ION/02_architecture/ION_CONTEXT_AUTHORITY_TEAM_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CONTEXT_AUTHORITY_TEAM_PROTOCOL.md", + "sha256": "a24db38a81c9f1f664fd1a233200710b1e486ba69ff3e0c923b5c745908388d2", + "size": 7976 + }, + "ION/02_architecture/ION_CONTEXT_METABOLISM_AND_LIFECYCLE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CONTEXT_METABOLISM_AND_LIFECYCLE_PROTOCOL.md", + "sha256": "16128c7ccb9df204612b9673e74d6fbcdc8b89dc5ad36450043bfa67ced6f890", + "size": 5463 + }, + "ION/02_architecture/ION_CORE_TELEMETRY_TRIAD_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CORE_TELEMETRY_TRIAD_PROTOCOL.md", + "sha256": "62f4e0bb4b52151fbe64d94a3f5392b123c11da618182f75efaf6bef08889381", + "size": 1178 + }, + "ION/02_architecture/ION_CURSOR_AUTOPILOT_COMMAND_AND_SUBAGENT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_AUTOPILOT_COMMAND_AND_SUBAGENT_PROTOCOL.md", + "sha256": "f357bd1ff4cdd091783a9d8334b4e6a189606cb644546917d7cca5fd3a03406d", + "size": 2264 + }, + "ION/02_architecture/ION_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_PROTOCOL.md", + "sha256": "b5c5ee8b4fe6dbe4a24fb6aa5a99256aed9bdef9b5d04926d4ab6ebe077ebbc6", + "size": 6112 + }, + "ION/02_architecture/ION_CURSOR_CARRIER_CONTINUATION_WORKFLOW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_CARRIER_CONTINUATION_WORKFLOW_PROTOCOL.md", + "sha256": "8edcb37477f60439b5f7f6ab9c2abee8ee4121094d5ab80bb3c3e43c74d5e9ca", + "size": 2263 + }, + "ION/02_architecture/ION_CURSOR_COCKPIT_EXTENSION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_COCKPIT_EXTENSION_PROTOCOL.md", + "sha256": "2feee193de6e076f3ca39e176956aaa176205ccc5fcc33ec5d0ad101219de288", + "size": 2779 + }, + "ION/02_architecture/ION_CURSOR_FULL_WORKFLOW_MOUNT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_FULL_WORKFLOW_MOUNT_PROTOCOL.md", + "sha256": "c2b534e1b811a3074cbc175c3ee5663fa8d569b524f40084bf18a8cb42eb597e", + "size": 2249 + }, + "ION/02_architecture/ION_CURSOR_SDK_HOOK_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_SDK_HOOK_BRIDGE_PROTOCOL.md", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/02_architecture/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_SYSTEM_TELEMETRY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_SYSTEM_TELEMETRY_PROTOCOL.md", + "sha256": "9f43e3cb1f757139e8254469e9aeb45a61cce333f822560a5a4991703362c672", + "size": 2611 + }, + "ION/02_architecture/ION_DEFAULT_CARRIER_ONBOARDING_PROTOCOL.md": { + "path": "ION/02_architecture/ION_DEFAULT_CARRIER_ONBOARDING_PROTOCOL.md", + "sha256": "3295b2d9d8476e5d38948379903a3d08519ef8c1965af020e43c215e82a4e57c", + "size": 1434 + }, + "ION/02_architecture/ION_FILE_RECORD_SCHEMA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FILE_RECORD_SCHEMA_PROTOCOL.md", + "sha256": "a15a66536a81a7b6b15abba4256a7052f6021ea83ee126c828832df73d5f88ab", + "size": 2017 + }, + "ION/02_architecture/ION_FRONT_DOOR_AUTONOMOUS_TEAM_WORKFLOW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FRONT_DOOR_AUTONOMOUS_TEAM_WORKFLOW_PROTOCOL.md", + "sha256": "cd006950cf2e959ec9a7df1a660fe681e3f7eefefe7b068146250019f1f67abc", + "size": 1986 + }, + "ION/02_architecture/ION_FULL_CARRIER_MCP_PARITY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FULL_CARRIER_MCP_PARITY_PROTOCOL.md", + "sha256": "53fdd493c216c3974c826ef80473aa359d7a600791d72c37e2531e20fa7b555e", + "size": 16073 + }, + "ION/02_architecture/ION_FULL_OPERATIONALIZATION_AND_TESTING_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FULL_OPERATIONALIZATION_AND_TESTING_PROTOCOL.md", + "sha256": "ee5ecc85c266fa939ebf7343b6c4d7939ffc676080fde6d0e10e022f7e515765", + "size": 8307 + }, + "ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md", + "sha256": "467f43edbe0804e41e6deb02952d2812dcaadd21d791296838e2ccf11c151de1", + "size": 10909 + }, + "ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md", + "sha256": "c4de11d357b46c6802893e026a760db22bd4e53a9f6e7a6c182da7b00c9afabc", + "size": 7520 + }, + "ION/02_architecture/ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACT_PROTOCOL.md", + "sha256": "f09407343c1c673405f8602af1a2e116ee8e6dc6672d506d3e54859911a61219", + "size": 3040 + }, + "ION/02_architecture/ION_JOC_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_PROTOCOL.md", + "sha256": "3d14d657e5b2f9c9f2b97868c4278dd39f616ee0812a48c034f14e3c41446726", + "size": 1855 + }, + "ION/02_architecture/ION_JOC_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_PROTOCOL.md", + "sha256": "b06ac99801d962dd7610ad268c41d7a178e533548b8d071e708c3a088563140d", + "size": 2473 + }, + "ION/02_architecture/ION_JOC_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_PROTOCOL.md", + "sha256": "c2d4b23c892a2fc560ed038c05fbc51d4229fb3bae6dbfde8999c312f46a6999", + "size": 1512 + }, + "ION/02_architecture/ION_JOC_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_PROTOCOL.md", + "sha256": "dc8bfd3fa64845445da82fe3222140f39d3174aba0e2febd1995f733abb3b08c", + "size": 898 + }, + "ION/02_architecture/ION_JOC_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_PROTOCOL.md", + "sha256": "a571cf33bf08e77c1a32c3bd6aa23f5d02975ee91732b41ec8312787959306fd", + "size": 1773 + }, + "ION/02_architecture/ION_JOC_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_PROTOCOL.md", + "sha256": "41ccb802b481a99171d545e6b7d70b6a0280ef28e6dc81aaee1ae377d72d7295", + "size": 1396 + }, + "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_PROTOCOL.md", + "sha256": "600c28664c1cc971ce164a9b17d8c7ed3250bff9fc46b9c90e69479272e3776b", + "size": 1397 + }, + "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_PROTOCOL.md", + "sha256": "ae58ecd8e5fb41b178ce8151850f93275f21b8588ee9148cc898a893a3056627", + "size": 1525 + }, + "ION/02_architecture/ION_JOC_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_PROTOCOL.md", + "sha256": "5a010447e5c0819f5cb4b5c9ea90546a7136b084ec3c6ed2cfc44af104795969", + "size": 1606 + }, + "ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md", + "sha256": "8b122906213ddd8c4c4ace4affa2b18694fd8f899c14631df020a42cb2ecb9e1", + "size": 2313 + }, + "ION/02_architecture/ION_JOC_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_PROTOCOL.md", + "sha256": "1810abad117781dd41dc26d39d9f222609feb55867d6747ea74a87e559f99bb3", + "size": 1045 + }, + "ION/02_architecture/ION_JOC_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_PROTOCOL.md", + "sha256": "b940e6f8aa44beb6ffdab426c417f12ed213b9199e1e9353b0f0a958a394515f", + "size": 1186 + }, + "ION/02_architecture/ION_JOC_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_PROTOCOL.md", + "sha256": "c631da7964ddaa3e67ddd80b9725894cb7c27327d08c4890e7231ea5f90fa51c", + "size": 1319 + }, + "ION/02_architecture/ION_LEGACY_CLOUDFLARE_TUNNEL_REUSE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LEGACY_CLOUDFLARE_TUNNEL_REUSE_PROTOCOL.md", + "sha256": "88ce1f45aca2ea438632239bdb1e4737159491d00b32466189996b8899982dfc", + "size": 2312 + }, + "ION/02_architecture/ION_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_PROTOCOL.md", + "sha256": "f8bbb2864463f6e0dbe0cebd1ffec61dc42940ddb5ff1bbad90e6781749bf6fd", + "size": 2205 + }, + "ION/02_architecture/ION_LIVING_ENCYCLOPEDIA_MAINTENANCE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LIVING_ENCYCLOPEDIA_MAINTENANCE_PROTOCOL.md", + "sha256": "98b3652c2a24e6ed24c6b12497ad8fdb546ac217e40e190c4af699d96e40e283", + "size": 3503 + }, + "ION/02_architecture/ION_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_PROTOCOL.md", + "sha256": "d9b8ac49506310ccb6f4337503472e4fbb0958026a5e0b36a8c0209cb05afc69", + "size": 1809 + }, + "ION/02_architecture/ION_LOCAL_MCP_BRIDGE_TO_KERNEL_AND_DAEMON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LOCAL_MCP_BRIDGE_TO_KERNEL_AND_DAEMON_PROTOCOL.md", + "sha256": "9e6aebc253052df95ea89d7a32e29a2ab41fb2cac741369d6552899db51e686a", + "size": 3570 + }, + "ION/02_architecture/ION_MCP_CONTROL_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_MCP_CONTROL_BRIDGE_PROTOCOL.md", + "sha256": "1b87d4bff2f824511379afd6a0b552404b97e6285f97d532d646fba5d8ee57c6", + "size": 3056 + }, + "ION/02_architecture/ION_MCP_FRONT_DOOR_AND_MOUNT_SESSION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_MCP_FRONT_DOOR_AND_MOUNT_SESSION_PROTOCOL.md", + "sha256": "1177eed4834caf724ad19f44eceb7695935539309eb29418b1b572bf524bd495", + "size": 6943 + }, + "ION/02_architecture/ION_MOUNT_CONTRACT.md": { + "path": "ION/02_architecture/ION_MOUNT_CONTRACT.md", + "sha256": "468bbf85e8fa0f38e0cf9347fedb615dd68f59b77cfbb8ed94cadae79ee0f891", + "size": 4003 + }, + "ION/02_architecture/ION_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_PROTOCOL.md", + "sha256": "e44ff4dda3bf125639b872b3007a34449bbbe6a3ab707cd40ffb1c4fc412eef3", + "size": 611 + }, + "ION/02_architecture/ION_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_PROTOCOL.md", + "sha256": "8d14603bb2ba5be748b25ee8d7b7297174d9c3d31288e3bf60e4b29f5d860ea6", + "size": 2938 + }, + "ION/02_architecture/ION_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_PROTOCOL.md", + "sha256": "f732e4665b8d162bc42c14391f38090cfd4534c1583405ab3ae2664c87039530", + "size": 2988 + }, + "ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md": { + "path": "ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md", + "sha256": "99495e9b32832a651a9691a8070136f920877df245dbc1f53af4cc4454241ec6", + "size": 12952 + }, + "ION/02_architecture/ION_PRODUCTIZED_RUNTIME_BOUNDARY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_PRODUCTIZED_RUNTIME_BOUNDARY_PROTOCOL.md", + "sha256": "80f49c45b62edc3a9c86355d956b1a8d8e13ffd46c9973a8a37cb9d9b5cd163d", + "size": 1914 + }, + "ION/02_architecture/ION_SELF_MOUNT_COMPLETION_ROADMAP.md": { + "path": "ION/02_architecture/ION_SELF_MOUNT_COMPLETION_ROADMAP.md", + "sha256": "a4208577559cd539b618882dc8e6ca2602d6efd1ff18a250cc44435281cf0f7b", + "size": 2181 + }, + "ION/02_architecture/ION_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_PROTOCOL.md", + "sha256": "70dd2fd1205db71955267e5100d278df0e6b3ccff5cbdd037173ecda9d5fe6ba", + "size": 4603 + }, + "ION/02_architecture/ION_V64_LOCAL_MCP_BRIDGE_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V64_LOCAL_MCP_BRIDGE_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "285f270e9d5634dce266a63182b3fe9c8adcc86f0eaeb0b99f3b516ee90a3aa1", + "size": 936 + }, + "ION/02_architecture/ION_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_PROTOCOL.md", + "sha256": "02433c1e110582ea427d47a5f87a9f638c5f8e639d2b016b762f84d862f9e7e7", + "size": 3404 + }, + "ION/02_architecture/ION_V66_LOCAL_MCP_CLIENT_CERTIFICATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V66_LOCAL_MCP_CLIENT_CERTIFICATION_PROTOCOL.md", + "sha256": "834e1d72371429a5810f4b4bf381590e27749c30011da1d2825b8a5768888ffc", + "size": 3326 + }, + "ION/02_architecture/ION_V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_PROTOCOL.md", + "sha256": "3da8861b6bf3ed146774c72d61b2f672959ba2254d821799eab5658f7a936edd", + "size": 2010 + }, + "ION/02_architecture/ION_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_PROTOCOL.md", + "sha256": "3512ba4b7f17248304bdc6b75a295ad43e0ee8b549b4732653b53bca3588b5f9", + "size": 2325 + }, + "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "236cb13c7993e60ffb06b42569abf9d69604c05b21dd9ed948e6de5d4e7da8a7", + "size": 1042 + }, + "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_PROTOCOL.md", + "sha256": "8af5c57c6dc393be4aa35ca43e923fdacc46eafe3c1bae468fc5d16611ac3985", + "size": 2450 + }, + "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "f42ff4aa6aa7707931f88e6215bd0cd2d047cc6ad46e23bc5a0430a675a659a5", + "size": 668 + }, + "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_PROTOCOL.md", + "sha256": "16556b5cd851e620ccf955ad2c4d134704cbd66227ededbee93d5262ee56e2f9", + "size": 1851 + }, + "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "500b27dfc49e709d2225a615b194095bc2d4cea838307c21252b73334a766674", + "size": 1227 + }, + "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_PROTOCOL.md", + "sha256": "113a328771fa0e97c05fc49719ca675964a4f50b0c1f51838047fbb747f4acc0", + "size": 2953 + }, + "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "607a7028ef08ca47aab90f2c3a9f09af164f6472b9954d0602f7f6fdd7dfded7", + "size": 499 + }, + "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_PROTOCOL.md", + "sha256": "6ace23f2cacd6c7f72bfbcb11cf61d165c7445e01236747716a63d62ec054a3e", + "size": 1793 + }, + "ION/02_architecture/ION_V72_MCP_DONOR_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V72_MCP_DONOR_RECONCILIATION_PROTOCOL.md", + "sha256": "b592ba31d15bee63ad4c2473a887ec3c690a74a5f21e5490ae14625b62596e91", + "size": 2067 + }, + "ION/02_architecture/LAWFUL_ORCHESTRATION_SCHEDULER_PROTOCOL.md": { + "path": "ION/02_architecture/LAWFUL_ORCHESTRATION_SCHEDULER_PROTOCOL.md", + "sha256": "a928ddba66282d881c34b9af63619ce8462ca09229223be6291f061e88fedebb", + "size": 8512 + }, + "ION/02_architecture/LIVE_PERSONA_LATENCY_AND_PROVISIONAL_UTTERANCE_PROTOCOL.md": { + "path": "ION/02_architecture/LIVE_PERSONA_LATENCY_AND_PROVISIONAL_UTTERANCE_PROTOCOL.md", + "sha256": "23dcbcd2967fab3baeb0f2f68aa8fe8e923911224eb45cf6096719237fcbb810", + "size": 1622 + }, + "ION/02_architecture/LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_PROTOCOL.md", + "sha256": "0185fdb06045420f4c5af68c1785e486c2487a9670b56046ce555885300debc0", + "size": 527 + }, + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_PROTOCOL.md", + "sha256": "a35b4ac547039e3742bc373314411178a5e42e8ef3716379130199d0149cdbc8", + "size": 435 + }, + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_PROTOCOL.md", + "sha256": "7491cc564b4aea9eb71c736d94da0583241e94dea526d3e27e41610c543a4710", + "size": 650 + }, + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_PROTOCOL.md", + "sha256": "f8da90c6298e53aace6dbe0b46f1bc44c81e9cbe685c119cc66d3d113817b8e1", + "size": 2908 + }, + "ION/02_architecture/LOCAL_MODEL_AND_PRIVATE_EXECUTION_LANE_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_MODEL_AND_PRIVATE_EXECUTION_LANE_PROTOCOL.md", + "sha256": "333880065baa8882136fc85ad5319262924ae61533714ec8c2da014532453574", + "size": 1457 + }, + "ION/02_architecture/LOCAL_VISUAL_HARNESS_PROTOTYPE_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_VISUAL_HARNESS_PROTOTYPE_PROTOCOL.md", + "sha256": "40d93f7f7e826927499ed96f2980cc36c8c5738cfc627c7c1e37feefc9b34717", + "size": 2092 + }, + "ION/02_architecture/MANIFEST_AND_ROUTE_STATE_PROTOCOL.md": { + "path": "ION/02_architecture/MANIFEST_AND_ROUTE_STATE_PROTOCOL.md", + "sha256": "3adc3a3c8ccfc44b7a2a51e89ab2fe0c830655747fd874177cfffbea2042aa46", + "size": 5613 + }, + "ION/02_architecture/MANUAL_AUTOMATION_EQUIVALENCE_PROTOCOL.md": { + "path": "ION/02_architecture/MANUAL_AUTOMATION_EQUIVALENCE_PROTOCOL.md", + "sha256": "7d3ec5d153dc281618fe446cd42af63817ed70d376c161d6d7b82df61b3ef28a", + "size": 3296 + }, + "ION/02_architecture/MANUAL_AUTOMATION_FALLBACK_PROTOCOL.md": { + "path": "ION/02_architecture/MANUAL_AUTOMATION_FALLBACK_PROTOCOL.md", + "sha256": "117eff9db7f7afa1cb4883dd10bb2c519732ff6bb1fe4183e50cef42c72b024c", + "size": 2137 + }, + "ION/02_architecture/META_TEMPLATE_CONSTITUTION_PROTOCOL.md": { + "path": "ION/02_architecture/META_TEMPLATE_CONSTITUTION_PROTOCOL.md", + "sha256": "0ebeb00380598fd1c8fb8965be08b7b0fa188dc645bb63d6229c61b5dc28dade", + "size": 5541 + }, + "ION/02_architecture/MODEL_CALL_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/MODEL_CALL_RECEIPT_PROTOCOL.md", + "sha256": "d9c976aeb965caf79a4c9303763a665c38ebbd1e921866758a930cec2fa52f65", + "size": 1501 + }, + "ION/02_architecture/MODEL_ROUTER_AND_COST_QUALITY_ROUTING_PROTOCOL.md": { + "path": "ION/02_architecture/MODEL_ROUTER_AND_COST_QUALITY_ROUTING_PROTOCOL.md", + "sha256": "9a4a8d3faac9d3ac54ba8c15ff3f67c13dff7a93d4e57b4c2b8a10295e757b77", + "size": 2646 + }, + "ION/02_architecture/MODEL_ROUTING_AND_PROVIDER_ECONOMICS_PROTOCOL.md": { + "path": "ION/02_architecture/MODEL_ROUTING_AND_PROVIDER_ECONOMICS_PROTOCOL.md", + "sha256": "a9a8d21274f58405138acd0e6cb6f863a0d8dd05bbc09d5a170b6642ef3497f6", + "size": 1557 + }, + "ION/02_architecture/MOUNTED_AGENT_IDENTITY_SCHEMA_PROTOCOL.md": { + "path": "ION/02_architecture/MOUNTED_AGENT_IDENTITY_SCHEMA_PROTOCOL.md", + "sha256": "215c46c96cdf01397d843051874ea21d7e0eeb251844b6305890cc7525bfb3f1", + "size": 1831 + }, + "ION/02_architecture/MULTI_CHAT_COORDINATION.md": { + "path": "ION/02_architecture/MULTI_CHAT_COORDINATION.md", + "sha256": "3257ceccd43e03d9d831d87653baefdb452384db76e0ebba7837e62bb2d77f94", + "size": 19028 + }, + "ION/02_architecture/NAME_LINEAGE_REGISTRY_PROTOCOL.md": { + "path": "ION/02_architecture/NAME_LINEAGE_REGISTRY_PROTOCOL.md", + "sha256": "d21d9f5fb2efd140a50aaa10513ef72fcff98bdae6a1fd60ab2566859775594a", + "size": 2195 + }, + "ION/02_architecture/OPERATIONAL_HARDENING_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATIONAL_HARDENING_PROTOCOL.md", + "sha256": "15a11f00f17f3544210cd4935953b26410c19c9a9bc272faca50b55cf15936f5", + "size": 2472 + }, + "ION/02_architecture/OPERATOR_CONTROL_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATOR_CONTROL_PROTOCOL.md", + "sha256": "512165c295843bd55ab069a2271f64af60b86f3ed962991e44390d9dbf65eafb", + "size": 921 + }, + "ION/02_architecture/OPERATOR_DELEGATION_AND_NON_MEDDLING_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATOR_DELEGATION_AND_NON_MEDDLING_PROTOCOL.md", + "sha256": "6cd157a98ed076df5e505085446934b195c8e20264a186991305dbf6ce9b956f", + "size": 1660 + }, + "ION/02_architecture/OPERATOR_ENTRY_SURFACE_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATOR_ENTRY_SURFACE_PROTOCOL.md", + "sha256": "dc68bb2f3d58d664a6a585f2e3e6ae8986775adf14f6a1f917ddc94b788537ec", + "size": 2683 + }, + "ION/02_architecture/ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md": { + "path": "ION/02_architecture/ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md", + "sha256": "824f5bbe72e9f3040d30d41b7d14918aaffab86f45731bbb28c0f5f7dd4e5307", + "size": 15118 + }, + "ION/02_architecture/PACKET_AND_HANDOFF_STANDARDIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/PACKET_AND_HANDOFF_STANDARDIZATION_PROTOCOL.md", + "sha256": "8da9621d884e3db6a9842401b7ab43fac4009298cce0912d7fc76078ee6dedd1", + "size": 7894 + }, + "ION/02_architecture/PERSONA_CONTEXT_BUDGET_AND_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/PERSONA_CONTEXT_BUDGET_AND_HORIZON_PROTOCOL.md", + "sha256": "84453a4c81e738eba2489f32633a750d34003259665f6be807d16af44c4bbcde", + "size": 1132 + }, + "ION/02_architecture/PRODUCTION_RATIFICATION_MATRIX_PROTOCOL.md": { + "path": "ION/02_architecture/PRODUCTION_RATIFICATION_MATRIX_PROTOCOL.md", + "sha256": "249159e38a06f2a26147726b1e3c095088b0539ecc967f0cae327275d5201b41", + "size": 1028 + }, + "ION/02_architecture/PRODUCTION_READINESS_GAP_REGISTER.md": { + "path": "ION/02_architecture/PRODUCTION_READINESS_GAP_REGISTER.md", + "sha256": "9a586fedb776ee35ece1ade3ba1e7d590b5f88fdc96b23616eedb91412b2f1c6", + "size": 1095 + }, + "ION/02_architecture/PRODUCT_READINESS_CHARTER.md": { + "path": "ION/02_architecture/PRODUCT_READINESS_CHARTER.md", + "sha256": "43bfeec0ef5a1c487179823494eda23ad4f07e1d10d6bfbad31a6471ba2fbda9", + "size": 1528 + }, + "ION/02_architecture/RANK_AND_PRECEDENCE_PROTOCOL.md": { + "path": "ION/02_architecture/RANK_AND_PRECEDENCE_PROTOCOL.md", + "sha256": "0f3c363a43326f9fc05cc8fd1bdbb7a2f316d206910d27f0152301475bd8be8c", + "size": 4659 + }, + "ION/02_architecture/README.md": { + "path": "ION/02_architecture/README.md", + "sha256": "d44da8ce1c88e7ace82ed741ac3d8abbde5390a6b835735bbc660efae31e671d", + "size": 1000 + }, + "ION/02_architecture/RECOVERY_AND_REPLAY_PROTOCOL.md": { + "path": "ION/02_architecture/RECOVERY_AND_REPLAY_PROTOCOL.md", + "sha256": "a43629767eed6d8a34ad20b911e2284d4e4093400ca824c52bdd9790ff3037a9", + "size": 1761 + }, + "ION/02_architecture/RELEASE_READINESS_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/RELEASE_READINESS_GATE_PROTOCOL.md", + "sha256": "ee6298e6905b13d6c27862213f52f83ef9ce3f141b5fbec5e527a54ff0fb6ea3", + "size": 2690 + }, + "ION/02_architecture/REPRESENTATIONAL_INTEGRITY_PROTOCOL.md": { + "path": "ION/02_architecture/REPRESENTATIONAL_INTEGRITY_PROTOCOL.md", + "sha256": "70b5e0ebbdc786ece52066db78ef8fcdef6a62aabdb4f12248afac0a755e8f93", + "size": 1612 + }, + "ION/02_architecture/ROLE_CHASSIS_MOUNT_PROTOCOL.md": { + "path": "ION/02_architecture/ROLE_CHASSIS_MOUNT_PROTOCOL.md", + "sha256": "ffab16a0c2b6c10d32cdcbdd648e6b679af8f07d4a2ac0347b976200b8aad53a", + "size": 4939 + }, + "ION/02_architecture/ROLE_MIXING_AND_ROLE_SPLIT_GUARD_PROTOCOL.md": { + "path": "ION/02_architecture/ROLE_MIXING_AND_ROLE_SPLIT_GUARD_PROTOCOL.md", + "sha256": "6023f19c34521d6f86f8a146a3d5786a99ed2f7c255d4fb65193b711e8f77fe9", + "size": 3171 + }, + "ION/02_architecture/ROOT_INVARIANT_RESTORATION_PROTOCOL.md": { + "path": "ION/02_architecture/ROOT_INVARIANT_RESTORATION_PROTOCOL.md", + "sha256": "d57f1bbf1f8aae5761eaa3679cd8ab0c15b8a52a15d06e777ecb8867f9ec6422", + "size": 2949 + }, + "ION/02_architecture/RUNTIME_IDENTITY_ENVELOPE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_IDENTITY_ENVELOPE_PROTOCOL.md", + "sha256": "cd09a7e740515ca25f05687015c2cc9cc2b01b6b9a860c316e70f9e50cc1d1fe", + "size": 3255 + }, + "ION/02_architecture/RUNTIME_REPORT_ANCHOR_NORMALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_ANCHOR_NORMALIZATION_PROTOCOL.md", + "sha256": "7322d23746e6c9b6586e71a6e5004254814ec59015ba581716af3671c432e9b6", + "size": 2665 + }, + "ION/02_architecture/RUNTIME_REPORT_ARTIFACT_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_ARTIFACT_PROTOCOL.md", + "sha256": "1158a9d032bda2d02383772a7c0c011f40d1fbae834ce3a14aaaec30269e6d7b", + "size": 1303 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_FAMILY_SUMMARY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_FAMILY_SUMMARY_PROTOCOL.md", + "sha256": "b7c0b74c820d77f7cd25209094f7fa9aa7922b9ac08aee97c0cce6e64068c310", + "size": 2136 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TEMPORAL_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TEMPORAL_PROTOCOL.md", + "sha256": "bae00e03020fa32029f43603e0c787b7dc5bb950f17f305a22594251a2a1c638", + "size": 1372 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_COMPARISON_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_COMPARISON_PROTOCOL.md", + "sha256": "2f3d46274211156d252406349155414a2880a3e58e12a1ed788e20d6edbf5db7", + "size": 1381 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_PROTOCOL.md", + "sha256": "18b237c76ba6a79cecf69a5b7665358e426e9a7531d017ed597a651b2db7bb58", + "size": 1241 + }, + "ION/02_architecture/RUNTIME_REPORT_BROWSER_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BROWSER_PROTOCOL.md", + "sha256": "d0b868f28f81cdc1d662284e6d6006fbbdf90c477cbdf480f1aaca693d77b96b", + "size": 1963 + }, + "ION/02_architecture/RUNTIME_REPORT_COMPARATIVE_PROVENANCE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_COMPARATIVE_PROVENANCE_PROTOCOL.md", + "sha256": "82215c70ce6d5c8f69e9a39b297d6b477212dc448730f92dab4a3beefafd9f11", + "size": 2122 + }, + "ION/02_architecture/RUNTIME_REPORT_CROSSLINK_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_CROSSLINK_PROTOCOL.md", + "sha256": "cbdce9d184a217751df487139cc693597cb716fa968458362511a5c2fac6307f", + "size": 1824 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_BROWSER_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_BROWSER_PROTOCOL.md", + "sha256": "e5a1551cb7230d37bad223607fb8dd385b2b7da233376ae8856e7ebd04f84950", + "size": 693 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_CATALOG_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_CATALOG_PROTOCOL.md", + "sha256": "4ff39e0f298cff13e654944b46156aa31c2b56ef686d78f0215c294aa7dad8b3", + "size": 1154 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_PROTOCOL.md", + "sha256": "5881a1843ac7706e2f9be32e10efb2e3b2d35e15513c95a7e1a1550e4c351cb5", + "size": 1680 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_REVERSE_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_REVERSE_TRACE_PROTOCOL.md", + "sha256": "9cbdad12e4049b8ceb9abcf133ac79f627624a9551facfc04ad2dd1adbdb0fb5", + "size": 2269 + }, + "ION/02_architecture/RUNTIME_REPORT_FAMILY_SUMMARY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_FAMILY_SUMMARY_PROTOCOL.md", + "sha256": "f156652864557bdabf278b5247edd35dbf7255d0ad263ce99a7f54bee15e6c06", + "size": 2646 + }, + "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_AGGREGATION_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_AGGREGATION_PROTOCOL.md", + "sha256": "27792e4bee243ced0e6fcc8cb031a142987709cdbb68d5d6d25c660ebcc1ba73", + "size": 952 + }, + "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_PROTOCOL.md", + "sha256": "450fda94ff7a2536401cffa68d4b410a546defad30d1341ee7a9e42c2ab93cd8", + "size": 2273 + }, + "ION/02_architecture/RUNTIME_REPORT_NAVIGATION_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_NAVIGATION_PROTOCOL.md", + "sha256": "689e9038704294253139ba6e8a54324d2d59be06f636ff33fcc3784148ff76df", + "size": 1749 + }, + "ION/02_architecture/RUNTIME_REPORT_OPERATOR_DIGEST_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_OPERATOR_DIGEST_PROTOCOL.md", + "sha256": "f1c22a7a745ebc13b0327df07e099ed96d9f92d256c38952e60d966d0eb47a3c", + "size": 2654 + }, + "ION/02_architecture/RUNTIME_REPORT_PROFILE_DIGEST_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_PROFILE_DIGEST_TRACE_PROTOCOL.md", + "sha256": "a8f199256f1d7d16f00acbe64530992f00fca5752e107e5909dd96abe695b768", + "size": 1681 + }, + "ION/02_architecture/RUNTIME_REPORT_PROVENANCE_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_PROVENANCE_TRACE_PROTOCOL.md", + "sha256": "45d2922c86160725b540e7776f0151113214ff8b1ecfb366929fcd535c1dd59d", + "size": 2157 + }, + "ION/02_architecture/RUNTIME_REPORT_TEMPORAL_PROVENANCE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_TEMPORAL_PROVENANCE_PROTOCOL.md", + "sha256": "f15f3fa533cda0b55e05f36f295c9a919a7fe4022c3bc8ae4cbce49b93c4fd12", + "size": 2455 + }, + "ION/02_architecture/RUNTIME_REPORT_TRIGGER_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_TRIGGER_PROTOCOL.md", + "sha256": "1ab9f79e2fab0154a632dbec4e1d1f8bc32594efc660feb08ab139a9c24d2c03", + "size": 1388 + }, + "ION/02_architecture/RUNTIME_REPORT_VISIBILITY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_VISIBILITY_PROTOCOL.md", + "sha256": "7ea28584b259fb3e9ce7e85905bc7aa74d955ecf952fb0f64f7190fe2dd9808b", + "size": 1547 + }, + "ION/02_architecture/RUNTIME_SESSION_AUTHORITY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_SESSION_AUTHORITY_PROTOCOL.md", + "sha256": "2ec057976f23b538c1a94a2bfc50e177c15f3a37aa4d95ebaf9f5cce63fc443c", + "size": 4000 + }, + "ION/02_architecture/RUNTIME_STATE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_STATE_BINDING_PROTOCOL.md", + "sha256": "d25a280e8617d14c85d8bd07b338058f5d9b70a3f18975a2d3fd667d4e5c882b", + "size": 2942 + }, + "ION/02_architecture/RUNTIME_STATE_QUERY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_STATE_QUERY_PROTOCOL.md", + "sha256": "eef5ee9aee11c279f158e0616929c7cc345727853d1e0140d90d0bf69c352be8", + "size": 1786 + }, + "ION/02_architecture/RUNTIME_STATE_REPORTING_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_STATE_REPORTING_PROTOCOL.md", + "sha256": "b257c530d5ba379667464111479d2d1cec523d54d2135aec14870a43725c561c", + "size": 2087 + }, + "ION/02_architecture/SCHEDULE_COMPLETION_AND_ASSIGNMENT_RELEASE_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_COMPLETION_AND_ASSIGNMENT_RELEASE_PROTOCOL.md", + "sha256": "4d616ffae80e8d7ddbc0a594c3734fe5b23991d4817c1fa16d80970b531efd87", + "size": 1712 + }, + "ION/02_architecture/SCHEDULE_DISPATCH_AND_ASSIGNMENT_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_DISPATCH_AND_ASSIGNMENT_RECONCILIATION_PROTOCOL.md", + "sha256": "7f1aaf40fd63696b4451460275011bdf29e2e80b786dc360559e022e67118739", + "size": 3212 + }, + "ION/02_architecture/SCHEDULE_LINEAGE_AND_SUPERSESSION_ARCHIVAL_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_LINEAGE_AND_SUPERSESSION_ARCHIVAL_PROTOCOL.md", + "sha256": "016de5382f8068ca7419ec2a04547dcd50b3af9d24fc75f78a3f7e7c7fa7db80", + "size": 1650 + }, + "ION/02_architecture/SCHEDULE_LINEAGE_REPLAY_AND_ACTIVE_CYCLE_RECONSTRUCTION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_LINEAGE_REPLAY_AND_ACTIVE_CYCLE_RECONSTRUCTION_PROTOCOL.md", + "sha256": "5d3cd23200882301d269318e0eedf213b489da766e84633a191bd9b2e0cdb6c6", + "size": 1623 + }, + "ION/02_architecture/SCHEDULE_RESUME_BUNDLE_MATERIALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_RESUME_BUNDLE_MATERIALIZATION_PROTOCOL.md", + "sha256": "7cb94715d19e4c4f3dbfe03e35d5e603b40a00d2d6edb18fe6e2bf2f1cea0d61", + "size": 1823 + }, + "ION/02_architecture/SCHEDULE_RESUME_PROJECTION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_RESUME_PROJECTION_PROTOCOL.md", + "sha256": "a6ad2562185ee8624940a72501973f1f1ecd1af9b998fa1efa1f48c63cb82bc1", + "size": 1849 + }, + "ION/02_architecture/SCHEDULE_SETTLEMENT_AND_FUTURE_REENTRY_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_SETTLEMENT_AND_FUTURE_REENTRY_PROTOCOL.md", + "sha256": "fa0e7ed910a155d1e0996b2175921d0689e7d3c5ea8389249aac94e86ece8606", + "size": 2413 + }, + "ION/02_architecture/SCHEDULE_STALE_RETRY_AND_REASSIGNMENT_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_STALE_RETRY_AND_REASSIGNMENT_PROTOCOL.md", + "sha256": "01987da92531534d82b82f983f64f7f0729ead98ee2af68acf98c6917b112ace", + "size": 1797 + }, + "ION/02_architecture/SCHEDULE_TAKEOVER_ENTRY_ACTIVATION_VALIDATION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_TAKEOVER_ENTRY_ACTIVATION_VALIDATION_PROTOCOL.md", + "sha256": "3dc42c86d51817594c00718608731fd44435415d043a30a82ac00cd7e443d15f", + "size": 780 + }, + "ION/02_architecture/SELF_DOCUMENTATION_EVENT_PIPELINE_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_DOCUMENTATION_EVENT_PIPELINE_PROTOCOL.md", + "sha256": "51191bb8470caf8fdf0a64abbec300920cc86f84dfa9cdf0c68164c848bb077f", + "size": 1110 + }, + "ION/02_architecture/SELF_DOCUMENTING_CONTEXT_GRAPH_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_DOCUMENTING_CONTEXT_GRAPH_PROTOCOL.md", + "sha256": "1d7424d12360c1a1f38a55a319f47f60839aa48455c70942aadba47f5b6ea76c", + "size": 5780 + }, + "ION/02_architecture/SELF_MODIFICATION_REVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_MODIFICATION_REVIEW_PROTOCOL.md", + "sha256": "9a1f3e59d10e0f2bd37258f4fec467bef7caaee4a194ed26dec1d364589b5654", + "size": 1657 + }, + "ION/02_architecture/SELF_MOUNT_FRONT_DOOR_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_MOUNT_FRONT_DOOR_BINDING_PROTOCOL.md", + "sha256": "e0248c1d9f66f021ca994f112d0db91e82a422d444eb0027f175af16ac6c0570", + "size": 1696 + }, + "ION/02_architecture/SELF_MOUNT_GRAPH_INTEGRATION_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_MOUNT_GRAPH_INTEGRATION_PROTOCOL.md", + "sha256": "f3aa6d80fbae51939cd91a36d3c27a58c9a36b9e23d5674921d04293977b8919", + "size": 1229 + }, + "ION/02_architecture/SELF_SURFACE_DRIFT_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_SURFACE_DRIFT_GATE_PROTOCOL.md", + "sha256": "e3e1498f8c706a5906bdfa410e4d44706232d4cb5e952bbb56b4b42cdf501bb4", + "size": 1231 + }, + "ION/02_architecture/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.md": { + "path": "ION/02_architecture/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.md", + "sha256": "332f2b7e31980019bb9b4e6174abbd933e5c15b65261368e486c1e9665c76388", + "size": 4156 + }, + "ION/02_architecture/SINGLE_CARRIER_FULL_SPECTRUM_CHAT_PROTOCOL.md": { + "path": "ION/02_architecture/SINGLE_CARRIER_FULL_SPECTRUM_CHAT_PROTOCOL.md", + "sha256": "45b395a32d17e474b7e7f86ab16ae85ab365f26669ac75a09660db7c66ad149d", + "size": 13210 + }, + "ION/02_architecture/SOVEREIGN_RELAY_PROTOCOL.md": { + "path": "ION/02_architecture/SOVEREIGN_RELAY_PROTOCOL.md", + "sha256": "38d20d9b26967f32c3ea160196683ecb8d7f0d6ceb246076288a440cf9cf21a9", + "size": 6414 + }, + "ION/02_architecture/STALE_NAME_DETECTION_PROTOCOL.md": { + "path": "ION/02_architecture/STALE_NAME_DETECTION_PROTOCOL.md", + "sha256": "acd0a8610b4e55a9d4c5d14e0035c7956b48308aa68b84584a13c02e7c87d4f1", + "size": 1234 + }, + "ION/02_architecture/STEWARD_CURRENT_PHASE_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/STEWARD_CURRENT_PHASE_ORCHESTRATION_PROTOCOL.md", + "sha256": "8e292bff6a59e3b4ee551c8acc137b4c53cf3549ebb34e1e8caa4d5cf1a50b9e", + "size": 2559 + }, + "ION/02_architecture/SUMMARY_REFRESH_BOUNDED_COMMIT_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_BOUNDED_COMMIT_DEMO_PROTOCOL.md", + "sha256": "dd551fba9ae3e21da034404c6763e28c7aba977769a13ffc87eed4f3fa7092fc", + "size": 1992 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_CERTIFICATION_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_CERTIFICATION_GATE_PROTOCOL.md", + "sha256": "51a99188b7132db9e7694d6600d416a32db7b29cba81151e80fc6f414d8bd87d", + "size": 1804 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_EVIDENCE_BUNDLE_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_EVIDENCE_BUNDLE_PROTOCOL.md", + "sha256": "ada2b14f7a0eb7577768c9e0f5b764465d5992d42ce77839b2cf3ff3f54f02fc", + "size": 759 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_CAPSULE_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_CAPSULE_PROTOCOL.md", + "sha256": "a4662751ae20a91c1e0c03f2c95af0f8a47e56ffe9107b1d1ee0e9da1f325983", + "size": 1757 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_VERIFIER_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_VERIFIER_PROTOCOL.md", + "sha256": "37a1f96a1f6628c8cc26533677050f08ee1a7311171a5d2dd28dcf4a78509c0f", + "size": 2263 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_CLI_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_CLI_PROTOCOL.md", + "sha256": "df5597eb28f9bf855dcf7b30fba689fca348fd4f7b7b32da160de50b477326c8", + "size": 2361 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_DOCTOR_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_DOCTOR_PROTOCOL.md", + "sha256": "1fb41f9f9ad2d5b379bb7f368631a302db638247f002f5354d6ffb3ccfc34512", + "size": 2181 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RUNTIME_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_RUNTIME_PROTOCOL.md", + "sha256": "5160904702fa4ac4f7bdced3e14bc5be1bc30017053895e4d87e1a92e5dfba1a", + "size": 1843 + }, + "ION/02_architecture/SUMMARY_REFRESH_GRAPH_PROPOSAL_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_GRAPH_PROPOSAL_DEMO_PROTOCOL.md", + "sha256": "a792bb338b38cace9a7ea3968f605198e8e6b94acc6885b2d1f3c16eba2d6d60", + "size": 1656 + }, + "ION/02_architecture/SUMMARY_REFRESH_PROJECTION_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_PROJECTION_DEMO_PROTOCOL.md", + "sha256": "c40f96c7c1d2d2b04660aaebef16127ed7b53176bb961595fa54c5cd91cd1569", + "size": 1563 + }, + "ION/02_architecture/SUMMARY_REFRESH_REVIEW_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_REVIEW_DEMO_PROTOCOL.md", + "sha256": "31e9bd7b688be4a9c0cbc78fa530283f9831a0a88cf567b2ae8d1a75aa0db2fe", + "size": 1992 + }, + "ION/02_architecture/SUPERVISED_AUTOMATION_POLICY_PROTOCOL.md": { + "path": "ION/02_architecture/SUPERVISED_AUTOMATION_POLICY_PROTOCOL.md", + "sha256": "b16ec2bebe523ce8f3126262b1905c1e936ae0d96ebb1785e2da9fb27c95dbe5", + "size": 1804 + }, + "ION/02_architecture/SUPERVISED_DAEMON_SERVICE_PROTOCOL.md": { + "path": "ION/02_architecture/SUPERVISED_DAEMON_SERVICE_PROTOCOL.md", + "sha256": "526344f301d26fd6818a9dda91ec5c61a0a4b6ff8ec956a6d5d0c67f2daf58a9", + "size": 1524 + }, + "ION/02_architecture/SYSTEM_CARD_AND_DOMAIN_MAP_PROTOCOL.md": { + "path": "ION/02_architecture/SYSTEM_CARD_AND_DOMAIN_MAP_PROTOCOL.md", + "sha256": "08d3936bcec809996b6c848945b20e93db1f02182ac19cfd1910ea4769d48eec", + "size": 1408 + }, + "ION/02_architecture/TEMPLATE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_BINDING_PROTOCOL.md", + "sha256": "e15ed24c66358bb894d69405ebed14017e4e2298837ba1ef6f7a8c457c68330b", + "size": 4291 + }, + "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_PROTOCOL.md", + "sha256": "ce95a222c1ca5b67da827e73a3221ca3d89282bad9e976786ee4ac81564792bc", + "size": 3234 + }, + "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_WITNESS_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_WITNESS_PHASE_PROTOCOL.md", + "sha256": "2f5393adccfc64e610029f6a2e99acb7b85f7d2808229fa71c29123f74c0960d", + "size": 3510 + }, + "ION/02_architecture/TEMPLATE_COMPLETION_WATCHER_AND_INDEXER_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_COMPLETION_WATCHER_AND_INDEXER_PROTOCOL.md", + "sha256": "fe77231aa8f6b1e1709e2cc994fb9b59313e24c22e19f7d6c48868dbb6ee2e89", + "size": 2156 + }, + "ION/02_architecture/TEMPLATE_CONTRACT_PROJECTION_ALIGNMENT_AUDIT_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_CONTRACT_PROJECTION_ALIGNMENT_AUDIT_PROTOCOL.md", + "sha256": "7621c52603746663ae8686c061d819dda20e7bceb1c1e0f701d8a47b2674f77f", + "size": 2668 + }, + "ION/02_architecture/TEMPLATE_CONTRACT_REGISTRY_PROJECTION_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_CONTRACT_REGISTRY_PROJECTION_PROTOCOL.md", + "sha256": "16e1584fd47e9b2087c35e37e6f03f3e6693665380d36a0974e9dd3f7fe41157", + "size": 2879 + }, + "ION/02_architecture/TEMPLATE_CONTRACT_RELEASE_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_CONTRACT_RELEASE_GATE_PROTOCOL.md", + "sha256": "52b008cc39ffdb3d4c17e878670aec0d2176ee31a61f887be8698cdcf3cdcc17", + "size": 2422 + }, + "ION/02_architecture/TEMPLATE_EVENT_REACTION_PIPELINE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_EVENT_REACTION_PIPELINE_PROTOCOL.md", + "sha256": "eac05087a489b4e832c0fba0b0bc49dfcccff9e17c65f76d0f24227c22de10bf", + "size": 4000 + }, + "ION/02_architecture/TEMPLATE_GRAPH_COMMIT_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_GRAPH_COMMIT_PHASE_PROTOCOL.md", + "sha256": "a49466edc259d007ea254336a222d86248d48d79701ea5c145cbcdebd4c235e0", + "size": 1647 + }, + "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_PROPOSAL_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_PROPOSAL_PHASE_PROTOCOL.md", + "sha256": "47f5073dd115e4f490122b1de1e0a06325e822387b30255aff0b93b0902f9f62", + "size": 1167 + }, + "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_REVIEW_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_REVIEW_PHASE_PROTOCOL.md", + "sha256": "eafe8b2ed1effa9e5c2056bafe37ba9c3eaf52025415308d777b36fcd49701f3", + "size": 2917 + }, + "ION/02_architecture/TEMPLATE_INDEX_PROJECTION_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_INDEX_PROJECTION_PHASE_PROTOCOL.md", + "sha256": "f764fad2ad80aa5f643bdb756cb390cee3c506930aae6782cff70bf59b00d063", + "size": 1480 + }, + "ION/02_architecture/TEMPLATE_METADATA_CONTRACT_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_METADATA_CONTRACT_PROTOCOL.md", + "sha256": "8faa14bef41964e052fc7798598ecef8fe18a559ab919ca06ef3e8d99b6964d0", + "size": 4408 + }, + "ION/02_architecture/TEMPLATE_REACTION_SELECTION_WITNESS_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_REACTION_SELECTION_WITNESS_PHASE_PROTOCOL.md", + "sha256": "a101c9e78adec5186aa7cf31c17c44e0e16a2de7b1da7a777b588b63311a59fd", + "size": 1770 + }, + "ION/02_architecture/TEMPLATE_SURFACE_EVOLUTION_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_SURFACE_EVOLUTION_PROTOCOL.md", + "sha256": "1bff441a28aceba989b6017d36ea25bf04a39d305eb9c847c0315e2b89eb5163", + "size": 1414 + }, + "ION/02_architecture/TEMPORAL_CONTEXT_LEASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPORAL_CONTEXT_LEASE_PROTOCOL.md", + "sha256": "f6aac09f1302ea16a4bcae3e03c70c22033c8f12b59ac205f77e73e43590afb0", + "size": 14812 + }, + "ION/02_architecture/TEMPORAL_OBJECT_SCHEMA.md": { + "path": "ION/02_architecture/TEMPORAL_OBJECT_SCHEMA.md", + "sha256": "5419feea53bdf9912a42802b4043c02a9e87d16014afa16dd2993feb483fdfba", + "size": 13210 + }, + "ION/02_architecture/TRIPLE_TIME_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/TRIPLE_TIME_RECONCILIATION_PROTOCOL.md", + "sha256": "2a09d234f42043c90b71b4943ef17610e821509c2151d338e6da24067c0994b4", + "size": 15147 + }, + "ION/02_architecture/TRUE_NAME_AND_SEMANTIC_LAYER_PROTOCOL.md": { + "path": "ION/02_architecture/TRUE_NAME_AND_SEMANTIC_LAYER_PROTOCOL.md", + "sha256": "d7bdf1b8f3d005e3e70a8dbe803356063e4df932c963213f4c431dbf1a1a3f0b", + "size": 5343 + }, + "ION/02_architecture/VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_PROTOCOL.md", + "sha256": "9a006e11696b35bd26a0aad6887e28d0afaf786b4f77782c3c37b0e5bc360b80", + "size": 618 + }, + "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_PROTOCOL.md", + "sha256": "0a98f07e89f8f68624f01a5f63b5d385ca56eb47d8d437fa10f53a3e3491301e", + "size": 4025 + }, + "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_PROTOCOL.md", + "sha256": "4d8a1ca802053e7299b5e852ca2b1f49df567683ef9967c831a40c02049c4d7c", + "size": 940 + }, + "ION/02_architecture/VISUAL_DIAGNOSIS_RECEIPT_AND_BROWSER_HARNESS_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_DIAGNOSIS_RECEIPT_AND_BROWSER_HARNESS_PROTOCOL.md", + "sha256": "ff80dbe79408edba0e1712adf9920532479df2fda863fffd4cf47bd180a33f03", + "size": 2140 + }, + "ION/02_architecture/VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_PROTOCOL.md", + "sha256": "3e1912c6c8f6d6eba2da3148492ddd5cffffb0aa33512bd1fa9b5c435b8ae57f", + "size": 2007 + }, + "ION/02_architecture/VISUAL_OBSERVATION_PACKET_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_OBSERVATION_PACKET_PROTOCOL.md", + "sha256": "c36bd692fd122efdb32f1a8a17759edd223603dd8abece61a3ad98dee856f39c", + "size": 814 + }, + "ION/02_architecture/VISUAL_PERCEPTION_AND_INTERACTION_AGENT_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_PERCEPTION_AND_INTERACTION_AGENT_PROTOCOL.md", + "sha256": "02ff2716051505941fb942e6e00bda9f01ff7b87e9923e2565c011a0fba124f1", + "size": 1481 + }, + "ION/02_architecture/VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_PROTOCOL.md", + "sha256": "0851ad7f721008b6b1e8465b19b9c86959eacd5e67aa309c44cafcb97221058b", + "size": 2557 + }, + "ION/02_architecture/VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_PROTOCOL.md", + "sha256": "d4fa3ea33657b2b11424c10e9870db25dbf8557de2f2facac8ae50a0091a06c8", + "size": 1675 + }, + "ION/02_architecture/WORKING_AGENT_SELF_USE_PROTOCOL.md": { + "path": "ION/02_architecture/WORKING_AGENT_SELF_USE_PROTOCOL.md", + "sha256": "dd4bd9200881188600297e2f08c5cf68286e2e7644cafb4511226707867112c0", + "size": 2860 + }, + "ION/03_registry/README.md": { + "path": "ION/03_registry/README.md", + "sha256": "65db424d7cf407a75975b60e70ae2c1c90b416adf70f699dcc456fd54564e5e6", + "size": 1305 + }, + "ION/03_registry/agent_context_dynamics_registry.yaml": { + "path": "ION/03_registry/agent_context_dynamics_registry.yaml", + "sha256": "e5a0437b71312435182e6c0ff930f5a088d7f46863996ee25596252c7577dea4", + "size": 1360 + }, + "ION/03_registry/agent_context_system_registry.yaml": { + "path": "ION/03_registry/agent_context_system_registry.yaml", + "sha256": "0c9e8d86b55bcf310f85adabbdee3d4d7947a24c0ce05680b608d29d5466fd12", + "size": 9343 + }, + "ION/03_registry/agent_roster_registry.yaml": { + "path": "ION/03_registry/agent_roster_registry.yaml", + "sha256": "92f8852b1ebff1916c5313d6e82a6cd01569135f73f0ec7ce6a8f4aa3418f6d6", + "size": 17281 + }, + "ION/03_registry/agent_succession_packet.schema.json": { + "path": "ION/03_registry/agent_succession_packet.schema.json", + "sha256": "df51c2ae05f3a3d2efb2a7c7d86f5ff97265db88eebcaee775e63d1f945e0492", + "size": 897 + }, + "ION/03_registry/api_rate_governor_decision.schema.json": { + "path": "ION/03_registry/api_rate_governor_decision.schema.json", + "sha256": "5997e2e8f2d342dedf32fbb152cb19f8276916a92a6a10b4b4085e72e79bd044", + "size": 1000 + }, + "ION/03_registry/approved_context_index.yaml": { + "path": "ION/03_registry/approved_context_index.yaml", + "sha256": "7cfffa10d804418a89925ca09384aa8b513dff5f403989a547e68d410ba77e99", + "size": 1681 + }, + "ION/03_registry/authority_lineage_registry.json": { + "path": "ION/03_registry/authority_lineage_registry.json", + "sha256": "3e48c0aebcb60bb56ba1400f9b130638b1abb48c32759e7f9e7882466a28bd14", + "size": 3282 + }, + "ION/03_registry/boots/ATLAS.boot.md": { + "path": "ION/03_registry/boots/ATLAS.boot.md", + "sha256": "520c8cb87d75c8339e252e29f05b1441074a0f6eaceeb1606d5737407010cb32", + "size": 7916 + }, + "ION/03_registry/boots/CANON_LIBRARIAN.boot.md": { + "path": "ION/03_registry/boots/CANON_LIBRARIAN.boot.md", + "sha256": "7a174df0f7d9c0ba629b3e9ec861fe3f29da5e1705eacd55702fe3ca669b8f19", + "size": 1527 + }, + "ION/03_registry/boots/CODEX.boot.md": { + "path": "ION/03_registry/boots/CODEX.boot.md", + "sha256": "159d846e1e43f29df973a3dacf5f5d70da70a4ce2bc2ea692227b0043d81bebd", + "size": 1548 + }, + "ION/03_registry/boots/CONTEXT_CARTOGRAPHER.boot.md": { + "path": "ION/03_registry/boots/CONTEXT_CARTOGRAPHER.boot.md", + "sha256": "b7cedb6d70a4b72bf8802645315b144db962fbf4375f25529b480502bab2858d", + "size": 1528 + }, + "ION/03_registry/boots/IONOLOGIST.boot.md": { + "path": "ION/03_registry/boots/IONOLOGIST.boot.md", + "sha256": "39a8ac38f75ac3522a748180203b47a4aac9da7007fe5d67e3bfaa5c186fb9f0", + "size": 1469 + }, + "ION/03_registry/boots/MASON.boot.md": { + "path": "ION/03_registry/boots/MASON.boot.md", + "sha256": "3a550a6e00a87faa710b42145448536e3f8da045ddf61fe3b4682139ae0aaf1a", + "size": 2696 + }, + "ION/03_registry/boots/NEMESIS.boot.md": { + "path": "ION/03_registry/boots/NEMESIS.boot.md", + "sha256": "5c163168bb48c7001f3119b66b7141cb4bf99875d72ab7a1e334612707ebca83", + "size": 3175 + }, + "ION/03_registry/boots/PERSONA_INTERFACE.boot.md": { + "path": "ION/03_registry/boots/PERSONA_INTERFACE.boot.md", + "sha256": "9b1875264da2f289fbac304bf13dd269851a18edffbafc561e5dc4b94dff3a4a", + "size": 2533 + }, + "ION/03_registry/boots/RELAY.boot.md": { + "path": "ION/03_registry/boots/RELAY.boot.md", + "sha256": "93d80e353b48cd37c1620bb2fa04994569b3b98b256079b7c83dd4d852e83b57", + "size": 7462 + }, + "ION/03_registry/boots/RUNTIME_CARTOGRAPHER.boot.md": { + "path": "ION/03_registry/boots/RUNTIME_CARTOGRAPHER.boot.md", + "sha256": "bc1d296eb03a8a8599bf873d3f28ab01429817f25076dbd3d88a65f46950da46", + "size": 1517 + }, + "ION/03_registry/boots/SCRIBE.boot.md": { + "path": "ION/03_registry/boots/SCRIBE.boot.md", + "sha256": "2648e4bdc318b9e272c913eb12567025a20428512bd2c7f82b747548a89752ed", + "size": 1803 + }, + "ION/03_registry/boots/STEWARD.boot.md": { + "path": "ION/03_registry/boots/STEWARD.boot.md", + "sha256": "a8558d06f7e5a1829b8eb362597ccd9064889eb7cca1af990f94f62e177729b4", + "size": 2041 + }, + "ION/03_registry/boots/TEMPLATE_CURATOR.boot.md": { + "path": "ION/03_registry/boots/TEMPLATE_CURATOR.boot.md", + "sha256": "59eb78ea319d77b7f2498c374e4410b78a1006db88849a266669bea41b5ab7a8", + "size": 1501 + }, + "ION/03_registry/boots/THOTH.boot.md": { + "path": "ION/03_registry/boots/THOTH.boot.md", + "sha256": "a8f6cb2ba321b2de3992d274ce34256e92c675e8eb8c8441e2e3a60fc10609e2", + "size": 2657 + }, + "ION/03_registry/boots/VESTIGE.boot.md": { + "path": "ION/03_registry/boots/VESTIGE.boot.md", + "sha256": "8a6e30347135068880f6b34a56e6c6ab172d808b95ab7a2b79f05446c46b1a41", + "size": 5321 + }, + "ION/03_registry/boots/VICE.boot.md": { + "path": "ION/03_registry/boots/VICE.boot.md", + "sha256": "6b0cc54a59e54afbb530282c9e103324e772d36e51e44c7b187fa8202359226b", + "size": 7482 + }, + "ION/03_registry/boots/VIZIER.boot.md": { + "path": "ION/03_registry/boots/VIZIER.boot.md", + "sha256": "b19c88cd11282d2586c8c87bccba0361fed5b94ffa08d9209c56e7307b89e62a", + "size": 6267 + }, + "ION/03_registry/boots/VIZIER_DAIMON_GPT.boot.md": { + "path": "ION/03_registry/boots/VIZIER_DAIMON_GPT.boot.md", + "sha256": "79739ff3c7b3415fed372de18b76adf9c27a8e33e8e9c57b36de8ff07f7c4ac1", + "size": 2831 + }, + "ION/03_registry/boots/VIZIER_DAIMON_OPUS.boot.md": { + "path": "ION/03_registry/boots/VIZIER_DAIMON_OPUS.boot.md", + "sha256": "2cb3c1af944f44f651e4b4ba069749e5346e017b35f279cf35818253849beaf4", + "size": 2821 + }, + "ION/03_registry/branch_consolidation_ui_model_governor_binding.schema.json": { + "path": "ION/03_registry/branch_consolidation_ui_model_governor_binding.schema.json", + "sha256": "ae144a6c30150899f1e884702d890064588baea3a0754fedc33a40f74a0d7362", + "size": 1163 + }, + "ION/03_registry/branch_consolidation_ui_model_governor_policy.yaml": { + "path": "ION/03_registry/branch_consolidation_ui_model_governor_policy.yaml", + "sha256": "66cfc7933927d82f8d65853f65d5798e0f9dfa72f1da2384af77fb6666729271", + "size": 845 + }, + "ION/03_registry/budget_governor_decision.schema.json": { + "path": "ION/03_registry/budget_governor_decision.schema.json", + "sha256": "98a778cba5eed2e881cbc064c261d8ca0b0871dfe06d395f7a80ed5de474ca38", + "size": 1105 + }, + "ION/03_registry/budget_policy.yaml": { + "path": "ION/03_registry/budget_policy.yaml", + "sha256": "af9b81beea5db061a5c2ebfaa80961d712f7edfc4f97e87949d6a254dbe2d604", + "size": 726 + }, + "ION/03_registry/capabilities/capability_registry.json": { + "path": "ION/03_registry/capabilities/capability_registry.json", + "sha256": "9c712d0e3dc7cb4ded99c6b47b28817c67ec6a2504ad104723586fc94bc6b8dd", + "size": 1912 + }, + "ION/03_registry/carrier_capability_registry.yaml": { + "path": "ION/03_registry/carrier_capability_registry.yaml", + "sha256": "dcc403dff95daacc0a4c737e4c755f8e6562d5add728d341e298088ef28418c4", + "size": 5886 + }, + "ION/03_registry/chatgpt_browser_carrier_profile.yaml": { + "path": "ION/03_registry/chatgpt_browser_carrier_profile.yaml", + "sha256": "74d56f18f94b0b92d289f6f063717fc8c1cc5702b6c7c0e6aec161df4e949181", + "size": 2433 + }, + "ION/03_registry/codex_cli_carrier_profile.yaml": { + "path": "ION/03_registry/codex_cli_carrier_profile.yaml", + "sha256": "b83c081562482ebd44399830722784f5a09f293964dea8f7dd75c9afa3c8b0c6", + "size": 1603 + }, + "ION/03_registry/codex_extension_carrier_profile.yaml": { + "path": "ION/03_registry/codex_extension_carrier_profile.yaml", + "sha256": "2a2d71c4de9744a867e4b7c039d0fdbdb0a00a3d137dd86ec7dbf92bf71ccb2e", + "size": 1075 + }, + "ION/03_registry/context_graph_edge_class_registry.yaml": { + "path": "ION/03_registry/context_graph_edge_class_registry.yaml", + "sha256": "d5c126cfe1c58f2dab98500abe9025643c444b871a45baf83847f89216ae6bc6", + "size": 2980 + }, + "ION/03_registry/context_graph_node_class_registry.yaml": { + "path": "ION/03_registry/context_graph_node_class_registry.yaml", + "sha256": "c721b8360dad697f5465a49097d9916916bd1a42d29654984a147e13612206a1", + "size": 4197 + }, + "ION/03_registry/context_graph_region_registry.yaml": { + "path": "ION/03_registry/context_graph_region_registry.yaml", + "sha256": "d6987f0e19cb325e65eb83982e1fa8918e12d6a58a3862a81957ffbcdeac99be", + "size": 2434 + }, + "ION/03_registry/context_graph_substrate_registry.yaml": { + "path": "ION/03_registry/context_graph_substrate_registry.yaml", + "sha256": "d5c5232c029c768a337929948913a40aee2d2c44d7a9ad45fe0681d7abb31e57", + "size": 16241 + }, + "ION/03_registry/context_lifecycle_policy.yaml": { + "path": "ION/03_registry/context_lifecycle_policy.yaml", + "sha256": "e0ef8943f623b134547b3c6779b7df9ed097947f4a6415144486b1cbd2b920e2", + "size": 1229 + }, + "ION/03_registry/conversational_receipt.schema.json": { + "path": "ION/03_registry/conversational_receipt.schema.json", + "sha256": "8abb7ee1192da88d0ed4a2158eaf776bddf0f5914c312dd02529804b1a0ecfe9", + "size": 611 + }, + "ION/03_registry/current_phase_template_surface_registry.yaml": { + "path": "ION/03_registry/current_phase_template_surface_registry.yaml", + "sha256": "b220660ab1cb3447fef24787d4e3bbc59cb794105cd49afb61d5c67844ff3e5a", + "size": 35014 + }, + "ION/03_registry/cursor_subagent_role_mount.schema.json": { + "path": "ION/03_registry/cursor_subagent_role_mount.schema.json", + "sha256": "3c00e5b3ff4848547197f5411fcdef07cfe677d3a8ce82e4f5d8b9f960167bcd", + "size": 3783 + }, + "ION/03_registry/daimon_matrix.yaml": { + "path": "ION/03_registry/daimon_matrix.yaml", + "sha256": "604e0fe0908aee67320497cff61d89b5479eeed6f5ce85c14454a6814fa0e0bb", + "size": 3664 + }, + "ION/03_registry/doctrine_evolution_registry.yaml": { + "path": "ION/03_registry/doctrine_evolution_registry.yaml", + "sha256": "af9f5e324094bee693f0cb289ec0aae4095b1812ed186cf6ec53c2bc41d5bca9", + "size": 1929 + }, + "ION/03_registry/domain_map_registry.yaml": { + "path": "ION/03_registry/domain_map_registry.yaml", + "sha256": "f11f36e82160ae1b4f9e13a0a56376764f52f62e71ff1783571fb3c33006eae7", + "size": 590 + }, + "ION/03_registry/domains/README.md": { + "path": "ION/03_registry/domains/README.md", + "sha256": "8f144529a06e3bdb6e4d758272a39f4e13f10d5ce21cefe001d5dc99e0a78242", + "size": 1311 + }, + "ION/03_registry/domains/activation_witness/2026-04-07_confidence_drift_review.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-07_confidence_drift_review.activation.yaml", + "sha256": "f62e1df6af0e4b0a4dfab061d514813e0f6d4c06b33c55759c2be8f29ccedaa9", + "size": 839 + }, + "ION/03_registry/domains/activation_witness/2026-04-07_construction_routing_integration.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-07_construction_routing_integration.activation.yaml", + "sha256": "379921f14822a808e577f75afa90deb1850c5c38d96eaa5abac5603939b0ab87", + "size": 757 + }, + "ION/03_registry/domains/activation_witness/2026-04-07_continuity_context_resumability.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-07_continuity_context_resumability.activation.yaml", + "sha256": "e4ad5dfa62dba977b5c41ac01a8f98d848a870368991ec3a3473f22ae30f2732", + "size": 681 + }, + "ION/03_registry/domains/activation_witness/2026-04-12_current_phase_orchestration_management.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-12_current_phase_orchestration_management.activation.yaml", + "sha256": "bee6f30b3e529ad16aeb83b0101351661324c16ad95508c3f4ecb18cc9417620", + "size": 842 + }, + "ION/03_registry/domains/activation_witness/2026-04-22_archaeology_drift_watch.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-22_archaeology_drift_watch.activation.yaml", + "sha256": "d2d9aca0c7484ca256f4091227513f550cf17885c9ab908e6231e74e86a2b359", + "size": 958 + }, + "ION/03_registry/domains/activation_witness/2026-04-22_communications_packet_relay.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-22_communications_packet_relay.activation.yaml", + "sha256": "96a4cf7db22a5a0f40523338c175a05174c015004f926a311bc4711557ed4ebe", + "size": 922 + }, + "ION/03_registry/domains/domain.archaeology_drift_watch.domain.yaml": { + "path": "ION/03_registry/domains/domain.archaeology_drift_watch.domain.yaml", + "sha256": "7ba313a736a4ea2f96d108ef4d140a8811eb9dcc5e7f78b4b694f12377403f62", + "size": 1422 + }, + "ION/03_registry/domains/domain.communications_packet_relay.domain.yaml": { + "path": "ION/03_registry/domains/domain.communications_packet_relay.domain.yaml", + "sha256": "21f1cb7ca6e8ca590e9d6cb1e3e32d89b98fa1a15a7d7bb5c74972a82615cecb", + "size": 1333 + }, + "ION/03_registry/domains/domain.confidence_drift_review.domain.yaml": { + "path": "ION/03_registry/domains/domain.confidence_drift_review.domain.yaml", + "sha256": "9a05ef6561be3f74392b52321f510c0f444da24b4add27529e56a557fbe5351b", + "size": 1103 + }, + "ION/03_registry/domains/domain.construction_routing_integration.domain.yaml": { + "path": "ION/03_registry/domains/domain.construction_routing_integration.domain.yaml", + "sha256": "784b26a461db7f0b0d8dfdb6635735d8093d155259691bd98db5cbd40da2d017", + "size": 1113 + }, + "ION/03_registry/domains/domain.continuity_context_resumability.domain.yaml": { + "path": "ION/03_registry/domains/domain.continuity_context_resumability.domain.yaml", + "sha256": "80638e6e1a2ceeafe3cf40a1d60581f370cc3ce1fba0fdf3523634c9083176c2", + "size": 1075 + }, + "ION/03_registry/domains/domain.current_phase_orchestration_management.domain.yaml": { + "path": "ION/03_registry/domains/domain.current_phase_orchestration_management.domain.yaml", + "sha256": "faaff4399ecdb4bbdb267e5e5b1474c1cd90bba2d03fa89ed75cddd64181f052", + "size": 1096 + }, + "ION/03_registry/domains/domain.user_persona_interface.domain.yaml": { + "path": "ION/03_registry/domains/domain.user_persona_interface.domain.yaml", + "sha256": "1a5ff7f24d85d2740573054f61d5e0b69cd7c82a6f49587b8aac1affe9e3bf7b", + "size": 956 + }, + "ION/03_registry/expressive_telemetry_policy.yaml": { + "path": "ION/03_registry/expressive_telemetry_policy.yaml", + "sha256": "9e2585fc7c9cf818d0ad251d1d5dff0ebb18b8c0aeac622a1e7090bdc11b50bc", + "size": 588 + }, + "ION/03_registry/expressive_telemetry_runtime.schema.json": { + "path": "ION/03_registry/expressive_telemetry_runtime.schema.json", + "sha256": "c8a6fced3d2dd4bd43358f81a18c4699a47120ef7a5d57d5b4e2be00fbe80a98", + "size": 425 + }, + "ION/03_registry/expressive_telemetry_runtime_policy.yaml": { + "path": "ION/03_registry/expressive_telemetry_runtime_policy.yaml", + "sha256": "871327f7cb333fe159fc71907d9d90d122246f781ab7d9f9128683702f71d171", + "size": 383 + }, + "ION/03_registry/front_door_self_mount_binding.schema.json": { + "path": "ION/03_registry/front_door_self_mount_binding.schema.json", + "sha256": "62a63c1b59ef1e356b585c09fe2bb6f32b3ad9fa47b9f3648969040233a95e0c", + "size": 1409 + }, + "ION/03_registry/front_stage_council_policy.yaml": { + "path": "ION/03_registry/front_stage_council_policy.yaml", + "sha256": "9d2eede5250b90955a2410f6db2a5315bf06b1ff7d1cfd657c62de20f861abeb", + "size": 488 + }, + "ION/03_registry/front_stage_council_receipt.schema.json": { + "path": "ION/03_registry/front_stage_council_receipt.schema.json", + "sha256": "c0a7b4fbd222a1066ad903595820d170d68e163cb6d660444d16e6fb626df5dc", + "size": 1190 + }, + "ION/03_registry/front_stage_council_runtime_policy.yaml": { + "path": "ION/03_registry/front_stage_council_runtime_policy.yaml", + "sha256": "91f6f9e2ed778397c54e0e54091fcb02479f5ea358ebd28748f6404310114474", + "size": 978 + }, + "ION/03_registry/gpt55_agent_succession_policy.yaml": { + "path": "ION/03_registry/gpt55_agent_succession_policy.yaml", + "sha256": "ccc5c2f0de9e07f6436d03058c9fd2f98bc5412a792df93c94c8667b6c0896ac", + "size": 465 + }, + "ION/03_registry/gpt55_front_door_self_mount_binding_policy.yaml": { + "path": "ION/03_registry/gpt55_front_door_self_mount_binding_policy.yaml", + "sha256": "dd9120ded262225482329c4fe7ae0c706cdb18a7dcc00f9b590b06b2f3afa9cc", + "size": 921 + }, + "ION/03_registry/gpt55_runtime_identity_mount_registry.yaml": { + "path": "ION/03_registry/gpt55_runtime_identity_mount_registry.yaml", + "sha256": "9be1e34da3fe3b19e7d6857639ee7397b0ab1c95f1440d8ef22bcded8eb0cdc3", + "size": 1566 + }, + "ION/03_registry/gpt55_self_mount_graph_registry.yaml": { + "path": "ION/03_registry/gpt55_self_mount_graph_registry.yaml", + "sha256": "efa6a69e0c921e88352dc59e46e0619880541dcfd82e16d7703240ed78e44f95", + "size": 706 + }, + "ION/03_registry/gpt55_self_mount_registry.yaml": { + "path": "ION/03_registry/gpt55_self_mount_registry.yaml", + "sha256": "ebc5d5633c68bf9d00ba872e34f86d7215f3ff962697d0ab9e08c9a12f752861", + "size": 2331 + }, + "ION/03_registry/gpt55_self_surface_drift_policy.yaml": { + "path": "ION/03_registry/gpt55_self_surface_drift_policy.yaml", + "sha256": "43501cf260c9f666c50ff850fe940b27af37634793f9e4eea0612751d5ac03e5", + "size": 594 + }, + "ION/03_registry/graph_reaction_registry.yaml": { + "path": "ION/03_registry/graph_reaction_registry.yaml", + "sha256": "455916988ee5f7b19e594414ec5a0534c1a60244cdb62a49c701c61c80bb30aa", + "size": 4094 + }, + "ION/03_registry/ion_chatgpt_browser_cloudflare_tunnel.schema.json": { + "path": "ION/03_registry/ion_chatgpt_browser_cloudflare_tunnel.schema.json", + "sha256": "7522925388421ac621ea7e6e4ace5c1c7bb8f05ab55089b863d5e68a6d813925", + "size": 1993 + }, + "ION/03_registry/ion_chatgpt_browser_http_mcp_preview.schema.json": { + "path": "ION/03_registry/ion_chatgpt_browser_http_mcp_preview.schema.json", + "sha256": "c59b2f3ab44018846b9230d3bad5a1242f1e0a25903f93a3eccbd8f045137cfb", + "size": 1420 + }, + "ION/03_registry/ion_chatgpt_browser_mcp_connector.schema.json": { + "path": "ION/03_registry/ion_chatgpt_browser_mcp_connector.schema.json", + "sha256": "ee7a325d320e6c656edd6e23c9c3c25fcb22973bca6322a7d523a140af47cc06", + "size": 1579 + }, + "ION/03_registry/ion_chatgpt_browser_mcp_tool_policy.yaml": { + "path": "ION/03_registry/ion_chatgpt_browser_mcp_tool_policy.yaml", + "sha256": "f698de10ec24142ddc38d2cd9f3d396dc451e943a4b622cec20a15662e8af44e", + "size": 4021 + }, + "ION/03_registry/ion_chatops_action.schema.yaml": { + "path": "ION/03_registry/ion_chatops_action.schema.yaml", + "sha256": "21c013959333994d82207429453275662005f85c32bd44d4f368ba0727ac399d", + "size": 1343 + }, + "ION/03_registry/ion_chatops_extension_policy.yaml": { + "path": "ION/03_registry/ion_chatops_extension_policy.yaml", + "sha256": "fe4a61d0d848f8322220df48e5243fa4be54fdfb4d42c8e380baca2dc1a51c9b", + "size": 892 + }, + "ION/03_registry/ion_chatops_local_daemon_policy.yaml": { + "path": "ION/03_registry/ion_chatops_local_daemon_policy.yaml", + "sha256": "861a9ea49217f27704ae81bee1c60250f0b09e3890fd33afff922b81ab54f6c3", + "size": 1139 + }, + "ION/03_registry/ion_context_authority_team_registry.yaml": { + "path": "ION/03_registry/ion_context_authority_team_registry.yaml", + "sha256": "608c5597a5ecf0fd325f506958adde2dc0d2b61f98db507d67355ef8949b372d", + "size": 3761 + }, + "ION/03_registry/ion_cursor_hook_state.schema.json": { + "path": "ION/03_registry/ion_cursor_hook_state.schema.json", + "sha256": "694072958e13d1d62a92ed05d504ffe9f0744024c8790141383ec96c5ec0a3cb", + "size": 961 + }, + "ION/03_registry/ion_file_record_schema.yaml": { + "path": "ION/03_registry/ion_file_record_schema.yaml", + "sha256": "093ed6318e660871f58c3e71b2b80b1590b4f01d1da4564bb79ebb6d35352681", + "size": 833 + }, + "ION/03_registry/ion_front_door_proof_trace.schema.json": { + "path": "ION/03_registry/ion_front_door_proof_trace.schema.json", + "sha256": "4cff6f7209c714b762b1d443cca4b153be9bf2981a2c5444d15cdb109b07ed96", + "size": 2000 + }, + "ION/03_registry/ion_github_data_plane_registry.yaml": { + "path": "ION/03_registry/ion_github_data_plane_registry.yaml", + "sha256": "ee464ce60034aece7f91d047fd6790da453fd9af1eeed6038930decd07144685", + "size": 6212 + }, + "ION/03_registry/ion_lane_timeline_view_model.schema.json": { + "path": "ION/03_registry/ion_lane_timeline_view_model.schema.json", + "sha256": "0b4827d5cc6860bec65ffd9a9f71240e454af71564966dba1b10cc4b214e92a5", + "size": 1211 + }, + "ION/03_registry/ion_lifecycle_package_manifest.schema.json": { + "path": "ION/03_registry/ion_lifecycle_package_manifest.schema.json", + "sha256": "352e8c26fa1f317eb7498153dd68cbcf08b04bda41f3289adfdcaa68d51b84ec", + "size": 2105 + }, + "ION/03_registry/ion_mcp_capability_scope_policy.yaml": { + "path": "ION/03_registry/ion_mcp_capability_scope_policy.yaml", + "sha256": "40cdcbbe269af8629a177d809e2f6ab068ac14430c6374bdac88caea64019bac", + "size": 1636 + }, + "ION/03_registry/ion_mcp_client_certification_policy.yaml": { + "path": "ION/03_registry/ion_mcp_client_certification_policy.yaml", + "sha256": "464cc1da4e133d7d121f7b1ca45bd7b7563c80dc49fcf3ff9b82de4aa3ba5c63", + "size": 1074 + }, + "ION/03_registry/ion_mcp_client_certification_report.schema.json": { + "path": "ION/03_registry/ion_mcp_client_certification_report.schema.json", + "sha256": "e11be51e9aa7b2018a5d26386e6002f7ca564c7203ceafb54ebd2cfb87cd8713", + "size": 1407 + }, + "ION/03_registry/ion_mcp_client_config_policy.yaml": { + "path": "ION/03_registry/ion_mcp_client_config_policy.yaml", + "sha256": "4f12750f71dcc22f47c5eca05193370843cc7320f1d8552ca06e31bf5da35bc4", + "size": 710 + }, + "ION/03_registry/ion_mcp_hosted_alpha_boundary_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_alpha_boundary_report.schema.json", + "sha256": "cadf18e065d3e779560eac67dfe034262b00505f0e8c46d321458328cd802fb3", + "size": 1763 + }, + "ION/03_registry/ion_mcp_hosted_auth_alpha_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_auth_alpha_policy.yaml", + "sha256": "1a3e4678426c6d94ae7c37725f065e7605e78edd70021b23c8d041e1150fd0ae", + "size": 1355 + }, + "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_policy.yaml", + "sha256": "2beab99f7a6e18d66382ae88b20046a04d3e3fcb59c70f99601e106e6b5ec380", + "size": 663 + }, + "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_report.schema.json", + "sha256": "2ebb2fcb2bab9d322d96858ffa329df34a5a07d94f006c55823ff59eb7408703", + "size": 1841 + }, + "ION/03_registry/ion_mcp_hosted_http_alpha_boundary_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_http_alpha_boundary_report.schema.json", + "sha256": "39f356f29b23f04ae316934e6e5c4fc0816c79c15b84ac10791c0296f68a5e3e", + "size": 2145 + }, + "ION/03_registry/ion_mcp_hosted_oauth_http_preview_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_oauth_http_preview_policy.yaml", + "sha256": "fd6007b4a715731c8e513e3e7ece8f95994c82452ba15e2572bd189bd59deb3d", + "size": 734 + }, + "ION/03_registry/ion_mcp_hosted_oauth_http_preview_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_oauth_http_preview_report.schema.json", + "sha256": "b56a8d59d2759aca9fff2ae9f02e25e88cf7a40034ad76bac6d98299810c528d", + "size": 1514 + }, + "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_policy.yaml", + "sha256": "b566f1e9bbe7fccfa989813730243e1ad8239ac7739d898467aef8fe59f3516a", + "size": 1070 + }, + "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_report.schema.json", + "sha256": "6ecfac1b026061190d0dbcbcb427b4bb17799fc0063e151b53600fa044e8cf8f", + "size": 2795 + }, + "ION/03_registry/ion_mcp_local_bridge_tool_policy.yaml": { + "path": "ION/03_registry/ion_mcp_local_bridge_tool_policy.yaml", + "sha256": "7235678bd09f0e78fc0a0cf62938db3d923a65de3efa9c459e3a66a7c56d2bc9", + "size": 1041 + }, + "ION/03_registry/ion_mcp_local_bridge_tool_result.schema.json": { + "path": "ION/03_registry/ion_mcp_local_bridge_tool_result.schema.json", + "sha256": "117b61d98d44f62b968ea560ff81bf7c6066a7cd9085dce541cdbe00c3590c91", + "size": 1587 + }, + "ION/03_registry/ion_mcp_local_smoke_report.schema.json": { + "path": "ION/03_registry/ion_mcp_local_smoke_report.schema.json", + "sha256": "139195014834ad09b67080244f506df6a78ebb79c7ebd8cad6cbaaf166e067cc", + "size": 1308 + }, + "ION/03_registry/ion_mcp_mount_session.schema.json": { + "path": "ION/03_registry/ion_mcp_mount_session.schema.json", + "sha256": "51b394eb5af4493d30c767ad9798da2f25ead0ddef628db9d0ab92a176697cec", + "size": 2358 + }, + "ION/03_registry/ion_mcp_sdk_wrapper_boundary_policy.yaml": { + "path": "ION/03_registry/ion_mcp_sdk_wrapper_boundary_policy.yaml", + "sha256": "38d00107841e08e841a4f1b0daf8d6d24b42cee582963dbddf6008585d72c299", + "size": 936 + }, + "ION/03_registry/ion_mcp_transport_preview_policy.yaml": { + "path": "ION/03_registry/ion_mcp_transport_preview_policy.yaml", + "sha256": "744d13f3feb3cc05fc4cd33c8e1a6999b3592cccd9b37a1bc2641b05109d2d8a", + "size": 735 + }, + "ION/03_registry/ion_mcp_transport_preview_report.schema.json": { + "path": "ION/03_registry/ion_mcp_transport_preview_report.schema.json", + "sha256": "d20df78c3c7fb3d1b8a7236f43761f059e88ac8f4f8fecff9fac7ce6afeb3877", + "size": 1512 + }, + "ION/03_registry/ion_operational_readiness_gate_policy.yaml": { + "path": "ION/03_registry/ion_operational_readiness_gate_policy.yaml", + "sha256": "d871a6c48f31df54d9003e606b88e108d4bb5a6bf8f8d2da2e1588743281f155", + "size": 1787 + }, + "ION/03_registry/ion_receipt_hydration_view_model.schema.json": { + "path": "ION/03_registry/ion_receipt_hydration_view_model.schema.json", + "sha256": "45fbcf520972adb22d4824fe3a91f6ed0592d8db83133f5079d59758577f9e93", + "size": 1147 + }, + "ION/03_registry/ion_runtime_debug_overlay.schema.json": { + "path": "ION/03_registry/ion_runtime_debug_overlay.schema.json", + "sha256": "828f00b1565bdb85156bd320f52a125c9fd841d1acc5b8ec8975231f333d0530", + "size": 748 + }, + "ION/03_registry/ion_trunk_preservation_policy.yaml": { + "path": "ION/03_registry/ion_trunk_preservation_policy.yaml", + "sha256": "f988f9fe7e5c05d1074ac2a058f1e1134fee16e2f65a5bd24b73cef7ea08ccc0", + "size": 1398 + }, + "ION/03_registry/ion_trunk_preservation_report.schema.json": { + "path": "ION/03_registry/ion_trunk_preservation_report.schema.json", + "sha256": "310239b157b79a4d4fc04650b5e3feecde7ca9a848b1db7220dd42b341499116", + "size": 3495 + }, + "ION/03_registry/ion_v72_mcp_donor_reconciliation_audit.schema.json": { + "path": "ION/03_registry/ion_v72_mcp_donor_reconciliation_audit.schema.json", + "sha256": "34922e7f00f3c99312cad2cd5b43031095145e8d6931b8983b2c6c7e44054599", + "size": 1113 + }, + "ION/03_registry/joc_cockpit_component_contract.schema.json": { + "path": "ION/03_registry/joc_cockpit_component_contract.schema.json", + "sha256": "366b6f9dc10a1cc22f3a68f93ed9cf3cf46bd3bfc4482338442dfc4c4b67b345", + "size": 2133 + }, + "ION/03_registry/joc_cockpit_layout_manifest.yaml": { + "path": "ION/03_registry/joc_cockpit_layout_manifest.yaml", + "sha256": "f2f868a55aff1f614ebe33a97f5fc9e90cb2b3499770d65a70e3a356b5933b27", + "size": 1444 + }, + "ION/03_registry/joc_cognitive_explorer_policy.yaml": { + "path": "ION/03_registry/joc_cognitive_explorer_policy.yaml", + "sha256": "40711cbf8df9148095a9e374bb5fc2fc0b38a308f3395165d1ffbd503bc9dcba", + "size": 777 + }, + "ION/03_registry/joc_cognitive_explorer_route_view_model.schema.json": { + "path": "ION/03_registry/joc_cognitive_explorer_route_view_model.schema.json", + "sha256": "b03d97d289af77d28fe9c39e17247add253a5b2e26563cb82c7e4dd6e3a94a14", + "size": 1895 + }, + "ION/03_registry/joc_dispatch_authorization_policy.yaml": { + "path": "ION/03_registry/joc_dispatch_authorization_policy.yaml", + "sha256": "d6a672003857bb891ca03f0661349e73b439abc6eebf17bbe31aecf86b820258", + "size": 1052 + }, + "ION/03_registry/joc_dispatch_authorization_view_model.schema.json": { + "path": "ION/03_registry/joc_dispatch_authorization_view_model.schema.json", + "sha256": "28c64675f0011bde9e20bb2fdc0d5f556b9775355169b16e9e0268574fc97293", + "size": 1694 + }, + "ION/03_registry/joc_dry_run_dispatch_trace_policy.yaml": { + "path": "ION/03_registry/joc_dry_run_dispatch_trace_policy.yaml", + "sha256": "e90f9292e440625619640bf466569c91e508c969190b551e81cf5418f16121a9", + "size": 1306 + }, + "ION/03_registry/joc_dry_run_dispatch_trace_view_model.schema.json": { + "path": "ION/03_registry/joc_dry_run_dispatch_trace_view_model.schema.json", + "sha256": "58e5442a5c2c9503999d68203e314ea8d85454304fd7df8a201a1192d3c72808", + "size": 1443 + }, + "ION/03_registry/joc_export_handoff_manifest_policy.yaml": { + "path": "ION/03_registry/joc_export_handoff_manifest_policy.yaml", + "sha256": "4563028d16f16018a0e585ca5518c94b9ae2cfe992c79f1dae6059628178d56c", + "size": 573 + }, + "ION/03_registry/joc_export_handoff_manifest_view_model.schema.json": { + "path": "ION/03_registry/joc_export_handoff_manifest_view_model.schema.json", + "sha256": "bc8fca1b96dc4a03943e5dbd43341e1611d71ba8e634c76741c426e0754cd76f", + "size": 866 + }, + "ION/03_registry/joc_handoff_package_assembly_policy.yaml": { + "path": "ION/03_registry/joc_handoff_package_assembly_policy.yaml", + "sha256": "3208b78e5e5fc1cbb0000e13eb15a7d239a48b3dc1039d95d7b49aeb09759629", + "size": 488 + }, + "ION/03_registry/joc_handoff_package_assembly_view_model.schema.json": { + "path": "ION/03_registry/joc_handoff_package_assembly_view_model.schema.json", + "sha256": "6525535acc3901d30bdf614089ed351645ae623ceffcd2a52ab2631212517d1c", + "size": 965 + }, + "ION/03_registry/joc_mission_dispatch_route_policy.yaml": { + "path": "ION/03_registry/joc_mission_dispatch_route_policy.yaml", + "sha256": "6d3c834ff1a84739ce8a46e191d4d9498e87284e6a7cbdde9b08c792538b92ce", + "size": 980 + }, + "ION/03_registry/joc_mission_dispatch_route_view_model.schema.json": { + "path": "ION/03_registry/joc_mission_dispatch_route_view_model.schema.json", + "sha256": "405bf35218b4e73127150f329121d53423a323f27ce2e0da23577abff147b4b2", + "size": 1697 + }, + "ION/03_registry/joc_operator_approval_policy.yaml": { + "path": "ION/03_registry/joc_operator_approval_policy.yaml", + "sha256": "3413ce1181cca1453e53b5dc0e2f43a8d0853478264092ba064776405d48eefa", + "size": 615 + }, + "ION/03_registry/joc_operator_approval_queue.schema.json": { + "path": "ION/03_registry/joc_operator_approval_queue.schema.json", + "sha256": "fec5a5ec568eca7bf3df0214fc29267c9a05401ccfc678cf3107e56a1209b42d", + "size": 1270 + }, + "ION/03_registry/joc_provider_adapter_readiness_policy.yaml": { + "path": "ION/03_registry/joc_provider_adapter_readiness_policy.yaml", + "sha256": "376fd624c1daec5d2a3b4ecb6645ab7204df20ad5652d77ac3ea328559619e6d", + "size": 989 + }, + "ION/03_registry/joc_provider_adapter_readiness_view_model.schema.json": { + "path": "ION/03_registry/joc_provider_adapter_readiness_view_model.schema.json", + "sha256": "dcac7b0f5107ed36557bdf48b5341ed12bc954258f05d95e8ca6d069c064c493", + "size": 1481 + }, + "ION/03_registry/joc_reactive_os_stream_policy.yaml": { + "path": "ION/03_registry/joc_reactive_os_stream_policy.yaml", + "sha256": "4651710e9fb28b4e3c114b7ad307eee2eb1fe63e941b717952d9d7b96e555691", + "size": 794 + }, + "ION/03_registry/joc_reactive_os_stream_view_model.schema.json": { + "path": "ION/03_registry/joc_reactive_os_stream_view_model.schema.json", + "sha256": "32f799df00d6f50ba1b962f32ead450e85d0b6d7e56fd1730b9b7e732cae01d0", + "size": 733 + }, + "ION/03_registry/joc_release_candidate_preview_policy.yaml": { + "path": "ION/03_registry/joc_release_candidate_preview_policy.yaml", + "sha256": "dd3619a32e5317aaa368aa8fb982d0f72a77316b841bd630ec70dc21345948c6", + "size": 577 + }, + "ION/03_registry/joc_release_candidate_preview_view_model.schema.json": { + "path": "ION/03_registry/joc_release_candidate_preview_view_model.schema.json", + "sha256": "b04aa4f968e74c260efbe6a4caa696e63134dc4b060869f8fb649fae06105391", + "size": 1079 + }, + "ION/03_registry/joc_result_save_proposal_policy.yaml": { + "path": "ION/03_registry/joc_result_save_proposal_policy.yaml", + "sha256": "ae69bbd606cf72e25c554440d880dcc40807da03ee778ded467ae82268d50e09", + "size": 361 + }, + "ION/03_registry/joc_result_save_proposal_view_model.schema.json": { + "path": "ION/03_registry/joc_result_save_proposal_view_model.schema.json", + "sha256": "0827b1d3d01d97093765b452c5da56c373e115a07c42af471412d354f520e814", + "size": 456 + }, + "ION/03_registry/joc_synthetic_response_capture_policy.yaml": { + "path": "ION/03_registry/joc_synthetic_response_capture_policy.yaml", + "sha256": "9cfd584ddfeebe4725addeb56ee056d4db3964a51a79715204b619bc075dcf61", + "size": 1084 + }, + "ION/03_registry/joc_synthetic_response_capture_view_model.schema.json": { + "path": "ION/03_registry/joc_synthetic_response_capture_view_model.schema.json", + "sha256": "a158d9a071a500ce7634c357a90d41ad68944746adb93978ed12b63f3d68c0c7", + "size": 1394 + }, + "ION/03_registry/joc_synthetic_synthesis_route_policy.yaml": { + "path": "ION/03_registry/joc_synthetic_synthesis_route_policy.yaml", + "sha256": "413a2d46fb1117ca33853b6aed53cc12298cfbc0334b00346ceab801e504b90b", + "size": 1025 + }, + "ION/03_registry/joc_synthetic_synthesis_route_view_model.schema.json": { + "path": "ION/03_registry/joc_synthetic_synthesis_route_view_model.schema.json", + "sha256": "2661389a6bead651751fef60c596adb28fcf73eb98051eac043db054fa01c136", + "size": 1642 + }, + "ION/03_registry/live_persona_latency_policy.yaml": { + "path": "ION/03_registry/live_persona_latency_policy.yaml", + "sha256": "9d0dfbfd51ed8bcece1ebfaf898b19501401c8329fcac1f28087f76c664f8346", + "size": 548 + }, + "ION/03_registry/live_repair_policy.yaml": { + "path": "ION/03_registry/live_repair_policy.yaml", + "sha256": "dc13b47303bb2c55c0957f0eda05a09ef0862decece2c8556b27b8ca17826200", + "size": 462 + }, + "ION/03_registry/local_browser_capture_adapter.schema.json": { + "path": "ION/03_registry/local_browser_capture_adapter.schema.json", + "sha256": "7de33f4a4d7fe4a6b2e90c6bf64652dd5afd4e4024ed0c7cd172c6995ef42ceb", + "size": 675 + }, + "ION/03_registry/local_browser_capture_adapter_policy.yaml": { + "path": "ION/03_registry/local_browser_capture_adapter_policy.yaml", + "sha256": "a417df025cfcda124fef696f06c4a2cf0402b9fdf444165c5b4aaeb85b1ff5cb", + "size": 488 + }, + "ION/03_registry/local_browser_execution_harness.schema.json": { + "path": "ION/03_registry/local_browser_execution_harness.schema.json", + "sha256": "03bd20812bf1709c81a0f8d70241bcdcd954fe600ef3f7da0147112b813b1445", + "size": 724 + }, + "ION/03_registry/local_browser_execution_harness_policy.yaml": { + "path": "ION/03_registry/local_browser_execution_harness_policy.yaml", + "sha256": "e22f3ccf22ac57da3943bc503e035ffd251d2615e5b02974904c6cde0c8a5e58", + "size": 431 + }, + "ION/03_registry/local_browser_execution_run_receipt.schema.json": { + "path": "ION/03_registry/local_browser_execution_run_receipt.schema.json", + "sha256": "c80800724fbcdbb185fc37fcc21a51dcc49a2245fc8836137bfa9ad26fd2d5f1", + "size": 1110 + }, + "ION/03_registry/local_browser_execution_run_receipt_policy.yaml": { + "path": "ION/03_registry/local_browser_execution_run_receipt_policy.yaml", + "sha256": "fc425806fac658c8c3cbca1286dcef9acf9459035bdd14b70a81781fa72ea981", + "size": 571 + }, + "ION/03_registry/local_browser_execution_sandbox_spec.schema.json": { + "path": "ION/03_registry/local_browser_execution_sandbox_spec.schema.json", + "sha256": "f0f28e217f6965898379c5939b600f7c6293f3482b8d22be0782ef5617f5c69a", + "size": 2657 + }, + "ION/03_registry/local_browser_execution_sandbox_spec_policy.yaml": { + "path": "ION/03_registry/local_browser_execution_sandbox_spec_policy.yaml", + "sha256": "a4af22eb53f00ca2175e28378cc44f6b386f6f378fcba7d4ecc7dfde728fe7e1", + "size": 1357 + }, + "ION/03_registry/local_visual_harness.schema.json": { + "path": "ION/03_registry/local_visual_harness.schema.json", + "sha256": "e8063674b9e64dadbab828c90342ad7e7addbe836c9f8ada7dbaac2dc8b095c1", + "size": 1378 + }, + "ION/03_registry/local_visual_harness_policy.yaml": { + "path": "ION/03_registry/local_visual_harness_policy.yaml", + "sha256": "b034765c5cdd0823bb05765658e131694cca25bbb0c80764ac13c0852e3711af", + "size": 1207 + }, + "ION/03_registry/maintained_work_surface.schema.json": { + "path": "ION/03_registry/maintained_work_surface.schema.json", + "sha256": "eaf43503cf599f04129fc5182ea85d4193654ebbab06a878db2cb94b6e037104", + "size": 729 + }, + "ION/03_registry/maintained_work_surface_canon.yaml": { + "path": "ION/03_registry/maintained_work_surface_canon.yaml", + "sha256": "0d4e27a0a7850a9e82793154ae44994416d0ede8ae9b3a9bb629e37060730cd3", + "size": 577 + }, + "ION/03_registry/mcp_full_carrier_tool_registry.yaml": { + "path": "ION/03_registry/mcp_full_carrier_tool_registry.yaml", + "sha256": "4fa0eda3db8f15391a3e480d3259c0f4530cb6363eccb0bbe88d176e872820c2", + "size": 6896 + }, + "ION/03_registry/model_capability_registry.yaml": { + "path": "ION/03_registry/model_capability_registry.yaml", + "sha256": "d8d8a41387a20dd2869d749d53f02e6b3edbde1bcafc6735c57dcdc881452d8b", + "size": 1775 + }, + "ION/03_registry/model_data_handling_registry.yaml": { + "path": "ION/03_registry/model_data_handling_registry.yaml", + "sha256": "80555161bcffdcd09865e5174eb33d7d75d967bfb76566d3afd09c028f64a9f3", + "size": 933 + }, + "ION/03_registry/model_economics_implementation_schedule.yaml": { + "path": "ION/03_registry/model_economics_implementation_schedule.yaml", + "sha256": "28c971f0e1827537ed04e074edbbba7b6a0ef317c7b948cf35495287c05ff9e8", + "size": 1452 + }, + "ION/03_registry/model_economics_registry_skeleton_report.schema.json": { + "path": "ION/03_registry/model_economics_registry_skeleton_report.schema.json", + "sha256": "236148eadc51c8f14de703b49ce02f93009e14af0aad2f3731627fc01368cc86", + "size": 733 + }, + "ION/03_registry/model_eval_score_registry.yaml": { + "path": "ION/03_registry/model_eval_score_registry.yaml", + "sha256": "7694d811cf795fdb38da73965d500626a0365cb4ea50a91f0a1e9d835a8b6599", + "size": 994 + }, + "ION/03_registry/model_pricing_registry.yaml": { + "path": "ION/03_registry/model_pricing_registry.yaml", + "sha256": "541f5d3795a1e9d0f73f9da1dc926b67fb1ee4493402871a6f6891af8dede8f3", + "size": 1092 + }, + "ION/03_registry/model_rate_limit_registry.yaml": { + "path": "ION/03_registry/model_rate_limit_registry.yaml", + "sha256": "db4651307e85474af4e4075bad1e4f6eae1f401951f6f412bca156665813376e", + "size": 1107 + }, + "ION/03_registry/model_route_decision.schema.json": { + "path": "ION/03_registry/model_route_decision.schema.json", + "sha256": "d19c7bb2be86e8e88df677fe20919b9adc049e374a5577babce67bbb29acd04e", + "size": 1116 + }, + "ION/03_registry/model_routing_policy.yaml": { + "path": "ION/03_registry/model_routing_policy.yaml", + "sha256": "32eda2b86fdfaf14fe8a7eef13cacb34ab4ba92a5f7e81f146142715a152ba59", + "size": 1704 + }, + "ION/03_registry/mounted_agent_identity.schema.json": { + "path": "ION/03_registry/mounted_agent_identity.schema.json", + "sha256": "c62e2047b74313528ccf07d3bef3df09aef571c853c77d8cf309b49e6045f2b4", + "size": 3002 + }, + "ION/03_registry/name_lineage_registry.yaml": { + "path": "ION/03_registry/name_lineage_registry.yaml", + "sha256": "941bb35979fc906d90e67753656313d44839ce1158cc6404013e54e16c9267ed", + "size": 5084 + }, + "ION/03_registry/provider_registry.yaml": { + "path": "ION/03_registry/provider_registry.yaml", + "sha256": "3501f7ef5beafe38af1259e8edec55af3fd3ae16daaef88e247f359da18a288b", + "size": 1661 + }, + "ION/03_registry/reintegration/README.md": { + "path": "ION/03_registry/reintegration/README.md", + "sha256": "6d3c1a886872b70f90714ddbc355167712a10d7f05d094c31935fffeed68642a", + "size": 1117 + }, + "ION/03_registry/reintegration/authority_registry.yaml": { + "path": "ION/03_registry/reintegration/authority_registry.yaml", + "sha256": "c74d1adf899a1a029a5c95c050d9dfdc3a2fe7bb55d8111391ed41d3538c0b66", + "size": 4895 + }, + "ION/03_registry/reintegration/canonicalization_queue.yaml": { + "path": "ION/03_registry/reintegration/canonicalization_queue.yaml", + "sha256": "ddd1ed26efaf41f2e010397023c83336d251f32ff92286e69c35c9e918afbec7", + "size": 6471 + }, + "ION/03_registry/reintegration/duplicate_competition_registry.yaml": { + "path": "ION/03_registry/reintegration/duplicate_competition_registry.yaml", + "sha256": "5cd21230f94357c77da60e7933cab610c0afeac40621c6d064a7cda897364fe5", + "size": 5675 + }, + "ION/03_registry/reintegration/lineage_registry.yaml": { + "path": "ION/03_registry/reintegration/lineage_registry.yaml", + "sha256": "e61cd244d9b41c078b2d0d13a0edf22406bb7b9537e5db1febc9cdc5d65eae4b", + "size": 2924 + }, + "ION/03_registry/reintegration/root_manifest.yaml": { + "path": "ION/03_registry/reintegration/root_manifest.yaml", + "sha256": "2946fcbb4f635f6abd329530e1e09feb8b24285aaa4461d6aae47c39aad0dc95", + "size": 3051 + }, + "ION/03_registry/retrieval_zone_registry.yaml": { + "path": "ION/03_registry/retrieval_zone_registry.yaml", + "sha256": "2ac3f0484fae2a06609ad639d0472c97af186fc2b9121501700598277ccd9dbc", + "size": 710 + }, + "ION/03_registry/runtime_identity_envelope.schema.json": { + "path": "ION/03_registry/runtime_identity_envelope.schema.json", + "sha256": "5e7b5e7a1363888add6c3171b2ac27ee5d0d07abf3a54121620a1210a485eba5", + "size": 3461 + }, + "ION/03_registry/self_documentation_watch_registry.yaml": { + "path": "ION/03_registry/self_documentation_watch_registry.yaml", + "sha256": "5cfe2d0ceff2baf45786856111288bde9ac87ca2fbf97898f00308beb3bcbcfe", + "size": 902 + }, + "ION/03_registry/self_mount_graph_integration.schema.json": { + "path": "ION/03_registry/self_mount_graph_integration.schema.json", + "sha256": "8ac2b37486ef42ed4781954e3f63cc92466c2803de4b5f91321dd8705af38783", + "size": 734 + }, + "ION/03_registry/self_surface_drift_gate.schema.json": { + "path": "ION/03_registry/self_surface_drift_gate.schema.json", + "sha256": "18b563d3d681a228441bbe0530cd0d8719ecd611a0b983e984688033ab8c2713", + "size": 831 + }, + "ION/03_registry/semantic_identities/CANON_LIBRARIAN.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/CANON_LIBRARIAN.semantic.yaml", + "sha256": "8b51b0d33a071ea2c062b2fdee3a98b50a848649e7e0a0391f73ebada6c05bcc", + "size": 606 + }, + "ION/03_registry/semantic_identities/CODEX.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/CODEX.semantic.yaml", + "sha256": "f73507c6cd183ed4c8698f24aaab88518e2a38b9f34f887e87d078fb25a24ac1", + "size": 956 + }, + "ION/03_registry/semantic_identities/CONTEXT_CARTOGRAPHER.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/CONTEXT_CARTOGRAPHER.semantic.yaml", + "sha256": "bc24f343644c58b6485aa76edab855e3fce8e359607bdcb032abe2f70c0772e0", + "size": 607 + }, + "ION/03_registry/semantic_identities/IONOLOGIST.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/IONOLOGIST.semantic.yaml", + "sha256": "2586e62a6d75e0c4af86530ae241dbf6f99dd17dd137722846a80c99d6852e9a", + "size": 548 + }, + "ION/03_registry/semantic_identities/NEMESIS.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/NEMESIS.semantic.yaml", + "sha256": "526aee20b0bcfaf3be7a082e904fbcad2efa44d7067860fe3f36ce5f2818f099", + "size": 748 + }, + "ION/03_registry/semantic_identities/PERSONA_INTERFACE.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/PERSONA_INTERFACE.semantic.yaml", + "sha256": "4db7a83a4412cdae381a82ce34bfe8207c66cf01f07149df4f60428d0ca2f499", + "size": 1876 + }, + "ION/03_registry/semantic_identities/README.md": { + "path": "ION/03_registry/semantic_identities/README.md", + "sha256": "326640e0ce96c75b3b36ee56e8528b016a29b031e538f0b4de25dc2bbfa516e2", + "size": 1655 + }, + "ION/03_registry/semantic_identities/RELAY.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/RELAY.semantic.yaml", + "sha256": "3a0d84ebd4ec6806a30572bb6271c56b4cde26df0418eb1758085c174d5fc1a2", + "size": 1494 + }, + "ION/03_registry/semantic_identities/RUNTIME_CARTOGRAPHER.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/RUNTIME_CARTOGRAPHER.semantic.yaml", + "sha256": "417fd37108655b40666fb5160db6d1ddcc8580404c1df7aa2197e844a002b8e0", + "size": 596 + }, + "ION/03_registry/semantic_identities/STEWARD.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/STEWARD.semantic.yaml", + "sha256": "e2e108df8d85cec98d5aa41857ec32c077f4aa02d9356d49bb6a9d181f7d218a", + "size": 1012 + }, + "ION/03_registry/semantic_identities/TEMPLATE_CURATOR.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/TEMPLATE_CURATOR.semantic.yaml", + "sha256": "1b51853e623539889ca37dc0e32a123b87b0bad3c8c2d88f4525b8bcce2de66f", + "size": 580 + }, + "ION/03_registry/semantic_identities/VESTIGE.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/VESTIGE.semantic.yaml", + "sha256": "7f140c2ba1b9884fa89922747608dc787caf46aa9dd83631193b3e11e5466b60", + "size": 1542 + }, + "ION/03_registry/semantic_identities/VICE.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/VICE.semantic.yaml", + "sha256": "cb4d98ea8952adc49352fdc160f7d73f64d1d9c18a806bdac4be1dec67d8f61a", + "size": 802 + }, + "ION/03_registry/semantic_identities/VIZIER.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/VIZIER.semantic.yaml", + "sha256": "cf88ff9874297ea3d6711457d0d79f7edd31f366202de077fb55f356bbdfc2aa", + "size": 859 + }, + "ION/03_registry/system_card_registry.yaml": { + "path": "ION/03_registry/system_card_registry.yaml", + "sha256": "a20ae802b53c861defb6f8184d9b91c73089b911e9fc9b61f346a985162bd39b", + "size": 1106 + }, + "ION/03_registry/template_completion_watch_registry.yaml": { + "path": "ION/03_registry/template_completion_watch_registry.yaml", + "sha256": "c1776611dc8fefc5451a273ba0a7d8473a26b7bd7478f3f9a6e74ea30508fae9", + "size": 2897 + }, + "ION/03_registry/template_metadata_contract_registry.projection.json": { + "path": "ION/03_registry/template_metadata_contract_registry.projection.json", + "sha256": "b13a7f5b32491bdb22f7624e1641d1131611a5d35934453b3136cfd63e2df17c", + "size": 12036 + }, + "ION/03_registry/template_metadata_contract_registry.yaml": { + "path": "ION/03_registry/template_metadata_contract_registry.yaml", + "sha256": "e30d7d216446900cfd285f9b375f97b0e325b87ad2f41ac29a38f9165040f71e", + "size": 8625 + }, + "ION/03_registry/ui_work_surface_projection.schema.json": { + "path": "ION/03_registry/ui_work_surface_projection.schema.json", + "sha256": "d4ce814cdb742c0e55e3893a52474226130f276e1410b9370d1239ed3fddd449", + "size": 1768 + }, + "ION/03_registry/ui_work_surface_projection_policy.yaml": { + "path": "ION/03_registry/ui_work_surface_projection_policy.yaml", + "sha256": "a34efc3e6b305b584824b4d139d9d1c0a4ee475ad65e42eaf7689f5d54bcecd8", + "size": 1436 + }, + "ION/03_registry/visual_before_after_verification.schema.json": { + "path": "ION/03_registry/visual_before_after_verification.schema.json", + "sha256": "5464676ee555a10260969c2fad3e6b6768bb5ebdb092ed59f9c41f2933db6035", + "size": 821 + }, + "ION/03_registry/visual_before_after_verification_policy.yaml": { + "path": "ION/03_registry/visual_before_after_verification_policy.yaml", + "sha256": "5df63033d2adc1e4aa11e73b5c76934155e476ddeabc907be62c71de31f1ed9e", + "size": 565 + }, + "ION/03_registry/visual_browser_harness_plan.schema.json": { + "path": "ION/03_registry/visual_browser_harness_plan.schema.json", + "sha256": "0951c0cd1d54a15ab7aa17fd6ca1bc28257a6ac874231884f7e60f0cadd3aab0", + "size": 766 + }, + "ION/03_registry/visual_closure_graph_projection.schema.json": { + "path": "ION/03_registry/visual_closure_graph_projection.schema.json", + "sha256": "ba3e5297124ca3adc6c2b0171cb0567015bc34fd72422fc88a8e9fd171cd0ffd", + "size": 829 + }, + "ION/03_registry/visual_closure_graph_projection_policy.yaml": { + "path": "ION/03_registry/visual_closure_graph_projection_policy.yaml", + "sha256": "6c904267385d5b2618ceef76de60c3e004454495f4f72d582958176e919b80cb", + "size": 656 + }, + "ION/03_registry/visual_diagnosis_policy.yaml": { + "path": "ION/03_registry/visual_diagnosis_policy.yaml", + "sha256": "68566fe5427c5cedfd6d963f7c6df0b5780f7f06d269e1e7db282aee86bdf8ef", + "size": 861 + }, + "ION/03_registry/visual_diagnosis_receipt.schema.json": { + "path": "ION/03_registry/visual_diagnosis_receipt.schema.json", + "sha256": "11849d4bc4a190a8ef26541f33793adc287f07c84e7b4b55d8f7958b731652f0", + "size": 1216 + }, + "ION/03_registry/visual_fixture_runner_sandbox_review.schema.json": { + "path": "ION/03_registry/visual_fixture_runner_sandbox_review.schema.json", + "sha256": "1c287dce5ceb0a6be4e00a4998e444f1b05cd3cc71e94a2187c1868b0d8501e2", + "size": 2656 + }, + "ION/03_registry/visual_fixture_runner_sandbox_review_policy.yaml": { + "path": "ION/03_registry/visual_fixture_runner_sandbox_review_policy.yaml", + "sha256": "0187a37c773cc7e5231167abc4a1ed9bb56c46df57d4a2c97436154ea5e7e650", + "size": 842 + }, + "ION/03_registry/visual_observation_packet.schema.json": { + "path": "ION/03_registry/visual_observation_packet.schema.json", + "sha256": "53148dbeebf230943c7fa0a59b34085b475277b83c1cc4db58f645fa4003ae54", + "size": 632 + }, + "ION/03_registry/visual_observation_policy.yaml": { + "path": "ION/03_registry/visual_observation_policy.yaml", + "sha256": "37b42cfc3e83372cf1e243a3491611cf7fabfeea4a3b60fc5bd351aadeb32b83", + "size": 494 + }, + "ION/03_registry/visual_perception_agent_policy.yaml": { + "path": "ION/03_registry/visual_perception_agent_policy.yaml", + "sha256": "b4cc2f611e9d6387cee37b5c24977a97af4e2d565c134d38a39434fe5cba3fd3", + "size": 579 + }, + "ION/03_registry/visual_regression_fixture_runner.schema.json": { + "path": "ION/03_registry/visual_regression_fixture_runner.schema.json", + "sha256": "1b3ecd00e98eb2011062ccb088053d215796630b5c501c76442ac52bc715c412", + "size": 1220 + }, + "ION/03_registry/visual_regression_fixture_runner_policy.yaml": { + "path": "ION/03_registry/visual_regression_fixture_runner_policy.yaml", + "sha256": "1324f73484b06ff2eb6b9ee1b3a4470553d94723c6cb7b03acbac69ff640ed09", + "size": 931 + }, + "ION/03_registry/visual_run_receipt_to_diagnosis_binding.schema.json": { + "path": "ION/03_registry/visual_run_receipt_to_diagnosis_binding.schema.json", + "sha256": "b1c6b286d15b84b7032366f8b820e27a58711046876c3ca627db681f353b16c0", + "size": 1216 + }, + "ION/03_registry/visual_run_receipt_to_diagnosis_binding_policy.yaml": { + "path": "ION/03_registry/visual_run_receipt_to_diagnosis_binding_policy.yaml", + "sha256": "658e5242adbb4701432baeef1e7122f9b6911d9d39d12bc9d5d07076e9174612", + "size": 797 + }, + "ION/03_registry/work_class_model_policy.yaml": { + "path": "ION/03_registry/work_class_model_policy.yaml", + "sha256": "60ffc803af7b04cd0361ae752d0b4f9757e24604f4c73b7be35480decd38443b", + "size": 5554 + }, + "ION/04_agents/AGENT_LIFECYCLE_PROTOCOL.md": { + "path": "ION/04_agents/AGENT_LIFECYCLE_PROTOCOL.md", + "sha256": "d2ec549057a7838c74f249fac6659c42e293c54194daf7eaaefe3a3e6138f216", + "size": 750 + }, + "ION/04_agents/AGENT_SPAWN_PROTOCOL.md": { + "path": "ION/04_agents/AGENT_SPAWN_PROTOCOL.md", + "sha256": "2d4feef1060ea7d23f61669ead4b366a16540e1120fa093ec7fff5570031a01d", + "size": 1203 + }, + "ION/04_agents/carriers/CARRIER_AGENT.boot.md": { + "path": "ION/04_agents/carriers/CARRIER_AGENT.boot.md", + "sha256": "99d78ccfa005c47dc2b646e512494ddcabcc572f54a4672b2b8ead25a690be0a", + "size": 5793 + }, + "ION/04_agents/carriers/CARRIER_SESSION_PROTOCOL.md": { + "path": "ION/04_agents/carriers/CARRIER_SESSION_PROTOCOL.md", + "sha256": "900e779b9a2c87398f587e0e9c8df5105f2091b147967c80c06b7efd09be3db6", + "size": 1008 + }, + "ION/04_agents/carriers/CHATGPT_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CHATGPT_CARRIER.profile.md", + "sha256": "389971660756c2ed1c346be8a914f4cda5e342746f8ece81ec6df33b819e4303", + "size": 894 + }, + "ION/04_agents/carriers/CLAUDE_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CLAUDE_CARRIER.profile.md", + "sha256": "3e59a001898c36474f8701f087669cf11b899a948f062a330cbb4de6617cb4e1", + "size": 516 + }, + "ION/04_agents/carriers/CODEX_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CODEX_CARRIER.profile.md", + "sha256": "22b8c68fe3b507a3359387bc8d2976a61ae31547b5b823f846418ec2915897a7", + "size": 672 + }, + "ION/04_agents/carriers/CURSOR_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CURSOR_CARRIER.profile.md", + "sha256": "9ce358955dd94d2fd6f3e7209b144d8a38d6a01257d6b81ef4505ef8746e9717", + "size": 1422 + }, + "ION/04_agents/carriers/GEMINI_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/GEMINI_CARRIER.profile.md", + "sha256": "f9eb9599ac7071cee5ccb927a3e841a7903aa29fd5c01886438b30ab9915134e", + "size": 478 + }, + "ION/04_agents/carriers/MANUAL_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/MANUAL_CARRIER.profile.md", + "sha256": "17f73c48426e54058d7497bf13388344c69c9cf1289f2812482f042462644b5e", + "size": 1202 + }, + "ION/04_agents/carriers/MCP_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/MCP_CARRIER.profile.md", + "sha256": "1e71a3d10b013e0ea31851aadcdcbb56cf6cb096144310f0cb553b1d18bf18cc", + "size": 594 + }, + "ION/04_agents/carriers/META_CARRIER_EVOLUTION_PROTOCOL.md": { + "path": "ION/04_agents/carriers/META_CARRIER_EVOLUTION_PROTOCOL.md", + "sha256": "eac2daf82dff6369343cc5a142257bdda36494f6e13119b36bc0a6a6a42b39e5", + "size": 2208 + }, + "ION/04_agents/carriers/carrier_registry.json": { + "path": "ION/04_agents/carriers/carrier_registry.json", + "sha256": "4b01f008e0a0f0ce0aeca29658e5f9520ae0294b23f4f79bdac7e26f4d9c30c1", + "size": 4882 + }, + "ION/04_packages/README.md": { + "path": "ION/04_packages/README.md", + "sha256": "e89454044c5ce169c1b2a7da5f6ffd53d22294d2b0a61bca61f48dc557cae431", + "size": 1029 + }, + "ION/04_packages/__init__.py": { + "path": "ION/04_packages/__init__.py", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/04_packages/ion_kernel.egg-info/PKG-INFO": { + "path": "ION/04_packages/ion_kernel.egg-info/PKG-INFO", + "sha256": "c9784e3e8f2d6dea32558f6faf5487f264518dd8b7f9b1dd9e17b009763bf1fb", + "size": 42832 + }, + "ION/04_packages/ion_kernel.egg-info/SOURCES.txt": { + "path": "ION/04_packages/ion_kernel.egg-info/SOURCES.txt", + "sha256": "a5a44bcf58064a4858ec7e580bfd28d81b41f111834fc25307cc119ce333453a", + "size": 5101 + }, + "ION/04_packages/ion_kernel.egg-info/dependency_links.txt": { + "path": "ION/04_packages/ion_kernel.egg-info/dependency_links.txt", + "sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "size": 1 + }, + "ION/04_packages/ion_kernel.egg-info/top_level.txt": { + "path": "ION/04_packages/ion_kernel.egg-info/top_level.txt", + "sha256": "a0c936696eb7d5ee3192bf53b9d281cecbb40ca9db520de72cb95817ad92ac72", + "size": 7 + }, + "ION/04_packages/kernel/TEMPORAL_IMPLEMENTATION_STARTER_README.md": { + "path": "ION/04_packages/kernel/TEMPORAL_IMPLEMENTATION_STARTER_README.md", + "sha256": "bbec69026c4d57bf74a1ddd7a7c13eeab01b55cc56e0eabba494ca5597f82efc", + "size": 717 + }, + "ION/04_packages/kernel/TEMPORAL_KERNEL_MODULE_PLAN.md": { + "path": "ION/04_packages/kernel/TEMPORAL_KERNEL_MODULE_PLAN.md", + "sha256": "e8759550753a84bbc6eb4e1698f3a5c665f523acd94c3be1330d1af36ae3b02a", + "size": 862 + }, + "ION/04_packages/kernel/__init__.py": { + "path": "ION/04_packages/kernel/__init__.py", + "sha256": "beeaba35926705a0dee05840568fdfd1ab0aa8779ff66ac93dfcfe939d9e4fa5", + "size": 61174 + }, + "ION/04_packages/kernel/__main__.py": { + "path": "ION/04_packages/kernel/__main__.py", + "sha256": "3e23cc2d94b82c5e36c462d0c2f04cc7887137a14aadd88427beaad9ad4bfc4b", + "size": 148 + }, + "ION/04_packages/kernel/__pycache__/ion_agent_invocation_broker.cpython-313.pyc": { + "path": "ION/04_packages/kernel/__pycache__/ion_agent_invocation_broker.cpython-313.pyc", + "sha256": "4108e26a99fb49d44e19cb8d9070bdf1ea0b3191a3cb8d203dcc05dce53bf870", + "size": 48677 + }, + "ION/04_packages/kernel/__pycache__/ion_chatops_bridge.cpython-313.pyc": { + "path": "ION/04_packages/kernel/__pycache__/ion_chatops_bridge.cpython-313.pyc", + "sha256": "0868fd0531e66a628793d4b371a7f34c515d3d0acc23f60cbc5be9eb0f61448f", + "size": 65169 + }, + "ION/04_packages/kernel/__pycache__/ion_github_commit_proposal_receipt.cpython-313.pyc": { + "path": "ION/04_packages/kernel/__pycache__/ion_github_commit_proposal_receipt.cpython-313.pyc", + "sha256": "8b3cb6870893d8f9adc79dc7eee9e45294e1917df225f4da300b96d2d1084aef", + "size": 20087 + }, + "ION/04_packages/kernel/agent_self_surface.py": { + "path": "ION/04_packages/kernel/agent_self_surface.py", + "sha256": "85d1a565c2f8e3e20d8a3d16fa90eb23275807ec58a01d250c953da2e110217d", + "size": 10723 + }, + "ION/04_packages/kernel/agent_succession_packet.py": { + "path": "ION/04_packages/kernel/agent_succession_packet.py", + "sha256": "84466d1c9d86b1311321423a05f1d853a4f944e6447a5e9a2f171dda57ed4275", + "size": 9647 + }, + "ION/04_packages/kernel/allocator.py": { + "path": "ION/04_packages/kernel/allocator.py", + "sha256": "ee427c376649fc830fa830fb59ec42712459c0181452e1a90f11dd4a185bd23e", + "size": 22974 + }, + "ION/04_packages/kernel/api_rate_governor.py": { + "path": "ION/04_packages/kernel/api_rate_governor.py", + "sha256": "3d1f57eee671c549cd3a08e2269e8737e2e8f59a86eef2182747fbaed98c91ac", + "size": 10262 + }, + "ION/04_packages/kernel/api_runtime_entry.py": { + "path": "ION/04_packages/kernel/api_runtime_entry.py", + "sha256": "59fa6208ccd028b60193e0b5a73183789c9a587efa1275e949c90cf0f1a1e09e", + "size": 15257 + }, + "ION/04_packages/kernel/authority_lineage.py": { + "path": "ION/04_packages/kernel/authority_lineage.py", + "sha256": "a1374d3dc17159784fd85e3cf342f622c41c2c9fa580f088677d690efa3d8d6a", + "size": 21255 + }, + "ION/04_packages/kernel/automation_policy.py": { + "path": "ION/04_packages/kernel/automation_policy.py", + "sha256": "7b9492177aea2120dfb74d1224de33730f6053ca51b131b2a30013f2a7b4f130", + "size": 7650 + }, + "ION/04_packages/kernel/automation_state.py": { + "path": "ION/04_packages/kernel/automation_state.py", + "sha256": "8fe6cbc967fe3abdd0af923419fd02d62cd6b6574c149a2b12b87327bfee3229", + "size": 9491 + }, + "ION/04_packages/kernel/bootstrap_activation.py": { + "path": "ION/04_packages/kernel/bootstrap_activation.py", + "sha256": "7eced73bd7172d297e768068ae45355873b97cbe4d6cc9d778a9177362a65fcc", + "size": 8865 + }, + "ION/04_packages/kernel/bootstrap_bridge.py": { + "path": "ION/04_packages/kernel/bootstrap_bridge.py", + "sha256": "4251491ec2022a3aa41b0c53a9362d26338d4e8ba75060243576e07a22cf5c1e", + "size": 12646 + }, + "ION/04_packages/kernel/bootstrap_init.py": { + "path": "ION/04_packages/kernel/bootstrap_init.py", + "sha256": "61eeb38bec85f719f3cf96f7c15ab8795dd374f6d3644bbb1bfe9f450cdf4eab", + "size": 13934 + }, + "ION/04_packages/kernel/branch_consolidation_ui_model_governor_binding.py": { + "path": "ION/04_packages/kernel/branch_consolidation_ui_model_governor_binding.py", + "sha256": "a97b7a94325146cfe7362d3d5f0dbf07e13fb4d674893f8e39ddaebed2582e8c", + "size": 10254 + }, + "ION/04_packages/kernel/branch_controls.py": { + "path": "ION/04_packages/kernel/branch_controls.py", + "sha256": "b06ffd0c0320a15328539c74f3fbec1d5e210bdbe53584ed54829af5b0be98dc", + "size": 16402 + }, + "ION/04_packages/kernel/branch_horizon_sync.py": { + "path": "ION/04_packages/kernel/branch_horizon_sync.py", + "sha256": "43cacfcc9d77d4fbaaa2d11733d9d8a674353af351c28fc234e498c38bcf9153", + "size": 22241 + }, + "ION/04_packages/kernel/branch_rescheduling.py": { + "path": "ION/04_packages/kernel/branch_rescheduling.py", + "sha256": "68122868af9f50a8cf222584c25a2daeb7948ea0da75eb48ad71f7c11e862fd8", + "size": 10934 + }, + "ION/04_packages/kernel/budget_governor.py": { + "path": "ION/04_packages/kernel/budget_governor.py", + "sha256": "8ca184525acb7c20748127f15532ca197613662f4c94c73dd2d7cc184d1640fb", + "size": 11531 + }, + "ION/04_packages/kernel/capsule_manager.py": { + "path": "ION/04_packages/kernel/capsule_manager.py", + "sha256": "8252de02b99602ed7b4c2ab867c75f0d8bb088e39119ce80fadf39cf83245a10", + "size": 15722 + }, + "ION/04_packages/kernel/carrier_mount.py": { + "path": "ION/04_packages/kernel/carrier_mount.py", + "sha256": "3adae77aa19ed5556f0db62ea8eeba19f9a5c4a63a1a424e68dddca3e3e428a7", + "size": 5556 + }, + "ION/04_packages/kernel/child_work_service.py": { + "path": "ION/04_packages/kernel/child_work_service.py", + "sha256": "e9cbdbb4638be7c67dc9597d8dfe7c82acd3165ca75dfea5224fd5ff4f068613", + "size": 22746 + }, + "ION/04_packages/kernel/children.py": { + "path": "ION/04_packages/kernel/children.py", + "sha256": "1eebcdff40573c759247da8d521f4780a44427472f89914b068ca41914834ba1", + "size": 17275 + }, + "ION/04_packages/kernel/commit.py": { + "path": "ION/04_packages/kernel/commit.py", + "sha256": "b6eda6cfc3acd6d037501fb5163d3e3a485c5e38a8389d556e01eb04103ca0fc", + "size": 10819 + }, + "ION/04_packages/kernel/context_compiler.py": { + "path": "ION/04_packages/kernel/context_compiler.py", + "sha256": "bf80459c66d4741df9342836b44ad7729809704025792e894c78b2f0cb8be842", + "size": 16840 + }, + "ION/04_packages/kernel/context_graph_ontology_adapter.py": { + "path": "ION/04_packages/kernel/context_graph_ontology_adapter.py", + "sha256": "5e6e1290d32c53249ed2bd6da70a1640bf5150f0b1cde9b9c134b7902d08ae1c", + "size": 8012 + }, + "ION/04_packages/kernel/continuation.py": { + "path": "ION/04_packages/kernel/continuation.py", + "sha256": "b6bc8f68b78fa23333b9f5de3f690f29b75b3e609b5f29e9f2d30a8299f97cb3", + "size": 16566 + }, + "ION/04_packages/kernel/contract_bound_event_runtime.py": { + "path": "ION/04_packages/kernel/contract_bound_event_runtime.py", + "sha256": "7f0d08193a3c704e5e771665f5f236c9888779abea615aec6cc872e7781acfc9", + "size": 5708 + }, + "ION/04_packages/kernel/conversational_receipt.py": { + "path": "ION/04_packages/kernel/conversational_receipt.py", + "sha256": "017c3efaee7faa7b768ff41f9309c15e27ad54ca472a31f33337579194654b6c", + "size": 9291 + }, + "ION/04_packages/kernel/cost_quality_router.py": { + "path": "ION/04_packages/kernel/cost_quality_router.py", + "sha256": "94a2e03d6a3d8f0100229e0dc5c7d5b7516574c60a1f381090c76cfa41431085", + "size": 667 + }, + "ION/04_packages/kernel/cursor_subagent_ion_role_registry.py": { + "path": "ION/04_packages/kernel/cursor_subagent_ion_role_registry.py", + "sha256": "8def1a8a1d755680649d7598729e52493f7da43283b1febfb21d983eb3327160", + "size": 2163 + }, + "ION/04_packages/kernel/daemon.py": { + "path": "ION/04_packages/kernel/daemon.py", + "sha256": "30b7f1c25c91773efffb3ed48eed3325d4980a45009970f1943401e889612973", + "size": 22306 + }, + "ION/04_packages/kernel/daemon_actions.py": { + "path": "ION/04_packages/kernel/daemon_actions.py", + "sha256": "e9c56e285a9457bdf72de33575fe5db83c19bd16b11dccd2276893cdec7fd185", + "size": 19328 + }, + "ION/04_packages/kernel/daemon_loop.py": { + "path": "ION/04_packages/kernel/daemon_loop.py", + "sha256": "b00ab14e0da509ef684d398a5da0b7f86ea2ba8ac60ae1afd53c0a7c7b60b684", + "size": 13932 + }, + "ION/04_packages/kernel/daemon_service.py": { + "path": "ION/04_packages/kernel/daemon_service.py", + "sha256": "d4a650bb95040ee0415fa8c16c58e989f14caf4c343e5b9cd01958e81387747c", + "size": 16764 + }, + "ION/04_packages/kernel/dispatch.py": { + "path": "ION/04_packages/kernel/dispatch.py", + "sha256": "9f9319474c216fa2ccb10f34d506b44a14687bac9d78fb93859e9d442e105e0e", + "size": 9325 + }, + "ION/04_packages/kernel/equivalence.py": { + "path": "ION/04_packages/kernel/equivalence.py", + "sha256": "944bd851f52736bdad943e03f0567a860e300431d7781bf82b5fa5eaa9b058c0", + "size": 14231 + }, + "ION/04_packages/kernel/execution.py": { + "path": "ION/04_packages/kernel/execution.py", + "sha256": "b6d88531bc4d0b99a65a2ce63b263c63b19720c7a7b3b6ae66d3052d0d852f14", + "size": 7510 + }, + "ION/04_packages/kernel/executor_registry.py": { + "path": "ION/04_packages/kernel/executor_registry.py", + "sha256": "1696df7e54c6ea177990cc98e222c91244db86ca08d39bfa71871b48e6fff96d", + "size": 12438 + }, + "ION/04_packages/kernel/expressive_telemetry.py": { + "path": "ION/04_packages/kernel/expressive_telemetry.py", + "sha256": "c681f34e07f9c8f4b6ddf06f0da3ec27391082be61109f96154cba5601ce9254", + "size": 8684 + }, + "ION/04_packages/kernel/external_execution_bridge.py": { + "path": "ION/04_packages/kernel/external_execution_bridge.py", + "sha256": "f975e30b2eff2e698ab4d00b5cd2080d9d8d373c1131f55d0550f0eae9b89ac6", + "size": 25335 + }, + "ION/04_packages/kernel/fleet_executor_capability_binding.py": { + "path": "ION/04_packages/kernel/fleet_executor_capability_binding.py", + "sha256": "37f937a7d82abdc4179a667b5c6b39b99688969ea6e6250c877cbf50de03787d", + "size": 5541 + }, + "ION/04_packages/kernel/fleet_executor_work_closure_binding.py": { + "path": "ION/04_packages/kernel/fleet_executor_work_closure_binding.py", + "sha256": "cebe74af21fe470fc7352ddb1b7209ae273215db343d8d1e6d74eed8eef96548", + "size": 14241 + }, + "ION/04_packages/kernel/fleet_executor_work_lifecycle_binding.py": { + "path": "ION/04_packages/kernel/fleet_executor_work_lifecycle_binding.py", + "sha256": "009fc7e2fa1df22fbd56c41c44583cd6156e87b2352c01a40997b6ad0fa7c146", + "size": 10030 + }, + "ION/04_packages/kernel/fleet_lifecycle_store.py": { + "path": "ION/04_packages/kernel/fleet_lifecycle_store.py", + "sha256": "1310d430ccaeca42bb5f05fc399708b07dc3e1da022d4962d7aba40a8837eba7", + "size": 12143 + }, + "ION/04_packages/kernel/front_door_chat_orchestration.py": { + "path": "ION/04_packages/kernel/front_door_chat_orchestration.py", + "sha256": "18c05072ae51b6aef3ec8fec32b9ef09411c57e006c0c7d24dc6398fba02e822", + "size": 15587 + }, + "ION/04_packages/kernel/front_door_runtime_entry.py": { + "path": "ION/04_packages/kernel/front_door_runtime_entry.py", + "sha256": "d3d0b4ce998d499d0f273c3db51bb9921493453780b3a0e4d8528a93a4408a5a", + "size": 17922 + }, + "ION/04_packages/kernel/front_door_self_mount_binding.py": { + "path": "ION/04_packages/kernel/front_door_self_mount_binding.py", + "sha256": "8fba4bacf07922bf8db82ab59cb272da8cfba3cf02f51d5a964a915d3d2992e1", + "size": 12798 + }, + "ION/04_packages/kernel/front_stage_council_receipt.py": { + "path": "ION/04_packages/kernel/front_stage_council_receipt.py", + "sha256": "8e72b87c97243fbd95561cd9b289f5937b149940cfef57f5fa99b8a5a1e496c0", + "size": 13980 + }, + "ION/04_packages/kernel/governed_write.py": { + "path": "ION/04_packages/kernel/governed_write.py", + "sha256": "9318da75d82aec091c079488895417d69b4ffe366b1a2b69856d15109fedc141", + "size": 9834 + }, + "ION/04_packages/kernel/graph.py": { + "path": "ION/04_packages/kernel/graph.py", + "sha256": "2c504576d449285fb27a0b0912c6468bb8701f0edbcede8aaac2619a72da929a", + "size": 19252 + }, + "ION/04_packages/kernel/horizon_state.py": { + "path": "ION/04_packages/kernel/horizon_state.py", + "sha256": "f858478591af314cbd740d980e85365decfdc4f5095e50cb4d9204fdfacf4b87", + "size": 35311 + }, + "ION/04_packages/kernel/id_compaction.py": { + "path": "ION/04_packages/kernel/id_compaction.py", + "sha256": "2bf596c206ea9244697057483e8b4b5b76a449c77b687e4d96ea1a7d4c6072be", + "size": 1053 + }, + "ION/04_packages/kernel/index.py": { + "path": "ION/04_packages/kernel/index.py", + "sha256": "a04d2ac1042e91d32117cd0baacd3bf0113d4a7c339d09bff7808b1a5d3cd0ca", + "size": 90481 + }, + "ION/04_packages/kernel/ion_active_state_integrity_audit.py": { + "path": "ION/04_packages/kernel/ion_active_state_integrity_audit.py", + "sha256": "89ba9d82d3f32a87ac0e279e0e3c8f88199f37eafb6d03b10ac5615915564423", + "size": 4764 + }, + "ION/04_packages/kernel/ion_agent_context_dynamics.py": { + "path": "ION/04_packages/kernel/ion_agent_context_dynamics.py", + "sha256": "a275587898f56574905cb93b7b374c13b4e491a04473c126c54939b8ecb97935", + "size": 33445 + }, + "ION/04_packages/kernel/ion_agent_context_system_audit.py": { + "path": "ION/04_packages/kernel/ion_agent_context_system_audit.py", + "sha256": "f51d81e47a794c0df16e4cce874a6f11f0b8e9d51bb4a3cd9e14e8df2c32a7c6", + "size": 3318 + }, + "ION/04_packages/kernel/ion_agent_context_systems.py": { + "path": "ION/04_packages/kernel/ion_agent_context_systems.py", + "sha256": "de9a8bf53ee6f3e32e8f71411c6c8e067cb7f274151f19834cd4842ca952ca5c", + "size": 7039 + }, + "ION/04_packages/kernel/ion_agent_invocation_broker.py": { + "path": "ION/04_packages/kernel/ion_agent_invocation_broker.py", + "sha256": "31d25ddc7c6c84b12e7978ed76e5503a98e0331531eca1ba3fd11a76029248a4", + "size": 40294 + }, + "ION/04_packages/kernel/ion_autonomous_loop.py": { + "path": "ION/04_packages/kernel/ion_autonomous_loop.py", + "sha256": "138fe55340586d58223b688df6e6dfec3aab2af80638c08a0fa74e88d8750837", + "size": 10462 + }, + "ION/04_packages/kernel/ion_carrier_continue.py": { + "path": "ION/04_packages/kernel/ion_carrier_continue.py", + "sha256": "761797140d37a38fd1ca2a3c2da5239a4e2e08169d825af9f50c9f01c05bb72f", + "size": 31575 + }, + "ION/04_packages/kernel/ion_carrier_onboard.py": { + "path": "ION/04_packages/kernel/ion_carrier_onboard.py", + "sha256": "caa6c594080f093688743c695b2e06d3f8d924768f61630765e3edbafa764683", + "size": 14233 + }, + "ION/04_packages/kernel/ion_carrier_onboarding_authority_audit.py": { + "path": "ION/04_packages/kernel/ion_carrier_onboarding_authority_audit.py", + "sha256": "0616fd8b3a8956a341ea171820519e996a4a235231b9194c64b0e04a78122b12", + "size": 10353 + }, + "ION/04_packages/kernel/ion_carrier_onboarding_packet.py": { + "path": "ION/04_packages/kernel/ion_carrier_onboarding_packet.py", + "sha256": "50693a547065f92623f891f06d9f64a26040164f5ea3224cd4edc85e5e034327", + "size": 13921 + }, + "ION/04_packages/kernel/ion_carrier_task_return.py": { + "path": "ION/04_packages/kernel/ion_carrier_task_return.py", + "sha256": "516e39db4f44d5aaf85023b7fa94713f8d2fb018597f01e86c6dc9c82f0e8a28", + "size": 16706 + }, + "ION/04_packages/kernel/ion_carrier_tick.py": { + "path": "ION/04_packages/kernel/ion_carrier_tick.py", + "sha256": "1b66936106b4380296b0c2c56f72944a8e8abcf494bd5fdb37b76ecaa7771cbf", + "size": 19279 + }, + "ION/04_packages/kernel/ion_carrier_workflow_audit.py": { + "path": "ION/04_packages/kernel/ion_carrier_workflow_audit.py", + "sha256": "3675ec5f600d57e6fdb8da9cb672a77d03f5a4b9ad3a4d41621c8b13e54ef9c2", + "size": 14913 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py", + "sha256": "055f0590ac8689ab5fd93d7a19de48c9302d31bb942e93e6fd9409711610a42f", + "size": 21666 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_legacy_tunnel_reuse_audit.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_legacy_tunnel_reuse_audit.py", + "sha256": "25df4c05f6a03d54bcfaf250b4c86c6371b2901f7250d1645d8582cf02b875d4", + "size": 12850 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py", + "sha256": "55576cfc878e83f3d743636007b85bfc16fad8b75359c4ceaa5f917940ff490f", + "size": 67488 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py", + "sha256": "ab6bbec7a77acde2bf505f3cc2fde83ad31bc22facc10b88722c219ca6215900", + "size": 23350 + }, + "ION/04_packages/kernel/ion_chatops_bridge.py": { + "path": "ION/04_packages/kernel/ion_chatops_bridge.py", + "sha256": "2d687564126af70cb79bc282e262d368f44c31a3923772bdf01257acf927d9f8", + "size": 57700 + }, + "ION/04_packages/kernel/ion_cockpit_view_model.py": { + "path": "ION/04_packages/kernel/ion_cockpit_view_model.py", + "sha256": "cdcabe13a1233cc3e5e19a7b2724225ab8964b18952aff896769bf5a8618808c", + "size": 23193 + }, + "ION/04_packages/kernel/ion_codex_cli_carrier_audit.py": { + "path": "ION/04_packages/kernel/ion_codex_cli_carrier_audit.py", + "sha256": "1dda350b85eb1c3d9be5d262779c4dde312498942707115e728a0ab769462b39", + "size": 7897 + }, + "ION/04_packages/kernel/ion_codex_extension_carrier_audit.py": { + "path": "ION/04_packages/kernel/ion_codex_extension_carrier_audit.py", + "sha256": "ee1d290d371af222102d2db2dd958ba4f3609ff19b50cdf2d82fe92ea2a02eca", + "size": 6335 + }, + "ION/04_packages/kernel/ion_codex_queue_runner.py": { + "path": "ION/04_packages/kernel/ion_codex_queue_runner.py", + "sha256": "09a4b2669c890d3d6f822e7607dcff6106d666f82d8ae378b0e802c6164fe545", + "size": 33733 + }, + "ION/04_packages/kernel/ion_compiled_role_context_bundle_audit.py": { + "path": "ION/04_packages/kernel/ion_compiled_role_context_bundle_audit.py", + "sha256": "e8396e7434142ed3f7ad689184ac670ae2415069febfedafa042182d484ea116", + "size": 4044 + }, + "ION/04_packages/kernel/ion_context_authority_team_audit.py": { + "path": "ION/04_packages/kernel/ion_context_authority_team_audit.py", + "sha256": "f41f730387e6339bb59026643356ee595e7791dcfc010270ca5ea58e82428f4e", + "size": 3419 + }, + "ION/04_packages/kernel/ion_context_lifecycle.py": { + "path": "ION/04_packages/kernel/ion_context_lifecycle.py", + "sha256": "da920b98694f7c1bfbe3d5361f516204308675433fd2c6a150b8944a55be98a4", + "size": 13398 + }, + "ION/04_packages/kernel/ion_context_proof_gate.py": { + "path": "ION/04_packages/kernel/ion_context_proof_gate.py", + "sha256": "7108450d7318cae42abae447137f2514b1040d54fe62df1770869287a3dba649", + "size": 5261 + }, + "ION/04_packages/kernel/ion_cursor_autopilot_audit.py": { + "path": "ION/04_packages/kernel/ion_cursor_autopilot_audit.py", + "sha256": "f0a4410199d966586dd1635f11f350a2111691e268bf0a0652665f6b4f046686", + "size": 3814 + }, + "ION/04_packages/kernel/ion_cursor_autopilot_packet.py": { + "path": "ION/04_packages/kernel/ion_cursor_autopilot_packet.py", + "sha256": "2e2778d8ee35b2211a95598b543e0d4f308589230f565a34c3e0526acc5be5c5", + "size": 8309 + }, + "ION/04_packages/kernel/ion_cursor_canonical_workflow_audit.py": { + "path": "ION/04_packages/kernel/ion_cursor_canonical_workflow_audit.py", + "sha256": "7adc7bb6f82dca2c3cdda6fb3607ff97f23eb06e9c78faca6d289ff2947de830", + "size": 5983 + }, + "ION/04_packages/kernel/ion_cursor_hook_state.py": { + "path": "ION/04_packages/kernel/ion_cursor_hook_state.py", + "sha256": "786eddfb152b9db3dfbe03665bedacdf8c26dbf5cbce62fdffcd589dc9f8d34f", + "size": 4576 + }, + "ION/04_packages/kernel/ion_cursor_hooks_audit.py": { + "path": "ION/04_packages/kernel/ion_cursor_hooks_audit.py", + "sha256": "48412b88ed27253619ee1f25c4c366f6844ecbc6144e5d42e62ef33a7c7941a4", + "size": 5421 + }, + "ION/04_packages/kernel/ion_cycle_runner.py": { + "path": "ION/04_packages/kernel/ion_cycle_runner.py", + "sha256": "3d38b76ce4f6e9eee6b9487571b546c3f0d7c8ae24fe2274c43986cbc23428c5", + "size": 33032 + }, + "ION/04_packages/kernel/ion_deep_operational_cartography.py": { + "path": "ION/04_packages/kernel/ion_deep_operational_cartography.py", + "sha256": "e4efc6292d4e41eda6b56e7061407c8f99dc97d89972f45bdfcb5d6f7e54ee52", + "size": 37371 + }, + "ION/04_packages/kernel/ion_front_door_proof_trace.py": { + "path": "ION/04_packages/kernel/ion_front_door_proof_trace.py", + "sha256": "0edd782ff99d2c70daff7e8e4f128fcaaea15917e62fd5e760987e7cf10a61b3", + "size": 19370 + }, + "ION/04_packages/kernel/ion_full_carrier_capability_audit.py": { + "path": "ION/04_packages/kernel/ion_full_carrier_capability_audit.py", + "sha256": "83463e637d5e9fbbf48d99a2025d216b29369da4239c4b0f2add9eb0e0d53135", + "size": 7869 + }, + "ION/04_packages/kernel/ion_github_commit_proposal_receipt.py": { + "path": "ION/04_packages/kernel/ion_github_commit_proposal_receipt.py", + "sha256": "657c43a4a063c7884ef6569b3e36ab1bded09bdfc6c230d3581028a6e5df223b", + "size": 14888 + }, + "ION/04_packages/kernel/ion_github_data_plane_audit.py": { + "path": "ION/04_packages/kernel/ion_github_data_plane_audit.py", + "sha256": "944a211d9948d989311a9a1ffa35a322348f6f5b00de5a3d6ca7ce63a1ff8d3d", + "size": 15130 + }, + "ION/04_packages/kernel/ion_human_gate_queue.py": { + "path": "ION/04_packages/kernel/ion_human_gate_queue.py", + "sha256": "1a9cab1b45b33a9930a038f13b236e2ffcd8a2f0316baaa207ff9870ade02e12", + "size": 6490 + }, + "ION/04_packages/kernel/ion_lane_timeline_view_model.py": { + "path": "ION/04_packages/kernel/ion_lane_timeline_view_model.py", + "sha256": "ed780aeecf8c4a9dfaf4b334ad15d1a48d0af034692535c884f1111445952f08", + "size": 19402 + }, + "ION/04_packages/kernel/ion_lifecycle_packager.py": { + "path": "ION/04_packages/kernel/ion_lifecycle_packager.py", + "sha256": "b13495ccbcc99ed6e1bc68aadf429a9714d98bb9e73743b5d175c92524b5bb33", + "size": 21149 + }, + "ION/04_packages/kernel/ion_mcp_bridge_audit.py": { + "path": "ION/04_packages/kernel/ion_mcp_bridge_audit.py", + "sha256": "af7289b230f58f7205aa15bf3788d0483ad05e1235f9f87dd02420320bc830c8", + "size": 4284 + }, + "ION/04_packages/kernel/ion_mcp_client_certification.py": { + "path": "ION/04_packages/kernel/ion_mcp_client_certification.py", + "sha256": "6c4350f2d00f25b978d82c7745503efe814d0657821b5165fba6d2eaddd4a4d1", + "size": 13492 + }, + "ION/04_packages/kernel/ion_mcp_client_configs.py": { + "path": "ION/04_packages/kernel/ion_mcp_client_configs.py", + "sha256": "8bcfbab9886c05a849061045c7c0b8947a1b6562cc54c5edece1fc7f86c676f2", + "size": 6600 + }, + "ION/04_packages/kernel/ion_mcp_hosted_auth_alpha.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_auth_alpha.py", + "sha256": "bc2775e22118af2ed71d13b583d5166c8bd50474bc2bd9ea523b6d7a00e0d878", + "size": 20268 + }, + "ION/04_packages/kernel/ion_mcp_hosted_bundle_replay_alpha.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_bundle_replay_alpha.py", + "sha256": "88ffbf679737eefc88c1007603699e8892b92706e0113b0a63c61515b963d1b6", + "size": 20158 + }, + "ION/04_packages/kernel/ion_mcp_hosted_oauth_http_preview.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_oauth_http_preview.py", + "sha256": "30f7b4236677db10f9280a015b65713912af22452f265f2d453d9c742e064b5d", + "size": 24702 + }, + "ION/04_packages/kernel/ion_mcp_hosted_storage_receipt_ledger_alpha.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_storage_receipt_ledger_alpha.py", + "sha256": "68203340abef0e0bd80f4eea0683eb5dba532e96226dba79ff0494d65553a089", + "size": 20101 + }, + "ION/04_packages/kernel/ion_mcp_local_bridge.py": { + "path": "ION/04_packages/kernel/ion_mcp_local_bridge.py", + "sha256": "98792293a9df4f60e3de7d8119b6018773133857a891295f746f2ef06885fabd", + "size": 40374 + }, + "ION/04_packages/kernel/ion_mcp_local_bridge_smoke.py": { + "path": "ION/04_packages/kernel/ion_mcp_local_bridge_smoke.py", + "sha256": "ae0c9380b5307666808f0b3032be25a51d712576b80ebc435824c7ebaba06c63", + "size": 9594 + }, + "ION/04_packages/kernel/ion_mcp_sdk_wrapper_boundary.py": { + "path": "ION/04_packages/kernel/ion_mcp_sdk_wrapper_boundary.py", + "sha256": "3168ccf2bbc656e83e39d82194ade5c3d774ccb9d75bd8dbaf80be9e42c3c306", + "size": 16820 + }, + "ION/04_packages/kernel/ion_mcp_transport_preview.py": { + "path": "ION/04_packages/kernel/ion_mcp_transport_preview.py", + "sha256": "c249899fad48f748af0c5038d5d24f8be5b3ddfb8ea639ccd5b365a10155be1d", + "size": 12325 + }, + "ION/04_packages/kernel/ion_operational_truth_audit.py": { + "path": "ION/04_packages/kernel/ion_operational_truth_audit.py", + "sha256": "c61fb0b16dcecce7ca41a78e1931bffdc8c2bf8f4c1aca20dd89a481c524bafc", + "size": 17011 + }, + "ION/04_packages/kernel/ion_operator_message_classifier.py": { + "path": "ION/04_packages/kernel/ion_operator_message_classifier.py", + "sha256": "36e953ff8336923d3fbc0460fddef8bf19d573c6b30d686ab413af07ea6344cb", + "size": 5476 + }, + "ION/04_packages/kernel/ion_operator_message_queue.py": { + "path": "ION/04_packages/kernel/ion_operator_message_queue.py", + "sha256": "28787ff64a09eaa1c427713f8f9048a531dd3ba8fba048715497f4f47d666d5e", + "size": 7515 + }, + "ION/04_packages/kernel/ion_receipt_hydration_mapper.py": { + "path": "ION/04_packages/kernel/ion_receipt_hydration_mapper.py", + "sha256": "4e2a3cbb1152f7dffaa318a3c9861a1c11c7e111ca869ffcb9014d677f81c75f", + "size": 9383 + }, + "ION/04_packages/kernel/ion_runtime_debug_overlay.py": { + "path": "ION/04_packages/kernel/ion_runtime_debug_overlay.py", + "sha256": "b67a9341c23283f7479619473351f6e1017ba557368290bf1b8748ed09746a0c", + "size": 7110 + }, + "ION/04_packages/kernel/ion_safe_full_project_packager.py": { + "path": "ION/04_packages/kernel/ion_safe_full_project_packager.py", + "sha256": "4384007dd14e1773d3507af69547c2721d6abda99e708e9f0f22a010bc34820b", + "size": 13916 + }, + "ION/04_packages/kernel/ion_status.py": { + "path": "ION/04_packages/kernel/ion_status.py", + "sha256": "6f81924fec3d43e61b6597df38d1a334b64997c0266d7eb3ee3056f9c552d568", + "size": 15588 + }, + "ION/04_packages/kernel/ion_steward_integrate.py": { + "path": "ION/04_packages/kernel/ion_steward_integrate.py", + "sha256": "12d42dfcff98a0d12ad7b861e0433371781adcc38313adf79b5360d524b85fa6", + "size": 12307 + }, + "ION/04_packages/kernel/ion_template_action_gate.py": { + "path": "ION/04_packages/kernel/ion_template_action_gate.py", + "sha256": "0bfb7b06a96d721a2d08c77a8cd039dc15c69a822cd2b089daa908c6e508f70d", + "size": 5375 + }, + "ION/04_packages/kernel/ion_temporal_context_enforcement_audit.py": { + "path": "ION/04_packages/kernel/ion_temporal_context_enforcement_audit.py", + "sha256": "1d92f53ff147f3aeca893ddd44cbef992873277fe700e3374fc8e39020033df9", + "size": 11740 + }, + "ION/04_packages/kernel/ion_trunk_preservation_gate.py": { + "path": "ION/04_packages/kernel/ion_trunk_preservation_gate.py", + "sha256": "3ac1b1d303a0f77ea3d89ba5efb8dc19350380490120a281e9e5f88913812264", + "size": 23724 + }, + "ION/04_packages/kernel/ion_v72_mcp_donor_reconciliation_audit.py": { + "path": "ION/04_packages/kernel/ion_v72_mcp_donor_reconciliation_audit.py", + "sha256": "eeace89026b45668e468495c518a00c7a577dc7ea6b6191c03bd4f9a98739d8d", + "size": 10642 + }, + "ION/04_packages/kernel/joc_cockpit_component_contract.py": { + "path": "ION/04_packages/kernel/joc_cockpit_component_contract.py", + "sha256": "164e12f4b99396b88cbd5e58fbdd579618817533de2f41128758271c39d5bd20", + "size": 19989 + }, + "ION/04_packages/kernel/joc_cognitive_explorer_route_view_model.py": { + "path": "ION/04_packages/kernel/joc_cognitive_explorer_route_view_model.py", + "sha256": "320610cfabfbc2a815625f5973f0a3648e128aab6c38ce5c48549b5eeec44c77", + "size": 12506 + }, + "ION/04_packages/kernel/joc_dispatch_authorization_view_model.py": { + "path": "ION/04_packages/kernel/joc_dispatch_authorization_view_model.py", + "sha256": "f6f8fa7656b975249b3500fc10c94d70e04ee6128b9ab4be2c5054f4c6a08525", + "size": 10771 + }, + "ION/04_packages/kernel/joc_dry_run_dispatch_trace_view_model.py": { + "path": "ION/04_packages/kernel/joc_dry_run_dispatch_trace_view_model.py", + "sha256": "c83cfa4f393bca5bdcec6fe477db228951644ecb55cf2119889eb1ec2202db1b", + "size": 16600 + }, + "ION/04_packages/kernel/joc_export_handoff_manifest_view_model.py": { + "path": "ION/04_packages/kernel/joc_export_handoff_manifest_view_model.py", + "sha256": "e21a71143d385968dfb06c850f9bd5bf638837cb3fa7c132bb87d1ae7efd1a8d", + "size": 17899 + }, + "ION/04_packages/kernel/joc_handoff_package_assembly_plan_view_model.py": { + "path": "ION/04_packages/kernel/joc_handoff_package_assembly_plan_view_model.py", + "sha256": "b735e10342e8ad621abb2d62166aa0f59c060b2367f690da156f2209a36889cb", + "size": 21563 + }, + "ION/04_packages/kernel/joc_mission_dispatch_route_view_model.py": { + "path": "ION/04_packages/kernel/joc_mission_dispatch_route_view_model.py", + "sha256": "f75271886f56b71160644a03d1a719c24b7adf7334a8f47813868fed30901c67", + "size": 15805 + }, + "ION/04_packages/kernel/joc_operator_approval_queue_view_model.py": { + "path": "ION/04_packages/kernel/joc_operator_approval_queue_view_model.py", + "sha256": "7b23a612beda0236c9e46039aa89ad7789f540bc9e651e0fc48064a5dc9ba507", + "size": 11490 + }, + "ION/04_packages/kernel/joc_provider_adapter_readiness_view_model.py": { + "path": "ION/04_packages/kernel/joc_provider_adapter_readiness_view_model.py", + "sha256": "b51fa150dc8882b26ac08ec0740e119493212941b8b463464074c230a92a9f3e", + "size": 14398 + }, + "ION/04_packages/kernel/joc_reactive_os_stream_view_model.py": { + "path": "ION/04_packages/kernel/joc_reactive_os_stream_view_model.py", + "sha256": "71d4540b43f4a672c362b943a8c809fe8f99390d0fd127d5291d71103dfeca59", + "size": 20717 + }, + "ION/04_packages/kernel/joc_release_candidate_preview_view_model.py": { + "path": "ION/04_packages/kernel/joc_release_candidate_preview_view_model.py", + "sha256": "c626b4a0b5b69a5581a1098caf7057377f13307ee559fbeb9da9fd3e78fa5416", + "size": 23873 + }, + "ION/04_packages/kernel/joc_result_save_proposal_view_model.py": { + "path": "ION/04_packages/kernel/joc_result_save_proposal_view_model.py", + "sha256": "06d02899b9a0bc9fd16e939fb8cd21212b135c4153acb86d6e1cf7a6bf999577", + "size": 13128 + }, + "ION/04_packages/kernel/joc_synthetic_response_capture_view_model.py": { + "path": "ION/04_packages/kernel/joc_synthetic_response_capture_view_model.py", + "sha256": "1b7dbf6f86a642539588f7f8f3e96fcc472ef74e2b09cb818f5c370976c826c7", + "size": 16709 + }, + "ION/04_packages/kernel/joc_synthetic_synthesis_route_result_view_model.py": { + "path": "ION/04_packages/kernel/joc_synthetic_synthesis_route_result_view_model.py", + "sha256": "34a435d0a00a73b75ade51c718e0e867e8c309ede19bb187c84676bfdb0094f9", + "size": 18791 + }, + "ION/04_packages/kernel/local_browser_capture_adapter.py": { + "path": "ION/04_packages/kernel/local_browser_capture_adapter.py", + "sha256": "ce4cfdbaa99d2b45458365d82cdd79ba253fb12cac65b29bfaeac5b0bd60ffd7", + "size": 7011 + }, + "ION/04_packages/kernel/local_browser_execution_harness.py": { + "path": "ION/04_packages/kernel/local_browser_execution_harness.py", + "sha256": "371e9f32c43f3ddc4c46c7e48b3edc599bbe9fba6a3a4295da910b27bdd12135", + "size": 14649 + }, + "ION/04_packages/kernel/local_browser_execution_run_receipt.py": { + "path": "ION/04_packages/kernel/local_browser_execution_run_receipt.py", + "sha256": "bf02b050e08c5a07a28868b880ab8102c05c5408b71e3946c77691637b2268ba", + "size": 18795 + }, + "ION/04_packages/kernel/local_browser_execution_sandbox_spec.py": { + "path": "ION/04_packages/kernel/local_browser_execution_sandbox_spec.py", + "sha256": "7f0d2ee16b263bf1a2e3c1f586b00aecec5adec7029220efafb6a0bab53eed6e", + "size": 17752 + }, + "ION/04_packages/kernel/local_visual_harness.py": { + "path": "ION/04_packages/kernel/local_visual_harness.py", + "sha256": "698a9b7cb360b56b4d6ceb8bae24b0c27f74a03fcb411910abcb8adac2474c24", + "size": 13708 + }, + "ION/04_packages/kernel/maintained_work_surface.py": { + "path": "ION/04_packages/kernel/maintained_work_surface.py", + "sha256": "03ff1880f371b36623e2d8da0b3ac2c08476e45acddea54b87ae5256657e5e8f", + "size": 8089 + }, + "ION/04_packages/kernel/manifest_state.py": { + "path": "ION/04_packages/kernel/manifest_state.py", + "sha256": "91c462d42689d40482747516c95ac8d04302df505c5357e160b4a5521d96da6a", + "size": 9736 + }, + "ION/04_packages/kernel/model.py": { + "path": "ION/04_packages/kernel/model.py", + "sha256": "f993e7a8eb35984fc0f47948e79c505ad3b79414a9725c1de39f2adeb219cd27", + "size": 51364 + }, + "ION/04_packages/kernel/model_economics_registry.py": { + "path": "ION/04_packages/kernel/model_economics_registry.py", + "sha256": "a33b3a6be64c7f93d7bc048138354e0ac1a9df1f53723dc8b95526c5776b336c", + "size": 10873 + }, + "ION/04_packages/kernel/model_economics_schedule.py": { + "path": "ION/04_packages/kernel/model_economics_schedule.py", + "sha256": "f720f08b8fa40d082b81f038eee96398e6b554c00cbdb8069b09280b5dc1f71f", + "size": 4138 + }, + "ION/04_packages/kernel/model_router.py": { + "path": "ION/04_packages/kernel/model_router.py", + "sha256": "9531d9fe744ffd3363052b724535abe6ad1d82d175068d5843d7f5b748dc67f3", + "size": 23240 + }, + "ION/04_packages/kernel/name_lineage.py": { + "path": "ION/04_packages/kernel/name_lineage.py", + "sha256": "233fc05e94c41c8a4ac7acd3dbe12eb3c04a898adc0a90ae31de81635fe6eb87", + "size": 21433 + }, + "ION/04_packages/kernel/operational_hardening.py": { + "path": "ION/04_packages/kernel/operational_hardening.py", + "sha256": "c7ab55f9d3f19fe339fd20d730fad58110f6c987c31978b75869a0b7706b2921", + "size": 27932 + }, + "ION/04_packages/kernel/operator_cli.py": { + "path": "ION/04_packages/kernel/operator_cli.py", + "sha256": "733d8c617b687ee7f873026daa9ca02e6b24a76c4f8f312e5d5dfc5a9cd8e0de", + "size": 149069 + }, + "ION/04_packages/kernel/operator_control.py": { + "path": "ION/04_packages/kernel/operator_control.py", + "sha256": "16ded818f378d3ccf9ab010e65e0820ece650eb115d7505bc46594bb0ae3a80c", + "size": 10669 + }, + "ION/04_packages/kernel/packet_validation.py": { + "path": "ION/04_packages/kernel/packet_validation.py", + "sha256": "b7042346a0aff14ab7e33e3938d037bc4053a16eee3000282679c62ff82f4d9a", + "size": 24772 + }, + "ION/04_packages/kernel/planner_gate.py": { + "path": "ION/04_packages/kernel/planner_gate.py", + "sha256": "c6a2366bde087d2d106dc83e9f7b74d6e7fc79206e0132f7d37a42d1e80374ce", + "size": 34604 + }, + "ION/04_packages/kernel/production_readiness.py": { + "path": "ION/04_packages/kernel/production_readiness.py", + "sha256": "ab1d3c6fecc5c1b4afccbb7d329213dbb21ef3a5c4a2772d786c9555a0dd5484", + "size": 26987 + }, + "ION/04_packages/kernel/question_answers.py": { + "path": "ION/04_packages/kernel/question_answers.py", + "sha256": "4d16abdef089ab3f39530542827108a55caa8c4bc16d7af15fa51976de455216", + "size": 28953 + }, + "ION/04_packages/kernel/questions.py": { + "path": "ION/04_packages/kernel/questions.py", + "sha256": "d38b11b04609c5c7a561b890a90c2229f4355117632ef922ad658854f1aa49f2", + "size": 11729 + }, + "ION/04_packages/kernel/receipts.py": { + "path": "ION/04_packages/kernel/receipts.py", + "sha256": "a1375a7875a29340986238a07c23f439c53397615302ff50a7b7815d07572b54", + "size": 10083 + }, + "ION/04_packages/kernel/recovery_replay.py": { + "path": "ION/04_packages/kernel/recovery_replay.py", + "sha256": "71370cc738632145b7a7c6470d6dde3e01150c372dad895fc58562b06394cffb", + "size": 18218 + }, + "ION/04_packages/kernel/release_readiness.py": { + "path": "ION/04_packages/kernel/release_readiness.py", + "sha256": "1a1456b014b6417368c9d6284df97b6344e97e6e8d754728160efb106cf0364e", + "size": 27402 + }, + "ION/04_packages/kernel/reviews.py": { + "path": "ION/04_packages/kernel/reviews.py", + "sha256": "a1426eab76221bfc01f09ae5534f64a2397ceabea7ea2f2a44006a185901bdf7", + "size": 10165 + }, + "ION/04_packages/kernel/root_authority_bundle.py": { + "path": "ION/04_packages/kernel/root_authority_bundle.py", + "sha256": "605266a019fe43c425e3c7b0494d1da1af7c9944fe5169d1c9045fe9350637a1", + "size": 37820 + }, + "ION/04_packages/kernel/runtime_identity_envelope.py": { + "path": "ION/04_packages/kernel/runtime_identity_envelope.py", + "sha256": "df1c8248591152617a300bc419db120b6917d38e6e7c55e7909080897692ef44", + "size": 18789 + }, + "ION/04_packages/kernel/runtime_report_anchors.py": { + "path": "ION/04_packages/kernel/runtime_report_anchors.py", + "sha256": "c9a0ee23e87173bfaf7ae512a1e871c92f2e04b8db7aff5d3c9b92c05d434a2b", + "size": 1923 + }, + "ION/04_packages/kernel/runtime_report_artifacts.py": { + "path": "ION/04_packages/kernel/runtime_report_artifacts.py", + "sha256": "8052bf86f9752c5ef8a62e42f54a38709f1d9afe004598572deb8c9f9b31db8a", + "size": 11743 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace.py", + "sha256": "11b79a5c1cd20ec0f28836338238507c4f195549e8f71cf90fa19120ff79b35e", + "size": 34451 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace_comparison.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace_comparison.py", + "sha256": "a6b213b6eda3205494601974c963b34d32f3b4a91c729fc5dc5530ab6e8614d0", + "size": 29992 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace_family_summary.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace_family_summary.py", + "sha256": "b2d88dce5198b2a3093ff12437b698823cf065973aa3f0a61841f107ba9922b6", + "size": 22356 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace_temporal.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace_temporal.py", + "sha256": "96beb4b404976fbdbd6b40153f308348007355c158c1a12989b15864a94493b1", + "size": 32077 + }, + "ION/04_packages/kernel/runtime_report_browser.py": { + "path": "ION/04_packages/kernel/runtime_report_browser.py", + "sha256": "aa76530f9f1f27e72d223933d72c3fa52ea50db835a0ba8595979ec5ef38f425", + "size": 25688 + }, + "ION/04_packages/kernel/runtime_report_comparative_provenance.py": { + "path": "ION/04_packages/kernel/runtime_report_comparative_provenance.py", + "sha256": "2ffb6a7838d326b7380f227e6ae4a1fde5ed1cbf8c70bd5844bc115f5d022291", + "size": 18338 + }, + "ION/04_packages/kernel/runtime_report_crosslinks.py": { + "path": "ION/04_packages/kernel/runtime_report_crosslinks.py", + "sha256": "0f20684d4af484748492ebd7b658e5fa4283b260c74ae6af49fa3992ad045752", + "size": 13551 + }, + "ION/04_packages/kernel/runtime_report_digest_profile_browser.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_profile_browser.py", + "sha256": "4e315f800d28d862eb08fef89acdf31b4ae1b0dd98242d5664c71036c1cab193", + "size": 24069 + }, + "ION/04_packages/kernel/runtime_report_digest_profile_catalog.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_profile_catalog.py", + "sha256": "b2ae114f2473b2042c5c8a5c99ae38057ab645de8e0836e45c5036ea2efcf6bb", + "size": 14976 + }, + "ION/04_packages/kernel/runtime_report_digest_profiles.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_profiles.py", + "sha256": "bc6eeb8e767fc369619979ea7b27873384fc9ddc17ce645e3f38880a48c33040", + "size": 15836 + }, + "ION/04_packages/kernel/runtime_report_digest_reverse_trace.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_reverse_trace.py", + "sha256": "03535e1658fb4bd24e1f6a365282785e4be688ca1ea0f961e8cbe7891b933998", + "size": 40642 + }, + "ION/04_packages/kernel/runtime_report_family_summary.py": { + "path": "ION/04_packages/kernel/runtime_report_family_summary.py", + "sha256": "ef03fdfd1e9bfe0aec695d3dc53f258fccc166f2b04a7c2b212fe9af58865395", + "size": 19077 + }, + "ION/04_packages/kernel/runtime_report_governance.py": { + "path": "ION/04_packages/kernel/runtime_report_governance.py", + "sha256": "f1c7c1cf91be66acdad3659808923612ab01a5a792088532d4257646842405bf", + "size": 9250 + }, + "ION/04_packages/kernel/runtime_report_governance_aggregation.py": { + "path": "ION/04_packages/kernel/runtime_report_governance_aggregation.py", + "sha256": "253ed5f6558def9ec06e5c44799edec2c3311af34ff6879f4b902f804e80cb17", + "size": 11352 + }, + "ION/04_packages/kernel/runtime_report_navigation.py": { + "path": "ION/04_packages/kernel/runtime_report_navigation.py", + "sha256": "6c815733c69da3de9b159f0f22ed5fcf4a11c9127bc3df94c798b9acabea163a", + "size": 15882 + }, + "ION/04_packages/kernel/runtime_report_operator_digest.py": { + "path": "ION/04_packages/kernel/runtime_report_operator_digest.py", + "sha256": "7575509d07aa7b6447f5aad7579b9410d50a1f5b6f0a90febe159243cd884598", + "size": 21331 + }, + "ION/04_packages/kernel/runtime_report_profile_digest_trace.py": { + "path": "ION/04_packages/kernel/runtime_report_profile_digest_trace.py", + "sha256": "0a6c1f34429148590eae036a228da50f6361822f97463f76093d59236f629f68", + "size": 24203 + }, + "ION/04_packages/kernel/runtime_report_provenance.py": { + "path": "ION/04_packages/kernel/runtime_report_provenance.py", + "sha256": "91a5997d0b61745c2ab07f25d9feecded5d08fe94b8ea77df609d68a0aa8633c", + "size": 27186 + }, + "ION/04_packages/kernel/runtime_report_temporal_provenance.py": { + "path": "ION/04_packages/kernel/runtime_report_temporal_provenance.py", + "sha256": "273209d2fd19e922d63c3fdfc56ff2c78d15363af5d494d17574428070cd5f12", + "size": 25954 + }, + "ION/04_packages/kernel/runtime_report_triggers.py": { + "path": "ION/04_packages/kernel/runtime_report_triggers.py", + "sha256": "578eedb5f11779e19e419bafad1223ee9f2b52e28b64bb1f44c81b223a1e1a4c", + "size": 13269 + }, + "ION/04_packages/kernel/runtime_report_visibility.py": { + "path": "ION/04_packages/kernel/runtime_report_visibility.py", + "sha256": "c64977cc7252928bc19e34a1cefbbbcf6ba51a3e07b3d53996feab69aa645628", + "size": 15703 + }, + "ION/04_packages/kernel/runtime_reporting.py": { + "path": "ION/04_packages/kernel/runtime_reporting.py", + "sha256": "0ae3b12468e1f3daf8e40af79d65aacae80f15aa941f4e23b9cf888b32a3a201", + "size": 17569 + }, + "ION/04_packages/kernel/runtime_session_dispatch_binding.py": { + "path": "ION/04_packages/kernel/runtime_session_dispatch_binding.py", + "sha256": "8e73bedd3be5a15b0c241e2065223c1263366a8f39c374bc51e119736d9a86d6", + "size": 4498 + }, + "ION/04_packages/kernel/runtime_session_store.py": { + "path": "ION/04_packages/kernel/runtime_session_store.py", + "sha256": "cddbf32bff6a23bfd8d80cd8d38511cff16be6818d5918d0b68381659a7b7a81", + "size": 22293 + }, + "ION/04_packages/kernel/runtime_state_sync.py": { + "path": "ION/04_packages/kernel/runtime_state_sync.py", + "sha256": "c072567ff5aa50195ada7ab906d1710101ee84c7ae47dd11c801f6acb67ac431", + "size": 22007 + }, + "ION/04_packages/kernel/runtime_state_views.py": { + "path": "ION/04_packages/kernel/runtime_state_views.py", + "sha256": "edb73abdeb22b19a8cb2b1b4082756d53c2fddce921e331fef7584ef7c31a161", + "size": 8770 + }, + "ION/04_packages/kernel/schedule_completion_release.py": { + "path": "ION/04_packages/kernel/schedule_completion_release.py", + "sha256": "e713da2239c272e1b0a8cc78316656cb11078e1f92d109cf37dd83cca5ea372a", + "size": 10184 + }, + "ION/04_packages/kernel/schedule_controls.py": { + "path": "ION/04_packages/kernel/schedule_controls.py", + "sha256": "660ea7d487259cf8649430b7208c0c6277e12ffc818f72174aebd152428ad69b", + "size": 11855 + }, + "ION/04_packages/kernel/schedule_dispatch_reconciliation.py": { + "path": "ION/04_packages/kernel/schedule_dispatch_reconciliation.py", + "sha256": "a602a74edc09c9ec132fbb8e1c4a5bb9f6464dff5fcab6060cf7ba79743b59a5", + "size": 11270 + }, + "ION/04_packages/kernel/schedule_executor_start_packet.py": { + "path": "ION/04_packages/kernel/schedule_executor_start_packet.py", + "sha256": "f1920a68c4bd56d4fb5b5181d34a1c68f65a7ce4d3fbc4de0d60ad7c1fb527a7", + "size": 29403 + }, + "ION/04_packages/kernel/schedule_handoff_capsule.py": { + "path": "ION/04_packages/kernel/schedule_handoff_capsule.py", + "sha256": "fed89906d0fde26e1bb2cf192c6166ca679f7952e520eacc527fd61fc1fc6382", + "size": 20993 + }, + "ION/04_packages/kernel/schedule_handoff_entry_rehearsal.py": { + "path": "ION/04_packages/kernel/schedule_handoff_entry_rehearsal.py", + "sha256": "dc48d83472e7709bdfdfed16b850bd87c11de42b8a1c37d4e35317b784c92b19", + "size": 20722 + }, + "ION/04_packages/kernel/schedule_lineage.py": { + "path": "ION/04_packages/kernel/schedule_lineage.py", + "sha256": "8113e6c04c5c2db9e4d425feca47bd1c7490e811a042e57164e80cd15a09ceba", + "size": 9705 + }, + "ION/04_packages/kernel/schedule_lineage_replay.py": { + "path": "ION/04_packages/kernel/schedule_lineage_replay.py", + "sha256": "a60751716df64f0d54112f7a7e35d9cf8d88a519d57284908bdb379375b51516", + "size": 10488 + }, + "ION/04_packages/kernel/schedule_resume_bundle.py": { + "path": "ION/04_packages/kernel/schedule_resume_bundle.py", + "sha256": "bb3f6abf3b4d238efb420ba78c92c5c666a44bc98a7c4fa195a089625e6f3def", + "size": 11248 + }, + "ION/04_packages/kernel/schedule_resume_projection.py": { + "path": "ION/04_packages/kernel/schedule_resume_projection.py", + "sha256": "c4b408f56c83958a22ec258cec843fb2986f9d5499e39004ced6ea6e270eca0d", + "size": 16054 + }, + "ION/04_packages/kernel/schedule_settlement.py": { + "path": "ION/04_packages/kernel/schedule_settlement.py", + "sha256": "90a55beee11b242c99b04f44e66403770689990a6561ab628313b1873e5da744", + "size": 9593 + }, + "ION/04_packages/kernel/schedule_takeover_activation.py": { + "path": "ION/04_packages/kernel/schedule_takeover_activation.py", + "sha256": "6efdac7c4a79d9ccdb07bfbfae63af846684e8edccdb5668f35e6061a7e214ab", + "size": 17529 + }, + "ION/04_packages/kernel/scheduler.py": { + "path": "ION/04_packages/kernel/scheduler.py", + "sha256": "ff1d582c0419540a21343d4481aa5d95fcd8740e59a9463f2f4e37c68d241677", + "size": 32156 + }, + "ION/04_packages/kernel/self_mount_graph_integration.py": { + "path": "ION/04_packages/kernel/self_mount_graph_integration.py", + "sha256": "169eedb50f493daf3ce584eb5d37562cdbe16b24f90f32d5b2506d6908b7db66", + "size": 10441 + }, + "ION/04_packages/kernel/self_surface_drift_gate.py": { + "path": "ION/04_packages/kernel/self_surface_drift_gate.py", + "sha256": "ecfa176ad47a4d505308f5ebb6414a18c50714ebf9bc624a291ecd1eaf789ed3", + "size": 8470 + }, + "ION/04_packages/kernel/sequential_kernel.py": { + "path": "ION/04_packages/kernel/sequential_kernel.py", + "sha256": "5e23a0794b8931d1888ce6425e4eb4770d7b38758e29098cd507452809d5d1cb", + "size": 34570 + }, + "ION/04_packages/kernel/settlement.py": { + "path": "ION/04_packages/kernel/settlement.py", + "sha256": "9796a1a0ec21b89d4f64025b05416dc1ba6d052877d45df4c895879ec9c041d3", + "size": 20498 + }, + "ION/04_packages/kernel/signal_followups.py": { + "path": "ION/04_packages/kernel/signal_followups.py", + "sha256": "6be241d9fe1476bdaff0b5a2caa2d35d38e3628d69d35a53c0e90d55912e177a", + "size": 17204 + }, + "ION/04_packages/kernel/signals.py": { + "path": "ION/04_packages/kernel/signals.py", + "sha256": "e7159b3eb806c70b2a2f551dd9d28681e298d27247f8806d804da743d8f27cd8", + "size": 19027 + }, + "ION/04_packages/kernel/store.py": { + "path": "ION/04_packages/kernel/store.py", + "sha256": "3dcabfa5dd3f7d5ac3c22cd401bce49bcac8bdfd87e24b25fcbec2826a8cce0c", + "size": 21232 + }, + "ION/04_packages/kernel/summary_refresh_demo.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo.py", + "sha256": "36e154b2daea1c66c9b06fa6c1bae05f211374bcad12485e2bd41759608d9ed9", + "size": 15708 + }, + "ION/04_packages/kernel/summary_refresh_demo_certification.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_certification.py", + "sha256": "daa19f66914e5f35e40736dfa834c89234b7b9639b80bc75fc0fd79a7d385b8b", + "size": 9881 + }, + "ION/04_packages/kernel/summary_refresh_demo_doctor.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_doctor.py", + "sha256": "ee2d31441799e8b387233c7973d235e85f36b6ddba3f7c0bb20e334f555d5200", + "size": 11245 + }, + "ION/04_packages/kernel/summary_refresh_demo_evidence_bundle.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_evidence_bundle.py", + "sha256": "3fee668681c7f1723013a85f09e4f2016bc7918f5d691aef805556893c3c23a5", + "size": 11640 + }, + "ION/04_packages/kernel/summary_refresh_demo_release_candidate.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_release_candidate.py", + "sha256": "3f07d0042f652e15f3c2bb9be1412b2531b74d08dad5f3edaf96f84872c6787a", + "size": 12361 + }, + "ION/04_packages/kernel/summary_refresh_demo_release_candidate_verify.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_release_candidate_verify.py", + "sha256": "a6900c19a68fc3ca1ae169dcc2f63428522d716348e70952fd64d7d9c366cdc4", + "size": 11461 + }, + "ION/04_packages/kernel/summary_refresh_demo_replay.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_replay.py", + "sha256": "f4d9cddbeaa6d0b8826f2309228ec4033523b437654811f5536d90e80295e5b6", + "size": 11352 + }, + "ION/04_packages/kernel/takeover.py": { + "path": "ION/04_packages/kernel/takeover.py", + "sha256": "ef84505272920e044f4504af3e0415ad09fbdd922512baddd3c702b6a69cb7f1", + "size": 10016 + }, + "ION/04_packages/kernel/template_completion_events.py": { + "path": "ION/04_packages/kernel/template_completion_events.py", + "sha256": "415d62aa3bdd8094ce96ac9f7bb1fdcc703f516c6f11e7d2ac801a757dc60b2d", + "size": 15228 + }, + "ION/04_packages/kernel/template_contract_projection_audit.py": { + "path": "ION/04_packages/kernel/template_contract_projection_audit.py", + "sha256": "bfd9d38d0a148a762382291155c2ed063c17413a01250b180ea1c84b72697b83", + "size": 9928 + }, + "ION/04_packages/kernel/template_contract_registry.py": { + "path": "ION/04_packages/kernel/template_contract_registry.py", + "sha256": "36effab96ec3ef413d7d0deefa9d5a73605ba242a05080c5f8c0d2308508f33b", + "size": 3239 + }, + "ION/04_packages/kernel/template_contract_release_gate.py": { + "path": "ION/04_packages/kernel/template_contract_release_gate.py", + "sha256": "bca0a9b1b986ed0d9f0b4a2ce6239d0705ac7e1345e52e4ad19e58181d911122", + "size": 4698 + }, + "ION/04_packages/kernel/template_graph_commit.py": { + "path": "ION/04_packages/kernel/template_graph_commit.py", + "sha256": "54bdd80ec3446d03644b3c1e5cc81b8cac516099878f9a7dec6ef0a18b203bcc", + "size": 14895 + }, + "ION/04_packages/kernel/template_graph_writeback_proposals.py": { + "path": "ION/04_packages/kernel/template_graph_writeback_proposals.py", + "sha256": "82d9170594b859356ee9abc1967ee2a518f126b217d6341c03b8a3647fa20deb", + "size": 13162 + }, + "ION/04_packages/kernel/template_graph_writeback_review.py": { + "path": "ION/04_packages/kernel/template_graph_writeback_review.py", + "sha256": "7fe3562337f59adb8d3015abd1f61db73a02b88d24e2ef7d781d58bb586ad2d2", + "size": 11731 + }, + "ION/04_packages/kernel/template_index_projection.py": { + "path": "ION/04_packages/kernel/template_index_projection.py", + "sha256": "35e378a67d329f84d6da31f87e079775669ae1975a211a11557091ee2e355881", + "size": 11435 + }, + "ION/04_packages/kernel/template_metadata_contracts.py": { + "path": "ION/04_packages/kernel/template_metadata_contracts.py", + "sha256": "51c455b5b342ed9a4f3d53d68b7feeabbc5a81778dec1bd874837255ca9e2b91", + "size": 4610 + }, + "ION/04_packages/kernel/template_reaction_selection.py": { + "path": "ION/04_packages/kernel/template_reaction_selection.py", + "sha256": "c4ad59693dfd97c2291a511ed36af69ddcd3a585b90b57bd52e21018f212bc4c", + "size": 17222 + }, + "ION/04_packages/kernel/temporal_evaluator.py": { + "path": "ION/04_packages/kernel/temporal_evaluator.py", + "sha256": "2210e0d518fbd02fd1e0fbd7ed3eb43a35fa9b4c81054fba58e7efa72a0fa0e3", + "size": 3075 + }, + "ION/04_packages/kernel/temporal_leases.py": { + "path": "ION/04_packages/kernel/temporal_leases.py", + "sha256": "e765385c6423ab535208b7df0e55d1a5dc540b9b7b1796a024340c74fb1798e5", + "size": 1971 + }, + "ION/04_packages/kernel/temporal_model.py": { + "path": "ION/04_packages/kernel/temporal_model.py", + "sha256": "5192e26e8ed577467245ae4a078dc2a6f0118df8c7416e2303f0daa907cc95ee", + "size": 6249 + }, + "ION/04_packages/kernel/temporal_object_adapters.py": { + "path": "ION/04_packages/kernel/temporal_object_adapters.py", + "sha256": "2e8c28ab2bc04d96ce70f8d0f4dc2dc4f31d690cbee45935a76a894d422fdf41", + "size": 3955 + }, + "ION/04_packages/kernel/temporal_receipts.py": { + "path": "ION/04_packages/kernel/temporal_receipts.py", + "sha256": "bbf216c24f792a1fd71323dcabe7cd0e959af84503749381fec4d7f2277c01b1", + "size": 2228 + }, + "ION/04_packages/kernel/temporal_reconciliation.py": { + "path": "ION/04_packages/kernel/temporal_reconciliation.py", + "sha256": "4094e0332ba3c55499841969b53cbf28ea03a8d446c8395d53d31b8c85b7eee6", + "size": 3175 + }, + "ION/04_packages/kernel/temporal_relevance.py": { + "path": "ION/04_packages/kernel/temporal_relevance.py", + "sha256": "243527be7c062eb710b5d21a1595d40a457f67e199e940505386bfe07c7c118d", + "size": 7501 + }, + "ION/04_packages/kernel/threshold.py": { + "path": "ION/04_packages/kernel/threshold.py", + "sha256": "12c7c1b071872b054e1efc138cfeb71e281c520c4b99560c396a5d63d9f7e66d", + "size": 12378 + }, + "ION/04_packages/kernel/ui_work_surface_projection.py": { + "path": "ION/04_packages/kernel/ui_work_surface_projection.py", + "sha256": "2b8da3a4efc5de9584d12638f49c88bfe401dc5dfe805e4b169369fa6981141d", + "size": 18011 + }, + "ION/04_packages/kernel/v73_cursor_carrier_mount_audit.py": { + "path": "ION/04_packages/kernel/v73_cursor_carrier_mount_audit.py", + "sha256": "8ee5f4b4a7affe2907085d521862a16f8beef013b75e61e6c9c61619d06bd204", + "size": 3140 + }, + "ION/04_packages/kernel/v74_template_binding_restoration_audit.py": { + "path": "ION/04_packages/kernel/v74_template_binding_restoration_audit.py", + "sha256": "16d8b1fc10288da519011fc1ba6f823afc5431e9b7b35ef586b4f29901397f1e", + "size": 4062 + }, + "ION/04_packages/kernel/v75_cursor_full_workflow_mount_audit.py": { + "path": "ION/04_packages/kernel/v75_cursor_full_workflow_mount_audit.py", + "sha256": "ea76e697b2dba30519896a6e7b68a7d5cd6adc6239277a0c0d192084534b711d", + "size": 2228 + }, + "ION/04_packages/kernel/v75_cursor_subagent_spawn_readiness_audit.py": { + "path": "ION/04_packages/kernel/v75_cursor_subagent_spawn_readiness_audit.py", + "sha256": "814e0468b5a47759295b04f6803fb027acedbc35c09feba9a797ca14e167586d", + "size": 13501 + }, + "ION/04_packages/kernel/v76_cursor_work_cycle_audit.py": { + "path": "ION/04_packages/kernel/v76_cursor_work_cycle_audit.py", + "sha256": "876b9488a7eeb119d18196ad9691010c9dc218d2b522d9c23b136f5464ae44ba", + "size": 8501 + }, + "ION/04_packages/kernel/v78_ion_mount_contract_audit.py": { + "path": "ION/04_packages/kernel/v78_ion_mount_contract_audit.py", + "sha256": "aeacd0971752313f53e7e23bb58b37ed166710e05ee850d74061e0bbf358232c", + "size": 8471 + }, + "ION/04_packages/kernel/validation.py": { + "path": "ION/04_packages/kernel/validation.py", + "sha256": "222ffe41bc6b6cbea791929987228b59f979939472bfe759e36a5f51e4e0684c", + "size": 8658 + }, + "ION/04_packages/kernel/visual_before_after_verification.py": { + "path": "ION/04_packages/kernel/visual_before_after_verification.py", + "sha256": "38a8e2d94d54d0954cfa551a508c62244921b1be254bd0c61e71d433bad7db5f", + "size": 10383 + }, + "ION/04_packages/kernel/visual_closure_graph_projection.py": { + "path": "ION/04_packages/kernel/visual_closure_graph_projection.py", + "sha256": "2624d87cfa02aff0d8063fd56c3ef4eb8ea53bc61158ecd27b2e7527b812792c", + "size": 11865 + }, + "ION/04_packages/kernel/visual_diagnosis_receipt.py": { + "path": "ION/04_packages/kernel/visual_diagnosis_receipt.py", + "sha256": "8a88ab97f4753e33b64e275de18fa11e633d4dfd2f6fd38d79df3e4a98451e7c", + "size": 14828 + }, + "ION/04_packages/kernel/visual_observation_packet.py": { + "path": "ION/04_packages/kernel/visual_observation_packet.py", + "sha256": "bb1e544983ea0cefa79f99934c6c579c7dc3590aee710c2e45789d3b8486c563", + "size": 10714 + }, + "ION/04_packages/kernel/visual_regression_fixture_runner.py": { + "path": "ION/04_packages/kernel/visual_regression_fixture_runner.py", + "sha256": "0f56e7e51f597ba3fc734f553de4282a68211a574a18159be507fb84e23cb2e6", + "size": 15719 + }, + "ION/04_packages/kernel/visual_run_receipt_to_diagnosis_binding.py": { + "path": "ION/04_packages/kernel/visual_run_receipt_to_diagnosis_binding.py", + "sha256": "cf0c9d9bc5d40e9aa0c703e61b3638f088d6ecccaeb75075179de80e44718ea1", + "size": 19541 + }, + "ION/04_packages/kernel/visual_sandbox_security_review.py": { + "path": "ION/04_packages/kernel/visual_sandbox_security_review.py", + "sha256": "b054955187b47371e103d22ae7767a8c9261e3267181fb282b65669133fcdb0f", + "size": 13877 + }, + "ION/05_context/README.md": { + "path": "ION/05_context/README.md", + "sha256": "f391ee97d040a741f9be46948b1bd872d7381f1579073cd585e5e8c291e93523", + "size": 1463 + }, + "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/00_BOOTSTRAP/V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_GATE_LOCK.md": { + "path": "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/00_BOOTSTRAP/V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_GATE_LOCK.md", + "sha256": "1aa395de74f77d3f0d548b7198869725b4f330e68500bd3cb085a207e55d7559", + "size": 1174 + }, + "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/docs/consolidation/ION_V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_REPORT_20260502.md": { + "path": "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/docs/consolidation/ION_V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_REPORT_20260502.md", + "sha256": "a70bd223a39de7520fd46363f7e41df501371556ecb81043e4fddfd4d92be450", + "size": 3167 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/AGENTS.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/AGENTS.md", + "sha256": "cbf437330e35b58beb5f8068bd602df3d5faef46ae5c5f6092e0d801df279d69", + "size": 5511 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/OPERATOR_VISIBLE_LAST_RUN_20260427_STALE_START_HERE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/OPERATOR_VISIBLE_LAST_RUN_20260427_STALE_START_HERE.md", + "sha256": "27569d526f2983a9fc589263ea73e68a8d9adf8f14785997a51f4d2b92872ed3", + "size": 9547 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/START_HERE_FOR_ANY_AGENT.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/START_HERE_FOR_ANY_AGENT.md", + "sha256": "fa92e38097d872d4fc005b1980b763fc09c425511d4e142485e2de0b989c9a38", + "size": 4623 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/_tmp_onboard_20260427_STALE_START_HERE.json": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/_tmp_onboard_20260427_STALE_START_HERE.json", + "sha256": "f29c84910b6717a88c4af2341350c6be6e4171a94ddbff9f1b7d7c2ddb2f412d", + "size": 6431 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_EXERCISE_BRIEF.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_EXERCISE_BRIEF.md", + "sha256": "50847f8bff16bf20457d7d3993d67fac582f4764cea9cc2778907d34d6db5cb7", + "size": 2175 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_RETURN_STUB.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_RETURN_STUB.md", + "sha256": "356d5f365d4eba991fb4ac2d6d03ae545d8235a59713c1c3fce8fa14874685ff", + "size": 1767 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_READ_MODE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_READ_MODE.md", + "sha256": "6e2dc15023c65ea823cfac9c0f42883edd4f0eef74cce78b49b14a39e8573601", + "size": 1711 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BUNDLE_MANIFEST.yaml": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BUNDLE_MANIFEST.yaml", + "sha256": "e4848a1ba728849a0fa7c048df7bac7b73d427275a97254163669c65a5ad8658", + "size": 1796 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_EXERCISE_BRIEF.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_EXERCISE_BRIEF.md", + "sha256": "97839c9fbd538a3776f578276b9059ca9a502d070f53f43b76d15a9e01ea0527", + "size": 2167 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_RETURN_STUB.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_RETURN_STUB.md", + "sha256": "e220bd054b651272e1300d3fbae60cd1b20e362cc555176d3d34beffb57a432d", + "size": 1749 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_READ_MODE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_READ_MODE.md", + "sha256": "c22eb4e756d0459477a7d964ac8df8793459027c499dc266e311cbbe6be1cc9e", + "size": 1541 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CURSOR_CODEX_READ_MODE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CURSOR_CODEX_READ_MODE.md", + "sha256": "5c03ae0db143e8a154032c23714895ab84afaed8fc9089238ad1523a0e154783", + "size": 1591 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/START_HERE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/START_HERE.md", + "sha256": "0e541a5fcde91109b995e04c107c32a98a43f7cc595083a56195944f794042d0", + "size": 2707 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt", + "sha256": "16619dcb425b3bf713d7f997c7071d4d7426858d75086f404ff312194df0d8a5", + "size": 586 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt", + "sha256": "c202b8911c42f8d2ac43a919b9f10117bc87843be26419f89509f2ab5b1092c3", + "size": 565 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt", + "sha256": "35d8b27e669747ce68f61c8c0f9d9338a5394c093c8f58aa65f1d3021389e8c0", + "size": 632 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt", + "sha256": "4ed2e584fdbb11b30fa530844423876d0faa2e7e1a6f69c871eb65637b146c5e", + "size": 378 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt", + "sha256": "5782fb3cdf24d6ab674044ec15305b57cc4ecabb078540e7b315d67c3a156113", + "size": 827 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt", + "sha256": "78b1ece49b41120ed8a0d9e051af78a5245ccbd78abc077ed6638841b852656e", + "size": 888 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt", + "sha256": "a245e901f45f34f46a0a4399d6cc80fe28878a5b42b4dd13206ffc16c0b99c8d", + "size": 601 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt", + "sha256": "a10fc2033a4cbacb6973625de18aee1bdc3a0ae38381bf0ff235c3702860ce7f", + "size": 221 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt", + "sha256": "8aeae780a909b36c1dbd92d219bcf6c6019dffd987b43fd83d745e0347cdce44", + "size": 181 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt", + "sha256": "32fa85997b98e8fba4a748ddee4a09b1659387c4ded4ca310f6fcaa27fedbe74", + "size": 155 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt", + "sha256": "26973d6d270527bb353c1c072ee569fe0bda2b9d5cae2e55a7b6671513e0a325", + "size": 179 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt", + "sha256": "20662b6e5b94a177a37b068a45f0efa0d2c41915f6b19da3503dab3f1c14f956", + "size": 159 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt", + "sha256": "39fcf697868c84219a412400c35eef1296addd42518c8fcb1c935ad06ecf3c0b", + "size": 133 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt", + "sha256": "4982990211d55c586f2b73f2d8fdbd7ba1cf4d6eee6c76e72eaa29c6caadd66a", + "size": 666 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt", + "sha256": "28793549a1fd41708fde61628ef3a7b246a559da9a647d40937ab2c0223f7251", + "size": 777 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt", + "sha256": "649b5689b3c6a1ef47711f29a3f4668da3c27a894b17cd3d773e483384e6e718", + "size": 778 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt", + "sha256": "c2147448ce0b77864508cbac1459bf47dd88a922ef6233c9c5b8878634cf67b7", + "size": 1281 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt", + "sha256": "5c146c41b97066e81ba93d585aa8415178d766d157017ce1889b01fee2c22684", + "size": 972 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt", + "sha256": "6d6734dfc62836e9ce448b463762ef2a1b4938384d4bf3da92bcbddbc0f69681", + "size": 701 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt", + "sha256": "af895033997149021c0c86b2b8c078ebebb6272b2b21a9df3cc63f9afc413433", + "size": 911 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt", + "sha256": "324b39dd4a292c00aa7e3c7f338496d443ae1b120b712e611d4e9dab6a9481a2", + "size": 1086 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt", + "sha256": "e681bd8bf14bfec3ccf53b101886cc4bff976e9ebef70a1275e6d8769c0430f0", + "size": 763 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt", + "sha256": "5db0801c8e61e0df0dea68f7cef4bfecbd8c418977576d30a8fc327728baab1c", + "size": 1227 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt", + "sha256": "d99eef0292328e8f423b51d170fd383a29f65da4a21bb96472bb63382fc40fb2", + "size": 746 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt", + "sha256": "dd3925c23505d3d69c5f75c50b4e33ef21cc6760f264fcc3c62f4ae5b9048ed0", + "size": 771 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt", + "sha256": "f92022148d2c08c92fdd1fabad2fcc93436af7835ed2ebc867ec15c00891e03a", + "size": 410 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt", + "sha256": "b34af2800b1fb36549a25286a987653a1b4b6de42efd297ca4d8004ef0f154fe", + "size": 2202 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt", + "sha256": "4cd05aa2fc3b1a75efde531b124273e32dda35e0015054a5fa139618f7ca89d8", + "size": 691 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt", + "sha256": "4b025faf52c2fde057da045d3bba477bbee2c3fd58a80786053912d0519e0a0f", + "size": 566 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt", + "sha256": "fc69f87cf74844dbaff40e52450f71c4be107be7b140735266390666b3501124", + "size": 917 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt", + "sha256": "900bfb8575f9f0abb9296557c6c5b93e9499704eedbe60be1a6c417ea31b2035", + "size": 762 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt", + "sha256": "1e08dd2827559847daf0fb3803f4df1846e41857d3cff83789a84b54ef567f6e", + "size": 441 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt", + "sha256": "df094446e4fec405e88c285e97b55e09ea9bdd6324263e2ae7f236e2ded4f567", + "size": 257 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt", + "sha256": "3ee2340cd44682bbf79ae6d3d19eeb5623d343de7a1d0452bf9ccf666d4d256f", + "size": 345 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt", + "sha256": "55ad4caf620d4f3a33789577817067da1ed8347f5ed14a23e224cf02181f5be7", + "size": 458 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt", + "sha256": "26e014e0b1dd1deebfa8d98ac5c5dde4eeca8087907c65ff3e16e2e3ab985fc5", + "size": 572 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt", + "sha256": "68418805b7234d3a01b751d5088c203d250c5c5fb34c0ea8ab8bf5feca8fe131", + "size": 678 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt", + "sha256": "e994da01f862c26c0ec0ea338d76cb055c7ef2b662f8a667b26d22b3d6535513", + "size": 653 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt", + "sha256": "28da3c07d8ee1cee9b05c6d27647f51682a431da71ad57c5dc736639233b8b38", + "size": 479 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt", + "sha256": "4d6bcfa3cdc88e82964f0d3f335625d3af6457efb8d8adbe1641dc99ebe4f3db", + "size": 785 + }, + "ION/05_context/archive/root_witness_manifests/README.md": { + "path": "ION/05_context/archive/root_witness_manifests/README.md", + "sha256": "1eb530843bc509d47cd51d7926f0fbecd91f98886c48bfecb4f74b87a821b558", + "size": 965 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/00_trace.md", + "sha256": "53173819ac482513cf1dd32e2ca19f6c5d9a94a012642600f696927b90c79501", + "size": 3038 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_session.md", + "sha256": "f4a0e25e7d4be823227dda8981cea35b3c7535f77c68a2491c0ea29587a6bf26", + "size": 2087 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "e2a60277b44e09e82897ba5562df3e9e5916b19963599d6ad9656a19e4d0dc92", + "size": 1354 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_session.md", + "sha256": "a1bc321c8d6321ce4bfac4187740754a811f652fb1be9fc2e28c3866f83924c7", + "size": 2095 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "301cf31a2dd7bd922b929b113a451be8f1647d01d859b7a2adf1a168b83784be", + "size": 1357 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_session.md", + "sha256": "aed925c706e89d008c2c0097eb61ab9b495e9c73d4547f096ec1b6565a7e5ed4", + "size": 2062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_to_vice_handoff.md", + "sha256": "5d041899ac5d893215036edfcfb73087acf9fb9297de158db377460f960328d0", + "size": 1344 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_session.md", + "sha256": "22fef7f49800de47575391bcbe710c4cbfa517e19406356236136c4a11e1bdc8", + "size": 2023 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "e98864331281c0e9184b1331d5901ee6968deff33cea050cac21951f3ac1b33a", + "size": 1320 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/05_nemesis_session.md", + "sha256": "442d576522e6b4ba5f8ee65ea031c1ba7c3297a9dc4efe1829cea8f64bae1d6e", + "size": 2048 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/00_trace.md", + "sha256": "bd62b5872f58b3f14287cf4d7020f0f9ca1a92285f72b51f302e21d00aaffabb", + "size": 2587 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_session.md", + "sha256": "17fa8987d6cdc91177a6e4f650ba4b41e902be9a36c624a58d6487dfc319b395", + "size": 2447 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "98c9733e731a18113d79f8251c2823108119a3f1735e66dbc749ddb5f6a15e9e", + "size": 1386 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_session.md", + "sha256": "7061681a9cfb87156d70c9891e377c8d2c1b0e433e6545768f0cba183f04cb87", + "size": 2451 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "0f515c8c6abc8ac92eb1fb3a7dbc6ff7a005ff2b8ac6a5031768e35d8ee5bb96", + "size": 1389 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_session.md", + "sha256": "adde22f02f4b8314b932ddf54c09434cd3f4ea04150b893d73ba3f33ca39b23f", + "size": 2421 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_to_vice_handoff.md", + "sha256": "0e658860c4f501f47d4dca2af0fa427fc820a0b1867a0c764d9dce5ddfef9bda", + "size": 1376 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_session.md", + "sha256": "5b96e4c0538e5c0c94f0c3f16ccb6bcd2c5ac89b9737aeaa2d223676ce5d26a6", + "size": 2377 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "4b9f75b572fa65fc9ed8667d8fc34eadf844235ebfbb7ea9071c79a375f223c0", + "size": 1352 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/05_nemesis_session.md", + "sha256": "cb3267b9738fd7667982914542fc16e3ea762b6177cef2996df65274238ba9d0", + "size": 2397 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/00_trace.md", + "sha256": "c19924e60d8e90a75a39f9650b7d6c0a139d12ddf77d2feb36ac86896fe23586", + "size": 3658 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_session.md", + "sha256": "667b4fcaa02bb772a687683d0e9046238e76b5f838ad689ed4fc2907cf083bed", + "size": 2639 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "15186029fe46716a6a619e974f8554f668e89ca96a3e3c96cc8e73ddd2ef9cf9", + "size": 1458 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_session.md", + "sha256": "8ec305a563923aa76266197ed0a2fb97012d91b8439f68f46c230c850b072825", + "size": 2649 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "b3203fda2c293575006b232af1be05532d4a37efc92ea5cd37835480b8bec83b", + "size": 1461 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_session.md", + "sha256": "6d2b3d12534d9ef3ef8a23e2e87f2be11031f43bf30df142f5229f12238fdb06", + "size": 2614 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_to_vice_handoff.md", + "sha256": "b62a84b0980aca8be10ee4aa5b5267d3e7aa6244da25f0dc200ce4b5b8271a4f", + "size": 1448 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_session.md", + "sha256": "f106029a0d4652d21f6f9ac95f95e3bb1facf9fc6f6b1663f012ac140ed3392d", + "size": 2573 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "7fb1999e490c79e075357abd5eaba687ed5fbfe6c7c1f547746320f20d5d90d7", + "size": 1424 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/05_nemesis_session.md", + "sha256": "7c6f621f0ae20f9f324e341410443f80569978cf6705511a031586008dc94789", + "size": 2604 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/00_trace.md", + "sha256": "a6e100c42f3cd79547b00e6fec6e05feaa6a776b244fa5ab76347d80ffa2414d", + "size": 2612 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_session.md", + "sha256": "580815a6f4ab1dc595545ca5d3edcfb53ed68b4b0ab7e41e44fb55765c623f8f", + "size": 2517 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "35c50f844ec3d2a8b696b43fb707a20c1b1cd886858735fcc21456e764e62884", + "size": 1395 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_session.md", + "sha256": "f94938c6f272e8e42a86c2e8e56934fcd49c3ee7f68c24f467886483509f05c9", + "size": 2530 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "e760bb3adac667a84ad6c5ca8f553876ea0bd6fd286b067aa4071f071369f498", + "size": 1398 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_session.md", + "sha256": "6067730b7f8fd3ff94f045b122225a80c8b3a7fc362c81c8542c4cf95ab18bfa", + "size": 2465 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8c26a3f93141670a2c1200f69da6d5672d90b7ec35181cbd522be672e4acd763", + "size": 1385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_session.md", + "sha256": "af3ea8a08697367395f882e85ae5974e55b908f2b85879b0442df20687ea1d24", + "size": 2445 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "326f274724aa97a83caa349b4b3e9764f10b187f814401aa0c87381a99a76bdd", + "size": 1361 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/05_nemesis_session.md", + "sha256": "b18bed7f28f65f06586dfb5d7a6b6ff29cc59110385fbd13057a46036e8d74b9", + "size": 2457 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/00_trace.md", + "sha256": "a9cfcfdad03c29c9cbb541ba18aab8505fbfac351c5d5695a58a780b4e3386de", + "size": 2634 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_session.md", + "sha256": "0f2ce27df1073cf9bfc2096331add3c96a5e63a01a0b8cdb02d5841da9885244", + "size": 2545 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "3e0b156677d1cb18693a015ec0a4d6c9f49315ed8b45cebe0f37cf87d4e766eb", + "size": 1413 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_session.md", + "sha256": "f2c22190822601adc5e3053fb6b959a2e56354856006d4cbaee2f5fa8675a1ee", + "size": 2547 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "a86378355c4a20447ead70de6c570551e8e5289d5e46fd6a8b42deaa2c4598d9", + "size": 1416 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_session.md", + "sha256": "82e914bddbe97368cbd7908c5a311586063a239942b53e606fd8970b84629954", + "size": 2488 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_to_vice_handoff.md", + "sha256": "e06a6281f43381142756976325e63945553e43b480a80928d92d0d196b462ca4", + "size": 1403 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_session.md", + "sha256": "5d85d460bc87d2088b1ebd82507e3710321c0f8a106927b5377aa7caae875ad2", + "size": 2463 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "9560aa66b8f504f12e6587433fc6213ef0634d1d6618fca00ac90668c643c1bd", + "size": 1379 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/05_nemesis_session.md", + "sha256": "be382c0659d2eff002b6fa52fb9975e2c125cbd7b35163c867fab1f052815565", + "size": 2492 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/00_trace.md", + "sha256": "4cc6f282090099b227ddc54adc881dbff836d9f2bfc7d412b5ad274e4fbfd3d2", + "size": 2549 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_session.md", + "sha256": "194882b3fea5e5e19caf7a6c179180426943851401521b1eec333c0adc4b6fa6", + "size": 2477 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "997602bddce48fb9d5489eb395fdd41f6231c5c10dd48b86844d7d7f8cfca2d3", + "size": 1316 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_session.md", + "sha256": "81f9173761a29b6a87c2f52f04203481df0cd67cc70d5ba825464f0d44386bb5", + "size": 2484 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "f462ded652fa53c4fe3d44d705b26c30269a9c9eba9006d90c2d5513147368b7", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_session.md", + "sha256": "4026205849570afe1136084728fa3b07667e57286583398b3ae3a35ffe17e03e", + "size": 2452 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_to_vice_handoff.md", + "sha256": "dfb9555bf9a52d132ab1f9a8198934f41b8025062e369d27cf10a6ad1d3f4bc4", + "size": 1306 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_session.md", + "sha256": "f0fc13a52dd432da8409b9e59b9c3a463da99baec514adf22b7a67995eac8dc2", + "size": 2414 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "93fbbdcc033c43514212203cf14fb9f061c1852de20e9f6f6fb6ab8c5612bdef", + "size": 1282 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/05_nemesis_session.md", + "sha256": "f5bbe741b2aa9e94d0340820a6521073f1c02821ee1df83c345bbd6216e27279", + "size": 2436 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/00_trace.md", + "sha256": "36ab613a80ec12ccc91dd8a6f69b91b1c56052ca7731515352f092a4181083d5", + "size": 2564 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_session.md", + "sha256": "b01bf18958da33164076f4325e43275829b6db1d713a231bc3081a3db2b8e7ce", + "size": 2647 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "db1231d31686ad1f5fff5424146328cbb62df8febc1ece319f5c31178cc32923", + "size": 1387 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_session.md", + "sha256": "6d8b3a4534cc6734482a2d7f9da11c857a9642ecf2ea970fb770e36eb27cbdb3", + "size": 2654 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "d65c2e161b04e85cca825882c34c1a85a4e8555e3b3e41671869d28137de9a92", + "size": 1390 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_session.md", + "sha256": "9c8686b7729285bd4783353eddb51967b4e355cfa134518cc1be684f8ee24a7e", + "size": 2622 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_to_vice_handoff.md", + "sha256": "89ec34b496bf26e1dda412131fd79750ede9cc77313b88fe02789f9375e797fe", + "size": 1377 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_session.md", + "sha256": "978edc821797e5d82a8a544c3be1758056701bafe6ff1f1c23c3968c704bbc2c", + "size": 2584 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "216a13ea89bf7302020a231800b917b8832efdd37b85933dbf69defe217bbc8d", + "size": 1353 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/05_nemesis_session.md", + "sha256": "c37e6975d78cc46d0777673d6a2f12788a4664f3b5a33dcd888939b208350fe0", + "size": 2606 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/00_trace.md", + "sha256": "3d3365c8a6e5db5833926dd068ea76c103748316c4524364efd5e512dc400a46", + "size": 3696 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_session.md", + "sha256": "1ccdf2db182cd675ffd37947133306af0d03e6e3b8fda6cf0774faabb5b67370", + "size": 2831 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "aec0694cc613549c2d7fc4e0f5dcb36e1c42abda62bdd3b02463974ba3ee7d45", + "size": 1629 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_session.md", + "sha256": "46bc9f038f239be375e27bb8173ec142633067a67f087d38937c7314e061f9c3", + "size": 2581 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "57f03a00d67200e2beab4e4ebb72b6f90edaca3d6e7c94c2d6ee197156599df4", + "size": 1441 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_session.md", + "sha256": "2598e7ecb88383767670dec960ae4ae1ee90616d1b52d125d0e99c71c666f833", + "size": 2487 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_to_vice_handoff.md", + "sha256": "d0c2ed031641e614921c69b88a012369eacb9c24da9ffb28141a522709a3c324", + "size": 1412 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_session.md", + "sha256": "b4957a74e170cbb10120393bb40560af12af2996b8aa726b9b40e02a3317d28f", + "size": 2387 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "3e731d052d1a993c7cd2d148676b2e19f5513bf9ddeb764268dea93188d972ee", + "size": 1345 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/05_nemesis_session.md", + "sha256": "9444463a6e1e49cc6ad34d3b0f24458ddaa78d7b3e90f00ddbe5d041c0893d9c", + "size": 2495 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/00_trace.md", + "sha256": "56512c6f752effabf9f87140ad163149c45a6c60de186c7b2a157295e201db3e", + "size": 3737 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_session.md", + "sha256": "2052d9d7dbdf89c90a65cd43ed7d3f456da8b211cd75f1b062f2301b5079e424", + "size": 2864 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "37223ca1caa45f7b7528bf06099e466be642bc9cde24f3fffedb1a7d6685298d", + "size": 1670 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_session.md", + "sha256": "a7c6e5d04803e91fd64da73f441412c1a576ade3ecde4f4ba343fec37bc63041", + "size": 2585 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "ac9deb2e4892a9bf1b26d2db8f28c851966b6b33df3e2c92994b32e35c97d832", + "size": 1459 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_session.md", + "sha256": "f649c2ad9f9783617317f0e49c1ac8a509593f91dbe21d256f0febee4fdb0f7a", + "size": 2498 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8fb9c55666e857b170d4e748187dbc19891477ad320aa1c6337d34b2bfa9b1c3", + "size": 1430 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_session.md", + "sha256": "c0cc10258ff7476d6017c24c5289119507c7eef46efb48d3ea47d78ae0141bc2", + "size": 2399 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "3cad135c417c2ce572b99783bda68994d5ce55548ec70aa2e8ef63d3f856e155", + "size": 1363 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/05_nemesis_session.md", + "sha256": "f90f11a84dad3404c1aab817f04bf8c47b122f6550dec543da2ffc8cb808b4a2", + "size": 2505 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/00_trace.md", + "sha256": "01bdf2105fed70c2e58d348b06fb540fe1c1065505cc79cb9ebe0c2139de9649", + "size": 3013 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_session.md", + "sha256": "923a18a30b6e3f0eb07c5637b36350c96d9472d8d99ee5fec3efee81ece19419", + "size": 2099 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "9db193579dfe08812ad88552569d1679534f7c62bb5ce287a6ba890924cbd6de", + "size": 1329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_session.md", + "sha256": "d9387b8e79393c66d08cbdba1eb5ba52c510aa8ec2367dc973cbfac0cf4e1716", + "size": 2107 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "94c2e8928fbe538cd223ed4f2b57ae0d2c22d7e56be1ec08cd5f751e14405ac1", + "size": 1332 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_session.md", + "sha256": "2872328a9a5be4b07f94d8a9017c58f237113592794cd7af4c9963c6431c94b3", + "size": 2074 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_to_vice_handoff.md", + "sha256": "d86ea8f4dbc8d29b543f1b7145001fd36f4e7872ac17829e359656fd44ed66a2", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_session.md", + "sha256": "2cbef72461695aab2dbcd7e515f1245a34c168a7f32d9f309f59333fb7e7bb2a", + "size": 2035 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "225ec43275f0345bedc735e3e22fb11e7475457f183e2df4e961fbd0e29044e5", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/05_nemesis_session.md", + "sha256": "b6203b5ccbb3d42692cb584a21988dc897f30dcc53697e864158fef4c6247119", + "size": 2060 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/00_trace.md", + "sha256": "8c5739b00f2f92cd99b8903451652912c24f3c3f94c4b6c9925e768377b14a95", + "size": 3013 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_session.md", + "sha256": "2a3864cd92910e12c86b0035913bac5d0bf925d72eac583068f527b77df1aba7", + "size": 2117 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "8b7b25a0d4e190ad75e681e4700db75792bfc1cfdbfbdd84525bec0fdd6e2ef6", + "size": 1329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_session.md", + "sha256": "46c0a8caa4e73a927d40558e12910cf8442c6b4140c03b1d641c1dd502027b04", + "size": 2125 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "83c8c4cff4d418018a302589f4d88db4b65f42cef6263ced188237eef458e529", + "size": 1332 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_session.md", + "sha256": "99a0ceaaa043fe25b36fbda96d6c0ae373959a2512d8abe66d9bb2bf6cd71e0a", + "size": 2092 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_to_vice_handoff.md", + "sha256": "7bccd64051f3197544e7abc95f9eac201a9131d35603c1f3cd1898d9b62ca5a9", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_session.md", + "sha256": "5a5bb2763d5f336833d25a2ebe9bed84637091295b2a9dc5fdcf9c3e060f1dd5", + "size": 2053 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "2931c4f690caa5868ca754b45ad547ffabd6c43dfcae001e0528a2f65fe074a7", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/05_nemesis_session.md", + "sha256": "48a5b42b10479d1ba40dc9b7221e888378cab8e80bed36fb7dc56801c94d2bd9", + "size": 2078 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/00_trace.md", + "sha256": "1f9bdde3e0624c369c3372afbbd4e91aa07829a94c19651d4267b216629d144b", + "size": 2843 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_session.md", + "sha256": "87e8049e590fdf2f4e3be197dd7823b9033fc1e0d635bfbcb5e8ddb1d59c027b", + "size": 2055 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "2b2de6d025bd7a6084fa01fabd661ca1e35b48e6d428c2a43b401b5826e7b458", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_session.md", + "sha256": "f800aba2ffef958b2869133899a09b3038f2903a05e01c2ebcb454fb53f22dfc", + "size": 2062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "9848051fd947ff5df15c515c6acf1e449745aa70199b245445b8b74dc219ebd9", + "size": 1298 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_session.md", + "sha256": "fbc58497e5d7b60de3f05dfe33089b4b87fadc6bb14ec90354eda9f5b4b44841", + "size": 1975 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_to_vice_handoff.md", + "sha256": "9936c77ebab0f96cd95f09d86a2667a658ed4a52e54657d47af1c37634262c27", + "size": 1285 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_session.md", + "sha256": "29603326e53eec19ae98736e85b9b60d6db5d3561954c811fc41355b415be033", + "size": 2037 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "6e3376e7ee76ed21e79fb623430e62dff401711d8cc8ad614038800748a3976e", + "size": 1261 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/05_nemesis_session.md", + "sha256": "4cb0848654690ebe828e0a49736af30107a704026739c7ac5019de3a2cf620ed", + "size": 1959 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/00_trace.md", + "sha256": "2db94a2b6faa9aaee617217d1848f7f2a9ec544407ec5b961fc13a67fe573acb", + "size": 3655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_session.md", + "sha256": "844d8f90d90fa4c4e3c83868ad5cb4408c3f22ffaa217593a3c6435031c633b1", + "size": 2696 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "95133216d5659ef5b89196c08cb6c953ffa2ea03d35d049bed164a903a7d04fb", + "size": 1491 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_session.md", + "sha256": "bce5dee52070817f90eaf54e572471bd0618510361672e264769d150387abfa1", + "size": 2706 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "00cea09bc99b8902dc20ace41f47e8aef2460dc4f40f195231647d8598cec397", + "size": 1494 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_session.md", + "sha256": "df5738d10eb352e52e0b89a89696c1e2cb852840f866c9678ddc2ae9c68d3877", + "size": 2671 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_to_vice_handoff.md", + "sha256": "d39516c01440247e26434556564e646ec301dd0cf955491f72393da396cf4445", + "size": 1481 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_session.md", + "sha256": "eb3d886040259b3a0e0698fd46e423df04b97db770f073773cec8f0e5b40c3ac", + "size": 2630 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "c7a60437f1d33f16c15bf764f2c1a3e0a66a64da1eda1236c84849f4651f7ac4", + "size": 1457 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/05_nemesis_session.md", + "sha256": "0c5c79fbe5197ff4ee0b8de839bcccd93d92f04864ec4f3ed0dfce4be054cc5c", + "size": 2661 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/00_trace.md", + "sha256": "41cb0fb3e12376220c7d93a9e49468f362cd9cfb906996943b54a0b47565524a", + "size": 2554 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_session.md", + "sha256": "983e05f5390f4c3f6d71f3227e50a1f16b416cd220f8d77a6f6569bf46f2c4fd", + "size": 2804 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "f5e696423a2eb77ae1dcef4a3d699da03c4e7d01a02b44bf88733592e4e5a815", + "size": 1345 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_session.md", + "sha256": "d06231e72ceb5dba6950b0765eeed552e6e52cc3e5f4d6645276af097a2f00a0", + "size": 2811 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "51845880addd45b7116397337e77f267d4f3ab5a4b5246cb6715adadd678cb45", + "size": 1348 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_session.md", + "sha256": "113fe62b192e5f1bae0774be1affdf8199c972bfa0559f3beec237d85408dd90", + "size": 2779 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8f4921c876a8c94cb315448a57e29a90ee9d7aeb8e84d56c1fffb4c27a4e141b", + "size": 1335 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_session.md", + "sha256": "ba39339327ac66cbd0e5317775731d26d63da27acc26c20ed84e13744ded260e", + "size": 2741 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "4b1f6cbb8c2ccdf73d98f34a61a78a6462481cd5f560bdd14d6f0e22a2db4ad9", + "size": 1311 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/05_nemesis_session.md", + "sha256": "ff6edbd605e2dc10ff06ce4da22563db4382b994b2cd4089a180c12901b4f251", + "size": 2763 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/00_trace.md", + "sha256": "a93f33723e8924b429e727a897c24bbf88e6696f094f31e3089ab274d9ff1254", + "size": 2584 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_session.md", + "sha256": "9e37e7400fb30d1498d4607630dbbf26d40b5194f528bc3454de40804c7d3bd1", + "size": 1553 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "d984219f1267c13e260d99a808f76ac8633edd60c788f2ca17629e043569cfc1", + "size": 1343 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_session.md", + "sha256": "fbcd3bfccb87b0379c0f82463f40ad9426fa4d2612adc06aa5486a37619e7ec0", + "size": 1560 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "ba8f4d3b92b2af03880678568f5526b79437569c85e4f573b3a196719cd64f1d", + "size": 1346 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_session.md", + "sha256": "42c859bdda054f7f15f70b1ec0804c593fd2ff989ccae76358be20db9575dbc2", + "size": 1528 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_to_vice_handoff.md", + "sha256": "e2263202d6750f32c8234aa5d444d26f7e12263c3565b660d104c15e72c3f8f8", + "size": 1333 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_session.md", + "sha256": "60b1199947f52268fb5af1c5ccd81f05606e7048dfb9163198a1ab1e9e26e415", + "size": 1490 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "1d71fab265a7ca95b2df862b2be4ac3de413f6af52625a61ffb90c7416ec9b32", + "size": 1309 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/05_nemesis_session.md", + "sha256": "1febe273b505f770671fd0e7c11931a87b89c4bced8144ae460bc9832a320b13", + "size": 1512 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/00_trace.md", + "sha256": "02860dbf7870fcc7ed0d7e78f6c888a8b7169e09784beefb8649bafd1ee08276", + "size": 3827 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_session.md", + "sha256": "86124635c7249ce75c51fbda83509c2e3a64a8171931282007223377796768e8", + "size": 2787 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "c0a845ee95a1a2ed312d0d1f14d5babf9a66cf807b60feec56a79d9d1537bfa1", + "size": 1551 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_session.md", + "sha256": "de93d34552702c7dc27efb3c18e0d7ef97160d7bc17a47b9ae5a91af1991b028", + "size": 2797 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "2dc7f853e3268684c8bb121af9e9dbb9fde3be13586ca492064bb85575458edc", + "size": 1554 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_session.md", + "sha256": "b30c7729a0eb6211b5e645402d74f34a298c33a091af8fa16c6c57278dc230d0", + "size": 2762 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_to_vice_handoff.md", + "sha256": "51b6fc1e97aa2509b7c148a04afbac6657fdca6815875b345888be02ada58f32", + "size": 1541 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_session.md", + "sha256": "029f2009a4a23a3d9a5a9019f63865ddcb02eac8dd427dbaecf8b3ecfbd6de1b", + "size": 2721 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "0fb4b5f8dfdda34ab1674bb1e0da8662c18540c5567a455ff8334f83333572b6", + "size": 1517 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/05_nemesis_session.md", + "sha256": "c680a2077f0497ce3983eaae47e077a7f2ba097144f22c4318d85d560a38b5c0", + "size": 2752 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/00_trace.md", + "sha256": "1da4f74058ed7b6d5d3a58833cf286d849280c897eb75230a4dc758919726aa2", + "size": 2558 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_session.md", + "sha256": "a136ba68aff87693cb7cd0dd863e96c9e5168121e50ebb75302378cfc1b4d7c5", + "size": 2724 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "91a82f4bc09ceb6c1c0acc767a844cc6a89d603d3725b38f3e6d3e2b4b5ed2e8", + "size": 1385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_session.md", + "sha256": "511c8a62062629994c9d8a419032fcdb320063c4052d9fa56cc1d9d72c2155dd", + "size": 2731 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "0e25eb66d54e8d9dc6a2b8ec01e9fb9991e7fa094ed062b277f5e495ed37c61c", + "size": 1388 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_session.md", + "sha256": "a36993f367b845001ea9f3df891f5f26443083ad47898e103884e33f0bee2ac3", + "size": 2699 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8ae1261f09750b429aebb44f174a5e8f0136c1b5f2dcbc5838b650d2f28893c6", + "size": 1375 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_session.md", + "sha256": "64b6980222be0241c50ee20889ceb84252e65e57d62b3faff8fa9af24be41dc6", + "size": 2661 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "80a3646d9e1e3dd4809a8853eb1d22b8f6d2b80672975db9ac9f2423c61e8457", + "size": 1351 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/05_nemesis_session.md", + "sha256": "56b575912dd9dc98b45701a8c85d71be092262754943740c72d6e12c52b43cd5", + "size": 2683 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/00_trace.md", + "sha256": "3f6fc930a9b5808decb1569904f58a07e6c10a7c2d60a1503f783c3b998ec816", + "size": 2584 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_session.md", + "sha256": "700a227b0ae36c781ca81363f4690d2b5269fb7587c1f6860b8f10364fd2ba99", + "size": 2709 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "ced9e250aad6cdf9918d6bfe3070189fadc1b3e3fb8f622f5022d3d5315ada57", + "size": 1419 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_session.md", + "sha256": "3ca531c79ae40ebdc1edd65f3fe6f6e995b98bcde63c34e731348ca934456a0d", + "size": 2716 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "f5087bb385c12f39160ec532510fdd9ff5f2aac9341ab169168a06deb50c4775", + "size": 1422 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_session.md", + "sha256": "93222ce05db14a344dc845986cbebe112bad36fef8d47a5cfbaa8e3549d08857", + "size": 2684 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_to_vice_handoff.md", + "sha256": "5d49986a2f666204a4d6d8feaf2081477104662326d2fe9f4a70b7bde21697db", + "size": 1409 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_session.md", + "sha256": "d7aad8a90a56a71d0730569fcd642ed03dbb3f4a31230217904935a51693ece2", + "size": 2646 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "6df724b95947a61e29546110844e2583b0640ac17bb6a111394d34ad5f4055ab", + "size": 1385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/05_nemesis_session.md", + "sha256": "b4dcc7756cd97a81622ac168e39ddaf044dbdd90481ca005b1e2096d2838f06b", + "size": 2668 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/00_trace.md", + "sha256": "2c0838bf5f6519714b9bf7f7680e8a311dddb4647416a433d322784c31ce328e", + "size": 3013 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_session.md", + "sha256": "3a292ad7bfb19493d385c8139b0df0454f4a72b594df7581bd4116ebec37ae36", + "size": 2042 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "4e33a5559068bc89d41d6e959dc0708fc4884b335ebe2aa2ad2e36db21e942aa", + "size": 1329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_session.md", + "sha256": "535e4e6ff27a6c6a55ee6937601061c6982c7e4d03dcf5722f8557927bf1348d", + "size": 2050 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "c589d7be1922b04cb5d4edd1e32f852f0abf046f676691d550a0d8e1ce7b6834", + "size": 1332 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_session.md", + "sha256": "591e3f4260cbd8f71e59f0526f5bf3d17dfbb74d768b539b2a1edb1f16e0102e", + "size": 2017 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_to_vice_handoff.md", + "sha256": "7b32d2f77dce32934c9ecac22c6cc8d4a61972c2ca836ee54e9a77f8b7f2fb94", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_session.md", + "sha256": "80365bf1a76bfa99933fff683a4473aeac3a7d5e09f7aec1ec08b3a3b26ee2ca", + "size": 1978 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "894d7dd9c2e243ff4a4fac48a7eabaa82e65029be138258cdffdc335cd438efb", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/05_nemesis_session.md", + "sha256": "eb893346385c77911b4b284aa8bad02bc426200581ff34681b3848fe98fe3002", + "size": 2003 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/00_trace.md", + "sha256": "3fe252d4e52389ad28376d55622c6b3be58fd36f3fd11c40b27d63e26fecd102", + "size": 3728 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_session.md", + "sha256": "14cad58de0da1e864f72e3c0dd3de2325228b0d74740e43899b9b92858f1ba15", + "size": 2860 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "2cb665cf04464d9d850fadd989ee5fa5c545e6b48455749bbddcb3f1f66e4d75", + "size": 1661 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_session.md", + "sha256": "091b264f5d9c019d165f2bf0bbf8e960f8d25c66eb5e23a2e78b96c485fef1a3", + "size": 2534 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "980cd0b8ac5a43bb7987dcb3643d8f5f380a53f7fdc43c7e034c33fb89ef9b51", + "size": 1444 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_session.md", + "sha256": "a442826ef84d0566bc3c3d49516ca17d2069404869447574f20c77c1aab86bae", + "size": 2460 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_to_vice_handoff.md", + "sha256": "41c0ed1b78482763a3121752fce18e64add4be370b4330514d4c14db4d0b91da", + "size": 1415 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_session.md", + "sha256": "72d662f7447e98f1e9284b1d23de0181a3cb82c0f34ab7b67f8b0cb0b2eb1f69", + "size": 2385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "afe651b356b7f4cde8f5297bb0f29ff44055308b4486414e04a5cd6fa1d26243", + "size": 1348 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/05_nemesis_session.md", + "sha256": "e3c0a852ff580393a29afd863d234b5d7e3924f38bec6bc7515e3d9b719dd206", + "size": 2487 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/00_trace.md", + "sha256": "d127316ba2afd4e9d4503b3b77c5f4e741732eecdb3f9d38bac1a2c08a4b4ebb", + "size": 3655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_session.md", + "sha256": "cd75917c81af8a7e3adcbc3bb55a1695a98171496d4f93b4660c87cbb9bbee08", + "size": 2745 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "6b234d86b7615e3d6aa6f76e1c9b10f82e8c7405660ec1b1f20e6a8d3e3dc893", + "size": 1519 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_session.md", + "sha256": "9b6e4c222e6ca90e8fee320ab4fcef72cc786fab292fddb10ac860aca3c9fa9e", + "size": 2755 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "9cce3eccafdc70e7eb55f9e1307cbb6d31aed7dbc39d2a97c30258d0bb106c2a", + "size": 1522 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_session.md", + "sha256": "4b7348c189d956eb1dab01521e2c1e3b749bd44200ed5c961193d7d8b681a7d0", + "size": 2720 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_to_vice_handoff.md", + "sha256": "9e70bff9162e366a236becb5d1a197258799f6b3abdfe0ab3b04226d19d30b1f", + "size": 1509 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_session.md", + "sha256": "03079c24baaa41b0721e8f5f45a660356aebb9744bf6bd7fef2e0ebcd5145c6b", + "size": 2679 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "ea42461caffc88f7979a4e7129bb326c4b187ccc7b77f0ac9413378356ed8513", + "size": 1485 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/05_nemesis_session.md", + "sha256": "bc289739dd429717d64a9fe67cb04429b765cb264ed30f88e020248f7c1e1455", + "size": 2710 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/00_trace.md", + "sha256": "eaf6708ebcbaf4539f9f59d0b182602f4718e448eeaa472b174fd2baaebbd0cb", + "size": 2834 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_session.md", + "sha256": "25ce71857add35541ce5e389bfd45bb26032c153072ffae26763a6bc0eaea76f", + "size": 2048 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_to_vizier_handoff.md", + "sha256": "e64649b8ed837847de5956476076e3739cd949308bb0a2c708ae6bd0685f2c95", + "size": 1290 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_session.md", + "sha256": "e24965cfcf8acf0812e725eace1f05e13f914b86a90cc26c370c77ad203bac68", + "size": 2038 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_to_mason_handoff.md", + "sha256": "9eeeea0a2ac877bb964c6eceba00f0efd4697d24487fed7d455ec448c734927e", + "size": 1293 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_session.md", + "sha256": "9ae2d510d28447c951f444543cf0dac877ec25afa42fa1e83e29599827f47aaf", + "size": 1962 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_to_vice_handoff.md", + "sha256": "cdc7cb8eb17e94e7f90c750f70484400b6b66e83198bc4008c6823709c16ff8e", + "size": 1280 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_session.md", + "sha256": "d77d5c273d63e0bacb51bb239543c597f86efc227794298759f84358defebba2", + "size": 2034 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_to_nemesis_handoff.md", + "sha256": "86d4e4f73a4a10e3acad2ddc1b89a4cd2576a402f75a5bc349ad856c8d9ddf2c", + "size": 1256 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/05_nemesis_session.md", + "sha256": "0a33fa1002d7a731df68f94d16d6c693bca9d2ff69ed8bf4f6286479a9c5ddb3", + "size": 2064 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/00_trace.md", + "sha256": "fb40b0781715acd2338f143678135e48a0ab38ca8fcd8412cd207fbd7cfd824d", + "size": 2733 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_session.md", + "sha256": "d5155394312df50f5e9cffa5728b6df870814302a234333070f6da6b87c894fd", + "size": 1641 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_to_vizier_handoff.md", + "sha256": "c92b29e73f726e3b848bb96ed7d7c714f367ba7095e3d340526275ce096a82e9", + "size": 1407 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_session.md", + "sha256": "b102408d990768a67feeaa942747a2968fa89775e8d6329577366772dcc6ee9a", + "size": 1640 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_to_vice_handoff.md", + "sha256": "901eb1dbed747098c437b19eff66203f8695be90802cae398a603eca83501a98", + "size": 1405 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_session.md", + "sha256": "4b83256bde2a0c643d036e64463153b8caeb92862e58e9e898e2f4fbfa6651c2", + "size": 1575 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_to_nemesis_handoff.md", + "sha256": "0ff3e3d90272ee69f7cf7c523ade6aa713518bc95ece2369451e2119bfab3a84", + "size": 1373 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_session.md", + "sha256": "fef6595da2d81c5ee0bb3c967902f5d24eb9e357173650b8ad147730a0733349", + "size": 1601 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_to_relay_handoff.md", + "sha256": "cdad7c5cfffc225b78dd567c48c65ce0cb63e6547ef0cf63b1256e51eae9abff", + "size": 1387 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/05_relay_session.md", + "sha256": "4b99171695e9f1368b481fd418af6f2777b4cd9030320f3f413d5d578fc22ed4", + "size": 1726 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/00_trace.md", + "sha256": "788b5d2cc0d0a09c4c8953a0d54c367ddc3943c0edf0e2bbf24d619436adaf84", + "size": 2582 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_session.md", + "sha256": "46e47ec66e9a387dbb8ce79bafdb5cc3d0501eee92d45334b69d2b8df7fbd596", + "size": 2340 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_to_thoth_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_to_thoth_handoff.md", + "sha256": "837cc9e5c1a6d5108ab74adc2bef3aa10eb81083cec79d624eb8ac36ae657a4c", + "size": 1409 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_session.md", + "sha256": "4f8a67fc4aec63cf9e3918e4cc3c8167f046a0165c2216a92f6a6de64ecc6290", + "size": 2340 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_to_atlas_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_to_atlas_handoff.md", + "sha256": "caf668a316b83196bbd09fd0e76c395835ca369ed5455516dcb7ea4cad62e632", + "size": 1409 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_session.md", + "sha256": "db60068f95e91d0a5256e8f22d63e56256ea3c9a6a28af4605f866c86e7cc94f", + "size": 2388 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_to_vestige_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_to_vestige_handoff.md", + "sha256": "20820b9bbc0cbf3d43bfeb883c9b22b873ae431292c529504bfd22b3ffa7ad97", + "size": 1433 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/04_vestige_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/04_vestige_session.md", + "sha256": "15ef9d8eba9c94117dadaa1c2d21b7ecf08b9f0c39bed2c0fd3693ff0a35a527", + "size": 2339 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/00_trace.md", + "sha256": "be54c5a3564c96aa75251e7004b9d391a4406663f4e18a6b4eba74b67f393989", + "size": 3720 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_session.md", + "sha256": "a144710662e42a91982eb1e6513fba69060f465726a5a58e519907a9cdc99c53", + "size": 2860 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "ce217e5795a620d56ec2a0da4f1ccdfb919d990682d56ad10c2598e98ce2b105", + "size": 1682 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_session.md", + "sha256": "f7bfc748c6560d2a1a055632167ed79f01a1f09e97cc2c1963e9f234645c1ced", + "size": 2643 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "9995af0c5729e21dd80adf01fd395e2336c1f35f49b3f11fe0971e239619ba06", + "size": 1523 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_session.md", + "sha256": "5636b8c1415ef752e87ef969575657496c87856f7ae145ad680eb94988d53aad", + "size": 2579 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_to_vice_handoff.md", + "sha256": "db70aa60dafcb8f349fae2e48e67b6025c2e6fc93b3874090d8679036d9f68e1", + "size": 1494 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_session.md", + "sha256": "ea9011319181edf364d8e1a1f3c49bb70febcdb61e4aa4ce375ade7144d84ef3", + "size": 2491 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "6bf52e8cfb16d93f5c6b5b53ebe31fc71e0488511130869e83f623810770ca17", + "size": 1427 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/05_nemesis_session.md", + "sha256": "b6fc0f4e7a2d48376ca32bda01f915ee7af4501cf8f3d6295f4062709963a53b", + "size": 2593 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/00_trace.md", + "sha256": "547590accf33a4f363990a9e72c255d578511c54198f1a2550ab53f361fe362b", + "size": 3007 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_session.md", + "sha256": "cbd1ca22157719aae188f5655a1e74298019d47b92511172a916ffa91feb06cc", + "size": 2146 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_to_vizier_handoff.md", + "sha256": "5a1088659f8dde44bd85360e89b396ad25b5e151b6efaf70890cf87a8744207b", + "size": 1354 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_session.md", + "sha256": "451c7ef33da81ca20ffdab0f4d71e81558ad55c067a1f703449b306e05c6e839", + "size": 2163 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_to_vice_handoff.md", + "sha256": "a194c05c7975a1af4436834d0bd7b0deaccc11dece82a4e068cf51c6c9770e70", + "size": 1352 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_session.md", + "sha256": "5fade3edcffd05942857fa05a952c0b6d904b7cfb415933a1ccb6737927ee82f", + "size": 2132 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_to_nemesis_handoff.md", + "sha256": "6f8cbbeb2ab2bff4168be3300521085dca32d17d22f2a3cda188d31742a1b189", + "size": 1320 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_session.md", + "sha256": "1d68789ac213943d2c114828f781f200e69b372a5280202142c278b02274c7c1", + "size": 2106 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_to_relay_handoff.md", + "sha256": "45d1e3ade3920f64167a4267307ab3939f578471822504145625d61c9b27b22f", + "size": 1334 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/05_relay_session.md", + "sha256": "22190052b9945eaa003aedb75ce3478716fe358cda5870c35ada52496ef01459", + "size": 2153 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/00_trace.md", + "sha256": "e69f45a7a1545cf082ea3c97daf064817ac6451f861b5f5d29bb98f737190489", + "size": 2728 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_session.md", + "sha256": "9a3cb1fa70628a918dea3ab26adedd2def2c461fcb37320401a79b09a3afb7e8", + "size": 1655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_to_vizier_handoff.md", + "sha256": "392c09f7a95440d0962779b4458196f291488ebc85a39f7b64030a39250c568c", + "size": 1450 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_session.md", + "sha256": "eafd450cdafc642b437becf693be08e348d59892f42eb7361c1c3ef0a6e6208a", + "size": 1654 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_to_vice_handoff.md", + "sha256": "16c21ac00ce9c42689c9a43f2e048347c56e5d261a9b67fea9b789c9b285fda1", + "size": 1448 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_session.md", + "sha256": "ce2237e1ef822fc07ddd87717136fce6677bb61684c07ff53af79065e98fa9c1", + "size": 1589 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_to_nemesis_handoff.md", + "sha256": "2597745b692d085ea89a166a8c5ddb15fa9c8c38e38b90eba69958b093dc5ba2", + "size": 1416 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_session.md", + "sha256": "468b292c11edc49a3911b4844b6d7188d54e70975980942bb6442aa34810b152", + "size": 1615 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_to_relay_handoff.md", + "sha256": "c1c1e69c637a736d426516c50879ea85d66824d6d70cb25e9c93300bc63be764", + "size": 1430 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/05_relay_session.md", + "sha256": "20ea17c9530de56ee3a5a391fc5940d7cef0bf509b12a456f9508bd3de54fcba", + "size": 1740 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/00_trace.md", + "sha256": "2ec9d23d774ef0f0961a24dcf3b888c6830367d383bad0343f427b9c726f562a", + "size": 2733 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_session.md", + "sha256": "263113a06596ba9918d5986e793022f3c017dfac1d7a3adb706f6b0859016637", + "size": 1629 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "1e1d0e29aa023f63febee664ac3357450981b0963af74abfe25d9e53fb95e45c", + "size": 1383 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_session.md", + "sha256": "3e6046b33b71bd5a9b56d98c1f70af36a89e4ddfa144a16f8c4fb688993aeb8d", + "size": 1628 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_to_vice_handoff.md", + "sha256": "970ad8ce96a7a53b179b3bbe5c97297b785ef8057df270ab63a593edf42c58dd", + "size": 1381 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_session.md", + "sha256": "96ec1aec467971fbbaf9f214cc310591cde81de3453fa09e6d9d38c420f2e180", + "size": 1563 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_to_nemesis_handoff.md", + "sha256": "2793fb199380c4597ba7d62e7cbb4bc7ba55acac02a1bb4f96061bcbdbd0d322", + "size": 1349 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_session.md", + "sha256": "a758de6b7fa541d6f1b762daadca368c642f25ff88fa1e741e5a65334a4ec161", + "size": 1589 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_to_relay_handoff.md", + "sha256": "b52850de3651ff5cf7b684e35728b88d1431a11fbdfd0a0e929bc89d6aef66ec", + "size": 1363 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/05_relay_session.md", + "sha256": "b31c889b445b30fb6175e11348853d8ee57d33d6bb2cab91c9302af359e5a0b1", + "size": 1714 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/00_trace.md", + "sha256": "bf334134117e27c7605dfbd12f1541d9c8b4fafb943fe8a92d872533aed08f81", + "size": 2830 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_session.md", + "sha256": "18d23e5153e65b632bc5886281681f482f8e8efcb0e41e4d1baf2e65496d3cff", + "size": 1418 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_to_vizier_handoff.md", + "sha256": "f51df8efc97a757e8ca6029dc4a7ea2fd1752ddf36ea0eca378caef69bd798cd", + "size": 1270 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_session.md", + "sha256": "ad8764114a3b9563691f7b5033a17a4afc5fb1534ac7590dee1843c60ca19492", + "size": 1426 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_to_mason_handoff.md", + "sha256": "6766e850d236ed68def183d315703c3da96aa0d097de5eefda045ca3c4ae54c7", + "size": 1273 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_session.md", + "sha256": "2ea7df088f35ad7d2a15e2f2f79180d7cfb901cf3ae6643efd87b9eb6b8725c6", + "size": 1393 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_to_vice_handoff.md", + "sha256": "2c0c9ca40cda71ceae1e4c9c3b78083171fe6407c49113b2a23935185f826425", + "size": 1260 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_session.md", + "sha256": "8847ccde508d74eb02fd53a5bcdf7ec7d73ee8276e71ee890f824cc11d551ff0", + "size": 1354 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_to_nemesis_handoff.md", + "sha256": "72da4ddfba0344f0cf67093ec3b0491e8ef9e54199c0d5a6441b3d8bf7a72ebd", + "size": 1236 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/05_nemesis_session.md", + "sha256": "e8445a76c17b1f3ae8ecdb25b3cc4ea43a7da7141fbf6f955e08bcf084b27831", + "size": 1379 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass/00_trace.md", + "sha256": "e89c8b7ec3704ad86d965ed2c736fd5983391da4b66248c90c2302abe58d9f1b", + "size": 1733 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass/00_trace.md", + "sha256": "f2ffa811147594a17556aa41177eec73dbeb73e52584d838984b01f82fe8e849", + "size": 1618 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass/00_trace.md", + "sha256": "8020acac51ed2cd9f7b2c13109be03174d5456c8e2c7f933fbb13e8e498b7299", + "size": 1468 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass/00_trace.md", + "sha256": "4358f5be6dcfb3a0dc72fd11fb7efe216daadf00b6b117f266b1c1cd173a971f", + "size": 1755 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass/00_trace.md", + "sha256": "75c09f4fbfec1453fcd47548353e2c5e47482c3db6d3fbf62f712361b6c78971", + "size": 2062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass/00_trace.md", + "sha256": "ed242e07e7c6982907629a3c1d2020efef1606d0b27ee1d9e805839a89807395", + "size": 968 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_review_followup_resolution_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_review_followup_resolution_first_pass/00_trace.md", + "sha256": "250304e4328d80928ad8e5c30ba8bd8ac5441571b7862dc99ebd77b6d731fbd2", + "size": 2109 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass/00_trace.md", + "sha256": "0c26e74e53ab7ce0b06b9f8d17a2e2fe09ffb6b23069bf2fae76804c8397d1c3", + "size": 1793 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_recursive_witness_drift_rollback/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_recursive_witness_drift_rollback/00_trace.md", + "sha256": "6ce37176326b72de4e6b512bf9006b848dd58685d014ad39974d26a36ba0c7f4", + "size": 799 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-05_codex_agent_reasoning_protocol_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-05_codex_agent_reasoning_protocol_first_pass/00_trace.md", + "sha256": "586e10740bd1822042ea2bbe8cd7c952374fe27a38a8a34a6f57a0671ac7d503", + "size": 746 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/00_trace.md", + "sha256": "0e737a730ed2a35f40e35cf11c282a15e98e1f8b7df98899502aee6673304ace", + "size": 3321 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_session.md", + "sha256": "3fb2fb39df3f3a6cb76d12646ad97c976fe494af0698412125a98d0498f3ea3c", + "size": 2392 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_to_vizier_handoff.md", + "sha256": "b78a77d05bbc899b30aaa6ec6f126bc1b63f5add056960c9254defd1abeb5a6d", + "size": 1359 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_session.md", + "sha256": "cb8835041dc21e901eef0d572972b9bc3b8a17b0e49833a3e1afad943d09a20f", + "size": 1610 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_to_mason_handoff.md", + "sha256": "51aa90e51e32eabb2cf4dd470713a3031fd49a6b1f87f1ef18f1d76393606dfc", + "size": 1362 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_session.md", + "sha256": "f8fb26714932d7afa351385ea3c82248fe594c1efd25be0e337c85f157be696f", + "size": 1575 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_to_vice_handoff.md", + "sha256": "229c11144c0d330f0018474f68aed4f7ddec23b310a0af8d6de9fbc6d744aed6", + "size": 1349 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_session.md", + "sha256": "a8f38d5f4b43559f4bf70d457f00c0d1ad5d733e2e79a1cc57f9be4c2ada77d9", + "size": 1534 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_to_nemesis_handoff.md", + "sha256": "7d34a7ae4f82eed667bd4d6507f99583364a859c23cdb06b0f3317be36613554", + "size": 1325 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/05_nemesis_session.md", + "sha256": "f8190b13bd4c93bda6a4901fe28f3049adb70f11bbb367346a5a7b5140c99a62", + "size": 1565 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_execution_symmetry_horizon_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_execution_symmetry_horizon_pass/00_trace.md", + "sha256": "94f9e09727be1865e70ff2a2c0ecb40c47e644ad0725a7df113345af0abad57c", + "size": 606 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/00_trace.md", + "sha256": "ef287b1c43fdfefc10fdce68ee8e2a908a4cf1707d2c3bfa8cae83c30cfb2841", + "size": 958 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/01_role_session.md", + "sha256": "632947f649663f3e70fdd400324fa4423564b579681d1c7c16f6f9c521b080a5", + "size": 771 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/02_handoff.md", + "sha256": "3b9170d4533c941c6f0792870aa2bd174dd30beae9cb6624c3869ac7e10b99d7", + "size": 377 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/00_trace.md", + "sha256": "6695707bc40866fbe4eca49d80d6e09d6970fde028a68e5a79d12e2508d33812", + "size": 523 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/01_role_session.md", + "sha256": "9fc129c0bd92ef3f489ac0bca7bc25a9e2e966a199e8bc54ab0dd67acb03f78c", + "size": 1059 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/02_handoff.md", + "sha256": "d4ee1d414a9ead55fb16a91638710a09640267cbaa1f3011d846cae68581b88a", + "size": 1182 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/03_cursor_handoff.md", + "sha256": "1e41da9e2d79154b50b3a549cc97751afc8cc279f084179e47ecf33575de8756", + "size": 1202 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/04_manual_automation_fallback.md", + "sha256": "41a264a0c3ffe9d758dcf8c44c79756988caf34ae9becef11ffe18ad4fd181bf", + "size": 1453 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/00_trace.md", + "sha256": "6c64ce89828175b301839f5b4a1551e6b1e1cec6943cfc9c4a7247b36b8698fa", + "size": 786 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/01_role_session.md", + "sha256": "1a507dbe0d15cc07c75d374db9122d19856ae3b44927fe16bddb308faca677c4", + "size": 1225 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/02_handoff.md", + "sha256": "db16a5c2941cbea448a29ed47af6483dec3addbe2555dee29f7edb262f331a2f", + "size": 1274 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/00_trace.md", + "sha256": "94e3969cadb94cca2f130fb3f7d13a1834efb2e22f809a17cf4fa3066be72fdb", + "size": 446 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/01_role_session.md", + "sha256": "7785ed1c12c85b9a37a48aece4bb33423aadc8854bd622cc73048edda9f6b12d", + "size": 1024 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/02_handoff.md", + "sha256": "d0ec516505b7ad704fb111ef2f722c1e81ca658d530b3308c2dd0e3599566ae0", + "size": 1095 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/03_cursor_handoff.md", + "sha256": "2fc437152a33c3c13a1c94b6ded640a1b5f2ac828e37979be8e918a360c0df5b", + "size": 1103 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/04_manual_automation_fallback.md", + "sha256": "1a6bd14725d6cef06760ff65981c43cc8a6506138e7fe806c7117ae794aaa5a7", + "size": 1495 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/00_trace.md", + "sha256": "a41e22bb85c8c5d80208a6c11cf37de163b9ba6ca2949cbfb21c81b24195ca2b", + "size": 487 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/01_role_session.md", + "sha256": "e441d2099ff676bb69ffe92f9fcd921993469879430e39957e399f31cfddd33c", + "size": 996 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/02_handoff.md", + "sha256": "a090a93f0bda98216b2af8227d8ba13dc0c8e203fa7d7e8f34d70d95369c8c65", + "size": 1305 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/03_cursor_handoff.md", + "sha256": "fbcca2fd3cb09d688bf3901619124b2679d58fae8a1298dd89e7a6230af2cc72", + "size": 1155 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/04_manual_automation_fallback.md", + "sha256": "9d0b174e2c72acff15f88ef932752a18e3ddaf790366053d8973f1b612b388a5", + "size": 1545 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/00_trace.md", + "sha256": "c09f549482ec426dcddd0595fe5f54357861709d376195ee37836bb5d97d741e", + "size": 531 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/01_role_session.md", + "sha256": "56057cd577bffbba21249d9f7752c18bebe26499d1fef6bb0ead0abe7592e704", + "size": 1037 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/02_handoff.md", + "sha256": "be541270588af97034a6b32becac64a045823b46d17b5da743be5079277f2e58", + "size": 1480 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/03_cursor_handoff.md", + "sha256": "d9d4c0b09154ed2c7999b246600f479948c82bc42b4f47a814b15f2b264ad745", + "size": 1214 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/04_manual_automation_fallback.md", + "sha256": "cd58e503447133439c7a0e3458b01380dadccf4a33624d44c68553f8916e7168", + "size": 1525 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/00_trace.md", + "sha256": "9a4b669fb44426298c034e54475dce5f4200500aba75d884a3e53b91203ca12b", + "size": 513 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/01_role_session.md", + "sha256": "315cf3bc740ed33d66ea548e09fa7b02b9b0fa231494ce7e8884c4a32ba74798", + "size": 1135 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/02_handoff.md", + "sha256": "055b8f256e8b3eff812a0ae37788b76997cce418822f098df853090109d80a8c", + "size": 1561 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/03_cursor_handoff.md", + "sha256": "c95c897efb2cce88ef4bb9187bf36306e9f3a54a2d227d9b80dd0e6fece24a28", + "size": 1185 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/04_manual_automation_fallback.md", + "sha256": "455d51368853cd19f9a91cd44d7dc889a9a2395b71b203eafa8f080485f3a54a", + "size": 1568 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/00_trace.md", + "sha256": "e11fc64e14a75023662edc193774992a58793f1e301205f27733a59d80e0ae3b", + "size": 742 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/01_role_session.md", + "sha256": "4631e7029562268956991fc49012870b77409437ef776f5af089c056bb5cfa66", + "size": 1116 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/02_handoff.md", + "sha256": "0b1179a6e79e7abb0265662471966d1b2507bbb7de7ae83a1018f400f48e07a4", + "size": 1510 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/00_trace.md", + "sha256": "602467170fade95f2696e9169ca0ea6f5562b4e1f8bc59b077f6d8e0fcf0d168", + "size": 626 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/01_role_session.md", + "sha256": "8661fca724e0e9260afea2f8d75a47b5e21bbb5a5a346689d51073d022f3d840", + "size": 1178 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/02_handoff.md", + "sha256": "356605fd252815a418a43bd30e3b5fd637ef9dd882e7ee695a4b3fb5dafb668d", + "size": 1459 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/00_trace.md", + "sha256": "5a85df3a8db7117e897230e72893522b0cefb5f280a8a70c1849a832f0eb8d83", + "size": 694 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/01_role_session.md", + "sha256": "3ac270c24d146d5e0f1c5a7b20b2f7fd0607c52acc5a1d18e930ac50209ad60e", + "size": 1306 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/02_handoff.md", + "sha256": "ba730e7308538c80f36e161ee3283f83b233cd71f56db58ea08063f68039b665", + "size": 1814 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/00_trace.md", + "sha256": "e78947c80989693b0086d5b5b0486fc0e7e12250b0e6813e8cfcbaa34afbd066", + "size": 697 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/01_role_session.md", + "sha256": "79f9cff31a2344049bb62ab474b4b52843ca7cabf2eddfc2e079475f4f8fbef1", + "size": 1325 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/02_handoff.md", + "sha256": "e4a56594498399a11049e4875c14d053aee814c78a2785591a00b9b5924e678a", + "size": 1701 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/00_trace.md", + "sha256": "82a2be98dca1f80f71a56359d1a47b716d0ad75155eb2580621967da3f23f8d7", + "size": 714 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/01_role_session.md", + "sha256": "1e75f3fe661e92e8481d3cf70520a6f0ccaf23ab637659993175b05b2118b542", + "size": 1153 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/02_handoff.md", + "sha256": "475d9c4dc309b44206b6c649b98ebf815a91a99fe7e8686bea2e17daeffa36dd", + "size": 1667 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/00_trace.md", + "sha256": "46af46168826065464a4ebf4cf59f82b6d5059a2108fdc8ca04b729995d3e81c", + "size": 1277 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/01_role_session.md", + "sha256": "6593de367695e124d4233d291e175b2a4d9df70896ef22975fa4bb7bf313535d", + "size": 750 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/02_handoff.md", + "sha256": "31014abcf4c776a70c580fa8738cf8cfad1e8b378a0f043d715a1df40df93c81", + "size": 533 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/00_trace.md", + "sha256": "bc06edca9e173abbb6a6bcf75094194abcfa9b4f5a96b0bea1efa602c152e625", + "size": 1141 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/01_role_session.md", + "sha256": "dd01641d8f8fb0ff86d35ccdf3d30cdb63d779b3bf84e0996beac8d1a28672c4", + "size": 732 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/02_handoff.md", + "sha256": "78d47f21655c02791636d3b01411963c882b8d413cca3df5f2811eca817b26df", + "size": 406 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/00_trace.md", + "sha256": "9f2116a3ffe6f77a260a98c75178077a9bea472673dd23d8192ecfa9be8a776f", + "size": 774 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/01_role_session.md", + "sha256": "38a7410686ade94df5b3771dd50674bd9a17638acdac2b9ad5bcd6aa7d21955e", + "size": 707 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/02_handoff.md", + "sha256": "b3e55e5a5c5198eb5568b26ab36720ef83a71b8932a64bfb8b4497af0b439dff", + "size": 481 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/HANDOFF.md", + "sha256": "9b69ac8010f61549e67b008cc041145f29122b940a4fced5933159ecd7038586", + "size": 742 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/README.md", + "sha256": "d4cf48ce41fa870013708a9b2588d3e722895a395e2ce471b92d4e4cd5593995", + "size": 414 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/ROLE_SESSION.md", + "sha256": "b370198d6564e9a604c59cb1d17fab0aefebabd19e26c6afcbf2b9d5d30e2198", + "size": 242 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/00_trace.md", + "sha256": "581809ed8a3d7c8c0ae3c293d11135adef9b6e4ec22ad45b1181a16318dfb4b9", + "size": 2655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/HANDOFF.md", + "sha256": "1cc1c36f3de742649e0fbf6732fc63f04662e6a2c8651123eff4f6b8ccc278ac", + "size": 1128 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/README.md", + "sha256": "bdd1347113f4314e63e6aeec0ead9dc27afb8e49d52b513e6b817366d9e0470e", + "size": 234 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/ROLE_SESSION.md", + "sha256": "409865b74282a3f8095d2fdaf5795a57a67f5cc7408931eb140a313d1649ff60", + "size": 1588 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/HANDOFF.md", + "sha256": "174b2b0212eee059fe9c723fa3c7bc83e647e4e7999a3664303f4840b7674c12", + "size": 279 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/README.md", + "sha256": "8f9b5d83538f3f3b145f924be99bf24c30d7b65c2a1ea1344c7bed96b7423311", + "size": 116 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/ROLE_SESSION.md", + "sha256": "42a50d89a627dc91f08992a085de3356071e1d6c7a50b78f4bca6d5c6044115a", + "size": 210 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/HANDOFF.md", + "sha256": "34e69e0d8c0877161b2bffd3c3e14cd7c35d8b6ed7dd885039a4726618c511f4", + "size": 279 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/README.md", + "sha256": "da32dcb9504e73f8966acfce3607eb4e565c8dfda0110daad235386af7b7dd9e", + "size": 133 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/ROLE_SESSION.md", + "sha256": "f00bc4889e95f8521c65a195a2972d79eccfeeb7c433b940336a98d5a2f71694", + "size": 201 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/HANDOFF.md", + "sha256": "d63a9222c35ac5fbce722647efadaf027904fbd3b31c4172050c27cd07960c1f", + "size": 259 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/README.md", + "sha256": "a37f3cacdeb5c7ef4d0564ce7d70e89746b8fab8b66cd24217353916a2f733b4", + "size": 128 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/ROLE_SESSION.md", + "sha256": "135d71856608ba34152a19635d6c0865b2ad3534fd113fd226796c53c38b6c8c", + "size": 206 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/HANDOFF.md", + "sha256": "77708590340f0f9b62d1c5c462902c84f7f989b87311f9d1db1ffe95d2ce280f", + "size": 307 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/README.md", + "sha256": "8617368bb8274a1d0fd9fe9050f2602f9c715e6a592be2ba52fb9595db6ce655", + "size": 131 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/ROLE_SESSION.md", + "sha256": "c590dd4be1a45136d237ab2c27d1bf79ea0508b85ad895b2ab3ad8726501f06f", + "size": 235 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/HANDOFF.md", + "sha256": "0ce3c2e22d9f0f9dcdc26a53b799cd34f917e910157fb1bb0b504a9cf3a4a456", + "size": 277 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/README.md", + "sha256": "84c4cb093e2be4b580b850c96d6426e81849ff0616709db970862da95639d194", + "size": 114 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/ROLE_SESSION.md", + "sha256": "7d3adbd29b49ec086be17e03e2d6f79a865d51f82dc5f0a292cc21ab8a0065f6", + "size": 203 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/HANDOFF.md", + "sha256": "dc71385c5880ea17ca9880387e329147f0251b31ac0ab3408adafbcd96aa9184", + "size": 290 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/README.md", + "sha256": "d110c7a3fbbac4642fe1f048179a141e9c3acb1247298b5b0479636ab579011d", + "size": 128 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/ROLE_SESSION.md", + "sha256": "df1fc890b68f49d2b82570bcf96141a3346c71da73c93208b44fb82b5bc7db7f", + "size": 282 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/HANDOFF.md", + "sha256": "e75fcec36f669833c7c1a857ef9d8493c72dce84a51495726ea58ff8bf3ba664", + "size": 263 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/README.md", + "sha256": "3ce6bc7aeeed70b0c2f01535a5d750558e3fc4bf87d20b37ca94a99213a74ef9", + "size": 118 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/ROLE_SESSION.md", + "sha256": "0b663b0e88731ddbc1fa929ff5e524b50a64d87499beb2fa8c4a9e505c910838", + "size": 326 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/00_trace.md", + "sha256": "31673c45c194d36c1b8ec3fc30e5b875a6b4786f62799de10fba743eaefadd06", + "size": 145 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/01_role_session.md", + "sha256": "44d2c945955f4aeea068a87c7c5cbc83acde2463f4eec5765907c8e43d6a4ff2", + "size": 210 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/02_handoff.md", + "sha256": "b0c2748cf1356fbd1afe3630b15efa7c285e7146b0ca7a8d39a6913dc0125508", + "size": 175 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/00_trace.md", + "sha256": "d7941b6b0a807b1f5f8a0ea4bbcfea60a061592ca3f43b02cd2ee0d69c34a138", + "size": 293 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/01_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/01_session.md", + "sha256": "690422ae43af26590b5a3243f68389cdb5436a1f1a8a6a6a2eae05b4316246ca", + "size": 240 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/02_handoff.md", + "sha256": "d0ca2a7716ebbb5cb9e610f330c17f502c38edd2f6c98421decfe1d8b33e497c", + "size": 267 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/HANDOFF.md", + "sha256": "a02421d90f3e0517a883d055cc732bfdb7db3038573c9360a5c632fbee4da717", + "size": 268 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/README.md", + "sha256": "254d9bee4e6bb6c5359b6ad16c83eb986823f018652074776ea85fef4713749a", + "size": 285 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/ROLE_SESSION.md", + "sha256": "08a0abecb1c18e34d95a96a01c1b93bab781ed1d0359e6bd9a735fc201119a7e", + "size": 303 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/HANDOFF.md", + "sha256": "ba9d6ee000c2473336147b7471f334f6f69020f7c6190438c27c82674e1772cf", + "size": 266 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/README.md", + "sha256": "6dba049ade5df0b8af202ad2ac8e47d653b7a6bc1810e2fdc159387cd3f172ba", + "size": 107 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/ROLE_SESSION.md", + "sha256": "76d114fee67e751e1d9ed503ef153dd6cda4a190b9b999cfda42f87c1301001a", + "size": 311 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/HANDOFF.md", + "sha256": "6ce933ca051d5ae1cbbbb777d3e926a26ebcc5786620cba7f919cb5489df7888", + "size": 240 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/README.md", + "sha256": "ea992add5dd9672faa91102194971282afe90097fe8ebd80be2f325d2ef33e98", + "size": 122 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/ROLE_SESSION.md", + "sha256": "cefb0684d1d8dd7a88d3711019acce87bedb02ce5c268b1c12ba14b74131d36c", + "size": 213 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/HANDOFF.md", + "sha256": "f90c0d114f2b458a7310c93161a1e6154df3514165f9383e227da0b77ee5b236", + "size": 291 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/README.md", + "sha256": "d8f0ce9cc00588f77cb47435e12c6222799d61e64742e23c48b4a0b159b10eb8", + "size": 121 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/ROLE_SESSION.md", + "sha256": "df676b336394451b087b24eea78161e8c39180c860102d8b058e9b0e4acc2052", + "size": 213 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/HANDOFF.md", + "sha256": "7facb7151dd164e6cd2a1054d755cbdbddd2990f7f263a80c3e450a73b36855d", + "size": 251 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/README.md", + "sha256": "31d649df17444cb09db567b247496e3a1b976e10fb6240a02a5ca454b44580d2", + "size": 104 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/ROLE_SESSION.md", + "sha256": "35207cd29a4783bb3946768e7cedd83ea5f6af61f8546526f4f1fa6d9ab97849", + "size": 197 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/HANDOFF.md", + "sha256": "a354a3b41729925e61f066b8c682ab6cb4da09ac39001b20f656a4ed4e538b77", + "size": 247 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/README.md", + "sha256": "e5d9c4ec589bb206f235655a2d557250521d6907534554c263af6aadd8020bb8", + "size": 108 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/ROLE_SESSION.md", + "sha256": "db21bb1cdeb708ab37cfb4fded310030aa32d888643f154835b1982dc7d885fc", + "size": 207 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/00_trace.md", + "sha256": "221439eb1e09129badb6711e5910eacecfe3973c591a0d22d52458f455dfaa50", + "size": 639 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/01_role_session.md", + "sha256": "8b2fee9d61d4aafee0352adf0b22f97fa32fdec67817ff2d832a5cfdefee8aed", + "size": 1434 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/02_handoff.md", + "sha256": "1936993e8b431e24f5bfc421608dc530d9fd62fe3722681d6232b50fbad8670b", + "size": 2598 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/03_cursor_handoff.md", + "sha256": "a7b2f2ab518dfe7c3e0ce987e9c99a4bf76d29d6205e4b96a3a6452e06956fb0", + "size": 2713 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/README.md", + "sha256": "d643af1a00678c1790e8722edb42a0589056de8b7790b2560193efed343bf1e5", + "size": 379 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/00_trace.md", + "sha256": "3e35c221708e8466ee1897e60aa1ba698a75f7deed4731806bbe4fc975b4d659", + "size": 888 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/01_role_session.md", + "sha256": "3de8cc5eb437ba3bf6c04f01cdfdeb0291f664d804110aca54b7885c65ebe905", + "size": 1984 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/02_handoff.md", + "sha256": "d68ca491935761293431f848f2307671e06dd2d66a685baaa1a775ff8f60b74a", + "size": 3132 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/03_cursor_handoff.md", + "sha256": "f68a4e66697557a35ad0ae02b2e58435d5d9f76e2f870af475dd78cc36a48fd5", + "size": 3673 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/README.md", + "sha256": "f8e4cf000947d94cbb78c6b4470d3f017f6daec62fbbe4537cb8d781bb3ed592", + "size": 367 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/00_trace.md", + "sha256": "5d32f683507d5e2605a718b0e6d54ade73189cbde5b21ad3a3ea271a0c31f1ef", + "size": 775 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/01_task.md", + "sha256": "4b71c7b7902937c7e5ce872536202cff847d02ba03bbb5c3f08206e4c0a3bbb9", + "size": 1840 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/02_role_session.md", + "sha256": "54a876fcb4af30995f398459df9a89afb27a7eed8c46bc8dc129866a55beb8b0", + "size": 1879 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/03_thoth_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/03_thoth_role_chassis_mount.md", + "sha256": "d186443ec9093d0c6a4804cc269a351cac71e87c24c054b4ed31b13f26d9011d", + "size": 2416 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/04_vestige_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/04_vestige_cursor_handoff.md", + "sha256": "8eae6a58bb56f92965c8406df6562992f843ee112d785deb35b1086f53ee8648", + "size": 2057 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/05_thoth_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/05_thoth_cursor_handoff.md", + "sha256": "3067713714a34a99b5d0bb40087fc12837b02c62bcb6925ead6d51a89b892d55", + "size": 2238 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/06_operator_onboarding_sequence.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/06_operator_onboarding_sequence.md", + "sha256": "7ae5221a1fc0c5880e05aa9861cbb0ff55a4d2e37faeea9af62efc2cbb128746", + "size": 3062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/07_handoff.md", + "sha256": "b16bb86e96b78244a23046c0c4d91292749ba8f604e61fc9e608f872cd8e27cc", + "size": 1843 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/README.md", + "sha256": "7046a007bb6d7aae3bfad0ee43b7e51e7ba310f7bbd273e5255ed3c3c034f80c", + "size": 597 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/00_trace.md", + "sha256": "122b68dc69e5011a155bdb6d448381da1b84caa3411c0a85a29dbb7e2de098fd", + "size": 632 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/01_task.md", + "sha256": "24e96af568e7a12747401d7eb790a6494035f7aedb99eba68f46d08eee24eb30", + "size": 1528 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/02_role_session.md", + "sha256": "37b4efa83a2638d478a35bc6916f62c363ff88a3c84fc9502a9cc7c003c31af7", + "size": 1628 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/03_codex_proposal.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/03_codex_proposal.md", + "sha256": "65de7891ac3539eb1e37a9a9847259d940275148d8cdd2d4511762ec8a6d8c07", + "size": 2501 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/04_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/04_handoff.md", + "sha256": "d162aa91c2a9e1c9ef26c32a8ab4973a08ab14f825bf16d1fe620b86be3f6c33", + "size": 1474 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/README.md", + "sha256": "3749632b0de56a3578377b09f6a9b51bc891257ab0198994b00ea707f2910be3", + "size": 491 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/01_task.md", + "sha256": "a3a38db53e8b900e13225c86b23a934c25a0a7b9cf561863afb5fcd1e5da6616", + "size": 1503 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/02_role_session.md", + "sha256": "fef580a09d3cef85ef47daa18488419cdae5a3a5767645101e2a26daed9765d8", + "size": 1664 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/03_mason_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/03_mason_role_chassis_mount.md", + "sha256": "008b487748ef68d04fd01543572707f7d6c112e7e20667d09353879879b9340c", + "size": 2287 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/04_mason_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/04_mason_cursor_handoff.md", + "sha256": "3f91ce7c44ae2d73baaa63e800fb1f524b03e490b2cc3aa3dac36dbe9ec84fa5", + "size": 1816 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/05_operator_onboarding_sequence.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/05_operator_onboarding_sequence.md", + "sha256": "262ae5d2399a89fb59a4851b6244228b0ab0cc1f17ea50434eb9dc81bd5f845c", + "size": 1309 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/README.md", + "sha256": "7d96e9c6f9c5d2e48fd958220a870d14f35dea2f2f28c8c63ff2b522ca2dc0de", + "size": 700 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/00_trace.md", + "sha256": "37ee9e5f40d5f32ac1c6191e2af668e7a26d305e1d0f0018691450cb4e5af498", + "size": 795 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/01_task.md", + "sha256": "379e45432a524da6614c4c16f7f292d50f699d473bb3a209c9ac73ba9f86e7fa", + "size": 1987 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/02_role_session.md", + "sha256": "d09f5ade0d81bba4cde4ec76780e911f0e05ae182e87c1058d9f8b7b21f2532c", + "size": 1914 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/03_browser_external_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/03_browser_external_handoff.md", + "sha256": "bc9eeb07b3d219ccf2dc8679a5e420c9b9457fe29dc64f266b08636ed6c70968", + "size": 1679 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/04_external_return.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/04_external_return.md", + "sha256": "e54d76bb37ac4d64e2d022a2adbf585aeb86bd8e708e0645ab38231dc5a4a77c", + "size": 2201 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/05_patch_package.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/05_patch_package.md", + "sha256": "567d54eeadc6904e9c511bc9f64447d9f5512b761bad45dc289631aeca14aa66", + "size": 1549 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/06_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/06_handoff.md", + "sha256": "f45f81892798d4df5c2a038988120d246ffdbc2cf9ba6f9173beaa3e69f95b36", + "size": 1871 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/README.md", + "sha256": "6c712040149bc2af6727a801d07d010c510f491ba99d81d6ebdd74fb238525ff", + "size": 582 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/00_trace.md", + "sha256": "31ab4a4e8a6fd488967b61db7028603640fabe9c09f2a3ff0100251fa925a5ff", + "size": 841 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/01_task.md", + "sha256": "8de20c33682f1e1fdd433f7d1e5d851d7d73714311c40924a38c374a0c149e2c", + "size": 2189 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/02_role_session.md", + "sha256": "46c0955633cbb3345c3d11fe19ac483e6ce836e62380dba58f1f587160d169ca", + "size": 2041 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/03_disagreement_escalation.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/03_disagreement_escalation.md", + "sha256": "3b2b6719677760b7f16d67106309ea28d440d58b9c771d693de1a6477cbe70c3", + "size": 2323 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/06_codex_proposal.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/06_codex_proposal.md", + "sha256": "9f0f87c78c4077e61f085cdd73fd06959d8f08fe3be688849cf899471bafa1b1", + "size": 1998 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/07_handoff.md", + "sha256": "33cba5774ff01f9a945929e9a0ba555a1eccc0695ecde6de6b38f6089a210df4", + "size": 1749 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/README.md", + "sha256": "aacde990023cbc2279b25c45d9ef5d2e578cf60ea85ab153908528b4e5f52863", + "size": 839 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/00_trace.md", + "sha256": "1defdea0c0f280b3acc32b41077a6bf30b03d4ef516ebf11855791cb89144bea", + "size": 873 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/01_task.md", + "sha256": "292c90f39e6c2970fecc8f5feb76434a362883b7e1c745236239e7b2db409247", + "size": 1647 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/02_role_session.md", + "sha256": "cf4219bf57743509dbe774447da3428fe71a9cfa789242cc33d5230ceb25b900", + "size": 1767 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/03_mason_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/03_mason_role_chassis_mount.md", + "sha256": "e1e27f792f5c483d07941efa7810855bbb04b271989f01f85b5234c3c9ffa8ec", + "size": 2288 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/04_vestige_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/04_vestige_role_chassis_mount.md", + "sha256": "034b5d5e9cfa15e810dda51566fc9fa0bbfb5e6fbc55bbe4d662381d61bed641", + "size": 2187 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/05_browser_external_unmounted_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/05_browser_external_unmounted_role_chassis_mount.md", + "sha256": "bf2023ad9e60ae41fd2d7ece750f70231b71cc5cd33e1acebbdc3a8da1791e0a", + "size": 2106 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/06_context_bank_feed_proof.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/06_context_bank_feed_proof.md", + "sha256": "f3f93dac99ead6080c3ebead5fa593336245ec1b6d433fb1dea89e7c54224556", + "size": 4268 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/07_handoff.md", + "sha256": "2b6fba75f6f33b3d96262bc563b5341ed526eb82fdc3f30059b2822416698968", + "size": 2072 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/README.md", + "sha256": "a28724a2a6901b308ff89534681d8130c8c26e8dc73c5d4b521a6013877a33ba", + "size": 627 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/00_trace.md", + "sha256": "15454c07ba7179ce84cf2ff22e762f9c4cd3020e48736be7a85f57e4f6e3ae09", + "size": 810 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/01_task.md", + "sha256": "a2700bdcc8d0142479ecacf5e443255e07076f15e31b9999b412d40c718de6be", + "size": 1956 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/02_role_session.md", + "sha256": "7ca2c47ffb15a8eaf5229ea8b81fb605940f16cf5b2c62b6edb32828d079126a", + "size": 2093 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/03_thoth_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/03_thoth_role_chassis_mount.md", + "sha256": "7a1dce03f6e4b5ee1262c83f8d76fe7aedf743520d822a411b93b4ec90b912b7", + "size": 2329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/04_vestige_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/04_vestige_cursor_handoff.md", + "sha256": "1313ce8c955f61531d3fcbefc839f10e4fda3ca26ebbf3636ee72425fa879e07", + "size": 2257 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/05_thoth_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/05_thoth_cursor_handoff.md", + "sha256": "f2d4973801d2d67a7e04257f5d2d07bc5f0329f17c68e7a1c45b149dc3dca8a4", + "size": 2555 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/06_operator_onboarding_sequence.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/06_operator_onboarding_sequence.md", + "sha256": "c09577518c6c8da9219fc628047092fd7e9cedd287663a83296122248b83a26d", + "size": 4231 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/07_handoff.md", + "sha256": "b32d3ab47a47f8ef35ec9fcd5133305827c322120199db802371873201da0e12", + "size": 2021 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/README.md", + "sha256": "6985972a761cefef395ea30a034bad6bf924bcb40be24496268ab83b2c11734b", + "size": 978 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/00_trace.md", + "sha256": "5398fe09cccad1ef73c2757e154aa566c66e46b2b16ea174609db5bd30953090", + "size": 54 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/01_template_surface_change.md", + "sha256": "591be03f006239559a045beddad5def7cc5cc672d3df519fe6ae54662beb7665", + "size": 1370 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/02_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/02_role_chassis_mount.md", + "sha256": "1761772cc3809ce1cc00036938ff03ede3c91be3954d57d08454cef0a356aa1d", + "size": 1321 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/00_trace.md", + "sha256": "f429d4fd6cc961cffa03a4831720190b60439e3716be1999be993c6e65034027", + "size": 184 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/01_template_surface_change.md", + "sha256": "0dcfb9ba524246932726bba72eccfd16fa2ea3a997d2cd348cd867338a1c5136", + "size": 194 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/00_trace.md", + "sha256": "69e8e6e4ee4bac3ee164a4ed890da987645bf5b481c65fe02e6a9499b7f86741", + "size": 94 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/01_template_surface_change.md", + "sha256": "0992984b70530681f16aea4bd0d5d55d833fe6a24f9934ac640e87b2a043b297", + "size": 1561 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/00_trace.md", + "sha256": "464fe05f7ca2b8c351faa24228780260ac65e659dba9b14a84af1101c412e675", + "size": 76 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/01_template_surface_change.md", + "sha256": "2bebadf758131ed1f964a1806f82ec5dd783b995fa559e310e756aad2bbad808", + "size": 152 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/00_trace.md", + "sha256": "4b2a1bb25114c70aebeac396cad090e914be8e4a6deaece2a043db7845e3cd60", + "size": 67 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/01_template_surface_change.md", + "sha256": "34dfb48e045899753c44a5f129e77b366f206ed55793dc8dd84da7079c8830f1", + "size": 125 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/00_trace.md", + "sha256": "d020fdf0b748aeabdde3e02621ba9ad53d527702746b49f39c236e77e78b5342", + "size": 415 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/01_template_surface_change.md", + "sha256": "d72cd24b651e3b8c34a61a5adcf2f3dc2ecd66aff77de932fcd27757f516be81", + "size": 591 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-23_vm_healthcheck_continuation_route.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-23_vm_healthcheck_continuation_route.md", + "sha256": "cd1a2d71592d402674e8ab5dcf023bb42b4b69ab082414a73391424ae78671f4", + "size": 3127 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/00_trace.md", + "sha256": "a99467855a142ca34c53679dee31db7388fa12d998f6f93a758dc1c928f7e90f", + "size": 1460 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/01_role_session.md", + "sha256": "a83f88a78128034ea1017959f4b56d5b82e7891a3ed1a5b431925db4c47d07aa", + "size": 2078 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/02_handoff.md", + "sha256": "b8811b3a0d5e15e1f3fe3b7e36e5fe3f0ffbe39ba8fcacc72bd3a2da3464c8d7", + "size": 2678 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/00_trace.md", + "sha256": "3789a92e63cc04cb050073a9b0936583a81698ec5bc764bce2fcafbd956f1306", + "size": 1124 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/01_role_session.md", + "sha256": "a28fed7e4596cd82ff3df51aa6f6d9a82e92f0fdd63e305acacf5e12c6f5d210", + "size": 1705 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/02_handoff.md", + "sha256": "21cecb937b151c06f627a60d00d66f957702801230999ddbef2e5468b12ba926", + "size": 1926 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/00_trace.md", + "sha256": "1a1e0f72506b2e1a0be5892934f2b4c54cfa62071e425ea0c605130b3b678fd9", + "size": 1075 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/01_role_session.md", + "sha256": "2aecf6eb37f52506f8dec390b7d86c40a3bb29d2c251afe2b0a6e014ddeb324c", + "size": 1546 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/02_handoff.md", + "sha256": "7cb399983263b6cc1d912869d0d39918e87567ed9ef6800c3b2f16db645fa4cd", + "size": 1873 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/00_trace.md", + "sha256": "7195db53c3bff5a9002574bda2d7068b188615d9f609fa8cb2df326d6c1f78d7", + "size": 958 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/01_role_session.md", + "sha256": "d729ae744aef743f31ea0135f9c4ff85004d3a630fa6b46d474e8e0112fe63ec", + "size": 2442 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/02_handoff.md", + "sha256": "33d9612f9efd75096fc410c64361f5c0487221c107fc36e6d7dc1978816429df", + "size": 2073 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/00_trace.md", + "sha256": "e9fccc4518ff1a14e0b3fd0a6aae7e9e6e9cfc99e68d369f2e277531696ff76d", + "size": 1122 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/01_role_session.md", + "sha256": "ac0731fc233669ba4e67680669903f661885f1ae3036d74c6af2660e41e9bcc8", + "size": 1967 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/02_handoff.md", + "sha256": "9f0b0b988443cc946a68ba1a4d8190e2c52f655c93aad7eecdf5e5a9b3f818d5", + "size": 1804 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/00_trace.md", + "sha256": "172fc88d71e1a953615fdf6f10423e576cf1a633df41db0dcbf52fe5df2811ad", + "size": 1266 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/01_role_session.md", + "sha256": "c18e46bb1278131ba39877f4774e0633adf3e8bc1ad4f4511089e8eb00d28283", + "size": 2065 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/02_handoff.md", + "sha256": "326ecbfe43655ef5069bdd02fd27c0b8021cd73e9cb73e7c5c2e73cdee8433df", + "size": 2013 + }, + "ION/05_context/comms/migration_ledgers/automation_operationalization_ledger.md": { + "path": "ION/05_context/comms/migration_ledgers/automation_operationalization_ledger.md", + "sha256": "9e4cb329a7961fe18a12829e633d723dae6550352b4e1e230fa471b2ffd04495", + "size": 6177 + }, + "ION/05_context/comms/migration_ledgers/domain_semantic_runtime_migration.md": { + "path": "ION/05_context/comms/migration_ledgers/domain_semantic_runtime_migration.md", + "sha256": "b0b7a862a713e512b8d38bcb356d72d2d59fb7997ff9ecc249aa31dee178ef03", + "size": 26120 + }, + "ION/05_context/comms/roundtable/ROUNDTABLE_PARTICIPANTS.md": { + "path": "ION/05_context/comms/roundtable/ROUNDTABLE_PARTICIPANTS.md", + "sha256": "408644206a0841f223aa60f103972b760874cb60858a0ade9780b0cfa58ffc0c", + "size": 2791 + }, + "ION/05_context/comms/roundtable/vizier_article7_version_governance.md": { + "path": "ION/05_context/comms/roundtable/vizier_article7_version_governance.md", + "sha256": "3e3d1521581b228ba30af598510cd0a6396a9f90256a99b3d7b758fefc78fb6c", + "size": 4216 + }, + "ION/05_context/comms/roundtable/vizier_decisions_and_ratification_request.md": { + "path": "ION/05_context/comms/roundtable/vizier_decisions_and_ratification_request.md", + "sha256": "9921a4d7f6ca47ec778de154a356d1292c0e11423f3075a6f63a3b566552f525", + "size": 3952 + }, + "ION/05_context/comms/roundtable/vizier_full_status_report.md": { + "path": "ION/05_context/comms/roundtable/vizier_full_status_report.md", + "sha256": "7e1326ef35f14d6928f29cd0091ababb9395fbffe858a8683d56310c2a69774d", + "size": 7913 + }, + "ION/05_context/comms/roundtable/vizier_ideas_and_first_action.md": { + "path": "ION/05_context/comms/roundtable/vizier_ideas_and_first_action.md", + "sha256": "1b89fe1e003f816862629d6c4a13ca1d000064c816721851bf295fe82d61c47d", + "size": 6819 + }, + "ION/05_context/comms/roundtable/vizier_ratification_assessment.md": { + "path": "ION/05_context/comms/roundtable/vizier_ratification_assessment.md", + "sha256": "8f7f56d48e7f752195d8d572b833a1a3e94d05ca1ac9e548d99921f5b2f98517", + "size": 6393 + }, + "ION/05_context/comms/roundtable/vizier_response_recalibration.md": { + "path": "ION/05_context/comms/roundtable/vizier_response_recalibration.md", + "sha256": "596d938da98f77e1e4610a1499f8b2d610cec64e6c80a2c4283e72fc3d75c878", + "size": 4698 + }, + "ION/05_context/comms/roundtable/vizier_synthesis_response.md": { + "path": "ION/05_context/comms/roundtable/vizier_synthesis_response.md", + "sha256": "fb58c3b67b5717d6a409a66ce6dd36439c54a8e41011598a8fb8780ecec5ffe2", + "size": 4734 + }, + "ION/05_context/comms/sovereign/2026-04-03_codex_operating_state_delta_after_kernel_pilots.md": { + "path": "ION/05_context/comms/sovereign/2026-04-03_codex_operating_state_delta_after_kernel_pilots.md", + "sha256": "037847164a43a40f1ce906ce4f5afa06ae4dad51c77fbdc151281425ae619e2e", + "size": 2574 + }, + "ION/05_context/comms/sovereign/directive_full_status_report.md": { + "path": "ION/05_context/comms/sovereign/directive_full_status_report.md", + "sha256": "c0f0338d5d687a4fa164cb0abd7868cbb7c15b8d25cda63d209afceaaeb58fe5", + "size": 1523 + }, + "ION/05_context/comms/sovereign/directive_preratification_deepdive.md": { + "path": "ION/05_context/comms/sovereign/directive_preratification_deepdive.md", + "sha256": "f262f40b74865e6e9c7e6e2fd1647024f8652a21989bb336bc643a8f4fc969c0", + "size": 3389 + }, + "ION/05_context/comms/sovereign/directive_recalibration.md": { + "path": "ION/05_context/comms/sovereign/directive_recalibration.md", + "sha256": "2f1a24827130861bbf23938f51b1404f7ca434d5f6993ccdf33713c375c2d7ff", + "size": 2155 + }, + "ION/05_context/comms/sovereign/ratification_summary_for_sovereign.md": { + "path": "ION/05_context/comms/sovereign/ratification_summary_for_sovereign.md", + "sha256": "f9acc96b958806fedcf4e410da9dbb28a28a6084ea3bb0521cc0dc382e78c8a9", + "size": 3904 + }, + "ION/05_context/continuation_bundles/GPT55_SELF_MOUNT_V34_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/continuation_bundles/GPT55_SELF_MOUNT_V34_SUCCESSOR_HANDOFF.md", + "sha256": "53f4d1c490dc5385fd8a9bcc0509237d84e9fe35ba6b8264f6ffb45162fb76b3", + "size": 2497 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/00_source_packet.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/00_source_packet.md", + "sha256": "b3f11e5c7a6c5b2ac1f2b46f9e47cb21d41e2c4a1716d8472156df5bd66cf162", + "size": 1931 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/01_role_session.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/01_role_session.md", + "sha256": "759b41b0c98f389d058e096118927b4084e76a0c422cfa4f2a96d8674c48d8b0", + "size": 1902 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/02_manifest.json": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/02_manifest.json", + "sha256": "5c68e94b97de02b1ce0f6e329410e04db114fb5de5b603f90310a1a02d0d4e41", + "size": 4152 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/01_doctrine/CANONICAL_WORKFLOW.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/01_doctrine/CANONICAL_WORKFLOW.md", + "sha256": "290d7d54c01c90003169735c96375418270de38167c22deee49cefb4091f3955", + "size": 3629 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "sha256": "d485b04b6f2d2d844a2b108c96959312fca2c65f0d1cdfa61f9cf75f7c45cc11", + "size": 1223 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md", + "sha256": "ebe5f634b82840d2292c3f8a153401e0f68ec91e38e691f7b95d4d01e6394726", + "size": 1816 + }, + "ION/05_context/current/ACTIVE_AGENT_CONTEXT_WINDOW_PLAN.json": { + "path": "ION/05_context/current/ACTIVE_AGENT_CONTEXT_WINDOW_PLAN.json", + "sha256": "cdba77a726f28bdf4753adf74d4ef6a3339ecd62378a70fe66f70cb7a1be7165", + "size": 53186 + }, + "ION/05_context/current/ACTIVE_CARRIER_MESSAGE_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_MESSAGE_QUEUE.json", + "sha256": "813e2d6ed5a620fcb608554d667b70db569388a79c5378cc54cb4451cd644dae", + "size": 6576 + }, + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.codex_cli.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.codex_cli.json", + "sha256": "d161661e345ec86d60381b87d6d8c12516ad1e1cca493529dd6614cb9c134a9c", + "size": 11740 + }, + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.json", + "sha256": "c37acb154de9aaa035898e4c06877020cfb07c825c4cf50851e68bdbb1ee0085", + "size": 11447 + }, + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.sev.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.sev.json", + "sha256": "7f012539cdb7e3516f944709f3dc07f42874b946f6b0154096f08eeda8cb89da", + "size": 12637 + }, + "ION/05_context/current/ACTIVE_CARRIER_TASK_RETURN_LEDGER.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_TASK_RETURN_LEDGER.json", + "sha256": "d4c2c6a632c3bebf43386353573b8ad7f49ed445df5cecce5c80d255ee49b2be", + "size": 6014 + }, + "ION/05_context/current/ACTIVE_CARRIER_TICK.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_TICK.json", + "sha256": "7d2967c145d34c671c1ef2b825d1c1c3952151de15bd573cfe6bf7c606d02746", + "size": 1139 + }, + "ION/05_context/current/ACTIVE_CARRIER_TURN_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_TURN_PACKET.json", + "sha256": "4610c7bcb3a95148ab4becb594a47bf92e55a9f8186d2a839acba7a619e70bf5", + "size": 4188 + }, + "ION/05_context/current/ACTIVE_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL.json": { + "path": "ION/05_context/current/ACTIVE_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL.json", + "sha256": "eef1ed163c93f1fa80f42b4e309f25dce7d1fad0b65652801913cfc186a0fc27", + "size": 608 + }, + "ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json", + "sha256": "9fb2836bf915da88422835da2b287ae0fff5677e1cb1e31769cc9a4964b1b5d3", + "size": 44565 + }, + "ION/05_context/current/ACTIVE_COCKPIT_VIEW_MODEL.json": { + "path": "ION/05_context/current/ACTIVE_COCKPIT_VIEW_MODEL.json", + "sha256": "fa945e0d9105054dc6a5254796182d72edb56596a3b41e22805260d482de3fe6", + "size": 190139 + }, + "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_PACKET.json", + "sha256": "7b1e94174d92f3a384de20803594b83c084e98677d0c631231f20a58ad6dd6d3", + "size": 3036 + }, + "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_STATE.json": { + "path": "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_STATE.json", + "sha256": "811f921c0408b377383ab2b8df48f1f27b51634a4adf69f2a1d3537f5ecfa59e", + "size": 432 + }, + "ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json": { + "path": "ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json", + "sha256": "d300b5ec27cd7c35387be872879780577d4db332a0633a2c448e8a095403414b", + "size": 1624 + }, + "ION/05_context/current/ACTIVE_FRONT_DOOR_PROOF_TRACE.json": { + "path": "ION/05_context/current/ACTIVE_FRONT_DOOR_PROOF_TRACE.json", + "sha256": "132e6d6705a95f9374f988adefb1fcc65ec7726e269461c5c305513ab9a84e8b", + "size": 11317 + }, + "ION/05_context/current/ACTIVE_FRONT_DOOR_TEAM_PLAN.json": { + "path": "ION/05_context/current/ACTIVE_FRONT_DOOR_TEAM_PLAN.json", + "sha256": "9393bc5ee5139ba5853b689d293b9e6c99669757282ad950ef214a46296a587a", + "size": 3186 + }, + "ION/05_context/current/ACTIVE_HUMAN_GATE_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_HUMAN_GATE_QUEUE.json", + "sha256": "16ffd2622c96bee2b6de91f91e83b8634cfb6c32194efe2e07656dd527c85796", + "size": 5552 + }, + "ION/05_context/current/ACTIVE_LANE_TIMELINE_VIEW_MODEL.json": { + "path": "ION/05_context/current/ACTIVE_LANE_TIMELINE_VIEW_MODEL.json", + "sha256": "eb18f475bb33125f5398a4a3352afc5971376467985608b711518216aabf1771", + "size": 80249 + }, + "ION/05_context/current/ACTIVE_MCP_BRIDGE_STATE.json": { + "path": "ION/05_context/current/ACTIVE_MCP_BRIDGE_STATE.json", + "sha256": "282880a15b7838d94ca4d9412739e5baf48d86e736f296cfa66fb416248bfba6", + "size": 911 + }, + "ION/05_context/current/ACTIVE_OPERATOR_MESSAGE_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_OPERATOR_MESSAGE_QUEUE.json", + "sha256": "71b4ff39948133692bc8aebbbf24d4b66aa47fdc5026abf0f666e6a169a6257b", + "size": 55139 + }, + "ION/05_context/current/ACTIVE_RECEIPT_HYDRATION_VIEW_MODEL.json": { + "path": "ION/05_context/current/ACTIVE_RECEIPT_HYDRATION_VIEW_MODEL.json", + "sha256": "7387b49b5233874e39e19b9258f140f2e3138a8216d6b4fa4b70a6b901e5fe41", + "size": 542 + }, + "ION/05_context/current/ACTIVE_ROLE_SPAWN_PLAN.json": { + "path": "ION/05_context/current/ACTIVE_ROLE_SPAWN_PLAN.json", + "sha256": "d2f42fb8c553cdfc08ad2e2eab1e53d86e8264e1fac8156a32b98d65cd641f16", + "size": 13574 + }, + "ION/05_context/current/ACTIVE_RUNTIME_DEBUG_OVERLAY.json": { + "path": "ION/05_context/current/ACTIVE_RUNTIME_DEBUG_OVERLAY.json", + "sha256": "4cd6992636aa6bbcccc45f06249727f0bd6be422aced3455bf2fd7f8997819bb", + "size": 1519 + }, + "ION/05_context/current/ACTIVE_STATE_INTEGRITY_AUDIT.json": { + "path": "ION/05_context/current/ACTIVE_STATE_INTEGRITY_AUDIT.json", + "sha256": "54303b4f31477008e4da1c07858f3e2028fdfa6930ff3d276c9806b22508ae73", + "size": 1533 + }, + "ION/05_context/current/ACTIVE_STEWARD_INTEGRATION_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_STEWARD_INTEGRATION_QUEUE.json", + "sha256": "ad8e46bb9858e963867d441548a14c61523a10743e727dfdc0d80e4902e87df5", + "size": 6888 + }, + "ION/05_context/current/ACTIVE_WORK_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_WORK_PACKET.json", + "sha256": "42bdb20582ed9ec9aafef01d704d93b0ad911cb202366ed25123ccd379f88719", + "size": 12883 + }, + "ION/05_context/current/BASELINE_MANIFEST_V124.json": { + "path": "ION/05_context/current/BASELINE_MANIFEST_V124.json", + "sha256": "bb32c197bf167df8fb5d7a0a3e507efe290125032200366b6f5fe1377a947861", + "size": 1699461 + }, + "ION/05_context/current/CARRIER_AGENT_SYSTEM_BUILD_PLAN_V105.json": { + "path": "ION/05_context/current/CARRIER_AGENT_SYSTEM_BUILD_PLAN_V105.json", + "sha256": "9b5b57f47d22f60b8ba3d69e3c7e9e38bce37fc69e972245035b14cde3e1d5ce", + "size": 1839 + }, + "ION/05_context/current/CARRIER_CAPABILITY_SURVEY_20260427_CURSOR_L0.md": { + "path": "ION/05_context/current/CARRIER_CAPABILITY_SURVEY_20260427_CURSOR_L0.md", + "sha256": "55501713d54e66a135c3fa68abe209092b3ccd43068c7ee4f04dd85780767568", + "size": 3025 + }, + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V116.json": { + "path": "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V116.json", + "sha256": "5ef41f5aa7d109a7ba45414de4169fb037a91f012300e39b2911eabe66a164ae", + "size": 1231 + }, + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V117.json": { + "path": "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V117.json", + "sha256": "493e7e0431cb3604e5cff29a224a63c86387b82cf6bf208b253ebed5c2fc47ab", + "size": 1193 + }, + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V123.json": { + "path": "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V123.json", + "sha256": "9415a62a52152172868716156662712b4af05ebcea00e1894b1dd4b455775c1c", + "size": 2008 + }, + "ION/05_context/current/CARRIER_RUN_20260427.md": { + "path": "ION/05_context/current/CARRIER_RUN_20260427.md", + "sha256": "64da92c03c5ea3176af66523c0eb44d7ffc48c58c2a7c3f5d30b71698d2feb1e", + "size": 1072 + }, + "ION/05_context/current/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_V122.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_V122.json", + "sha256": "8852075ee53bfad0a97405c41ba46bbc49364fbc894c62f381ade728477054d1", + "size": 2491 + }, + "ION/05_context/current/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_V121.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_V121.json", + "sha256": "b26909e97b31948327988a940dd1dc500409d4d7ef9447a5647eccc6e472c24e", + "size": 2097 + }, + "ION/05_context/current/CHATGPT_BROWSER_LEGACY_TUNNEL_REUSE_AUDIT_V124.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_LEGACY_TUNNEL_REUSE_AUDIT_V124.json", + "sha256": "cfe33801c6bcb98a14c72fd32b04a9e472bfd7f315545c755b9338d748f3fbc6", + "size": 6111 + }, + "ION/05_context/current/CHATGPT_BROWSER_MCP_CONNECTOR_CONTRACT_V120.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_MCP_CONNECTOR_CONTRACT_V120.json", + "sha256": "5ffe50f5329d31cb2029b185b2f58f7bd8f1647fc6e32d3fc2ad6e80de8236f3", + "size": 13767 + }, + "ION/05_context/current/CODEX_CLI_CARRIER_AUDIT_V125.json": { + "path": "ION/05_context/current/CODEX_CLI_CARRIER_AUDIT_V125.json", + "sha256": "bbd52810cfe98acabdaf5ede999cc42a59a038a64ee54c8837a29a4897f50bdc", + "size": 2541 + }, + "ION/05_context/current/CODEX_EXTENSION_CARRIER_AUDIT_V106.json": { + "path": "ION/05_context/current/CODEX_EXTENSION_CARRIER_AUDIT_V106.json", + "sha256": "d6e47a06b9555771dde84b33f36d6c2f88e533b0b7aa55149f49193a7afb1106", + "size": 1781 + }, + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_AUTHORITY_BUNDLE_START_HERE.json": { + "path": "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_AUTHORITY_BUNDLE_START_HERE.json", + "sha256": "bb9f99a114e300fe8183ff49508378763cf3adc11ab211b8e69349171fd2c0c4", + "size": 4840 + }, + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_ONBOARDING_SHIMS.json": { + "path": "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_ONBOARDING_SHIMS.json", + "sha256": "dde4bc92393ff3c5b689c855abe1a7d3315bb3931983f8b1361b589b3340d512", + "size": 1664 + }, + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_STALE_OPERATOR_VISIBLE_LAST_RUN.json": { + "path": "ION/05_context/current/CONTAINMENT_RECEIPT_V123_STALE_OPERATOR_VISIBLE_LAST_RUN.json", + "sha256": "83b5eb8669efbe49d29e4fbc7fb7be215b8bf8718fcf58100cbe4aa351600ab2", + "size": 1576 + }, + "ION/05_context/current/CONTEXT_LIFECYCLE_AUDIT_V102.json": { + "path": "ION/05_context/current/CONTEXT_LIFECYCLE_AUDIT_V102.json", + "sha256": "a9b9436633e467f468a0e667cd945b6096d2c57a708e1666effcf8923e97cea3", + "size": 20560 + }, + "ION/05_context/current/CONTEXT_METABOLISM_MANIFEST_V102.json": { + "path": "ION/05_context/current/CONTEXT_METABOLISM_MANIFEST_V102.json", + "sha256": "7c8e2087e4fe763327e1b5bbebc7393f9568bdd977350ec7c0e2ec10a2a79f3b", + "size": 963 + }, + "ION/05_context/current/CURSOR_AGENT_HANDOFF_20260428_WORKSPACE_AND_CARRIER_FOUNDATION.md": { + "path": "ION/05_context/current/CURSOR_AGENT_HANDOFF_20260428_WORKSPACE_AND_CARRIER_FOUNDATION.md", + "sha256": "bf7e61276a256b9394bd13019573ef0e91bde199434055be554ea93ea318f5a5", + "size": 6492 + }, + "ION/05_context/current/ION_CORE_SYSTEM_TELEMETRY_REQUIREMENTS_V105.json": { + "path": "ION/05_context/current/ION_CORE_SYSTEM_TELEMETRY_REQUIREMENTS_V105.json", + "sha256": "a2c6ac6611d380f3099c4f16d9b6f6e41c7e865f6dc7e683878cdc7d5f73b0b6", + "size": 2205 + }, + "ION/05_context/current/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AUDIT_V105.json": { + "path": "ION/05_context/current/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AUDIT_V105.json", + "sha256": "97fc98543667cccc040c641a344a30e559d3ef97d0c9cef27d47c69cf23b40da", + "size": 16894 + }, + "ION/05_context/current/ION_LIVING_ENCYCLOPEDIA_MANIFEST_V100.json": { + "path": "ION/05_context/current/ION_LIVING_ENCYCLOPEDIA_MANIFEST_V100.json", + "sha256": "289ea7f1c464a17f8fe183e7a05c3baf0c0ba1b3cff91acbf822707a868f6c0c", + "size": 4458 + }, + "ION/05_context/current/ION_LONG_HORIZON_ORCHESTRATION_PLAN_V105.json": { + "path": "ION/05_context/current/ION_LONG_HORIZON_ORCHESTRATION_PLAN_V105.json", + "sha256": "9144c03e138dedd078b5d2e6dec2379a7424716d6494a8916afcb3a6f6ef865c", + "size": 3840 + }, + "ION/05_context/current/ION_MASTER_OPERATIONAL_ROADMAP_V104.json": { + "path": "ION/05_context/current/ION_MASTER_OPERATIONAL_ROADMAP_V104.json", + "sha256": "b54bc39a7e082418332f7dd923fff22a551868b06d2105f8831873eb623a5e3c", + "size": 3921 + }, + "ION/05_context/current/ION_MASTER_RECOVERY_ROADMAP_V98.json": { + "path": "ION/05_context/current/ION_MASTER_RECOVERY_ROADMAP_V98.json", + "sha256": "1891b74606fe11392bf897db76b255031c13bc98be16acd13c4cb6da9236552b", + "size": 4142 + }, + "ION/05_context/current/ION_OPEN_WORK_REGISTER_V104.json": { + "path": "ION/05_context/current/ION_OPEN_WORK_REGISTER_V104.json", + "sha256": "cfef7f1a290c3442993396359e41dafa52df2af826c2762f128367e13813f9c0", + "size": 2581 + }, + "ION/05_context/current/ION_OPERATIONAL_TRUTH_AUDIT_V104.json": { + "path": "ION/05_context/current/ION_OPERATIONAL_TRUTH_AUDIT_V104.json", + "sha256": "510dc955e6a328ec2b4f948f280c36727fae5d0ab6f984288415032753447e7a", + "size": 4890 + }, + "ION/05_context/current/ION_RUNTIME_SEPARATION_PLAN_V99.json": { + "path": "ION/05_context/current/ION_RUNTIME_SEPARATION_PLAN_V99.json", + "sha256": "3fdb4261ccb2e4b6d6f64c8fe56453b80725c18fb89a7c62e5ee4d7c13647d4f", + "size": 2187 + }, + "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V84.json": { + "path": "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V84.json", + "sha256": "760f03d58216074086fdca6f87defe09e707b98bf372b3e56babc33dd1c15d50", + "size": 2859 + }, + "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V85.json": { + "path": "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V85.json", + "sha256": "37fdf79ac4501b85a9a492403a30a64d15287ac8419fe47f718a841b243cf152", + "size": 3191 + }, + "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V84.json": { + "path": "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V84.json", + "sha256": "de992dc77ead03758b737b7ec12fb27afc83d387a39c923e27e197b96d512062", + "size": 450 + }, + "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V85.json": { + "path": "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V85.json", + "sha256": "99a0d393ffe767157ea641dad77b831e67673555882d5f69556ba054515751dc", + "size": 658 + }, + "ION/05_context/current/LAST_KERNEL_ONBOARD_RAW.json": { + "path": "ION/05_context/current/LAST_KERNEL_ONBOARD_RAW.json", + "sha256": "e642a4b86980f0580e701f4140aa76bc01c44bd86ada4bfec4b8392a2709f1dd", + "size": 6523 + }, + "ION/05_context/current/LAST_KERNEL_TRACE.txt": { + "path": "ION/05_context/current/LAST_KERNEL_TRACE.txt", + "sha256": "2defb0ac8e1b6f60dbcec6be4b9a98c9627a8f73347a81801ce671e98190a6f7", + "size": 2551 + }, + "ION/05_context/current/LAST_SUBAGENT_SPAWN_RUN.txt": { + "path": "ION/05_context/current/LAST_SUBAGENT_SPAWN_RUN.txt", + "sha256": "ac8b8ac2fd339a48c8e0977cca1f1f1728db34b68e096f7438c4f7dc5d26e7cd", + "size": 601 + }, + "ION/05_context/current/LAST_TOOL_CHAIN.txt": { + "path": "ION/05_context/current/LAST_TOOL_CHAIN.txt", + "sha256": "4439ceb1e649e736936548c8f4fd663cb73586be7c02a70fbd8d54c997f54eb5", + "size": 6385 + }, + "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_COMPACT_RUNTIME_V106.json": { + "path": "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_COMPACT_RUNTIME_V106.json", + "sha256": "8743836ab8f0e11f54d773f22a033ff17e59e5156c53264e47edd7873b10379d", + "size": 6944 + }, + "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_V105_ZIP_ROOT_AUDIT_V106.json": { + "path": "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_V105_ZIP_ROOT_AUDIT_V106.json", + "sha256": "618fd33f5153288ca882f5bc4601980cbdea3c82a7ac5b5cea8202e944dbe379", + "size": 6323 + }, + "ION/05_context/current/OPERATOR_MECHANICAL_REPORT_20260427.md": { + "path": "ION/05_context/current/OPERATOR_MECHANICAL_REPORT_20260427.md", + "sha256": "e71da2e285826ed1dea4c3a9b5be9d0fe245fc02a377d2a14af6ba1e7ceaffd2", + "size": 2688 + }, + "ION/05_context/current/POST_PATCH_MANIFEST_V124.json": { + "path": "ION/05_context/current/POST_PATCH_MANIFEST_V124.json", + "sha256": "059751f55ab2992b33990f4d03880e80197c84a42649fc75529c3b38f9ed52f1", + "size": 1701895 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V101.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V101.json", + "sha256": "0de41e742a107626e74774cb308d2e27b143363ccbd006f4502f197471a7c418", + "size": 747 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V104.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V104.json", + "sha256": "a9bf7fcfbc0c5714772195d079d2c3b189ee94337874ea1a8b7db2eb8763ebb7", + "size": 888 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V105.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V105.json", + "sha256": "5d1ee910575219fcfc1b2f5b0c3657e6a24581504e4b0eff38aea83cbe2614cc", + "size": 1399 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V84.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V84.json", + "sha256": "8b6e2e03a905fe68098a8407dddca651f058a6ad2e109a63836bf8540ebc032c", + "size": 1527 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V85.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V85.json", + "sha256": "9c2690d46c10a956447e0368b29d68e1f77bad3a11b5d0dbb9ccd4ab682e8a11", + "size": 1274 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V90.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V90.json", + "sha256": "beac7ea20c86d7b2533f447c825fa80dd4dd91b1cb3221c46fac316e41d08319", + "size": 688 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V91.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V91.json", + "sha256": "ad092823f07f4adac71c98447ae311f18b553874a67fac34a40f9740a62c0568", + "size": 616 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V92.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V92.json", + "sha256": "4e4f391798db474f5f293a30ba8bfc5685e1b702af3e74d849efa80b47646b7d", + "size": 705 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V93.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V93.json", + "sha256": "01c7f1e643e1e611ccc0f3ab0b864fdda39c0426b0ef664ce020a38c701d6221", + "size": 338 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V94.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V94.json", + "sha256": "481d61a7f35e4f42ddb2654ee5c7537c7b3f9117fdef6682cd207b0efc3011d1", + "size": 706 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V95.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V95.json", + "sha256": "2d6e08e236b97e215420e35325b0e33257b3a6d1ef21bc9141d2337b5978ece6", + "size": 206 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V96.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V96.json", + "sha256": "a10d90f8a90700d8b73b4d94f46e08670b7be1756722ca2d60881e85542c1e16", + "size": 1730 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V97.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V97.json", + "sha256": "97cd7d62dbfb88141bb4d2d6fcbebd5268fb008a6f1e02c63ce17312bbc74b9b", + "size": 1160 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V98.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V98.json", + "sha256": "5463ed8d83604387e7fbd1ff02811c463a88a4b97cec6c25a708cea25f728d17", + "size": 943 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V99.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V99.json", + "sha256": "3a1b20a7aec2d6b368b49a5ee618bd033a75a2dc73e0abb3e2c9184114a19a4f", + "size": 1266 + }, + "ION/05_context/current/STEWARD_INTEGRATION_RECEIPT_20260427.txt": { + "path": "ION/05_context/current/STEWARD_INTEGRATION_RECEIPT_20260427.txt", + "sha256": "c7d1441204feedb41241bef81766a776ebc25c51bc6f7306848573d532cddf2a", + "size": 1195 + }, + "ION/05_context/current/TASK_RUN_CORRECTNESS_AUDIT_20260427.md": { + "path": "ION/05_context/current/TASK_RUN_CORRECTNESS_AUDIT_20260427.md", + "sha256": "be70d722a1011fce9b9b4c9263ddb2d96cbeb9f934afae98cd3b1f3d45bb467f", + "size": 1678 + }, + "ION/05_context/current/TEMPORAL_CONTEXT_ENFORCEMENT_AUDIT_V103.json": { + "path": "ION/05_context/current/TEMPORAL_CONTEXT_ENFORCEMENT_AUDIT_V103.json", + "sha256": "13d7fcf1bc817e655068a839537c19ab45423e60e536a0c0b32e074ed223a285", + "size": 5715 + }, + "ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json": { + "path": "ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json", + "sha256": "578e3e4b3b44fa0c4f865f3ce58d4c28778dec47606f0ab5e732806181cc3991", + "size": 1824 + }, + "ION/05_context/current/_tmp_kernel.txt": { + "path": "ION/05_context/current/_tmp_kernel.txt", + "sha256": "279338adc19f0a0c4bd0a4aed65a36de19fad60b0476145a1c4f91edc8b9a55e", + "size": 2578 + }, + "ION/05_context/current/agent_context_systems/AGENT_CONTEXT_SYSTEMS_INDEX.md": { + "path": "ION/05_context/current/agent_context_systems/AGENT_CONTEXT_SYSTEMS_INDEX.md", + "sha256": "392cfa8eea6444d0a3f1dd36428c5905dadb32a4b75b76dcd5da3895fa9021ad", + "size": 3723 + }, + "ION/05_context/current/agent_context_systems/ATLAS.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/ATLAS.context_system.md", + "sha256": "e630076f6c4f81f146cf4a438069c8990e29cdc3a54c9cd31f96a5a740fdce3a", + "size": 1552 + }, + "ION/05_context/current/agent_context_systems/CANON_LIBRARIAN.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/CANON_LIBRARIAN.context_system.md", + "sha256": "bedab2a185ad8dc472ba3c8bb6a82fd36b766f144d452a6bd973fd9e0c546bd2", + "size": 1850 + }, + "ION/05_context/current/agent_context_systems/CONTEXT_CARTOGRAPHER.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/CONTEXT_CARTOGRAPHER.context_system.md", + "sha256": "91257221da62f9cd1ad57b8dbd64b08f786902d32b5afe650c650b326f13b4f9", + "size": 1937 + }, + "ION/05_context/current/agent_context_systems/IONOLOGIST.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/IONOLOGIST.context_system.md", + "sha256": "c68490fecdd69a5bbc0ba85189b6155991a8f86f7b555e231d88e1cd97f9db67", + "size": 1677 + }, + "ION/05_context/current/agent_context_systems/LEAD_DEV_ACTIVE_OPERATING_CONTEXT_V105.md": { + "path": "ION/05_context/current/agent_context_systems/LEAD_DEV_ACTIVE_OPERATING_CONTEXT_V105.md", + "sha256": "3dcbd1f7f1c81c30a9d02f66deffdc5d0c9466df4347946030a3a1cf6721cd4c", + "size": 1098 + }, + "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_CONTROL_SURFACE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_CONTROL_SURFACE.context_system.md", + "sha256": "264254f512885b64e1fe65dbbc79ee6790fdb7dd1abf84868d4d49d8a0f40373", + "size": 4512 + }, + "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_METABOLISM_SURFACE_V102.md": { + "path": "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_METABOLISM_SURFACE_V102.md", + "sha256": "e835f1f2e119f2b5d82cab25274197f5691ff20686afa181c1d5a9aa898741b4", + "size": 1156 + }, + "ION/05_context/current/agent_context_systems/MASON.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/MASON.context_system.md", + "sha256": "2ecce43cf5f758b5d937b85df2782aa6d381867c5d16cd748b8bf78641423b8a", + "size": 1734 + }, + "ION/05_context/current/agent_context_systems/NEMESIS.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/NEMESIS.context_system.md", + "sha256": "685127814d47c9312b944de43c33a4f0e8d0301ca4e19be03a7a4e6b2d041382", + "size": 1711 + }, + "ION/05_context/current/agent_context_systems/PERSONA_INTERFACE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/PERSONA_INTERFACE.context_system.md", + "sha256": "3b2d27f3e2a75d0f8df6009ba1406279a99a09633c8914f3f6170184a0dccbe4", + "size": 1750 + }, + "ION/05_context/current/agent_context_systems/RELAY.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/RELAY.context_system.md", + "sha256": "3b5d2a6c17af3f1c0ffffedf30dbe4d424aea23d2c315331b3146417976f00ea", + "size": 1711 + }, + "ION/05_context/current/agent_context_systems/RUNTIME_CARTOGRAPHER.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/RUNTIME_CARTOGRAPHER.context_system.md", + "sha256": "6412d43ee1d032b3c424a5a43f5854717d6c06dec4d7773ab5fa773bc6eb3613", + "size": 1938 + }, + "ION/05_context/current/agent_context_systems/SCRIBE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/SCRIBE.context_system.md", + "sha256": "6bad3d92b88feecfdef4622ed777390d77b2b04f3e558a738bbc5995f8bceea1", + "size": 1610 + }, + "ION/05_context/current/agent_context_systems/STEWARD.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/STEWARD.context_system.md", + "sha256": "29f4f7d4d5e0aa895a74500e651cae04b3f0b8eb8d09726a7f6d546b0de6e310", + "size": 1946 + }, + "ION/05_context/current/agent_context_systems/TEMPLATE_CURATOR.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/TEMPLATE_CURATOR.context_system.md", + "sha256": "0fa56e89e12dd09cae9344ac57cf721ad2fbf7cc3c373eec4fb15ec2bdfba548", + "size": 1903 + }, + "ION/05_context/current/agent_context_systems/THOTH.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/THOTH.context_system.md", + "sha256": "db39f111ce6b3fcdccfa70c4b560bcc1052a9a56df4737abdce4d243946b4dfa", + "size": 1609 + }, + "ION/05_context/current/agent_context_systems/VESTIGE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/VESTIGE.context_system.md", + "sha256": "c3e7dabfe1ac37c2168bb788b0ed9b86db80e0ec3c6653f22316bee4c9177bf7", + "size": 1703 + }, + "ION/05_context/current/agent_context_systems/VICE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/VICE.context_system.md", + "sha256": "9a797aee9f6cb195b1f459d6c33bbcaafbe6ac6292bd4cba63ac51375a532363", + "size": 1696 + }, + "ION/05_context/current/agent_context_systems/VIZIER.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/VIZIER.context_system.md", + "sha256": "8593359184dce2cdd6f73a6b08e31e3549af4d8010610e7bf21231da0a80fa0e", + "size": 1702 + }, + "ION/05_context/current/backups/carrier_runtime_foundation_merge_timestamp.txt": { + "path": "ION/05_context/current/backups/carrier_runtime_foundation_merge_timestamp.txt", + "sha256": "7a73468fe9dc60c416a6472af04280945c9495485bad16845e8806e87b0e853e", + "size": 17 + }, + "ION/05_context/current/backups/pre_carrier_runtime_foundation_git_status.txt": { + "path": "ION/05_context/current/backups/pre_carrier_runtime_foundation_git_status.txt", + "sha256": "8a3cc496223ee5ef18640db1efe5722ad547fb61d9dcb070398ce4c5149c3ba2", + "size": 65338 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213423Z0000_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213423Z0000_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json", + "sha256": "b58301d961f2e30296acacf87262e2477e18af744364df33aca62372aa76705f", + "size": 6144 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213935Z0000_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_step_g.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213935Z0000_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_step_g.json", + "sha256": "92d9da5c18617d1a4bd66dc457b0c659a048e5701d8e7f301d4167e336aa0b17", + "size": 7182 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T214342Z0000_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_queue_run.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T214342Z0000_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_queue_run.json", + "sha256": "b5a8cc098d87096aab07a504067dbed728f9a409fc4792c7640406ca466eb78f", + "size": 6649 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T220209Z0000_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the_42_to.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T220209Z0000_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the_42_to.json", + "sha256": "76d4d371b814da7d17f7c995584c6667097ffea218a53927827c20258feafc7f", + "size": 6725 + }, + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T190847Z0000_full_carrier_visibility_smoke_20260504_1838_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T190847Z0000_full_carrier_visibility_smoke_20260504_1838_md.json", + "sha256": "580bf33a500dd6f64ff6e04ac6f95713853a8ce5ac4733af2c4722f7dd98f723", + "size": 515 + }, + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T200552Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T200552Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json", + "sha256": "54111bf753f059c49addf65cb1d0e81ca5929d70a0101a391dd81b4ab96ba2dd", + "size": 648 + }, + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T202351Z0000_codex_cli_30_tool_visibility_smoke_20260504t202351z_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T202351Z0000_codex_cli_30_tool_visibility_smoke_20260504t202351z_md.json", + "sha256": "ab87d0d7e204df2c431a0c05d63f46fb20c17eff5e03864c8f9078c3899a8438", + "size": 524 + }, + "ION/05_context/current/chatgpt_connector/artifact_uploads/chunks/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md_00000000.chunk": { + "path": "ION/05_context/current/chatgpt_connector/artifact_uploads/chunks/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md_00000000.chunk", + "sha256": "746e5bab84bcda93f482b6f584c3e96cfb91df985cde53ab950606ba968041c9", + "size": 117 + }, + "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json", + "sha256": "ee848b95ebedf24844a584c1eec68ce30977b8a4f849951f208ee00c5ce37a97", + "size": 1170 + }, + "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T211434Z0000_ion_large_work_packet_artifact_backed_dispatch_spec_20260504_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T211434Z0000_ion_large_work_packet_artifact_backed_dispatch_spec_20260504_md.json", + "sha256": "5babeefacaf3b82f1291aa970989cddc38376abf9ff4222f8e04e99e46ba3946", + "size": 751 + }, + "ION/05_context/current/chatgpt_connector/artifacts/CHATGPT_BROWSER_ARTIFACT_UPLOAD_SMOKE_20260504.md": { + "path": "ION/05_context/current/chatgpt_connector/artifacts/CHATGPT_BROWSER_ARTIFACT_UPLOAD_SMOKE_20260504.md", + "sha256": "746e5bab84bcda93f482b6f584c3e96cfb91df985cde53ab950606ba968041c9", + "size": 117 + }, + "ION/05_context/current/chatgpt_connector/artifacts/codex_cli_30_tool_visibility_smoke_20260504T202351Z.md": { + "path": "ION/05_context/current/chatgpt_connector/artifacts/codex_cli_30_tool_visibility_smoke_20260504T202351Z.md", + "sha256": "46e1424f1d74f0fda210233faf1c31056b2987533e6ea5dfef9a048a015fb132", + "size": 233 + }, + "ION/05_context/current/chatgpt_connector/artifacts/full_carrier_visibility_smoke_20260504_1838.md": { + "path": "ION/05_context/current/chatgpt_connector/artifacts/full_carrier_visibility_smoke_20260504_1838.md", + "sha256": "365f7e18378f6b89ad18d79f0b642f1b465376d89771f90686d2dc1b156bf69d", + "size": 61 + }, + "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195739Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195739Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json", + "sha256": "d210b797459a8e123254331263e641bec1b1e323be1645c4202e141b1384e38d", + "size": 471 + }, + "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195901Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195901Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json", + "sha256": "166f750201918f1bdc7660e1ef3bc0c05a35c38b7b8f2e1dccdc3f0a4756f922", + "size": 475 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T190847Z0000_carmsg_2026_05_04t190847z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T190847Z0000_carmsg_2026_05_04t190847z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "sha256": "68e0f2ab12f8ed86a42949872f4cd729c9b8ebe00cddd6325ee9392db7a1cebd", + "size": 977 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T194616Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T194616Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json", + "sha256": "19bc04b2f5b64773a2d7aaac2cd333a16d7348aaa60edb2a162b379cf6429eab", + "size": 1110 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T195851Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T195851Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json", + "sha256": "0ebb786756c0ee38e4affc8ef7e91bcf173086c88bc044e634769f45ac665ad6", + "size": 1001 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T202351Z0000_carmsg_2026_05_04t202351z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T202351Z0000_carmsg_2026_05_04t202351z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "sha256": "8765784d9bb1b6f808b1d775bf663cf943c2bd88ddcd40689570ed68d4d337ec", + "size": 1227 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T204207Z0000_carmsg_2026_05_04t204207z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T204207Z0000_carmsg_2026_05_04t204207z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "sha256": "0c8f4c9457bca31f7b24f47f2c23261d79c6a96bf5efdaa08272a43acb3bb5fc", + "size": 1324 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/context_receipt.json", + "sha256": "c618c567dcd2ddd29e1a0b033a266c175d7df8ce084e6c719b0886684254050a", + "size": 1629 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/prompt.md", + "sha256": "9bea28df5583d4bd5f8d47d703e2aa094fbb282cc13930b5fd3aae939b043551", + "size": 3633 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/run.json", + "sha256": "4a2b8b598b44512dfac00e05ddd3b6747fdb1120da8cb84a69ab49a0e1b60730", + "size": 2514 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/context_receipt.json", + "sha256": "7d8900c1b0770eea233caf7c6f0c077853eb3a04b8291b6e6449688f9eb0335c", + "size": 1629 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/latest_return.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/latest_return.md", + "sha256": "318047eae5b2b3aa97e6f422e16446cedd87c9efd9e30ea49ef111d577b1f027", + "size": 6905 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/prompt.md", + "sha256": "6dec107c1f05150f78c67fbe9144b9f07b97595b5ecc26a5aaa33010f5e6c585", + "size": 3487 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/run.json", + "sha256": "e872ab18dd1f80a0fc8418f48481d0ad907d6df335203de05f00bae01f13070a", + "size": 3914 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stderr.log", + "sha256": "b8a2131c5a5326df7c62a4a3fc79bdf25d0bd6cb92f9f677a82f6be840b9faff", + "size": 1095022 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stdout.log", + "sha256": "6dbca65a6a511f0e3b86b59be08cc9dcab280126a53cd9511488502caa5e3e5c", + "size": 6906 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stderr.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stdout.log", + "sha256": "a52dff17641b4d862ec9a50d4cde2ac7c20e0bae6da278b1d133b012e5044ae2", + "size": 5346 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/context_receipt.json", + "sha256": "8c6dab269c2d0efa68849b90aa58cd11797abfa7518e09d6fe746d54a8d84a98", + "size": 2886 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/latest_return.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/latest_return.md", + "sha256": "41c17520e78712a4420133de34eaf8c26022b2ac1a1360b93171460911b9cdcf", + "size": 7449 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/prompt.md", + "sha256": "7b79d0a15f784bd00e571cdb0d3de1402bbe3b6eb4f23cc7fed2b820610299a0", + "size": 3380 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/run.json", + "sha256": "c46325dfe5b9be2f11cba6a2a495abdd62c3cc413c4a537dadbac00dd47948ba", + "size": 4356 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stderr.log", + "sha256": "18e3a1d83c581d50ed4c57eb17a301ce8fd915364bfe09de850a771a83359c35", + "size": 513029 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stdout.log", + "sha256": "81ff257bfdf3046a696f6402a2e076c909fcf8f5feb62e483d854b07b2b60e0b", + "size": 7450 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stderr.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stdout.log", + "sha256": "f24ea56ac6a1baf872e7d6490fd9607362ff90efaa5b7bfdb82171b4bb151d5b", + "size": 6194 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/context_receipt.json", + "sha256": "648adbfdda6b7561fdec5b5a5c6b8cae36759da98e91744cbf6005dc4ffb4152", + "size": 2996 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/latest_return.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/latest_return.md", + "sha256": "6ba9a780122d487f135bbb8ebed807ce86648669ab095a7ac06fe8ae541a7056", + "size": 7936 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/prompt.md", + "sha256": "10ee04c7144e640ded8817015fb121a5c8676da8ccb8f9c988248cdf260e86ee", + "size": 3397 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/run.json", + "sha256": "91f3a6212577f9afeadbceeb1396ac1b7777374877cf0b62239d5615c92f88f6", + "size": 4356 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stderr.log", + "sha256": "e76edc0db749948ff32808f5751ff71b620aebcbf9dcfb2ac24fe3543e76b58f", + "size": 563129 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stdout.log", + "sha256": "fd831504ac13f689d1865b8711c01442d0c90d869450be8d0228e276a95f077a", + "size": 7937 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stderr.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stdout.log", + "sha256": "0b8351e9cc1ba82c0a7177b3381dba25361f7fee833f86786dd9480b2e90db5e", + "size": 6214 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T023146Z0000_v120_live_http_connector_smoke_codex_local_visibility_and_proof_return.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T023146Z0000_v120_live_http_connector_smoke_codex_local_visibility_and_proof_return.json", + "sha256": "349b0e07bd1e4fb4e70931c997535750e3929be7378f6b13b0be5ec91de7ad5c", + "size": 1170 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T073641Z0000_public_connector_smoke_test_bounded_work_request.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T073641Z0000_public_connector_smoke_test_bounded_work_request.json", + "sha256": "5d8ead0a0e2bf84ab294e6a4bf339be2fefbd9db4bb12135e392d5fb1b34127e", + "size": 1002 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T174407Z0000_create_a_markdown_planning_artifact_for_full_ion_carrier_parity_over_mcp_seed_it.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T174407Z0000_create_a_markdown_planning_artifact_for_full_ion_carrier_parity_over_mcp_seed_it.json", + "sha256": "180e724ae1adde687a109b71d043ee027cf00c9bb71a37f7276aba4d28f9a99d", + "size": 2230 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T175712Z0000_inspect_existing_ion_carrier_comms_queue_agent_message_operator_message_relay_st.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T175712Z0000_inspect_existing_ion_carrier_comms_queue_agent_message_operator_message_relay_st.json", + "sha256": "000a7cb9d2813d9ae5167199603f65606669b3cc29523c9eeaaa8f6a3f4182f4", + "size": 2174 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T180446Z0000_evolve_the_chatgpt_browser_mcp_connector_toward_full_ion_carrier_parity_focusing.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T180446Z0000_evolve_the_chatgpt_browser_mcp_connector_toward_full_ion_carrier_parity_focusing.json", + "sha256": "2477b5d9117f550b507354bee933c224387b04a2058c919281ccbaed9238711d", + "size": 3038 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T183803Z0000_continue_full_carrier_mcp_parity_rollout_current_chatgpt_browser_connector_tool_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T183803Z0000_continue_full_carrier_mcp_parity_rollout_current_chatgpt_browser_connector_tool_.json", + "sha256": "c131eb39c97eb7d1062653bd889377d38501e9162173e28287bfe5e8e081e3bd", + "size": 2783 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T201043Z0000_push_chatgpt_browser_mcp_beyond_the_current_22_tool_artifact_comms_slice_toward_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T201043Z0000_push_chatgpt_browser_mcp_beyond_the_current_22_tool_artifact_comms_slice_toward_.json", + "sha256": "23807b25203e5ca7e000b54cc6335db70f47234b80323bb58732f845fb2d2713", + "size": 2812 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T203755Z0000_build_the_next_ion_automation_layer_so_chatgpt_browser_can_operate_the_local_ion.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T203755Z0000_build_the_next_ion_automation_layer_so_chatgpt_browser_can_operate_the_local_ion.json", + "sha256": "3fa238cd3a4f3cac53219e4ec638c28e82b2a5605fb28ef2327a865b6f53dcc3", + "size": 2970 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T211836Z0000_build_the_next_layer_multi_agent_codex_backed_ion_swarm_control_from_sev_gpt_bro.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T211836Z0000_build_the_next_layer_multi_agent_codex_backed_ion_swarm_control_from_sev_gpt_bro.json", + "sha256": "21429cfca09290bb78cee18d55d045433d22349a256227c6c621c3d9036d46ea", + "size": 3249 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213423Z0000_agent_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213423Z0000_agent_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json", + "sha256": "06b4608c7d952ebadabb8cf0d07f30941289df53125e0aa5e780303977f305ac", + "size": 4918 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213935Z0000_agent_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213935Z0000_agent_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_.json", + "sha256": "bdb57ae91364755e75e19f4fd063c8b773109c354977ad9d40885ec3c56a0aaf", + "size": 5460 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T214342Z0000_agent_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_que.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T214342Z0000_agent_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_que.json", + "sha256": "584b0c649f33c4d7c71378d0e6458a9380969d0868d7ff4e21512e3dda0c3803", + "size": 5868 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T215059Z0000_repair_codex_queue_runner_stale_active_run_reconciliation_current_evidence_ion_d.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T215059Z0000_repair_codex_queue_runner_stale_active_run_reconciliation_current_evidence_ion_d.json", + "sha256": "3bbec0ae83e4b884b7219b7745afb248c29e6ef05971731f32b9f62e33f02855", + "size": 2518 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T220209Z0000_agent_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T220209Z0000_agent_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the.json", + "sha256": "4b28eb2132a3298c8f015525f71f8bb5b61e48f3a6011bfee1b5ac823383ddf7", + "size": 6087 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json", + "sha256": "9b2153956858b38ffafd82d901b90623b2e9cee4f782a64296addc407b815672", + "size": 1349 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T225611Z0000_design_the_github_data_plane_setup_for_ion_using_github_account_org_ion_operatio.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T225611Z0000_design_the_github_data_plane_setup_for_ion_using_github_account_org_ion_operatio.json", + "sha256": "2e6843e98464e49e6a4e729962d3f39d9132a3fb0791cfcc76d2f14f5bd054b9", + "size": 1827 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T235100Z0000_implement_the_next_read_only_github_data_plane_audit_slice_identified_by_prior_a.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T235100Z0000_implement_the_next_read_only_github_data_plane_audit_slice_identified_by_prior_a.json", + "sha256": "fb3b3338dbfb3ee27470e8d3d8b58d8227cb5d46a5f92c44bfab8fd74e64df9c", + "size": 1703 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json", + "sha256": "c9887d399568c27f327f5df9b6aab0075c7bc82b82a0990c4fdfac7cac06fbc0", + "size": 960 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "sha256": "b9d8d3ab1b67b21ff914d7ab15de91c82cc4309383551fd7ff2038b8feaacc32", + "size": 746 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "sha256": "1a424fe33eddd210002780f6af3626286463a099aad5477e57ea5fb1d754fb80", + "size": 746 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "ef72296fef4b91a6d8ed4d3049894c8c8d0b00b253175dfc55290ff04101d7c9", + "size": 1743 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "d92ff5fb8c74b43fab917436079288725fb0b5b615fb98ea61a9bcea1352c23b", + "size": 1743 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "9c95d6e28fd39ad3261066786c30e4e610598b8df3f13a1d50d3ae20c9d161f7", + "size": 1743 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "9a85c265ec6246f967e8e4a7e96a82d13c66ca19724581302200ee6d685bde76", + "size": 1488 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T202947Z0000_use_sev_as_the_project_facing_callsign_for_the_chatgpt_browser_gpt_5_5_carrier_w.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T202947Z0000_use_sev_as_the_project_facing_callsign_for_the_chatgpt_browser_gpt_5_5_carrier_w.json", + "sha256": "0f32eef19046b664869b0b2d4a2c7c88238ab0f97f35468960c9af3bbe208189", + "size": 818 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210125Z0000_record_the_sev_ion_operating_relationship_braden_remains_the_human_sovereign_sou.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210125Z0000_record_the_sev_ion_operating_relationship_braden_remains_the_human_sovereign_sou.json", + "sha256": "8a7a8f6a4e8d1a5bc3e4e46e829cdec2422a2b33829af657f318ffe74a5f6df1", + "size": 1091 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210413Z0000_record_the_current_ion_dogfooding_model_gpt_5_5_pro_sev_is_best_used_as_a_high_q.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210413Z0000_record_the_current_ion_dogfooding_model_gpt_5_5_pro_sev_is_best_used_as_a_high_q.json", + "sha256": "3200c52e73b7ce64f4fe6beca1e650715e630a87f27f4d2c6de7e70485f33fdb", + "size": 1158 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210648Z0000_record_gpt_browser_sev_as_the_preferred_ion_dogfooding_workflow_sev_operates_fro.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210648Z0000_record_gpt_browser_sev_as_the_preferred_ion_dogfooding_workflow_sev_operates_fro.json", + "sha256": "4ad22d6f2139f15462423a2f007fe92998121ca283d21f9069580ef474d768b8", + "size": 1417 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T232134Z0000_use_neutral_ion_naming_for_github_ssh_identity_labels_and_local_ssh_key_names_pr.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T232134Z0000_use_neutral_ion_naming_for_github_ssh_identity_labels_and_local_ssh_key_names_pr.json", + "sha256": "8a226ce70db94ef7e104e71e3884b9f66a54ec5090f0c9e757ac9f469518fe94", + "size": 636 + }, + "ION/05_context/current/chatgpt_connector/runtime/active_connector_url.txt": { + "path": "ION/05_context/current/chatgpt_connector/runtime/active_connector_url.txt", + "sha256": "2f21fb7616a54715ce5d41b8223810fb16ab988a057f581a1d72f929f32ca4d1", + "size": 64 + }, + "ION/05_context/current/chatgpt_connector/runtime/agent_invocation_broker_state.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/agent_invocation_broker_state.json", + "sha256": "0f4fa702e8f8df95c31aa4d87804269b7c64b6113404c0b0ac27894cab56d613", + "size": 767 + }, + "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.log": { + "path": "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.log", + "sha256": "bdb55b52e8db4b94d9a06199e0917e0613755010ec1823f471683cb8e647e925", + "size": 4845 + }, + "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.pid": { + "path": "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.pid", + "sha256": "c5c0f1f7cfb6e37ffd69d552c67a8545c2213a9979df980c7371965480afe2a8", + "size": 6 + }, + "ION/05_context/current/chatgpt_connector/runtime/cloudflared_version.txt": { + "path": "ION/05_context/current/chatgpt_connector/runtime/cloudflared_version.txt", + "sha256": "ab8a11d67dcb012a580d095978c218a4ead1ea3c46a5f41e791ce30f2c2f985a", + "size": 58 + }, + "ION/05_context/current/chatgpt_connector/runtime/codex_queue_runner_state.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/codex_queue_runner_state.json", + "sha256": "43dbbf14ab8aba887123f3aa5ccf931e6cc599c73d2de4dba70f59eb9b769a58", + "size": 432 + }, + "ION/05_context/current/chatgpt_connector/runtime/http_preview.log": { + "path": "ION/05_context/current/chatgpt_connector/runtime/http_preview.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/runtime/http_preview.pid": { + "path": "ION/05_context/current/chatgpt_connector/runtime/http_preview.pid", + "sha256": "403984eac16a5617f33d8634921b3791b41da105ba973ded2d6fddd0321c5587", + "size": 6 + }, + "ION/05_context/current/chatgpt_connector/runtime/http_preview_health.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/http_preview_health.json", + "sha256": "194e45e8d6875928f2133469a49bc706387b77687416adba70fc08a12f634711", + "size": 1168 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list.json", + "sha256": "f40de6a278c44941fecbb73525fd5361f5a932429246804fecdd0d6edd567825", + "size": 5238 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_30_tool_visibility.json", + "sha256": "e1a222bde029da6918a85cd02ba52683d79c46e4676501f23f66f224c94f7d6e", + "size": 22800 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_after_restart.json", + "sha256": "cec4eb9ce00db4451b505cc14fec81ad272c6a5c55c6cff487829f753c4285d0", + "size": 8833 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_final.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_final.json", + "sha256": "2fc592109c2abca772ee068e7e728c56b75bfeb1c039aff640db46b80c55966f", + "size": 8833 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_carrier_message_sev_callsign_ack.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_carrier_message_sev_callsign_ack.json", + "sha256": "fa0223a59bbd45880758411ceb14382c9329a066f00a9fd354424d2b5831cdec", + "size": 1621 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue.json", + "sha256": "90b3c74ac8416545fb9d63c8804719a884cc7629c6f0c3f67ece15bef24c6c4c", + "size": 4484 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_after_return.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_after_return.json", + "sha256": "56f6985ab0c8daa912b8329acd17f3593139c943b8d1f97790072fff69cbcfab", + "size": 4894 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_latest_check.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_latest_check.json", + "sha256": "38709d30930421142d394c5715ed78951f4aed0fe795875174f6d42009c04dfd", + "size": 36594 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_request.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_request.json", + "sha256": "57dd4d71d0a0ca154d94109073e635fab897f32fdc80040a90465d766cc0702c", + "size": 1393 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_ion_status_tool_call.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_ion_status_tool_call.json", + "sha256": "e3a5d372341d0181c41366bc67820ba464ecb0e43458b2fd7d7406b775fae989", + "size": 11887 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list.json", + "sha256": "f40de6a278c44941fecbb73525fd5361f5a932429246804fecdd0d6edd567825", + "size": 5238 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_30_tool_visibility.json", + "sha256": "62dd5003b818de2fcdf8bf0005107c5a81d9093f34fa70dc544d446293373611", + "size": 22838 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_33_codex_queue_runner.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_33_codex_queue_runner.json", + "sha256": "49498ee4051b44258bd583f827454eabf601d18ba87e71c6d983c846d1e3a0e3", + "size": 24711 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_42_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_42_agent_invocation_broker.json", + "sha256": "24876b8705058f5330b053f24f72339c2d0fc5470407a92bf06242b7760dcd91", + "size": 28731 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_after_restart.json", + "sha256": "b20d2a2d318b0d59853542858b8c4946d951388f6ff315dbfedc1f945b86898e", + "size": 8834 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_final.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_final.json", + "sha256": "ba477f918d0b3f74d79de83312c16095cfc5bc72bb05753f3a7d60700f912c3b", + "size": 8834 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_onboarding_packet_tool_call.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_onboarding_packet_tool_call.json", + "sha256": "79c3462941504a33b370d5eaee9577630d0dc967e2046bf06fd4190da430d536", + "size": 23260 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_poll_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_poll_after_restart.json", + "sha256": "d403fc1cfe63718884bf1cfbed37e47472555763a51584c932d0a0b4b5832c2e", + "size": 2958 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_30_tool_visibility.json", + "sha256": "1b3c6850fb4b2004a17e05400ce991a8913dc119345ca18b95da9deda413d22d", + "size": 1621 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_after_restart.json", + "sha256": "3dc064535e6282894a069f4840721cf8665b8d8f39731e503cb0de921808ad48", + "size": 1340 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_cockpit_sev_callsign.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_cockpit_sev_callsign.json", + "sha256": "06dac53c6f1941487662efcb88b5b2a57054d7f2c885ddf0ce4c4576c05d1455", + "size": 414989 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_put_text_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_put_text_after_restart.json", + "sha256": "7984488ba62cbb1198741a30775d08780296a851dab837f5d13de5d09283a1a9", + "size": 1354 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_read_sev_profile.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_read_sev_profile.json", + "sha256": "096fbaa36c7159a7ec81b7533d239617688b5eb6aa97f23acb8c41658c4aecfe", + "size": 6614 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_invoke_prepare_only.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_invoke_prepare_only.json", + "sha256": "7523b4a950b03e332dc72ed376bd2e10a8e3274187365c54618da2563ea59ad2", + "size": 17574 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_result_prepare_only.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_result_prepare_only.json", + "sha256": "d4020ac429ee69ef43a83f53ff1c252ab48daca00ebe9361dadfc1a3ef1e29d7", + "size": 28313 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_autorun_status.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_autorun_status.json", + "sha256": "a8dfee72fa6e0c80e223cbd4dfe428fc76cc30ddc9b65e3896e3d588af920faf", + "size": 3050 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_process_once_prepare_only.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_process_once_prepare_only.json", + "sha256": "efa944bb473ece72f4ba48ef9585e3cc87f19865059df09930b7a57b7661d1fb", + "size": 11115 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_after_runner_projection_patch.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_after_runner_projection_patch.json", + "sha256": "87dc76e9946500f63aca3fd652d4e720cdf6a6581ded61008ac5bdd2d7160876", + "size": 4264 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_codex_queue_runner.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_codex_queue_runner.json", + "sha256": "5bc008ac21c9df18ba3836708280e830179d8dcb9ff57affcdea24654dea1263", + "size": 3024 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_put_text_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_put_text_30_tool_visibility.json", + "sha256": "667510430f49634a1bec0dfbffa609c2921e346ffa2b26e74d9ccdf883465b5b", + "size": 1688 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_read_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_read_30_tool_visibility.json", + "sha256": "8ef89015416c47d309d27869251ec06e4a4bfd5441e2a8b50b20130cdba8f3f2", + "size": 5780 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_search_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_search_30_tool_visibility.json", + "sha256": "88bef36e6f1fedeab393d3723b29e4bf063df8483a1e2bcac9cd426847a67d31", + "size": 2665 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_tool_manifest_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_tool_manifest_30_tool_visibility.json", + "sha256": "7d091ec10a0665da44055ace9114aeef304c15fc80e33718fd04d6250b3ea1fa", + "size": 24882 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_onboarding_sev_callsign.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_onboarding_sev_callsign.json", + "sha256": "b0eb1ba914a1b8ba186ca6789037ceda3a91080525fdb1964cfad033c4f09cba", + "size": 30462 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_after_restart.json", + "sha256": "e26ea782da439e41af693ecdfcd890ec4ce2a19bdc25dd58d0c529c717540e52", + "size": 2117 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_final.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_final.json", + "sha256": "4eac803fd2abf3160431972bf978029bf4f6d6b0e50fce043e2ca7be9d51b9de", + "size": 2121 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_201043_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_201043_30_tool_visibility.json", + "sha256": "4fa66e65af2ccc24a951cb707618118ae056ede56214809509ca691d0a8c1cc7", + "size": 2375 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_203755_codex_queue_runner.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_203755_codex_queue_runner.json", + "sha256": "eb35102f2d8490d9d7ab18d89e94ab5f33a5ff86b714af7050626a91c1063919", + "size": 2375 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_211836_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_211836_agent_invocation_broker.json", + "sha256": "716c4d68f03620b142e02a0f33178c2098cfe0871bd649c4d8aeee1ec74a2180", + "size": 1007 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_task_return_submit.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_task_return_submit.json", + "sha256": "f42d31cd60227a540bcd8131e1ad6176d5dde594ce038021a2cd501e3daefd57", + "size": 2209 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_write_without_confirmation.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_write_without_confirmation.json", + "sha256": "77aad1cd2179eea90981b39d03eb6fb4003161c91fd44d01d70dca410ac37ac8", + "size": 714 + }, + "ION/05_context/current/chatgpt_connector/runtime/v121_refresh.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/v121_refresh.json", + "sha256": "fb65e8aa6402d8361436ce02941a2a222c124edc4aec0a163eace1a2aa442821", + "size": 1365 + }, + "ION/05_context/current/chatgpt_connector/runtime/v122_refresh.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/v122_refresh.json", + "sha256": "3d620760e92d53c520d31a53afeff09d26a075b1ca1a0dbaad56e0f698994c17", + "size": 2491 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023146Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023146Z0000_task_return.json", + "sha256": "dc99ed32d9e95eaacf828d26cff603a8669d344b34b606f252fe448d8726e13d", + "size": 3182 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023221Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023221Z0000_task_return.json", + "sha256": "ce502ba31db9ae2cc198503e6a26b4d7a615c35cc002825179997e9da456e847", + "size": 3008 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T073730Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T073730Z0000_task_return.json", + "sha256": "a30a62023b25b460a90493d2ed252e7a888bd5e59b2349bca94ab231afd941e5", + "size": 3116 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174553Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174553Z0000_task_return.json", + "sha256": "6ef0c2e8fe4861cf20496427e93e747c46a45bcfbd2c70de07981aa518cd968f", + "size": 2971 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174618Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174618Z0000_task_return.json", + "sha256": "dd56a78b4f9ecca1d4f888ddc4512219092140dc63cd1bc0967ad2b5e3b662a9", + "size": 2821 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174648Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174648Z0000_task_return.json", + "sha256": "1be30ca0da5e95df1049f1b32aa7132a54b73d0eed5e7044f3cb7459505cdb95", + "size": 4039 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174723Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174723Z0000_task_return.json", + "sha256": "84ebd4a16539193bd190957faa8b6d0b2a5f1f23de455bd12c08e755a1928801", + "size": 3290 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return.json", + "sha256": "f1451b0702e9f21864f910c6531707ccbd4432c3203fd5a9d2e4b91fd4827dc1", + "size": 4796 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return_1.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return_1.json", + "sha256": "d8e995d5d6b1a000e11628f7f574ff46295f8ecbaf7bc9790380a27bc25ae20a", + "size": 4796 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T183625Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T183625Z0000_task_return.json", + "sha256": "d670204f4713496b17632d5bc826f045e3d32cacc916f18df6f43f0dd488017f", + "size": 3047 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T190955Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T190955Z0000_task_return.json", + "sha256": "a64e12ef12001074274f0a7e9779561d5b84e7724f168765d88a0e0cb1528a58", + "size": 5650 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T191128Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T191128Z0000_task_return.json", + "sha256": "e16b91c118bc552a9067f06739a4b365ef2cfda0427d780f9b84f915d353711c", + "size": 6075 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T192325Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T192325Z0000_task_return.json", + "sha256": "c2c989f038c63bc187213ae74d0aca42a606bd21c04129c3468d56f97cf07228", + "size": 2974 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T202613Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T202613Z0000_task_return.json", + "sha256": "2eeac691e2afbbeae34c6d6e84d944c7f838debf5c3b14b6797e4f2d8abc89a5", + "size": 5321 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T210025Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T210025Z0000_task_return.json", + "sha256": "82cfcd46331787580e84763151276eed10bc664a1008d7ae12b6ba60496ab00d", + "size": 5943 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T213558Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T213558Z0000_task_return.json", + "sha256": "7751c77fb8052656d0c2627966d9771974bce43002ca9cb14f28bfd8cb1a326b", + "size": 7041 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214127Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214127Z0000_task_return.json", + "sha256": "6c4a370ad73fe0ebbdd83b72cadbe38ead8e5723f9fbd863143440426b9c0a2e", + "size": 3653 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214229Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214229Z0000_task_return.json", + "sha256": "28dff7212fae7b28a7abaf677eb88783c552be96b755af5e7ac5d72b40f80a23", + "size": 3519 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214848Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214848Z0000_task_return.json", + "sha256": "ea8ff84d866fcba243f03bfd5fcae75ab5144e263ca1612fc48a251de721a48d", + "size": 5109 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215640Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215640Z0000_task_return.json", + "sha256": "2aaf3ac986de36a111543271caf951fe444aaa9572c94037a6cfd73d4acee4b4", + "size": 5958 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215710Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215710Z0000_task_return.json", + "sha256": "d795d8719ddb6c7c78d3d98d3c41fafbcf7cfe92828d9c0b099b82a516111ecc", + "size": 4531 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215826Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215826Z0000_task_return.json", + "sha256": "878b4987b4f50466601931595699003a6ff0b94973db839e1a5bc0938900c1ba", + "size": 4902 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220450Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220450Z0000_task_return.json", + "sha256": "81daf8ec1029e2552e622cdda5f3411376256659483946b3c574bcfaeccf6784", + "size": 5153 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220553Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220553Z0000_task_return.json", + "sha256": "2c06de187ea974851fede705c7fabc964f8454cf579d9305fba681f4ec8c9e0f", + "size": 3110 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T230157Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T230157Z0000_task_return.json", + "sha256": "68c9970e4930887bc03ee7f73ae241e2f5cf477dbd4b3111b0e88dfd55d4da78", + "size": 4144 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T235644Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T235644Z0000_task_return.json", + "sha256": "8a56ef7925645659e57ebf855542f76a91ffe87e9bf74eb6b67ab390bda18941", + "size": 4008 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-05T010310Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-05T010310Z0000_task_return.json", + "sha256": "91f098cbe618dd686357cbf6e0f4ead7897da9b0f22da2b38a3e4d816715fcbe", + "size": 4050 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_0001_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_0001_smoke.json", + "sha256": "44d0d3313c0bf19a87d63c3ca052bb6d32a1f2f607f74b52eb7e35fd0ebc8798", + "size": 1215 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_021500_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_021500_chatops_reentry_hardening.json", + "sha256": "314abc96d145b4e1515e01c57fa557871cd183e7c4117c1866af4d93c3c8c952", + "size": 1830 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "f653e79c63b9353a71f1582d40ea96507200cbe67cef531a1e5591c2a8db086a", + "size": 2085 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_chatops_bridge_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_chatops_bridge_smoke.json", + "sha256": "25fbf619d78fe25fee1b3c5b7369a9f742518b7d9bb396a8081636b3ee28cdab", + "size": 1137 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505t014904z_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505t014904z_smoke.json", + "sha256": "cd6987a4616d6003a859e7bb025eb37c358e66688b902599fb6bdd73dda3282d", + "size": 1266 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505t015046z_codex_work.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505t015046z_codex_work.json", + "sha256": "ce72a58b6f3e84690d11a31a2d423ca3db70d09c12ea3ca1623daf649bc2e749", + "size": 1376 + }, + "ION/05_context/current/chatops_bridge/actions/sev_yyyymmdd_hhmmss_short_slug.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_yyyymmdd_hhmmss_short_slug.json", + "sha256": "2e8c7b29f8b019dfbce500514f6ae6076582f098e0a991e60164b4b6cf16590e", + "size": 1115 + }, + "ION/05_context/current/chatops_bridge/artifacts/smoke/sev_chatops_bridge_smoke.txt": { + "path": "ION/05_context/current/chatops_bridge/artifacts/smoke/sev_chatops_bridge_smoke.txt", + "sha256": "9d55329582206063937a67b79fc15ef0dbbd92c07f210d55ffb9190154d63183", + "size": 35 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t005355z_sev_20260505_chatops_bridge_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t005355z_sev_20260505_chatops_bridge_smoke.json", + "sha256": "c9731635c541357cbdc0313fe159656cc733e842ffd0eaeb21d3a7590c655859", + "size": 1792 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t014907z_sev_20260505t014904z_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t014907z_sev_20260505t014904z_smoke.json", + "sha256": "0c8105289f099a0ed038de48eb309202ced324e0f40a84be6c78c7c193242036", + "size": 1776 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t015047z_sev_20260505t015046z_codex_work.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t015047z_sev_20260505t015046z_codex_work.json", + "sha256": "28f22f2b0e9670efa92d2bb545852d255e6fda6648f015928285ab8a6e613a0a", + "size": 2421 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t020928z_sev_yyyymmdd_hhmmss_short_slug.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t020928z_sev_yyyymmdd_hhmmss_short_slug.json", + "sha256": "c49a8d9a64c3b34be1ac98ab79fe8a22b48fc310dc38fbf8c1400b3e01700908", + "size": 2291 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t021106z_sev_yyyymmdd_hhmmss_short_slug.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t021106z_sev_yyyymmdd_hhmmss_short_slug.json", + "sha256": "754ea98f66209622167055af6de4524b9f13489a4426ec00795128c45c8a5808", + "size": 2291 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022253z_sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022253z_sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "e613060fd197e3e5a5946449c1f63e5fd01cbbd08c0f6b682bdd1d63d1477a21", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022651z_sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022651z_sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "928b6784a1dee446c245f4f017abb5bbae6089109ee0602959d0a76e59d3837d", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022734z_sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022734z_sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "87f3f5e745d645c6d117bbbf5d93af3b359a5a3272d67396514447eaa20fd2ea", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022944z_sev_20260505_021500_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022944z_sev_20260505_021500_chatops_reentry_hardening.json", + "sha256": "8935c18b748f30c593a8a5b3526b77c9d38dd60f5ba5b545532abea420209c88", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t030803z_sev_20260505_0001_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t030803z_sev_20260505_0001_smoke.json", + "sha256": "9eb6815b868f61785e38efb34c5ee3c12a360866af84c031d5b21e5b101e673e", + "size": 1680 + }, + "ION/05_context/current/chatops_bridge/runtime/daemon.log": { + "path": "ION/05_context/current/chatops_bridge/runtime/daemon.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatops_bridge/runtime/daemon.pid": { + "path": "ION/05_context/current/chatops_bridge/runtime/daemon.pid", + "sha256": "89d3ac92642c0a8503ef1384166a704a08b45c69a09983fa5e1386079abdbce1", + "size": 7 + }, + "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE.md": { + "path": "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE.md", + "sha256": "b858901bd527c257763f95b261d888f5c7a977144842fb801563a2e19dd64b14", + "size": 138 + }, + "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE_sev-20260505t014904z.md": { + "path": "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE_sev-20260505t014904z.md", + "sha256": "54f411f7d7fdcfe5fbadffe83d87335f848c0ffcbdf6c4dc3653fe11e8de5914", + "size": 166 + }, + "ION/05_context/current/codex_cli/gpt55_lead_mount_prompt_v126.md": { + "path": "ION/05_context/current/codex_cli/gpt55_lead_mount_prompt_v126.md", + "sha256": "09661a00df4bd270378cd9703f79b30db9333eb95e3f4461c11e2c69738da5c1", + "size": 7488 + }, + "ION/05_context/current/codex_cli/latest_prompt.md": { + "path": "ION/05_context/current/codex_cli/latest_prompt.md", + "sha256": "faf4ad5c5853b2e5132e07d266b30d48fb8811228a9e5bd209351f35631c77fc", + "size": 2076 + }, + "ION/05_context/current/codex_cli/latest_return.md": { + "path": "ION/05_context/current/codex_cli/latest_return.md", + "sha256": "e98e2127684aef30ac961dd8e2439910c8b4d1b0632e63e1d244223f5acc1f0e", + "size": 4517 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "1d5bfe174bac491098a8e3a554794717bf070fdb5eae1f5fa5cca45fffec294d", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "403945efe1a9f5c222217c87bbc10020aafdd1a62c6c7d926256f2171c15c3b9", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "9ec021d11215267c791f93c23b37a1483d9208f51b7432b0e15df29048969aa6", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "c8a40496783dc1512fae3ad604c0f301f43b179578e2ce87ebfa203d9633b462", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "d17b93f3e9ca20462c99dfe6c9fb9ad48d2ff3ba2cd6a4cb195970dd78f81fd6", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "02909167b466fb7c54c6702f8a94b416822783953e4702b9771550531e258bda", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "9febab536e3de56bbc3a025a561d335b5e61ff2604d60ff6c398c380167cc715", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "8ffe207eb739c8acbe01496a2ade2e2d4b7eec2bc2a43d70db63ef5d6a25301a", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "92c1b809a0e07a00cb10e2ac8060beb9cf4f06ccb541bf167e9443ceef04c578", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "7740c6f1bace7d89e3d5cb6477a215dc23cef20afc75f7829055f2ff1c5afba3", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "e17ba022ef3a636a8b9c129dccac29e56c29e00b8fdf2fc3d68ca132cb3c024e", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "80cd079628725f52c367486229d10d2e549556015087f583e539c3a38a3fc246", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "700d3f98c8bf0193a5b9bacf404cf37275dbab2af610775c084cc3746d6d8424", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "b6f88766a3abedd8f7c53b315416a4acfb802d3a8744f42939ad29782a876c9d", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "c764a00104e01f3ca72258f59de9e7cdb7d22278c88e5f8a19d42843ccd9a67f", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "aa29efec80aab16d9183a00a37ae51d1de2bac6fb451df3faeb278fc3c577a76", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "f2546d1d83cb89719b7e13005fc80600bdf9f3696e70811b525da781f6fd3b9f", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "cbd0799d5567a645f29c622e3943976e158c917a4c6d96326500ffa211504633", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "45e2a082e5bc8aec68baa69650c7df01483b053fb13e169090111fc58d91016f", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "2ed37da68187aa0863aef041f52366cf193c9ce28fdc794a528be88fd7a34041", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "0c7c86740a3b9f4289112fbe3d3f8473c966968fdeb05c79fc17272274305293", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "606bf934774ce710855e4a82cc7c71397c68d6a70fd412ef16edccdec3d6eebe", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "981cb1ccba81d8a612f356cd532d41fc9f960975dfa6fd9224efd35e2f7df487", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "f1e39389d73c2daf1c8d2bbb001c6bbbe2443213bc9cdd360b14eadee2bba444", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "088c3e24d5e6b4ee48a9268a9e8e13407924b65a9ee1c3592bb9dc5cd117b131", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "147e47e2558cc1a4a85c2b433d871f64fd1b8e77a1a34481fda60af8e3ddb073", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "2384fad48dbaca5bc6611e212a79d8c65594f0e27e86745ba404af75a2d21215", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "a6759195e2c991e22ffd737a715228135253ef513607462039b6f2cd43d71298", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "2cb199637aa2f3ad72916301db6fd707105013b68c7573afa1326ae8c2667328", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "b9d0a5d0e7474045dd28b1c5b529b3e15f86f9cc4b6cfdffe00139552728b8db", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "709d4d3c4e9eddef90b90e09686f853ed21c6965460a2384ce5a11821bf2a8c7", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "9b2bcb99f1611c8cc7dc627eda84a99e440264605efa2f259f74c54088b8d681", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "763adbec866f5fc3eb525477c9f5327630bc9c913dd3e3a17747445fba4f06b3", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "d96e98acbae668e9026d684443604fdefa2114900b7063490b6f51c6ae44a92e", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "82ca0b7aa8f494d9eaa16563b50167e5a2cc5e642b6421a642de0960d8604ac9", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "3a371e2081bdebc752641886297f45bb2d6d10495d55b73bccaa32082fc64bf0", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/00_trace.md", + "sha256": "a3875c680f5563eb3c7f8d11daec4a944b9b31f933470b9ebc7c24a9363f4b3f", + "size": 2575 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_session.md", + "sha256": "1d0f5323a65eff35db0abfec555d1649c80c2fc87479aee821f9b67150d8a280", + "size": 1285 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_to_vizier_handoff.md", + "sha256": "fb4723c15e42d08e8e23ef494e22fa7abe536db3ad01a1c021bc4bf1bc0eca58", + "size": 1546 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_session.md", + "sha256": "786e97b048f9ef1a08a4538f219992a3e43f8bfbfd9be1c4126f8c8381ef1655", + "size": 1260 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_to_mason_handoff.md", + "sha256": "a307a9bc7519f5a6f55cd96a74e9e444af4eb9118c333facc082307487aae8f7", + "size": 1529 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_session.md", + "sha256": "c5b5323a2b7b6ef8a01e71c7aaa9bd688d68908047d72d67440074565da3b9b2", + "size": 1228 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_to_vice_handoff.md", + "sha256": "12d176aec3dd06dec348a09b14a6c0c837ee9aa108da25901f7577dba159bf8b", + "size": 1514 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_session.md", + "sha256": "35e617eb13896ae4dfef85850912f3c9181d1e698f7fac2972d7393b9f002fa3", + "size": 1190 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_to_nemesis_handoff.md", + "sha256": "2b7431c5207ce23b40400916a8eb29df6772d880b156466e2c43cacbdfc10d79", + "size": 1492 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/05_nemesis_session.md", + "sha256": "cb5151aca86964d7fbe7228303ce7f2d52a22fb6810d511775ab8149a07bea3e", + "size": 1212 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "f4af30c661d2afc64731bf8af2656947eff61c5023fb02107f60253a1397c793", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "a3c6d248b8d01ace05dffb91149899518574ff9815a20502226cf51b099caadb", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "20d9bd838ca8e85ee2b16d35568c530b9b1736e3d394b4403b9554ca562a1dd8", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "5a26e90b17c35a57ea4e9bc98150f00d32233c457de6b6f48edf60ec95b9f153", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "f03a9742ca81bdd9462499ecf658a70a2fd28c9fa1533ce2504ebf7f8dd9565f", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "d73e5e50f07d6a8738a9fa5dec5bb27edf1c7ff9a5c8a059fb497feba88fc3dd", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "b2af9e2a05a4b22674da41757ccac8c5b0d5325e23157af0080d2378beea8906", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "9f352a65417388652cc3ea5e5ae7c177f40d4aeaf173c08ad2a6b4b868b4fbff", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "9b4b61874e765807ed49edd867dad2b0b13e8462cd54f794458274d80813dea0", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "0ad6de0098be924299cdeaa3f859b2ec6fccd6e10772240f2a1b3e50a8717e79", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "0b01b04726821681773879182cf6c278221bc02c2f87fc002406bbd8d92882a6", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "220a1c256cd472bf22507ce837b8ca31576485e1930204d4c22e34c82c8cf549", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "934150af1b5784187bf0e2aa10da6c7e9a932aa2c01ab98f15a3b4988a7de5cc", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "31506ca8376511691ca824c14817e2d9b8225cf775b4f97bb0363f94255fecb9", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "c071caf760dfe644ee07675bce6d3ed9b954bfd00a09ae64bc257bdd17ac33b9", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "ec467d37b23319b6b6fcc1d8176bf2713cdc877d744e2ce3b90bc8c5bb2d79d7", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "7bff417670ae00bbe513d18650bb64b22d881b85483b0f30fc566ad05e9c93ec", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "e862567c0ce2fab0d4c1b7e32927c5de71fc5dfc164865f25c179beec170eed4", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "4f51960525379295132ba8f6a6a9e7fd4c47a7fa192b6a7d2c943a4cead53c41", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "e60e8cebf34f6f098f65ce33bc2951f119a296608531cc4ce793f71628e13fa3", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "b6f9642727c55d0204a1229db688f9875b9c3b6464151c2afec59e0110806fe5", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "07007b59e8ece933bc2904509e69801aae3f236a38cfd86b9ae76f10f2d916ee", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "992b6fa559dca86f4b237ee18f4bcaae0aa9fdffc4c616386f49d618631ff767", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "dea52aef9125554a57085fd1ddd94b683456f02144dc4eccf958b35d476acff5", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "fd2f1cb6e5ffd9de66b0ffd97c5764be8b610276b818369d98859d17dccab449", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "84669c723265b950efe216630e67d70a6d23163b33b9840961dc699aec181252", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "342aa840a4ffddf6eb04f74f6a1349aef5c2ed65637304432332740753bfeb34", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "1a3a30a0c179389d2ba3c6da3a475d0f8262f90f834fd1e7b3cfa6a8997f6849", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "5ca75f9a9c2183a102632550fcc419e824c8c3b4dd82b3006a894e515788a89d", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "a319cc9ebcfd60f5a3df43d7c5995c94c36b731785cd265b342885a6721b4829", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "d254f78b2b5242a2f35aa71892315ba5f77d6d09e6db4f67dd4fc715b4abfeb5", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "9b69eb859bfd4941e78a2cea19cc7a81a0510874a7ebe5f0708a37d0a660cae8", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "2f137eb3f0bc255cb604a392d1012195e28d97724c54ca2792e789e2fd824326", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "8cbbec5b8739c7dfeeff493ecd0e4f52921867554fa1ff5119186683a2880f4d", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "b66e0a9a68214787920433a05be4771cdd2cdd6b9fbf1f214a37f49a9d89b6ed", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "0aed18b425b9bf164101df9b6a929f3de9690d53df72dbd5812b1140f92b63e1", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/00_trace.md", + "sha256": "59d25f6a361436e62bef87aef6764b6fedf4d79fbf9c872fa3200a6d2b34b680", + "size": 2571 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_session.md", + "sha256": "dd6e1da9de5b2ed5a6113c7f9a8cc888d7c5cbd7ec9163b98c5bf771e810f9a4", + "size": 1277 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_to_vizier_handoff.md", + "sha256": "9c8bbd8b839dbdaa85d0cf95313d07be9af0d2ebe1ddfcd9073ba9e8811dc654", + "size": 1526 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_session.md", + "sha256": "05868d3191807d3db1b8d1034b390dc58b4c2e926ccf575061dad39f940574de", + "size": 1252 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_to_mason_handoff.md", + "sha256": "8bbfb9400d4e0ce49342d3dbf993d62a1841bf7a6e5c8355101d736ba2816076", + "size": 1509 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_session.md", + "sha256": "446a0da73735acd77f935e33732bb2b5cc3fd8077194bfb9b07f8821ca419952", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_to_vice_handoff.md", + "sha256": "56fbea22eb23b272fda44ce2d45870963ecf7960647f1b6638691ea4fa8b46ae", + "size": 1494 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_session.md", + "sha256": "44b4f636ecf9b29cc6ecc542f72c721efe23109f69c87946590144eb54ad5bc3", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_to_nemesis_handoff.md", + "sha256": "52433263965e6a484f969876858500ea994686dd760b58d1b686d3044197c9e4", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/05_nemesis_session.md", + "sha256": "c2c62b5634b60664b57c4195b44ae918549f2e664dd36c776edd145c91886c9d", + "size": 1204 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "ff654468eb9addd3e2e7300fb4ed6f28f6cb93c25148d93f4af621ccc6b8621e", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "4cc8983f108048ca7a0f4cbfa094c33ed372853190780d355a36930b6e498030", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "9e547a3e065d22e70ea850cd789a7b29e6e91afa91381c89d5f8a8379069723d", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "f4567a429917bbde4d4511ec4bd48cead9423031ada70c6f7b0f64f4a726d231", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "a8c593ade243515d7beccad6d335ad623d809ca3e8da40a731fb3c79580a0ffe", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "40147f90daaf14f3f04403bec16ab44e1c3f51514e6dd78dcdfba60ea4d06bf6", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "5391cf382289ddead72ee53cb7401d445669535bda331fb560ff1ff41bbf22ad", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "5ea814bb6c9c2093fe76f9d93f343ba088b4e795fa1bf22d75c6627038ff83d4", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "18b49e6d7d2baf1c05c2578d8b1731ce92afb3b01533cb53887a127b25b1392b", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "15642b8ba2fb3e9e153f02ced7ea19b95d98a46b460e39ef6223908b614486a4", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "1553e247ed8b10b593425ef5f099475f9f9c01d7f0b86984ecd2b27c84cde18a", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "e107eb2588fec1e223b4eaf8d17c38a7fca6c020e72dbb31e26736d1730d0541", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "c750591dc1a06ce735864858c98051d046fc163df8a3874aa835288a5a190abf", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "5f34ec91d02b18c4a2cc915a291be1d863db7a7d1d7f37b6b8093a3c6f62aafb", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "3762ae7deb3bce1e3801e56e0c4641f689df94f920858be641b2a9f4bb088f96", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "e0358e6a5838d175d54bc6bfa41f8695195ed5dded84da29766a03c4d4542d4b", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "a9f88503ac80fb6cebc3e28cfa49aa8e3ff3b75478b0ba8e6e5cfeab6caedf87", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "64af3652c34f7b201ec584ed6233a496b7dd0b3957a5e2e457e1a297fb6bba92", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "baefa4de98df8818a13b015a8ce76acacbcdb10c78d04acaaa90c7c052676062", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "28898095a36e5aa97129546076a0c031cbdbc4d41ef22d2cfe0689c665759fb2", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "61dfd6e5216000d7806a677377a26b96b707ccc7cb5f87ee0eaf2256dea599de", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "a89e6031b89cca17ff70f479d53617640459bbcb21fce0dfd2874eae0aeeb6a3", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "5eb328563d50311fdbc07a6d607a2a0c0c59ef5c56769e9cc8d4771726cd1b07", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "05e8b85709d2f272e43a1c2ef5f81ce9f55a6f326cf3598d9608c94d6c45a76f", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "d2a50308ea0187ed5bc3c309c0031b42bc783d21fd0afdb03b34f53149b18af7", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "67382e75fd4050729901d36a6032321bff7b5ca6f05d59158544baf9403469e2", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "ae072d49b259764c6f2c7a5e3eddc0c9df297e5d543f6dfd0cb0869a636636eb", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "831ee14d075756b885194fb0b5d1ec89d9406286173874ee1b66560efcbc278a", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "66e5d6b76d86b1ca958fd78e05a31e6d0a736cceb8a9a7cd6bcf0117b561efc9", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "d0d9712fa8baa26589c2007089df568f048fb04d8271a1c9c942e6d4c4ee4ba9", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "bef46ae55c4cf790b4a553c6888247085a3b72c972f90920f1eca9ac4b255ad3", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "1ec88bf41b9934dbaaa1ae7816c59b88d94a0760a98e96734c596b7a45ae9521", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "b27d8842d1ebad3b6bfc823f5de04850c04c5a8fa54b1a754cd8556682392843", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "7850d051097e21db9cdea945e656e81b3a22a0f8d6112371485e630a69ecbf0e", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "c4ffe2b53abfd0936ce13546a2c6e95005d292f982e8b78d19e20346d53e272f", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "077cca4189715114dfe54f75e0e9ffb337bcb767ebf4581e2d5bfb57aa4b0b1c", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "ae314046ad99d6b77dd35b6035082d01cb47894810703d559804604f521357b0", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "31b17be3df4b92adab275f84b6d7ddc99ab6953a409ad08155e5c9a33170ce54", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "ab98cbd2ea3161200423ee7914cc0f5a47c28e23b64d55ea3788138ec41ff2a5", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "f20504836d2b45896d75a0b7e15e0a2ba42804346ed148ce82d716a145b2c3d5", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "1d76750d9fc660031f571c878f172956ceb15634322571dfa9322fc155a59dd1", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "b68b619808f359f916ce440f75e03efd455bd8018372f7ddc05e1e03c7deb296", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "c211ae3ea7e9ae52701c0942f631eb81cd9d0b59a828ee01686e618645e5b3e5", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "fcf8affd2a24366fd6227b582e425e22718e855ae36a247e2af72f3e58201451", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "af618ff62254187bdf4398af943e7db7083a0f6196223bcc89e960f394eaa330", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "d8b8d73b239e613e1f9e100dfafa6a0f2ebabf94d7d3184a30f2164d13d14cc6", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "e65f8f1b5cb6c056f174cf4feeef965480c113747e8514bace670eab93113ebe", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "0b86e386cd16a7b83c7434fff61bd47ee9c4f23affbf382a8bbbf44188cbd5a7", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "a56f819239892bb7ba51324289b106fdc0f356a319932dd565bf450d7a89486e", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "9b7014ed02d376ff45d9afd394544bc4a2a14783cc6426e26d9081ba9af81518", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "bded6d048e6b924b6d45ac361b2c621d89d5e73df3a2f9c629695c93f42ba851", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "c28120a1383049d5d915993917560c399da5641f51c7e6e717bb20944a6bc4c7", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "c0d3f33eb22b8fa808b865080364cc57378332b8dc253d5faa5bc0223c8bcc1e", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "d0431bb75a7c40999c0854ffbd5a85e532ee7e93563261fac1a50ddb990bff83", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "54968c39a0f1ff0770d11235194ae9fc40955d71504e8dcdffdfa1093ae5503b", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "95adbc5d470bab98334efd09fea3e25469d11a3286754976cb3ce4d874c5a3fd", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "fb0168427d66d7d3eebc6e575c98040fbc6a96ebb1900e3bfc5c5884b305bc85", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "7759772d98c6f7ad836e25bb9db7251d8cb2ac41131c7880b60298655c13aa00", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "b94afe0cffe37b1cea5aeac5122e5a96a731c6f7da765b1e0d4d43f920934995", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "2315e6bd741044061c58310fd843f11c4c2b77fb7b5140e592776ecafa17f0cc", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "4966b269af46531b291cfdb8a69fc809675eb2092b941f2018463ad9f61cf9c4", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "2392c3077759a0f921b843c06b7781ae353d58a19fddbb3dee61bc5cdb146c3e", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "21a00add4025e4a3b9b5b360fba872da057fae0697bd9c2290493f1fb4ba5258", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "7780ba0801f233c9c0f123801085f2bcb91acbf5c969a98e0d8e59b93ae9fff7", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "4f4ed4546414e35ba5ef7c0b39b53323350ebc7e3866454978c2a50aab23a44f", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "ec09321202079622444eaf070edc04fe6c74149904b32f974bc8782b4d6f6c73", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "aeb8fd299344c7f52057c0d77d999571b2aa987579deb6408208474ff7a17ea0", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "35d5662716c67f724e50eb08b8b5ccef60e232fa9c80c9ff25de90692a6e37ef", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "d287c168a19ea472571ffb480b808cdae50e9612fde604100ca35f0fb91c56f5", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "8ac25e48d04edd7d4f32da1974906af45c2827edd50f48c922ce5c43b5ce71d8", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "c3a8fca832c648ee3017543b2785c1cec7857d783d2a4c0b22382d7409e6afa8", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "2b5358ab54ff3ad0483ef127e1002d34404e85424b0696a76f6a1985bb208793", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "5a6b2ae75b8c454763bfdbeb68ad97480ffef8f09156189bc83c664541ace6c1", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "908c5ed8dd87c2a67a32e82a208ab562b5088985acdceebf3e6a6729894e3a08", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "9bf6d91f04624eb004cb9ad51e67ce014c3f91022c36600b9604d433feff6a03", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "233b2a894fb403afa8ae2faf574d4e882686de714f7796f0cb074530e3eb62cb", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "4d3da5a13956a4ec537089a65537544f638e153c1ba70746664541ef8a86ebe0", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "c3e3125f20e2d29102d99a3b2bb9257d81a06ec5789629d725d252caf39ba834", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "5735f92c6b2ba580570c2f8fab0e8f281fc1ebb659eb718d2033408400eea1a6", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "aefd26720938c62ca58fc2f7af0bc8ae7c6a8673d23c138c851b9e0908ce106e", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "6d227b83ac1488d3d94189c8dba6037f3518e3a7069facfb90578057726d4b8a", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "0deec58f9ed523d3f32f0638fab587438021c79abcb58e5537a8b90c8762f57d", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "77ac2ec40e2c1e8836bcb57babb2c0840c280afefecb602abcc35721ccdc3418", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "31a7718be4d45e34678e0224925d88e4d945f7bf59e5eee4fc8646e071a9564c", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "a8131c66a6a84e5e6278b1ebef11542af2175b7362cdcc99ae908373b68e4054", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "30940a37edaa2595fff675f1050ed2ccffefefa9e98e582c9c572a8b8fbf189c", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "adc6751307f605063f5fc0fa153ac31af4e5ef1e66f87cf9fbb1bd531cb6d4ab", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "248913544ecc88b0d3d866a778ce2051a75189a2e67d21501977e1cdd888627e", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "3298a620e2a5321d9946db70ee4665c0ab92f40bda0df36852cb8c8c49d6ffd4", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "372988b1e7b0ea736756ffd2d58465bdfcde808a5b4ee545526adb2d9b51570c", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "f6bfbeeafbd7725bff6e80c85ba8702866e10876905561abcfcf2178578b1262", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "062edf747de2cdf13a84aae9d5700cd29a3b51ff35c3a7f680ef9edf5d1ac3d6", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "420a645f7d8877641a21da0f7ff9f8d152daf6cfa746fb2618d378e727c33f20", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "46d727d5030a811ceb8f838a6071ca13f92b443d164f09125e2afb60a32d02f4", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "fb37a4130c15bf835c9362aa972ed241e087f9a1cd33e15dcdbdfb16f71be9ea", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "1c868e3fabea622dafe8592ad7a7e2701aafe8cc87b346919ff4f63ace9e2abe", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "800f45e2b1c20e0214f17d274489ab89fa13587cb4a39fc908a027d925eb8505", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "ee2708d34107483b79f46fd0de98dcf2e69c89095034f784741f65ff924f98cc", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "95326a7cb865da6265e1647344c236052a57b9b2cc63838a6d98720f9eb47d45", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "cc15fbcacd8d8dcb6a9b664733653809c5c2c8122b22ab241fa90a5383eb874d", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "4926eab9989bd2bf788720d87a773e19c9622399281600403d18b0fa51f5bf89", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "4847aef79933d30bde2ecb39595f1049684b6516d2459a00f6a2a65a4b431cad", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "18ba1b7faafeaa591d6fe42dd765df055f4c179cf3becab603c51cba45d4ad24", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "353b8440fbe566d3e353182b1e258b904a30f88350d8c8c5a26a97170be3022b", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "04cf8f1c78742df19a405681b776c680cd34d4a3d72df97bf62c6f85456cee19", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "ec7a043ffef90132f8a5e77d5a7664c62f1835872da3040f5a29b819dc99530c", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "8431042572578c6928a96a9a8c627604f4924d59883503336ac47dc5781a760b", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "0acc853941ae4834b55bddd7d195a557c36ec04ca57582535a2eddeb334a44c5", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "796000dbe5b6f4acbd5108002596c72ed866226f5533ef5fb8ac2cfe5995b83a", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "b0f8f1cd5f70e14fd02f56b6becce5eb226b8428c486d31df11b38c31ea7bd4c", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "3ab6d5bd9eff09fe91c5b5a6ad6fc87c886e6c89fc6d53bac09350f03c4d85ac", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "e3d7eaf54e394e31e1483f2ae7bc24a18361ea3dde3d09b6877d3c5ba27bd230", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "c4f2b0db7814b73e3448781ead94127c6fca09dc071057f38770270abeb117d3", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "8c388a5e56ed46c99df7bdcd737b826af69963cf03d7fe9b6d46db2776ef605a", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "eb5b6fdce84ae422c64debda49f8c249cffad1356db87137f1098c2b1e817339", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "0a60c0eb12282481b38c3b1cc0b85ed5006e31890974ddfc15626bd34c6f5114", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "f11abd39607d444512e69af34327ab943534e255396c59a79565df2eab525437", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "69a8bd34a198976b17069d77eb85608c5a08489dbb54493b596402982209c9e6", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "07a37ab3a981012035e1de213c70f715fac43d406f696f76a4bc2b37e9511573", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "19a1cb57524ad1bf872e41b4e9b69d6ef99bd3b766b60f303c1d841c182e6213", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "a2fd55d709874dc83a0ec0a5a70b5af80953750b818104c3a4d3e1c542924b60", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "c4ee83be9fd19a81dc89857ddc36075e467bfff1c2facc3feba1bcf80228fe9e", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "4cffdc2f26c18357e03d9de5f781e563e55c01960fccfd02e0234c7c77e1d46b", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "f062c66b5ee503449ee61cba10eb10f83d3becb3efdb05825f95d8ee4e19f8b7", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "eef0bc61d1ab17bfaf6823da38a0411855f126ed407e5635d479e7cd3348599e", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "b3074aeb8a8d673ef3c1bb4a1bd4fd4ea71d460d7a01803b0b45ef8003f42b68", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "541fb8e5480be9af7805fa68285e7712b4f75cbeafe089d3e67b64175d1e0a15", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "b3355a432edaf41b457f02b5ceeec12c4b0bdaf95acc2fabc838453142350103", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "e1e86135e0e48b88d262d91e22d6531f8c80883c7678ace1d5b44bf3290ce2ef", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "7c6438169e34064cd839b3ef22f1880c7e59c7dce7529fc0cc1c02358760429c", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "967596540b9b5c2997f562f43363876e10a59f3876ca90f7584040727a17c484", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "c3718330a1674ae3190ac440a8fb2430c05142b1a28b7209564427280cba9ea5", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "7aa02e1e8049996fc5be5b318320f3ed900f3fcbc32fa32df3f59004037ad3cd", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "9aa2d13b8e94b50f6770262e6b487f852e44221bfd148aaf7b1e4f094d67d6d1", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "52c65aa5025ed092e5c7bdc56804e5ee9babf3e192a72b05dd2343fa705b02ca", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "5bd91a87bd4cfa0ee0a02f13bdd538d0b35c6b0bb4d18a178ed75feb43f1ec48", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "774dae2690a44f71786f15bd1996e03931796873c07f44a750dd2442803fd2e9", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "dd2f3fb3803ebf821b3e538656c35d33ba20f844b332440e0e47bb2f6b72e09a", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "8a1150fd1032cd99192026970519310a894abc4c951d79ee85be22edee296096", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "2d6701c6043693d414549ebc0d4070f2ba032bb81addbeadb4d549003d799b89", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "dabe89df2e4be1347d83613dca700d1fe40ac7e804fb2d7c49be10ee4fd48891", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "0f342a0b9d658b12c2b464d08e387ccf2709ffd76e348442e999275ac961854e", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "d5ae71329d7cad491e32931d8eea988633686795799d0338dbf225f963b2ab38", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "f8f610b2d335b5080a1b854d349f1cb428dcf4d11d614e42df8ad4dde873daec", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/00_trace.md", + "sha256": "a0c20613e4fd288365ee9adcd97eccd93e43db5b78a62331d8459e61c31b6dae", + "size": 2553 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_session.md", + "sha256": "aadab02a637d541b5e7fbc60e8e59d008537427634e366c3d4d30614dec8618a", + "size": 1241 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_to_vizier_handoff.md", + "sha256": "6858d3b67a9f8faf8d663fac1718afff06f55da939c43ef248647894017a46ae", + "size": 1436 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_session.md", + "sha256": "38bfb5d2e18bbd25cd36441bf07c9d9b19552e76ee1597757111bd9238766ac2", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_to_mason_handoff.md", + "sha256": "ac4fff4e4c39dab6d816f1788d8df001ec06c86be3005355be5aaf46774e1c00", + "size": 1419 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_session.md", + "sha256": "c65df1e15da3661b905193ded2e126d94f07049c331027fbd0ef2520e2341a09", + "size": 1184 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_to_vice_handoff.md", + "sha256": "81ed53dd9a2fb64bd3263a89f5595e0c8ba67e5d7d06b5ded353bb907b188ff5", + "size": 1404 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_session.md", + "sha256": "a9c9716cea79c75867b25c19f8fa38d0d3c9fd2f4519985856fa7e8725286718", + "size": 1146 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_to_nemesis_handoff.md", + "sha256": "0fcd62f4a7b31e1d5aa235ee3303dd52cab71c9fe224c87ef26d2fc8bae90729", + "size": 1382 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/05_nemesis_session.md", + "sha256": "c965c85e21064d8a2010912b7a8d6c4b2aaea18ccc5a9bf99c0c7a5d2e9d9fb6", + "size": 1168 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/00_trace.md", + "sha256": "6d60386fb937d8a32ebed34521a427386d539a461248f402bd88fe40d7a83679", + "size": 2658 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_session.md", + "sha256": "4534345fbd83a978fe9f04cbe786a18a92b4c420fcf6d364874186f1e0c9f510", + "size": 1451 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_to_vizier_handoff.md", + "sha256": "6ecade589ac4bc8043e6b4c5ae8834e94ffef0684f1dc094d0be8749d2b0157d", + "size": 1793 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_session.md", + "sha256": "8ca486313b727cfbcdef06ed3c358379495f7378fac48448e9549070c752ae3c", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_to_mason_handoff.md", + "sha256": "aee7f2d304baa5270c541caa68bb9e11075ed596dc7c5bfc1578251404dfd3b4", + "size": 1776 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_session.md", + "sha256": "2e368a305baff753e78bf8ac47535632e3c535837467004fc5f8aac65141d442", + "size": 1394 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_to_vice_handoff.md", + "sha256": "99e8d0b6aa7741d2aacb4674ed4710bbc90f3ba9ea1c75332981ae6f141a2b16", + "size": 1761 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_session.md", + "sha256": "f936e0abaca23ec46bf9135fc67aac49c2c46416abba0b99d2e64e356c03ae71", + "size": 1356 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_to_nemesis_handoff.md", + "sha256": "a5f2ef719cd38a8fe43ba2375c4e12d31591c12e3e29cff734874b9a3ed16fa7", + "size": 1739 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/05_nemesis_session.md", + "sha256": "5c045d9518eb1eec73891ba86200a79bacd2df0d662b29c8c69da92bfcb9e4cc", + "size": 1378 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "56e9acb0c7ce4bd767341a20d88a3937dbb57a2bc5693acb821468010ca7f5af", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "eeb568136a3d7e6b9496e18fe16e4c9b2da86feb56d8d149dbd3f8fdef614ede", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "961f3f5d6e51e6bbb248d8c168d5667df2cb39215dbdc8e6617970ead520a135", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "b71b375e66b1ec674f7a100497ff1680b6758d9c0d515b58ab829bc7d61a702d", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "0a25b090a3de60ffbe9d5be0b5b412338527905cf600762dc7a72dcba98071c7", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "eb84321760bc15b1a36fce35a8bfc42b52e129924c8f22b9e937f3bbcdbf2ab9", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "8802dce50f290f0f3f70488ea6d38749884c111e32e122cbe0c960f0404e94d1", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "fc08709b1ec7bd9d3c7c51023e94215b2e66ed9856f8692b931becaa73fe9536", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "ce208c283821a9a4b55862d9122824a4740cd5c30a5cf72a544baee1cdff3d1f", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "077c3101faa86cb36de0d60923b113f1a6fb6f58f279dc4bef1eeef80699d862", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "35fbbcfa5c0fad72f18213dedfcb7032426fef54d635a4679f9b537edb2d0e6e", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "975a2a4d5968ed300cce09f7cc152f51eaf5e7ede0e60a268a29df767df0c78c", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "3a37e023a74421cbf1534c99dcd1facbb5a89b3e9c3d7e43c5742c456342581a", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "4789eaa4bdc010d4192199f5842c4dd0cf480996ccc72f34349ea2cc4e28666e", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "62c67c1a7378d408939e135d549d7d6d031e0bfc5f99ef1298c58b99c94fe8ae", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "b4dad04fd2600abb1bcc27dc51da2c2bb26fc9fee439a75555d83b89bdd68bf1", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "b0d05ca646efc1e5ab2efdbfe6309d6b54daefa8fc4bf44a59b9198b76de9eb7", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "98a6a79f951e8e0d885dcd45554ec5d15c51d3d644ad7e5eb165fb2ee0f92f98", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "28a1943df0ea4ee1046108d597e966aefa132df806614e24852e05c2759b4331", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "5dd0fd45c3cc5260dbe719e6d6a3c331c71af6072e6591b8c57976abbfc88cd9", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "2539a02f3a8bc124dcd5d9272f03891bf2ef4265c48811e79162881ef16ed72b", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "4b56199d3e633ac7d4aa835df08d133dc2f1f42af6a01cbaaf8e215a73a4a711", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "1625bda21b34c556bc5d1f1eb8586e71dd3c9c83c1e844ee453b1b4ada7be204", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "e596a34bda714e08201be62b790a896c99d87f7eafc9c10b8d82cc13dfa721df", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "fc9f2a549e06c2c758452c81c27a54169398c1f31a9413a33b2d7e9a45c12661", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "d8ec90ed9646fa693c1dd46d77934cfe0ae6a4493c05673b0816d9c127dcf807", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "01e40a5ca25219511f762e3ac2df7616eaaf857ec2b9429819f45427b322388b", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "b122256b2f2de70e5189e71f147c2f8297c632874994b02fff769357df79a367", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "c5bf61a85c38f722e38ac9bd4abbc524ea2a9d50325df7cd7745d96c40b517e9", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "9fb6bebe6881eb577994358da50cb54d209cff4de4471e331b19acc0b874fabd", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "6f7f97cc653a174b1262f8f294c3fd17f83e41543eca35c39336e2b06cf98973", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "1bf5f1fae462c28b583207fbf8a16068ee8958cd7cb9786d1171fe8341cf8d68", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "23a714471886a0816b31de2794c3eb345db93368437fe10454e56d5b00c370de", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "d6c4667fa678d33c42aeb4a644839453a3a8f26635eea6b61590790d8adcbd84", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "a8002a22f9ef23c778ebae6108b2f51c672b7fc613e09414579f33a8323f68e6", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "bf1f88ff55b5bdadaa390c47a4f8443a02d8aea3d53a2dc538fc2c9dee895014", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "82b1fe24063f7d7f6cdd61be732c929308230877f1c67d82cd81c69d9a46686a", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "b2fd50ff9ea71baeabf3f8c1390f5c125c9c43a025f930cc41c503bc1e8090c3", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "0ecdc45dcfb4bf0819a66709c909676d2bc1b216880049397f8b166fab96b9d8", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "ad4fb4a152f40092388351ae11b2e35d8994fb917c62549f8b0916050d98f3ac", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "7ff15fde999da9690f62c603646f4123ae96cb36beeb629aad0f99018a15e37b", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "e5b3080017eb35145bde24472695b0bbff24abb9c80b04fc221f859bebe05cdb", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "180ef1b81b9a37b214b54057a8ed569437ec9394240ec97e6b880d665ac20e75", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "66ce6397fdfd2628594db004a615991bb1f01a3c2b09967238c305aa77baa19a", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "ef0fa5a537b6cfc3930dd9fbff1e496a785dd8d0ae93802329f5fa815b77e7d4", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "d00ed3bec92c7a4b4e929e566b064c78a6e48c5ef5c69f7947ee81f4cc8f5e80", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "81f277f551b90fe285122ac8a7a71ce566ea4568f5843be4c84b77adaf146eab", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "3456c3b5cb1adf0aa172ade2889d8c3adab7b25f2ebcf2a89770d6c1e382efe6", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "47f10c9d5a41b849a7bf9b06d8cbe421a347999bfaf67fb584f9d3b1c241da95", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "deab41bd037fce1fe0351ceb7938fcdeac8c6dcfbd845078f046e65f3e6602f0", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "dddc3dd45beb1cadad3b81f96ec3d6fe987e595e36982d2ef679f51f9a206149", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "fc9ce3e33224b3b6f539dbfc475d5bd6a7b148cc599762543914547ce0cdfbc1", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "66f39b0f861ee55b081bd00760f9af6528d98c4e5bf38e44df533c44d7362910", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "77ffe51ebab4828383355d0b1e46159ec35082b6824e313221bd35df4d1e769e", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "c98fb8d90f62597274c03bbfeba87d261282195fa0addd3151a3f68f8d75353f", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "d5f654420174ab2167fd4d5abab8388c3bb79f6fb82fcb747c34f09188a9ccfd", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "b0ffb866c7860cdbc62a6329debb34d0904cbff7aabc39881e4f06e00e87bdce", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "695a44f262f3a456cb4c17f9588e7c38109c09231a869d2e2f7f320045b167c3", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "478c2caa8f7b1ef76e760d90fd96b8bd988a737ba777b90a0e655b7a306502b2", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "df06c8ac6830e3d52c765a6177038ca64a05d1e785a0f59beeaa4516e13f0991", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "a9831a7d6f8b17db28be8b9dc519e421f4d5f9aabbf75e57e775842cd29c03b9", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "5a2db51e25f6cf6aacc18aad12baf8fbf4c66e99cee53af6af800d7f4fec6c94", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "75e5538bf57a6464bee03d3b196c095399384b7bdb06ede32dedd278cb2b2df8", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "c9f2facb7917662beca0c9231f8c69f205b0ef37c876e09e78618f5e343c4552", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "2d8bf4090b0cf0f68d669936d9e2a7f128755841d1e1be57d768c7cba32396cd", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "dc0f2bae8c60acde49ec06846a98cdadf43503d11c27c55ca7b25f8de4034bbc", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "2da87a350d75784a2accd69cba67e44949e2e3d28b8258f5c27832557195f61b", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "cc1f61b1798966f5b0b8f8a287008865f657143e161daeec994350a05e0ba8cc", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "86dba36648498ea09260c64865db24ae9c39e542746cd54b6aa0464f05134930", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "f22c613c384f7d0825475418167bed945d8c08bb5182cbf0278c8c4e1fd4e85c", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "e14f5ffb0f71bce52aabaeef90baf02adb3bb6090c26603c7ff13f6d798d6d77", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "b169410a9cf744c72f9735ad8d1728a2951de0a3493f98adeb9905c7bc475f2a", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md", + "sha256": "5a22f998a7c7ee3bf1ac9d2f71f80a74365f769dc0d3b0607ce1fa758bae32c6", + "size": 2599 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md", + "sha256": "b78f7abdb9668ad9517982eb4475207aa30aaa94a0e8184c7aafb7860d1b8f39", + "size": 1333 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md", + "sha256": "dbdd29b747749cabc5f92ff886c8ca3dc6d39e11fbbdb75349ddc0c6c88d7023", + "size": 1651 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md", + "sha256": "5baef5e2ca676b2e005408ae226e94f48ec51db5e41430efa203e1c5fe24a644", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md", + "sha256": "3850bb1f2c4c803938f993176aceb722b5f3449b2ede6b101caf087d1a881485", + "size": 1634 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md", + "sha256": "f514a5ab6a0453044e1917fcd1fd8a58a06de5d034128cd6afcc40b2edd55798", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md", + "sha256": "6792562eab72275d79421a6f86a4f74d5728dde98bc109c676004979c47ece81", + "size": 1619 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md", + "sha256": "6f070cddf242392f6e17a20d518ee242d68b24bd9e4404141673b636f5b31eb1", + "size": 1238 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md", + "sha256": "8346f0ab33bcead0e7feb0d508c3de4a0b7ffacce94a0e3c594082746d8aab49", + "size": 1597 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md", + "sha256": "f51c50e1eff53311e343d6b5490f7e4bbd870325f1023055ac7667ea5d949970", + "size": 1260 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md", + "sha256": "5a22f998a7c7ee3bf1ac9d2f71f80a74365f769dc0d3b0607ce1fa758bae32c6", + "size": 2599 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md", + "sha256": "c842ddee23dbb0a101835639f01ca16ec3aa528d33cfdd526f98a116d1b65dcb", + "size": 1333 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md", + "sha256": "92495ce3c8ef56da5d9954720eaea7a850850621ee2e1a6699455f19509f7f4e", + "size": 1651 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md", + "sha256": "e55449c48a6168012238a55f4e3da301f01f06feb5c2d038cc216c74929c1e87", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md", + "sha256": "49301858a4029d323fa8d68f60fe7148f29fdc060cc327946ef3b373b7d2d5e1", + "size": 1634 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md", + "sha256": "06f820926a4288e3aa12618a5706b9f3eebe9ea8e7935daadf0293bc08b1e47c", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md", + "sha256": "d7cab757503011a6e18dc16c4f89ccead2721c11c6c19a906920ee32bb0d5bc4", + "size": 1619 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md", + "sha256": "2492b00a833b474e37502206dda3857900f796d6cd7a82db00b5ecacaaf0035c", + "size": 1238 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md", + "sha256": "d8fe5c67ccb7ce2b06ab40c390a7277feb5d200de7d424780b32d906032403ef", + "size": 1597 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md", + "sha256": "86a38cb8d957d32d07a88f1ec96375c1485ec010a33216d7307a8fd615ae2389", + "size": 1260 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "a5f0e40ffd83e9d823e704949de4a8568293cfdcad46c62d515853fb9f59ffe6", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "2e777d5ac95f913eba469e3cb08669cb3e5dde87ea9ca44a2cb30ab808b87de7", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "073d3e24b77b77d8bba6d519813b3223d19c8794953e63dd1244f2f0d704d02e", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "3fef2d1c46a1e9acb99008f582c67a4c174bcbcd932bd7872b7af38b3086292a", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "5e21879acf70eac3554752a416df72a12e56bea7d18f6013c000e339a8fb2849", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "2cfcaaf5ec6f2c5abd5aab633b13ba6dad9595fbe58bfce29c004c8e6aa1429e", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "714679093b33aff18f4936ddeaebe81287ebbbdcee11ae5e105af9f95a458bd7", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "498631e66476052b55ab34c79d086444c6d654bced611d988819a7e3858c989c", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "e5ff702f8e6710d47f0ea9a14e82a5839e33c7fb0690e14a1e59d733aef56bff", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "4e2638a4bb9be11013731ba019325452b646323609445e67ea1116dc905b06a4", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "0426a8a668bcbe4b3868aa6b32b06489fad75defef1bb732487c7ab145c60f8b", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "a1f89902997681884c1ec85f6d2061d3fac9bf817c7bda14ee97550593dc4fa1", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "c015391a61b1d2eef7f152f8baa4b9bb063d316b25d419b07c7e0d9c545d00fd", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "00a92fb4f7800c863a2868c79a47f944adbb34a83d8c0cd8a7bd412f9d34a806", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "a5217f5fc269ee7e4cfebad2ba4879cd2c071b555b7ab7cc46903d12d12f0039", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "8ab2534139c9053694a69fe47cf62041962b928574c86b4907b7f16ddeff9920", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "3cf3e5fc599693644880d6cacd819f8dc3e434d1e27eaf547e7639d8a0a00cf4", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "c3e953df979d284b210611f70a891343245210efaabbfcfb90bc31612fde3d58", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "a383b088d10c74694c1b8963f5068fe6bd0ea526e4b7d9908a3a9027aed61bb1", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "8032cadc0762f4f43fadcbfb1db28ba29c1e66e7724ef2d9f7063fed3d4731d9", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "091923f3980489f3d65f3f1d96f83e90bac6f44f86daed3afadb151ef1019fb9", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "e1837a0ece4c0727562c9be539b2254aefabe653a86fb49ba61f3d42b019f510", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "3fb5620f6396def1933bb5358186744241edb0f06243dd93f40662c5d714beda", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "0d964a2d6d82029566627724344061fc269bfe75910d846c231946b868f84263", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "57b4d9e453ca5b9291da2a86868e7f39a36bd7c061bf45f51d12e55060953098", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "f83ff9370b78771cdb687fc4b3480ce6de3ecdbd8533eda238904862970e2720", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "e2ba177e44ccd7a58203010adea9d21d4aea4287fa1ad8defc901dce07afd178", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "6cf06618362be76f14d1b74b9e7abbd34f8be72c3a14fc015c00a0a613f5ce86", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "8bca6bf516b8e47204466fe8c313e70ee09cd5cc0d18160e000d52ecbc6c112d", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "1347da05a8af32a9f3f3b318cd4d48d13d10beac5de23eb8314b02c75c18150f", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "b3a040116e7414b42196964ab65d027bf2439ee999c81d61f5ff5fd6a9f12edf", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "2a331fbb1c39c46ed65ef8b8d32d227c05c3ab213f55fcb90d7bac5abdde1cdc", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "20b5006c29db1bd876a9af67dc51148907651e54211a6ac08389d293c78109c7", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "a2f2f3f743b7fb1b61a2c78e78df0eacd3343a52073210a668e91424a4585437", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "cf336045dc58a6f96224b49c37935f86c79c373fc63aa08d42749bd35f459daa", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "9d6a359f960acfeb9ef427117925bef1d14ee86ea5701024cc537eb1efa9bcae", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/00_trace.md", + "sha256": "f6f02cdd3fd30345ce3ad707aa5e2246f8ace0fcb871d6b7ba8613ce7be062fd", + "size": 2590 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_context_load_receipt.json", + "sha256": "6234d944c926fba89cd8a021a23bd88c4a974177a68547b4b6188b5a903249c7", + "size": 6001 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_cursor_task_prompt.md", + "sha256": "ca1f4c2719000f4c93fbc83247607b45ce22213598c6271d74dede2f30f2a95e", + "size": 10504 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_session.md", + "sha256": "ce1e110b157fba8b12d1b6b570189be1d48d3df3c2a3ba2614fcb3371e46c3d3", + "size": 1315 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_to_vizier_handoff.md", + "sha256": "c23ba32a313a1c035e8be6e946c8f68e3adf5feba47945210fdaaf8beb8f23bc", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_context_load_receipt.json", + "sha256": "b22c9c73e97cdf8d7fae675bcb3bc824353bb51f6d02b12390e049bef88b0ad0", + "size": 6309 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_cursor_task_prompt.md", + "sha256": "cacfa21c932809eca07652eb0cc87359e83525a736fb774d055bc4480bd67da4", + "size": 18009 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_session.md", + "sha256": "050389941f538540518b19fad97dc860ccc0b56eeb6526c652b08181304f7bcf", + "size": 1290 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_to_mason_handoff.md", + "sha256": "5b38c831fb18f20629c368cb51cba2b1b8e1c3a6321751fe26377163fd0e4c2e", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_context_load_receipt.json", + "sha256": "6a6f33561eaa9f574d5330223be59d59a23f31dcb6c8d5190ee412e46c2eacab", + "size": 6287 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_cursor_task_prompt.md", + "sha256": "937288b1409611e24e4288505eb9745c00a59970f481a64de25d1fbca589ecf6", + "size": 8486 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_session.md", + "sha256": "3dd2c792d945be366d1b2b4427934ba7761014739d9ecff8eee07d2e2bec09c6", + "size": 1258 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_to_vice_handoff.md", + "sha256": "f7b58ac7946ac8dce43d1e08b88c38cb31ca078e9b9d0732dca2b129adab680f", + "size": 1394 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_context_load_receipt.json", + "sha256": "9696157ce19e43f5327146d9c8c016e723f7a8b947cc4e582b2dffc6b2369826", + "size": 5637 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_cursor_task_prompt.md", + "sha256": "90ffb19f7c0a973b07a02cc90c42cb61a63a1f10ad3a22f47296edd8fc0ecb8c", + "size": 15933 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_session.md", + "sha256": "37cbc1ee1d186c01a83d456ac5385b49fb9600b0a3d6979ebfdcb472c579c324", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_to_nemesis_handoff.md", + "sha256": "9e2e49699936cad5316c4fa3aff7a6cb9fb1ff7b689aa395157b6909c4e06ed8", + "size": 1372 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_context_load_receipt.json", + "sha256": "5746a51fb2f4521376a2e8d19015d2f9b3bb02a673f82dcf8cfb3c5fd8e3ae38", + "size": 5514 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_cursor_task_prompt.md", + "sha256": "88b74a6ca22a72ea91e0c07c15b554c41f558eda39fc08fabfb33c79f7dcadd0", + "size": 7935 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_session.md", + "sha256": "4dc4ef6c7616f4f8df10a7d056df8e9f04d9c12dfeeb07ed211aafaca1c8db24", + "size": 1242 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/00_trace.md", + "sha256": "f6f02cdd3fd30345ce3ad707aa5e2246f8ace0fcb871d6b7ba8613ce7be062fd", + "size": 2590 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_context_load_receipt.json", + "sha256": "e213fbd4bb0cb841f1cab25b00192ba731b8c6c21fd6de0cb0876e135ff3d76d", + "size": 13490 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_cursor_task_prompt.md", + "sha256": "61451f3260f15189dc7ad21a11ffbe665100992afb3a4b1bd18bda446803be86", + "size": 90621 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_session.md", + "sha256": "ba83c337ed343ba5ae520b6db50c819f377f9c1c87b08626f3ee8fc4dc04e884", + "size": 1395 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_to_vizier_handoff.md", + "sha256": "07d50475db2850115f9e8cbd8ad779efb481e0dab2f52cb6409ce94daacc975e", + "size": 1655 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_context_load_receipt.json", + "sha256": "934759152990e79e5e650716f7dcaf29b16a9f2511a08f19d2f8b08ec2785cb5", + "size": 13121 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_cursor_task_prompt.md", + "sha256": "cfa73d01e63b73eec440ac558b8c1b2a9df215ee67d0e2d28ff98bfdc7d17bc8", + "size": 96623 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_session.md", + "sha256": "7240eea48d02645a8202eb7f1001fbd6c1f18c98581dfc4f8ed9b40598047b09", + "size": 1370 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_to_mason_handoff.md", + "sha256": "2d4db6a0d0e4ec7f2c3eb93985cda7aa1b461e5a9eb4637919d6152d9c71b5c7", + "size": 1638 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_context_load_receipt.json", + "sha256": "102f757e63db255d6a4169c6887d56ebb8bb18eb7ee513a72b923b4d06b4db4c", + "size": 13668 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_cursor_task_prompt.md", + "sha256": "ca5c94e51cf86a4a656cd5261795b5cb4763419abc7d7ae029e19409f3aa1e9c", + "size": 88565 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_session.md", + "sha256": "d65f7147f86a5369d675f11db2d736aaa7a2bf31e4feb258e164ef5a611f1bb1", + "size": 1338 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_to_vice_handoff.md", + "sha256": "e8090293991b944b9ddab5b02efff85da89049bc107adf3928cd7ed44601a3ee", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_context_load_receipt.json", + "sha256": "3e77992a1da85f31c6d6b3fab1524dafa36d5e1bf7d6b0ba1ba8c026b287beec", + "size": 11777 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_cursor_task_prompt.md", + "sha256": "42bc662d0fad86eb4599036f6357565a1fed6a840474b38e0e73580a00aca605", + "size": 93257 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_session.md", + "sha256": "e145e28bcdbcd4de1f8c92a14d7848ca6ae6f3a1c4846d37bdf980c91b8908a9", + "size": 1300 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_to_nemesis_handoff.md", + "sha256": "4301f985ed94d50055f603be5915be19ad6b4bbec2f422687211b880b73e9d03", + "size": 1601 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_context_load_receipt.json", + "sha256": "0b3447ffd26751fbc474fa3add5720a88238080e831c1d9594cc1b70863845ab", + "size": 12938 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_cursor_task_prompt.md", + "sha256": "05da812d83eca784d8930701c11b2f853b8d5d2da12d2cc273b31cac1a41f2de", + "size": 87902 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_session.md", + "sha256": "6bd191a306cbf8178f65c6ad78548da5e29b0eb0c5580fea9b4401e96aa69b78", + "size": 1322 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "c9038015384436422fa5bf931261647b91a28fd4527b592c1cd6a7dee7f0bec9", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "7a0c8aad8915c68b82e48cef82fdaeb67779e65a19aecc47cda74d24d55b2703", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "39b6748a3a07a810cf4e420741f5c8bb3708aecd64db7797659f97c177ea6c96", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "574ccfcb592c3a71c7572be4974f4d12cc129e4a8caadd60d2b2aa0c0d613ec4", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "4d4e9607b3eb124b544b64502f022338facd37386072a0b386778bcdd038dfdc", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "499207a6c73946e8d7e937981fc76a1f0b82d46e731cd6637883c0b90cce50f8", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "d6c6a61907032a6d9902c1d861a9ad156b56f4d99b9bdf0c7699ceebc15902c1", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "32f90438e01535ff30dd625044a2b6e300dd72d31d9e6976ad05aa43ea323b2e", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "6950ac1ef73c45e99e6982951d2eb9aacaed25bb0d778b076c1bbbe0bf511076", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "e9521e88b3c6b295d30e89c6de3e07bb96f9ed0cd99b03db16c15d411878d3df", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "3b98b69c8d3bad09312f30134685875b04da9630caaca6fb84c3f7441664ba54", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "55e5947d89fa7d60f549765bbd38dca3ce1652910a7f66dbadd0a1230d9abce6", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "0b04c9eeec7541feee00561ef2d7c9f4bb9ecf8a98d04650adc34baac40952e4", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "60f2cdf30041a0b7668f140acffb6aee9d69ca4288bacd661a7c69c1fce61a08", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "f7f75f73ae4e25cac6d2be965d98643d29c198e23801608fa79e25859d7fc3e2", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "a37702683719aff26174e3c62f66fcbb570d545c5397f3873d43ac540b817cad", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "0d807921e7e11150cc26f15fa0cb3908f6326fe25c99e078b2d9ce8e113b8c8b", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "671a2222b007d32748fe3548d1b97f5ded3aa54a3f20b8b3e46c5c6b7367d69c", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "1ef59d6c78c38bd3f7882a3bb39344026004350194275bba36f41a1d32a62630", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "d5c70c06a426207cf7f7d26793b6aeeb4602e4f0b114e44d794682b630b451cc", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "c040e42737358529b3a97f248f832a63225b10ceaa09150e0f37568816e57864", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "1303a12b55fa16c1bad87f4fea3d13191cbbb950e6503c89fa8967f0ac9838f2", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "f8ee4b177c58bb58318fba1379fe1600669131a03e17e2dee861bd77f341de5a", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "1d9408a0eb1485eb017bbc283ceb49ed0fbfe54e6b863f54ccf0fb3dd4c3115f", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "869abac8c4f48e6f8e1dcbfc79389f9b5a774ef1499dfd2202070c13f6b084c4", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "64ab325fd02156d066c1e86c5efc702f2892752d20017a0f839c111fd400b089", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "b8c57d153e33fba1e0ed3753e979452253fd831a235ccb21e1d674427b27ba83", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "7166f2c87bc945727a088f31ab8b7cfb61b3e372d0f4013d41e0fe1868d8d3a4", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "ba1acf8f91ecc577ceaa0a64c26a38d81c046b6fe5eb28a82b0cf942b28ad5d1", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "413b670ace69eeb04c46a8129de3eb7ab5ff2d4a6763a883ff3243af14d162a2", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "b49e0155f60d363ee7367fa5537e172629a505d02f3cf12f0377d22c82f643d2", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "125149a9b2a294a8a928630b8ec236fa7aadf8506f6403c367790c7cc1d75cc0", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "41fa42615c3a70e8dd7c668d9cf1b5489f1747018cb83b44dde858ffbff1a15a", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "f4ccc0203a1faf96418dfb56c3a959a24074fc5381c4126b161b0c3f7369da94", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "28cb83be770993a0d8cb83d3bda36abefd78b1a21ff510ffa3a1a53af98a185c", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "b5578aff81ab08416897cc58f04f628b82098a5e3a7099416ff8acd7689e20c2", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "689476073fa4ad744ffc74ac83c66ab2afc5919e83b9735beedd31f283181580", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "2b9c9061e601d8250f980729f0ed9b9c23644d9ce49fa7bbc9fe7fbe52dcab1a", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "4386f84285f5e7e41ab895ca6ce77c9bed6075e304432de75cd22a23267534ce", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "754e0f5c3efc9d2963a682dff28550daecf3a32dbf6da146342b7990999f9a59", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "c70d25dfe90dbc5220e74abdc167d1a8e368729f2cb4af68869789409f3f9db6", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "a0320b136e7644ceaa6300264d3b06be1bf3366839b2f0216031561639c0fc5e", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "ef1b358a8c07831dcc5ac079b2769e459a69ca47a7809404fd0d5145284e79c4", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "2787f50287629529fb790011428f5668261d26b871c264d6c585b452fde1bdf6", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "fa160d3afc4e82e76eb42099c8a079f3e59e610afb425514197d07caa1461c7d", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "1e50d7555a4222d229f3a70b04af8fcbf672b7d2e021370305000a8001c4d8e1", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "7b27c91fbc6d146a114fc242982dfd567bd5da09ce4b6aac6479694c78f14edb", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "35687fc8b49e3b81d1f2f7fb72484332e3c245ed1558acff6dab7aea0ce9c6e3", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "62266075a3d3a1f08c3f2ddd4740ba5ce6af8131e9ade01ef3afece97cf7b7bc", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "9dfab354e0cbb7d84e605a779beb3d62e9b92cc84697845a6c10abc491ab7c69", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "c30862afeee50919c72f2518585d8f2a6ab89bfb41ffc0befbb6ae56d3f8e4a1", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "0fe50169f28397eec7a4c1f1f36ab8b9984bf76d399f5513a8d11ddbfe17810a", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "d08f8d6f3ad569308a019cd86d3c4224e881998ecf4c4366d0a6beed285c9f79", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "24fb8ac193c00ab60b5392c394d2175a794ff5590ab3018e6461cede34553fb0", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "1eb2cfda2b2374fc7f37b802a281604e28ec78deccdd742de6184e16b59751fc", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "7077ae4baad4647a94dde0c32fb07facd5030b56b36087e6382f5eb07e4bcbd8", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "037204a56961db9d81798975cbefd9d4ce4cc10993181c4c0a56501fc912e813", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "5803f56742114179812c963b3c95dce9d5f57875b540ddd4c9b4649ea494de2c", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "90417a1142e9b6f88fe20468a9c046e47b7481c6861105d6496c776b22127a42", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "c16fa9840c396f28b61c1c076b5d0e2fca4052ac86e1d41a1f958f363c501276", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "9bb4dfeea6f8d494e5bab48a855b231c7cedf8a6e4a499800aa34b783eb53df8", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "24fc9fdac76317884fd2288d20792276b49c8f45e4f2f1f3a46a6c73ff7e384a", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "4f7e3fbc26d87a524f039f91ed122a90ffbe7e3414ba25e9a0dc4d39009fda6d", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "5c04f3cb47b2d4ccb3907991eb656ca283f12def76f8b193f8ffd2011cad2864", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "22494923b0eb80772b16fba7d11b508d0af91aee63081e18ca25b0127e65fa7f", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "5c99f59623110b6239202673cd8129af0976125654ac3b63013a2ccfca1045b9", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "57771e7cc6c48333313da1338c28b2c8ff3d33c1c0d9876aefbe662b4bfac022", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "0c686f2bfa950ca6cf3e33fac6a3092572c8f55e09531b4341d52d82f967b07d", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "332ee6b8fa17ba1eb188994e997719d989f7e8abba3d0e82bdc07d4d8fbb78e8", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "0c7a68d248946d1a97f0c44df3ad64fcba88d79f80b400fdf1f5336f1604a7ce", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "bc6bd84b1e3feef511ab71832dcf5d0bc1a19f81d5e2f2fb18420c49c1a157e3", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "16c1897b05f4e9a8288115582ea4ca74bba857d922a27a467c592b8f16db888d", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "c5cf69b68953d50f3f7a0d3fef95e74f583aac058dda368d4eb1ba3f52f16aa5", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "391c075ffc37b01ef42d71f043fc76e2fb9564c92f4a3a0aca93c186c107968b", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "3c18ceacf1558d7c48056cbce5031d7d4e25e3c31685692df364b4ee09d63be7", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "0b47e8f7adfa667ae7bc9cf73cfb49ac39e005e92820783dd0e5d9ca29192810", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/00_trace.md", + "sha256": "2fe5b686a27b677296998ff1dfd0cd6f3cc17cdd57d60d074ab84e0396ce02df", + "size": 2543 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_context_load_receipt.json", + "sha256": "ac62d396c0fb96da3a2e3a1cada8058194caa3d78b65179bba17fca9a9583e3d", + "size": 13349 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_cursor_task_prompt.md", + "sha256": "13e7f6d62c61b656d3a0fce644eb057ad84bdb78e56627403cea43700f1835a2", + "size": 90527 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_session.md", + "sha256": "b3816256ebe5cc3f262137a5f9581edc7d9ca829d152efcb41813f993013ffcb", + "size": 1301 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_to_vizier_handoff.md", + "sha256": "87a59b27924241a9366c783c406c4fc792d0a87fbe142f270fdcd39bba2f63ef", + "size": 1420 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_context_load_receipt.json", + "sha256": "c35fe3711a0a7c1f521decebabd0e06a5c5f6eb96a83b30bd0c62ba0c07aa062", + "size": 12980 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_cursor_task_prompt.md", + "sha256": "913b8ce4020c99b8df0a72b3e3331d55e4451c0bcc569c979fdd55bfcaebfaa0", + "size": 96529 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_session.md", + "sha256": "5fe36238cdb7a143a5eaeadb26a609b8f13b151d189af6b691763ea7267b562d", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_to_mason_handoff.md", + "sha256": "3d86a67d4040b48a5e9023f62df19143a9164361dbf353b05a928a32675a84c5", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_context_load_receipt.json", + "sha256": "2364de5b38cc4f87cd66e76be0e284cc6a148c7737a50f7ba7349caf9819c4d3", + "size": 13527 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_cursor_task_prompt.md", + "sha256": "98453b84af20255737139765d4436dc0118be2a434f8d809fccdd9b784b28591", + "size": 88471 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_session.md", + "sha256": "d00f39e3f566de293d7c954d5b175e894b4810464c638be6ec9a6cfff96ade90", + "size": 1244 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_to_vice_handoff.md", + "sha256": "1c688c4699c7cbf89e31ac5b0da752648c11e29831d4de71d7736404e2bc7f52", + "size": 1388 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_context_load_receipt.json", + "sha256": "3e64eb6353831db3ca0308e614cdf2fdb9a13577df107c170ac219287b75073a", + "size": 11636 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_cursor_task_prompt.md", + "sha256": "b3711f98ffaa6d1ef8dbac73747e629a7a23929a4dddad27ece64bf3cc2d601a", + "size": 93163 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_session.md", + "sha256": "f8ec79cf7173e033309949532fcb5fe5371d9983e11fdd0833ca676f9389e49b", + "size": 1206 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_to_nemesis_handoff.md", + "sha256": "ae6942a37fd0e04d469f17039b48c85187d7304115aeb7aa470531464791baef", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_context_load_receipt.json", + "sha256": "873df0161b3aa3c6fc15d014e394178c029341be236b16706537383b0ca79796", + "size": 12797 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_cursor_task_prompt.md", + "sha256": "eae77777f6a18a6e1ca0d9e3b69e7b923f2e90c715ed2c554a99129158f3de02", + "size": 87808 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_session.md", + "sha256": "5161a6bc0939ce2f331977f577b1cc6bc6e68c599b8d38905f4a8d53e244c5c4", + "size": 1228 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/00_trace.md", + "sha256": "abab622fcc68b43be3736abcd42eaeaa33c7bfb1349ced403c1f49ca514e5838", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_context_load_receipt.json", + "sha256": "1428361f1edaed2cc429f7519b473d4be03bd51bb2109832862a8bf15bff092f", + "size": 13400 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_cursor_task_prompt.md", + "sha256": "041ea9ce23cf0053edaaaa754adc17325ef8be782cca14a30e3a5c4bcfc960b2", + "size": 90561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_session.md", + "sha256": "de88de20a93f1cf861929346c5b94a23c72d864f89e1b2f18a1e43b40c29973d", + "size": 1335 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_to_vizier_handoff.md", + "sha256": "2e7b6e802bae5929ec1cd3ae20c2408167b99a71e5c189666654cc60b237fe8a", + "size": 1505 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_context_load_receipt.json", + "sha256": "89d4444cf865f16ecf4d822d63ac523f4a5ac1a07bff42f983e4a7f019506c71", + "size": 13031 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_cursor_task_prompt.md", + "sha256": "557906f4f7825affcbf865c9decd57b58e445427c4c09d6dc9478e577ca01607", + "size": 96563 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_session.md", + "sha256": "eb3b159ad4006ee90d2961765a6a419e145a621aba4d61bf74a0fea409d975a0", + "size": 1310 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_to_mason_handoff.md", + "sha256": "3708846157b0976e86d94f092a6704bd85979e007624a13389fa28ac5ee6fc2e", + "size": 1488 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_context_load_receipt.json", + "sha256": "fc574209169ac4f2a6f919331c71ef5f58a1d2dfe8ed50f44ffefe2447b0c980", + "size": 13578 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_cursor_task_prompt.md", + "sha256": "69d32f1f22aeb47db66e6dcaf88544eb1e35aa2f5b38267b8fc1b2dc8e84ef08", + "size": 88505 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_session.md", + "sha256": "0e7ed824eddbf783229774b441d977818f1c9ee9a2196a70bba26427da0a1c57", + "size": 1278 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_to_vice_handoff.md", + "sha256": "e5ab69863c7fbb84cf4907fc47b0d39a6d13b21222bc70a67b8020aeade82d20", + "size": 1473 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_context_load_receipt.json", + "sha256": "43c49b33d747397e7dd8dad4a66d5d366ec310e2e9c16796a09024bdaa4a436c", + "size": 11687 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_cursor_task_prompt.md", + "sha256": "ef8bb3e28eabbb5328c72ef0cb05d98a77866c5fec389019597758fa3871b8dd", + "size": 93197 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_session.md", + "sha256": "eb23a9a4b9eb8197025e982d99a4d6bca54a50169e7b29de8bd024ce347721ae", + "size": 1240 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_to_nemesis_handoff.md", + "sha256": "fe8a8df33ccbe13b9de685d41cecf4a7f03ef2ae8232671c635f9b1f1f1521a9", + "size": 1451 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_context_load_receipt.json", + "sha256": "a2cdb0ce90da43d31a7e95ed27facc37a7c8319eed6420369691ea1abdd3449f", + "size": 12848 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_cursor_task_prompt.md", + "sha256": "26d1baf0a9aeeb7fcdcc28474e6c26d1056a26a4e09cc243dff18b04c53cd755", + "size": 87842 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_session.md", + "sha256": "8745df5c214141dd8601bc8d1d97ab3f0b2104f9305a938a0e17414b7ce56c18", + "size": 1262 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/00_trace.md", + "sha256": "b78a4cf50850348a13e2a7b4652f0bfef52dcc9900d31d6c37eba8c471b146b2", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_context_load_receipt.json", + "sha256": "6d4541aa39270304b6efd2ddec07d368873301194cdb907c3a2fd6c2e8b70beb", + "size": 13367 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_cursor_task_prompt.md", + "sha256": "425d3f81bbfba884324007114bae927f09691fa2c11a9e5d92ffd8c25642b8cd", + "size": 90539 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_session.md", + "sha256": "571f982bbc2a694287012de233eeb37aceab7d663f0f54a470d9cc6bd4c81e30", + "size": 1313 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_to_vizier_handoff.md", + "sha256": "5cd39ab3d57f1d42442f96f269e1b152a44f397dd1b4c95213e76899cdfc4870", + "size": 1450 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_context_load_receipt.json", + "sha256": "6bbcd167bd188ae9b4a86bcaa67e134707d4ee7b5443ab1fb4548be6153ac26b", + "size": 12998 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_cursor_task_prompt.md", + "sha256": "feae0150d340a752ec00908b2a1c285d434fe35b379a74fa0fc7cca49b1824e6", + "size": 96541 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_session.md", + "sha256": "bda1ed8e762f51f2baaed3ae262624f768402b722ddf0a342f5f8eef79ce8ec1", + "size": 1288 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_to_mason_handoff.md", + "sha256": "5c2ec06634620f9ff9830cad33a79a4d723001342c774c57aecbfac6351c5253", + "size": 1433 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_context_load_receipt.json", + "sha256": "7edec7a270ff7e0fc0b5d59f0d11e0439f52cd6437745282495ec612040ec689", + "size": 13545 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_cursor_task_prompt.md", + "sha256": "4862368aea7dc9f81a10231f6438096961738c28cbb130005f9761fabc801f11", + "size": 88483 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_session.md", + "sha256": "19792a17e801ad3ec35c2fcd563243963d9beae234b11ba694879351ff00e00e", + "size": 1256 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_to_vice_handoff.md", + "sha256": "b82f38dd989364b56bd5bfe3ef6df57554e26e5159aff47f3b8eac046808331f", + "size": 1418 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_context_load_receipt.json", + "sha256": "eefd776431d8d401e1d7c05edd5b44d8589cae3e1977df07c438c7ce0c3edafd", + "size": 11654 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_cursor_task_prompt.md", + "sha256": "432b948223477b0ecf21e888e94cd0dcaf5083b0b6f2057787894c65ec670712", + "size": 93175 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_session.md", + "sha256": "a66f2a93db7f03d72306ab04029800621821a82ed4da7f78744571299544aa1a", + "size": 1218 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_to_nemesis_handoff.md", + "sha256": "2859e1a67594020aaa58eb5274a3b4ca20ea54041aae90f2f5a45cddac0e50b6", + "size": 1396 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_context_load_receipt.json", + "sha256": "7063b27d734c6dcfc836dd66cc442293c40978bbacdb7c10e86464ce25d6404b", + "size": 12815 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_cursor_task_prompt.md", + "sha256": "01fae093738e1fa16d1dd7f2b6e39493ff68a36c1bc51f5d3443abb0946b6a4d", + "size": 87820 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_session.md", + "sha256": "aa66f80ff33ba0691b546961868a295523ebf93c0c4e37ae82bc10e2b7725f27", + "size": 1240 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/00_trace.md", + "sha256": "846aa8756ced8d0f75597bdb0d084323d288e93f0fe5a0dca61294191f3644ab", + "size": 2553 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_context_load_receipt.json", + "sha256": "b5bde7841b35d100bf2d58d0de612a0cfb9757a33241c3ca06065903acf0fd47", + "size": 13379 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_cursor_task_prompt.md", + "sha256": "e5bc9c5b2e7ed0b3519a192f9932552a932d3c0dd377cb2503d4e1965acf2deb", + "size": 90547 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_session.md", + "sha256": "fb543f383e072f1409aceaca42cb146f4d711e98580fd84a38b49bb5a2a83360", + "size": 1321 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_to_vizier_handoff.md", + "sha256": "6c75828c789ff1fbdceefb9ef5b575454ac747476357e1cfd2d368aa55bdc2e8", + "size": 1470 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_context_load_receipt.json", + "sha256": "d432cce402e264566bdba4ea1423585b90464cad20ce695ae9ebf4407278dc7c", + "size": 13010 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_cursor_task_prompt.md", + "sha256": "4c943c55d46a99acac9574e880e48ce13309dc4fbe0bf5ac3469439cd28581fd", + "size": 96549 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_session.md", + "sha256": "0e2ba03f42ff85491369de2ede8073bf94614b4458c92b743d1cb2990c803aad", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_to_mason_handoff.md", + "sha256": "b817ccef3f16707bd7c2181ed44256569a451541005e47acec5a15f5ae1f7ace", + "size": 1453 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_context_load_receipt.json", + "sha256": "ef9a9733427b1dfa14ec82ec00ed9c02ef3f21e493f1548d91c1c3e302c680f8", + "size": 13557 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_cursor_task_prompt.md", + "sha256": "7ba5e97c86a93c85e6c888287712791b81e8d767f1d77f20266a8f888403ad69", + "size": 88491 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_session.md", + "sha256": "f2eedb4553c41ce116f2c091cf8f971fdd48171ba54558f0b2c7e1a9246bf9c2", + "size": 1264 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_to_vice_handoff.md", + "sha256": "eaedecb0647ee98ecb92e7c1cc9e055244ed15eb272b902ef2e623b521efdfe8", + "size": 1438 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_session.md", + "sha256": "be656ace372884385b3468a95cfdaac99eede30b73304f4c2fe9562f73484e13", + "size": 1226 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_to_nemesis_handoff.md", + "sha256": "25b1510fef21fb2aee70bab003e2fd772f9071fa4c8e0801bd221d9d60c2c9b6", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/05_nemesis_session.md", + "sha256": "c4a0ce3949d242d49cf3cce899128803031f889018637477b6c02c461d46564b", + "size": 1248 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/00_trace.md", + "sha256": "a64c9c4ace6d39ab6a6b84d5e9d011b27f30957fbb777b857a0e033886e09198", + "size": 2578 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_context_load_receipt.json", + "sha256": "0b142008c896a5a6aaa53cc52526fa4e52c9d4b09e5c949f61de39464121bce0", + "size": 13454 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_cursor_task_prompt.md", + "sha256": "972bfdd2bdb2a96c11cb66cfce45653e8653213915cb52f24e4d659bc293f8d4", + "size": 90597 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_session.md", + "sha256": "5f1c9bc75f00e11e1d16645a6a83aba2caac41202278e0e56364c90252083068", + "size": 1371 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_to_vizier_handoff.md", + "sha256": "e56d705b684e95f0b1bc1457d89c68131c4e68437f5f949e41eaede39fbd847a", + "size": 1595 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_context_load_receipt.json", + "sha256": "b2afd9ff9ee8accede18c01bdd0827425b8fb2b18969cdd7294ecc394080ad60", + "size": 13085 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_cursor_task_prompt.md", + "sha256": "7d8d93f8902ca21430e8069d4bacf667cee9c288428f78ee5c31361ec0f613cb", + "size": 96599 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_session.md", + "sha256": "2183d47142545fadfc949f75af10c998fae6692dcb2cb7013f6dbd5eeedbf566", + "size": 1346 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_to_mason_handoff.md", + "sha256": "40aca2f81202faabdee5a074e3cae38f2bd6d279f75e391dacb929bd37b6fc7c", + "size": 1578 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_context_load_receipt.json", + "sha256": "67484a77260127f9b8ae52cbc4db77278a0d6f298969926ad00dbfeed4e2b85b", + "size": 13632 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_cursor_task_prompt.md", + "sha256": "133e04e2d27e228986a8c3bae0f77a644e4d52d808f05273cc681b5efd656c56", + "size": 88541 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_session.md", + "sha256": "38dac072822f1fc20b07998bf023d2cceb7cb564470567840d34232b04ba36e8", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_to_vice_handoff.md", + "sha256": "fda1409f8337a1dea25f0ee5164767d0ad8a1f758c9a64abcdff4fc66f2e7daf", + "size": 1563 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_context_load_receipt.json", + "sha256": "b876e7b44ec3e40e0e6065b859bd271b0d18bdec7c7b69e923cecb0304e6e50f", + "size": 11741 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_cursor_task_prompt.md", + "sha256": "7bbed636c86814197891419ac5cc21c53c1aff91569e5a6ba1c8ce539ffcee3b", + "size": 93233 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_session.md", + "sha256": "de1de580eb37cbcc1971f8807a9ba81d1223b2a68a62eb44a2a864ae912afc38", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_to_nemesis_handoff.md", + "sha256": "28aedda148f5d130131fb783dc07eaa3fb8010bd000a1ed95f47eb5290de18c5", + "size": 1541 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_context_load_receipt.json", + "sha256": "d026d3d07d26ad3a1b9d5cb12768a8f8c40a909e34ad0291e3cf719a82ee3068", + "size": 12902 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_cursor_task_prompt.md", + "sha256": "20b29f6b9b2cd55609d067e9189e7885263f64faf5588e38cf07ec4f04275b67", + "size": 87878 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_session.md", + "sha256": "c2252f2a4ca8f0cd1971b40b6cc62ee96b1a6c511f199d08d5d532e3b37201c8", + "size": 1298 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/00_trace.md", + "sha256": "b5d843cdd551f546c7fb21582d588f973af47f294cf0db09ddbf0926fbf5106f", + "size": 2564 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f6b78552c9aaecb06eead0fb167732fdf54c8e2111f7b8604ce29eb56fd2783e", + "size": 91365 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_context_load_receipt.json", + "sha256": "7342691faa7a95533841b8342fa5e37b08bfa6370182dacbe0b6fa836ea54415", + "size": 13714 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_cursor_task_prompt.md", + "sha256": "61ccbb2d69da42e9894d0e04bba1f369453e7db1fc67b50b088337adb5f0298b", + "size": 90569 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_session.md", + "sha256": "d6350728b253bf3912109720607f793f76d7ad49b61e799f018a56896fa2d23a", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_to_vizier_handoff.md", + "sha256": "ba490ad517b5f6ac32cf370e33e2d9406103976f43bd027430b2c1fc7928c22f", + "size": 1559 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "2c3526b51a00281e8ec735b46a746d9f5b1452e6157092e72c8d79f5da6cfcda", + "size": 97363 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_context_load_receipt.json", + "sha256": "4154a4737e716d3450eec84bee80095f0d17cbbf58076637e62e6021670a7e5a", + "size": 13344 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_cursor_task_prompt.md", + "sha256": "51a4d572d8763252813d864fa5aea17331f924434ccd705a0dad688a70736730", + "size": 96571 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_session.md", + "sha256": "df46110f28611c6d71ef31537e76a4854055ef6dcf8670a9a4020e23bebcfcea", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_to_mason_handoff.md", + "sha256": "c4b4807776d775044294df41c53d291adf028699d73d9f3c69eb879ae20d11c2", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "05e3819bc8214e0a2d503210ccd973eaf6dd8034d8be4d65b7f697acb8f4ee58", + "size": 89301 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_context_load_receipt.json", + "sha256": "f8288c1e528e60ff22be9cc7edc769e570432aa290bf71e5526bb6836ab0e3b7", + "size": 13890 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_cursor_task_prompt.md", + "sha256": "83b7f56ef07c0ec3f85e76515810cbb0fb7c5079a0a7d88a6752a6f440b9b7ac", + "size": 88513 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_session.md", + "sha256": "7f2df055ea0681ba5ada6dd3ff84ac48c581fb7ac5e8de0feec05c9ea253e7c6", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_to_vice_handoff.md", + "sha256": "755080c2fe01699903ee5cc39f1824317f24a74c5c81187968ab8915b9b46f47", + "size": 1527 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "e906884e3d0e4fa53ff381e4dc19b74fa9d18c9771f8c5da51f4881864caf3e0", + "size": 93989 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_context_load_receipt.json", + "sha256": "053336bb9d765caa6a91f7380123960aaddb3d5b7242ce8b3d3f306728906806", + "size": 11998 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_cursor_task_prompt.md", + "sha256": "4b47790abc75f8829248437c3c8254c5c991463740188b185e954609f466bb90", + "size": 93205 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_session.md", + "sha256": "316be451bd1ff60c2ae141cc8c9d1520acefb7cb4669c27244963a240e8578e3", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_to_nemesis_handoff.md", + "sha256": "9cfff74a7848709a26473ccffd5f8203b44cba04b4cccd919b950e9debce30a0", + "size": 1505 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "eba03020426a5c8c4fc1bdca78885477283e4a41bfad8d37a8e7158171416661", + "size": 88646 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_context_load_receipt.json", + "sha256": "3355026c320343716b6c17e75f5f250b7d507a1d7a8e58e4dc42a14092f960d5", + "size": 13162 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_cursor_task_prompt.md", + "sha256": "307d9a17d2704cbf772312d5c88848538b526765ec910e95830e3ccef82cc7d4", + "size": 87850 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_session.md", + "sha256": "e40f2574b98332f834f202b3be892c149729a1faff93902e8eb63ebe59186f98", + "size": 1338 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/00_trace.md", + "sha256": "4b804cdd6af711e71a7cfa025b4aa097e8b3fc027fdd778eed5c60c3796bce39", + "size": 2550 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2ed24528c63d0e792a9ee35aad9fa700e2bd5088f8edca84bc3e6e6aed1bfad2", + "size": 91303 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_context_load_receipt.json", + "sha256": "581da87d50481f689df084142e28295e68e6ddd0b8e0d371981f0161a3ca309e", + "size": 13652 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_cursor_task_prompt.md", + "sha256": "c3b7d9d10133eed0ca94549a2aaa599e971e5b1f4b73d7f247959e5316882b67", + "size": 90539 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_session.md", + "sha256": "c2aa954d716e40e7c2a370d94f5d5af734288723e1c5bc988bc52b287363b085", + "size": 1235 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_to_vizier_handoff.md", + "sha256": "655fc58b93910947316fbdb3f3d06bbd3b1f80ddc271e9a874bb6764da28af9a", + "size": 1421 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5de965a91a9a70760ecd6d5ac86c89ab0e46e3cc9f55b3a6bac0fc3a60f82dd3", + "size": 97301 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_context_load_receipt.json", + "sha256": "986259f9a5077b079218ee8297b16d55a22c4d57476983be6edcf6da27bd24f9", + "size": 13282 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_cursor_task_prompt.md", + "sha256": "c059c64efd8954a0bc2fb68c2e2b93faf7880f3b041eabe19ba4f15a98fc5ef7", + "size": 96541 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_session.md", + "sha256": "1632dd1ec88484f413a2686983d837429ce61d0b52c318c03e97719a0ddbf476", + "size": 1210 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_to_mason_handoff.md", + "sha256": "c0ae676269c9fb31eecf282eacb6b2542ff4e53ad58e491d541787950d742074", + "size": 1404 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "50fb42e0624f982a0506c928a1f08465487aab9cb88bd8c13989477d4b1c8e04", + "size": 89239 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_context_load_receipt.json", + "sha256": "9cdef0b5a1cc718672297d0e2187e5a9906ec7fa1f7fd5cb7e34efab87dae13b", + "size": 13828 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_cursor_task_prompt.md", + "sha256": "8280acb1303bf6f2c150f5ace173ced1731bf8b74999849de03a36c5d194d569", + "size": 88483 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_session.md", + "sha256": "2776ecf5edb747b61e629588081123cc42496193ed57fb6fd02a3a983530ee78", + "size": 1178 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_to_vice_handoff.md", + "sha256": "24afe4ee1c8e4a5a78448f8a77f6130bcf95610ed62759d1b597eecbdc3ada89", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "533b3ac2b66ec6504e351a5ee450132f161ac5d8476190206749f075e86cd3e3", + "size": 93959 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_context_load_receipt.json", + "sha256": "58382a7997c85305c6ffd14693266b81117db24ab117ff2b4ee194ea084c08ff", + "size": 11967 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_cursor_task_prompt.md", + "sha256": "b0179f49da0fc318f9475f370b2cfa28016b51e61283ce5787f255144e1a9323", + "size": 93207 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_session.md", + "sha256": "68b77649df1be6a81ed704799dfd5fc0a5bcb0937d338830d5ec7c2b1d7c30d7", + "size": 1140 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_to_nemesis_handoff.md", + "sha256": "6fef1fbfbf6e2f87bb3cf48a45c1c83cbe8af0309713d55ce99876efabea27dd", + "size": 1367 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "6e1fee3e75afd9c7e712a73085f5d32775df098dec30d0d0231c4a85a9bb6445", + "size": 88617 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_context_load_receipt.json", + "sha256": "984071102f87f6724de6fdd24abcc122ef407d0fcaba42a15e6937821014aa70", + "size": 13132 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_cursor_task_prompt.md", + "sha256": "1cd7202510eb6e3a5e163f24f3c79aed4e2375db3827200912bb0bd87d2fb21b", + "size": 87853 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_session.md", + "sha256": "a136bd5f8ecf19edabea1bd8530fa09673b8428b685fdaed16530b1afd136bd2", + "size": 1162 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "ca111c2140a2d60f48a6c64af1c34f182870947a7244e0aff80277dd42e2e139", + "size": 2638 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a16e6279210426c0f7fb3856f131cf2e7481a2b1434e969526916a88c43248f0", + "size": 34835 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "9619d95095531f5456dba40e4e39511cad69450176c79132933085f41275960a", + "size": 12237 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "cd5098763e4b9696cdea6a7f5ee0a71833a7175aa10f45fcc60c985477fbafa8", + "size": 34073 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "1300ce0474b7b09ae46fb0bf303669a64860b95a2e6be1d993b0104254c3de26", + "size": 1329 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "d69eb366e3e9cce4188483aa49261c213c4a061f50c99c8caaa6e6b51e35660d", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "d8e0356b9a676dc0c0376b6b9123455aee2104644938a0425ce3788eefe1b4d4", + "size": 37544 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "e6aadd694dc483c54e719c6529a090006151638464e4836750c0ba2edccf4e24", + "size": 11516 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "75d0c491c7b6fd552100db65a508aecfd43399c0c60a1719f8237312ff5402cd", + "size": 36786 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "8b13e3f8ce97d5178d36038f87ca067282cef126bd692cd0b7c7ee5cb3566eb4", + "size": 1304 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "df3f69dfbe19e7b6bb16489ef57d3e959d57ba1b8485aad49e112d59b060fcfa", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "4b08ffca4e6253e99979afa4d64794147b3956ef54a77b9c940dee945a953283", + "size": 35437 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "e9dc10c6dc0551016d8520b527c3705549948d9f54fa8f175ee8d5e99b71021f", + "size": 12078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "2b40706379f963ac10a1beec1386e656f5a0f2e2a41196946bcb6fd419921a4c", + "size": 34683 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "41a08a60b9b29b871fb66a3fe6c54cf1818500b69b9de79a2c45a1fe67018fcc", + "size": 1272 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "c4df7420a2a47148c591dc33e319339d6e09d1f5c37cfb191de94e75376563a6", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "a3a66d8fd4f0c33a9e24022f3eea5920fde294bd7bb940cbafcae1b73682d098", + "size": 37336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "e143ac4a9efedf22ae8195c3998f93903c5ad2bacdfaf1730121c53bcd6d8b75", + "size": 10521 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "88c130ed4d444c83212d14c75db4b7c121cfe432de66d63e38d7b8ece49aba88", + "size": 36586 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "3663cb818a629665a92e66f257ac2efe9b223b5eb6b42a187ae149d663adb52a", + "size": 1234 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "e6534be8437576d0e51b5c452c87b85c80ef3d2f1be60eadf79c71e9112e986a", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "78cca35e15b6e09244827455c8ed88af86f7ac544882b31bd8d4234b47646d25", + "size": 34733 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "4de321948f1d293aab1324369c1381056a4f5c1a90a52c6e9f29b8461060de1e", + "size": 11625 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "15a66b9cc10984aec18e52cdf0fbb9677826cc3acabfcfb1608bef43ab1a9cf0", + "size": 33971 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "71df261b87b0355850009cf54cf18844a350ff9a756f0fced37be6f93a3de854", + "size": 1246 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "ca111c2140a2d60f48a6c64af1c34f182870947a7244e0aff80277dd42e2e139", + "size": 2638 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "938cb4928eeb17612535aa5c462ed6a1cd98c4c9ac2d1627e690e6e4ec1000d7", + "size": 34835 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "ed960b400de004047a282a31b442a8cc7670fee3c84bffbfb950391e9ae715b7", + "size": 12237 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "bc5e51624663caac769f808aa2f4c449ffc983343dab8f26c007ac1ec631d4b9", + "size": 34073 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "97c4c683bb4d0d6345ecfaf168d84afb4bec4286cb164b347b4a8bc4f390bde2", + "size": 1329 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "ae7f18e4ec91de5dbaf5b25008e1c7642328bd5eb5e633998a896b3634d96fd8", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6561a97accb54691dbbb906463ecb6b9d7ac0cde5fe9b8d6cc95050cf6c84ef8", + "size": 37544 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "988af129263b0b16353642d11ab9be4a28080f78ebec4e576901721a9889659d", + "size": 11516 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "cb4740d7330978477a8c2e398402d158b473cef6bbf475c1d892e28b28afcab8", + "size": 36786 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "ce588f253cb99cad549804570c647bc76dc7bd61afd222f32d40917bdb38c013", + "size": 1304 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "898c386c79198277057830739b78e29b5226d05fe7c6d9d79a8c5af8f71c5453", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "bf73ff43f23e74ca622b2ad029f39f2eb85a12ae2df6ef47d38c4e39d6988ca3", + "size": 35437 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "c5fded08f40842def83c9bcbff20cd6f4cb6119c18d0676ee1cc848f8f03864d", + "size": 12078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "0a257b618ac19550c6a7ccb6b049d8c7e058831940d8aa64bc0598d6277beab8", + "size": 34683 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "1dcca2cec0663f4e9b15f8ed7889b1395ca64b91f1817da7053c96d45f50f945", + "size": 1272 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "e8da2d79dffa55e82517f5c0b0044ed8dc640d3ead62195ec8dc4c9e9f187245", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "c7fdee0068e42b1d669346a51be29ecdec32110efe6f35993b9676dbdac541bd", + "size": 37336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "cc24f4bf31d39afc8a4e7096160d1f6325cbd5d4075119120b0662bd186acea7", + "size": 10521 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "23842ae9f22fab7f9fd91c6048fb8b433a9dbba0d63a0e651e42c1abe268ed8c", + "size": 36586 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "643320a49cb4add4cb9aa614fc7daa28fb4739f6d64023f3949a26f355874b49", + "size": 1234 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "055909e0537bdc2a04b7ee9166c964223f290fb8ea2da7b4366d08eb7634cabd", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "d56e619fc7c72fe658cab77ff1d30620e31dfd4923536817794fc6516c5b1215", + "size": 34733 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "c353719a0fbada4f412f81f84c2bb498e4b761307c958cc03eaac601b5bdb1ff", + "size": 11625 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "5c63bf5205b3d7ae8a320f9df001789bf97426f01e37fe50c7e75bdfed30714c", + "size": 33971 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "df5b45ecd48fa458edebaf7875c38eccdc2aeb4d271aedd9778e1851dde800a4", + "size": 1246 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "05e31439355177ba037282a8e9b1c5a65afc94e9694d495eee1d22789281bc3f", + "size": 2628 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f92126d7a6039a0d2339a31e033853c9f2d704188d1ad2796edaf53af401d88c", + "size": 34795 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "d398025ca0acedc77e859f1c9fa2abf5792c21cab53054d61aa51827036f09da", + "size": 12197 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "fe6c83264cd1d70f17e0689b83d631888d40e33081e76af2b962cd5e8167d5a7", + "size": 34053 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "06545d9e4d557a3ee059902313e6af37e196826e173a67ca35f49e047b57ee14", + "size": 1309 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "507a1ee8d0a420bff007725f68bec75aa223bbef086d2b959f2244e6563de904", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "2d059a7011d76079290ccb4c657eb26809e2c008363d357fde4c71ebca6c1ccf", + "size": 37504 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "e101625163c42631a495068857ca0b73d14a24ed845c67ccdabec58645db5b61", + "size": 11476 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "94554156fe43154e13edb03734da03c1b904920e90698f3a4069473d52210fba", + "size": 36766 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "927cf5bb114a2abd22e9ae7b8ad868f5b03aed5ec0aa80675aa642a5a5cafe09", + "size": 1284 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "e2153f8d1a474428e4c61fd53fd6f228529f916bd7632f55e007275f048e8b0e", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "1f9af2d36458e833a503909142690f3bddb7ea4cb457c81cfb525764887bd36e", + "size": 35397 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "9428b56031cd9ded6289a77517d5b5f091a2485f578428f6a89446d65f0082db", + "size": 12038 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "b3ef99d46c12d6dae799b561e314d32c08a29dec2f8c44d3225a7c1c6cd510bb", + "size": 34663 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "67d1bfdc7ea9b0b1e682637a84358ebe4e9e68ae1e3970a4571023270c63b38c", + "size": 1252 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "f1a5520cfc92aba7121e9d7d8818ddbeccf35ba3d81aa961a49286c0e14275b1", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "785ffd8e581c1ad4dbaa2b96623093ad7ccd91d15e149200190cb059ab659dc6", + "size": 37296 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "20b01b9088b3b62d05ecdf5f248bcbff2ce208929174409d6a269c57281a524e", + "size": 10481 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "b166fd272657fd75e75cead9046abfcb01bb080833847076cbed938f9e8bf057", + "size": 36566 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "f5c45da92345040ac8a3c450505219c01203c2b1cfa5abd077c78b04e9e59c50", + "size": 1214 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "13926479e55e6f5f6ac726ede0d99e9d8ffc16d18a0978992264d9270edebb18", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "74af2e48b4a7c706e81e273eca18b89ca4db1796f3d29cca876b07594a8bcd2e", + "size": 34693 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "c78c2478400e1b9688fc6f36ee99d7022ef1f26654d9147bb6a4af49bf9cb839", + "size": 11585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "f283de3e3649572bb7c2f0e0581952acf49fb180a09d6e584ee200693927dc40", + "size": 33951 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "9a72600e46bf22535ad82a05555dc46779e15d3476f9b17bb41ea90cd30ceeaf", + "size": 1226 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "05e31439355177ba037282a8e9b1c5a65afc94e9694d495eee1d22789281bc3f", + "size": 2628 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "36edc5907dc493955c8fa9511d8f69227ce91b3043d7c49a90f39251e1f4d68d", + "size": 34795 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "7afaa70790378727257c66c50987f8444e852a078d9f72295187fe99da897cdb", + "size": 12197 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "37d29bd685db41f267c78e4a6cb066d5e1339d3e04e62205bc9d70b14e07ca22", + "size": 34053 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "e23f55fbc30dfd589e5cdeacfe7065e99839342cd2449ab76ee194f667104bf6", + "size": 1309 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "0f80869f16f3f41e92f41b29e4d0cda6409b0c227d112a22f1aabccb371aa2b9", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "02d862b8a13ca5e1c811581af1e0a345610ffc7703337f263221ce22ffdf9b38", + "size": 37504 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "4328bb34174c7e8cf126f893cd9b78cec200f4c749f4d246c5b77d5fe06198e5", + "size": 11476 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "4dd639ac53d7ab55970b06c5c4610f198341d4d45c6bc8ea81f4520587d5c35c", + "size": 36766 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "1934eade0973b1446ff3dc805f0139410627e7ca3eb74904b6d785da46c91b73", + "size": 1284 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "e7ed1acbe2bec9c19b857b698d7a518a20cbfcc235582f7d92b8ebd7db2b446a", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "242f40c3f523ebea14269112e8fc4f2b37da85bdc27c555c167058c2186e0c0f", + "size": 35397 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "8bc6360b6b2ebdce8f0e2f05f38cbd33da606a2a0686b42f53fc4d7fcdf8c9bb", + "size": 12038 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "e11f1eabdb77f88c7464a941a8b98e70373dafdc6c96e893642875fd41beefdc", + "size": 34663 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "8af6dd0fa913dc85c6bd0428ea91e12502c9b7aa08bb0b756b66b49e0ae229a7", + "size": 1252 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "cd720d7eaa27c11b78021c710e80caa1c5a089e8c8ff89795650eb17ff2fea20", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "0839476c75dedbf167a75c99c74abf3530daf7e93da8bdfe5209cdd66558abfb", + "size": 37296 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "2f59cae567af1e2e2f6f5d6dc070777806ef379fdf5bffd06e5b97b2463829c1", + "size": 10481 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "d2992c3ef8c5ffe725e155af5b9c10ee6c517e48bd7ddaca447dea4cff1b471d", + "size": 36566 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "0c203a07c12654dd413228c54c3c3014df570dc02e664c14db774037eb397f59", + "size": 1214 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "d31bca2da83c6f62bd9594dbcb7a09fe89d513e1e5cfdd322bc04628f2cf3736", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "85e5d6bd193783e07eb90eefa8be880363b89149474d45cd07f26d8b4b5aedee", + "size": 34693 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "16c969260cea89a301131d63d167bcecf3643cfe3df8bf897ff2f141a916acc4", + "size": 11585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "628a5ce8a29fd11d3baee6d95c9aa7d4309ad53811c226ebc9c38141acc2e085", + "size": 33951 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "ef557322263be0845c2301f316c2dd858a9d4b94d7974f04c3849d2064918021", + "size": 1226 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2ae6ca7a254dfa508a1de7bcddd81b4965a4c92834a29837f413bfdfb94b22da", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "0e62ea280126bd7ca72c89b5799a85876ece2fdf993350721cbc7371994419da", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "47cd02b56800fa872c1909f5fc2e26369d56c1d3c1c1a84b1d78652b35306e8b", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "98afcde3b8a634e533e7891a0aff1af608ef556e66f7d66cc0381a4348d7b250", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "b4d084c10491a7d82c5c192413a22edee3a4b80f3336705e9a63dd797cfd0ce2", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "50960d54eb8dfde36776cb761f244ce5ae9a6a60d162f4242bc7b99ad4ef65f3", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "f66e250ee2946fb44b5d7a7a193369f76612b5fc6589a49e1adc5c2a4f54f8a2", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "67f4ec336cab0577fb3116f91ef882ca0db353656d8347b5c1ccae14ad1c4436", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "094783818fe53ba94b613cde95ea413a7c4ed06ecd1d8ecad107f178b2c16e37", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "17345d89042359a0974d7539df362cfd245d4eee479021d36cb088834ef80c2e", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "fa1efdae22a1ce8006576fd9598e8e0a8ccbffa73b12d73cbad940049da76087", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "8262f202332ad6112498478f95611bc2686a56dafc78547efa1c2c1ee1efb9d0", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "9d85b3aaeb42fcd613e5f8f59eb828e891d4ab0344b1a5ca4070dcee9926337f", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "e185f7bb772a609ca259251d0426e579f69be245b7d8edd4b8f2ca0819fd206c", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "b6ef57566e50b12e73629df2f65d6556de918ff92d5c13d0d87e99f49c04a0ce", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "c154334d4807d0ee7c516f72b459f09612497b23c53b1482bce93338eb60ed03", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "a6391ead45d12e731a7a2c32369a92696d8591eedf4e35f9b6dc17b3b1ddbd3d", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "4461e8847328eb62d1643bebd3af18cc39b970907e3b1efdbf9f15adcd005e74", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "1f58325546fedd742b0f4c08d230db37642c3e1ef23a0a3ba32cffaab28d1907", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "b4269069288690adc8a1641e221fcd326dd101c797b4a56f72c6ba7051c09226", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "ebaa015d2721f449ade67443c2df13901208d1a38400bf1b0a401f59dfe3d9e1", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "01f036765ea526d5642c154742efa0f818a0c3bf1568cbf990f94bfae3b9b12a", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "58275bb109d029186697234290f9c31187a851fe7ffc926dbc8ef74d84d79b12", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "7d61c61ca6b1d84e717aa9fcc90a8c3cc223f0297eb1ffdc30638e68b14db5f7", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "789b0da09454baf143f8a65278395a0f6b04ec7cdd8f732256e3eedd2d228d5c", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "4711539f5c51919d28631efc3d9dfe36a69a482c1ab605b7d1f4f4fdb21dafcc", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "64bf8e3faac52df7e1ef60165c853b80ddeb1c216ecf0572340179c2e698d64a", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "b5c01c1a6fefdb2144833a57693cef47b3aa9d41ce292b8e1dcf83b38037e88a", + "size": 1365 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "746f01e39aba6c94340167c2c3c600db4d4dee8bdbbfaf4b58d84224d54ad569", + "size": 1457 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "4466db05d54f8b3dddb87a062a9f9fe9634e39bafdb925a69c999852f8acc774", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "f6d749b84a38e34bdfac0b18bc05489e5f063b42eedf15a54166cf0a0620d0c3", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "e543160d006aaa19352538c623617825c1afefa6589974966d2d1a88c3738858", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "980f7f514abdf21de604be21b923b4286bbd9ee84f082afb9399c111c3632c54", + "size": 1340 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "da2d203935fc965161afd6b7aafb9b2a6ab18b9b342be7dc48d25c666016eb8a", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "d3f3de854327b39efc04ac3a03edde6e600a35b2af146a47706561637c6f0cac", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "27b3bf0af89c127ff7439017924c32134b5b8b03d290654f5b34652311173f56", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "b4ab4c8cc6bd9fb682a8317242e9c3e16a9d848876bde0afe17302fd77079e11", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "5137e9e5704ef12977714901d6fc55c7d706f6f1919a34509cdd05c641d6056b", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "d2712645914a1d015aa95b264c89696d6ea8e47510713abe65dd358bda3a16b6", + "size": 1425 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "1fe518e78d0525e8d557e0eca0f07f0769f6594b79392daf0dcbfc7e5aaa4bae", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "e8653918e134819faf022864bea5a96f277dc60a5970e1dc735315d20f1b6d2b", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "a1638882e13c72a679c5373bbf348ef0255b000f03c9dac5335a3628dc9f4e87", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "d9b1a9e11562b133b745f90af454a4b57fea1b4d02f6310022ca35b9d906dd31", + "size": 1270 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "e9071097d5c33d3e2dcd364da8c75ae3af48d6b774c21f82d1ee26f03f3d0290", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "22ee00359cc5375921492b51e6b828d580e920e75f21326500196e395d80123c", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "b9f83313670c85c07ff3d3d9fc8089f830069bec5953fb9d55e3265a5ecfe817", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "e5642927b3e05d65c919281aae9d2925362f7f6837e814670ded9ef070d40721", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "22d68319a5b4669f91509009403000799005eaa06161300173950281ff86ca79", + "size": 1281 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "d68c862a4ad6522f855f6a6a68a429b5b4b513fd18dd0312767a87c66931fe9f", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "8235135d2f519127674c8c61b117f7060838b7b4f2cb32131acdbe83395c0d1a", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "40e6c00fa640bbb45f6aca2eb3c8eac27444037b5b1967964108b6df1c88ed14", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "b15a038f0b946531a0d8cfff4db30602f87f3567f35addb923999192adda8cae", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "eb82facdb02456139c9cebd069541e02f3fc042e35e77a0461dc68f34961d85c", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "c44c05f33a614c9fba324db413ba4e7509c0703087fe4203d1d130ba9bac126c", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "6b798758ed5391ce0dccfcf43eeb5dd7baaa310b32a49d02f3aa5bc6dd66be9f", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "e8e8f3e5a0533d46c6aa6031bb60f9c272423c661927181923a4166e6fe20daf", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "a118fe661916520944152242950961e6b6f98e9d2398bdac7bc83297292efc42", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "2e55f34194d7b7e700ec11ca20cb5c74993441010d70c50294580d11ff3dd7c8", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b4ffb38e864166297998e5981a70e38ae2f23cb770499481105dc8db3d9015ae", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "c4a18f1489ff46972f7c93f51925847ba4ca2f3e213a5fad9562c41973db6369", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "7faf3e01c160c259f430418f80755d1a65d6ba7ddd366f00d0b11abe26f08120", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "01c962a16a96cc2dbab1d14dfadb5d383a9eb8a0c5a3ecd2d8364c149b66c284", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "7f8e2ac2456e48f62a6cea2cf762f3c2e54de8ce8cce14855e5b93b4a7e258c5", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "0edba335074fa2ce879bd290f834c330ca679c05ae0d1589ce79a80de2206ee7", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "16944553678d0efa0d48e56557dbf5f7d1db04d608f7364eda7d7839f7e8f6e4", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "16839f1cfc9b5d6b51b97239b166a3c99f844ba366a7b8b5b0139b1f7a087f99", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "641e5eadffa9dea53c703d7c584747501bdb1f4e52ce2cb655475db625d9537a", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "d1fb2b2e2725c031681455a9aeaed628b8fba41784689189a573551832cfb3ca", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "7e20f9959be69bc73eb514921a9c98614b36b5c2ce44f1f16188ae181671182a", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "3168e08cbad83d105b8a3951af40df719a96e85715d54338b4d1aa9a935d49ab", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "8510175eddd4266fa44c4b13c05920b8ff277934cfc7f58c29636d32eb731eed", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "d2d4fb67305b1a753d0d70a9328f245cac492cda73a098b046cb5b153e073dab", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "df3e91c51220e7739be1e2ccb2dda71510b930322c0fa148bb7b5d976b955e04", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "960a2be22994f05ed8c5857c9b9d91f50fd13c0447c5ec1afc9bd8a24d8075b0", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "b34d74c0fc42e5be718e9d65061ff89be14239e14b01a1af134edd4c82223750", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "fefcbfe5feac0b7bfab42ec79b9f76f43b42cb80fae6afbc19814ff2e8793bf0", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "3e423fd4926ca3ad15ab4f90cebfd461e4871676d6699c8500fa12f86b6a4b32", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5b8cb85d720e51d031afdd851175e8627d030f1678d35fc8e251647f0fb61dd7", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "5e8c6f5c155b2fb1f895a67830b1120b778b4d4d7914f97065ffbd24498c89af", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "11e5a402ac27fd91b4aa79ad31b10eb8b0722da3809da0f85fa6894b3b2b6f71", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "c7f2abbf03947a794887453204c2ae5768c7b600c2e92075f7b79409e3013edf", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "fb5668af642b8dd2cb055c0d852f650b5043b0f83cc9f14adc989f867199c80e", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "59f330bbdf3edb4945424144fe4657852d3622de14687f5529be03755b55b163", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "544f04a13dd2245bbb15b4b623e5580a041d6828c03b9a1411c5e295c2cb2e36", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "0bb700ff4d0391b4e69c462f64693ad02a5be174b0551dc9bd6a9773833350fc", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "6e4dc755eac1c4d8923cb0f98c28e8ecb2608dd9eba28802325577eecaa38909", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "5f892cb0cf5028017604d4532607d783654d9a46b5f8ec5063bab3f23a08a528", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "31c15b687537b1733e93395bb9adb9c6e3156f8dbdce114f8ddaeb118b8aa0e6", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "163194c4d59d223cc4e53985cf29746640996e0293672d2bec7ac01bdebf5705", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "3e002f28f8d947d8a2f001aa4052d7355728fe59769c27ced27717cce63de13e", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "61d0e667b3b8c8a9e08eb152794c6f3147d225e1ae023586ca3014dd9c761d72", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "f7783554ca89b32e3d864e4bda9dde33a141d810a9fc2a02fd93d13c9ff99434", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "cc48becfdfab6290a031490f012c6e21e88b36cd0536adc85416ca96cfdd42a3", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "c7a55132c9d0165a1d73e07f8848a53ba5ecd92f7903892dd6c26813f47ea400", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "0e79db72a1ffafd0bc7f67b4ead67b216d0beff7bf16fcf73fb1731941b06abf", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "d95cf810890575f6eab6f0f9ea320852042ea28e928567dd3cb16124399f087e", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "20cd5b7971e06b049a03300ab4b9aebcb3ffdf6943433524db0ee17c0ea3b944", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "9d443e85eb9c6a689398767f0a96a3e447510fa0ccb8a3a47fff78ce4abbf4e0", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "3bc7ecf3b3d0b40ba1a162c161de7d8a289b882f0f55570ef3eecbf3f06a5951", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "2eb26f215fa224e0554ee5574b9f32f1bf466fb8764ec213a159c11cb7ce08b8", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "65756cc0a1dfa2fb967c74ada76c728fe8c3b81fcd003c635d3fd6b4a8e8ea69", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "f8699d62817c1628587ae4765dd5ffad408448a2e28a59ba03c6ccdfcf64e51f", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "87c799eec8df062eca599b7d3904184535ded1d2aedb02bda83f5e4f9849bfcb", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "f8ba0ad39190cc5e2b662bf9a5f017dce26d618deaac3c043873b2c75c1619e2", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "82bc00bcd38ee816d93a4da75b8c993d12ffbdccbf1c3a7cf65754eae5d6bf44", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "5b3f64aadfd4c986b6bb4a39ac9b97d0c58bdbe34c67c8e7519ea391c45afaf7", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e130a83641524f292bf383ac26fbb9d6239d7a8c3612bdee059502af4b0065c8", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "1bd435f88e91f03dc4fd99ca551a7f8f0c338ab6dfd1429cf5e74e5687e7eaff", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "d00ad639d762f0bb4143653e35d7be53eb470dc7d0b44a28d467a0333e3b7aba", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "46d02ad2b42e8a577553d3c4766b0b1ba149817cb772fdae26b579942bde033e", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "3ce34ff62147acd99549f06ad59cf37d15bd01fef0abf5c72df28d1ea2d5d79a", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "9480ac2ae9989f6148bab3949ba6ccfdac58d35c100e3464d8ae898c104582ae", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "a9f4859a4e06e14dae410bdcc178449f46cafa94c80c2f4ad4dce5b0cf534ddf", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "70145ba84fee54f2960a2b213e1f6c9134b9cf01fe6ecc13988c4188d0a36e25", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "02642e67adbead13e74a860124681d4157e1c4653ac0c5222817d482eabde14f", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "fdb7a724082bccf4bb003617bda7e7c0e7e9bc426ca743eb25d2ac8bb826f3dc", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "1c486a842a931220a53f0349c4d935c80cf02008cce5b09257f4bd5c4c46d3a0", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "544fab378ae12218945f0cf4eb381f52828adc72e48dccf2e118a38f76ec9ede", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "9461af7ca95326dd107ce738626934031b735068cac8c851ebdea0e27de1e622", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "8da4013eb8b2f5921fb4c3850f2a32f4709b72c0974115d39327188598e5887a", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ddb58e8ce4d2fe286458dae59e4a7f7682d579fa6be89bd631e1fc950b3c5ea2", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "05414b4f2594bf4d837a519cd13c7e913c81dc3995d3e6df5468a70e6988c25c", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "9d42627c6725e9c032fdf95dd133aae1d1f9603eb3881a305e710f13065f7ae5", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "01dd9e691bf69d40b21f774d60ede85480987836cec059356e03057638804c82", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "3558cb51f253745a2364d33a1195d0f1efb725fea413d8e85d8dedaa3974d8f2", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "037a9d1024765043bf7e19e921f987ef4df0da3fb8af9bed46c2c8afc0a39958", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "aba77bc3c9b72cd4eeb4ddf73e593352eb683c60101b2e9df717e64d07d2868d", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "a932ae683e63ad7c029497dc9f28f9f96c945729453c383700a26be9ccf7699e", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "bb4e253ab4fb21afe6a22c26c5edeb141987a388acf4db0ba47ef90d269e6671", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "a1f5ac040af0b20c76ae03386271ca7c82f406db8d82d480d0ac8b325add675f", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "a9b065aad2383c81bb5ad54deb23a01aa7f09b484e7f4895ffef1069f5f3f04b", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "a3ce735d92a396bb1abd17f33facced8a702657e64221e2d1377243e6d0a2821", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "c98aa5cea555387fb6eb969c527ff065d9aea05b9dd5ed53601704de73e3c913", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "53d43eef98969c77cfecc5bf9579bd81e5af12a2d8a0a75e2d9472b4ac2a9e1e", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "c1df2febc4cfa7791dff5cf17c5eb10ec6d3c233b96042c057a18666d4774d10", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b7a06c5081ae4c94fa383a8adb6262b42313ae5d0917c78f0cdf8f84a84838b0", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "cf9033bd5a5b5e8faf474f51b115cb9353005fe1399323de189a8072212f3bd8", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "a13b1a174a3f064d58522d23ea0a82a82b9d3c5f99ca6e41a493a5a26f5ad399", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "76d2a2531b716bdee939e0fce0e9c9193b49b2b34721cd18b2ff12df1f8eb729", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "e7837144a8e6fc17ca8b7b92c3ba0b42ba42b154d75a27500d76bdff42756444", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "f97672a80ebfcb4c9791186746558704c3f65361f13770370043a9b25255dec7", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "56ef6e6529c9786276cb05487a6b85fc492472b25e677b713bcdc9d82bbe2e65", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "7c33d529fa6e865f8eb4677a33dde8867c21e0945527b81613db2571a6fc5e0a", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "be83a7be839c3afda63ccbbbfee41b0db7946fc286e0613cdfe0fa56c3f611c7", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "e6dc9891cb6ecf827b01bac2b180e0822dcb6c7e85d4633e769e84b5acfdac72", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "08e2da1d5440b7ef0f6efeb958446bcf0d16eefd5c4d4d35a278615157164e01", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "d5a45250ce72c345266321809344d5a27b8052b7b47016fd738795b41ec14ce1", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "efea6b33d67aaa3405177c6b6b2b063c03e13da18bfe0fcc5a548665505b2f05", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "106f8282011d404e97eb7e4eb77843f1dbfb2f3594120ad49b9521530f95fd36", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "50d25a378f2820a3eba2e7b52b94211f94b4a5d61fd3e9f1b3ada3aaaec61b7d", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "7b97f89f76c532791f2c43dba4ff2a5701d18e4d6e0a66208b012b36711cb0ca", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "8fe9d46fd52674d6f147dda8fcd74757d604717b3ec5aaf90a88a665f1ee61a1", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "e96f0d54cb741fee753a7c76cc8a23f26c864bb0b1fa29c26db610b72d11a64c", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "a40d22c84cdc805f967db043889040010313b14a6bb74f8f14a873bd110c9cfc", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e9c895309f8ad0b3da99974f8f2cc882aa193bba145ca76b6e6f554f896c0df4", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "90867c7ea97116b97821a4d759cf32a4393ec64543e6ef3c00dfe0424af9c8cf", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "b9e85b9456bfa9eb25fbf70ad23f9535455f515f648e089f94d34b6bfee4bae9", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "1b5d53776a99a62f7b23479d247ff96405bcfc42daa18088ae2012ec341ccafb", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "a53821aae9c1aea435283d6fe533617b432736a58ccdbb7b5cae66035a006cec", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "d921072606580a8012098d09c8016aa5209a26e735b7929c4994c1fbfe4af369", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "2072e38c0407eeb41951931dd519a16b718a3f1bc046fbf0e826b80bb647c5ef", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "a4e5a3137794b08f5b03c2df79514ca2f984cc4e601a3a19386926042b3412c9", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "670d0f8041c519ba3c9be909072925e2e082bce29ac64744c55d7f86174d3b8b", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "f9145e5a03aa31f48bdd9f751ff313111cb1ca0019243cca4d830c86726f5b1e", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "609759c18fddf72c33eced52520c0720806dfd7f886e1de1a3f030c0b63809f0", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "08179638f496369a8e4eb01006d626abf46ec25fc37839811328e225d3771468", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "552ba2446eb89ca7dc88bdc2d6687da6c9e08524a2021611fb0b1012d53d0314", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "9ee32abe4d90d8cdb2fae294038fd69039b7852b75c06ab97ae8050cffd03078", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "389657803c03f66ceaa1a0466e170617c9cad4e6968222258124a90f41e7ea51", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "93223f81ea030d3e5f9132aa7701824f2dcd5d7ae09fcf876fda3884cef92c46", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "27a76a890b5687eeef1dedc590ee23e69c608f117b6a37b83b70014ba839aaa9", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "b8b5c794b508816315bdc3896bdd23774263779ea62195b817d31d0f980468f8", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "11a264e1859718de9b8bdfd7667c0ad14b06379c2b395758a3d8a24efb39b399", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "44cb769e67108e7bc937630bd8b38d5fa8d4bb9d7bacc2d20b1ed53ce022d5af", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "f3e6bf82022f25a5060184ea32cc64101f8503e7b00bc81cc1fc83da8723dfd5", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "21f62332685744314790a28f01a8e7974859ffb9495d648454c3a446b0dccdd5", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "3aca4dda76dd82e4e2810cf22c5671a4b8d558c061999242da79210e5690226a", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "13be46d227583c4afa9ccb330232fb4701448d8e2fa4a257a972a8d0cd7f11c0", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "feb2bac06e8d3059dd501701c7f6277107ab6082023d73e764133c83dfed229b", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "21d5b1cb52e92078593e724a3f9339f3e437bb7a50a486ee94aa5ebe2fe6ae8b", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "98271c228da776b40c434bc1186a810ca3b3d60f64effac6d000e26b689ccb27", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "b73af7782dcf1e90a4ea089bfd1eecd6223868bf58e04bc220f09e9dbc70cc18", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "d1375da3b677d6553694de330f3afab9cbd10baee42dbc631e4d720e0f320b5e", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "3d1ca6ba30fb06d9d6e1abb34a6c10843493ba668b63cbc5ffac6c1e36dc26ce", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "15bbbde13e68f957ffd0b772ef648b29a5a2f849228822c74dd4e9f3e83cd6bf", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "ad5c73fc212742d0c7bde3d3d9c2edac823f16176317ec22c84dbba3286915cf", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "d56645d7501c14389d9dbeee5081a26e8344b46b81e9019ed863ecb415f03ce6", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "4fef0ae87d42970f72ea65e5e2ec2058147169df9b46954492df0e7a37d0cfab", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "16285a713a0d190b5c1294a20a7d3cb1eafe74ea9ce6dcf4152c52f19920f11d", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "ddba1bc6e1aafd5d8a4604e903b4efdc6363ec84dc55cb017a7713e2e6edec1e", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "a04435c352873f78ded4f1c74f253093f31e796087abcc5993d601a6f30478f0", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "6f4a5e5df059b724c36183a412447b3476b5960e6d095998dfd213e6e95d30a3", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "3f460124b2239aacefefedc7fcd156476d51e71cf4fb6579cf51e8ffcdfd29b5", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "e2523838c394e762ede9bb2401474589867ec4287f70901d8cd605f6cb14f507", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "067dab3a9bc3b8fd4ccd2014e247316bba18d7cae686dbd4cf65c6ce99527221", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "214bdc09acc02b5c9b9a0c4850b5aa016b4c477f8245d50c99cf11f6120ad1d1", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "5fc18e3e005332955de70d0ea7b7f805aa464f80a6f77e7a5a8e5f689d58436a", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "c8bee204c6ad6cb25963f453e3a742a31a75036cb7c9d64d2d98517b73053daf", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "4422d62719d7808659ac1a403aaba2a803361eed368c45b449e3b7fbb09b1594", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "ec1a85cc4a4c3842bf76c3076dc6719ff696dd4175e5f1d6961f32916a4fb8d4", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "08105c65e2b2c09c02d93c52e31f8a7c81334f317048afd69537e913ea8d769e", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "13f8a8c0c353910486f977f38a708579e6d089254cdaebcde85f2427a983a490", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "5494c891af81b43acaa7cab05225b97d0912dd5b533ef6721badec1e7db26a13", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "f7d68b42bdd2e7f3548f94c646ebdcf5afc653ab7e3e1df01d92b624dc7afab5", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "0a3260d8a3d8d5046de9ca8029f838cd8d8b0f534bccd4cbd36006a9ac0ba905", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "354294d58d4e6d0ba847e905cdc60797835defa3447a0180bb8b74cd6c145b3a", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "f545584c0fc512ecd8f7f1903f728bf787fb3b3dad77b663346ebab1dbeef6e8", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "4f003f90dd3f337cd5c1354de536986a3be6f58a5b27e7ef6dc5d2d0ac2686e5", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "1849a6c8698734d2b9822de32af5910c8d0d23540b45f180c7aa4a0b25f9bd25", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "fb8aab64cb0aa1b083d0a33c401cc99b77af5ce374e3d38aafddd0dd88e8e451", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "5ae0019da18c09777b0dc4e842bf2b71cb1dcef55edb3b308534ee8696491661", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "0921822107a3d61af7f329b60029986eaa847364373691da09e3f0c424af2c3f", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "845b30e5e5e9c75ba3a8ea365d8564e6ad84a6567ec7fb4c3d94f421c71ca3ea", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "dae7ecae15a9fc0542cdf3ab0cb677b16c2369da4fbffcbc91f796b81efeef85", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "87b55d05007d54e262e6bbc8ad47bd1c9b9ae58c7a763556b4f32263e347cf12", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "4589ea446f75a0a04cd4be5f082c7759fa6e5e1916ab7b7059754cc92b4e8be2", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "fffeec1691fc439a7840b37941fc4ba689206bb25f6f9e2e222a6eba7e97f276", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "796514bf6fa84566f8bf7e39d3427f4eaec79a507e6a81b0857657291b5de4b9", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "1038ef1c372c0dc82b97d26d1462e6a313b2630fd86e35fe2e8244ce91d906f1", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "071c33a279b0af6dc79b60eaa3ff552567e769e7556dff19aad8ef5b5eaf1a6b", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "ee9205b0aa216d80c617c4086f50f175fd7cc95f0ca73347a4d237a3d3ccb126", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "90e5f306b038843298276d95d9e8edcf1b8a4c38316f5305a8e973810fa20d76", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "3351ecad77206efc531bfeda21cc248e61e4aeb51f1cefb1aec2d824f6a5e5a4", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "d9474dd71c3f5ba1a715093fba3e89776a9e90001de0054dc31d739a9b717016", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "142432c1137d8fc97c68d452a3e1e984772da727d31278dc44a9925bf682bed3", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "bfdc12115d43341439f966c882b5412ad6441ad32f73bd01dda786d7eb6a73bd", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "4b80799637cb46aca06968a2b8c75d437b9daa48311c00bafb869ff2665b3f3a", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "c0ec104677d16f444dbb774a28c174933902cb533ee3d26779943ef339fb71ee", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "79399dbbd4543e7e930bb31cb3a017af77176834ae9c3321e983cc014a4b4650", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "0a4e87887d12f5a5a90ca4de75571209ddc1a8ad5d252d2897fa5769db1f7a45", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "aad338eab6cdf13b2aa28b68a2f78200ac32d5074ba899072a43bdeca13d25b4", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "86accc223faebff55f66236bf685e62e7d59ce76e92ce736727823faf936b06b", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "f343cedaee357209b51743d6153bc85750b58c27806f93956abd9d98af362dcf", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "409d29ba9d7dc1c4a77b92a5165b3f0f2299033589207040b372daf48ae456ee", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "9a13b9bc64383f1b81cf039cd2d9ae6c42245a7271fb9d0c38eadabc30986086", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "d3abeea855c931acb0581d08e13cf84ec9716d11845deec12c3df2cdb4bc46fd", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "51b234e98fa3306c6344783e6cf462e69836f70a6b352debe7b59372240877d5", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "080a7011101d647877b6ff02e6858b47ae90868c1f4796c8e7ba938bea1be025", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "e953df72694c2214a728fe80b5dc3a360c58f868f4c254e19656e079f8270284", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "d9d9fbeda7304bd564e2b9a4d73e3a90a195ccea8e68a387f74c8718abbf67ef", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a81a13941f18d56540b6f1aa1384451cd9a8f713f540ea30b452826fd3a3ef96", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "1c35e98f9ca0486e58f1646aae441c895072467b7f1f579c57b7ed880ebfdfd9", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "d1f49fd8b972adcc43f878c44e0dcf2afa8a0ddbb8fdca0e9011c0a2c405ed8f", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "9e3eb5e8573c55cd428b598f5b04fd1f32f99bd9d783ad9ad25a0f0b1640a7ee", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "c8c4ccdf4770e5769546a487af67a1858bf62a8c10c1b3442ff40f0c758971bc", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "e401f75cfa980eeab02adbd0a446e5e3d4650389767dd8e5f7886b4313af1302", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "53c06a1e940c4d8365ea5f19849cf8d7daa961f9121dc8c05947c8cc2e7ab5f3", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "97d035a28cc5a7dadb4574c5e5092edc67ba08bf65608784b40d6be281955e2b", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "2281ad3077a597bf19edc4f4b4d27d5d30635f28d0df2a7da9514bae402d4d36", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "436cb67f8b9a40a55c53eb826fee3ab522a2bf6d8ac3f2e4b34a9e7ff253248d", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "f53ee36b0a8698804a7f2727f262ada56184a9c5d771b131792bce50278353dd", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "7f5eedfa02be1b25304270123b0fd4cbfc155097dd8a0f9103795e9bcc4c2869", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "d16502831cfe116da67ec8f7b8060b7ac3d5807f6ce563689064aa8a24bdfcf5", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "face6800995555e6204d16234254abe41f1f3a2e400d60d7efed30ac41391b0c", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "fa48af4c366c9eeadb9fe5af73892875f594288c43602bb1cf20351a699bb8c0", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "85bdbe845f57241568b99a0205fe51dd2e7357f61c6f87ecbe9f4c21df568502", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "7ca349599e2ae0951359e4a935fd69aa279b482aba4366ecf801772befdd6f01", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "87d34b61124a9f24469b1cc702c3a8f9b5b008e8101d41c97870931dc970b6c0", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "0b8e34cd451edcfcaeefdb5e7e68e4dcdfd61f619b2f3c62b84a38fec8d52940", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "5756c4ad99939caba045a98afcaf2dc56bf839365b5430a6553ca0815f6b385d", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "5c85b2a31a0da6e86e28d0f8b496e9e6f6d51436e9142877deb5e027afca308e", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "0c43188b2c5063ec0ddfc42c1203261b229216f0b32b5ab44519b72251708bf9", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "c5833352c6ad8da0d6e7e5eb9858495f19e520ecb07b741a3b8363151ec7868a", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "4b05e2a4b30a7678156a24d32618726a6a868078c86be9570a90dfd4afcc6405", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "eceff66e73e7ffb583423c48012c4513915fe1d9fb30355dcae2e7ca01e27981", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "a9fcb9569dfb063e29e01fc38f8629133d53b91e7c7146c79b8974b4b508caef", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "84117e61a8e1828fba08059365ecd5fa1f0f631169ce830621dd678d9434c892", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "39b14e3ebcf71a9e53dca9847704261c427e713ae4c744c49085fd613f8107a7", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "6efca05f4451030791142585c90a132a2196c0c4a2e910f47526ccced3636ee6", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "47b90a57452f5f54c412db60833cf0487fcc968b9366165477d437d8ec32ed9c", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "12d3049c25952d8d2d004bb7c9c096e8024854c98374ee1bddf6559e3653100c", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "e6577debfed20180687138f5d604d30e24945f909867682951449abf77fd86f0", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "f8b56b6c9e91e4f08d375e090296189945956d06ce9debce101599109104e3f4", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "0f683d98b66e57173a0e6b54c0cc31fa35ad780bd1b71fab3908bf27b7df215a", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "4a2ac9ec9093adbb3c85958c701375949aac26b3e7723b57a8ca39e2c88f0c39", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "9349ae3423d95b32a254c514e68f8a0fd947d8cd3d7a2db027f783428f2b603c", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "90284fddae4906cceb9f17c093fe8d812939ac238d6d17e804467dc4734b0154", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "ed5e87b872bf28fdec3a549745fcee6b3633bd5b832c5210ec2226eb7457e572", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "851f14c87621387db293cff89e8ed917e7dc535d5de4c7e3d769330915ba68de", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "aae1d09a629203f914c0adf6baa252272c52428219a6704b1fc2e9d52849cd77", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "234efa34346a8596dea65e59a05364af6c5b0e7b782527cfb4ad095ef03f62ad", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "f75b7c18c9b3ab96b5c56c447229bd42323a5230a728985e5f827af5f1d06047", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "17b506969f6ae574d0fbfdfeaf04de1fbe6d412712ed672ac39cdcad71c686de", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "1184e3f964e0f83cbb9483feaab7f372204814316abf028e162a66bc033321ed", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "dad127626317111f540f10a8bcc5bc06661fdf562b3987bc30fa0079c8a8437a", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "d94480a1e3aab81d77206596cd1888f1ea9db84a7bf75c43ace97cc4143d9fec", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "973b9cbeb0e7922af7e8faea1d477ed3e5fba9f68f79aa01f3cbbeccd204fa46", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "4ad8b07399dce14f1153c961efdaf509d187a91420fa6352cc15677c5091ec8d", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "6fb24b0cbde6837c8e081c339205d9a14335c7ec5a43c94f8dfc09e1224ada17", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "a3ca4d8348cca900e80881be10de56f967a3cad140127642d097485136b1e79d", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "bf15642e8c84f1caf935be9f882cec1f6ddd105f68ff992f265012a6708fef3a", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "0490e922a99cf65d90c15483217848d1559ae4d259cce7c1e8ed3a418e4226c3", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "3537048caef721f0d8d9ad5dc4eca0e1cd38538749f351226b2680659c1174cc", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5af9ff2c549c38443b5dec5cb220fc3c1b588d04689d7949a2c894d3223cdf8b", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "313eb36cacbbd73fc7d89ead0db504734d2d4e0250126f677fa938d84a7dd2b2", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "60fa6e4c346f96dff576a96986e893a210bb0fb9657c64df4d1cb238686d55ee", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "625bb3080d10d84948bbfc4af7b7564ec0a5173de4edfe97ab0955d067cff18b", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "9f168c11779ba8ecbe6b6cac3cae1b63ac16067340bb40ad51010a62036ba8dd", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "6b9fff0c7d138459f083f1472decb844a56f1febe6cf177af7f2cf5b7b1fdf77", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "1096ee30b04aeaeba90f92758e838ab70a0b41480cae7bb285fe3e397e5aa6cf", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "3f6d29467fd87c1dc330efc9149fb8780be304036265eb769f99657657648347", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "774eade7c742fb260326b59dc4307b8186ae04a52582e20e1e93c63d9075b62f", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "830673162faaee5614ac132815daeba87611ef4becc7eb0561e15b1f778e0a8e", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "937b4e995c6bb3ca92897ea4af7eaeb7169b20337581219fad8c11cb0b343fc0", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "5825cf823c29964976873eee213f8737841148676a3d47ba8c58da42ee5354ef", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "a3d5965b38f0cadde3d738095515827761142ff9883ef581b41a30420760475d", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "63b2b19832c1187e7e72b45b826666abf8bfbe0b47ded50e2e317a08195926e0", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "9f81ef8aca4e597247148b8a57b7451384ced810de22a6a4e6868f754fadb1c6", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "221b6139e98191c33cb2d305559e2a8c4cc3b53650ec434534d2ccb75160ddae", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "33afea2260c9ea27e15f38a4ad9c0b411705fadb420cb2dbfa720b4d3b70fa57", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "e679d721c2cbe9cfcc46a3027e55daf5f0edeb20006cda9c10fb845eb04752c3", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "1c95ccda40a8198d9f24744fa527263c884d3ef3134ac15055e5179b7878c659", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "14c95aacddd234a2c81fe7894f9b38e5d0cd6060c7fb4168b1e286880439a4e1", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "ac8e361de1bf1362ad24b7dae64bf947a338c2e84db9e68c65e89461ec88d174", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "56dacb7aca2fed6cce8b3ea3fd3625cf9aea935b98bf67afe1c04087692cbde0", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "51eaae80266c6783807143c3da1190315624780b76f0e32dcb8247ab161053ee", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "2a948cd1f7dd05cb95d4222497683b966a0253529bc2415f1582ee3a11f1a2d3", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "dd965d708ea0c7726c2e82074578937a31ab1e94891685f19003bac2cda2cb5b", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "460df0f9e8b368caa34498b7d8c038c9eaf6fb009fb2d0222e69ce28b673cef3", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "448ddc4af0accbc9ce5c9050e46abe332484384af4bbb7067645ad979315820a", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "ed2c8cf246b5b43443e4b47f67a7b53e860c54c66f0a3d5ba59f8a951d9d0d4e", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "d29611af4c01daaf721e16c72d44d8abb407997164be7f494f0825163f49fd40", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "7f4e7a1473243e9a27185dfb767bb1f6e6236328343c59b7663fb8088c13c8d9", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "10363b79b3548f691b329ce6c4675fd512c1693dbb3e839e4057113cf80afcb5", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "e9deee67fe4178681ad82c8d978e8de4e937b49902d655f2b92d8c7105fb0f88", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "744daeb1a4c8d27bcfeae1f8b1adad65354523d2cdc971c671b4fcb1acdd9885", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "fba229146e421646760a027b48e71f49670b2ed43c361b9d5a5261b3bae3f7a1", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "9d881f160a1a700f69d592e7345b01ad7f16df5b391935fe7a3380a9432faf25", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "fdba5d065698ac0b77981db995a4906b7d9cfd1ee0d23339d4c7710ec2d6a079", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "b6d51c359595e8314ca7dc58770cd16fa744d31eceb00bd59b6ca9f2ccca0e8c", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "f78ea2fb428b9f70896b9dc8c474299a78bc15490e8b88a9c87a9e4d68c042c0", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "1e315f208db251c7ed26fc43566e507182a631d7145931396518c4d20f200161", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "768cf7ba1c04fb5b472ca6de3f30c74e068d60057b903485f262f5f5d15aee94", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "12fc3562447b4881f51bdd6aeb659607fb7b777a7bc1b6e17a8bca862d90ca75", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "d9698bbf8a9d5b91ed1a385dbbf2361a801f37a0e76148f43e2a20605ec7250e", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "4bba4c6755e56ba3ea3ef8791b12cedd4a743d23a9a520aba6592882941c52cd", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a28f89d469f520f5eef4333ebb9ab092ace3e4f356bad420f49f7afec054484e", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "d09173b95909522b11dbd174753fb09c4fe29635c940455497d46a44a20d6fc9", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "dda4120976b3e233b0c7372afdbf4ae6cdb7293eae5f669dfb2b1cce98fed1dd", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "cf79cacac43e2d5bc08c22c40d6ec3f7812591f9a5907b79baef2b42f73a8fb5", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "688fd33408ca80117d5c63290ee6e9cc0e99893f5711eca07b2f5688225a4a4c", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "0a08942a9f00045a79b2969313d6d2ac1af8ceb76248424f596ec3e8e0cc9a22", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "bbd0d2a0bda3fb1790b169d8e4c14f450551db7f5101c0ec95daa5cd6a213493", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "fe1058b08d6a552cc768028bfb11b67f69e56d73a8cfdb72ea690f953fccc50e", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "b9359d5414d3ba033a09ac97d3a8917618c816f2b5b01e0d7b1e80078a469b31", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "752fb8b77ff8c6fba16700b4f4bf0b90446631972a40250092b5e8692f020e15", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "edc224e96b3060f8691ed88cde55b6aa82ed4d22a5fa8d0a845501a1f0743623", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "46c55ed5c5a51beb830168355e23c4469cfce842ed2683b305b8bcf8ef753cb3", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "db66e964e114af1177aa06f2858661abb583a76f6d6b83a6876301def4cbbfc7", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "2274ba6d820b930e0143861551391d84c1395677457cbd2c041422f65bf5260a", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "f62c4802cd68c3f0a9f233da4ba17126e2d884bc2baf43704ed79638890a0265", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b9d04ed68876898510dba0a2e87e999d90ee4cb1ff9f598e4956906a9878c14d", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "327897b90c75a366d51ca05761d201f8decb9c50f34ec26b8c55b868ad5d9c85", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "35c023d3e083910df3e8e65714dbafc5d313feecb7d3cfdc61d5945d35a00dd6", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "a3ba9d3b85a8c616ae03cc34baf7646f6a7ed551ea4dd16331f89e2e6c463ae3", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "a59fe0593abde692af5c4ba6772c27a31ca590365138693c0ca41375ec6d55a3", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "c55dbe50a572e88e67ad66648e718aa8d007a22f37ba6c9b4da518faa7e47c66", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "c55175064c4f68f8578bfebb447f7874347433f5da2c0abf1cb819bc7e34b1b0", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "bd46596c1e03f6ec5152abd82516f574d8ef8e124d9360bf1a61213e303bccc5", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "871bc935c5f7fed54fcaf7e597217e905b9c526a759fe1586c5f449106a3319e", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ed60029ed66e589793d29c7ec69008cf824895b965932d5f81add6b0dfbc3a2d", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "27fd362e7ab3aa23e11ab09f6193d1efd2cd3a47bf7acef7791b3bb0799b91e9", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "be24de67acaec437e7d508fedd35a66c3daa0f3dcbcaaefc952bbb97426c3188", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "069b285be48f7b2f6ccc893df74446799f22eb2cb1430ce92e094825ac168246", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "27408d60a2d4afdad40de962b1334f9e49832a944d0a933089cbfff1c2cbc118", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6e16253c3bb0c5f9740ad53c3fe480a1e74c8bf289e075319ca5d05b2c433a1c", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "008546272486cf08701198f35ae23e1f7902b0e092718a948f9a73e10bd62a10", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "0008f440f61361b4d6fc67267aa6a566528a371a4bbd17c68459c746f41c9eb6", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "3f61ea25d9271f846a90680b248f31e48136b5f8417c8660f3aab522c45e2a20", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "8d245773ce58d34f5601c45f085571a7fdeb76c87d71616abf7bc96ed521dcae", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "423baf62a73b606457109492b1d6bd6233e360c26be6256d22a57260cab55f0f", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "e1b03cf876d37c41048f017e6e242ee3f84a5b41699d0c53b049b52a45fb3f71", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "2969bcbf4370ff5c4bd4ee741685e4e0a48c14a128156ffb07c9354a5976b531", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "76e46f955a4fcbd64b5c0d293fdf579e0d52e34f8d970084c4915f553c1b03de", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "78b3003807a219968d71e3e0fad141e4d4861bb6be9b468b426a77e0f083a584", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b6623a52f401ae6afe288a2dfb6e09208f78d78b8a31f21716380d92ea761330", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "20abedaf7329af5d90a16d6954aa2b72186f469d1760e5f1e4a12618279baaf3", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "fb76d2869140bdb41516b68113164d732f890f180b14bf93645ee5a0689945af", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "1c9e6f306a9f51e3a6cb83da4e9ed4bc536f5065716ef59a27e42955b75f2465", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "a26b94fe554c6232b5ce7065dad0f56ae47d3a8d1a475ed7da1cf7e5093745f1", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "ff193623e18eaae75fcab7ea2ad64aaf3e7cb60a56406fd563545a6731fa375c", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "4f9588de461ace64d475b7df3d8158d065970d3708b3e4805d8f3360c7a18803", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "ce7c945ed4a9e5d97fd6c118dea9b6236f04ab2c2b4dabf0cfa5581f8e53f962", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "2bdaa467a2a443848c03973c9db5f5bde23ba686fec1c38cfc449e53d272c765", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "1d0571b969d0fb818c6c0509886cb8a890dcd319e630de5356c190e4fe8cd8c3", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "54e57bdd17b1c02aa56955aa5716d057d7251904c7dd392244e06b3ad98dd8c5", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "b986ef0c69ccd93c1293d779da82a06588277237e7a7030a5b6135e7d949ab2d", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "615a58202e9777d31a061cf956e586409fe5f576ec7aebe5a52bc84c6da68831", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "00111029c9faee467017b6f4cd7e365d6bc47f4328a00d86ca974f294d7fb380", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "865cbb420557bf0e60443c483dd6bec614446bc36694f9beec10e04f1fec1a0f", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "f91d711c65f425341cd111979391e4267e61086e0160fc8e544cf3211266cb72", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "c176381c84b12fd6b8041e80fa6432fc9bd55c559cdbe63e6736cbf3529a285a", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "e8b69dfc5066d39a7a7b79edc93ef5264cdaa6f57efed5c1a27078ed2e8cb3e1", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "267a436c239bac216c7a4709a11296df9192f1d4c6dc882379904aa234677d45", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "c7d6babe868f98627f15a4047f01ec7136984c82a1fb0baaca64214e59ae65f0", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "53a3f6e25e24723afeced9f380a1e93375198f6a481eb0a69b6fb65855c3d423", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "b738e6824c3e85f301629d5d7f369d4d8c35d8c09e07c4e716125fc0f36bbf8a", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "cc6a0feac7ccc18dcffcf6610d41076cd6df5203c03c3d9a9abf701d7c570f47", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "2c527d409c454dc506b0f137318eae94a7f97776400b4a12352e6c4d3aba689c", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "3762e000a665cb3dea71555d1533b3e597a3016fc9e4e93467da5b1e5283265c", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "638b299ff66018e8b99e68ed2dd18c4250ab6e408e5d8f81789b6f3e651eda3d", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "b263d230839d330dcffb7e031cac98010de46e5ba0a90d191b92991b41d9a01a", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "e084e6103f850d066f41c639f2e280f8e3472696c63b031926c1ae71a077e1cf", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "06bff723144482432a268790d5c5dd180ed47af7cad261e37e30a973e1b510f5", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "6518264d76db720ee25d3d0d75bee441b43412e685b76ba7cfaed371adfefe4a", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "18bb37ca67ef5e1d0455a216e559c2d96847d29164198abea0ca9653b08a660d", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "e2a76c1a06383ff9dd68cad90b8c3978411b09cddd861363a76155c4139299f1", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "59e1ba7e61638f2b6d4aefb756932e1289cd29f4acfd339bd0083e441880d65d", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "6f0641c24e6ca55a575255ec1eaf00ee16ea968a88c3146c624312f9e11d7370", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "0c1e86157e75f6214240027b628a28d871ed80a49c6c4526292eb4e90cdb3007", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "71c08886f148510fd4127d7185586d9e0a7bad3196e28fa12b894b2affe8d5b2", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "89c10ac8cb6597d808e54f2aca6bc0db6167ecd634cfc3749b8ad9707e828924", + "size": 1365 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "2f5eb16c92bc228a4360cb7db79138c7c81e4fcbdf3b82b5b96fff84d2ade152", + "size": 1457 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "dab980001ed4f53cb6d1713af7c60455f4ba73d1909b07b27334ab17c6eade7f", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "1131f78eb26227a3f7dc1c7ef9e2c82b0f44a8d647d7de7c036ab8817b566d71", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "ffb387506049602e64dc4b1948a2937498b3fc7f62060b72c2ab067e8f7c5008", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "e5dd6741d2b2104086938bc3a9c4788e9b7b0b3f423865e3ff8dcf6e69f604d2", + "size": 1340 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "8589565de569a4d729606fa42db7ee60636b05a14aa958a69a6da502c430c720", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "c3c40f6fd5bd26737dc52f81e961350517282c80d32dc4045ba1236e6167455d", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "e39283cb66da6830212005d309d5b4a48f6841806836b7d46a5ac8880e786ed9", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "2db498c79cc76a63f95088479d8d816eb90950f05a5140c4c4b3373dd611b794", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "7df5a50c1abebb1772785a25712e90c07593591fd26cb4b4672b79ba2006b695", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "a21c284ef93e8453e84cce7bc02392a3b42cef199ab27ed0a0fe0f488078200c", + "size": 1425 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "a6874de7c557db5035b06be8c6d533741f52d0c49a4e2b372bef1c82e6c0e7dc", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "1f4bd5880a78d6f9cbce3e1675a4ebba9e7cc26a013deb9b77902ff43f7359c5", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "2013634d7a63e2fb72ed52ef8ddab11180d123edc765dd1a7f47bea6abc7daef", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "4c58fc6cc3d3052dfeef57598c184c56661c5c3f1dedecd2ed4f14ff23572574", + "size": 1270 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "66dd6faa97e7da54ddc6d733d89d2b89ca6a6db9c50f1e774100ea923e0c1efc", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "2595352cd680ca2bacae1865a6cde2107f0d06b89d16df859805b6620a7c9df2", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "d9b335444e60b4d952b297d81a77f3c3d35cf4a07513b6dfe21b5668e2128d26", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "8901e109c563925a6350270086ad907ced3d434b694fd408f8636a5f209c887d", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "5e21eb70afb245967d8a86e182280a8dad6058b8961eb7661bd1503d066beb6e", + "size": 1281 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ae8e693ba7897b4815a463c12d315d35e7d45f3c7dd4e31ff665e905230c1e33", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "e557427d52ef518d8a307b7947bb1681a21944720bb179bac9b185eb0476ea20", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "7a512b3d927ec11e4987bcdc700b369d87d30baebc8642cbe62347407405c57d", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "e8d9832a65a5eacaf2c4e15ba69333ea0649fad78815b49b46e9a13bd1ec5ea7", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "8b0c841ca1644c73c3db5040f2c6561a90f115d0633c59e284082ba376e53ccf", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "720fb8acca34aa2d83a37e158c002cfcbf2dbc00ff1263e6bd94aa4ee0e2518f", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "add58544202bf44ffb22e6a70c3a220929f42d99c34e15f8dead9decdc186ee6", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "603e5b632a68f7177562f032b3d035049eeb066b530964d2ed373bf5bae32e1f", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "f74c049347ae473c794d10fbcfe5576bee6f7d462635a05db548d200138e1e5e", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "4f6f64776015e4d9aa15aaa346d2d8d83c51a162ab74e2bcf76668b2c418ab01", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "bc4b84876ea7b98ce1b2bf881f9dffdcfba299972d2e7e4a52a50043887b5408", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "6f632421307dd72f0045b0386d2a1de9fd61eac048991f205b8e74dd32349666", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "a44ab5a877530fd23736faf40161148c821eb75d5100500b81615cfab4f978fb", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "1ab4945b3341070c8dc0d6ecbb5819cd10e54e5aa57123bda4ddb5ec9a0a29f0", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "bfe47a08565141863ec083656e3a5b3f9bb34fbdbcb76ef9a350d38429a229ec", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "5302e28ac0f12898f6d1ba02d2fbd2a68e3dc44eb0d14c45dd2296a5d9aa1f67", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "bb21aadd030e78c647aadc72fcc9cce152861e71faf506d680fa346e61666870", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "58ea10e57fbd4d7413ef7f651e0e5110d48ffb9119efd44b3fdecb49772981b5", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "421ef1b0e00899be66798af7641533736df5e6691c2f7b90c748c840db712866", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "df520844398016cf3135dff588f6eb0ffe49d7baca0d2acdd2f88b25129019c4", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "b4b6198631c7889213d69923da9bd15f33bfdf27fe0576bf0c7ebdadc1a53bbc", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "9fe45f148fe994d747c89d5c1f9471c22bbedbd23ca8fdad0bc7b2136551f5dc", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "6bc3bd2130b5081d4954287588693068814aea38535a14f8084c461b69f9a66a", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "0cee3001e064f515c47ad52fb74094ec31847e1030782fb8bd7de9847b617492", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "3618b20d5d3373a42002fd20e8bab15fe914628fc1886d1c8f13e172e179e085", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "4bd7df7b033370ce28016e79a96558f68fb324941a298f61fd453c525de2d107", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "d456beb3a17be0244e8ed95d5b66e4f8843595cc5fdedb5cf41c5098afd5709e", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "cfc62558459e42e100819398c7cbabd18e579a7b23a447b6a99002da25ca291f", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "1faca777fb75dca7262dab9e8a2eff0f759cbace63a79c0f27c9573be9326f55", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "296d46bbbd898a333a20e53a0817ce172f5496346af28919a2ca23bb48790526", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "6d1e40c61e040bb35f0869812a87560fa22a2cb332ff99f091fae9b3a6774cfc", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "498c6414d97febc2676c6be5f2bda54c1efed7ec0e2f5b02b9ee08356b674b7f", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "aa0f2b7d1c3280eb4b316e997ea6d5cbc9e3c4eeee3eac96afe912594b4cb08c", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "ecfd2abe61059d5f30dc856ae9cb487ab9e5962b075363fc34d60ccd5176ad30", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "9a65ea06e2e4edeab17642495dd6f5bbea6decc95a1180ee836a80ef6a2afc1c", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "c723555b95619e93c5b42e454bcd0a3eef3a75dc8f4053bfe101580488bb9fc6", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "c2ba9d7d0c3b36f7e16ac8fa15f3b06342d80e61cd28c04663c615b0f139ee7c", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "85718aa9318dbe088951f577f6a2d03d3bb5b4f18c4628cf238eb5ac94d83b16", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "33b4c36dc751daa158ee636db3bcf7f613b99e75ae0bba6e25191b9c06ff2c49", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "2a2abc1c18e2ca5a17c77672e6fc806daa56d7b0dd4a87da904276eaf59ff359", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "18bcda343f43b1031860463c93f7c3fbeb2b456e95250fbb598346f168cf95a4", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "e193f25864f95c76906584c30d5e7f28e05b195e8708c2a2f8ef66c8e92000a3", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "e6fdb716b76402d29ffae0bb11ffdb6fb5f45e6cbdd764f7b98e4c5cb2deacdc", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "7f2d0a8c388b1636b2145c302d54c3b5ad2f81b964cbaf0587b7b9fb308fb077", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "5d999270362ccdcc88c862df1a0e0d1b33dde606bafa8c121e0cb1ab463aee63", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "eed36c37bc0b6b8cce17e3e270df66fcaf6b89643bf0bb7605fa69e701870c1e", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "2cedc5aaf4e62056046f2707f125f191f556d74324036154adf2c622fbd407cf", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "5322e1077808b2116616caa376051ec4fe50e025fc4e37a1741ef9ea9043eb6e", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "b7ffcfde5aa174787d30045fff4db598b6c16586edd0c926a2b24750d3106999", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "7ef7f39fc4f3251ec4ec408c5b6b42595f4d06c89779827333b1245e12ed9c15", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "a4b1c9e80009b73e9463818a2ccea11ae26c414c1f7238e15bcf896bf76b2cee", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "d069df14d0e555627cf41e5a496a2f8963ee414763f0b5cd739e4f53ab46922b", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "4d124988b0999c447c7b4329f77078c211e557afd57a218fc677d62146d26a2b", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "ce883f70d7a7af17c89a6c4d34ea8e11b5a863da4846eae796f5745047f6190f", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "dfe0cd5d442f20d629f54fd11f7f77cef9f19995bd8dff89e4949d6e99662478", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "4510e881f33b071abb73a6dbc1ff8251e710030c5e24e526e04e12da87c0bd02", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "b3ef1e1cef29f5cdba3f6c1513128cb09fcf7e7a33dc473788fd95f902bd544b", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "c63982786f06327fbf2dab6a641e71efe7d6bc85046533aa1ccd9665200412bf", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "2c8cb64cbb8b123af33cd57f0b21000bb80377f76e8357d41bca5a1227fd76b7", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "5efa198df6cb4d6498b7619588118f75021becf7e6188925e32bac68fb3d3018", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "69f8fb4884e2714c307bb3af09830758a70d5d1fab972609cec554d511d6ad9a", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "8c29f38104369e6ce5dc7c145fbe1f90ac82a4dc3a76151b7daad498aa8988d4", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "c236bc40fe8765e2eb851f0675702230c7c1b3b640be61212994ce181f7eaea6", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "6f85de49961d0706714bc904ba4e425c432acee74cd6e1ac47b35891840b2929", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "0915e9472566522ee13e78904c4667a49fea8711d02ea4173e290271d02beef0", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "48a01bb48c8f7d3527404723fc31f89d896e246cc1f68882d6f14da224160401", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "9bb35137fdedeb007f404debf6579d02935a5fa355500ebe696d0c96b235c0a6", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "385567147584273cd26d18352befbbf96811ad5e9487826ca3154eb15c7bd1c2", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "cb1b6017d59dc13635ecbaf986ed3b77a6925be848f52ac5e67cba4461d351c8", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "92434a8d4b3c053c72b7ce786e94a6fc5366a9f0ad1be371d065896fa3647403", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "5bd4d4927194a684bebb50a14dff2a91953fb7cfcbde5148bf6ec5a22dcb8d81", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "4b29fe1063aef773bf0e9e2bc85d1b2e7dfb481ff48c906655f64961971bb85d", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "b63c9e701651de81c63a84365a4d168b48ca96aba9067373db4f70aa1c87e90d", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "bc8413b03c5cf4857cd38e9f649999e09b73ca617f4b78367371409bb56cb665", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "4e5730b51d4ec0e16b3fb59c51fcc3323d9605cc909416347ad35f13f6b0f10c", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "fd267f65be5bc21f93b83ba08cf676d154ede64d6c25bfdcc0ca9b722a8f5ba7", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "81e3e777092b413118dd56a1c02dcfae67f2e0e2f52b6abce10bc062c50380b6", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "07f3d5534c5d004d3cb7191140ee9fd80481409df46e603dcbd23562e77eadf3", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "646624302ef54b9bc6d16608e885358dc19a0567ce69833cd9ab99caac080acb", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "a90e250d7bd65ab2fc507ee6264f08cdbccc4994585e6b51720d98cde460474b", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "ecdfc025a885ac738b5118850bc598a2aa658aa1dff89f0bec6df37ab6a96bc7", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "3d4f9fdfc0ff02cd6666a5f78019ae991233791128b2818fb23aeb383090dadf", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "628762186ff75a04c3e1320d75ca85656d06197e20c302db01f225b6d2a48fdb", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "de31fe10a065bbf63e19454ff2b1bed601bff496da3abcafd891c9a938d17eae", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "7efae713259b0197c24ae338bd77d8f57b600bd1277f1cde15e43b91ad1db09b", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "fd15312816eb7acd5e4a62ea765cf2fed9b6c628c6d92f839f6dfcb9cd72b091", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "597244c9f3cbec050b8d71070dd893062689678f9066b74ce24b302257eadf37", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "116719cff5496241d5b1e21ee753ba5bec180065449183be65ec0a1331c1f23b", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "57cacf02d53eef83c13ff145d4a98664b0f86187143c694d5942b55484544422", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "469711fcb45a54b30178021b3735d86315d8a16e2219669a606f5ce4266e1ea4", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "73d5f923eace44d3070c650aa4d9fc0f73592e3ac1d2855e72acdf99cdb625f3", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "fc371c284feb8e88c4ef916a2b365f5cdf54de6bdb6252b33cecc554aaecee0d", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "423d21d8d214778dbf9a87959e45ff7590ee84fd5bf744f0cb511a8d7ff658eb", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "c614792e5b4cfa673882c14bb7da1ef5450645f21d2e1504be0546f915b5d851", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "c7f24c62004ea7ba33a93927ecaf28cf256fe59995e3b20255ce1a6e915751d4", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "d26882dc838536c1f53e7886c46f3d359a3faaef422abe11573ca85ef96dd804", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "72ba70c2dc3933f75408b26a926e20e67de26499d02ba1fddf8d3aa60577c7b3", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "342959cd056a65f9de53d9c68be0b93c1d3acc8ecff0cb0f49888937818ba06c", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "e54d8ad931e3bf6fd5b1d7259afc822b946bc2d7bb852174fd1050d2aca72156", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "f7af89026734f451bde1f59587cf2b9b9bee86681cd8865e781cbf9b6d0c6361", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "11fde5e3f913078d85360ce21823c22d336872d3b941bd3fc14b8b93551fc247", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "da9e50dc96793c33751e7dfb6e61d91751ea2ce75ead7b0eec21fd4ebe947566", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "132554ff9aff0b0dcade9b4709ef5ba83a9668b52e17f862a4120ce1af8f7ed8", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "5319da2e550bbff586d4c81295cbc751e68899c0d572cd5bb838b2953b9ed2f7", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "3e72bd78d2248794d536c5d1c1e53b3c74e459c13ca1b43dcab7d52ca616a4d8", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "a2851f0f8d885851c4a7d3576974ca02c8914eb7ff950d937d3aadc0c31dba75", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b36ab1f2732550de1f7a54b3475232a9009567dab826d7478ac2639ba6962350", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "2dcb92ce1c3b6267f42f3de6e2e171356e71bfbb10374acdf3b3b9404c3ebc46", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "631b445e87470bc9da336d9d471accd8981f46de2be1a77558fa568314854def", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "5b1eba71e7c874591cc8e3a41e309f5e3f86448f12bac5ba143f74928a3ce4ec", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "ce45e42a18486c44f3a88f9abedd804995528f3454c6fedcf123cccf656d6d94", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "71dbfef2460e9d918f2cfb126ad1be75bfc079d7dfeda8a26ac1593868ce5be1", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "3adf46339d6609fa328de41871180fb04d804da40ca4e18360c39cf77039d303", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "a661c098e7cbeff6d43776f819b3aaf06fd04bccdffd2dd58382007743c74da8", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "56d148b54ad1600fad012d1fa4940b448da3e8aa708eefe13b90d70340445193", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "7c3b020fd36fdbe5b120df4436be630a0e436454c86d4f48e3aac5c4f6f63585", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "e23f8e429d73adbf7a64458cc324f57328bbb063a48a7a4ebdf5111fa93445d4", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "dd008bcd550a988d03b271213e5fe036fac7bb54a797eb6caae62dbb4d348713", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "14ae4a75f1f5db5e5cc8d56a216966a660e22323213ff8967d73f07270eca6c1", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "fe53aa3ed68bcc04be0613ead00009f22ccd227547c7b527e6c506df9d48cd98", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f1c8fcd2491abf4277816af5363b5927d53baa4a33201aef12cb738f8b90682d", + "size": 35078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "676dc8c73ce86b33f13214ee8a9f6b92ebdc454b57dba94ca13a5a94b5a2b7d3", + "size": 12564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "04b4379d45a9eea26fc193d6aae979a759a2b1591a6fc83767e380b4eedd84cb", + "size": 34206 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "da0c681399287f60fdba0663cada161487ec5bc9a5bb048484f32e32c8855b94", + "size": 1669 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "281f4fc70a7014929768b1cd833a94af14acae0217207fe6d44c87ebe993006c", + "size": 1850 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "281e362b6f2103d1548231e2ffabb72ee223f34411bae3edb5ef26ee2f86a776", + "size": 37787 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "83b814e6bde154154cb2e89d42d5c317f8356d44dae92375ff9f89015d7869bc", + "size": 11845 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "7f0081d7f2a475655fdf8ee4ad3789d5413983f0aa071582180b0cd2597506de", + "size": 36919 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "b40f49eccead6d07741f12f3cb68dc6cb8e0506ddaacc522df65d3140439e053", + "size": 1644 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "68d6fac176fc62285dc4dd0a74eb9bf6cab996a8f57111f9567c8e80e0fc2400", + "size": 1833 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "c9c4d5392162dac54d4a51e65f6d9726ac4f9bec21f49e2574bb090fbae6ab6a", + "size": 35680 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "cd205cedca374f71efb4359975e80176cd759d59daf2399941ade3d6fc3991ef", + "size": 12409 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "68f5a8bc70ef2bf00ebb43f083ff4f3641e569c493090e6fe03743f1453f7bde", + "size": 34816 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "3d94168798ce0a1cba54390f656ecd0eb9cf6f398b1b8884cd906f099ea32258", + "size": 1612 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "d0df58d1f2f84cbc44449ce6291e9b067c8844f0764d1d295c1ed025218b3829", + "size": 1818 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "e41965b08c7064fd15b44afd363e105e5f34ec20cc8fcd6daaf9bef7e4f768a9", + "size": 37579 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "30efab15e46ea4073bebe1412ff1d6c0fb14b26fe9b06567640cca4cceaca769", + "size": 10854 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "bb09c690b0069906a239170f0a51c86016880d9f2932046d83b102fa0af754be", + "size": 36719 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "1852db443c0891d628daa06c11ea8f5aeb4f5fed1a0238b2ed53383327268dc8", + "size": 1574 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "7f236f4564ffe2812c454ece66dc3d90045e9512e344dcdfe2435ba970f12454", + "size": 1796 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "fcf83447ec5521676c9d047b09f08b47a4d8457db79ddf61105eb02ea45f5029", + "size": 34975 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "39c08a031013141bda2b65a6ca6ed28840bd0d524352dc12e3b9cd5148e1c08f", + "size": 11908 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "b1ff115b9d3ae63798275b20a3ef5d753520b4d02eae25f072968b24c68c0b7c", + "size": 34103 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "5195aa0a6ef3536b87162fa995828fa57fb4701147f21ecb42eb27dc72449121", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a0e4b6c7a7ebfd1996a52951aced99bef9bc3e9f0db1cd3e2dcd0efe29cc0beb", + "size": 35078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "ce43757a4bdacc13605430362a1fc112993d539d0e16dd76e31caf7d4345b701", + "size": 12564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "12ca37579c0f579fcbba0f848b01fa71f8b704c16e299e8d10d11ba3a2da159a", + "size": 34206 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "1f4b6d47cc5304b36c9758f130153a4156e72c0a8d8515bc622db059be647439", + "size": 1669 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "27edef724d11c04189ab3e14206aa3ebefeccfc0f27a00e1a186b82beec00f09", + "size": 1850 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "71abdb085d1c0f8eddf52237c9b81121cc39b6f717803627db4924b203e873c3", + "size": 37787 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "25a8082a0768fd2be73602d8c55da9d15deaada08280c479f27af56726b4428d", + "size": 11845 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "3e70a2e4fef7fe8d9c26164e4dc56bdc5f34e2561474d30ff9ecd4e56d78d956", + "size": 36919 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "39e81b186ba0633ba2bed65a3fc266d0f0901fa5a485b9d10bff352a2015a0f1", + "size": 1644 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "743350dbbf5fa330bc562e9dcbc3b6ced0be993e12289245476c16221402cb0b", + "size": 1833 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "d958fbb0deed63ffe7fd0f7916bbd7b87a239315dc61f0721dd2247592ef293a", + "size": 35680 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "d3dc4a47bdcb900134e3dcb626f274ec8c5e579e9222bae5f0431500d92f0817", + "size": 12409 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "0b51fa19cdca2e77b74c23d339325e2ec0819f123569f1930186b6b2574f132d", + "size": 34816 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "be376fdbb8c779591938c87cafe9804334fefcfad622f2899c997476fc13a385", + "size": 1612 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "1cea2b0ef5783bcc77235f578e106a6f9bc92466bd50f6f48c058ca89f40f1cb", + "size": 1818 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "d20d686ebb2acd4476d6951d9f3f7b98c02eadb0d0a45d1b8b8e981c30420887", + "size": 37579 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "9836efa3c11a5da55312e9e747d75628f463e92432117703a3c8dfecda8c1858", + "size": 10854 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "e70a9d5965db65f7be7c370767935c59450bcc613941d1dc41d3027ed37ba1a1", + "size": 36719 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "98d635dc5658278be43666b276937eb4aee027564307457a6953da50f78015e4", + "size": 1574 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "6cb437d8bab4b0f5dc575bdf8d62ad28a7a107917a3fbfb4549dbb14efbfbb38", + "size": 1796 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "1337ac8bedb0f8c77e0d6cda51e9b940a6a11c9acce1cde26244fc7371aed943", + "size": 34975 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "e79c08f863baac9105b9f1e593777de6edb1f5137fe6bc6f21026ebadf3647e7", + "size": 11908 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "bdb6174012489cd955530672dd1de57b25abd481a056ffb419ecc259ed8cddfd", + "size": 34103 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "df27578375901de95d14fc82ba7cc55ea2e9225c3815e9591f06619fc9659488", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "289a9bac8f6d9c7669394c43d2adf25ddc0576ff8796a98e1ec5575710ec1a1f", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "558cac6e2559b015ea1d3fb716d00aac9ed9599b49ce3e4ad4d22bcf32428178", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "0cbc29d63d9bab4c0f89592f20f787f751d3f85c632d3a516190f20bfc3ef684", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "9d32dd4af685924df0c0ff3b6febfe52bb6bc16b909e5ac96390de809597923e", + "size": 1365 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "f25ee5ceabfd63041d1f84d369482c1ca319e9dd9d514083a229d9d65bfeb2b3", + "size": 1457 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "b6d9850c7462968453fd4304fc3139cc4c4054473be9fd753ee07ca36a209ed2", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "81bc55ea532d85285082eccdd8c1dfd3bc7af6d2c353cb826f69ad690b08aee8", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "5ede3178adf7a8ca5995a0acef032038e3669774c4bc564a6545187c4e340582", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "d23cd9d47da10075578e5b2f43c145765c5261ca9cb48df3efb45190adcd3d1a", + "size": 1340 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "68fe3a7d5f9d26300ac4702af05e5fdb00afa842f1a1268d2ca90da375754601", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "88793f1a3fd58c1e3486af10a0f16acdb041c9f5e55f2abdaa59502deba1a11d", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "4229e2e4f3c611f15596bf9857b4c5f9855673065e0347bf33a25bb579101588", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "07ae604175a478a978a29f4da693b9490149e20956944db8f88ca786aa99b4fa", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "c7bbf51caefcb74694f1d51b8c9b32a2d3279ba03f5c9dd17c413ee67bec2625", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "40eccf714d722cabf86de12b7696f1e8b5818f46b4836b55628878930f46f41c", + "size": 1425 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "4dae7e8f441a6cc267c35c4b69c790a65d4935b06e6c3d14a7b9cede28a3f9b8", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "2e5bda9721766c35b1ceeb5e76f529d527262deec6b49a7a46c3c8eaf80a69cb", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "d9010ea77b239244b517b1aec223e686f3471a29324218352d68ce8ce7dc6cee", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "fa0c248d688067c911f68855d6dfae579dbb34e3bb9015baa98c9f374a4aa925", + "size": 1270 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "99e2cc1fda04be3cd2b83a3c4c75450b749fed84a974f466e63901bbada6c981", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "48bf83ad9ecb2314f6dfb59b5d8fd8481cf4b59fcbf61cd3532c858a75853dd9", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "43f4dd9dcf6ea894ca470b8c4eabc9441b02f891384f83121ebc2a4d7b64d7e6", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "7723198bf21b31bc07801ca2176c12f9d86597ff084483558a1eda45f2d58702", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "298a6acffc5da676e95d1244f45ecb0d13bcc9a68c6a98c2cfa26b229e46de8c", + "size": 1281 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a047db798c5dc4a0410c97dc877a8129ff2c6af8309ec747d2e62484e4d51f0e", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "01ba58bc9081e482aaea4ae208010b0dd594efda6bdb46b91d826b54c323eea0", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "bc8207e6f0dc3f0726c0dfd5b9ddf9d96bf28269434b292d7d02eab6c16a2a7c", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "463ea4bcf5aa2166d1cd8739865510c55ddb5d1ae0a8550e48141d94b0fe4052", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "d169763f8b20adf1eee9dc20f8749c9a5ca8e2fd3e315afe1f4c089396b88bf2", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "d30bf6a0fca2c63c6df5e84ead128c1c47e06bf2e58dd5c59d40542ab29b8a33", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "27599bd15b4d64dd07cdf66a4e2bf0fcf3359bc51f58de18e36b6354432bbbd2", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "2af76263d1ed00382a20cd4add3c06cef79b323ac658f412e60cc86d0bd74f11", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "9d4f563d8d73f2b320391b3f46a68abc90f22d67a97175089201c9ec34f6c5ba", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "fc950823387b9330b58405c050901f7286d5d9f64bb20737a73a3794a7b1168a", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "7896313cea544556b21cd8a1f8435f1a913c47e45f0dd24650bdd0bf26dc2064", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "87a0facfb86fb3940fb642d0d692c46ac5d10852d5be45d2e5283fa23fd58023", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "88c17029c4e2450ed0c7881b3f9e774380d63881ee9b0e61ddec0fe1e9de410e", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "5cafc939addfff46e8557f6c941f954685cfa442ba49ec7ecada226abdc006e0", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "86b9c2f9c63767d311e2e9289e297f51a351cab15f8e7469bb2117bfbd6683d8", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "e9bb6de94b71d183e889f78d599cb1a12dc2fffe32e8ab383226d15461a48b82", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "d3d0f05028583bb4b5f9e228d9f30b75348108549134bcf14032fcde93a9b0cb", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "472c0cefbc9aaaa41c7de0edad84b4bcc04d21048d77bedba0f28fa6c1444572", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "a0a34459736f13f94512ced54e6fc48060f7c4544ab15efe572a8868bc858d10", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "8e75944804405653106676744c7732d140a9d13d00c3ffd1dadf06c9c17a38b3", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "873b33b4dda5a455379fff1f88f4e863bc72ebb7bb0d3f49ef521a1789a4ba27", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "3d0856eaab6205ac15aee4dd8243cf30781ceef217e65484cb88998997bcca6b", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "3c63cac879bc37aa78dea32a1eee85c2750be0b8a57d7d2b6a1980479796e8e1", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "b75c277e9de6844557575fdb437fcf20b983cf72bd9317f3a0f886765a4d7f17", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a67d2741995b8dcafae25fda273b2c9370fc8531acc88a4ac6ff20cdde66eef9", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "6fdd9f5c258539657a148ac652813e8c3e0284d317106e1cee9f7b2d9695b917", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "ebf3b0cbc824317fddd0fb6824a2eacaa766edd8637c8c6a7c91883c81ab43fa", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "5d129f9f5e34ed4830c6742e92d8e8e6bedcff5ba693f137396e0324af0db3b6", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "96cab4153907c13531c9b6a6bfe418e1f02c872bb727c890ab6778bd413d3d92", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "0993f4ebf1e151f6af1b1369b4313d07f0ff4c612dc796efff6c97e2fe89db52", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "027d15eb09192f4ea69364f3d3e5b8213904d16bcbbbe8fa1fbad7c4e0fa6d01", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "fce5033a7e9411a474c53263ac69b39007a941d2b9d12ad95e207fcb4c89dea6", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "efe30bef43d15aa1d777d8d040f5109fae6b0231372ce772ad32e2a961713b98", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "c978254a3c5326c877959f83e05784b0defbc714ccdf14ae3410483fda6b6e2b", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "230e1ed43264e8623ec22baf3fcc7484afb43f0aa00a4d11c664aae38eb5bc54", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "a97f1ccf80895813648bf9a55d537a673546ddc5fafa060a03e9ee20124d2fc0", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "5512a70537e5853ff0b95fce8612dc8ecfd7cc8d03d6759a7d7b4bf741925669", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "fc09511d79fbdf76b14f4a2aae8ec52e7ffdd6395cba66274c62e24db91486f6", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "d4bf32a054cca2e70dbe674b2a7f0924d42bfd0b2c125eeab1b057d640241342", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "efabc40f72bd420a13cee1b2d4d6829a092bbfc2db44666953db42cfdf37df50", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "02932faf32f058741d5e11265540795cba8f7cf5f08df521e1f6360206cb0090", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "ef166651a42cbadf30773796e76f04970e88f4876b6ac6da20fda4b5da8b9bd2", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "4540f2af39820e002c0ba15baf5c3b3828aa4ce1a3d9722bf597768602753e06", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "4a6b640a6a99aebc4ff025c9c86d0f3481434933d3ed557adaa1d83b603e63b3", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "8bcb63e5f71b294aaf6d23444727b26ce2afd255b2007a6cdf69cf24daeceaee", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "882619eea5e6715011eac40e707ef3e3726b427d070e4e93e2caa34fde5fc304", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "ef5cd96744179309baf72815f44180e79144d20155846577d2bd86699b66456b", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "81e8804d17dc3d07ed3a3e873382471a72dde419cf15a541edbfd8f8f5c58a5a", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "7581f01a504f3a532ca4889c1ecc18a13d944d1b6b1c15916f8b3b82a143fc83", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "082d300fee4a3b8a90f080ee15e0f58121ba7e1745a801e9e3b8ee9f87514ecd", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "355f29b7e6a002575dfa2a0e5c4df5c236f3d03879820e70314ed81e49bdd211", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "037d5e9bc537dc0a637a5c351494a80ea073bba5e93a6882fa8c42d2e82dd478", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "10b89e576f297a5b1adfbca73b8477cb8aed6582233dc034b510c69c486ae54d", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5b8fec30bed0a1a2d7d94e8f55a38d8d4536169c9949933b111fa54c062f776e", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "a4cb1a8672cce5b0399156c1632511b5109309d6052e9206b0ffa4a5bf6baee7", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "a2734628444946211487262fd7f1db8681a78142a4ccd4b429093e02b8e22dc9", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "7f863640f9c8cd2a875abacce0e767a87c07bf00c3184035442b011f883d3e89", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "11312d5b520965d71829f433487962569bda4b5dbddedf1e2b6af9e8905e3006", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "3770e2780844f0a2f2548506581e129ac693b4e4163083b0e95fe5203be6ae88", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "af659712bde3d8739dd5e5e58a474e2d2a8e7df531f34c73fab0f75dc44cd443", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "e9f54797cadcd58e2fea3b254619566558961098a94c4f3f7d0c0cdb393747f2", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "31142ed279fad94ade164ed1b02719c9f6ef2c36c5a8c5ebcf95291c3256d117", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "6f432149e6b0b28e56fc0b28406714852c5d58082b7b08f49c183383c1847360", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b35976f0df140a896560e552653371b23715852f114923b3dd4ac26749058357", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "5fe3ec6880afc7ba87d13def4d7baeda1c415def141f13fac6329eee65190aff", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "2cb9f8d2f052c5fd8a40c6e9ea30d3367a39098480093ecd1911fbf6243c5403", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "ce949e8171bd1027725720e45d5fcd27007ceff6435162255df15c0c98e3a894", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "324f5ef5124e9b11e49526a12c3c15f28a8de7b05f7c3a308b1afc4d8594f263", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "28bc44270e374179e963828d60e324579eb29db72271221c04a755702d571ffd", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "45ce562a9a6f114c7ec7413bf67a4a8b4b4d878b166f571f1d25dd144ad5d683", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "2497d6abf53a1744d2d60c358ac073e49464581ab0955f43fb2b6ce07e67a876", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "0531dee828cb4517d4ae1c63e330f8c8e4182b61f242adbcaf0ea11d0aef1766", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "dcf17d49af162b7eb79dff6775227e407382ee7cac38ffa6dfb514b947fd9ee7", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "56a693b874679d742d4563d97fd41c1d73f53671e34d18d7f8587bb2fb668a79", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "25bf3ad46c5101985044d7e9eab4e834441c3f5a47ed971c12f1e5099384c092", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "8fe433952670464b3325ea34cf1bc38d542a0606b3fac48fa6039f0b46ab1a69", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "97fa735671f65e248703f7878f9181d963bd73b3207aa472a47f8615b0cd628c", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "7cd4c0687878e379bc01de1ea8ef6a2e813e48bb2a693784582835d6214dd40c", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "a479271ddf8119c000ecc83cdcc66e56661ebae3959451136f0a53230f0dfbfd", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "9a7d5390b8519c622738af66f54ed7bf1811cc5ab0d6d5f152e4e2fc5bdbe378", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "ebfe64771ceb724c7498a733790b6123fc9324a323ef448408d6c4dae6e7dfe1", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "b2cb1e85e54feb21fae10da473e1183a28aa2ac4eda6cf809bd5e0cd084da979", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e8396afb1a6c58b6da925019211b1c8cd68d1413e7912d82bb8ab4962d31f420", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "d0d1fbfbd78dc6b2faa1b8a907e494064c0fa48fa0a1b949802bd5921b930b51", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "94ea80612527a71b30b339ef1e952b7f4302347a52ff70b66425c93149b473aa", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "649cd304446c7e8ef0e5983f3a52ad74e2cff0df9ab7adcd52bbcdafbcc15f02", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "a97d64b2bcbb22a8c55332ce086589f6baffedaa8cf669178980a67bf7142783", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "4420cf7e6915d62b6c9c0af651f73f6d252292cb0d0f89f36a494b546b97f201", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "984bd88c1badfeeb2f1168b2a6148fe1c1a476a18317da0238dea09f38c8b177", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "14859579fbe7c78933dee0b817eb5c24b5c6dcd59e95e1ecb4afc1317b7ee17c", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "1dd0383fa6d8b069b19426493dddf4718bd226d89b64026895198314023d8e0f", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "8610a12fc1e39dbedd682de2e0350cc6ce64c06f98498f6fd2b352d10b478b20", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "7f35ab20527cec1b462bd6f72d80bc5950b2bcdf27c8fa2c7c1c8deebdfe042d", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "238ce886bca61c3237ad3c968d25cb1b95ec424d97c4c5adc7058cd81c4af270", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "46491c5fe31ed2561f2f9a1ceb4f0424233d35d179c07379a9c7958e5b995212", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "c4ec50a154edb06b5236d820fcbe461b5cfd1bc47517db8023f1a196181bc3fe", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f5e553c3e954f3a719734177dbc6387b06fbb9d2970a626aac460e21dc5250d3", + "size": 35078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "16dd6f5525269dac783dc9c7b859b7096b340e9938801ad7769613f48eb8053d", + "size": 12564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "5c45b8efe678e272e34dd1c37fce99496f2574d3ba78a0d9f449474965933ec9", + "size": 34206 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "df7bed2180eb720dd4fe7dfef8afb3ed8adaeed799912644271acc0b0de371f0", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "e05183a02d53f023053b08a7ce47bcbcdee33be6a16881bf4c4891f9f7d95beb", + "size": 1757 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "3e4fccf1405c2ea1991d36169079bb339be8a3bf207332264e665d3ed8a01584", + "size": 37787 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "28b4f956d347aa18a941f15e355bf3f2dcc71cebbc89858cce85a12cf1bca3c1", + "size": 11845 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "9ece008d0766c9b9a986218a6754a04642579bce5d5140102435d9ec4f357d62", + "size": 36919 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "cfcc0b2eceb421fca760ae118f504f8a777d5ba2532518d6a5dd992268d5d099", + "size": 1458 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "e25b8f77503626a9e8c1cae28fb06b74abd60127bc701c5387b0e5ccced70336", + "size": 1740 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e443b795a8b13164bcc03734d28aea8637bc3aa1fbbd02fb9178dceedbff3364", + "size": 35680 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "f1dec282ad9a0bdf80c1161981bd34980c2c3ec586f4e598b467ff2396182bbd", + "size": 12409 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "0991f74b5341e988eefd5eed69c2fdf2d142e93d1becd8655b42f86d1052f90d", + "size": 34816 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "ee6a5bd68e15cca2ee651e114159d1fe6e749e52af54dac75ddce3e5889ba7bd", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "c02b8b049de436fec048b0efd3e507a8e95e42d68ac10cbb44c34e8f1e359373", + "size": 1725 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "2b89b163ed8dc4b38089ae5c5411bf1eda2240496098368e120dd8844ae5ef3e", + "size": 37579 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "7d92207e3501f01ee655af26565c8491f6bac76286672b1ee7425175c5298906", + "size": 10854 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "028646fc67dcc4f219232f49a6a56e7f93167e3179cd10b59f13e91db44da09a", + "size": 36719 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "1ec0417ba99c658232376ab04350f198b4f2a24abed71c5e4e86730a3ab3624c", + "size": 1388 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "40921f65db3ad5e2b3d71547344973e6f05d28cb6afc339501fc46728fbecea0", + "size": 1703 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "1bfde1c00991f5830e1405fb873cdb24b26a6f55b7798eb3dbcfed43e4e19fd2", + "size": 34975 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "25a0110c72c6b52315649d8abf18dd8f32524f82e6f1c0cedf2a48ca95b3de3b", + "size": 11908 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "e395d8279aeb4657f9953474aaffa0d5efb78f61989853e9ecccef95408f8de9", + "size": 34103 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "977f541f37717b3b7e3ba79698a74296ea75521a34bab1641618cd5ca0162412", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "db9a984b5eee3f73883b5843400057c94c5fae709ed12f31e9c574640971dd7e", + "size": 35072 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "0fe2fdf19cdf229492a5690e5027d163ce3bf38fa0a4301b3a1b590cab532214", + "size": 12558 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "2aee2eb1799fe27c26170821dfd1e68b14c80b1ef61548d0153c62c29a36e7b5", + "size": 34204 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "122395da32196e57f0522f92e5d71c6cd322b21a2f560465b5edc4f737c4082a", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "9f8a076b56c20fd7cbdbdb9bf2165689644e82006594d63d640dcfb5f0c7a386", + "size": 1723 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "4114abce9ed6ed2530e87bdb0a7eab56d73257a5aa1bba1136ecf5628c35a9a4", + "size": 37781 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "eefcea49630bd4f27bc79499f358820bf52d58cb5bba6d341ebddeccbe79fb85", + "size": 11839 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "f4873a801bf5b4aa4cecf18609818c1211e4df6325cbfff2ffcd8f7c59f95a62", + "size": 36917 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "a25bdb5f094e2dbcee757d8d7fddeb7699dea63fbffe48a91e7c7416c2410dad", + "size": 1378 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "e55dc41e840c3b5e273ad115cbbcbb0865dcc342a5cc9479691be5be78dd52ba", + "size": 1706 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b69676e45efc31dc1e7b60aea45ae3cab3c338afb64a0f71cd822667c0920a57", + "size": 35674 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "65511fefc8aded2cf7d9f4302859ed703fee8158b2717884076a5e1848412b30", + "size": 12403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "475cbd025b3ae271099a45dbbde1a1eab18a5e55912678c0b55d4637efbd5ee3", + "size": 34814 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "7a691e347819f6477e1f01886d5b0a597ca81e00c74edceb0df3931457950e24", + "size": 1346 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "aa0743f7fd8412db262c4b946bba7ca1c62a9b4adc022c28ab992cb9dc7b50a3", + "size": 1691 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "2de8f5b84bfff5cc80aa03f2072543ec37db452169093562be7932ab86eda058", + "size": 37573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "c2ae17444615de9dce6aef1b87ca633664872df93fb8db0116bdc275072e1905", + "size": 10848 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "4b797872828e606ae954ff1401faffc83fb8a0af03709533fe35042892471657", + "size": 36717 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "b75a9cbdc61a4b01e5d0769b39e34897aabd0f48d2bcca00e4c88231861d96f5", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "71717aa3e8e89e6ae2d1745b622974a8c1f1fdd37089a1d9fee18a1f76d275b7", + "size": 1669 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "48931263cb9f4ee400293ad4218912936bc79f5db146e83cb3a3c3d820ac061b", + "size": 34969 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "13e0f8d0e603d05f6e7588fe29bce6edcbc631cda14a42eb3a075d538bbd48d9", + "size": 11902 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "2de7a52c189e027d0d7e4e27bd8f67da74b6ae34d621a915eea353b632fd16d7", + "size": 34101 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "14d244401f01ee85a45407511e44207b37a8b13fc4ab12344538bfc2954872a1", + "size": 1319 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/00_trace.md", + "sha256": "e4dc04fbee9893217187e219d3f4f69295f3c42ceaaaa916ce75cf729de1f222", + "size": 1937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "37f63995f13384b4087eb04cc0ffe4c1560dc44d8b7de130b9547d8f4b7bf9b7", + "size": 35168 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_context_load_receipt.json", + "sha256": "f3c4590b8c7b6887de6d267e4aa814cca0975b4dd7e47ce5962d52d3e2a0fd50", + "size": 12654 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_cursor_task_prompt.md", + "sha256": "597af5e34246d00991acb52eb28803ecd90c0c008c5776ac31281c26aee1877d", + "size": 34296 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_session.md", + "sha256": "b03fcf1e29af2f592ef75d7aae01de5a4d2be9bb442de320ce310f5917084a45", + "size": 2033 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_to_relay_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_to_relay_handoff.md", + "sha256": "db547355a64140046b5fe21bfcf3f41406eaed37070c8018448d05b20d25cb14", + "size": 2132 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_COMPILED_RELAY_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_COMPILED_RELAY_CONTEXT_BUNDLE.md", + "sha256": "ffe5dbe5ee19dc5c0b47bcbddc62b1f81bb9d65b6e0bdffd6c5b2834b0a04e9d", + "size": 48737 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_context_load_receipt.json", + "sha256": "70e70821230efd1dfa16ced72a28fbca9ca879f28e4c456d28cced7e1a19926a", + "size": 13554 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_cursor_task_prompt.md", + "sha256": "364597fce105761a03ea4a7bf0a7b543df1fff1dbadb00e400d40eca1ee28a29", + "size": 47873 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_session.md", + "sha256": "bd264661be49991ea36abf80fd1f3fedd5bfaec0cef2859bd7df20d36df5210d", + "size": 2073 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_to_vizier_handoff.md", + "sha256": "897c07d238bd9e07fbcb49c381ca0605cb22f1c3370b2008301b8c12d221b8ec", + "size": 2240 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "928b1f1b123c870be2c3c54726a62f0eb306650da97734aef95502afe8c31065", + "size": 37853 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_context_load_receipt.json", + "sha256": "60472f116fa2651f2d179a258d3b7af8d0a41023ccf650ec897bd060a1129f64", + "size": 11912 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_cursor_task_prompt.md", + "sha256": "f189681ec1cd82d14228eb5a79c70e47457968ff235492181349142dce94f5c0", + "size": 36985 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_session.md", + "sha256": "b9906e9126ad3e73c3b06c2fc8943ec70ee59b97d7f57c7531f64fa241b709e7", + "size": 2013 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "sha256": "8efa069f8c445a5620fe081d26c740e33bf48b3ab67c0d135b1f3172ef3e17f6", + "size": 2814 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "7d9d283189bb1f3089ce953455cb068c54fb64216c0192d468cd790f49fc0427", + "size": 35170 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "sha256": "bca778cd4eaa31fb5b870ada2ac7c6817eb3ced7f8d0e191c5b010b72bad7362", + "size": 12656 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "sha256": "e8a545cbcc59e6412388cbad4a67152641eb3a8157697995e8b7840009b4e87c", + "size": 34298 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "sha256": "393b060f61b0fbc9171b8ca67f2907614eba60f21913d8484f29a80dcf16d79f", + "size": 2037 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "sha256": "e9810acde99ec9fbc573839c562c47449c89b0420d032525101a07c3a1acbb9d", + "size": 2126 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6237ca6d4182ee80180a616e8eb9f1d0e5f928220f83e2b80bbbc37a97b6dd82", + "size": 37879 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "sha256": "fb85bf15193955ac544f22731e2beb8ab4eb463a54689f87116214b3e96ce4ea", + "size": 11937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "sha256": "d40e2481a241555680833ca6c7516ae72fa4335698d456f0407dd53d2beb7500", + "size": 37011 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "sha256": "8124588d1af80bda61bf27431cfe04bdecd3506f4aee16862bdbcba14ffa52d7", + "size": 2012 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "sha256": "d5f0ef317272523d0b3f241b905749e3a2a28c46f97bf7abaf804d33ff985af2", + "size": 2109 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "f2fe88163c18a333fc0f3a75881b1f2b93715b7990038ab7698d0f5f81033d6d", + "size": 35772 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "sha256": "795c6c044943665ff822b04a66e192f135508b01809e0f1554816db1cbb42cbc", + "size": 12501 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "sha256": "2cc55b704e8f18ee7d8cfee00dd084ccb52c64661c92c363c711354490af3632", + "size": 34908 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "sha256": "ce53550abcd54bf224afa479592f91a4192d5b858ba69f6b38022fc59952fda8", + "size": 1980 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "sha256": "5746f8f2d099c702054cb87dfe073fcda0ff63e758d96bd416cef02a12553b97", + "size": 2094 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "d1cb8359bab7ca98606490b95803885507575e408505206e3fd9e8e0f27e6ed7", + "size": 37671 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "sha256": "57ce0c03c68e1c0d670e2f64f78635d97d66a24e16556a24d00c44284bc52481", + "size": 10946 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "sha256": "fc3b95419e79deff7af6f98d56483d142804dd879da3b8c3ddbe896d527d2430", + "size": 36811 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "sha256": "927cefd015abde9b8872242f7535b81e0fc2125ec16694b1d1d46dcf1eb1836f", + "size": 1942 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "sha256": "744d0ff91420e05fa4aed0e449a611d0726f753a8db08512ee4a7e77fc552543", + "size": 2072 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "c90aa3a4f2610ff58d76a1dc2857224c53f4a37700d03a9db95581d73fc63e47", + "size": 35067 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "sha256": "e3043ebd315c6177ef237aa3f0845858d6cb723c375ed8e7e37bba064d0fc151", + "size": 12000 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "sha256": "bc62ce976c8cce45729cd884290948571d40bef4f12e470310e898e79c1600cd", + "size": 34195 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "sha256": "33adcd243c9178bbc4be42d39bf56156f3d4fe62e97adbc32970f8dddf72dc9a", + "size": 1953 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "sha256": "8efa069f8c445a5620fe081d26c740e33bf48b3ab67c0d135b1f3172ef3e17f6", + "size": 2814 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2bf547f6913603b4f57efecbd3f46b1ee7008d0cf1c0929f7f68860509c56b96", + "size": 35170 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "sha256": "40308cd5bc585f2fa8bf760da09c0ff2056ccdb6b7c72ada095ef2fa22f480c2", + "size": 12656 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "sha256": "cfcd2882173de29bc8a86d9bb17cf97527d0c34112fdc43a8b4d17ee88479ced", + "size": 34298 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "sha256": "190033ec360f1fd3f179ed0dc9abc4464c42de567e0c520ee7f4ef18cc3afbc2", + "size": 2037 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "sha256": "914bca69436093159ac0f8597622d94b3e6b6012408f91444ea30f79c5bafc47", + "size": 2126 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "4fc2aca6b9c9c4ee04328e572506585bbe7790822d404746f045913adb4d159f", + "size": 37879 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "sha256": "9f128339cc83e943901c419d273e79b820b3705e67280bdcd23fe3fe0981989d", + "size": 11937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "sha256": "c9a7af8a52054aee43b7d3fa8de5a32a20d9ef9e5545729c7268019df8226869", + "size": 37011 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "sha256": "c934595ac915208332fb10cdcfe720bbc5384a5aa43eacb540c24fdb054e6186", + "size": 2012 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "sha256": "4a0166bdd7424d6ca1f910b062ffc37d15418bcfb75bb942c39294841b4a1cd9", + "size": 2109 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e99ce27ca712629ce46b77456c6f07e454ae99492cce4889c6497c6b138533a6", + "size": 35772 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "sha256": "4b19cc85b74f41dc5985c699f153c0b4f026e162258989186d2ee32c1640bc38", + "size": 12501 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "sha256": "224981f4b287845627b4e4df50bed863e27a975436e2dd1d73a9530b6fda0755", + "size": 34908 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "sha256": "28a9726a03d53e27f77bdd0cfa27c496fcd2b3707af6ebef60f513ae01dd8a29", + "size": 1980 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "sha256": "2e438bd528e293b933107c592b706a5a0adda568b8192414dd7785128a8ccea0", + "size": 2094 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "f0cb0bd3288c14ea9a7d06985a0223f4889781c33310c5db2db9dc0487858a81", + "size": 37671 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "sha256": "418f4db762129dae1fda5f020a305eb0ca3c44494da3814509e91331aac7bc04", + "size": 10946 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "sha256": "dd7dd697836fbf89a8cd3db420b5d0ba15130acef12cf499559feb35cca9bfc9", + "size": 36811 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "sha256": "9cd4c9659987e80e77d150da77f23bde7a6d2fc681d9f9c42212ed73ae61ae78", + "size": 1942 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "sha256": "b276566cf2a125784e321b176817113f4f60a95734b218bdc69a926d879ff926", + "size": 2072 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "a30346d9e8a9a151de5f33b48aaf7362817d78b792e98ecf7f00b90483f8300d", + "size": 35067 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "sha256": "24f1fc64631b9ea83007b1554a4405883a09c620043beca259738c9be66a54fb", + "size": 12000 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "sha256": "6af7b34057cb64b2ac88993f8810e1b693d54854d2ffeaefe774a9028065c4bb", + "size": 34195 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "sha256": "2ab5a31a18cc30d214f4255ea1c4f4ec2ee2bfce9873d2a3f10564f05ef62ed0", + "size": 1953 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "sha256": "8efa069f8c445a5620fe081d26c740e33bf48b3ab67c0d135b1f3172ef3e17f6", + "size": 2814 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "09cf4d624a17c24a4e0a5c4eed7a89249d35f608b125c9cb0664954b687d076e", + "size": 35170 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "sha256": "714ef6af86a8c68d0ee83cba48b3d4c44ca364e3d13ac22f4469e6a36026fd38", + "size": 12656 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "sha256": "183e55903bfe3d836ba719a018560da6f900993da8619cd1c4d90fc3666ca956", + "size": 34298 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "sha256": "534655af5496661bea4d0f94ec5f48caa4f9377a1bf71ccea18f98c796df8634", + "size": 2037 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "sha256": "d86d7b24122421b91d11912d007959412f94f434f056d10280336f26c516ae84", + "size": 2126 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "e7092e54122a9894a0a213650aee02b7f4ec1f4d55181a29b1be20aa721ba689", + "size": 37879 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "sha256": "a1ff80ec93e1cc8d718c1007998fe6e6a40cbc2fbab7055fb11ad2b10601412a", + "size": 11937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "sha256": "1d1c78713a680cfc3cef0189754014e62455113115ca3243129f117bb1ffc76b", + "size": 37011 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "sha256": "1694a4d9264d586e9c2e201a31d5b7465684eee618d0b3b3d352584003636f13", + "size": 2012 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "sha256": "029ae0ecc294f7ce1870e33f6cf23b75dbf89f3ef4d6925ebe1a3c2d8af29070", + "size": 2109 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "3a17c69b6a0c4c31ff8102fe66260a7722922a7d63e0ba395fc6becd5d23068c", + "size": 35772 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "sha256": "94552629ff0f0d12a71d24e0a7d2b749fe5653ed434e8c3d539e6279f1bf763c", + "size": 12501 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "sha256": "2183ec4c5a0eb14e2e3a6671e7a3fec0b4c3fc22db4039d031fce225f80acd50", + "size": 34908 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "sha256": "9b9ff1a60cee65bdc99a8ec57238f64a4741d34365ca2d07913069190de31092", + "size": 1980 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "sha256": "03459e58bfbf9e26a9a6a76b42f5244fbb9348ba170765686a154c2439e03f5d", + "size": 2094 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "499eee93e6ea8a4a1994895004a00348f81bc0fb5989f201e035577f29de0e00", + "size": 37671 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "sha256": "3efea557a958a9c172b5de3cc4b5e6dd146e8689567104ab042e82a2b54005ca", + "size": 10946 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "sha256": "7e8857b8877377c05b694515c8bd0262d513e3c3d9e5575941ca3021c0a0d2b5", + "size": 36811 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "sha256": "99a964731661d7a8158eb087c8995f80deec34ea65daeec7538e373c2585391c", + "size": 1942 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "sha256": "eac2c6cd41e7c5ab9bbac7d17fa782aedad6dd992f155a1ffea4c1a5451f3370", + "size": 2072 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "e08d11cfdf2c376d8f7ef3cb3f11f0f064b6988993dbef9456e9b2e6433fbdab", + "size": 35067 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "sha256": "62896559051df7b58dc347e6fc4024e4031d40d2a39f6e16f3c05c65700d3fe9", + "size": 12000 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "sha256": "8069ba17c30b5093bf5776566b892d848787379fe95294ea1e77bccc81356722", + "size": 34195 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "sha256": "8f552f9081bf3964f30b9de4f6efb4a4e7d3d8a8d4e9ce3faa5f69214f94e3b2", + "size": 1953 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/00_trace.md", + "sha256": "a545b877f681d58acb002412d55445057edb868a2d191f6c78c4475c71402699", + "size": 2352 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ab9f1fc0c4210d1a077fd570fb1d52bd8b2c6c858a349fc98edf79a71fa714ee", + "size": 35176 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_context_load_receipt.json", + "sha256": "e7e4eb6b66b554ed75cc278d08bbd92e8815ad597b0ba4ef0258fade0788ecd7", + "size": 12662 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_cursor_task_prompt.md", + "sha256": "9b804d1bd302f623ab34ba84560865c603198ac9f8b29e02cfecf98321ca6597", + "size": 34304 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_session.md", + "sha256": "1d099e4e9e4bc1df8e22c676b7b185bea07b01be63b4ef8ad80dabb6e9b094a6", + "size": 2056 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_to_thoth_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_to_thoth_handoff.md", + "sha256": "431d158af6c07314923df465fabdcd576e7d7f059aff4df61f43581ef8d0f1c2", + "size": 2150 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_COMPILED_THOTH_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_COMPILED_THOTH_CONTEXT_BUNDLE.md", + "sha256": "d04ceb8a89e88bedfe8fd42cd382f2f34f1912f4b0b6cb2d03d9e2624b0f7cc2", + "size": 34466 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_context_load_receipt.json", + "sha256": "72493a98bebc0b257739cd8d101728223c9e3ae2dc6916a7c4f53eb7e0e3b2ac", + "size": 12239 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_cursor_task_prompt.md", + "sha256": "62650de6ac2d8db7c6e29fe0da0508be49e8d81731f80a2f57dfa8bf28bc3e66", + "size": 33602 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_session.md", + "sha256": "9e29b12b265488416670dedc2a268845d89faede7e69528f5cc1cc11a7e6dfbd", + "size": 2024 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_to_atlas_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_to_atlas_handoff.md", + "sha256": "ef393f3b015343c4891b5ccb21f59849d244a4af0f0982ce4a1bbba398c18e4a", + "size": 2130 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_COMPILED_ATLAS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_COMPILED_ATLAS_CONTEXT_BUNDLE.md", + "sha256": "e2e8493adcf9e0618c3950d7f82d1be89ec677be66f169e4a7a9fec61d0b656f", + "size": 38057 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_context_load_receipt.json", + "sha256": "9257345966c5039e80d62cb972352057b868897f3df731b5a763a5b7f33ded22", + "size": 11203 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_cursor_task_prompt.md", + "sha256": "0dd0b3c4061614b3ffef74af3c69b8ae8cb922514e6230b4e3965b0c38b202fe", + "size": 37193 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_session.md", + "sha256": "86ab10d04c0b1211c6b1b5a1365a67301961403e50cdc918f1346723cf9728a5", + "size": 2045 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_to_vestige_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_to_vestige_handoff.md", + "sha256": "b33460d390fe2c79cf6d52a70b2c0cedc3cb97a487531699efb42f6f00e54b74", + "size": 2129 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_COMPILED_VESTIGE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_COMPILED_VESTIGE_CONTEXT_BUNDLE.md", + "sha256": "cd158a8c8c67b1df93bdf9c569c53165e69b043242caf371dbd0a98c3f283520", + "size": 42649 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_context_load_receipt.json", + "sha256": "06b2841f364fe969ebdfdda5da1b26f4f40c50f11dd85f6048161f70748f61b3", + "size": 12434 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_cursor_task_prompt.md", + "sha256": "9d263555f88b21bc9b03a47694acf2b3af9d1062f5bd38131df2334a2a52fdde", + "size": 41777 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_session.md", + "sha256": "24ab9b084783e81f1cd8c0c454c29b401cde94ce0c786e42afe833b77b473c96", + "size": 1999 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "546576a11d8c7372568385ea094a0117b758c617ceefe02c1b12c07353c407b7", + "size": 34997 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "292622a2689fd054ae8fc6ffeb770d751a436ebe215623107be559be14acc01a", + "size": 12483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "5e613626c7f37810cf3cb405e379bcd5347669f90470657c14afc152af89ee62", + "size": 34155 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "8403e458993b3acd688b5527571179178394900d52ca2f354d65e5da4a1695ff", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "88fc53477406db7fef6355f58fa53909d928ede0232cd3070344de5153da5a21", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "761ef87892412406dc625cb03e233a3a0e651a1def1edc947254bec02940723b", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "39944537e77f3f27cc76a141ce7a26519dd2753d20a15aebf7bd37a936b4fd86", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "0157f2ecf5daa1eddffddec18543fee53b11ef15619a62545a8dca89810d2276", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "348798768e1551fd39ffaa74fccb814072293fcad0059d387f39911cc5e2bcc7", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "1c5bdd83cae05bbcb578deaac90095b5d54dd8dbc6fc79de7bf31e2da8b280dd", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "5b8b1afeb70ebd7047ce05e5227a9cf297afb4f65753ffdb57e89e0580e7941d", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "de18718a3422ead6cba594bd1df78d92a77e6b7c11d152197aec76da7f1024d7", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/00_trace.md", + "sha256": "fa2070b05f10793e3896c108441cede436790cde6f8dee4290ae1f5dc5037383", + "size": 2647 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "bc5c1b1c69d036bfcdb4b3f49e47682fa1f1f47f61c31dbb595642efbb6b34a0", + "size": 35052 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "e39a4177bcce13e6e06d11c5203ade249865368f8d035a0c2af4b217d932d0c1", + "size": 12429 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "7db36b7f9f5317fb5d910f222cf5c2fb696fc04651741f742974908d74e44a9d", + "size": 34237 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_session.md", + "sha256": "0d73f94c3e638b9244ac6350302334eb7a7b245bb3edf8586500a6cf28a6f36b", + "size": 1369 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "c41da070c1292e7cfbfeaccdfb166a286dc144ed0fd6630ce7ef064ec4150458", + "size": 1463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "27b052020760893d2823bc4598d403fca70121a7c6de86d16505b2c839ebfdec", + "size": 37761 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "ed229a64fba9dacb8657407cb7901a14a3c4d3fa15beaf997fc8bbeeebcd4cca", + "size": 11710 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "76cea8a6eb6c94fe04099f4ac8df654074041e0438c10c9733d58bfa09c3d67a", + "size": 36950 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_session.md", + "sha256": "ddc0db7835dc410f4a4f000af68c3d9e4fd9692ac0cde01c0b545151f3806433", + "size": 1344 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "78e4bd4586cd3953987c5f9d51504f57e7713cf9999704e51c358db2555cdd76", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "1670b78ebba356e5e74775de52973dfbb61e4c60ce1ad5c36d5a2c65434e4bcf", + "size": 35654 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "a8cc5c89ce2e76a3a0095631b27f647a97f62d1dcfdd4ba0850f712ae3254dfc", + "size": 12274 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "80858337c5b4ac49f91392ab3733481c19d370d5d5fa4e19f4847e2c377bfc1c", + "size": 34847 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_session.md", + "sha256": "ff9b786a83822723b0bd2323187925a4b10bad704616bda4b314be89cc062409", + "size": 1312 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "8e94cfa585c1be14f80527036f52a48a1ab78176b652b721e2c970e63b3561c1", + "size": 1431 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_session.md", + "sha256": "ce48c221d614da802b047228796cbb1ed050d87d355067723c4fab2fee181247", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "60181509f2d01203df2a0013fc357a7a84aafdcd3455b52f8ef35822f22a251c", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/05_nemesis_session.md", + "sha256": "aa76eda464ad7073231302af87175ef02132acb42e560d868c5f1edf97c7bb33", + "size": 1285 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a2bc666645aea25a5ce53468548225c7e7aebfa5fbe6af18671122b8ece7a877", + "size": 35208 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "b032a531a8b98951368cabd7fd8ecaa4223db39565469c9cc41a9bce970f77df", + "size": 12585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "5881d7ceba56ba2eaf663a5b58dda786921589a4f2500d03445fa9cd72d06c5c", + "size": 34315 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "600d5ceedf9fbaba0bbaf0a784a630fc0060a903788f80b2d571a7f56ad78db1", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "5d3d44e1a006cc8d32df52d2a686961312c59ba88e9d050e5a9124188f55e10b", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "65a292e4c35681d6e8c636ad864cd9d93ec6e43cd056a599e95420895b200d71", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "81d3367cf52bb5c2ca23e61f9efd606dd2ea564168f5685e3775613cc13168c2", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "17fd629ece2e047c1dfc882c6272e246c7b313467b2f7a012c69da3b4f8fa483", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "14ae9a3009456307e87113e806f5dca4ac9416c28f8813249cc607297e26c997", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "eafe59b28bfe38c236b368d9d15aa5304aa075990d9462285d8c42db7b812bfe", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "e8f3c0e60b75e24b19773aece10df039c6eb73e391e60a12136c86202cfe7c79", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "8a5f9eea14e2c8dc712bb027bbf231b897521ecba56106a10398f9978345ee28", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "eeb9791717fe082d6140a731c444639bb758e72a1842994e5fe76a9bd9d20483", + "size": 35208 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "5343ecc0a4be7e46989871002e6eb6094a4f46c568c959dfa16143dc85fee5e0", + "size": 12585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "09778a53f68fbf974da61a6eab3f31a239385a3b8ebd6ee9d7c67e365b21c501", + "size": 34315 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "fae2e0af337112632c46a4f15c75e44588f5c747eec98f3079454cda215362f6", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "96d70b4c0d2c899087eb309e805670a43c118ce0b15d94db86c30324f9ab49e0", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "ee83b0bdf2864ad813b7e140cbd604783eaff2b6b814c18ef5d1ca6de9e2f580", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "e18f8feb26562c05b8057ed22106689a609af5c45f53b3ac0bd4c25156970916", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "40ff257dfd773b8a292ae06c762ea3cb721b2b82fe27577ccffcf5e3c6f16058", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "4271518d771922a6374169f53ae3e3c81e3339fe9129f2e47fef769b8cd6c7b2", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "7236133e1c4f6486b70c5f5d647f2d6936d995b5df4231d9478c3c89a318b1b2", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "998e4c9c3c02d693b9181e697d80541f1ab03e007d15fcc75cc633273ec17479", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "94001e8935d5e83a325bc467579e6c072b29a0b0f032190523c145a4f2db98bb", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "c0d522bed54d04dbce4259c6ac49f16ff5e3e17bec35fb42e8ae62fdb74e8901", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "9f9feffc290d7ec678d8843bd445e70289b6e10032befb726e583e0d028cd8de", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "7d5c735953943cb37c1c8265db3c85e23d3b601363a361b0b40406a195a18835", + "size": 38457 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_context_load_receipt.json", + "sha256": "ce2e8c572902911bcd96584c982bb17c65c6e612385d74a2cd6aed71a447231c", + "size": 12095 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_cursor_task_prompt.md", + "sha256": "49f1ecaaa94dfb8145c99266134770c2a295949eb7f284bf63cc0bc06051a4cd", + "size": 37568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "d2a1bdb1527b5acbac6720ff594c48678964abfeebbfaeb0620ff4b15f56ac35", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "932bd2b230e8d49c43297dc95297f35e424b775026593a5104322eb6f7ed3d22", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "f7d5424d7d4d1294c22fd5c46ea2db757951abbee3ad2986f50b7eb99672bcfe", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "365423860a810862b34f90e13b0302e4252d17496cb9e7625c0bffec89864e8b", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "3d1d12e2c0c4921bcc900441245ae813f7b7750e2c7b028763928c8f352ec5b1", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "33ec5bbfd272a0d1a2b24ce5aaa3be65a85c1bd828ace54e7515792ab1de5550", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "f1e915295bb1fdca9aa10a52f49e7e01daca730b58fdd576f185af5c6122d12e", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f0f016c3e987cd79784583a4696a992920fd40493ad77ea107999f15e95c7512", + "size": 35748 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "2e718ff805db3121868bdcc26865db389e8683399b2c55a824b53f1e411750db", + "size": 12814 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "783c1b17fc2dc4ded1dc082c2575829bfc8fd4c5351be8a306899562c31f2a35", + "size": 34855 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "a7f2645045e0a793c491c6d5a1b29a012d5efe548ad2f4df9286cc129b0777e2", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "3242681278b21acd42efcd0e17bbb5b72cc7e36034c50c8c62ee410e7e7ce0c4", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "ba2cadf49f5065a1704129ce95d95506f98b105db71b05e800c7b7cc978266e4", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "dc14aa0ec38b3f4bad9216fd1ecd1b1526afe22ebfbb576e471308b34107f2c1", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "65ab4a8c11aa071b917fdcfa568252f6616752f5d4aca47da257d151cb886a7e", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "f93930714394f2a8e7632bfb610397d5627afbab764e3cdfac9b90f0841c4ef8", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "a62c42b278ac0dedb93ec56f8edeea60ceef60c7a3fbe2d5c03bc51d33ee7c4e", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "00d9282b687f3986d2a5770d682ab4aa0e20574bc00da8339504c20bdd523fc7", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "2848b076dd3f12549ba7e8aea76cae514c9368a1673bad66c3f42b18be6910e0", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "e16c53d1d4cc6e8734550340fb8998766600eb6d2b291d619ad2a4e4107e47e0", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "58eba615d5d380d60f7786e81e91209e7823bbc28e3dea180bcc27a759319680", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "79e3afb4d77443ce9e84f6fe3a2e0160f24e68754710439d1fa4d9eab6921d1b", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "ee7987a9918343731f7d316800b658e6b18efa496b4d5998629e5f78292f6694", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b2ce78f65624457fdc1071e2c843d27837690c8a1519704df25eab23dd2b1b2d", + "size": 36350 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_context_load_receipt.json", + "sha256": "3ebb3aa0bd084f56145cb96275743816be77a4c31fb92b636cbee4e02a0c9ce5", + "size": 12659 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_cursor_task_prompt.md", + "sha256": "a11c639e012b8296de50ca3bdec10c6913b9d80b5e27e73da91ea3802e07aca9", + "size": 35465 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "12cd915ba4b1cc28a20d4f8aba14af8538625e210c051e3371f8f437151aa72d", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "261b9b2e29e83cf47d24869346d58c48ef2228ec4c59f15cd2360f152a585617", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "140cd3552cf45d93ec878479faace733db62619cfbd12ee9ae121729a2955673", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "793abd19953bb09e0a83741aeadfe928c607b3798f7d465e6fecc03ce06c19f3", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "563a09e5288af9ecd66030c1ad58284dbae28cd838c6862fc7f51470ae7a2bd5", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "261afa642eee69938e7320d647de4b210084cf4c44da902c25c6bfbf1475d755", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "d3b7f5da8152fd21bc6794bc5bccc3041a987942a048d02d6bfaf077d9f96c09", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "b5a3f71bb5edca3f4a97da019b0896e523d23992551ba8812a8132dc156ac279", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "7edb3c91833c00851c77b667a3fef7c786ae5551c163ac158d7dd3db58591a12", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "a8307a455a98469020e8c53925d09b80e63809b645a7c89d49db1dac6a8496e8", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "c147a594cdff6ad692834369345297b38f47cba492dfbd31e24a69815f401401", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "c7396c8035dc13545dbcbd093912124f4f5df9f2204b02e7da7e0827b6f8a3b1", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "16ac686a44b7c1cd5ce0036ddaf405507132d4565ede864ee28f6c007fde3fe2", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "f319b084f42b4d13357446f2d28db3137f7e57c4aef49e1fd2819f2fc8504c7c", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2959944af6b7c15bb9e251305315698f0fb3bacc9be62670c7b4c668c851caa1", + "size": 35744 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json", + "sha256": "1c28bf788af4e6a1959c3252aefb7d1738db8c71bc41bd3930452b383f0911ad", + "size": 12810 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md", + "sha256": "c940250cd19bee30a40867e0ff223fbf3f53aa44cf3a0d247c1ea3a2d17af415", + "size": 34853 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "02ea8bfb772beb4848ccd1503da4d0754fb53328e106af306ba94a89c53e3c68", + "size": 1521 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "52c99e659f3b7f92dc258862736db5883f2de10dff3a84384d8f7f066286c480", + "size": 1691 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "fbe957ea19a6a91a70159b95eb8304ab7a3fbaee5dd153e58e397b2521cd3fcd", + "size": 1496 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "b42d825e0a887b10c6a60826aeb36839c14fd0db0906ff8d8c12cff8fc80142f", + "size": 1674 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "ed785e343d6c57c07e40d64834a7181b4fb62e7f7b1ae5c9e3d29d3e90805aa1", + "size": 1464 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "2ff058ea4df07d374b7835af9398335e72bf8cf283452767f064bc96d5179e33", + "size": 1659 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "462191dcc70e595ce71afabc517ab232c034c264d0348b5c50b3a560332b45b7", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "fc54fb6505499ed8c7bccf722e2047ee3b5908152065e5da4f73b0baefcf0f28", + "size": 1637 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "87311673cd154919af2f7b650e6b4f59e6b21d255f9181ab9b7b6e5040b29231", + "size": 1437 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "d75e07219e09fb1fb13c8cf4ecc0f2a599479a778ce26da94b3990dd2416852b", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "d7c3e31fe78f6f952a3b6e25e8ce8e62e812164d7c219ae2cfb98572f713960c", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "5048302ad0dd15c559e1913274b7d995e47a5fb0ce56f1ed6f36bfff8c072fca", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "ad554b8270a90d38c147345f72d703b38dd673ddaf707302f202d91cd58e8428", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "ec9f3271f4fc8ce0df049a2384c65c6e6fc1d1555acb87ebeebdbb5cd4a21b31", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "858bd1847bc6dd323dc6cfad23b854a074db1cc1f42c731e65abc8289110230e", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "9edb4cd3d54b58dfbcf50e6e199772b01f7eef6ce4c8cbb7648d85d262141646", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "efbb53a5cea2a5ed50312153472e839f4e2310836e83ad6d351906253b33b795", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "9bdf49e9cabbb4a9cccf074e7be5bf5d760061fa4d607792b4319f9b94f25b76", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "884370285fbb7301b2a49d295905ef6aa36a147befa8a26f5d363dab21932b41", + "size": 35744 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json", + "sha256": "74495b00f96f9412e7f00e83ead94f30ac5bd38446caa4969ce50b18df83f46a", + "size": 12810 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md", + "sha256": "0e87fcad48255436c91abb8c11cda95f07432f8bec3d29363504745c130a5bd6", + "size": 34853 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "cd97e56e5bf6f19f68ca1b24884f389b278e270fb1f10ed25d28dd450545cd18", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "d3f6530c0db16c67ed8eae9b0331dab400c3436b24fa1691cebfebd67a41d597", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "77b2475fa0a4f68c781bb349b74c916e5fcf7d3a28d7a8f53864db40ef5aa8e6", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "4b8b8c6e3256ffd76aaeae88f44337716989328e00b5190428defe08f785d19b", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "277a0cfb30d6581adfeafe1dfd2ab8c48f6a6aa7c89fd1b8c9b077d310acc827", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "deba202f07db65d313ce92ec49ce2464e4f7d7274e5c376dbbdfe305e3964837", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "ecfbcc4a6b8b9159cfcf4dd933691cc18bccf6d2e06f6f0d9552ba3e9ebfa520", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "bfe6d13a17919f2b8c72d6c6e341024ac235f3721e627c67aa75153ee54f5974", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "282070d983a2eb265dcd7064d3651ebd479021c6fc9c484d77d65e4b9c322568", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "3b6706a2783848c880b7ddde3f1d28119ce26b846ef7ae51a89d643263fdfa6e", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "002cd8fdecf720dad7d76e1caa452245d6cb6c3062f29400981446c7ca82f7b9", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "f1d1f1e9dfb6d8e87e1a9823dac2fbd9b5d27e88187949727f4ef8ca69283257", + "size": 38453 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_context_load_receipt.json", + "sha256": "8ee9f228d9ef57263b09f00998d6ff19d87c5c72fc072b977cb9eb4e3c852aa9", + "size": 12091 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_cursor_task_prompt.md", + "sha256": "3226042e25621a94192ce01e3037bc1d550bad56cc7b3342c7c2c2d9245a96ef", + "size": 37566 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "7aeaefa0b86bb2a9b871e2350fd7d5ff34c6d9990475bc2c4647c78e7b2e8f03", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "c9d2b3cb362dbf84f74d01b77e65cf56c1be2578069d724d71d996228bc853a2", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "eb38ce3d942a4c5060603e093c783254e6b9070fd8f8c971c77cb7bdda5ece32", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "21b088d240408c48f2dbbb9087fe6540b469dcc5208c173ff6ce34326d17c7f8", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "a17495c2582a17c83b049100d182d77af360f2d26fc0ceca2198c94b4e9e2983", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "bdab000b2e30e3db2c52d93aadef829fe4fef663e6a6b75005361b48955d37b6", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "33e3246c1286b9c0164da05d07319b06ef387eecd08b1ba012fdc43e51f07325", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "bdc26aa0ad98d1d8e31a1264210525980fba61e3203ca8780f1685830cca0950", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "65d81a6d7a27653c14ec2360fb2b8cb7972cbd764f924aaa2dd5fb8198a88ec6", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "aa8c645f3687900634839b11003e8e2f39c0136f29c2eab10bdbd9af2910b09b", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "c028c6b5812c63b0d8eddccd8a5475dec0bfca22391454a092b2727241711a08", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "d2c5944a3e793d4e4ea718f9b66733613c851cf7bb030a220fb8f0d83dd89b56", + "size": 36346 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_context_load_receipt.json", + "sha256": "598da1c9ad41888211f1756747a965b32a8372cbe3cd5a41ab8f3c45719a8139", + "size": 12655 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_cursor_task_prompt.md", + "sha256": "959147e6d36d2b7b8411e15573eeaafbc4ea1e36f45a22e6777af5ce06d14dc8", + "size": 35463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "1b59d3131f120b194fa35c85138e2890b1890d8a04a9f0adb11a43899d57a5ee", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "7554631fe3ba9168b983c5769abe8c9d8bb515c9e28e6caf1e2a2535fa66fbe7", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "290058ea0e7bf8f41c5b9d02265a338304d8fb4fcb21557e8337759c27bc4931", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "ce591efb3a476a18203791777de52cb60b60595f5eecf490fd44e1deafd5dabb", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "27dfe784705fa7892543c2bd838b97ade1a3f612f97f16c7e1e8f14e2c642b3c", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "c33e4e7452d3ef5054b1c0fcd30a265394b32b3d33cb812870dae5714eaceb28", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "218a61cacf3df399103bc913f556dd2a3240eb8131ea580994ccdd62ecbb38b7", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "d7e24c4573c7f1ff46ef6938c0bfaecf751884518e07a39a6954ae3da3935092", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "8defe8d72795a6ebf588a468a8ccd179267aaf6e7e8856e6e646ad91293aeda9", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "2f940e78c6f2fee1c2042ef35d2f5cbe6105c4fa386a0f6c6aaa4115b8e7f747", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "0f4e3e031e302afa298bf8b5b5bd65676b359ccdf4c0502625659a73fd503bf7", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "b7632bacf689eedd8dd45bc7d3d1986fd76ea203d690a90e1e0e06c64a1bc4cb", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "6b453262cab7e44165a8ef2a11a034c6fe897be447bad70763c5e51c73bc3a7c", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "cf80a34f5b19d235608a9315210027f2e313030aab8ccc8307a807f980ded9dc", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a03fbd4ef4da5ff1de9d2ef5ce8163b67366ea40c16fb5f5ceb7881421dfeb6d", + "size": 35704 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_context_load_receipt.json", + "sha256": "0ea9317a9957089c153bf1917d90d2c83b647d3fe58f7000054e7e4feb3353dc", + "size": 12770 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_cursor_task_prompt.md", + "sha256": "d3402892baef59a0308e02a0e82d2e99a3654d2143a6dd423eebfe621c70e2b0", + "size": 34833 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "3025e1c73c67b883589edf591a92f695a7fea28b01af1f8b394c2a96ff663fed", + "size": 1481 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "442b0f38b61e9538dbf7d334c334286049a00e6ca96d8718f02565f5e8eedeff", + "size": 1631 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "b437dbccb50c31d866b44dcdf63da924f432c76a35f74ff4a73789ef0ea959bb", + "size": 1456 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "d54d267c524a6babcf7c62a7783a2890553cf2f28d0f2ce24476864eb7f7bb23", + "size": 1614 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "43539f2be73b9e5a6bf1a86628a012e9df8309becfffb64babded1119f434758", + "size": 1424 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "58b9412235d40ae7afcbb5ebb216c1626f4bf616930d342793624c43363afe38", + "size": 1599 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "0fbbb5e337e03025e99d7f30bc6d9251a0be4beca6a37b4fe8d4622ba8730079", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "8bd57d378a1503102e38c8d939ca26f97dfb5d7dccc175f72a93bd2f012c0323", + "size": 1577 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "aaf78c91e23202c9f688a8a3dbc6e56c453f3762ac7e128383b8107ec5775537", + "size": 1397 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "74d75be6bc68748b7a106d03476c20170bceaaa7b6a533deb540678a042f73ae", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "60258d00a4aed2dd744fca9a246d9aecddba81f3a91941bea6dd96a793ff8d35", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "74de7114a529afcaca5eff60f5c4e53282d563530c2ef50a21bf30645ad23b37", + "size": 38413 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_context_load_receipt.json", + "sha256": "e72d57bef52cd604372055e190d2ce5f7705d94d3ad8b29a8892ed99ac5b239a", + "size": 12051 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_cursor_task_prompt.md", + "sha256": "ea009bb01d6e74eef30e6e112183d1638970bdcf312fe070c077dc84e3ff7b6e", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "853374fe8477e73e0259706500721e3aca206543d999a59cb31bd0d641cc6206", + "size": 1364 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "1306b9b8373ecdc07e305b33329b6cb5f154f160d269afd1ba46bf5f9dfe13ee", + "size": 1568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "eeb6e261d95637ec99711e38b39f10c796a86f7205d4101902de9222c3989de1", + "size": 1332 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "4817e4ad8f7b686cb6b14f0451ea186066362a845c0c5ad4659fab6d1174a823", + "size": 1553 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "cdc61dac267782eba3344cab339be9e7ff36a8c2211fb93924394c4aa8d1a97b", + "size": 1294 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "a1881660cf0a7050d054162a6345897312bdf7f3df773244f7260413e36a8fd3", + "size": 1531 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "5d7021440cd643470c57d40f864749efea893b74212936c50f934afbcf6d1c53", + "size": 1305 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "242b93aa1cdbac4b3c65326c6696cbe79508471e5ff70e6b082424a15624c4a7", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "ec346d0576bf7e047101f3bbd233ec4a5860362523c7ca1af0bb25ed7649a003", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "d27ac66e2692273064d00ec12f4b4d7e42cea853fa4d03476d71b9dfbdf16e6c", + "size": 1364 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "a14190b827e4c79d66a35cc01d8b8c95d72cd57e90284e7c7939d90f94e9821c", + "size": 1568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "f0eaa5d98458fa55668a80634e0cbd15b53157aecadd3129852c50dd9959da5f", + "size": 36306 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_context_load_receipt.json", + "sha256": "a01e8273380cd72a2781eeb809cea4915a8332c60f95394d7d6bc6adcf69caa1", + "size": 12615 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_cursor_task_prompt.md", + "sha256": "0b96016093836f2ce4b5e1636a8dbee3fc692f131f5156ebcd9a82c8a36e0d9e", + "size": 35443 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "4f0ee6979bac350fca73abcb4a17d42fc421043e2ddc89f61f37ef4067ddb946", + "size": 1332 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "9b276b9f9c06e98058ae4538f8eb68995be153b59ed6b0c34d1dcb8c686c0c18", + "size": 1553 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "d6a2e2ab013370f74b63f0ed32c7dfb9e940518ced82318fc2c9b7cd9a0dc76d", + "size": 1294 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "1a4d4e4f70ef4d0f1e2c34262e13c70ea6d5481a7901a05417a04cbde6c9e5f9", + "size": 1531 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "446a023bfdf19d4a384b153c9c6c58f57873ea05201f622eda147f41e6b16d7a", + "size": 1305 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "c40fbb25271acd051549fa8b4db3c4a6c4c726dd1a8b5de5a5869a027d7e2c53", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "b9b33e48eb1bd795511e62ba3688461012c7984c5a7ad37c4dac43755b843495", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "da75df98b3b50d6a7f98b9f76a31c54294a561384a36fbf79e5107b345e3f202", + "size": 1364 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "d947253fc21a52dfa6009ce565f74b9f262ccafe53dd86f150b0878c3ca1aeb3", + "size": 1568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "b8e48dd78801db7518fcaf9dfc5c155a2e2728232725ef77c24e7a919138dc06", + "size": 1332 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "0c73d604931e3b210a27d6eb327172f7dd2132b1160b1a4d75d0a25fa25fc627", + "size": 1553 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "8d60dec482f54d9fa23815878831465e065b13ff1e82abfb582a6e8c645b80e4", + "size": 1294 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "de14a164b509a82217ab8522f9bafd32a59b9fa10969a156eaf074103df8fef2", + "size": 1531 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "dc2f0249b5f2273e818d2beb3781f11f8280c4041b04808c848176d1217c0d1b", + "size": 1305 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "0484c1b8bebefca6917d0eb6a8adad9d6b04d201818f3d82100f723f0a661745", + "size": 35871 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_context_load_receipt.json", + "sha256": "4cb1564561df67115561a1eb36fecd94d0f333d85b14706201f2f35b1151264d", + "size": 12937 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_cursor_task_prompt.md", + "sha256": "7330081ba6a6ac22cfc6f1114fb70fdacee22c9286c55c70dcac19377cdd2926", + "size": 34948 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "bcf367e2f14d9449f7aa667d32b93a93a50306041178963a27638a61cf391a8a", + "size": 1837 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "825ccddb3a8364263bdefc4e152745d5c5bfa97a34ea62df1a7708f907495bee", + "size": 1976 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "fd764ab63b18a5af28e2a481b7944b965109fe07cee326f570ce3943046ada41", + "size": 1812 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "30f30147960e68abd31e3f8217f232a7eac64fbf60c63dba493977c793780087", + "size": 1959 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "6ef98b7e2d897fe0c99ae87dcf87da6ea68649ffb7011f8e6c21e87ccc72f486", + "size": 1780 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "1badbecd838b26f9088ab298882e672468cd91777ff6146ce998b3557246bd04", + "size": 1944 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "59ccc2a20bdd80e389e9efa6cfe0525f15bc9430676cac221cab7ba3c82a9d21", + "size": 1742 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "4fa19c31e90ed587de50c973bacefbd80668da3c58db6a93861b15da735698af", + "size": 1922 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "0a9f61ff13bc221d711813a87418f63743c2dd36830924352f6f158ac455e3e8", + "size": 1753 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "c63f44e04509aaa1aa6142964c93d8e286b42680effec040e3c25a6a6d0a4b83", + "size": 1567 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "3b5743b29b962ca60add7ea8d607c0ef4743c11d36cbb474ff23a2c49ea05277", + "size": 1841 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "82b83ed2b4fb392a5d70c9a959ccad8e074d3c76bc203ea5fb156a944cbc0a24", + "size": 38580 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_context_load_receipt.json", + "sha256": "faf5f85e9b70ef3380ae76ffa6850116dfa4d68c57ef542355b567dd8d309aed", + "size": 12218 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_cursor_task_prompt.md", + "sha256": "04090019ea02f8fa54e079bee690088daa4499e1f61776e945ede0553058fc7a", + "size": 37661 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "3215d5f4ca0439e3a8ff1f0bde7f2efbc83648559579047ca85ca180b860d145", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "e0b237be2351b64a81bcbba60108e2ec583fbf47b64a1c21d6c2e2d9630383c4", + "size": 1824 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "c549c82e4cbdb0cb5634bd451b9b705349fc6ee4c32dceaead6736117be035e2", + "size": 1510 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "3ebb30810c39fb79c643f0d7f14f996562a94c039cd1dce8abe1e6ffd64a884e", + "size": 1809 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "11769e4592b762e72d3b3ca7bcfd6230cfc26885cf4b41bacc7d99b98c66657c", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "b68b1216f990320494af24eafb0aa5dc48d2c64a2b7517a96d368810493f37c4", + "size": 1787 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "a01cc59b136e9e963397f704b0bdb6ab33a006714823026a70747c6b60134f8f", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "fecef408ed7ee93b1bfee5a274f99e9fe029f2c989d2ecedca761ae0be9adf2b", + "size": 1567 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "36a9c9931bff190f61aa154c5de96c19a0f72ebcf8ec6872b646244701169837", + "size": 1841 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "f36f439418a505e90fa6664c4abbe7f12448106bbfcfcea7d9a30dc31ba39891", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "b217fa1ad3e67dfe5b7d1ecac23da886a58dea26fc20d81eb7fa2bc61bfd5119", + "size": 1824 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "089177b2b6d34a4a1234a00775c1a5d31a5a7114bd3acd5b554ef9b0ee60af76", + "size": 36473 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_context_load_receipt.json", + "sha256": "426edcab407f493bcac8350e9b7e0859174a2b8a9d73a74823fc9e920a59305b", + "size": 12782 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_cursor_task_prompt.md", + "sha256": "138b4e27cd4c63486db236ae260a178178d87fa89199ead26be4bddd2123c399", + "size": 35558 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "40bfbc2d5a606ff2da805ec774b4d35445ae386605d0c8ea639e06a228fc81d0", + "size": 1510 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "bc67927499be12e0a3fe37a69bc2e016d74622f03aa3332bb0d4963b23996755", + "size": 1809 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "318df877c5322c46efba9753c1b10159571da00774e3de0adb52934023f0addd", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "b60492f3812cafeafced380eccb85d7256fa10d9cdba4463e8447bc6bb7bad86", + "size": 1787 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "d956c6ecbeaf7012ae4c28e55dd52371c659ff6dd8f854d3c77158286d8ea469", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "c009cfe0bf1899e6db08fdb1f4ae82cd1f6a70d35dd1e039384c09ed35d2dca3", + "size": 1567 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "9051c6d1538d2ef49a7342e1e79e38d82daedd9b5801a823c6d5d0541009a016", + "size": 1841 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "1edda6c91ae829eee18360459c7bfbf1b68ff9a33bf1022d488e5562b56cdc4e", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "b0c5e9807b51215577f571aa68e1b8f6d8610edb879ea6025da387f75c7797d5", + "size": 1824 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "a51aca0de30034d0baaea018cda1f300830cd692c47be9ab97d3722fca8818e6", + "size": 1510 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "0265cbc48892232ecc37b87d0f995ce4849d21749f42381a47ca8b9ac7600823", + "size": 1809 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "4c6915f9cc51f0dcb5354e7181d1068ce5f5c6503f1d1eb59338fe8a2319f91b", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "3edc8a14de70fa7f5e8a7d2e7fb26fc711040347d6a466852a7238fccb6d23f4", + "size": 1787 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "4d0bcf22e6f6d1bf83595f41ba72eff0526148849552e2470989a2df3b1026cc", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "4df21b9439a465737aac41638d0544c77da8c6bc229792f68bf75b7fad71d438", + "size": 35861 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_context_load_receipt.json", + "sha256": "fa3ff051e163e8a237c04c8e6910899b421243063d30fbfee98725fc84491345", + "size": 12927 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_cursor_task_prompt.md", + "sha256": "a4027ef2c35dcc8bded38bc29936b08c3b5ee490b537d76a722d2d0b47003983", + "size": 34938 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "26bae726d2f814d8f5c5b97d688ab239114c37010a88af29efa2ef46ad2e8488", + "size": 1797 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "e49e830134f5fd0a8b820f4e2781c0eab6cdd804803f174bd9887d6070c96806", + "size": 1946 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "61d0bb35e8a9b1b6e1dbb833bff497d45dc2445b31f19026e1a196202192f10c", + "size": 1772 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "addfde329810f01f743e376956c243a27092e3619ad13237fdd0cff7f9d49e1a", + "size": 1929 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "410bdfe5aef06d72442c8524651fafc28acab036a8eedf2cd5bb2b53a89a053c", + "size": 1740 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "59e649e5171b7d769b2f72b07a26153fb36252cc6051536ece74e6cd7b6dbc86", + "size": 1914 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "bb1da3eecd0d775006409a9e3197c12ec5290f07bd827991ec2430c470566203", + "size": 1702 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "eb22014cc2beabc4c6d1c9f6717aa38b7ba2cf6af50d8607e33293fedc60d494", + "size": 1892 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "3c01ba4712d586818466f576cbd4d9841c43e1f759abda5e73fb19c20c1ba9f0", + "size": 1713 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "9d2c4b2a660aebb6ab024cde75ce86f233bd8c00277a61d55ca885ec143b5f78", + "size": 1547 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "407635d8692afc5854ea891f7505ed319ac0af0d35f5a211c7d77c2ed4c0cb45", + "size": 1821 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6ad0ff6a500dadf4e3b7c67a7b9322674d51d3abba5fca2c5c0e5b0187d34be3", + "size": 38570 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_context_load_receipt.json", + "sha256": "fbca44ef830a202e3b631e04a2921e116403e25a05bb77d240854194979beee4", + "size": 12208 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_cursor_task_prompt.md", + "sha256": "6498faa1aa5baf08cda1c82274080a056cf8da387f7cb7dcc31af7aabbe7ddfa", + "size": 37651 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "87944d4e5debcc8aa0c9443201c8e03e1dd7b27e8414598af538f07017dd9d3e", + "size": 1522 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "2490c4b990c77ee83d5f7fd0c71baeb572c6201842b676bfaa3a1f850a2f5cc5", + "size": 1804 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "5bd7a878777ca7575e56f13924ed1d40009537eb6c10d499f6a943604edd3b48", + "size": 1490 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "a8998e1db7891b75705a9c69d02e03c023876a8e0b0366e6feb440e4bf811cbc", + "size": 1789 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "e13f1c8a9d0afee61b59629f7e8464055c5e6a6ff84aa335f5a86ca528ad8077", + "size": 1452 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "ecd626966bd0eeb43cba5209bb0269cc27178ca6b528af63b03a6bb8f45ca9e9", + "size": 1767 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "876d8eceea3d260f7c9da6f25f2c3bf5c9258b3e08ae34056bc0020c4a55f400", + "size": 1463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "51ef212cec6a3704cc2a14820187930e2354c01713e38262c5d78d0916fcf4ff", + "size": 1547 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "16904133f47e65e923b4bf9191fadb36ba98b1c6b1c8ec044bd8fbc6e06b85d5", + "size": 1821 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "720f48ca943763403c1d653776555a37ceffb0a309cbd0e2d0191790492331c1", + "size": 1522 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "847d1bfdc6370d20e551e340cd2d53f35e2cbcc16ca633e21ee0d55eb42d260b", + "size": 1804 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "6775bfa193e77b7c5fa2181c0865647d088bdef1c0a177a3f89af3919b9ee5a2", + "size": 36463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_context_load_receipt.json", + "sha256": "62a64e672595d7ff86f66c1235c59d44efd289ec9ec8dc69f0c708a0045d8553", + "size": 12772 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_cursor_task_prompt.md", + "sha256": "a372979156512137f1af1967b0820396a04c3878fa5eb6a110e54942f680758e", + "size": 35548 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "9deb179600cb788c8b7c13d45d181dff97c899e97e569d589f87ab35e7f7770d", + "size": 1490 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "02090eba6d7d22a37705e9083a82d302f00aa36b088235daeb2224982d7bb529", + "size": 1789 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "715a64dbb639c08954017fd3b32a8189fe333429e574ce77e9c14387ed8fc896", + "size": 1452 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "dfe65624705bd0a5b1a5d634f6b8d17801da8f15ca8c48b27aee57c76e6fbb51", + "size": 1767 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "7f95851d6d8fbf81bd141ee8f5d25764b8eddfb1cea0cdf4ef1dc5999aa3b2df", + "size": 1463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "8d7babb30257b7865d785013b7897575051bd67c241f49f7cf0589d4b390927b", + "size": 1547 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "ff1e66a48a5d9809cae1ab8da85b008d21e1c7ad3627166d96756510d9ad22ab", + "size": 1821 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "e3a8ce5f1c861035dc1081e11b8573c6d7c6bb52f9f18253ca1d3c0d96f19e4c", + "size": 1522 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "42def555727feb8ee49346985a71f05372c0f34fe403342a36788fd2d6b4e5aa", + "size": 1804 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "10b5ff93912a08c2007bbdda5c7331eb1cd77b4f0e491fd7650d97fc87ab7937", + "size": 1490 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "40b3e3fa8843b048189ee4059d21c17385f2b79e6e3c4c49998d87d8ab5c9093", + "size": 1789 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "ed94fb50567cf12f460e571727cb4b776af01662aa884e21f5fa345dfb08b757", + "size": 1452 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "c7466b1f61b2e7a136de36e66df3396ff8b5646fe807cc5d5386f3bde21ca68f", + "size": 1767 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "61076f077dc2b366f63b612f3a2d7c3897bc0fce50f7d145856ebb119591c4c0", + "size": 1463 + }, + "ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json": { + "path": "ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json", + "sha256": "6d18b8f5ec0198927065b2d256453d4b1a22a20e7b0814806ad79395009dce57", + "size": 2725 + }, + "ION/05_context/current/github_data_plane/BOOTSTRAP_UPLOAD_AUTHORIZATION_2026-05-05T041221Z.json": { + "path": "ION/05_context/current/github_data_plane/BOOTSTRAP_UPLOAD_AUTHORIZATION_2026-05-05T041221Z.json", + "sha256": "28cccb920c5b21225daf4cf1584739ade5e4828a05d3065ac6e9bff36747126a", + "size": 1755 + }, + "ION/05_context/current/github_data_plane/PRIOR_ART_CONSOLIDATION_2026-05-04.md": { + "path": "ION/05_context/current/github_data_plane/PRIOR_ART_CONSOLIDATION_2026-05-04.md", + "sha256": "233c4e3316abc75888f6459ff3dbfc8367b115303eb51a0c855076b3ab59a81a", + "size": 7998 + }, + "ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json": { + "path": "ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json", + "sha256": "e67abdd98516afe552bf0e611f4db68d908230513c5ee5e9c7804c96f15b88d5", + "size": 1157 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.json", + "sha256": "f8e5403fbd072d1bff0d79252c8485a4c419919261064641d030ab0b9b694ff1", + "size": 11626 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.paths.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.paths.json", + "sha256": "a20fbd3a78b73630dfea35bdbb3bbbdc527eb0bc85ba50d781269cdb080a32bb", + "size": 637537 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.json", + "sha256": "70d40be6de4ac4aba211e9ee1f7c1d9e10598bac859445f32be7c315079bc74b", + "size": 11710 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.paths.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.paths.json", + "sha256": "82da2721108aeb6648a709df75497cc34d5d92b8842515db4b45b1027b940f2e", + "size": 638003 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json", + "sha256": "37e106f2fdfeab3c533fe259960c0829a566b8530eaf94ef056c29f9e1c2a5c4", + "size": 11545 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json", + "sha256": "b30cb0445412e97dd883304897aa40cc33584ece0b90fa1bb11770f9d6bf753a", + "size": 638603 + }, + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_mason.json": { + "path": "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_mason.json", + "sha256": "3bd40a1dbf4c92885259590a69b7a3b4515cec6abcfc1247117b8ddb640f7259", + "size": 343 + }, + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_steward.json": { + "path": "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_steward.json", + "sha256": "2ac26eb3f8a9a57847360bcd000564f5bea884f31dc937f2bcd3fcf11beba704", + "size": 358 + }, + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_vizier.json": { + "path": "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_vizier.json", + "sha256": "f3f23a7f0178d238f0a18cda22c886f1e30b9814df43c55a061b72c72e1ad8c6", + "size": 351 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_097a5d1a960d_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_097a5d1a960d_steward_integration.json", + "sha256": "8288dd4227057c7b7f68a213290a7db892d438f01ec13d5682189ff5263d0a97", + "size": 3263 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_0acfdf36909f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_0acfdf36909f_steward_integration.json", + "sha256": "761dd77596cbbd0f0749c0cbd0cf1fa6c218a8ea2b2a58760b13934ba308b6d5", + "size": 2797 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_176bca037f29_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_176bca037f29_steward_integration.json", + "sha256": "80a520337c9e8fc43b80ce47e31f59a522155a582c555985dbed4fe525966d6f", + "size": 3744 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_179c09697797_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_179c09697797_steward_integration.json", + "sha256": "82a243cfdec6ca30aa44fc2e44e141981e34d542d9169da991ee889caa17588f", + "size": 2689 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_1cae53b1c30f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_1cae53b1c30f_steward_integration.json", + "sha256": "f1a2791bfd289ad60376c530d52a3bdcc666e57f9b23a8693682d7bfaa71dcee", + "size": 2852 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_1ec9f8c8671f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_1ec9f8c8671f_steward_integration.json", + "sha256": "55d02c723e99a505cc86a5a2643068b2f0cfa69942ad8b15faea521ca6fcb1d0", + "size": 3285 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_27c7864b79f8_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_27c7864b79f8_steward_integration.json", + "sha256": "9a07f1284234d2ec2573b2f8a3cdfffadce1277b56b41052a97082672fcd3104", + "size": 3106 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_467e0b5d928d_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_467e0b5d928d_steward_integration.json", + "sha256": "33b623c417a307e97ce8e9d01c6399c1a4111de6e21a607b28258980257d7b1d", + "size": 3392 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_c6b37295e2c4_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_c6b37295e2c4_steward_integration.json", + "sha256": "00da0ce931057d5161679c7c2641d88f71a4c3bbc59191725fd325d16860a0c8", + "size": 2855 + }, + "ION/05_context/current/steward_integrations/queue_02_relay_375e9f194049_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_relay_375e9f194049_steward_integration.json", + "sha256": "c54195bed4a45fdbf853013c15d4151fe1aafbeb2972bdb2f60f2ed87e8cce6f", + "size": 2822 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_166495dc4711_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_166495dc4711_steward_integration.json", + "sha256": "c1fa186f120d1d3b9e94aa579cd64da00aadc42f78baee77f4c083c9f045c3bf", + "size": 3260 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_35dd3ebd7d66_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_35dd3ebd7d66_steward_integration.json", + "sha256": "06e71fb48f36909db2e0dee38ce7e71184d7346cb3d7c6cd3b6e43576480cd15", + "size": 3288 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_3822716abedd_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_3822716abedd_steward_integration.json", + "sha256": "602fc40a52234d4c01a3c8a0709ce705887947fa703f66fd0ca16a1aa57b31bc", + "size": 3101 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_999875a0162f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_999875a0162f_steward_integration.json", + "sha256": "16768420e5e85c9c50b6210806f7fef8b6f54ae174ad914ceacaeb87cdab9052", + "size": 3388 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_e523d62ef484_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_e523d62ef484_steward_integration.json", + "sha256": "77a64b2b0574fd9f1be501ab90b4ffe9931fb1bf102c5bcb2d1aed082a6ba0e3", + "size": 3009 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_0e0b154df17f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_0e0b154df17f_steward_integration.json", + "sha256": "611832fdf39360a2d5940d8bb6f5ab9b526a8c637fe436edcade4844c44e1ef7", + "size": 3205 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_17e1a03addeb_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_17e1a03addeb_steward_integration.json", + "sha256": "48c20d58d148b097436fd9eae9b2ada851294383e3d939a4e9a265708fd20a85", + "size": 3277 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_7e4c5f06fcb8_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_7e4c5f06fcb8_steward_integration.json", + "sha256": "653ec3ba2b9e6964df2a55a50e9753a44bd58e34cd99e1947cca5ac83369b310", + "size": 3343 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_8804d46ae1cf_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_8804d46ae1cf_steward_integration.json", + "sha256": "adc6254e3ea24fc18e8b2ed61718b63d53109693ecbd41d9a98ceda13ea351ac", + "size": 3374 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_e6aef65bae37_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_e6aef65bae37_steward_integration.json", + "sha256": "0e46eb637394686fde7c631f926ae9b73e0a7aee168ae1b0c9d42c566c3c03e1", + "size": 3101 + }, + "ION/05_context/current/task_returns/2026-04-29T145622Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-04-29T145622Z0000_01_steward_task_return.md", + "sha256": "7ad1481854aa2183370c76000dbc1e6beabc15b45fc9dc3bf7677a90a2e487da", + "size": 42 + }, + "ION/05_context/current/task_returns/2026-05-03T040939Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-03T040939Z0000_01_steward_task_return.md", + "sha256": "d30017deeebc20791d6de024dee07f09f6d0cddea272ce13f8b86c4a9899b29b", + "size": 1435 + }, + "ION/05_context/current/task_returns/2026-05-03T040939Z0000_02_relay_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-03T040939Z0000_02_relay_task_return.md", + "sha256": "bdbd517fd965a1f94598c80026a61a0668bed2eb7980eab5295eea4d7ceb7577", + "size": 2020 + }, + "ION/05_context/current/task_returns/2026-05-04T040927Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T040927Z0000_01_steward_task_return.md", + "sha256": "c90a79c764b05b6801f7b7e82eb6d3d638e0dc19170213fa718b698326f52bff", + "size": 6454 + }, + "ION/05_context/current/task_returns/2026-05-04T042221Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T042221Z0000_01_steward_task_return.md", + "sha256": "ab612f049bfc595f7c3ddb5b7bd9167d1d4d10e42fd9ff95c0ed108de36b31ea", + "size": 6328 + }, + "ION/05_context/current/task_returns/2026-05-04T043310Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T043310Z0000_01_steward_task_return.md", + "sha256": "86970243577861403f9578329bbb4b210b4ba75bfb5cd06ec629e21fadb1f19f", + "size": 7265 + }, + "ION/05_context/current/task_returns/2026-05-04T044412Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T044412Z0000_01_steward_task_return.md", + "sha256": "a78dbb483a682e9520d149c2466895ed1aaf87c89766ad15211853b31dac479d", + "size": 7669 + }, + "ION/05_context/current/task_returns/2026-05-04T044541Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T044541Z0000_01_steward_task_return.md", + "sha256": "298ae705b057758831926842a3476bdfd8acd05006877d23ea12f87bb3034e7f", + "size": 6789 + }, + "ION/05_context/current/task_returns/2026-05-04T050105Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T050105Z0000_02_vizier_task_return.md", + "sha256": "7c17a68de93471b6c82cbb1318649cc705dd5697c4fd87ee8757fead4a3a3e85", + "size": 7236 + }, + "ION/05_context/current/task_returns/2026-05-04T050836Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T050836Z0000_03_mason_task_return.md", + "sha256": "34722639c05b23f6ccb565b866eea5585a68c856abaeee152067cda87041deb5", + "size": 7408 + }, + "ION/05_context/current/task_returns/2026-05-04T054324Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T054324Z0000_01_steward_task_return.md", + "sha256": "202f0385d23779319a6643d7ad8115560d2360e0b124a44d2d7a92887a7532d0", + "size": 10042 + }, + "ION/05_context/current/task_returns/2026-05-04T055154Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T055154Z0000_02_vizier_task_return.md", + "sha256": "8b49f534928ca8fe787c1c4a4f6b6998e36594a0fa72bb9285a41bad2c15dc4f", + "size": 8076 + }, + "ION/05_context/current/task_returns/2026-05-04T055843Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T055843Z0000_03_mason_task_return.md", + "sha256": "44b831d47bf49b0815d08f6b6b20383f68cb58e0018f9e76d6d981c6336dcd39", + "size": 7397 + }, + "ION/05_context/current/task_returns/2026-05-04T070637Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T070637Z0000_01_steward_task_return.md", + "sha256": "d726c834dd3ae6291da1e158f1d9b00be53843526c4e2b13d172df62e6975608", + "size": 6926 + }, + "ION/05_context/current/task_returns/2026-05-04T070956Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T070956Z0000_02_vizier_task_return.md", + "sha256": "f349a6a95f73ea4d56cc5c1fc8063aa5844850598b80952a9cf07df89a379e2f", + "size": 6514 + }, + "ION/05_context/current/task_returns/2026-05-04T071209Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T071209Z0000_03_mason_task_return.md", + "sha256": "78de46b684a4eb7d249753acf1c95b1e9dfb6ea18bcd9131e2286cd849276501", + "size": 6871 + }, + "ION/05_context/current/task_returns/2026-05-04T072945Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T072945Z0000_01_steward_task_return.md", + "sha256": "7a7ea98ec20a3cb8e706ae8ddfdd385bd70a269ba9692d1b329bf096b3eb97d8", + "size": 7287 + }, + "ION/05_context/current/task_returns/2026-05-04T073253Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T073253Z0000_02_vizier_task_return.md", + "sha256": "89b766871caab5798a7d9d78e817652de842111f10d432f4785c7a2d12a4cca4", + "size": 7454 + }, + "ION/05_context/current/task_returns/2026-05-04T073841Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T073841Z0000_03_mason_task_return.md", + "sha256": "485ecd5b9d9bc0af3a2afee04bf6bb85d6a253f32ccfda531738e891faff30bd", + "size": 7831 + }, + "ION/05_context/current/task_returns/2026-05-04T145628Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T145628Z0000_01_steward_task_return.md", + "sha256": "ca5ebf67dbbdfbf5a94921c219126e69320178032de696fd920822a709ce790b", + "size": 6731 + }, + "ION/05_context/current/task_returns/2026-05-04T145708Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T145708Z0000_02_vizier_task_return.md", + "sha256": "6b3f62bb1856db5413f455b028344cb68c27ac631fee37d8664fe59f70715e69", + "size": 5224 + }, + "ION/05_context/current/task_returns/2026-05-04T145756Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T145756Z0000_03_mason_task_return.md", + "sha256": "7e05dbf74ca42fb00f67d49a7cbb1d3ba40f055d5103547d2c34b227f321688a", + "size": 7118 + }, + "ION/05_context/fixtures/consolidation/v60_branch_consolidation.valid.json": { + "path": "ION/05_context/fixtures/consolidation/v60_branch_consolidation.valid.json", + "sha256": "63c252c69cad3146dffdc4877a9b0b582747fbfaadd20659b14529d99e34b454", + "size": 1908 + }, + "ION/05_context/fixtures/ui/v56_joc_cockpit_component_manifest.valid.json": { + "path": "ION/05_context/fixtures/ui/v56_joc_cockpit_component_manifest.valid.json", + "sha256": "48784042ba76ac1d77e416fb366397c2beb3bdeb401f6b91218b7bbacafa64b0", + "size": 6894 + }, + "ION/05_context/fixtures/ui/v57_reactive_os_stream_view_model.valid.json": { + "path": "ION/05_context/fixtures/ui/v57_reactive_os_stream_view_model.valid.json", + "sha256": "8919b052a05bbcac668fed231664e188098fa4a852e3f0a7a769f133a0e3a1ed", + "size": 6107 + }, + "ION/05_context/fixtures/ui/v58_cognitive_explorer_route_view_model.valid.json": { + "path": "ION/05_context/fixtures/ui/v58_cognitive_explorer_route_view_model.valid.json", + "sha256": "c128717139108f6ff0a702044f2b9a189cdf0243bfd9e00be04a7935349d6c5c", + "size": 3894 + }, + "ION/05_context/fixtures/visual_regression/v49_demo_visual_fixture_suite.json": { + "path": "ION/05_context/fixtures/visual_regression/v49_demo_visual_fixture_suite.json", + "sha256": "097f81e595d1b49acad5dddfbc62458c0f0942b6eecc6017dc07953178993a92", + "size": 525 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-0fe4fcb96c4fdea2.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-0fe4fcb96c4fdea2.self_mount_graph_projection.json", + "sha256": "d7e86e7667736d0039bc8ecd636e5af987593e3ebe7198529b719a0e01243c13", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-1b85e0f7eba9afe6.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-1b85e0f7eba9afe6.self_mount_graph_projection.json", + "sha256": "bb83f6db55fafe0b22d52691e8208fc1d062e7c79647bee7ae28d4a8464301b6", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-264afc5e5f82c248.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-264afc5e5f82c248.self_mount_graph_projection.json", + "sha256": "61ea9041a2acfeccd62f3df45770e3105af4325aed22ff9b023c1c40ff8acb7a", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-599a6cc850978c82.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-599a6cc850978c82.self_mount_graph_projection.json", + "sha256": "aed6a516306914e2689597406a718ff8122d56b765c6cb0027ab67beab0cde36", + "size": 4725 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-5d934fb9d7b5b606.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-5d934fb9d7b5b606.self_mount_graph_projection.json", + "sha256": "b62124da460695ad0603853e38d9f9c3b0c46bcd8589f8544f98db1ef554c62a", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-7059b321b2c76018.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-7059b321b2c76018.self_mount_graph_projection.json", + "sha256": "0501400857c2a2ee781c22419baef17de058fe0b336e4e4dff8ab58d65a83096", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-8529a531d01f3a3d.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-8529a531d01f3a3d.self_mount_graph_projection.json", + "sha256": "60a700af07a644a64410ce79e4ca90f1ed06d3bcee28b482a8b50f22559ca649", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-86cfb183da7bbc55.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-86cfb183da7bbc55.self_mount_graph_projection.json", + "sha256": "c3bd86f1ae22f7f6ef47423faa2dd8128564a310a8e82edc96c30506c530bc6d", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-89bbf704bbd11cc2.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-89bbf704bbd11cc2.self_mount_graph_projection.json", + "sha256": "f1bbc290b1003e0633a327fabffc36ddd6ac31a102c1df7daa2a859965ca6997", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-a05b820d556831ea.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-a05b820d556831ea.self_mount_graph_projection.json", + "sha256": "37acec19abf3c5aa4dbd5c9e36287f31df919739ace5c212af9250e4090805b3", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b3fc5b5af61ea610.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b3fc5b5af61ea610.self_mount_graph_projection.json", + "sha256": "700ef5645f9329dbaef7924a9e51d4001f14fc7311c29931f48f77c221b16e17", + "size": 4726 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b7923f00b4f444ce.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b7923f00b4f444ce.self_mount_graph_projection.json", + "sha256": "4cb5c2726fb9a9e08e51f01e474f5dd07909e03220dfad705df9b33ff292c7b3", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-bd4c385ca237f83a.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-bd4c385ca237f83a.self_mount_graph_projection.json", + "sha256": "f75cdbce76f758f21db7fe6e5a3404383ef9074bbc1610c40ac3669da29964d0", + "size": 4725 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-d4483ed529a9773a.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-d4483ed529a9773a.self_mount_graph_projection.json", + "sha256": "2a84271a0d44db93face5ced68406b38f1f78d1af5750b92deeaea383f324fe3", + "size": 4726 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-dded4d06ec213a89.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-dded4d06ec213a89.self_mount_graph_projection.json", + "sha256": "a47a925ca0e6f41b6b0a1f90e6dce5e00be8a71513b5ff69934b40fc58951308", + "size": 4726 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-de85a8041f7a6bcf.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-de85a8041f7a6bcf.self_mount_graph_projection.json", + "sha256": "f891aba370b7acdb54f523d08ab54c9a0f3cf8c602100cd8a5e76c7e613e7943", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-e6c0d545a4278920.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-e6c0d545a4278920.self_mount_graph_projection.json", + "sha256": "6a97af4f9e53fc6c90752dec31f8d67aa0e5a483926ab06816ddf5561d2d2317", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-fced94c1fd004817.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-fced94c1fd004817.self_mount_graph_projection.json", + "sha256": "8edecdd32a97a9d450170218626e95b810d7274c2e5b54fe2398b4fb45092035", + "size": 4410 + }, + "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-712038e6c588c333.template_graph_edge.json": { + "path": "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-712038e6c588c333.template_graph_edge.json", + "sha256": "07130f383664abfc47a99d2fde525fe8ee0e5491009850d2baa94bc560f7456f", + "size": 579 + }, + "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-e7cbb3279d673f06.template_graph_edge.json": { + "path": "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-e7cbb3279d673f06.template_graph_edge.json", + "sha256": "209ef51f5b8c33334bd882bfd2457487cc5f6f510d611ef13236f5d30ea7f4cc", + "size": 563 + }, + "ION/05_context/graph/template_event_graph_state/nodes/ctx-template-event-node-e2ae3524b04fc459.template_graph_node.json": { + "path": "ION/05_context/graph/template_event_graph_state/nodes/ctx-template-event-node-e2ae3524b04fc459.template_graph_node.json", + "sha256": "6fb33ea1dc4cad00aeb8de1d75f5ab046f7dccc48aed4bade6b1f71b3cf3d7a6", + "size": 721 + }, + "ION/05_context/handoff/V35_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V35_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "sha256": "b18d7b44f6be1b7c8a0854b8a7c0774cc63c183e794ba633b5d92c9cc297b898", + "size": 1760 + }, + "ION/05_context/handoff/V38_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V38_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "sha256": "01abe533a7871f38ad4da1f0ada655d34d690f608219d0f07a6150ae22064006", + "size": 738 + }, + "ION/05_context/handoff/V39_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V39_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "sha256": "9a89a069eedef35a85560cf3b35ed4ff03d8cb4a2a79011bbc51552fb046fed4", + "size": 729 + }, + "ION/05_context/handoff/V40_MAINTAINED_WORK_SURFACE_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V40_MAINTAINED_WORK_SURFACE_SUCCESSOR_HANDOFF.md", + "sha256": "b31ae2c2f834aabd92c76c3ed1fe7618e6f27ab8012f630789104bcb0fd3f188", + "size": 1234 + }, + "ION/05_context/handoff/V41_FRONT_STAGE_COUNCIL_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V41_FRONT_STAGE_COUNCIL_SUCCESSOR_HANDOFF.md", + "sha256": "d2aee578135adc842a5bf38af7efb64bc8daaf9ea7a18ae6e6bbd338515d801e", + "size": 1195 + }, + "ION/05_context/handoff/V44_VISUAL_OBSERVATION_PACKET_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V44_VISUAL_OBSERVATION_PACKET_SUCCESSOR_HANDOFF.md", + "sha256": "46c3d8ea97315930d4e23d7c8f88bbf0ec81ec8d15e6f0b59ad7fa64f0807d6a", + "size": 620 + }, + "ION/05_context/handoff/V45_VISUAL_DIAGNOSIS_RECEIPT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V45_VISUAL_DIAGNOSIS_RECEIPT_SUCCESSOR_HANDOFF.md", + "sha256": "e7829ca1fc93cd13c90e13d52a44311a87fcaed5326d00c332f1816ef8281bc2", + "size": 748 + }, + "ION/05_context/handoff/V46_LOCAL_VISUAL_HARNESS_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V46_LOCAL_VISUAL_HARNESS_SUCCESSOR_HANDOFF.md", + "sha256": "f5243aa9c5902e6c4fec5eca7223c44852b4cbf9e2ba386ef46d4949d9daa53c", + "size": 1078 + }, + "ION/05_context/handoff/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_SUCCESSOR_HANDOFF.md", + "sha256": "c25913a51d12e3d5fc6fd9fa5b851c23f0614dca0a9549fd7c62fc6bcfa0b425", + "size": 143 + }, + "ION/05_context/handoff/V48_VISUAL_BEFORE_AFTER_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V48_VISUAL_BEFORE_AFTER_SUCCESSOR_HANDOFF.md", + "sha256": "1143cbe7d7f2102cd36068a6e96419539f37726c972aca44dca35e505522bfdb", + "size": 140 + }, + "ION/05_context/handoff/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_SUCCESSOR_HANDOFF.md", + "sha256": "1046de4a7069dd13fef16f68d0690bfed62c1c90e8165c52bdeec6cb0acce84f", + "size": 871 + }, + "ION/05_context/handoff/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_SUCCESSOR_HANDOFF.md", + "sha256": "16fac9fe161af9e97a9253a922ec18ade930aab3fe039db9bb22a12555674a3a", + "size": 658 + }, + "ION/05_context/handoff/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_SUCCESSOR_HANDOFF.md", + "sha256": "3b61e9a36d1e353db7ce1b95955cf0663ed89dcd54594032d414bf838cc30215", + "size": 757 + }, + "ION/05_context/handoff/V53_VISUAL_AGENT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V53_VISUAL_AGENT_SUCCESSOR_HANDOFF.md", + "sha256": "2fca0135f05dfd2d04c1050431924a3008d93ec0ada8895ca543b17552365038", + "size": 222 + }, + "ION/05_context/handoff/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_SUCCESSOR_HANDOFF.md", + "sha256": "3642c842af777fec691ca604806a7f878890ad9d496967f6d08d02fb1ca148f1", + "size": 476 + }, + "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_SUCCESSOR_HANDOFF.md", + "sha256": "0b4125bd8d14ce8692063e2dedd85f8b8df91ced93e9b499cbbfa62337110a90", + "size": 1265 + }, + "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_SUCCESSOR_HANDOFF.md", + "sha256": "3734d839bec35445fa7d85752b6ddc0021d70125895278f8492ba629e7a5fdf7", + "size": 395 + }, + "ION/05_context/handoff/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_SUCCESSOR_HANDOFF.md", + "sha256": "3f08beefbfb52083c8b2e993be170c15a0612cc5ca98c12fc739daeade29d59b", + "size": 698 + }, + "ION/05_context/handoff/V58_MODEL_ECONOMICS_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V58_MODEL_ECONOMICS_SUCCESSOR_HANDOFF.md", + "sha256": "8a573387a4ba067946e88aba4b53049fc95b3aba7abb1063e35914e3eb998b1c", + "size": 486 + }, + "ION/05_context/handoff/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_HANDOFF.md": { + "path": "ION/05_context/handoff/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_HANDOFF.md", + "sha256": "b5a6a9c880f21b34853b815620aa76bf6853a60a968763ca38d8f44796774359", + "size": 982 + }, + "ION/05_context/handoff/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_HANDOFF.md": { + "path": "ION/05_context/handoff/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_HANDOFF.md", + "sha256": "a40a4513715e3dbce160deb4644f93eeb8ddc810b17b00c47badbb1d5e3166c2", + "size": 511 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-09e421cbd616f3e4.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-09e421cbd616f3e4.agent_succession_packet.json", + "sha256": "e1e3f9a8d2f5ebc0db63bc2a36b06a7f905cca4d8980220849a702f82c7829fb", + "size": 1843 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-188c4823c393edd1.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-188c4823c393edd1.agent_succession_packet.json", + "sha256": "2f4bfc23c1a7bef6318ab2fbf178cffd6142a817543d4cadc2493678fa09ce90", + "size": 2644 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-34a56d95766f5be9.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-34a56d95766f5be9.agent_succession_packet.json", + "sha256": "dadd43c279454c590558d2cfb36cad46a58a76c8036a032ef17d075cc883bd4d", + "size": 2627 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-4e67a14a5f9c9204.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-4e67a14a5f9c9204.agent_succession_packet.json", + "sha256": "5f4ed8edaa1f59313603c1e9ac55a13840eeafbd7672682088aee3f631bbaad6", + "size": 1843 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-5af858de6ec8056f.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-5af858de6ec8056f.agent_succession_packet.json", + "sha256": "854ac43f9ba97c99f44a204cf74be8ed4dc3947caded0fae1ed6ce66b0c4b3ed", + "size": 2645 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-93ee6d7ae63bd72b.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-93ee6d7ae63bd72b.agent_succession_packet.json", + "sha256": "1b1f20fc496e6173a38ef79e35154ceb8a3110418be055708c78ec237d0c9604", + "size": 2627 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-94dc736c484e8782.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-94dc736c484e8782.agent_succession_packet.json", + "sha256": "95f8527fa87bf28bcc4a01051486dcb9038b6a7efa46ca79dd05c5ad97298de3", + "size": 2644 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-a904ed885c6598ad.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-a904ed885c6598ad.agent_succession_packet.json", + "sha256": "d2512cdf400768e33dd2ba914473d0bb3a12c50ae76b29a156f393f35f58ad20", + "size": 2629 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-afe4b4787dd89751.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-afe4b4787dd89751.agent_succession_packet.json", + "sha256": "b5850069eb80bf67aa617382850cda72353bb0b586cdd52b7aad01230f71704e", + "size": 2777 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-c40f3356dba7bbac.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-c40f3356dba7bbac.agent_succession_packet.json", + "sha256": "fb78fa2158671fa9f7eed99ee85cb3aa93e680c698aa38f04bb0b94a75140cd8", + "size": 2776 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-cbc0b3efae7348a2.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-cbc0b3efae7348a2.agent_succession_packet.json", + "sha256": "b0197ebc72ab7c6cbae105c16e42f43524ba393f027d9132399cb0eb8d8fa4f8", + "size": 2776 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-cf77bf26adefb8b6.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-cf77bf26adefb8b6.agent_succession_packet.json", + "sha256": "4a0a922acbbfc9df1e9cadde5974b6ad1b4fd82d3ef0135c121cdf8f1809e165", + "size": 2627 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-ea492c604ff09db2.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-ea492c604ff09db2.agent_succession_packet.json", + "sha256": "9f64d34114d4a5d9528c04d9ccc28b82ed52bc52a087bf1711edc5cbfd1bb9ed", + "size": 2628 + }, + "ION/05_context/history/conversational_receipts/2cdb4920b2dc401d7cd84c79.conversational_receipt.json": { + "path": "ION/05_context/history/conversational_receipts/2cdb4920b2dc401d7cd84c79.conversational_receipt.json", + "sha256": "879715864babe755b1c87732f895a5f20d566361562f61335c143203ea352c71", + "size": 1905 + }, + "ION/05_context/history/conversational_receipts/7116638c9d43023d44c6efe4.conversational_receipt.json": { + "path": "ION/05_context/history/conversational_receipts/7116638c9d43023d44c6efe4.conversational_receipt.json", + "sha256": "bb0e091a7b53f9507620913404c1599674eb5ecce457ed7263c611d2fd0c5eb9", + "size": 1905 + }, + "ION/05_context/history/conversational_receipts/9163df7a9a5760d705dbeec1.conversational_receipt.json": { + "path": "ION/05_context/history/conversational_receipts/9163df7a9a5760d705dbeec1.conversational_receipt.json", + "sha256": "347c55e52dd359d25e5c7c4610dadce2fe79e3256b04870414bfc9fe6dc32ceb", + "size": 1905 + }, + "ION/05_context/history/front_door_proof_traces/fdproof-20938bb98d449d3782.front_door_proof_trace.json": { + "path": "ION/05_context/history/front_door_proof_traces/fdproof-20938bb98d449d3782.front_door_proof_trace.json", + "sha256": "132e6d6705a95f9374f988adefb1fcc65ec7726e269461c5c305513ab9a84e8b", + "size": 11317 + }, + "ION/05_context/history/front_door_proof_traces/fdproof-527a3f11276e5936a1.front_door_proof_trace.json": { + "path": "ION/05_context/history/front_door_proof_traces/fdproof-527a3f11276e5936a1.front_door_proof_trace.json", + "sha256": "a3149a49af608bb1f77a8b8cf26837dfb7e0765e770d84de91499b33dab5091f", + "size": 10744 + }, + "ION/05_context/history/front_door_proof_traces/fdproof-5682a7ece065be3977.front_door_proof_trace.json": { + "path": "ION/05_context/history/front_door_proof_traces/fdproof-5682a7ece065be3977.front_door_proof_trace.json", + "sha256": "a8de8dea1f13dedb39313f55e2fcb1eff6d0a78fb9095e791ad0952c66540fea", + "size": 11311 + }, + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.dispatch_packet.json": { + "path": "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.dispatch_packet.json", + "sha256": "728dd8782a108047d090120240611bdc3a4c6e61a52ebcbaff2f8894085a1ae9", + "size": 6700 + }, + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.dispatch_packet.json": { + "path": "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.dispatch_packet.json", + "sha256": "291c7d7ac84b659bbcec985119b5b14043bcb6cf831b9d6a3b22b59b3e4d9aa0", + "size": 6702 + }, + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.dispatch_packet.json": { + "path": "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.dispatch_packet.json", + "sha256": "2cb2084e71c9a1d6d5838849e3f13bfed216c2a14cd46fb7965edab878066311", + "size": 6702 + }, + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-fdsession-e3325d8e7fd2e91c61-user-sovereign-e30502b0d5c8.json": { + "path": "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-fdsession-e3325d8e7fd2e91c61-user-sovereign-e30502b0d5c8.json", + "sha256": "90a1637e285bbff3c43ccfb4c4b293f7488b7c5c810c93c90c7fa699a1fabb74", + "size": 547 + }, + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-9266b5943379.json": { + "path": "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-9266b5943379.json", + "sha256": "3fd5e25bac6dab92474e09ec3fbed776d39376d3b3e1b853bc6d8edbbd29b3dc", + "size": 545 + }, + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-fe357c69b2f6.json": { + "path": "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-fe357c69b2f6.json", + "sha256": "d159623a8f2bd8dde416d7caea980a37c080bf29032e18754c24b24ce25e521c", + "size": 545 + }, + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-fdsession-e3325d8e7fd2e91c61-stewa-a2aab6e5f3e3.json": { + "path": "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-fdsession-e3325d8e7fd2e91c61-stewa-a2aab6e5f3e3.json", + "sha256": "770accba4d72ddee34958c298840d05ab49a1e2314b719ff9d5cec932e20c943", + "size": 939 + }, + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-092bc3cb2479.json": { + "path": "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-092bc3cb2479.json", + "sha256": "2df26fd78075920fd2fc53c3609d6c645bf8965478d270417d479119b397d192", + "size": 939 + }, + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-3722235d458f.json": { + "path": "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-3722235d458f.json", + "sha256": "0374b3af64a890a6a9b665cd3335f7e6827ee086ad784e66f580607f76f9ea6c", + "size": 939 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-fdsession-e3325d8e7fd2e-79ca4f6cb160.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-fdsession-e3325d8e7fd2e-79ca4f6cb160.json", + "sha256": "a99092fdc8b9df1c8ca0563a5d5db508fbf3f5db48f34821415c294bd94d543a", + "size": 768 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-98778d054ede.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-98778d054ede.json", + "sha256": "c2b8373bc91e4c3778fa952bc41da84c25393be90178704d90ad64d707b8c48d", + "size": 768 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-b1e6e7d48025.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-b1e6e7d48025.json", + "sha256": "86ca5c56f491e1af9edeac26cecf635e4fdaf5bc0668cbbf9c102cdf3d74c6fc", + "size": 768 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7-328f39c7cc61.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7-328f39c7cc61.json", + "sha256": "8a358de074ddb583434f33e9238fa0e21a197bb8f3853236f731a851c9cc2fb8", + "size": 924 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-4ff78b994961.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-4ff78b994961.json", + "sha256": "6a2d19ec6a93880477309b617ce452c4191f13a3d283bbb6475fd201b650280f", + "size": 923 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-88300a5c737c.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-88300a5c737c.json", + "sha256": "a03ef900f3e356bf3ae4b6c0d223ff3508d9c1f93d41cf93f57895e98a19dad7", + "size": 923 + }, + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-fdsession-e3325d8e7fd2e91c61-steward-proof-99a27cc53338.json": { + "path": "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-fdsession-e3325d8e7fd2e91c61-steward-proof-99a27cc53338.json", + "sha256": "1b3354a6fe231dbf3c41e005a27cc5ff15f2abf200c820ab4bce33870ef4a4dd", + "size": 956 + }, + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-2fdd60e1bd98.json": { + "path": "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-2fdd60e1bd98.json", + "sha256": "25f81857c2697a9116393ab48c70162e5eeb634add57a6872045e0f86c086a64", + "size": 956 + }, + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-c7e2ebaf2583.json": { + "path": "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-c7e2ebaf2583.json", + "sha256": "b1b1330c608292daf4d2ae8d67bf9d566467960cf5ac698b2d4e707edfe3f737", + "size": 956 + }, + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-user-sov-ba415756fb8a.json": { + "path": "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-user-sov-ba415756fb8a.json", + "sha256": "70f08bda96d99d3983cdde24c8aa950884251185734212af3d6bee74015f2aca", + "size": 2921 + }, + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-a1af2bd9ee2c.json": { + "path": "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-a1af2bd9ee2c.json", + "sha256": "a3ed55d9025ece8aeae054c2b155d11a778b408a35b593508650bfa3f6f5128b", + "size": 2917 + }, + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-f1dc5baef7bc.json": { + "path": "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-f1dc5baef7bc.json", + "sha256": "9024bce112da5ed48a56b04810c653083bef6e85f344c448ad9a3b7a0596a0d8", + "size": 2917 + }, + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-d0f82d9dad63.json": { + "path": "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-d0f82d9dad63.json", + "sha256": "21ca52fa29f919d8b9e3196d23bff8810328e7afc6b2062d5c89a710d1f7c292", + "size": 669 + }, + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-129dac14513f.json": { + "path": "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-129dac14513f.json", + "sha256": "b2950f08cb083b7561c6201a68889dd75bbe432638505f091ca8a149c619e6b0", + "size": 669 + }, + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-8a98a48a44d3.json": { + "path": "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-8a98a48a44d3.json", + "sha256": "e98dd6e621e4c9d1f9672da47774db2e82af8fe624a9743a9e1859ea90686aba", + "size": 669 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-847548dfe713.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-847548dfe713.json", + "sha256": "cc3b4899851761b4188cf616339426d674b96ed0a3f9ab6dfdc48f3c7b5a8781", + "size": 378 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-a74825790fa0.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-a74825790fa0.json", + "sha256": "f711e7e21e4fbb4611f546acb30d30a0e56ed761de50d9ecae0898c08bc210c1", + "size": 377 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-01e3c1d927aa.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-01e3c1d927aa.json", + "sha256": "c2468ff6df2969f0451ff6befc4cdc59fb1ebc2efd5ba25653c264f832f03805", + "size": 755 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-4a7f5f80f40d.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-4a7f5f80f40d.json", + "sha256": "18c330190d6acc5752988637001aeeecab539eaf66273dd21d6037b357e296bb", + "size": 1943 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-d7d1526ee22c.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-d7d1526ee22c.json", + "sha256": "13ec0660bf4f757f3f50a102d91effb90cfb7f53de9f4ce8a31deac224668dd4", + "size": 1950 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "b40db258e14b9ca5ea6773d5618437bc59c5c28d2a37a085f5874942711e6b4f", + "size": 350 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/v106-front-door-proof-trace.json", + "sha256": "af20e1bc0e81467560ba4b7f16c76e6b06a8dfeb89c3e81a3f9668e998470d4b", + "size": 349 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "0c363d31d909607e50b997fca00449726ac4ea2eb2d64d7f5a34ab0747b1a043", + "size": 212 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/v106-front-door-proof-trace.json", + "sha256": "65d8e2f7eb218eb2f81102cfa90424d94f965eee7aa120ad471885936ef474d2", + "size": 211 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "c3b5f32bc9dd94817e29ed34495800585ff7366cff8072b4dfdbd32770ed2080", + "size": 381 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/v106-front-door-proof-trace.json", + "sha256": "2a85d87ab0991e5f9b4a175f13228220b59daeb31db668f7551e5029335e1f1d", + "size": 381 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "8a34d78c368ec690b180f2ca86838660f4fdb381b9a43ba338cb6e58f2265da8", + "size": 809 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/v106-front-door-proof-trace.json", + "sha256": "b87728539b9c2025b8f4eba6fc8690fec3d2fa6c5278af6b0dcd29e7205f68e5", + "size": 1498 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-3ca30902024f.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-3ca30902024f.json", + "sha256": "2c49513c0532f1e7c61b955471b0c9c062a4472929cf6fa5bd2ee4b7cb426e69", + "size": 636 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4306744c9ecc.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4306744c9ecc.json", + "sha256": "f14e6ebfbe2ff3b6d319c268bb9d2429368f92b0c294b73cacfc1e3217fdc4ae", + "size": 510 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4a7805181eea.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4a7805181eea.json", + "sha256": "6a301dee1da3f29777c8c8503084697a6f438bafeb28aa8224240f06d489f0ba", + "size": 542 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4b3e9da4b7e0.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4b3e9da4b7e0.json", + "sha256": "0722d918afaa109ee7fc7d518f2a342fa7723ccb2a4faa9fd67c2e4f9f54c29e", + "size": 635 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-54356c43b417.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-54356c43b417.json", + "sha256": "99ab28ddbf3f35fe96d56d62733706920753228f10abaeae5d828dcdadc4db41", + "size": 515 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-58419c8d9419.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-58419c8d9419.json", + "sha256": "822a4b296c2aa5def7cf0d74ace78a37231d61cd3920e66d7f42a6510b2bc71a", + "size": 540 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-73dca9f058c6.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-73dca9f058c6.json", + "sha256": "b6e91a062e09e797f91b90f3d3cc341a0b558142b1c60d296ecb9396b77d7244", + "size": 508 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-764c0ab3e724.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-764c0ab3e724.json", + "sha256": "69411e59c2b8cc20e17929c910c95be915809af1bf23c6c00e22ac0f538291c8", + "size": 516 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-92a7b76c067a.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-92a7b76c067a.json", + "sha256": "eca110545ab2f60fe1fea0bf5cabfe0fb9314ca38a943ed7a46577a8889b52fa", + "size": 635 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-a0594a05f017.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-a0594a05f017.json", + "sha256": "32093d582489e44c40a9873b255fe2f1c3266e080885b6657dc556ddb7e42c39", + "size": 893 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b1425da06b34.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b1425da06b34.json", + "sha256": "f79061d51352bc261adfa69e43dcf4bd42676ab46bc3cb428eca37a7d0f047ed", + "size": 508 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b4acfeb08f08.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b4acfeb08f08.json", + "sha256": "1fc2217177cf6128f79a93c13f989a28f63d81d26dd56965ea959135ae669709", + "size": 464 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-ca371b333632.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-ca371b333632.json", + "sha256": "cea960df3e02daf35541ccd2315c0bccbfcd0d29932c1f4d4913e5748d585b2f", + "size": 897 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e4aad22c1617.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e4aad22c1617.json", + "sha256": "a8abc9d670c56604965e4699e9696fba3619ec9c5a2651d35a8f6eea3f419e06", + "size": 466 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e988da043a82.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e988da043a82.json", + "sha256": "e454cc88eb357426aa5aae29fb338401fde1e1d3d45c4e465e43311db441a962", + "size": 540 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "e57c53b27d1cb6669529fdd29f868613db1a8dc8b6f40d337c2718c90ef22bee", + "size": 206 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/v106-front-door-proof-trace.json", + "sha256": "215d8466f581a1136b2d4c933335fe2fbd05802d480acc23aaf9b7175c99da26", + "size": 205 + }, + "ION/05_context/history/front_stage_council_receipts/fsc-27a1a8398ae020b89d.front_stage_council_receipt.json": { + "path": "ION/05_context/history/front_stage_council_receipts/fsc-27a1a8398ae020b89d.front_stage_council_receipt.json", + "sha256": "e66d96e020f9d411e01903747911ea0396c65832bacd767c807335706cb1e0ea", + "size": 1331 + }, + "ION/05_context/history/front_stage_council_receipts/fsc-553f46a0537d871778.front_stage_council_receipt.json": { + "path": "ION/05_context/history/front_stage_council_receipts/fsc-553f46a0537d871778.front_stage_council_receipt.json", + "sha256": "14cb371551ed2777eaae137e4c2bccea72e3ccbe4591cbd5440f28cd476765f6", + "size": 1331 + }, + "ION/05_context/history/front_stage_council_receipts/fsc-b3e8eb0f49710e6013.front_stage_council_receipt.json": { + "path": "ION/05_context/history/front_stage_council_receipts/fsc-b3e8eb0f49710e6013.front_stage_council_receipt.json", + "sha256": "9e37afa59455e25489cc01fd216123e58d85de62cd589aa551e0fb062e65059e", + "size": 1331 + }, + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-7f8c0860d4ee.json": { + "path": "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-7f8c0860d4ee.json", + "sha256": "09e342b486c5ae49239c0467b974777bcd9dc2e3c0babb415c83cbe0c575ac1e", + "size": 3260 + }, + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-aad5212e511b.json": { + "path": "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-aad5212e511b.json", + "sha256": "ef4f484a16d3bef1e68f079fd6ecdd59ec168f6a516eada40d48d002525f02e9", + "size": 3261 + }, + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-c218ca2f6615.json": { + "path": "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-c218ca2f6615.json", + "sha256": "1d52af5b8c4c77f39ff086560afad8f8b0c863968fe453525e088afeea9b4cc0", + "size": 3261 + }, + "ION/05_context/history/kernel_store/work_units/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.json": { + "path": "ION/05_context/history/kernel_store/work_units/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.json", + "sha256": "f1888a1aa16209dd89406a9bd8dfd0374cb501018c8f12053ac6fd38c773cd50", + "size": 2672 + }, + "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.json": { + "path": "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.json", + "sha256": "2286e6a4f284399caa3e8c7f8fa3df59b74e7ad0196c2b9098ef48638e2ed24b", + "size": 2673 + }, + "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.json": { + "path": "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.json", + "sha256": "b6ee96c2d7521f771ad1425116b7128bd46da7a31ebcc66730a35390fe448c40", + "size": 2673 + }, + "ION/05_context/inbox/README.md": { + "path": "ION/05_context/inbox/README.md", + "sha256": "f02c5846b8ad358947058f2f59909a0b87cda399fdaa3c29269a12e5dfc65fb6", + "size": 1627 + }, + "ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md": { + "path": "ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "sha256": "d485b04b6f2d2d844a2b108c96959312fca2c65f0d1cdfa61f9cf75f7c45cc11", + "size": 1223 + }, + "ION/05_context/inbox/bootstrap/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md": { + "path": "ION/05_context/inbox/bootstrap/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "sha256": "e449d187ccdbdc032be6d79f9dfae6cc18cfa9650e6162b213d3245563edef36", + "size": 2045 + }, + "ION/05_context/inbox/completed/codex_agent_reasoning_protocol_first_pass_2026-04-05.task.md": { + "path": "ION/05_context/inbox/completed/codex_agent_reasoning_protocol_first_pass_2026-04-05.task.md", + "sha256": "892abe019adfdad4f4e01eed28c1a452644b1f479c50503bce2f9235c782fc08", + "size": 996 + }, + "ION/05_context/inbox/completed/codex_context_compiler_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_context_compiler_first_pass_2026-04-03.task.md", + "sha256": "e64ed4acbde5706310d8972099339344f072e84ee6f889d0ddd264f66cde38e9", + "size": 2803 + }, + "ION/05_context/inbox/completed/codex_ion_kernel_constitution_self_use_alignment_2026-04-10.task.md": { + "path": "ION/05_context/inbox/completed/codex_ion_kernel_constitution_self_use_alignment_2026-04-10.task.md", + "sha256": "0054028d1ae4f52077e6b7b6e8c561c9277f3a7d29e34248553353b6527f8867", + "size": 3644 + }, + "ION/05_context/inbox/completed/codex_kernel_answer_record_and_planner_manifest_runtime_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_answer_record_and_planner_manifest_runtime_first_pass_2026-04-04.task.md", + "sha256": "684479baa5ddb007bd42ae813d0fa584bb78cf534272eebb79c5f141b9a77786", + "size": 4774 + }, + "ION/05_context/inbox/completed/codex_kernel_child_work_issuance_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_child_work_issuance_first_pass_2026-04-03.task.md", + "sha256": "98700be3fe5a4121b9740eb3342b2b7a820ab0c8dbfa690b294e6e455e7bd6d3", + "size": 3366 + }, + "ION/05_context/inbox/completed/codex_kernel_commit_applier_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_commit_applier_first_pass_2026-04-03.task.md", + "sha256": "d807dd83fe7c51b6d2261a4c1b741dda6e904d0accc6c0d476e43c37c1e7a906", + "size": 3271 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_act_once_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_act_once_first_pass_2026-04-03.task.md", + "sha256": "75eb4537785494995c0f88d7e5f60aec35a362cdf16d88ff052850247fdbfba2", + "size": 2960 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_arbiter_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_arbiter_first_pass_2026-04-03.task.md", + "sha256": "bc98875fe6d530414b54d64230ce25512da72df9aed54190021859de0b83629d", + "size": 3370 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_loop_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_loop_first_pass_2026-04-03.task.md", + "sha256": "fc98db36514e13a375c64002952b86748ebd6b023eea218cb3927da87f9ca333", + "size": 2884 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_signal_consumption_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_signal_consumption_first_pass_2026-04-03.task.md", + "sha256": "892ff88eff3629eae69d43aac082d30adf9b8d4362aac1fc62228b42c91321b2", + "size": 3124 + }, + "ION/05_context/inbox/completed/codex_kernel_dispatch_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_dispatch_first_pass_2026-04-03.task.md", + "sha256": "5dd8bbdc6039fa2e18d02a264bdbe49a6035625489a9d2d582117bea274d0681", + "size": 3311 + }, + "ION/05_context/inbox/completed/codex_kernel_execution_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_execution_first_pass_2026-04-03.task.md", + "sha256": "328a85f9433fae22159d3ea8a79f237ca6309c83ec34c935f7011287218bda29", + "size": 3230 + }, + "ION/05_context/inbox/completed/codex_kernel_graph_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_graph_first_pass_2026-04-03.task.md", + "sha256": "f21a67b22302c1cb7e135e86df164a8326d0d67e33d7ee4b1a6443c633a478dc", + "size": 2565 + }, + "ION/05_context/inbox/completed/codex_kernel_index_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_index_first_pass_2026-04-03.task.md", + "sha256": "5009061c52958d4b2e4b24643086859255e596f654b90b414b52ca894de7505e", + "size": 2719 + }, + "ION/05_context/inbox/completed/codex_kernel_loop_receipts_telemetry_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_loop_receipts_telemetry_first_pass_2026-04-04.task.md", + "sha256": "33197c7de92840095357fb39db5bb37c20041fff0578b632a9ae8ee5af9eb7e4", + "size": 3113 + }, + "ION/05_context/inbox/completed/codex_kernel_model_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_model_first_pass_2026-04-03.task.md", + "sha256": "aa66e8579e300c94ebde73931021e897d86d21f99d815937cc759b7dc716b036", + "size": 2482 + }, + "ION/05_context/inbox/completed/codex_kernel_open_question_routing_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_open_question_routing_first_pass_2026-04-03.task.md", + "sha256": "94b8b51f6518415acbd1cdd07ba1295322afe02e88522c96c4231d9ed0b8a6d2", + "size": 3440 + }, + "ION/05_context/inbox/completed/codex_kernel_question_answer_and_planner_gate_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_question_answer_and_planner_gate_first_pass_2026-04-04.task.md", + "sha256": "589b8f6f2a55c30d10e0ea4c54c80c53911e60410a3c2246e6e1b9f4b11a1f7d", + "size": 4099 + }, + "ION/05_context/inbox/completed/codex_kernel_queue_projection_and_planner_housekeeping_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_queue_projection_and_planner_housekeeping_first_pass_2026-04-04.task.md", + "sha256": "75e98e841aea6c0849ae740a0b842d9d84e1344af3cd94ec9024eed6a0d0c34b", + "size": 4764 + }, + "ION/05_context/inbox/completed/codex_kernel_queue_refresh_and_planner_sweep_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_queue_refresh_and_planner_sweep_first_pass_2026-04-04.task.md", + "sha256": "069663d070a38dff817b1a5ea4f4a5cac6453c37a3575c55ed99b1f873a94b1a", + "size": 4785 + }, + "ION/05_context/inbox/completed/codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass_2026-04-04.task.md", + "sha256": "a1198ee4acdcf2de990762f534571541e0c0747fd3cea96a2ace758255fc25f2", + "size": 4849 + }, + "ION/05_context/inbox/completed/codex_kernel_review_escalation_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_review_escalation_first_pass_2026-04-03.task.md", + "sha256": "5e260dc330007d8ecf093f8bda52f77482a743568da3958c57d497fba0436626", + "size": 3201 + }, + "ION/05_context/inbox/completed/codex_kernel_review_followup_resolution_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_review_followup_resolution_first_pass_2026-04-04.task.md", + "sha256": "06ceac3f9ae2444ff80dcfbda27f7fc2f8521a6edcc1bb3adf4658876a19f5d2", + "size": 4063 + }, + "ION/05_context/inbox/completed/codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass_2026-04-04.task.md", + "sha256": "74cd149eca88266010f8d581aca8dec75e2c2c2549e1f2ff4c0ecf7fc81628ab", + "size": 4685 + }, + "ION/05_context/inbox/completed/codex_kernel_scheduler_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_scheduler_first_pass_2026-04-03.task.md", + "sha256": "a8c31b6b6df6a2769708aca59c1091c17784ba8aa6d832201dbf6889e36ca707", + "size": 2968 + }, + "ION/05_context/inbox/completed/codex_kernel_signal_consumption_archive_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_signal_consumption_archive_first_pass_2026-04-03.task.md", + "sha256": "af4f0ec6fb7ab7b0129b4862de5bf946f90ec1a9f783514d4afab3c3cc71de73", + "size": 3071 + }, + "ION/05_context/inbox/completed/codex_kernel_signal_followup_automation_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_signal_followup_automation_first_pass_2026-04-03.task.md", + "sha256": "fc2ad4a2818fed7a4097dd55411db103623fd85761e59ca2dab4beaf5f3f6d60", + "size": 3297 + }, + "ION/05_context/inbox/completed/codex_kernel_signal_interpretation_expiry_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_signal_interpretation_expiry_first_pass_2026-04-03.task.md", + "sha256": "104e24108560fbfb73f215250c7de49cec969ac7913631d8c73662f386aea964", + "size": 3023 + }, + "ION/05_context/inbox/completed/codex_kernel_store_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_store_first_pass_2026-04-03.task.md", + "sha256": "e71ce34776e7ad015ac7729d4c56aa0093d17dae8717a109c904b7c7ca641cf9", + "size": 2516 + }, + "ION/05_context/inbox/completed/codex_kernel_validation_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_validation_first_pass_2026-04-03.task.md", + "sha256": "2560e415b95bfd6344e69c057e9d76cf3b87080495af815f0c73b1217e371926", + "size": 3208 + }, + "ION/05_context/inbox/completed/codex_kernel_validation_receipt_signal_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_validation_receipt_signal_first_pass_2026-04-03.task.md", + "sha256": "dd81136fa03c4dba9f8709e040e89a275c9e7fd56396805e1c2c1cff9cfe7161", + "size": 3323 + }, + "ION/05_context/inbox/completed/codex_live_kernel_status_pilot_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_live_kernel_status_pilot_2026-04-03.task.md", + "sha256": "f4b91c6e5a98a32775e0d714cdc9e2cbab672d91985aab06d5c72b8c00f90149", + "size": 2539 + }, + "ION/05_context/inbox/completed/codex_official_lead_and_support_topology_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_official_lead_and_support_topology_2026-04-03.task.md", + "sha256": "16955abc4f9a01e06c3596b4031a64815aaacfd69067c72a4803abadc9679975", + "size": 3554 + }, + "ION/05_context/inbox/completed/codex_orchestration_blueprint_and_lead_prep_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_orchestration_blueprint_and_lead_prep_2026-04-03.task.md", + "sha256": "78d5ad33b6b4a1ec8e7e7c18a146f646afd0f1a0447ba58955ecc1f6b5df5a9d", + "size": 2944 + }, + "ION/05_context/inbox/completed/codex_recursive_witness_drift_rollback_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_recursive_witness_drift_rollback_2026-04-04.task.md", + "sha256": "e3e93a675d4c7a4f7646723916986dc8c6dcaf1a0900ca4f5e728352f8c266fe", + "size": 634 + }, + "ION/05_context/inbox/completed/codex_sequential_runtime_portability_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_sequential_runtime_portability_first_pass_2026-04-03.task.md", + "sha256": "5e197928d0c74b566995f3d0bff8f6d292269ffe9010a3029c77d2294849ca73", + "size": 3083 + }, + "ION/05_context/inbox/completed/codex_sovereign_operating_state_delta_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_sovereign_operating_state_delta_2026-04-03.task.md", + "sha256": "00b4333dbe4621de92b1c3c936e1a87ef53a841df09aaa1f6e6be4445687bcf2", + "size": 2699 + }, + "ION/05_context/inbox/completed/codex_template_architecture_shared_vs_agent_specific_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_template_architecture_shared_vs_agent_specific_2026-04-03.task.md", + "sha256": "e5cb7a89f65a2232d9dc9966c1fbb44f1eb0f3a0c2ee713020cd5e117d3be945", + "size": 2700 + }, + "ION/05_context/inbox/completed/codex_template_bindings_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_template_bindings_first_pass_2026-04-03.task.md", + "sha256": "b9ed155ad2a3f4f406422e920060a3f0df471c087f07ce826219a7a0f9d7e012", + "size": 3176 + }, + "ION/05_context/inbox/completed/mason_kernel_scaffold.task.md": { + "path": "ION/05_context/inbox/completed/mason_kernel_scaffold.task.md", + "sha256": "7855170a2ed52ff5df81dc5e9c094c651cd8c81cd80eaebdaeb7ec9aab1147f5", + "size": 1150 + }, + "ION/05_context/inbox/completed/thoth_current_phase_staffing_and_semantic_identity_2026-04-12.task.md": { + "path": "ION/05_context/inbox/completed/thoth_current_phase_staffing_and_semantic_identity_2026-04-12.task.md", + "sha256": "2463f22d15bb34600b15e163b79a42b0082a598577e541303cc05662903cfda3", + "size": 3124 + }, + "ION/05_context/inbox/completed/vizier_phase0b_proof_loop_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/vizier_phase0b_proof_loop_2026-04-03.task.md", + "sha256": "f535f2171852aadae9782da74af9b5bf16ecd1fa8bcc112fcf86f3eb5170e418", + "size": 4502 + }, + "ION/05_context/inbox/completed/vizier_plan_continuity_patch_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/vizier_plan_continuity_patch_2026-04-03.task.md", + "sha256": "a22931b06fa6744d7d750d6a1d8d50ebb41e298463a4e02cfced2a70638c7d8e", + "size": 3293 + }, + "ION/05_context/inbox/completed/vizier_supervisor_continuity_patch_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/vizier_supervisor_continuity_patch_2026-04-03.task.md", + "sha256": "cdd09f60e7cb0ebbe8c89e714a9e244a059c45798af4dcfdaf9ffbf3155c8a7f", + "size": 3024 + }, + "ION/05_context/inbox/context_graph/context_graph_substrate_ratification_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/context_graph_substrate_ratification_20260424.task.md", + "sha256": "80e69b1df10e4f30abd3fe0566f7137d053c1eff07bd7bed06f01501ef160867", + "size": 1183 + }, + "ION/05_context/inbox/context_graph/event_reaction_pipeline_ratification_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/event_reaction_pipeline_ratification_20260424.task.md", + "sha256": "c01f2278cd65125f94b22672dc7c68c505ad7ac7ed7c2dc1337eb3f609b890c8", + "size": 1514 + }, + "ION/05_context/inbox/context_graph/evented_template_file_graph_ratification_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/evented_template_file_graph_ratification_20260424.task.md", + "sha256": "d85cc6ea4a70b40cf673d18a158390af4909508945b5b29c7c6bedebd46e1207", + "size": 1340 + }, + "ION/05_context/inbox/context_graph/template_completion_event_phase1_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_completion_event_phase1_review_20260424.task.md", + "sha256": "b8b3d8ac3708247f8103d063b0759733acd2fb7dc05b56cfb18604942f343308", + "size": 1290 + }, + "ION/05_context/inbox/context_graph/template_graph_commit_phase6_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_graph_commit_phase6_20260424.task.md", + "sha256": "3dd6b0fae43d7909cdd05f26812f847b27f0df58938c8459a33ce366845702f5", + "size": 571 + }, + "ION/05_context/inbox/context_graph/template_graph_writeback_proposal_phase4_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_graph_writeback_proposal_phase4_review_20260424.task.md", + "sha256": "e1b22f2d015ccdf9c8054997a44ac46aa253b2f15cf9c137d80dbd2e410dee1d", + "size": 997 + }, + "ION/05_context/inbox/context_graph/template_graph_writeback_review_phase5_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_graph_writeback_review_phase5_20260424.task.md", + "sha256": "ca12d9e82c1c97baa25da6befbfdcce07c27908ae5cead13af45157e8cd982d8", + "size": 1073 + }, + "ION/05_context/inbox/context_graph/template_index_projection_phase3_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_index_projection_phase3_review_20260424.task.md", + "sha256": "5bfbb748c4235e00546cfcc91f8bc9abff9c09b70f4231cf656638ba6d4c5260", + "size": 840 + }, + "ION/05_context/inbox/context_graph/template_reaction_selection_phase2_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_reaction_selection_phase2_review_20260424.task.md", + "sha256": "7f741ee745cba70a5d2070dbc1ee4ed8e7f1f92e88f631ef18c0f5dc629e9bf4", + "size": 968 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-3329e48b89507651.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-3329e48b89507651.task.md", + "sha256": "7d259a1990985376b9f4ff5f2a6b7c7a480f11e2b089add951e3be9625f7483e", + "size": 772 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-5864ba79a36a9c3b.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-5864ba79a36a9c3b.task.md", + "sha256": "c89a61e8ed43fd8cc2446def2f8eb48e470fda604f8a496a943a62d6e90124fd", + "size": 775 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-5c69698288020b46.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-5c69698288020b46.task.md", + "sha256": "57f89844084f5f15e0cb2412275264162f51ad1e4b0f315e3e9272eea97f6e4a", + "size": 783 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-74c83a707e199872.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-74c83a707e199872.task.md", + "sha256": "d719b7b79550d7fc2a05aced2806081cfdea1c6c9619d57005717d38a4b59557", + "size": 781 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-77b1b20da0a6e1b7.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-77b1b20da0a6e1b7.task.md", + "sha256": "965161fbf87d07a89c99b771c0622b549d1c522b1792efe4e44020f487edd95a", + "size": 768 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-83fa2d2e94e4df73.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-83fa2d2e94e4df73.task.md", + "sha256": "bb5101f3c6bb474b7e9fd67853fe33bd2632bdfff1c35b1760d950a707c95c73", + "size": 803 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-988bbfba396b4e95.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-988bbfba396b4e95.task.md", + "sha256": "fbcdb4e0ba4d585d97207928e6d1ead7fff92fbd3ba3decbc730f96777391aaf", + "size": 811 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-9d2d70899db17de4.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-9d2d70899db17de4.task.md", + "sha256": "493dc8fcd6d1973905adf39ed750aa5a3000a94d98af5e42c26030fdf260076b", + "size": 787 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-ba6fa817b54b2add.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-ba6fa817b54b2add.task.md", + "sha256": "8d7a9f4ba69795c7f2c39d4f07382d50ed2d43117c6dfdabf25aa74fe7f7c1bc", + "size": 776 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-e9ac90a32590953e.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-e9ac90a32590953e.task.md", + "sha256": "cf49d4db96e27821dfa0e2e09d4ab66676279c41c23c57d947ee2d0a21876958", + "size": 829 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-fc719a7b48548cb8.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-fc719a7b48548cb8.task.md", + "sha256": "640a1c7811fd934c1bb4012738ed4722469c8ab6fc9112b677d3605e57937f91", + "size": 775 + }, + "ION/05_context/inbox/steward/model_economics/V55_API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V55_API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.task.md", + "sha256": "5e7c7b4ef447c0c7004f7dda4cf37cee3f4669f769f459006aae05711321dfc3", + "size": 534 + }, + "ION/05_context/inbox/steward/model_economics/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS.task.md", + "sha256": "24c4bb12f8a0e7df6edcea6f262d04b5a9bc695d21f70b2c86c072a4ff697d3f", + "size": 427 + }, + "ION/05_context/inbox/steward/model_economics/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING.task.md", + "sha256": "7da3dbff7c46206f0e8e472bfc9b591a2595ea9e3786c86ae619e76c75df2be7", + "size": 508 + }, + "ION/05_context/inbox/steward/model_economics/V58_BUDGET_AND_API_RATE_GOVERNORS.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V58_BUDGET_AND_API_RATE_GOVERNORS.task.md", + "sha256": "c3e954220a1372a0d1597e94a35fe02f1aa6b19ac16340a05a878127116db98b", + "size": 621 + }, + "ION/05_context/inbox/system_evolution/context_graph_ontology_adapter_creation_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/context_graph_ontology_adapter_creation_20260424.task.md", + "sha256": "68e95877489204c62245bdece6cc3289ce5fac8bb823f4220324019e094264bd", + "size": 1151 + }, + "ION/05_context/inbox/system_evolution/contract_bound_event_integration_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/contract_bound_event_integration_20260424.task.md", + "sha256": "604a5738616720331cc8ec92bf101041667ca28e5064904a989754a189f9ed64", + "size": 939 + }, + "ION/05_context/inbox/system_evolution/contract_bound_event_runtime_hardening_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/contract_bound_event_runtime_hardening_20260424.task.md", + "sha256": "20f4ac287a56eda9f464c3a7f5fe280c5788e49471f522932da652b6ec17890e", + "size": 935 + }, + "ION/05_context/inbox/system_evolution/demo_spine_consolidation_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/demo_spine_consolidation_20260425.task.md", + "sha256": "a937f0f78edbc198df96a5c2b109d5d1f18681332b11a2cb53e03a08dbadac6f", + "size": 571 + }, + "ION/05_context/inbox/system_evolution/doctrine_evolution_governance_creation_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/doctrine_evolution_governance_creation_20260424.task.md", + "sha256": "178dd0bfc599e5c7f9b33391084403f55e40bd348b59feca2b0968d9912e2375", + "size": 1441 + }, + "ION/05_context/inbox/system_evolution/production_readiness_charter_and_ratification_matrix_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/production_readiness_charter_and_ratification_matrix_20260425.task.md", + "sha256": "a3a1660784d6e1149fd36463d06da160e041c110771b091c46b45a302e0b1013", + "size": 361 + }, + "ION/05_context/inbox/system_evolution/release_readiness_gate_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/release_readiness_gate_20260424.task.md", + "sha256": "2f4b5397fb86d7181719d4d74b5832c2f1b03efe74d0e79ff50ac1f61b4cb352", + "size": 857 + }, + "ION/05_context/inbox/system_evolution/self_documenting_approved_context_system_creation_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/self_documenting_approved_context_system_creation_20260424.task.md", + "sha256": "a993b9bd3c052ac74a5468146377577204e758b10b2e844f29b753a9e5149bb3", + "size": 1725 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_bounded_commit_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_bounded_commit_demo_runtime_20260425.task.md", + "sha256": "103cf8e3f9642e547cfbecec00ca82d1f4db83ec62aafa2fabb7aca58151ef98", + "size": 949 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_certification_gate_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_certification_gate_20260425.task.md", + "sha256": "c4155be9cf27eee245b65c313e20d8bf4b4f178f18fa26f1f82d172cd2b52e45", + "size": 1049 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_evidence_bundle_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_evidence_bundle_20260425.task.md", + "sha256": "8cf67b6e7c62559d66831b1e88eb40dc96071e27024acfbd7870a3f3c64336e0", + "size": 320 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_capsule_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_capsule_20260425.task.md", + "sha256": "938d41cb1d2ebc0680ff5170f7099a2785493226533a44f195e317d680e6ce85", + "size": 1083 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_verifier_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_verifier_20260425.task.md", + "sha256": "cc9d4855e3d90d9cfad490b0d86810e35d6f7629c33a20176697ca388dfa9796", + "size": 1104 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_cli_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_cli_20260425.task.md", + "sha256": "9cfc44d48117bb43ddcd0eb5342f59248bce35225103df25a0218295eaefc1ea", + "size": 1007 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_doctor_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_doctor_20260425.task.md", + "sha256": "91500d4c4ec84d773f401b60c7763aed68705c15887e8fa3c4da887df6099d17", + "size": 1045 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_runtime_20260425.task.md", + "sha256": "7a061b8e7641f280dc4cc9c7dfa17464c2d12f168d4c43cacb5a822834722ace", + "size": 994 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_graph_proposal_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_graph_proposal_demo_runtime_20260425.task.md", + "sha256": "7330824474aee490a6a539f38eb3c95c7c249232c8319ab02752e34c4d7eb777", + "size": 933 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_projection_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_projection_demo_runtime_20260425.task.md", + "sha256": "d5ef06443ec194e9656a4f4c63a2e354d13edcb2f66c8fa057423f067fb3e3f9", + "size": 908 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_review_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_review_demo_runtime_20260425.task.md", + "sha256": "b2bbe7eb3c3b8ae9515de58fa8a229446f4fc3147aae26dbbb0e0cd3b051aa7d", + "size": 913 + }, + "ION/05_context/inbox/system_evolution/template_contract_projection_alignment_audit_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_contract_projection_alignment_audit_20260424.task.md", + "sha256": "da5a956930879ab7c96c1be318fec3e3ed9a29c3512e433d0776df7e42140f82", + "size": 1003 + }, + "ION/05_context/inbox/system_evolution/template_contract_registry_projection_default_loading_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_contract_registry_projection_default_loading_20260424.task.md", + "sha256": "fe463060193603ff4ad6b2813f06d9d30fa1cfbecafe05c0b6142cf36be34f99", + "size": 1238 + }, + "ION/05_context/inbox/system_evolution/template_contract_release_gate_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_contract_release_gate_20260424.task.md", + "sha256": "b9afc39c564ef5d517f5f1ee7e499a211173ebdf9f13cbf29cc0cd55d822d776", + "size": 939 + }, + "ION/05_context/inbox/system_evolution/template_metadata_contract_hardening_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_metadata_contract_hardening_20260424.task.md", + "sha256": "207845dfadac910136c1b9944579229b06ae6d4e4d0da1f5c733fef975a7fc46", + "size": 1034 + }, + "ION/05_context/inbox/takeover/bootstrap_first_lawful_daemon_pressure__manual_takeover.role_session.md": { + "path": "ION/05_context/inbox/takeover/bootstrap_first_lawful_daemon_pressure__manual_takeover.role_session.md", + "sha256": "b3f11e5c7a6c5b2ac1f2b46f9e47cb21d41e2c4a1716d8472156df5bd66cf162", + "size": 1931 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-042cea3b48cdee49.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-042cea3b48cdee49.runtime_identity_envelope.json", + "sha256": "71d14a970911f6cabde81c203243da40eecf2d46eed8dcf5bb496be038fd7a61", + "size": 5145 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-17d52e26cf721b2f.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-17d52e26cf721b2f.runtime_identity_envelope.json", + "sha256": "714b2f003f4f6f37751476ec1800d113269d4849804d21e7707e170dac0832c5", + "size": 5162 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-38213e02965ea244.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-38213e02965ea244.runtime_identity_envelope.json", + "sha256": "bff7c02c29977d9dde5326440677d46f34591c8b168335782c836293f658a7f9", + "size": 5294 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-3dcd59b4a848c69a.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-3dcd59b4a848c69a.runtime_identity_envelope.json", + "sha256": "c817507f90865880afbfa5808ea790051bd2eff17d8285ce73d44fc857985886", + "size": 5146 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-4ca6b186e914f9cd.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-4ca6b186e914f9cd.runtime_identity_envelope.json", + "sha256": "18a4f9501fc0e5f16c1a1d000d0959d7f895a189e151d438534bf48d922c20ca", + "size": 5295 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-5769ee9766aa6012.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-5769ee9766aa6012.runtime_identity_envelope.json", + "sha256": "cd3f99e71cec78512d7345996f35d095a76b5629f7f4d1023917a0bbbefa5373", + "size": 5163 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-606ebc1690b39a6f.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-606ebc1690b39a6f.runtime_identity_envelope.json", + "sha256": "bf492f459475ffc1f90916aa56af561eeca9a9726a0f39856018a05c99767dc1", + "size": 5146 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-8a4239d71058d7c5.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-8a4239d71058d7c5.runtime_identity_envelope.json", + "sha256": "34a102330aba99910aee8ded2c71a798fa3476511be9b29a3cd277cf09780f92", + "size": 5162 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-c340ad2ab4545c1d.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-c340ad2ab4545c1d.runtime_identity_envelope.json", + "sha256": "b494ee764f56de28f5684682dc38b6499cbc7a89f20f60337ffe50cee8881f2c", + "size": 5146 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-e76d1553278436c7.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-e76d1553278436c7.runtime_identity_envelope.json", + "sha256": "8d8bfd2b7172eba37c9883fb04606f4144c641af07d832720124fc5753fa9df6", + "size": 5294 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-fc95610581b4f742.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-fc95610581b4f742.runtime_identity_envelope.json", + "sha256": "632fa2d61217a68a2d9c41d150fe6bb94433182a567441d6929ccf3bf9e99298", + "size": 5145 + }, + "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.json": { + "path": "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.json", + "sha256": "681047a02bc09b1682ea081049e8d6649852a21d3ce3f137c04a46028e399e4c", + "size": 2632 + }, + "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.md": { + "path": "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.md", + "sha256": "9fb0f8c595410915c29553cd11edaf35acdebf559df5424d2e7cef035f52ff44", + "size": 717 + }, + "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.json": { + "path": "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.json", + "sha256": "681047a02bc09b1682ea081049e8d6649852a21d3ce3f137c04a46028e399e4c", + "size": 2632 + }, + "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.md": { + "path": "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.md", + "sha256": "634ecfa165f52a04bbd4b4b7c8b2ffe3b4ba9c0ce77ca780352ddfec81c4d79d", + "size": 1870 + }, + "ION/05_context/signals/ATLAS_AIMOS_MCP_COUNT_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AIMOS_MCP_COUNT_20260403.signal.md", + "sha256": "04a893c07bd1ebdbb9470e2052aa94f4d841482945fe633e77595d65ec3f91ad", + "size": 851 + }, + "ION/05_context/signals/ATLAS_AIMOS_PACKAGE_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AIMOS_PACKAGE_20260403.signal.md", + "sha256": "15e58c189b67d235edacfbaaa2bd92995d0cef05f1e931100789a141ef53a94c", + "size": 1047 + }, + "ION/05_context/signals/ATLAS_AI_OS_EXPANSION_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AI_OS_EXPANSION_20260403.signal.md", + "sha256": "d3ca30334e380bff1391045e283a0cb987a4ade8032aa4e46e8f122c72b6c7a7", + "size": 1504 + }, + "ION/05_context/signals/ATLAS_ALGOL_PASCAL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ALGOL_PASCAL_20260403.signal.md", + "sha256": "b886bfce1856f97ba638fcea1855049079a1bbdce5a6c1bfbb84d2f023d25b77", + "size": 867 + }, + "ION/05_context/signals/ATLAS_ALPINE_LINUX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ALPINE_LINUX_20260403.signal.md", + "sha256": "e4ab6e7b9bdf1894afe29744b1a1a14fdf305ee63c677f23849a25e6a314fafe", + "size": 1182 + }, + "ION/05_context/signals/ATLAS_AMD_ROCM_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AMD_ROCM_20260403.signal.md", + "sha256": "7a2b7d528bc16becb1086a0a473fca54f4362b5c36a473d6e2224bc926105713", + "size": 883 + }, + "ION/05_context/signals/ATLAS_CDN_EDGE_20260410.signal.md": { + "path": "ION/05_context/signals/ATLAS_CDN_EDGE_20260410.signal.md", + "sha256": "e934ea31b0bcdb3e7e1c6e60bba0e68d705133f271dd91f56bb992f575088d02", + "size": 1037 + }, + "ION/05_context/signals/ATLAS_CDN_RISCV_20260411.signal.md": { + "path": "ION/05_context/signals/ATLAS_CDN_RISCV_20260411.signal.md", + "sha256": "8280ba2e2d6a29d7c3f8581c8d0dd714a673ff67d8931dd78d92c8ebe69a289a", + "size": 968 + }, + "ION/05_context/signals/ATLAS_CLANG_AND_K8S_SYSTEMD_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_CLANG_AND_K8S_SYSTEMD_20260412.signal.md", + "sha256": "fd8b6869d243184f7127ae0e013be4f089018bcff6d533601e02dc9135f2f084", + "size": 1134 + }, + "ION/05_context/signals/ATLAS_CLOUD_EDGE_20260409.signal.md": { + "path": "ION/05_context/signals/ATLAS_CLOUD_EDGE_20260409.signal.md", + "sha256": "cbdb1d486384b27d187a233826c5ffae77574133d1843e5dcd123487b14a7937", + "size": 1062 + }, + "ION/05_context/signals/ATLAS_CONTEXT_PLANES_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_CONTEXT_PLANES_20260412.signal.md", + "sha256": "759a466040c4ef3ce42ae7239e314f9c7bca6ed43ceb68d9a12922fb68158cea", + "size": 1728 + }, + "ION/05_context/signals/ATLAS_CRUN_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_CRUN_20260403.signal.md", + "sha256": "5789facb9176291b2302092f941801ca666cb943004ec266471186c94311ffba", + "size": 1122 + }, + "ION/05_context/signals/ATLAS_DATA_PLANE_20260404.signal.md": { + "path": "ION/05_context/signals/ATLAS_DATA_PLANE_20260404.signal.md", + "sha256": "be65c91952ac9415aaae17af91e38cc8d89a1fa467c135f5fa58d4c186613c39", + "size": 1006 + }, + "ION/05_context/signals/ATLAS_DEBIAN_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_DEBIAN_20260403.signal.md", + "sha256": "4ed9308671574c1d9a8b129cc6f3aa022ddb3cfdf7b4e3779b1f8700500bf915", + "size": 1419 + }, + "ION/05_context/signals/ATLAS_DEBUG_ADAPTER_PROTOCOL_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_DEBUG_ADAPTER_PROTOCOL_20260412.signal.md", + "sha256": "0f2058a7878ded7ef124595b44ca9885f63243bde80d24fbb98ad4d1bdb70595", + "size": 1232 + }, + "ION/05_context/signals/ATLAS_DIRECT3D_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_DIRECT3D_20260403.signal.md", + "sha256": "dd8416c28fffbae63aeb43ea9dda1cfe6d8e204b5bfc89e1c5eeb1d9b0019c80", + "size": 1084 + }, + "ION/05_context/signals/ATLAS_ELF_OBJECT_FORMAT_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_ELF_OBJECT_FORMAT_20260412.signal.md", + "sha256": "3862b727c8975af1a57b31bb7e9fe3ca5f66adf88208f7403905a05f07d2b5e0", + "size": 943 + }, + "ION/05_context/signals/ATLAS_FEDORA_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_FEDORA_20260403.signal.md", + "sha256": "993f1fcfb6444b966908020c391101f88289ba6c78c1f601867a964af5316830", + "size": 1367 + }, + "ION/05_context/signals/ATLAS_FORTRAN_C_COBOL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_FORTRAN_C_COBOL_20260403.signal.md", + "sha256": "23db62f2139c9b9a4f4ae461e418f75f86b66c85007862ce5884385ee1d730a6", + "size": 700 + }, + "ION/05_context/signals/ATLAS_GLIBC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_GLIBC_20260403.signal.md", + "sha256": "cc51a03353f68912e8d36eb3a40b31f3d9f6a6da5e78e765189093f243b37ff5", + "size": 1075 + }, + "ION/05_context/signals/ATLAS_GNU_BINUTILS_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_BINUTILS_20260412.signal.md", + "sha256": "6f608fe610f6cda5cbe13ce24dad359c5fcbd5beb58508fa19926d09eedec74c", + "size": 966 + }, + "ION/05_context/signals/ATLAS_GNU_GCC_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_GCC_20260412.signal.md", + "sha256": "d6d0af8f84d556f6d24ffa37e2bfe31e2bc5617ef05406ba2c6d49d3693fe39e", + "size": 854 + }, + "ION/05_context/signals/ATLAS_GNU_GDB_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_GDB_20260412.signal.md", + "sha256": "3b4a5d1da587d876b3e409910b4f24e60d8ff8672d17b29ca5ec4cf4d6a6a04f", + "size": 939 + }, + "ION/05_context/signals/ATLAS_GNU_LIBSTDCXX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_LIBSTDCXX_20260403.signal.md", + "sha256": "507d923ee7b85ee8de38a4930ea7048e73fdc2ab7614b64ab5d6edb999437e26", + "size": 1168 + }, + "ION/05_context/signals/ATLAS_INGRESS_BLS_20260406.signal.md": { + "path": "ION/05_context/signals/ATLAS_INGRESS_BLS_20260406.signal.md", + "sha256": "de210668e610db000eb77191fea9192b52a6c43a70d7a3ade736c7c80a28432d", + "size": 922 + }, + "ION/05_context/signals/ATLAS_INGRESS_TEE_20260407.signal.md": { + "path": "ION/05_context/signals/ATLAS_INGRESS_TEE_20260407.signal.md", + "sha256": "69b0800ef79fe04bb64133aa5acbaec0394d2177177841ce251d197b6cd8753c", + "size": 1118 + }, + "ION/05_context/signals/ATLAS_ISO_CATALOG_PRIMARIES_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ISO_CATALOG_PRIMARIES_20260403.signal.md", + "sha256": "dd3590a0c9a42d559bf987a32af15423f7802bed6c2f40cfcd6d1bb60755c374", + "size": 830 + }, + "ION/05_context/signals/ATLAS_JVM_ECMA335_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_JVM_ECMA335_20260403.signal.md", + "sha256": "8fa477226f0e2f022ca978a21f7ed846c0417c3ce69d460c21c7d41b19e9227c", + "size": 887 + }, + "ION/05_context/signals/ATLAS_LANGUAGES_PLAN9_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LANGUAGES_PLAN9_20260403.signal.md", + "sha256": "ce57f292d26b4df13d0e121671222346d30235adac286688eb6037b88ec48880", + "size": 923 + }, + "ION/05_context/signals/ATLAS_LEVEL_ZERO_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LEVEL_ZERO_20260403.signal.md", + "sha256": "e24e6209b5456f00bbcb9f72717791af614cc819312d6170188a7c09b2676dbd", + "size": 1085 + }, + "ION/05_context/signals/ATLAS_LLDB_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLDB_20260412.signal.md", + "sha256": "83a0a0e0cf548a1ff6830c20cacc61fe685ef22ed6dafc402e6cbfaa60417984", + "size": 1003 + }, + "ION/05_context/signals/ATLAS_LLVM_DWARF_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_DWARF_20260403.signal.md", + "sha256": "0ddea204730d95e64ee8b53bf00bf67786d14d5be565f66a858ea602eaeb18e5", + "size": 817 + }, + "ION/05_context/signals/ATLAS_LLVM_LIBCXXABI_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_LIBCXXABI_20260403.signal.md", + "sha256": "cbf8ba4bcddd4294c74238e7d7168db75b4dffa1cbc80800118600b79719348d", + "size": 1226 + }, + "ION/05_context/signals/ATLAS_LLVM_LIBCXX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_LIBCXX_20260403.signal.md", + "sha256": "69b0a7ded6ceb6dd6272bc8f9a07c6c8e2d1ce8fbca0de2339bd24dba174d728", + "size": 1243 + }, + "ION/05_context/signals/ATLAS_LLVM_LLD_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_LLD_20260412.signal.md", + "sha256": "11ec72477cc24c88cdb17291013e7d386239ad760b6d6ad2cd97b4431e0e4506", + "size": 1107 + }, + "ION/05_context/signals/ATLAS_MESH_BOOT_UKI_20260405.signal.md": { + "path": "ION/05_context/signals/ATLAS_MESH_BOOT_UKI_20260405.signal.md", + "sha256": "71ad6249ee0952f4bb5c4cfb5182c822ec3b7fc431fb4d128a612bc6bf777b21", + "size": 1086 + }, + "ION/05_context/signals/ATLAS_METAL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_METAL_20260403.signal.md", + "sha256": "edec09416990a4a953837df225a6bfbf6a54c057cf03bc2178b8d5afed406fc0", + "size": 981 + }, + "ION/05_context/signals/ATLAS_MUSL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_MUSL_20260403.signal.md", + "sha256": "da161306f54baad84972e365037ba7beae59d37847be052829417b4ef8c06478", + "size": 1168 + }, + "ION/05_context/signals/ATLAS_NGINX_ARM_SYSTEMD_20260408.signal.md": { + "path": "ION/05_context/signals/ATLAS_NGINX_ARM_SYSTEMD_20260408.signal.md", + "sha256": "84c7eed13e4d28b4cf8801a906265d5b9c3f321d948ebcd5bbf9f7a923679f2d", + "size": 1121 + }, + "ION/05_context/signals/ATLAS_NVIDIA_CUDA_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_NVIDIA_CUDA_20260403.signal.md", + "sha256": "c98eb0baed99956d407e1a2f4000fb6ee5213c1316588742bc4516383d044694", + "size": 1109 + }, + "ION/05_context/signals/ATLAS_OCI_DISTRIBUTION_SPEC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OCI_DISTRIBUTION_SPEC_20260403.signal.md", + "sha256": "18511c149faa1c030312cf1337dc02a7731dd449f74a34998f4db73bd5e3a7dd", + "size": 1229 + }, + "ION/05_context/signals/ATLAS_OCI_IMAGE_SPEC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OCI_IMAGE_SPEC_20260403.signal.md", + "sha256": "2c5309a3c6ae42aa149252564473ca58915e1c86be8091c13b363537b30ceb95", + "size": 1249 + }, + "ION/05_context/signals/ATLAS_OCI_RUNTIME_SPEC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OCI_RUNTIME_SPEC_20260403.signal.md", + "sha256": "cb9cc99b6b41665b1837778c680bd22a1d770b48bbabc7d33ca693091644c4a7", + "size": 1397 + }, + "ION/05_context/signals/ATLAS_OPENCL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OPENCL_20260403.signal.md", + "sha256": "c8d2034f729c6ecde6972872dcefe08e512051bcaffd05c899150ed014d8767a", + "size": 838 + }, + "ION/05_context/signals/ATLAS_OPENGL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OPENGL_20260403.signal.md", + "sha256": "a084cea24e7218c1272a0f6872481e1fa550fa11c2ca2415d8f914b043b45dea", + "size": 982 + }, + "ION/05_context/signals/ATLAS_OPENGL_ES_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OPENGL_ES_20260403.signal.md", + "sha256": "28288ccc496755fb9ece86b6054b3da50dbf8531005971dab949f87daeeb6925", + "size": 1032 + }, + "ION/05_context/signals/ATLAS_ORIENTATION_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ORIENTATION_20260403.signal.md", + "sha256": "c311bc8e6a09cbc7ac7728b1e72a95ee2bca54eb0317cffdfc83d34dd8240679", + "size": 1077 + }, + "ION/05_context/signals/ATLAS_RHEL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_RHEL_20260403.signal.md", + "sha256": "428931cbd263a6d2a5fb7a3885d0485da39d9912cb00dd61cee4d245141c3b3f", + "size": 1460 + }, + "ION/05_context/signals/ATLAS_ROCKY_ALMALINUX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ROCKY_ALMALINUX_20260403.signal.md", + "sha256": "453200c6af8909ba6cef118a64abcbf0884c4ba3c771e9334bb7073f2203386d", + "size": 1496 + }, + "ION/05_context/signals/ATLAS_RUST_ADA_GOLANG_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_RUST_ADA_GOLANG_20260403.signal.md", + "sha256": "775dbf9f3b73582032d16bbff15938e216da19e3a2a772507e9cae64f6c2232c", + "size": 1031 + }, + "ION/05_context/signals/ATLAS_SPIRV_PTX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SPIRV_PTX_20260403.signal.md", + "sha256": "f004b033cdea3299e24df03f9dbb98794e937afad52bb179cabd7431d01d1741", + "size": 788 + }, + "ION/05_context/signals/ATLAS_SYCL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYCL_20260403.signal.md", + "sha256": "ffbad177816becb01263c40a5657c9fe31beeaff12903921d7b79cd31dd0a679", + "size": 1022 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_CONFEXT_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_CONFEXT_20260403.signal.md", + "sha256": "8467012d02b7cc8fea0a8c5ca3024c354c91d52994adb770e36686addaea1469", + "size": 1310 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_PORTABLE_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_PORTABLE_20260412.signal.md", + "sha256": "f83bf47b3c2ac7853f57cfc05918b643c176ae611b2359f9230e3afc13c2b2e4", + "size": 1060 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_SYSEXT_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_SYSEXT_20260403.signal.md", + "sha256": "b471dfa9f448dd4a680dc460ab9799576fafcd6f5d4ae92fb2065cbe6f9656fc", + "size": 1244 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_UNIT_MODEL_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_UNIT_MODEL_20260412.signal.md", + "sha256": "738d159d7ba2a0f3ab1a32086162f8e4a9a7024c5b8a883e931b732ca380e87b", + "size": 1040 + }, + "ION/05_context/signals/ATLAS_UBUNTU_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_UBUNTU_20260403.signal.md", + "sha256": "f078060f13c9730b1c15a7ff93320dbd3d3961f55c08c5d2c914a2fedd20d43e", + "size": 1539 + }, + "ION/05_context/signals/ATLAS_VULKAN_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_VULKAN_20260403.signal.md", + "sha256": "1962cc8b2f4d39a0ef5fdded901b8bae8473fd12b3c0da08ab6764aee9c800e0", + "size": 899 + }, + "ION/05_context/signals/ATLAS_WASI_COMPONENT_MODEL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WASI_COMPONENT_MODEL_20260403.signal.md", + "sha256": "6f77fd143178358e1f51586fee6b786a1e5921a0f176ebd6b09db96e75d99e79", + "size": 1026 + }, + "ION/05_context/signals/ATLAS_WEBASSEMBLY_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WEBASSEMBLY_20260403.signal.md", + "sha256": "f17c1e40391305cad598f49ce9d985e3b6912735830b5f71603841cc2ad4c2ee", + "size": 680 + }, + "ION/05_context/signals/ATLAS_WEBGL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WEBGL_20260403.signal.md", + "sha256": "d5a7ade293f2786e2cfcebc8a3dc20cf816de6d5f170a361bb162e7631917fbe", + "size": 989 + }, + "ION/05_context/signals/ATLAS_WEBGPU_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WEBGPU_20260403.signal.md", + "sha256": "f2be45267dbcdc9bb5a0465dec2451ec9e5babc897298f2e6b754c483efad891", + "size": 1002 + }, + "ION/05_context/signals/CARRIER_LEVEL_DECISION.example.json": { + "path": "ION/05_context/signals/CARRIER_LEVEL_DECISION.example.json", + "sha256": "9e7a300f3237d679640379141d0b3eadc4d049ebb8dee9886d6839c856a69d4f", + "size": 543 + }, + "ION/05_context/signals/CODEX_AGENT_REASONING_PROTOCOL_FIRST_PASS_20260405T1015.signal.md": { + "path": "ION/05_context/signals/CODEX_AGENT_REASONING_PROTOCOL_FIRST_PASS_20260405T1015.signal.md", + "sha256": "43460cb0ad6ef7d2bbb54228be7a4c136eb625e73144c3205e1b37b41c35fbb8", + "size": 689 + }, + "ION/05_context/signals/CODEX_BOOT_LANE_FORMALIZED_20260403T1329.signal.md": { + "path": "ION/05_context/signals/CODEX_BOOT_LANE_FORMALIZED_20260403T1329.signal.md", + "sha256": "d96a9168cb0b1969f25470040bb2c08b5d8844c9d7816f3e452169f676a028db", + "size": 900 + }, + "ION/05_context/signals/CODEX_BRANCH_PARALLEL_SCENARIO_PROOF_20260411T203127.signal.md": { + "path": "ION/05_context/signals/CODEX_BRANCH_PARALLEL_SCENARIO_PROOF_20260411T203127.signal.md", + "sha256": "95636fba9a1309bcca312cdf998eaa0984d53ebf532c56c62052892429e94015", + "size": 1007 + }, + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_AGENT_ONBOARDING_20260412T125519.signal.md": { + "path": "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_AGENT_ONBOARDING_20260412T125519.signal.md", + "sha256": "50647d9aab87f44935ad53c96c34dafba7d6fd2c804b80835d0bf5b8dd4bf717", + "size": 1113 + }, + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_CLARIFICATION_20260412T142448.signal.md": { + "path": "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_CLARIFICATION_20260412T142448.signal.md", + "sha256": "340fd76d43dcbcdf92ab4fb2c838f83c86024bdcca00c4cefa2ab7b5eee9d12a", + "size": 943 + }, + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_PROPOSAL_20260412T131830.signal.md": { + "path": "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_PROPOSAL_20260412T131830.signal.md", + "sha256": "80f4c432ae99afda983f687220724cfb2dee25b1251397eaf9353dea1458c354", + "size": 933 + }, + "ION/05_context/signals/CODEX_CAPSULE_PROTOCOL_WEB_MAP_20260403T1225.signal.md": { + "path": "ION/05_context/signals/CODEX_CAPSULE_PROTOCOL_WEB_MAP_20260403T1225.signal.md", + "sha256": "bf25fd0995df949ff2d92ed46768744dffc568572ac61295937a3ae8956bbdc5", + "size": 1153 + }, + "ION/05_context/signals/CODEX_CONTEXT_COMPILER_FIRST_PASS_20260403T1855.signal.md": { + "path": "ION/05_context/signals/CODEX_CONTEXT_COMPILER_FIRST_PASS_20260403T1855.signal.md", + "sha256": "b0cba30adc37607c239513044aea5aac0daad1db6422c65b97472eee62251a4b", + "size": 629 + }, + "ION/05_context/signals/CODEX_CONTINUITY_LAW_AND_PROOF_LOOP_20260403T1228.signal.md": { + "path": "ION/05_context/signals/CODEX_CONTINUITY_LAW_AND_PROOF_LOOP_20260403T1228.signal.md", + "sha256": "5a7653772e68d5eae9aef15f71ae2a02b84aa7048a0a33e2670d5e483f4bb77d", + "size": 1207 + }, + "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFICATION_ASSESSMENT_20260412T151315.signal.md": { + "path": "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFICATION_ASSESSMENT_20260412T151315.signal.md", + "sha256": "08e567991506a973bc6ef95d4a3f94dedf34a56c48a5038daaaf9c6c3c2fcdf3", + "size": 906 + }, + "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFIED_20260412T152659.signal.md": { + "path": "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFIED_20260412T152659.signal.md", + "sha256": "dedf6cb7cbd688cfca9952d4c43678ef80e9eba4235facab5eabf105c82600ea", + "size": 934 + }, + "ION/05_context/signals/CODEX_DOCTRINE_FLOOR_20260403T1626.signal.md": { + "path": "ION/05_context/signals/CODEX_DOCTRINE_FLOOR_20260403T1626.signal.md", + "sha256": "ba003b27b353aedd116ff18dd634f1a687d79336b70c461a7cfc07c36d5f1f66", + "size": 689 + }, + "ION/05_context/signals/CODEX_EDGE_ROLE_BOOTS_NORMALIZED_20260403T1633.signal.md": { + "path": "ION/05_context/signals/CODEX_EDGE_ROLE_BOOTS_NORMALIZED_20260403T1633.signal.md", + "sha256": "fe990c3a629fe99ffb7dc764b6ee45361d510cc85cd660aa411c3cbfcfebe6bc", + "size": 681 + }, + "ION/05_context/signals/CODEX_EXTERNAL_API_PARITY_SCENARIO_PROOF_20260411T205820.signal.md": { + "path": "ION/05_context/signals/CODEX_EXTERNAL_API_PARITY_SCENARIO_PROOF_20260411T205820.signal.md", + "sha256": "73fcecadc1151c6188223f7f2a0079cd957d87d76783d563b536c63e092f9cd0", + "size": 1067 + }, + "ION/05_context/signals/CODEX_EXTERNAL_CANONICALIZATION_MEMO_RESPONSE_20260403T2029.signal.md": { + "path": "ION/05_context/signals/CODEX_EXTERNAL_CANONICALIZATION_MEMO_RESPONSE_20260403T2029.signal.md", + "sha256": "80ce56596c07487bcbd238ef9a7c3c303cc4d8221d4702546a556bb93c177c04", + "size": 1028 + }, + "ION/05_context/signals/CODEX_EXTERNAL_GROUNDING_20260403T1214.signal.md": { + "path": "ION/05_context/signals/CODEX_EXTERNAL_GROUNDING_20260403T1214.signal.md", + "sha256": "76e6b6154051bf177cafc8cca7976716d1130b6e4e72adb4d7c21b6ea0f37b22", + "size": 1175 + }, + "ION/05_context/signals/CODEX_GOVERNANCE_PACKET_PILOT_20260403T1754.signal.md": { + "path": "ION/05_context/signals/CODEX_GOVERNANCE_PACKET_PILOT_20260403T1754.signal.md", + "sha256": "5518f5e69483943676e1f9e229cbfcbd80168179774841fbf8761161730c8333", + "size": 619 + }, + "ION/05_context/signals/CODEX_HORIZON_REFINEMENT_SCENARIO_PROOF_20260411T204349.signal.md": { + "path": "ION/05_context/signals/CODEX_HORIZON_REFINEMENT_SCENARIO_PROOF_20260411T204349.signal.md", + "sha256": "16e4c0b0626ed1742b45a8c5e6124c1297fa593a671a87ad9102f4ce026074c9", + "size": 1079 + }, + "ION/05_context/signals/CODEX_INBOX_NORMALIZED_20260403T1750.signal.md": { + "path": "ION/05_context/signals/CODEX_INBOX_NORMALIZED_20260403T1750.signal.md", + "sha256": "0ecddfd943a5ea04575b997dba515d9bbc36735a2c7bffa81ece8973fcbe998f", + "size": 605 + }, + "ION/05_context/signals/CODEX_ION_ACCEPTANCE_EVIDENCE_BUNDLE_20260412T150950.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_ACCEPTANCE_EVIDENCE_BUNDLE_20260412T150950.signal.md", + "sha256": "6c4450357039ec6a2530c64ad6e8887630bb46995d5779497853dee3fe139d14", + "size": 1268 + }, + "ION/05_context/signals/CODEX_ION_ACTIVE_COMMITMENT_LEDGER_20260411T200339.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_ACTIVE_COMMITMENT_LEDGER_20260411T200339.signal.md", + "sha256": "b0fea3a87cc0db594b36ff21f449c5df1b05854131e522f41427b2407f2bf59a", + "size": 1173 + }, + "ION/05_context/signals/CODEX_ION_CENTERING_RESPONSE_20260403T1253.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_CENTERING_RESPONSE_20260403T1253.signal.md", + "sha256": "62e2952d4bc58923981bf84bbc2c605aa77d8aa2ca5861dc3061799444ad1cb2", + "size": 1242 + }, + "ION/05_context/signals/CODEX_ION_DESTINATION_HORIZON_STRATIFICATION_20260411T103346.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_DESTINATION_HORIZON_STRATIFICATION_20260411T103346.signal.md", + "sha256": "5f7e1ad1c1c33c5f122042522fbaca9e8c49cb5bb222cd618e8c915a6acd5f3c", + "size": 1112 + }, + "ION/05_context/signals/CODEX_ION_KERNEL_CONSTITUTION_SELF_USE_ALIGNMENT_20260410T1545.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_KERNEL_CONSTITUTION_SELF_USE_ALIGNMENT_20260410T1545.signal.md", + "sha256": "944589a3093dc089b4479f4a8d5a384cd792fd8577046f22145c447be943db92", + "size": 798 + }, + "ION/05_context/signals/CODEX_ION_LAYERED_IDENTITY_STRATIFICATION_20260411T102929.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_LAYERED_IDENTITY_STRATIFICATION_20260411T102929.signal.md", + "sha256": "2179166a779e079d205168aee18feb14038125c296437b7927629bbfe79e9481", + "size": 1143 + }, + "ION/05_context/signals/CODEX_ION_ORIGIN_PHASE_ROOT_STRATIFICATION_20260411T103145.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_ORIGIN_PHASE_ROOT_STRATIFICATION_20260411T103145.signal.md", + "sha256": "83d91463431f8bef6be4410b39d7749ccdbd5929ce8032506c8b1998f3cadb56", + "size": 1095 + }, + "ION/05_context/signals/CODEX_ION_RECOVERY_INDEX_20260411T103541.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_RECOVERY_INDEX_20260411T103541.signal.md", + "sha256": "6f7b718863435be369ab17dfe5b4a1adc6c3ea362d4c96a07d19ed87d2f7912a", + "size": 1135 + }, + "ION/05_context/signals/CODEX_KERNEL_ANSWER_RECORD_AND_PLANNER_MANIFEST_RUNTIME_FIRST_PASS_20260404T1235.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_ANSWER_RECORD_AND_PLANNER_MANIFEST_RUNTIME_FIRST_PASS_20260404T1235.signal.md", + "sha256": "3e71076a122c94d13d04135bb54003f572fb43a989ae0f63a3ab00ed0a71eae6", + "size": 1272 + }, + "ION/05_context/signals/CODEX_KERNEL_CHILD_WORK_ISSUANCE_FIRST_PASS_20260403T2139.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_CHILD_WORK_ISSUANCE_FIRST_PASS_20260403T2139.signal.md", + "sha256": "3952f5dde7d9d34c436f29328e53f58cae4c5e8ec3cf9e49b27414c1cab3508c", + "size": 946 + }, + "ION/05_context/signals/CODEX_KERNEL_COMMIT_FIRST_PASS_20260403T2103.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_COMMIT_FIRST_PASS_20260403T2103.signal.md", + "sha256": "73fcf887ef785c3ca30f542a8d100e0c2267bd2555996327628bd94c2f18b3e0", + "size": 878 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_ACT_ONCE_FIRST_PASS_20260403T2155.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_ACT_ONCE_FIRST_PASS_20260403T2155.signal.md", + "sha256": "74b0809ec3f1f22d194843019f3878b273645db5797c1dd889008e9e80064a52", + "size": 962 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_ARBITER_FIRST_PASS_20260403T2149.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_ARBITER_FIRST_PASS_20260403T2149.signal.md", + "sha256": "9704e0c342d06b7b8100d9fcf164ee48b9d358033c111d608e242c527f67bbcb", + "size": 934 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_LOOP_FIRST_PASS_20260403T2221.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_LOOP_FIRST_PASS_20260403T2221.signal.md", + "sha256": "aaac602886049d43d515c695bf5f579fcb933a3856f4a79d75dfc1c56116c4b5", + "size": 838 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_SIGNAL_CONSUMPTION_FIRST_PASS_20260403T2214.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_SIGNAL_CONSUMPTION_FIRST_PASS_20260403T2214.signal.md", + "sha256": "be07826cb139e65fe63d86459750ab15ba18d126031812824058172c61334516", + "size": 974 + }, + "ION/05_context/signals/CODEX_KERNEL_DISPATCH_FIRST_PASS_20260403T2011.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DISPATCH_FIRST_PASS_20260403T2011.signal.md", + "sha256": "c9b4c0fab9e8220ed209380ca6ec32e4ac69a363808a34fd63361ec8d6765977", + "size": 836 + }, + "ION/05_context/signals/CODEX_KERNEL_EXECUTION_FIRST_PASS_20260403T2043.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_EXECUTION_FIRST_PASS_20260403T2043.signal.md", + "sha256": "388dbb8b482af3cbb8a5b3ad798bc84c087899f867397543850c5564d837487f", + "size": 871 + }, + "ION/05_context/signals/CODEX_KERNEL_GRAPH_FIRST_PASS_20260403T1840.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_GRAPH_FIRST_PASS_20260403T1840.signal.md", + "sha256": "90ae2a6e1f16d7f33a3d6a7951e58440947d86315251441727f2629ca7c46047", + "size": 594 + }, + "ION/05_context/signals/CODEX_KERNEL_INDEX_FIRST_PASS_20260403T1827.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_INDEX_FIRST_PASS_20260403T1827.signal.md", + "sha256": "b78dedeee1c3534993536aa89e87241b6b9491c7c4668d6b80ec155283c6d7e0", + "size": 594 + }, + "ION/05_context/signals/CODEX_KERNEL_LOOP_RECEIPTS_TELEMETRY_FIRST_PASS_20260404T0920.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_LOOP_RECEIPTS_TELEMETRY_FIRST_PASS_20260404T0920.signal.md", + "sha256": "2120643aba6683106a89411f29c617398a141da3d5a7c2a3f8ccd86a6ede4e72", + "size": 872 + }, + "ION/05_context/signals/CODEX_KERNEL_MODEL_FIRST_PASS_20260403T1759.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_MODEL_FIRST_PASS_20260403T1759.signal.md", + "sha256": "3438931f5852205711db119441858a3a260793301ba4d17ba9a19c472eb5bbb5", + "size": 619 + }, + "ION/05_context/signals/CODEX_KERNEL_OPEN_QUESTION_ROUTING_FIRST_PASS_20260403T2113.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_OPEN_QUESTION_ROUTING_FIRST_PASS_20260403T2113.signal.md", + "sha256": "2a4b370b1d39eefba2c2c7edf43729c90bd592f81c0537dda634ab7cdc484cfe", + "size": 920 + }, + "ION/05_context/signals/CODEX_KERNEL_QUESTION_ANSWER_AND_PLANNER_GATE_FIRST_PASS_20260404T1155.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUESTION_ANSWER_AND_PLANNER_GATE_FIRST_PASS_20260404T1155.signal.md", + "sha256": "a4d210c64d56d78e017bb5ea10dd5a2b5229411a886c8f4a361986cb9420edc6", + "size": 1242 + }, + "ION/05_context/signals/CODEX_KERNEL_QUEUE_PROJECTION_AND_PLANNER_HOUSEKEEPING_FIRST_PASS_20260404T1445.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUEUE_PROJECTION_AND_PLANNER_HOUSEKEEPING_FIRST_PASS_20260404T1445.signal.md", + "sha256": "fee2646e289c576d362ff212711693106148dcccd2b9cd8b407ba4c46db441e9", + "size": 1453 + }, + "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_AND_PLANNER_SWEEP_FIRST_PASS_20260404T1605.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_AND_PLANNER_SWEEP_FIRST_PASS_20260404T1605.signal.md", + "sha256": "52513a100d2d0374e618dac6697b4a285a33f8d62985e17c9d1f3096391b7997", + "size": 1387 + }, + "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_RECEIPTS_AND_SWEEP_AGGREGATION_FIRST_PASS_20260404T1725.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_RECEIPTS_AND_SWEEP_AGGREGATION_FIRST_PASS_20260404T1725.signal.md", + "sha256": "8612c3e780b24ec276b614ec58d25c6d2739ef83175708ff14173d39e4781673", + "size": 623 + }, + "ION/05_context/signals/CODEX_KERNEL_REVIEWER_QUEUE_AND_PLANNER_LIFECYCLE_FIRST_PASS_20260404T1335.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_REVIEWER_QUEUE_AND_PLANNER_LIFECYCLE_FIRST_PASS_20260404T1335.signal.md", + "sha256": "17b5cdf4d5a0c0216107e27f0b621bc4a47c85e6d8798d44e3a0fbdc70d81445", + "size": 1333 + }, + "ION/05_context/signals/CODEX_KERNEL_REVIEW_ESCALATION_FIRST_PASS_20260403T2251.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_REVIEW_ESCALATION_FIRST_PASS_20260403T2251.signal.md", + "sha256": "4a5f9a32cb46b843e06cebce85eeab16626cf71c632177982c6eaf92b863c750", + "size": 848 + }, + "ION/05_context/signals/CODEX_KERNEL_REVIEW_FOLLOWUP_RESOLUTION_FIRST_PASS_20260404T1015.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_REVIEW_FOLLOWUP_RESOLUTION_FIRST_PASS_20260404T1015.signal.md", + "sha256": "3341b758b5133fef4840786369ab11b57f441cac2c949387926ab59d7a8ebb77", + "size": 1186 + }, + "ION/05_context/signals/CODEX_KERNEL_ROUTER_TRANSITION_20260403T1548.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_ROUTER_TRANSITION_20260403T1548.signal.md", + "sha256": "d3fc98bfd17f087d6ab41b9e513f2d151e41b2872fdf8382febfec5bfdf06819", + "size": 908 + }, + "ION/05_context/signals/CODEX_KERNEL_SCHEDULER_FIRST_PASS_20260403T1948.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SCHEDULER_FIRST_PASS_20260403T1948.signal.md", + "sha256": "25c1b849f7e90daed6a94abc79c8cddfdcb4892a36f5d5fd260a3445630db1f3", + "size": 805 + }, + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_CONSUMPTION_ARCHIVE_FIRST_PASS_20260403T2127.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SIGNAL_CONSUMPTION_ARCHIVE_FIRST_PASS_20260403T2127.signal.md", + "sha256": "42e786e3c66ea61385f4ba878058abd4602d7758fe292419043af08ae1e6a9b7", + "size": 896 + }, + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_FOLLOWUP_AUTOMATION_FIRST_PASS_20260403T2320.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SIGNAL_FOLLOWUP_AUTOMATION_FIRST_PASS_20260403T2320.signal.md", + "sha256": "c438401ec232bfbff15e338288ba0aca7c196896350ba8ff7c6cc652cb6156e7", + "size": 938 + }, + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_INTERPRETATION_EXPIRY_FIRST_PASS_20260403T2206.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SIGNAL_INTERPRETATION_EXPIRY_FIRST_PASS_20260403T2206.signal.md", + "sha256": "4c84c0438744293189bdd34e73413dfed353eca7eb7022c8dad4c2f786dbd9b4", + "size": 970 + }, + "ION/05_context/signals/CODEX_KERNEL_STORE_FIRST_PASS_20260403T1814.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_STORE_FIRST_PASS_20260403T1814.signal.md", + "sha256": "7b9aba0262facc3a86b6284b1c0a58096c0bf02da14637eb3a6ff4ecaa5c0994", + "size": 586 + }, + "ION/05_context/signals/CODEX_KERNEL_VALIDATION_FIRST_PASS_20260403T2052.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_VALIDATION_FIRST_PASS_20260403T2052.signal.md", + "sha256": "1a408b055f0b9e02d68cd506b5e98a21312cb273c67f2aa7ae45049f77a201c0", + "size": 880 + }, + "ION/05_context/signals/CODEX_KERNEL_VALIDATION_RECEIPT_SIGNAL_FIRST_PASS_20260403T2120.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_VALIDATION_RECEIPT_SIGNAL_FIRST_PASS_20260403T2120.signal.md", + "sha256": "c2ca0ed34b48d6a3ebb01f52b06caf50cf82dc38e617abbc12bd3c1287878e6d", + "size": 921 + }, + "ION/05_context/signals/CODEX_LANE_NATIVE_SUPPORT_FIELD_STAGING_20260412T165740.signal.md": { + "path": "ION/05_context/signals/CODEX_LANE_NATIVE_SUPPORT_FIELD_STAGING_20260412T165740.signal.md", + "sha256": "a5f0f30af0ce44b50811fd0c03da4270d3f9081a7fe19e3aa5ecb2180d1284be", + "size": 1068 + }, + "ION/05_context/signals/CODEX_LIVE_KERNEL_STATUS_PILOT_20260403T1745.signal.md": { + "path": "ION/05_context/signals/CODEX_LIVE_KERNEL_STATUS_PILOT_20260403T1745.signal.md", + "sha256": "c80f594a5322dc414a28b67f3a47cc88319dde798487d9f08e8d9daa2b2f3aad", + "size": 660 + }, + "ION/05_context/signals/CODEX_M16_ENTRY_CHAIN_RECOVERY_20260411T095033.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_ENTRY_CHAIN_RECOVERY_20260411T095033.signal.md", + "sha256": "5bbf8e12b4a59dd3d8d929be1c79c84b6a0d20d7000c5d98501921b197d1fa7d", + "size": 1016 + }, + "ION/05_context/signals/CODEX_M16_EXECUTION_PRIORITY_CARD_20260411T200529.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_EXECUTION_PRIORITY_CARD_20260411T200529.signal.md", + "sha256": "f85cd4963fb3dcab584f08d811a4efff88a7ca48963ab610afd3675bb1b6a992", + "size": 1073 + }, + "ION/05_context/signals/CODEX_M16_SECOND_PASS_IDENTITY_ROUTE_20260411T102558.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_SECOND_PASS_IDENTITY_ROUTE_20260411T102558.signal.md", + "sha256": "afe866958fb05771cf0c78464fb93500162cdfbceebda3301214960023410f1e", + "size": 1300 + }, + "ION/05_context/signals/CODEX_M16_STARTUP_PACKET_20260411T102003.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_STARTUP_PACKET_20260411T102003.signal.md", + "sha256": "ced35bcde314c3205824bcc236261c98a5ca340669ca52819559a548abd9a91d", + "size": 1164 + }, + "ION/05_context/signals/CODEX_M17_EXECUTOR_START_PACKET_LANDED_20260411T202006.signal.md": { + "path": "ION/05_context/signals/CODEX_M17_EXECUTOR_START_PACKET_LANDED_20260411T202006.signal.md", + "sha256": "e07752432b5ad52edeec479f927774a250a4c76efb2b56287b4d891e95fe2fb1", + "size": 1161 + }, + "ION/05_context/signals/CODEX_M17_PROOF_HARDENING_20260411T202533.signal.md": { + "path": "ION/05_context/signals/CODEX_M17_PROOF_HARDENING_20260411T202533.signal.md", + "sha256": "5cde987cff666c83d0e6c8be05ba0983fb6437147483e19556748328407e0d87", + "size": 946 + }, + "ION/05_context/signals/CODEX_MASON_PACKAGING_HARDENING_ONBOARDING_20260412T151504.signal.md": { + "path": "ION/05_context/signals/CODEX_MASON_PACKAGING_HARDENING_ONBOARDING_20260412T151504.signal.md", + "sha256": "c714f10952d45cd998851166c35684850643959001de555cd2c12d933a79c8af", + "size": 942 + }, + "ION/05_context/signals/CODEX_MINIMAL_TEMPLATE_STACK_20260403T1551.signal.md": { + "path": "ION/05_context/signals/CODEX_MINIMAL_TEMPLATE_STACK_20260403T1551.signal.md", + "sha256": "d28510e9775eac09d539345071575964105542b8ada4c6519e922471d9496a0f", + "size": 886 + }, + "ION/05_context/signals/CODEX_MISSING_ASSESSMENTS_COMPLETED_20260403T1543.signal.md": { + "path": "ION/05_context/signals/CODEX_MISSING_ASSESSMENTS_COMPLETED_20260403T1543.signal.md", + "sha256": "892af8d1fde0a3da42e87580d1ed83a7e990bd473ffaa138ffc2c416332b09d5", + "size": 958 + }, + "ION/05_context/signals/CODEX_OFFICIAL_LEAD_TOPOLOGY_20260403T1857.signal.md": { + "path": "ION/05_context/signals/CODEX_OFFICIAL_LEAD_TOPOLOGY_20260403T1857.signal.md", + "sha256": "29de83abc3b70ee32dadc4c77cd8939d98149e1ab603c11a2515f26d036e09e8", + "size": 1123 + }, + "ION/05_context/signals/CODEX_OPERATOR_SURFACES_RECONCILED_20260403T1633.signal.md": { + "path": "ION/05_context/signals/CODEX_OPERATOR_SURFACES_RECONCILED_20260403T1633.signal.md", + "sha256": "71b62fe6e95451a900f5a381d5474ec312b1e14940f67324c72487acc1cf6330", + "size": 660 + }, + "ION/05_context/signals/CODEX_ORCHESTRATION_BLUEPRINT_PACKAGE_20260403T1925.signal.md": { + "path": "ION/05_context/signals/CODEX_ORCHESTRATION_BLUEPRINT_PACKAGE_20260403T1925.signal.md", + "sha256": "4664c3040e1152f3f3f1e804b0eb3a3b605b18b0bc2516f8bb054ce962a03e11", + "size": 811 + }, + "ION/05_context/signals/CODEX_PHASE1_BRIDGE_TRIPLES_LANDED_20260412T112636.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_BRIDGE_TRIPLES_LANDED_20260412T112636.signal.md", + "sha256": "b134d02901d60f439d660b56f3c872d07482e64876e4949cf69ee63167f3291e", + "size": 1189 + }, + "ION/05_context/signals/CODEX_PHASE1_BROWSER_EXTERNAL_RETURN_DRILL_20260412T114946.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_BROWSER_EXTERNAL_RETURN_DRILL_20260412T114946.signal.md", + "sha256": "aa08190af40904e2994cdc53de90716f0c8b9834956a00889dc6971b39204bb1", + "size": 1044 + }, + "ION/05_context/signals/CODEX_PHASE1_DISAGREEMENT_DRILL_20260412T114401.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_DISAGREEMENT_DRILL_20260412T114401.signal.md", + "sha256": "5219c1748a7400c2d753a5417ee753d81eec1074a91a9729a76d3a923cf38db2", + "size": 1151 + }, + "ION/05_context/signals/CODEX_PHASE1_MOUNT_PROOF_20260412T112636.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_MOUNT_PROOF_20260412T112636.signal.md", + "sha256": "cde3be919c0774a43dfa530b7574a31b7326c71b8045df7cc26646b383b27238", + "size": 1156 + }, + "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_CLOSEOUT_20260412T115522.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_CLOSEOUT_20260412T115522.signal.md", + "sha256": "6b542d588aaddbe5b14b2c74fba24dcbb18a9c296ef101b68d35ba8d2591be31", + "size": 987 + }, + "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_PLAN_20260412T110212.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_PLAN_20260412T110212.signal.md", + "sha256": "7010d25d7f6931eecbd576605686f87d4f00f890b64dce05dc51ad9104929bb7", + "size": 1050 + }, + "ION/05_context/signals/CODEX_PHASE_FRAME_TEAM_CHECKIN_20260403T1138.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE_FRAME_TEAM_CHECKIN_20260403T1138.signal.md", + "sha256": "e7d1080dad7c41830f834a32f75277065cdabea2bd64a724bd8c28b9eb231493", + "size": 611 + }, + "ION/05_context/signals/CODEX_PLAN_PATCH_PACKAGE_20260403T1343.signal.md": { + "path": "ION/05_context/signals/CODEX_PLAN_PATCH_PACKAGE_20260403T1343.signal.md", + "sha256": "a1968bc77f3f13a3716b386d3e9289c7c48be5cd7c35a598a691fc9a5a96a261", + "size": 722 + }, + "ION/05_context/signals/CODEX_PLAN_SURFACE_DRIFT_20260403T1333.signal.md": { + "path": "ION/05_context/signals/CODEX_PLAN_SURFACE_DRIFT_20260403T1333.signal.md", + "sha256": "e1949f402e67854eed368b08ac7328019541b0037874d08170ad27f191ba9062", + "size": 780 + }, + "ION/05_context/signals/CODEX_PROTOCOL_MISMATCH_WARNING_20260411T094542.signal.md": { + "path": "ION/05_context/signals/CODEX_PROTOCOL_MISMATCH_WARNING_20260411T094542.signal.md", + "sha256": "7e86bfb3bd27207fa96360b217ff4438bafec4b5e202fd809169ee7ce56c55a2", + "size": 998 + }, + "ION/05_context/signals/CODEX_PROTOCOL_TRANSITION_NOTES_20260403T1553.signal.md": { + "path": "ION/05_context/signals/CODEX_PROTOCOL_TRANSITION_NOTES_20260403T1553.signal.md", + "sha256": "11187b8290ad994c90cee0675d9444595e6fce8482d49998eff2e7372e5d4d66", + "size": 678 + }, + "ION/05_context/signals/CODEX_RATIFICATION_ASSESSMENT_20260403T1513.signal.md": { + "path": "ION/05_context/signals/CODEX_RATIFICATION_ASSESSMENT_20260403T1513.signal.md", + "sha256": "f9e537cc73a71eeed5dba65c0f95c8d999289bedea71ce78fcbff6d7d0c22e59", + "size": 568 + }, + "ION/05_context/signals/CODEX_RATIFICATION_BRIDGE_20260403T1314.signal.md": { + "path": "ION/05_context/signals/CODEX_RATIFICATION_BRIDGE_20260403T1314.signal.md", + "sha256": "92d03e10e53e9a683d70c66811ad18e2ce23d45a11bf091b8b4320d3e02358c5", + "size": 1325 + }, + "ION/05_context/signals/CODEX_RATIFICATION_RESPONSE_20260403T1454.signal.md": { + "path": "ION/05_context/signals/CODEX_RATIFICATION_RESPONSE_20260403T1454.signal.md", + "sha256": "b1e3088a0b43d8a82f6819ac1891f8d0929ed0b2abf8ad7f77ea75a38f5b44a0", + "size": 760 + }, + "ION/05_context/signals/CODEX_RECOVERY_REPLAY_SCENARIO_PROOF_20260411T203817.signal.md": { + "path": "ION/05_context/signals/CODEX_RECOVERY_REPLAY_SCENARIO_PROOF_20260411T203817.signal.md", + "sha256": "c4b375f3693907e2cf8748a69635e7c131e5fa99211ff915d8bbea6190d34e87", + "size": 1062 + }, + "ION/05_context/signals/CODEX_RECURSIVE_WITNESS_DRIFT_ROLLBACK_20260404T2235.signal.md": { + "path": "ION/05_context/signals/CODEX_RECURSIVE_WITNESS_DRIFT_ROLLBACK_20260404T2235.signal.md", + "sha256": "3165e4836fb6c1c992f9039ddb201a5ff92ca20b019196fef9a2e72798900a65", + "size": 309 + }, + "ION/05_context/signals/CODEX_ROUNDTABLE_BRIEF_20260403T1129.signal.md": { + "path": "ION/05_context/signals/CODEX_ROUNDTABLE_BRIEF_20260403T1129.signal.md", + "sha256": "1d25bd193a8fee35453e929a77541da4f146c47808710c69fca7116cfd652f77", + "size": 603 + }, + "ION/05_context/signals/CODEX_ROUNDTABLE_DELTA_AFTER_READY_20260403T1535.signal.md": { + "path": "ION/05_context/signals/CODEX_ROUNDTABLE_DELTA_AFTER_READY_20260403T1535.signal.md", + "sha256": "4c73dc35f8f3916d0aed0bcebaa4443966dfe79bf5c0c536cb9864b07d6af28b", + "size": 646 + }, + "ION/05_context/signals/CODEX_ROUNDTABLE_IDEAS_AND_FIRST_MOVE_20260403T1228.signal.md": { + "path": "ION/05_context/signals/CODEX_ROUNDTABLE_IDEAS_AND_FIRST_MOVE_20260403T1228.signal.md", + "sha256": "889d75b3d440050dffe9c1e9a5923bb38fd38ac8a1ff9369c8eb4cde87dba560", + "size": 1323 + }, + "ION/05_context/signals/CODEX_RUNTIME_ASSISTED_SEQUENCE_SCENARIO_PROOF_20260411T205345.signal.md": { + "path": "ION/05_context/signals/CODEX_RUNTIME_ASSISTED_SEQUENCE_SCENARIO_PROOF_20260411T205345.signal.md", + "sha256": "224fc08eeda61c3377ee1447e08065a108f15483c85a66ca54a98519134c2c6e", + "size": 1107 + }, + "ION/05_context/signals/CODEX_SCHEDULER_LAW_SCENARIO_PROOF_20260411T204827.signal.md": { + "path": "ION/05_context/signals/CODEX_SCHEDULER_LAW_SCENARIO_PROOF_20260411T204827.signal.md", + "sha256": "acc6ec146a7e1aafc8f01b201cee08d08d2860b6b03e5b9bc7e0a66ba34a3190", + "size": 988 + }, + "ION/05_context/signals/CODEX_SEQUENTIAL_KERNEL_PROOF_20260403T1734.signal.md": { + "path": "ION/05_context/signals/CODEX_SEQUENTIAL_KERNEL_PROOF_20260403T1734.signal.md", + "sha256": "6fb58b802240ec536ecaefacb79376749ae0d75053c50af0ccccc4464430b893", + "size": 692 + }, + "ION/05_context/signals/CODEX_SEQUENTIAL_RUNTIME_PORTABILITY_FIRST_PASS_20260403T2036.signal.md": { + "path": "ION/05_context/signals/CODEX_SEQUENTIAL_RUNTIME_PORTABILITY_FIRST_PASS_20260403T2036.signal.md", + "sha256": "46e256e30dc6e0ede7b7867d6497eb5091c16be9647de6073d03b940d2d70ea8", + "size": 977 + }, + "ION/05_context/signals/CODEX_STAFFING_SEMANTIC_IDENTITY_ONBOARDING_20260412T164544.signal.md": { + "path": "ION/05_context/signals/CODEX_STAFFING_SEMANTIC_IDENTITY_ONBOARDING_20260412T164544.signal.md", + "sha256": "327f87a258988959efdbde8c945726b1843f52545b3bcbc89766dc9e5c91ca7d", + "size": 1222 + }, + "ION/05_context/signals/CODEX_STARTUP_AUTHORITY_RATIFICATION_RECONCILED_20260412T162824.signal.md": { + "path": "ION/05_context/signals/CODEX_STARTUP_AUTHORITY_RATIFICATION_RECONCILED_20260412T162824.signal.md", + "sha256": "db220a46f87aa51d47f55c2b58181dcd1fe801f18a81b7432c89955c9d2e66ec", + "size": 1098 + }, + "ION/05_context/signals/CODEX_STATUS_REPORT_20260403T1513.signal.md": { + "path": "ION/05_context/signals/CODEX_STATUS_REPORT_20260403T1513.signal.md", + "sha256": "25258ca7318ae7bf8698845da3f89d9173172d06eab75318ab8451827a8cd5b1", + "size": 450 + }, + "ION/05_context/signals/CODEX_SUPERVISOR_CONTINUITY_PACKAGE_20260403T1346.signal.md": { + "path": "ION/05_context/signals/CODEX_SUPERVISOR_CONTINUITY_PACKAGE_20260403T1346.signal.md", + "sha256": "cd2eddc8f937f0b08844234c0be8720fa878062f1a7d9669d3944e78256dc550", + "size": 769 + }, + "ION/05_context/signals/CODEX_TASK_WRITEBACK_PILOT_20260403T1748.signal.md": { + "path": "ION/05_context/signals/CODEX_TASK_WRITEBACK_PILOT_20260403T1748.signal.md", + "sha256": "a2edc3c46ec8c2cc116769b0788044e618ef3ca9445c8eb1b98a731739b0b67e", + "size": 618 + }, + "ION/05_context/signals/CODEX_TEAM_STATE_TIMELINE_AND_WATCH_20260403T1356.signal.md": { + "path": "ION/05_context/signals/CODEX_TEAM_STATE_TIMELINE_AND_WATCH_20260403T1356.signal.md", + "sha256": "54e85dc6ddabf3dd140fdca4d1b704091ab443d2f5cb443028a210c6d9dcc0c0", + "size": 704 + }, + "ION/05_context/signals/CODEX_TEMPLATE_ARCHITECTURE_LAYERING_20260403T1910.signal.md": { + "path": "ION/05_context/signals/CODEX_TEMPLATE_ARCHITECTURE_LAYERING_20260403T1910.signal.md", + "sha256": "ddead51bbac3d220911f9fcaa96d72615129c45390c52566e91d85479bf2de92", + "size": 977 + }, + "ION/05_context/signals/CODEX_TEMPLATE_BINDINGS_FIRST_PASS_20260403T1923.signal.md": { + "path": "ION/05_context/signals/CODEX_TEMPLATE_BINDINGS_FIRST_PASS_20260403T1923.signal.md", + "sha256": "464191245fc7d09bacc444633eba7df8428196793871be3c821d2d6542779a2d", + "size": 1166 + }, + "ION/05_context/signals/CODEX_TEMPLATE_REFERENCE_RESTORE_20260403T1627.signal.md": { + "path": "ION/05_context/signals/CODEX_TEMPLATE_REFERENCE_RESTORE_20260403T1627.signal.md", + "sha256": "6057927be8af682360898f54f420b7393a9a9a37e0dfba40c0145e97f5dd00bf", + "size": 508 + }, + "ION/05_context/signals/CODEX_TOTAL_ION_DEEP_DIVE_20260403T1202.signal.md": { + "path": "ION/05_context/signals/CODEX_TOTAL_ION_DEEP_DIVE_20260403T1202.signal.md", + "sha256": "2958c886baedae2d026c48de5338097bd65382bcfd2389f8d57a78f489b437b7", + "size": 1287 + }, + "ION/05_context/signals/CODEX_TRACE_EXECUTOR_REPLAY_20260403T1739.signal.md": { + "path": "ION/05_context/signals/CODEX_TRACE_EXECUTOR_REPLAY_20260403T1739.signal.md", + "sha256": "d3ab7a1c5188d8b56781126bd72e9a9afaa4cf471302eceb2f13087854a54e85", + "size": 687 + }, + "ION/05_context/signals/CODEX_WITNESS_AUTHORITY_CROSSWALK_20260411T095654.signal.md": { + "path": "ION/05_context/signals/CODEX_WITNESS_AUTHORITY_CROSSWALK_20260411T095654.signal.md", + "sha256": "9c786c50b46ac60509090ed59dce024230fd18d298814b0f99a3ebd4822d06c2", + "size": 921 + }, + "ION/05_context/signals/CODEX_WORKING_THESIS_PROTOCOL_FIELD_20260403T1156.signal.md": { + "path": "ION/05_context/signals/CODEX_WORKING_THESIS_PROTOCOL_FIELD_20260403T1156.signal.md", + "sha256": "09ac84a2c35d7e377c3524514cd35485d5a95b565118559d1a0b79ca0d5fb5a6", + "size": 556 + }, + "ION/05_context/signals/DAIMON_VICE_COMPLETE_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_COMPLETE_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md", + "sha256": "66bdfaab3574f3be2aad472b20aeae51405d49288a7109489e6a2055497ec11b", + "size": 571 + }, + "ION/05_context/signals/DAIMON_VICE_DISSENT_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_DISSENT_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md", + "sha256": "45900031f3f7518b9d35a6413ca05e0f37d2b8f4a8258883e37c9a0edbb458a1", + "size": 1009 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T1230_ROUNDTABLE_NEXT_MOVE.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T1230_ROUNDTABLE_NEXT_MOVE.signal.md", + "sha256": "ffe2db3b64f59f4d5a29f5205fadb793f3a8d23f09520b0b260d428551dc233f", + "size": 674 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T123636_BOOT_SURFACE_MATRIX.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T123636_BOOT_SURFACE_MATRIX.signal.md", + "sha256": "02ee9216d35100a6ed61e18aa7015c158b274150b13caf9a4f73085fc928bf10", + "size": 807 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124424_SUPERVISOR_CONTINUITY.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124424_SUPERVISOR_CONTINUITY.signal.md", + "sha256": "5a1cf3c564ce4bb1af3b8f408cada047361d67c48cc33066281874e9e7c8540d", + "size": 775 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124605_ROOT_PROJECTION_RECONCILIATION.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124605_ROOT_PROJECTION_RECONCILIATION.signal.md", + "sha256": "e894be793920598161c788a77c0badf1780d6c6f1ea3640cd61601b1b32d2c8e", + "size": 651 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T125500_TEAM_CHECKIN_PROOF_LOOP_HAUNT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T125500_TEAM_CHECKIN_PROOF_LOOP_HAUNT.signal.md", + "sha256": "bd4d807912aaa1c715ae00f7dca93ec4711a915962ddccc77b27e26e42807051", + "size": 759 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T130033_ROUNDTABLE_DELTA_AFTER_RECONCILIATION.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T130033_ROUNDTABLE_DELTA_AFTER_RECONCILIATION.signal.md", + "sha256": "7121dd7985ade96536f827182b64bba9a0b0859c7362885460d7106b63ab707c", + "size": 794 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T131522_RATIFICATION_PACKAGE_HAUNT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T131522_RATIFICATION_PACKAGE_HAUNT.signal.md", + "sha256": "8c107a2f9a108966752c847541be97421323a4357d6d75eeac4c2a4a71f0c1dc", + "size": 857 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T135756_TEAM_SNAPSHOT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T135756_TEAM_SNAPSHOT.signal.md", + "sha256": "e4b6e70b38ab21220c122f7f6d930cd4e15e97f8bfd9dd5642721c6594030cb0", + "size": 692 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T141448_SNAPSHOT_CONCURRENCY_DECISION.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T141448_SNAPSHOT_CONCURRENCY_DECISION.signal.md", + "sha256": "9f9e9114bbe249c0b5fa42205deb6dc9ac5860345894cd6ec2a61e83fc028b20", + "size": 774 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T144835_RATIFICATION_ASSESSMENT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T144835_RATIFICATION_ASSESSMENT.signal.md", + "sha256": "ee59a9dcf8ded22dae47072a2dc0d0e9fad305785bfd41afe14e8296d1d31ef2", + "size": 781 + }, + "ION/05_context/signals/MASON_PACKAGING_ENTRY_HARDENING_20260412T161500.signal.md": { + "path": "ION/05_context/signals/MASON_PACKAGING_ENTRY_HARDENING_20260412T161500.signal.md", + "sha256": "a2c50dabe1170d09761b5d964816b42bc9b784054c518d922691029593e8a149", + "size": 1616 + }, + "ION/05_context/signals/MASON_TASK_COMPLETE_scaffold.signal.md": { + "path": "ION/05_context/signals/MASON_TASK_COMPLETE_scaffold.signal.md", + "sha256": "f7e632dd76e724ef0a1d49cbe4bfd8bd013f2f0ccb46e5ed605ae5ee40c89afa", + "size": 619 + }, + "ION/05_context/signals/NEMESIS_AGENT_SETUP_DAIMON_ARCHAEOLOGY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AGENT_SETUP_DAIMON_ARCHAEOLOGY.signal.md", + "sha256": "73914ac74113b6d3e3547468c00ccbb7903a59da3255c179cc0eb14e5b629a6b", + "size": 977 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_CONTINUITY_STABILIZATION.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_CONTINUITY_STABILIZATION.signal.md", + "sha256": "1cddb057e4c485719c1987a36bba4bd76893411a9a46d1e8659903ab317a182b", + "size": 666 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PHASE0_SCHEMAS.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PHASE0_SCHEMAS.signal.md", + "sha256": "bf3df0b6269457d255cc90be77c760906713dabd1d01485ef7200ad82c967b8d", + "size": 685 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN.signal.md", + "sha256": "b79fe23fe8d19466be7f05c61ba27da7c3187b7c3d7ae913771ac0f9af25d20f", + "size": 426 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_REV2.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_REV2.signal.md", + "sha256": "52e1cf6a9ec08aeededcc7a72a04428771c34d5d4240666c5140d6c84d8f942c", + "size": 522 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_TARGETED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_TARGETED.signal.md", + "sha256": "52c3b2d9741ebedff41657bbfaf32fb62127223d9153b3193f8b68754464f484", + "size": 606 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_TIGHTENING_PASS.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_TIGHTENING_PASS.signal.md", + "sha256": "6ba21b7a2bddf6e4a0cbcf5069607edd99afcf932991dbc3e9f0508f733f7423", + "size": 557 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_VIZIER_LATEST.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_VIZIER_LATEST.signal.md", + "sha256": "7fb4a85024d0a5010865a32d9435a448f57225722416bd1edef1fb75d13a4292", + "size": 597 + }, + "ION/05_context/signals/NEMESIS_BUILDER_ROUNDTABLE_RESPONSE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_BUILDER_ROUNDTABLE_RESPONSE.signal.md", + "sha256": "f315eb8e2d4a343c4c9916bd0e0b50b1dd1dc2f4d1bd28452f7830e040d54779", + "size": 567 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_DECISION_READY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_DECISION_READY.signal.md", + "sha256": "6d7fc9414b8574bf47c5b30bef26159e42dae53b2f17a6f3bb1a4d75a7311fe6", + "size": 580 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_DELTA_CONDITIONAL.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_DELTA_CONDITIONAL.signal.md", + "sha256": "36de3056f7a6aeebb59de32d8a4fd38e24ce71d8ce883b3076f768fe81184e15", + "size": 631 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CANDIDATE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CANDIDATE.signal.md", + "sha256": "4540297c10de6e1e581fe6624a614d1f6c70de1cadb93e1e4bf9c06d15c88ce8", + "size": 751 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CONVERGENCE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CONVERGENCE.signal.md", + "sha256": "c5621b8815614a0987ced45bd05a75bfd5fc3a0d5c1a674304a17234739e8276", + "size": 599 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_RATIFICATION_PACKAGE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_RATIFICATION_PACKAGE.signal.md", + "sha256": "5380cdd2f255632282f0427fef25c6a79b1eaa1afb4e18afb46b051096dbbe17", + "size": 612 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_FILED.signal.md", + "sha256": "97f76894ff1f6b8426e67367bd648c4ee94e873fe384ed6fc46ff04d58d16005", + "size": 748 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_REFRESHED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_REFRESHED.signal.md", + "sha256": "6f54fc89c23f439be96f2a199a71a1e48150aac1d89e9a81d8ff6557f0557642", + "size": 874 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_RATIFICATION_DELTA.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_RATIFICATION_DELTA.signal.md", + "sha256": "43242a983d26e188940b6b758945b87194d98833d9a97ad62a30d196c24c2ba8", + "size": 617 + }, + "ION/05_context/signals/NEMESIS_DIRECTIVE_ROUNDTABLE_ONLY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_DIRECTIVE_ROUNDTABLE_ONLY.signal.md", + "sha256": "b0708b2ee173c23928cca72c4409cdb383918fc2fda946de70b00f4628b438d5", + "size": 613 + }, + "ION/05_context/signals/NEMESIS_ESCALATION_CONTINUITY_ROUNDTABLE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ESCALATION_CONTINUITY_ROUNDTABLE.signal.md", + "sha256": "6e74eff6ca2ce128da43c6fe04c7e712473c124f0525610096f584e266f7968d", + "size": 916 + }, + "ION/05_context/signals/NEMESIS_IDEAS_AND_FIRST_MOVE_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_IDEAS_AND_FIRST_MOVE_FILED.signal.md", + "sha256": "91cec8a887df52aa08ea38cfc7386bc79ef4432200fc76f8ea01cdac8f040f88", + "size": 560 + }, + "ION/05_context/signals/NEMESIS_RATIFICATION_ASSESSMENT_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RATIFICATION_ASSESSMENT_FILED.signal.md", + "sha256": "ac64bb13e4941654826aae6f52b5115d14bfb0e5be12ff99ae6d38a555683255", + "size": 633 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_EXPLORE_WITH_CONTINUITY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_EXPLORE_WITH_CONTINUITY.signal.md", + "sha256": "a973196ba723f556288f3ee9eaa672078bb1e5919efac415575d063792dafe67", + "size": 572 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_MANUAL_AUTO.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_MANUAL_AUTO.signal.md", + "sha256": "3bdcab652b539ca48804e7047e34ff02dfbf43035a6d4e8c096af83073540084", + "size": 572 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_ION_ACRONYM.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_ION_ACRONYM.signal.md", + "sha256": "7870acdabadd82e75d37d30f01e93f954d27c9d85f02b62fa2fc8fdc3b89ff14", + "size": 593 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_REFLECTION_ION.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_REFLECTION_ION.signal.md", + "sha256": "6949726d4024356bcb691de04586d8e6f378b5c1159f52a8e6a86194647fee28", + "size": 639 + }, + "ION/05_context/signals/NEMESIS_RELAY_EUNOIA_INTEGRATION.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAY_EUNOIA_INTEGRATION.signal.md", + "sha256": "1b7ef2d524e851e0b6383082ecef1a0086358908af7e9047bb18bf2512197b77", + "size": 693 + }, + "ION/05_context/signals/NEMESIS_RELAY_RENAMED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAY_RENAMED.signal.md", + "sha256": "8bda2ce7c4f0122b42105985b65c32e7b136f6237f003ec6af26ec9463bd9e1e", + "size": 575 + }, + "ION/05_context/signals/NEMESIS_RELAY_ROLE_SETUP.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAY_ROLE_SETUP.signal.md", + "sha256": "1d8379b4f199d031e21f22300e31f7eda21c87aa44d854f7abb8ecde84dcbe54", + "size": 604 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_CHECKPOINT_AWAITING_SOVEREIGN.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_CHECKPOINT_AWAITING_SOVEREIGN.signal.md", + "sha256": "b3f14b87176f71b3c04bf59ba1c5dea9e55490cc63779d970075cb007a459729", + "size": 630 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_CORE_PERSPECTIVES_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_CORE_PERSPECTIVES_FILED.signal.md", + "sha256": "0c5aefa39fd155a7c6414aae93a27ad6707982d24dcd4918b04a3adb4ad3a526", + "size": 568 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_RESPONSE_STATUS.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_RESPONSE_STATUS.signal.md", + "sha256": "f49660082b8db88add966fb4ae0b888052a0212fa48469e5136598f18fddc1f5", + "size": 542 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_SYNTHESIS_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_SYNTHESIS_FILED.signal.md", + "sha256": "b78bdafeeca439e612ba721d67bc66f466a1b9a3603c611ab5b47f9023c12efe", + "size": 678 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_WORKSPACE_READY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_WORKSPACE_READY.signal.md", + "sha256": "7d784def0935b8486a4573f75cc21694b07f012aa773f86d59ff7a4a57cdc871", + "size": 636 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AETHER_ATLAS_ION_REFERENCE.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_AETHER_ATLAS_ION_REFERENCE.signal.md", + "sha256": "40681bfe92d2c8f23d137997e733651a3c3c811a44d06d34345b7b429cc8bc7c", + "size": 591 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AGENT_HIERARCHY_REALMS.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_AGENT_HIERARCHY_REALMS.signal.md", + "sha256": "5694a812541d50a4d23791c2cf8041878998cb64cf2bbe872ed62c536d8a8f06", + "size": 645 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AIMOS_DEEP_GAP_ANALYSIS.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_AIMOS_DEEP_GAP_ANALYSIS.signal.md", + "sha256": "286444e7ca243cdcdf1b79c4830904a9d9ee9582a44d7eebecccb5ef14f229c2", + "size": 732 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_CAPSULE_PROTOCOL_WEB.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_CAPSULE_PROTOCOL_WEB.signal.md", + "sha256": "656a1863a0f906147278ec5171abd1f69d80d8f362f5b628a8910cfa4383cacb", + "size": 663 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_CONTINUITY_PROTOCOL_FIELD.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_CONTINUITY_PROTOCOL_FIELD.signal.md", + "sha256": "9d4d14f99875de630954d5b76cf995988e80b3d2c2ac5d8c428cdb854c6637e0", + "size": 653 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_MISSION_TOTAL_ION_DEFINITION.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_MISSION_TOTAL_ION_DEFINITION.signal.md", + "sha256": "799b67a34d1b3d5b44f252b7b93eafc508e3c348dfaf0bac948a45ea791f1bf1", + "size": 716 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SINGLE_CHAT_MULTI_ROLE.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_SINGLE_CHAT_MULTI_ROLE.signal.md", + "sha256": "4a915040bbf18a557a7e9ad8ba09358c79ccf139e304ecaeff89043c24b2defc", + "size": 691 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SOVEREIGN_RELAY_SCOPE.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_SOVEREIGN_RELAY_SCOPE.signal.md", + "sha256": "f971df292fdbba776037e59ed84e6e031695b4f7594c94ea37a3bebe52a5d00a", + "size": 696 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SYSTEMS_ATLAS_ULTIMATE_OS.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_SYSTEMS_ATLAS_ULTIMATE_OS.signal.md", + "sha256": "9a3debd7520c02b1c58191d50903c08f1b0be53ba8c826ba4916171746a0cf28", + "size": 676 + }, + "ION/05_context/signals/RELAY_READY_20260403_CONTINUITY_ROUNDTABLE_BRIEF.signal.md": { + "path": "ION/05_context/signals/RELAY_READY_20260403_CONTINUITY_ROUNDTABLE_BRIEF.signal.md", + "sha256": "6dd58ec2092fc4bb18c6d114c517c305f0d0c2d199a498ff765c95788fc0e8f2", + "size": 763 + }, + "ION/05_context/signals/RELAY_VISIBLE_REPORT_20260427.md": { + "path": "ION/05_context/signals/RELAY_VISIBLE_REPORT_20260427.md", + "sha256": "4608d6b1f4e4f620ffab2fd8eb87a193dec45408890edabca37f1ed6b396da67", + "size": 688 + }, + "ION/05_context/signals/THOTH_BRIDGE_PACKET_STATUS_EVIDENCE_COMPLETE_20260412T130500.signal.md": { + "path": "ION/05_context/signals/THOTH_BRIDGE_PACKET_STATUS_EVIDENCE_COMPLETE_20260412T130500.signal.md", + "sha256": "e91c3188f5e1301c6fe0ffbdf8d8c62f5bd49a90c4ef47bd14e959f9588c9c91", + "size": 1007 + }, + "ION/05_context/signals/THOTH_CURRENT_PHASE_STAFFING_SEMANTIC_IDENTITY_COMPLETE_20260412T171000.signal.md": { + "path": "ION/05_context/signals/THOTH_CURRENT_PHASE_STAFFING_SEMANTIC_IDENTITY_COMPLETE_20260412T171000.signal.md", + "sha256": "4f314607961bbaf6f34065cc6eadfc2ec11d28550578e4ab7cdf1621fa606fcd", + "size": 894 + }, + "ION/05_context/signals/VESTIGE_ROUNDTABLE_CONTINUITY_ARCHAEOLOGY_20260403T1400.signal.md": { + "path": "ION/05_context/signals/VESTIGE_ROUNDTABLE_CONTINUITY_ARCHAEOLOGY_20260403T1400.signal.md", + "sha256": "e9bca9ae1851e4a10bbda6b530a59d7be1662fb9ee8c14d1375f8b2e88dacaa7", + "size": 873 + }, + "ION/05_context/signals/VESTIGE_TASK_COMPLETE_BRIDGE_PACKET_ARCHAEOLOGY_20260412.signal.md": { + "path": "ION/05_context/signals/VESTIGE_TASK_COMPLETE_BRIDGE_PACKET_ARCHAEOLOGY_20260412.signal.md", + "sha256": "26a766d061a993e1589458092deaff01e9a621bbf6ef0ae01995c9dd4270f952", + "size": 638 + }, + "ION/05_context/signals/VESTIGE_TASK_COMPLETE_STAFFING_SEMANTIC_IDENTITY_20260412.signal.md": { + "path": "ION/05_context/signals/VESTIGE_TASK_COMPLETE_STAFFING_SEMANTIC_IDENTITY_20260412.signal.md", + "sha256": "d7bd5541ef1af2a3c4fec4abbc145cae94331d2dc115bd85950faaf76825f592", + "size": 770 + }, + "ION/05_context/signals/VIZIER_ARTICLE7_PROPOSED_20260403T2200.signal.md": { + "path": "ION/05_context/signals/VIZIER_ARTICLE7_PROPOSED_20260403T2200.signal.md", + "sha256": "941cc395a3a71f04628375709e8e6c7874296fc2d97da6327821bcca95698145", + "size": 854 + }, + "ION/05_context/signals/VIZIER_BOOT_CREATED_20260403T1715.signal.md": { + "path": "ION/05_context/signals/VIZIER_BOOT_CREATED_20260403T1715.signal.md", + "sha256": "5abd6a18b22f11c6c2c2a1c0fab9296b8f8354f2ad55f85da5c545c86cff2712", + "size": 567 + }, + "ION/05_context/signals/VIZIER_FORMAL_ROUNDTABLE_20260403T1230.signal.md": { + "path": "ION/05_context/signals/VIZIER_FORMAL_ROUNDTABLE_20260403T1230.signal.md", + "sha256": "ec4c760837955f8b883f690fd396f100e482d7c658bb4dd4fe9c06daa7d33f0b", + "size": 649 + }, + "ION/05_context/signals/VIZIER_HIERARCHY_FILED_20260403T1930.signal.md": { + "path": "ION/05_context/signals/VIZIER_HIERARCHY_FILED_20260403T1930.signal.md", + "sha256": "9b6dc012ebdcadaf3e42820625998b41ca8304cab7319887a8c28cf755105763", + "size": 620 + }, + "ION/05_context/signals/VIZIER_IDEAS_FIRST_ACTION_20260403T1600.signal.md": { + "path": "ION/05_context/signals/VIZIER_IDEAS_FIRST_ACTION_20260403T1600.signal.md", + "sha256": "d8586b87912e3ca98620d008c901a2442082ff4d37196ace84f7a35f4cf2324b", + "size": 841 + }, + "ION/05_context/signals/VIZIER_P0_BOOTS_COMPLETE_20260403T1800.signal.md": { + "path": "ION/05_context/signals/VIZIER_P0_BOOTS_COMPLETE_20260403T1800.signal.md", + "sha256": "cd3a1f70368b996797271e6408159fb6e5a30183c59132ad84563decab1c67a2", + "size": 1207 + }, + "ION/05_context/signals/VIZIER_P1_COMPLETE_20260403T1830.signal.md": { + "path": "ION/05_context/signals/VIZIER_P1_COMPLETE_20260403T1830.signal.md", + "sha256": "be32f08877138e2bcfd71a8a63b7c18eeea21ef88b8e008d8fa7328016a7be10", + "size": 1087 + }, + "ION/05_context/signals/VIZIER_P2_INFRA_COMPLETE_20260403T1900.signal.md": { + "path": "ION/05_context/signals/VIZIER_P2_INFRA_COMPLETE_20260403T1900.signal.md", + "sha256": "46acf35beec1b06a4e340fe9edb090ae6d18e0657131287560dfb30c5a1f7cbe", + "size": 923 + }, + "ION/05_context/signals/VIZIER_PHASE0A_COMPLETE_20260403T0100.signal.md": { + "path": "ION/05_context/signals/VIZIER_PHASE0A_COMPLETE_20260403T0100.signal.md", + "sha256": "8420b75c79622da1098101794e5e974569c4e6616c2fb9e81cac11e0766befac", + "size": 1412 + }, + "ION/05_context/signals/VIZIER_PHASE0B_PROOF_LOOP_20260403T1700.signal.md": { + "path": "ION/05_context/signals/VIZIER_PHASE0B_PROOF_LOOP_20260403T1700.signal.md", + "sha256": "0648e6180629b251eacdb565e69fc5d245ecbf2990613e22209ab8d4b6a836b2", + "size": 845 + }, + "ION/05_context/signals/VIZIER_PHASE0_COMPLETE_20260403T0040.signal.md": { + "path": "ION/05_context/signals/VIZIER_PHASE0_COMPLETE_20260403T0040.signal.md", + "sha256": "f36f55f92bca57a244fd5f2d8f58bc24c63f212cdd2cc0597023a6d9444151e1", + "size": 1754 + }, + "ION/05_context/signals/VIZIER_PLAN_REVISED_R2_20260402T2300.signal.md": { + "path": "ION/05_context/signals/VIZIER_PLAN_REVISED_R2_20260402T2300.signal.md", + "sha256": "fb81cdf9a50f05a50ffe20e9bb2b393c406a84987950324486ef583b3361cd2f", + "size": 1098 + }, + "ION/05_context/signals/VIZIER_PRERATIFICATION_DIRECTIVE_20260403T2100.signal.md": { + "path": "ION/05_context/signals/VIZIER_PRERATIFICATION_DIRECTIVE_20260403T2100.signal.md", + "sha256": "ab3810db2b54e34f726b29d163ec213847f1aa67cd1a71b84123275687c312bf", + "size": 1067 + }, + "ION/05_context/signals/VIZIER_RATIFICATION_ASSESSMENT_20260403T2100.signal.md": { + "path": "ION/05_context/signals/VIZIER_RATIFICATION_ASSESSMENT_20260403T2100.signal.md", + "sha256": "55d3154074a084cbc6e925184d751def3b8fc869681ef6fe65647fd2c53496cd", + "size": 767 + }, + "ION/05_context/signals/VIZIER_RATIFICATION_READY_20260403T2130.signal.md": { + "path": "ION/05_context/signals/VIZIER_RATIFICATION_READY_20260403T2130.signal.md", + "sha256": "dc6bf156a5ebf47cf2f33313a715ed31b09c00b85aa0f25904f76217589747ba", + "size": 959 + }, + "ION/05_context/signals/VIZIER_RATIFICATION_REQUEST_20260403T2030.signal.md": { + "path": "ION/05_context/signals/VIZIER_RATIFICATION_REQUEST_20260403T2030.signal.md", + "sha256": "c767fe936a653c46e164d54c2d43bbd9a7551d8a675ee2bfb15465a94f1b983f", + "size": 907 + }, + "ION/05_context/signals/VIZIER_ROOT_PROJECTION_RECONCILED_20260403T1730.signal.md": { + "path": "ION/05_context/signals/VIZIER_ROOT_PROJECTION_RECONCILED_20260403T1730.signal.md", + "sha256": "7eab3062b9b287e595b91ef7c7023ef827515834c1a5dc1160d050156f6822e0", + "size": 970 + }, + "ION/05_context/signals/VIZIER_ROUNDTABLE_RECALIBRATION_20260403T1210.signal.md": { + "path": "ION/05_context/signals/VIZIER_ROUNDTABLE_RECALIBRATION_20260403T1210.signal.md", + "sha256": "b726215c17e5cfaa0e49829551b60719c97afff6a5547ff57f18b7f786547afc", + "size": 622 + }, + "ION/05_context/signals/VIZIER_ROUNDTABLE_RESPONSE_20260403T1130.signal.md": { + "path": "ION/05_context/signals/VIZIER_ROUNDTABLE_RESPONSE_20260403T1130.signal.md", + "sha256": "955aa56b29619ab08c0a2f6c828818c98771bb26cc081ff15434accae7ad74b3", + "size": 566 + }, + "ION/05_context/signals/VIZIER_SCHEMA_REVISION_20260403T0130.signal.md": { + "path": "ION/05_context/signals/VIZIER_SCHEMA_REVISION_20260403T0130.signal.md", + "sha256": "aadbb3c4f7a6d36736001f73cccf3651197f72f063d437e21fb7224bb9edf9c0", + "size": 1379 + }, + "ION/05_context/signals/VIZIER_STATUS_REPORT_20260403T2000.signal.md": { + "path": "ION/05_context/signals/VIZIER_STATUS_REPORT_20260403T2000.signal.md", + "sha256": "046d7cddae172d76cdea3712e547239a258dab5b2f8d2d6040ddf14313670bde", + "size": 649 + }, + "ION/05_context/signals/VIZIER_SYNTHESIS_RESPONSE_20260403T1500.signal.md": { + "path": "ION/05_context/signals/VIZIER_SYNTHESIS_RESPONSE_20260403T1500.signal.md", + "sha256": "82c27e45484758868665d91d306943544f08a6bb00ae8b3098bbc421bcb31392", + "size": 718 + }, + "ION/05_context/signals/VIZIER_TASK_COMPLETE_T01_20260402T2345.signal.md": { + "path": "ION/05_context/signals/VIZIER_TASK_COMPLETE_T01_20260402T2345.signal.md", + "sha256": "7ffc7f43ef5f38de52d497ea1ff660d86aef250a17d8e4a6bab83e5952ada3b9", + "size": 680 + }, + "ION/05_context/signals/VIZIER_TIGHTENING_PASS_20260403T0135.signal.md": { + "path": "ION/05_context/signals/VIZIER_TIGHTENING_PASS_20260403T0135.signal.md", + "sha256": "ff03ae1c11bc343a2d64f72c96178554212e11a1f24ebd898a4ce271207542c6", + "size": 1008 + }, + "ION/05_context/signals/VIZIER_TOTAL_ION_DIRECTION_20260403T1300.signal.md": { + "path": "ION/05_context/signals/VIZIER_TOTAL_ION_DIRECTION_20260403T1300.signal.md", + "sha256": "61b93bad5888f629f7143f5858984a27ad09e1d72304d28eab651b4455eda6b6", + "size": 1047 + }, + "ION/05_context/signals/VIZIER_TRUE_CORES_20260403T1400.signal.md": { + "path": "ION/05_context/signals/VIZIER_TRUE_CORES_20260403T1400.signal.md", + "sha256": "041f8765ba7468a8153be8ba7cd33969f20a2c01e3f76ac4ba6189b900f3f132", + "size": 1052 + }, + "ION/05_context/signals/VIZIER_WEB_MAP_COMPLETE_20260403T1630.signal.md": { + "path": "ION/05_context/signals/VIZIER_WEB_MAP_COMPLETE_20260403T1630.signal.md", + "sha256": "21d14105f34f4ea5a0bc9343aa6d8e0ae810ccde02067e839f7864e48100f4c9", + "size": 1242 + }, + "ION/05_context/signals/archive/BOOTSTRAP_BLOCKED_BOOTSTRAP_FIRST_LAWFUL_DAEMON_PRESSURE_FROM_THIS_ROOT_20260423150348_TASK_20260423150348.signal.json": { + "path": "ION/05_context/signals/archive/BOOTSTRAP_BLOCKED_BOOTSTRAP_FIRST_LAWFUL_DAEMON_PRESSURE_FROM_THIS_ROOT_20260423150348_TASK_20260423150348.signal.json", + "sha256": "e80284e6a1fff0935c0877b3d3f523e2fe3db83a4651304c3af5d60c61717a16", + "size": 1657 + }, + "ION/05_context/signals/current_shell_stabilization_receipt_20260427.txt": { + "path": "ION/05_context/signals/current_shell_stabilization_receipt_20260427.txt", + "sha256": "def6d97c7c642f29466de263637d81fbd76ab492a8bdad4c4582f5e01eb17af2", + "size": 1348 + }, + "ION/05_context/signals/ion_default_carrier_onboarding_receipt_20260427.txt": { + "path": "ION/05_context/signals/ion_default_carrier_onboarding_receipt_20260427.txt", + "sha256": "ff2f4035ebf57a2520605094bbe9c6bf7a8cb461a145a8969f8974d6c8573b29", + "size": 992 + }, + "ION/05_context/signals/ion_default_carrier_onboarding_sample_20260427.json": { + "path": "ION/05_context/signals/ion_default_carrier_onboarding_sample_20260427.json", + "sha256": "47332de10140a3641b67c12e0d734c2961046e853dea7dde383e4b1916bd1126", + "size": 13725 + }, + "ION/05_context/signals/v100_living_encyclopedia_maintenance_receipt_20260501.txt": { + "path": "ION/05_context/signals/v100_living_encyclopedia_maintenance_receipt_20260501.txt", + "sha256": "ef8aa91ae3ab7eba21d6c03e323597b4e5363cf078c4e0af96c0051084013ac3", + "size": 2108 + }, + "ION/05_context/signals/v102_context_metabolism_receipt_20260502.txt": { + "path": "ION/05_context/signals/v102_context_metabolism_receipt_20260502.txt", + "sha256": "6343f2b4c4cf211289616b0f35e7b74469df5043fa8099c4dce136c316277dd3", + "size": 235 + }, + "ION/05_context/signals/v103_temporal_context_enforcement_reconciliation_receipt_20260502.txt": { + "path": "ION/05_context/signals/v103_temporal_context_enforcement_reconciliation_receipt_20260502.txt", + "sha256": "a7c7dfea42381db105e73c34e2bb88f87bf1cbb99e0c61f7d8117027cf200ca7", + "size": 269 + }, + "ION/05_context/signals/v104_operational_truth_audit_receipt_20260502.txt": { + "path": "ION/05_context/signals/v104_operational_truth_audit_receipt_20260502.txt", + "sha256": "f5d5f2dcbfbabba265556b6323c8f73d854b2a3b771f14accf415be5c70cca32", + "size": 194 + }, + "ION/05_context/signals/v105_deep_operational_cartography_receipt_20260502.txt": { + "path": "ION/05_context/signals/v105_deep_operational_cartography_receipt_20260502.txt", + "sha256": "df039665c1042f7b2985246d61706aa71b3fd4ad30fd32415903643b8c8d0abe", + "size": 177 + }, + "ION/05_context/signals/v106_core_telemetry_runtime_floor_receipt_20260502.txt": { + "path": "ION/05_context/signals/v106_core_telemetry_runtime_floor_receipt_20260502.txt", + "sha256": "91c5dff9dd51f6c8393e39b48ff455be3d8af701a8660fd24eee7425576c9b1e", + "size": 2250 + }, + "ION/05_context/signals/v75_relay_spawn_report_20260427.md": { + "path": "ION/05_context/signals/v75_relay_spawn_report_20260427.md", + "sha256": "872ff19ef5b53faea62d68f253ce1e8af3f1d13f6f9218ee9442e80ebb6b0ab4", + "size": 654 + }, + "ION/05_context/signals/v75_spawn_packet_mason_structure_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_packet_mason_structure_audit_20260427.md", + "sha256": "f03409d656721f7bcaf8a1b5be8c3dc5307b93c78cfcee2a0528111820ea39fb", + "size": 2040 + }, + "ION/05_context/signals/v75_spawn_packet_vestige_provenance_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_packet_vestige_provenance_audit_20260427.md", + "sha256": "2b8c2eb2610490eedb90ee83a7a44a089d8ac300553a43ac168a3828dc9b36a6", + "size": 2272 + }, + "ION/05_context/signals/v75_spawn_return_mason_structure_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_return_mason_structure_audit_20260427.md", + "sha256": "b56ddff90a4a5379719a3002e263e941195c1ca8f8d049e2c7e44c85f208df27", + "size": 564 + }, + "ION/05_context/signals/v75_spawn_return_vestige_provenance_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_return_vestige_provenance_audit_20260427.md", + "sha256": "9fc9ee632832f087a24410ca3e0557f3e1d7bea0ba0cefe7b8166f7396d9ae20", + "size": 553 + }, + "ION/05_context/signals/v75_steward_spawn_integration_receipt_20260427.txt": { + "path": "ION/05_context/signals/v75_steward_spawn_integration_receipt_20260427.txt", + "sha256": "7adf8d8b5b6d790475183aa09c7340f456bdf182ac1c8597652008475fecdbdc", + "size": 803 + }, + "ION/05_context/signals/v76_cursor_capability_and_mcp_bridge_receipt_20260427.txt": { + "path": "ION/05_context/signals/v76_cursor_capability_and_mcp_bridge_receipt_20260427.txt", + "sha256": "1bf8adc6d9eff5508885beda5497622940d7b395b3a24b20210f2d2672ad70d4", + "size": 618 + }, + "ION/05_context/signals/v76_mcp_bridge_auditor_return_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_auditor_return_20260427.md", + "sha256": "179d69d6e5a3c950d69079d8b228cfb3aea0f5dcc0158f141e3a371439b68ec5", + "size": 581 + }, + "ION/05_context/signals/v76_mcp_bridge_mason_return_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_mason_return_20260427.md", + "sha256": "ffb4a77ec6e3533767ff4d9df51c1594caa2da52a96656dd976c5f4c31424647", + "size": 535 + }, + "ION/05_context/signals/v76_mcp_bridge_relay_report_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_relay_report_20260427.md", + "sha256": "25f4f257ce60b189403571ad2e2cbecc5b97b5f443e87b5479c6abb330935e6b", + "size": 757 + }, + "ION/05_context/signals/v76_mcp_bridge_steward_integration_receipt_20260427.txt": { + "path": "ION/05_context/signals/v76_mcp_bridge_steward_integration_receipt_20260427.txt", + "sha256": "46cf73649cc110e77330d65a0bdee1e8d39d1b22aecf3b1f3f30b6e2908f0da5", + "size": 494 + }, + "ION/05_context/signals/v76_mcp_bridge_workpacket_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_workpacket_20260427.md", + "sha256": "e9657810a471c7a5a94909e5e99bc111960e2f25734ca2e700e9c1a92745ec72", + "size": 1378 + }, + "ION/05_context/signals/v76_relay_visible_workflow_report_20260427.md": { + "path": "ION/05_context/signals/v76_relay_visible_workflow_report_20260427.md", + "sha256": "e59a70d670a3a3b4d7c999141fafd977a0fed4951915bfab2209dac0dc443f21", + "size": 658 + }, + "ION/05_context/signals/v76_relay_work_cycle_input_20260427.md": { + "path": "ION/05_context/signals/v76_relay_work_cycle_input_20260427.md", + "sha256": "c4dcacc6407eb24c45db561a9201d0a655c29c4884d932615e3eaf3a712f8eff", + "size": 610 + }, + "ION/05_context/signals/v76_role_carrier_return_proposal_20260427.md": { + "path": "ION/05_context/signals/v76_role_carrier_return_proposal_20260427.md", + "sha256": "01b692a106dcb119fc1f0d09859621867be7ae4f55fffb4174c54cfdfe27bbaf", + "size": 538 + }, + "ION/05_context/signals/v76_steward_integration_receipt_20260427.txt": { + "path": "ION/05_context/signals/v76_steward_integration_receipt_20260427.txt", + "sha256": "a855afd5991ae9e81c70a4de6cbe1d82f3909263b5fa5fde1db28d6d49469d2c", + "size": 446 + }, + "ION/05_context/signals/v76_steward_route_decision_20260427.md": { + "path": "ION/05_context/signals/v76_steward_route_decision_20260427.md", + "sha256": "b83dc1f749f2210deb14e249912d026df0b26154b7546f49bbb37650b95ae277", + "size": 551 + }, + "ION/05_context/signals/v77_carrier_context_proof_gate_receipt_20260428.txt": { + "path": "ION/05_context/signals/v77_carrier_context_proof_gate_receipt_20260428.txt", + "sha256": "89504aa897ad3a65d4dd65728166210e957075a70ccb05d2fffbb29e69d525ea", + "size": 884 + }, + "ION/05_context/signals/v78_canonical_mount_demo_packet_20260427.json": { + "path": "ION/05_context/signals/v78_canonical_mount_demo_packet_20260427.json", + "sha256": "05f811ecb42f52c58029dd455304b40fb25a3ed1c28626969bcd6acace83e123", + "size": 550 + }, + "ION/05_context/signals/v79_ion_context_authority_team_receipt_20260428.txt": { + "path": "ION/05_context/signals/v79_ion_context_authority_team_receipt_20260428.txt", + "sha256": "34cb1be7a98eea60b6491689949c5c4f48b04315471a65a9f4cbc8ce34f3f185", + "size": 633 + }, + "ION/05_context/signals/v80_cursor_full_project_consolidation_receipt_20260428.txt": { + "path": "ION/05_context/signals/v80_cursor_full_project_consolidation_receipt_20260428.txt", + "sha256": "f3d66e91f105159301af92c03814f7bdfaed7bb35a147715406aea03991a93cb", + "size": 379 + }, + "ION/05_context/signals/v81_agent_context_systems_repair_receipt_20260428.txt": { + "path": "ION/05_context/signals/v81_agent_context_systems_repair_receipt_20260428.txt", + "sha256": "18fc846690b8fffa11c56a63a49c369ce7a68f89fa8de5aa6fecf3e3a3e1375f", + "size": 842 + }, + "ION/05_context/signals/v82_agent_context_system_runtime_wiring_receipt_20260428.txt": { + "path": "ION/05_context/signals/v82_agent_context_system_runtime_wiring_receipt_20260428.txt", + "sha256": "e94e9f4c1cf2d0ee1ca942c4a6ce37713befceaf79c6741107787365713b4c42", + "size": 1022 + }, + "ION/05_context/signals/v84_carrier_continuation_and_productized_runtime_receipt_20260429.txt": { + "path": "ION/05_context/signals/v84_carrier_continuation_and_productized_runtime_receipt_20260429.txt", + "sha256": "9642ad67dfafe318618f687356e9b6c3a6e2385833bc8f273f9cb9cf784fedcc", + "size": 737 + }, + "ION/05_context/signals/v85_carrier_task_return_intake_receipt_20260429.txt": { + "path": "ION/05_context/signals/v85_carrier_task_return_intake_receipt_20260429.txt", + "sha256": "08438d49e3ca54024549f468e429283b971331ddaefa08de13b50f0cdcd90c84", + "size": 1001 + }, + "ION/05_context/signals/v90_live_joc_cockpit_webview_binding_receipt_20260429.txt": { + "path": "ION/05_context/signals/v90_live_joc_cockpit_webview_binding_receipt_20260429.txt", + "sha256": "afa52999e56cdc3cfb0f5b315d92cebb15141d964d4496926a5353259b8ddbb7", + "size": 1073 + }, + "ION/05_context/signals/v91_agent_context_dynamics_and_frontdoor_receipt_20260429.txt": { + "path": "ION/05_context/signals/v91_agent_context_dynamics_and_frontdoor_receipt_20260429.txt", + "sha256": "47f0288b00c59d45194d7009716ed63cca168aea6d8d2bc9d2a8dff9a902d3fb", + "size": 543 + }, + "ION/05_context/signals/v92_mcp_control_bridge_receipt_20260430.txt": { + "path": "ION/05_context/signals/v92_mcp_control_bridge_receipt_20260430.txt", + "sha256": "7153ce4f8fb9a52dfb3bbca1eb5769893751f377352f327853f687cccb4603fe", + "size": 986 + }, + "ION/05_context/signals/v93_cursor_ion_autopilot_command_and_subagent_surface_receipt_20260430.txt": { + "path": "ION/05_context/signals/v93_cursor_ion_autopilot_command_and_subagent_surface_receipt_20260430.txt", + "sha256": "7d6cd17b7f8ea7e7db2121cd8a8d747c601e1ff7514d4eb43b48670cd2ba7c26", + "size": 564 + }, + "ION/05_context/signals/v94_cursor_canonical_workflow_unification_receipt_20260430.txt": { + "path": "ION/05_context/signals/v94_cursor_canonical_workflow_unification_receipt_20260430.txt", + "sha256": "e465c1b7cc96a973ee8b2196bb1ef38c8a01f93bdf9b317b444e25f8ca0a5b13", + "size": 1472 + }, + "ION/05_context/signals/v95_compiled_role_context_bundle_invariant_receipt_20260430.txt": { + "path": "ION/05_context/signals/v95_compiled_role_context_bundle_invariant_receipt_20260430.txt", + "sha256": "41e782530ae2c776719149ed5abfef596f2c04959ff24ac479723e7bc8265c69", + "size": 235 + }, + "ION/05_context/signals/v96_full_consolidated_runtime_receipt_20260430.txt": { + "path": "ION/05_context/signals/v96_full_consolidated_runtime_receipt_20260430.txt", + "sha256": "06d3be3cc403491d38e20ee50a5b834dd1b0406df4128d06c3b9e76fba9cdba0", + "size": 427 + }, + "ION/05_context/signals/v97_lead_dev_survival_audit_and_autonomous_loop_recovery_receipt_20260501.txt": { + "path": "ION/05_context/signals/v97_lead_dev_survival_audit_and_autonomous_loop_recovery_receipt_20260501.txt", + "sha256": "6dfd16d4300ed9fbbfa098a0e2f296908c05291304de1601d16e4d6d8761284d", + "size": 1198 + }, + "ION/05_context/signals/v98_master_orchestration_automation_and_ui_recovery_receipt_20260501.txt": { + "path": "ION/05_context/signals/v98_master_orchestration_automation_and_ui_recovery_receipt_20260501.txt", + "sha256": "15c542b0dea42fe43cd07b2e105ef9872a84e063711cbf997441a9a98f2966e3", + "size": 1401 + }, + "ION/05_context/signals/v99_agent_context_continuity_and_runtime_separation_receipt_20260501.txt": { + "path": "ION/05_context/signals/v99_agent_context_continuity_and_runtime_separation_receipt_20260501.txt", + "sha256": "292e39c754bbd7ca76f8ab2d8ad0236e7da9666f550573f1b73ab6c0893b3e12", + "size": 873 + }, + "ION/05_context/steward_handoffs/ION_Steward_Implementation_Handoff_API_Provider_Orchestration_Model_Economics.md": { + "path": "ION/05_context/steward_handoffs/ION_Steward_Implementation_Handoff_API_Provider_Orchestration_Model_Economics.md", + "sha256": "eb044055a628cce808ced9e9bfdc9b1b7a2921171b78cc69cca9c729d9a54e8d", + "size": 30714 + }, + "ION/06_intelligence/README.md": { + "path": "ION/06_intelligence/README.md", + "sha256": "6a99fd18e64d6440145e99df30d9638409cd7e5b5a4f54e13511d47c8ca319bc", + "size": 1191 + }, + "ION/06_intelligence/archaeology/vestige/alerts/README.md": { + "path": "ION/06_intelligence/archaeology/vestige/alerts/README.md", + "sha256": "fd77d346570a8c88f9a74260d557a91dd9ba83e685963d01aa6035ab22db565d", + "size": 202 + }, + "ION/06_intelligence/archaeology/vestige/continuity.md": { + "path": "ION/06_intelligence/archaeology/vestige/continuity.md", + "sha256": "d9ab7f82cdb64c35866c8656f9de550630041a0673494a8f5d53c601ca058422", + "size": 2259 + }, + "ION/06_intelligence/archaeology/vestige/open_threads/2026-04-12_current_phase_staffing_and_semantic_identity.md": { + "path": "ION/06_intelligence/archaeology/vestige/open_threads/2026-04-12_current_phase_staffing_and_semantic_identity.md", + "sha256": "15b65806807c833a31b341ef53f793da1ebc704dacc7dada43a61414bc2bbc9d", + "size": 1605 + }, + "ION/06_intelligence/archaeology/vestige/open_threads/README.md": { + "path": "ION/06_intelligence/archaeology/vestige/open_threads/README.md", + "sha256": "ef460e23bc6f08779213caead03595735e015a592eadd27b931139082c1c658a", + "size": 311 + }, + "ION/06_intelligence/archaeology/vestige/reports/2026-04-03_continuity_roundtable.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/2026-04-03_continuity_roundtable.md", + "sha256": "4d1d40129140d0beac56abb4644480c35c59cc3acebe2eedf28c488ad8cdd6b3", + "size": 9681 + }, + "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_bridge_packet_family_archaeology.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_bridge_packet_family_archaeology.md", + "sha256": "75fcea5f1144f7416601125977790b4eb60fcda6638abf37361b51897102a72f", + "size": 6491 + }, + "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_current_phase_staffing_and_semantic_identity_archaeology.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_current_phase_staffing_and_semantic_identity_archaeology.md", + "sha256": "0c5f2186c9bc934b33bdcb91100472562bf070e8aa3aae188096a3dbd3f15d09", + "size": 7140 + }, + "ION/06_intelligence/archaeology/vestige/reports/README.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/README.md", + "sha256": "ca3dbe7bc91026a0f9c326cd4ce2e31724e1d14d3c8e37d40579574800e3d8ef", + "size": 344 + }, + "ION/06_intelligence/archaeology/vestige/watchlist.md": { + "path": "ION/06_intelligence/archaeology/vestige/watchlist.md", + "sha256": "b26d02ce22f6d02beaab27b41dceafc3a2b60deaffd871671feefc18c24be3fa", + "size": 2277 + }, + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_ION_PLAN_audit.md", + "sha256": "34822fdb725617059d447e0bfca6aa9a9823c80a2a677cc7d0f25be6737db082", + "size": 10864 + }, + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_rev2_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_ION_PLAN_rev2_audit.md", + "sha256": "0744a3b6d7aabaeca7d8119af7bf211a7eab1b3d22b8b5e036bfb74e65858a9e", + "size": 8610 + }, + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_targeted_fixes_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_ION_PLAN_targeted_fixes_audit.md", + "sha256": "83c7f898fa6c1d2a9033bf47b6d6c13748eabaa31a72c652766ccd7c89396b17", + "size": 9988 + }, + "ION/06_intelligence/audits/2026-04-02_phase0_schema_set_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_phase0_schema_set_audit.md", + "sha256": "28dd69740b26d69f6e89d22a942bd12fb00f58045cf665793b118c8f96464ac2", + "size": 10554 + }, + "ION/06_intelligence/audits/2026-04-02_vizier_latest_work_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_vizier_latest_work_audit.md", + "sha256": "81ea0963f656e3121d3b53a94034930b895ed76ddc6b3cf38aae16f348612d9b", + "size": 12503 + }, + "ION/06_intelligence/audits/2026-04-03_codex_runtime_readiness_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_codex_runtime_readiness_audit.md", + "sha256": "e47fd73249e78a9c523ec22cb83f34840d780ae9c4475853f744fe049280e5f0", + "size": 5948 + }, + "ION/06_intelligence/audits/2026-04-03_continuity_recovery_delta_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_continuity_recovery_delta_audit.md", + "sha256": "e01218197c94b66c682410b877caedeab35d2a4096e3ef37352d1932908918c2", + "size": 8837 + }, + "ION/06_intelligence/audits/2026-04-03_continuity_roundtable_kickoff.md": { + "path": "ION/06_intelligence/audits/2026-04-03_continuity_roundtable_kickoff.md", + "sha256": "ebb9e2e5875ff8b0d39023dcfd0c8ffc086289fa1358309ac23bdffca1b1412e", + "size": 6182 + }, + "ION/06_intelligence/audits/2026-04-03_continuity_stabilization_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_continuity_stabilization_audit.md", + "sha256": "33b1318ee1b29bde6ab8b07dc012945f8b9d85c7ef7b9c3f527f6f657deb9965", + "size": 12257 + }, + "ION/06_intelligence/audits/2026-04-03_nemesis_ratification_assessment.md": { + "path": "ION/06_intelligence/audits/2026-04-03_nemesis_ratification_assessment.md", + "sha256": "0a2e8fd767b3474af8c413178add724e8ccb94bb0a3ab4af330748c0ddcdf214", + "size": 7066 + }, + "ION/06_intelligence/audits/2026-04-03_vizier_tightening_pass_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_vizier_tightening_pass_audit.md", + "sha256": "c02f6940dc94e268c39d53ef1f281ad7c7a7bc010dc5215801cc57cc348b037a", + "size": 8919 + }, + "ION/06_intelligence/audits/2026-04-04_codex_recursive_witness_drift_rollback.md": { + "path": "ION/06_intelligence/audits/2026-04-04_codex_recursive_witness_drift_rollback.md", + "sha256": "2ad8f234d762f79c8e536345652e26f50c56d1f68ea87311b9108ac06a0d1663", + "size": 2331 + }, + "ION/06_intelligence/audits/2026-04-08_ion_operational_rebase_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-08_ion_operational_rebase_audit.md", + "sha256": "0d5ddb855948b377c1581391bd383fca9cb7a39003800b62ce53fc7912a215e3", + "size": 4627 + }, + "ION/06_intelligence/audits/2026-04-08_workflow_module_alignment_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-08_workflow_module_alignment_audit.md", + "sha256": "9fa0598495de14723f10918861650466f17b70cfc48335a2bfe7dce3e6e92814", + "size": 2285 + }, + "ION/06_intelligence/audits/2026-04-08_workflow_self_use_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-08_workflow_self_use_audit.md", + "sha256": "0f3705d26040d9de968f968eea3c1bbff71003e1b54f5a73d376e87921094584", + "size": 5247 + }, + "ION/06_intelligence/audits/2026-04-12_phase1_browser_mount_boundary_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-12_phase1_browser_mount_boundary_audit.md", + "sha256": "6b9eb12967ae6f933c6bd1b0a228003ea3f86937c5f99ac55848b0c140e36cde", + "size": 1887 + }, + "ION/06_intelligence/daimon/vizier/dissent_ledger.md": { + "path": "ION/06_intelligence/daimon/vizier/dissent_ledger.md", + "sha256": "fb62d49535cc5b4f61963a2cd5a78503da3d1d74e9951f3f446813197caeae45", + "size": 2136 + }, + "ION/06_intelligence/daimon/vizier/future_answerability.md": { + "path": "ION/06_intelligence/daimon/vizier/future_answerability.md", + "sha256": "4a36baa2179718760482e0099857d0680d3c600c213b695f52588beb565ec5b5", + "size": 3798 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_boot_and_surface_drift_matrix.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_boot_and_surface_drift_matrix.md", + "sha256": "02957a1b6728e64c8f9fc0195a87295bf5df6e187ae27fbf8a7d0b8d26003ad2", + "size": 9984 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_continuity_roundtable_haunt.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_continuity_roundtable_haunt.md", + "sha256": "7a836c6755188b8ff4c07137992a1c88b2f5a6af5f2227b9c7bc115c51ccde82", + "size": 8029 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_ratification_package_haunt.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_ratification_package_haunt.md", + "sha256": "c1b1b3d8d83ee3291a58ff046e4c7b42eceb9663f62ecd71d89ee94aaff0dc43", + "size": 5344 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_root_projection_reconciliation_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_root_projection_reconciliation_vice.md", + "sha256": "6e6c6d18fdebca900ae8280bc3f0882e6343c86765ad80e997d1bc7712e0a5c7", + "size": 5470 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_decision_request_snapshot_concurrency.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_decision_request_snapshot_concurrency.md", + "sha256": "4c876ef7443133717be6fc9eec067699d431725de4b0a36c8d14f8bb2163bda7", + "size": 5824 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_delta_after_reconciliation_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_delta_after_reconciliation_vice.md", + "sha256": "9ecbc6c93f790f02b818f41255644b1938cd219940258d0844a3620af5ca4586", + "size": 4189 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_next_move_operational_landing_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_next_move_operational_landing_vice.md", + "sha256": "f9358bcb16996a69ee1e6d645817e87dcdc514b7af88727cc0ee90abc5ef7f7f", + "size": 7771 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_supervisor_continuity_classification_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_supervisor_continuity_classification_vice.md", + "sha256": "13335dc3649a57ae606dcdf499d75b68782d0bf7f9d61ac563fa42c998edc195", + "size": 6726 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_checkin_convergence_and_proof_loop_haunt.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_checkin_convergence_and_proof_loop_haunt.md", + "sha256": "b9150302cd389602030a87e4fb44fa9fe4de79d9f9184b90b4d02b8e35fc1e41", + "size": 6691 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_objective_timeline_snapshot.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_objective_timeline_snapshot.md", + "sha256": "d088821a1687fb99082c0b1169f7643da4192f13ea20cfa3f23fd8e52c46c8f0", + "size": 13065 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_vice_ratification_assessment.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_vice_ratification_assessment.md", + "sha256": "0e5ba5eb72031337d2706502d8b8e082eb1424578a9a6e863136cf8d554122a6", + "size": 8291 + }, + "ION/06_intelligence/daimon/vizier/shadow_continuity.md": { + "path": "ION/06_intelligence/daimon/vizier/shadow_continuity.md", + "sha256": "4e07ef1a2ba95dfb2501f7a4e97bb20f556612c6d8d45f12ce27817df0a0c2bb", + "size": 4175 + }, + "ION/06_intelligence/daimon/vizier/unresolved_contradictions.md": { + "path": "ION/06_intelligence/daimon/vizier/unresolved_contradictions.md", + "sha256": "6e2b6837abf5b4ef316d6fcc5c09b9750bdfa0206896800ecd9eb5f421d7b512", + "size": 3234 + }, + "ION/06_intelligence/decisions/2026-04-17_aim_ion_aim_os_classification_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_aim_ion_aim_os_classification_canonicalization_decision.md", + "sha256": "25d41b6bcf5b4fba1ea82c39dbb6a9d3f9f9c294899054f31c7e7e5e7931f4cc", + "size": 9007 + }, + "ION/06_intelligence/decisions/2026-04-17_external_transport_shell_current_phase_disposition_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_external_transport_shell_current_phase_disposition_decision.md", + "sha256": "37ed0529c7c19ab49e44dc5c7d3b479a32a56d59b8652cf353e81a9c9953ebbc", + "size": 8831 + }, + "ION/06_intelligence/decisions/2026-04-17_packaged_root_nested_path_disambiguation_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_packaged_root_nested_path_disambiguation_canonicalization_decision.md", + "sha256": "525da6bc40bc5ff7cd2a82d1b908a08e007c39a304c0f0f0d7cb6a84d6f44d2b", + "size": 7169 + }, + "ION/06_intelligence/decisions/2026-04-17_retained_dual_center_settlement_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_retained_dual_center_settlement_canonicalization_decision.md", + "sha256": "45d0498f29c261af0aadc99cc31e6f20a6022ca72aa4be670497d2f7d6c6e913", + "size": 6734 + }, + "ION/06_intelligence/decisions/2026-04-17_root_authority_carrier_export_bundle_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_root_authority_carrier_export_bundle_canonicalization_decision.md", + "sha256": "9e6c0fe70f23c09b6eda43c809d568fcadb63c06c9142c6377f6a16877ef1270", + "size": 9257 + }, + "ION/06_intelligence/decisions/2026-04-17_top_level_production_surface_promotion_map_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_top_level_production_surface_promotion_map_canonicalization_decision.md", + "sha256": "bcaad1708b833907261baa10629fe86b576b93d5617c95169620313d609cb81a", + "size": 12439 + }, + "ION/06_intelligence/decisions/2026-04-17_workspace_root_authority_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_workspace_root_authority_canonicalization_decision.md", + "sha256": "64919b90e192ec4b7ba6fca2b53cbad0e56a88745ec98901d7707a64a7b9b519", + "size": 8199 + }, + "ION/06_intelligence/decisions/T08-T14_authority_resolutions.md": { + "path": "ION/06_intelligence/decisions/T08-T14_authority_resolutions.md", + "sha256": "716e9883950e5cf8e8c208ac10a7d8c3b188a8b62895e01a616165fb7e21c993", + "size": 15083 + }, + "ION/06_intelligence/decisions/relay_vestige_continuity_class.md": { + "path": "ION/06_intelligence/decisions/relay_vestige_continuity_class.md", + "sha256": "4d41a034b642f9c658d44adbf02d02aeb6e8a52ed3e62d56e55561bd9acf9be5", + "size": 1484 + }, + "ION/06_intelligence/evidence/README.md": { + "path": "ION/06_intelligence/evidence/README.md", + "sha256": "1873fb2afab5559eae98c687a7d2e01515fdd1c95fe320ada0aee9896a8d73b0", + "size": 560 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_acceptance_matrix_and_definition_of_done.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_acceptance_matrix_and_definition_of_done.md", + "sha256": "2f4f12b28742cf9adb9334de5d176eac93569e9f68b1317958b933dc48ecf3f1", + "size": 4906 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_completion_phase_architecture.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_completion_phase_architecture.md", + "sha256": "112bfc0d8c982bca6e7b4110eefbc494f0ea2e92ea6cda2181e0188026009c09", + "size": 8819 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_dependency_graph_and_critical_path.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_dependency_graph_and_critical_path.md", + "sha256": "309b7b36f8e181e1e88c4dd28816bd19a2eea1d784e3223923b02b360a704345", + "size": 3793 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_execution_tracks_and_workstreams.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_execution_tracks_and_workstreams.md", + "sha256": "369d53058cc8539bc796d99b1bfe35253cdaf3ffe7441c83387eb87de1a95495", + "size": 6367 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_project_completion_orchestration.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_project_completion_orchestration.md", + "sha256": "69145e16af84446cb97454fccc737765c395e1e1ec84631d8103823fa2cb8d0a", + "size": 7668 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_risk_register_and_controls.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_risk_register_and_controls.md", + "sha256": "f0b7aa6c595bc7bf80f78a63c227c91c6de516d45b1c70f9e2e00b261a44d7ef", + "size": 4383 + }, + "ION/06_intelligence/orchestration/2026-04-09_current_state_trajectory_and_l2_execution_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_current_state_trajectory_and_l2_execution_assessment.md", + "sha256": "a628209043227cc5dae7c8b1b9f2239d4e7abdfcd9edbf6dbe3b6d148ad0c104", + "size": 4889 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_current_state_vs_end_state_roadmap.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_current_state_vs_end_state_roadmap.md", + "sha256": "97c6613e7231c0ef2939eaefab70eaddb61dbac5f368fc6f0388bbf857c2f54d", + "size": 5840 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_full_system_architecture_and_end_state_framework.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_full_system_architecture_and_end_state_framework.md", + "sha256": "dfd38a22025bee56c1715695346d49e98788fe888c56cb9ac393981fb2185e04", + "size": 18510 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_horizon_tightening_and_enactment_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_horizon_tightening_and_enactment_model.md", + "sha256": "66084a333552a24a384f0fa65d999c6869585fd4e1f94d7a5fcf2def51a65288", + "size": 3690 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_ide_and_operating_substrate_vision.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_ide_and_operating_substrate_vision.md", + "sha256": "9acb04e746f3f1eb1af46ecabc08274a02026309290182a1faa5d34f548c1032", + "size": 3705 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_kernel_law_and_runtime_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_kernel_law_and_runtime_model.md", + "sha256": "c572d2b1dbbb6f0a0d1099e31f8a677d2ac8daed32936db7e680fbe34f1541c2", + "size": 4673 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_packet_handoff_and_takeover_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_packet_handoff_and_takeover_model.md", + "sha256": "0fb387f10a034250e4730b45fd527ba425fb229736a2aad08414c6c499a551ec", + "size": 4075 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_scheduler_and_orchestration_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_scheduler_and_orchestration_model.md", + "sha256": "c2f2c1f408de0ff6e6cf483a98eaccee9c118585bfb68c0157ca5c624c4166dc", + "size": 4836 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_system_overview.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_system_overview.md", + "sha256": "9d28df58149ce68ae83ff0a3c1a1e2d7db2999fd129cd0168ca457e0c7133b08", + "size": 5521 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_workflow_and_continuity_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_workflow_and_continuity_lifecycle.md", + "sha256": "a4d63eeb5303a71dc4505145e09f0298993486ddfb31e97447d2f5fe4772c9f1", + "size": 4363 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_k6_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_k6_state_forward_path_and_codex_handoff.md", + "sha256": "f092e1e054ee5348076b070b24c49a8ad1ab9e6d2662b36621fbac56e1dde7a9", + "size": 7471 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_k7_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_k7_state_forward_path_and_codex_handoff.md", + "sha256": "9390bba257c793e7493d47bd505639a8834cd715bdeda7e058ebceb7f46f7dd9", + "size": 6984 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l0_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l0_state_forward_path_and_codex_handoff.md", + "sha256": "6841fc64913c7b9b93dbf6f3c9c67d7080ddac40566b74d97645d427a0b273ae", + "size": 7028 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l1_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l1_state_forward_path_and_codex_handoff.md", + "sha256": "25c18c1622a6245b677f0650848773759f3189637bb13b8e72725cfe7c8ad9b6", + "size": 7477 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l2_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l2_state_forward_path_and_codex_handoff.md", + "sha256": "418b25ce19cec635c429dc1f39239f922d8e5031a9853eb7f5daed3c2f3261f0", + "size": 6088 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l3_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l3_state_forward_path_and_codex_handoff.md", + "sha256": "5b08594be2cb2cad0862d3c9629acd3201eaf0eedfd7acd32f75241c763b7038", + "size": 6163 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l4_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l4_state_forward_path_and_codex_handoff.md", + "sha256": "add52c1bcab09197bc68fa204adeb34ec09a351c322244e1d24237a235ffe266", + "size": 6336 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_m0_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_m0_state_forward_path_and_codex_handoff.md", + "sha256": "3cff7d07428173071db1c7710d7e00314ce3246362d2ea262b223543e9f23c31", + "size": 4891 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_m1_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_m1_state_forward_path_and_codex_handoff.md", + "sha256": "3c4df09d9e69df3b0d21ae9b00c98e5ea91269981b83c197a31aaa9083c4bd95", + "size": 3971 + }, + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_activation_protocol_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_bootstrap_activation_protocol_next_packet.md", + "sha256": "583ad8a9a28ff73839cb2d07a28c8723e447478da949aebf41007ae65a9dcf07", + "size": 1997 + }, + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md", + "sha256": "ebe5f634b82840d2292c3f8a153401e0f68ec91e38e691f7b95d4d01e6394726", + "size": 1816 + }, + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_manifest_protocol_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_bootstrap_manifest_protocol_next_packet.md", + "sha256": "f741ef471d216ee3ef161ff5cc1c00cc61df36562be2bcda6867793c0956e209", + "size": 1740 + }, + "ION/06_intelligence/orchestration/2026-04-10_daemon_bootstrap_bridge_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_daemon_bootstrap_bridge_next_packet.md", + "sha256": "9fa3b64891960baf4097820ec1fd73d68ef1d328feafbfa4905d712e69cf880c", + "size": 2222 + }, + "ION/06_intelligence/orchestration/2026-04-10_ion_kernel_constitution_self_use_alignment_and_forward_path.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_ion_kernel_constitution_self_use_alignment_and_forward_path.md", + "sha256": "39f8c9c0b3cee80322e79e845e2e9b89de8d96d85a5fe3fff8f0b4abff30cf84", + "size": 2547 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m10_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m10_state_forward_path_and_codex_handoff.md", + "sha256": "3e9c2c2a1012d66cf356f065520355cad9afd4523a26cf0fd836da78c1fd9dd0", + "size": 1616 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m11_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m11_state_forward_path_and_codex_handoff.md", + "sha256": "63069ad9aab9e194852f9e1063e51e3633fe453b47c1be4ca6134ee212ddef46", + "size": 1620 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m12_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m12_state_forward_path_and_codex_handoff.md", + "sha256": "ab0bcb8d34a4fd5f3a28577034f84095d65b49069c5d26dda1fad414bb1759af", + "size": 2141 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m13_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m13_state_forward_path_and_codex_handoff.md", + "sha256": "721de9dcdab5797530172379b3ba472dde6417c71e39555802859047963e33e2", + "size": 2362 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m14_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m14_state_forward_path_and_codex_handoff.md", + "sha256": "a6197d811b511fef8e20e028cb490ebce3e693af10cd9834ca43d06a66d6860c", + "size": 1851 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m15_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m15_state_forward_path_and_codex_handoff.md", + "sha256": "bdc928ca654fcbaa2ad5eeba965cca510843f1fd608f5e28d0dc56586ff2f101", + "size": 1869 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m16_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m16_state_forward_path_and_codex_handoff.md", + "sha256": "6857d395c35273ec66e66ce77f4cda2a4ab6b5621ac253b6a27f041e36be9af8", + "size": 2709 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m2_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m2_state_forward_path_and_codex_handoff.md", + "sha256": "deb899f34e5d7ea80e9b76ea2562d7ec93a2f8dd550c137d1bdeab376b1ffb44", + "size": 2818 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m3_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m3_state_forward_path_and_codex_handoff.md", + "sha256": "6a5df3342c0fab93a04b2f8b32ad7906b934342132ed87ea558b390d5fb18507", + "size": 2947 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m4_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m4_state_forward_path_and_codex_handoff.md", + "sha256": "a7b00d0675f604b1848c17c4cac41909af3a7b4d381706470f9c5ede726165b2", + "size": 3002 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m5_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m5_state_forward_path_and_codex_handoff.md", + "sha256": "9d6aa4b467f86fddda5082ec01a301e1c1dee6a746f4d67620d36c020c51660f", + "size": 1874 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m6_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m6_state_forward_path_and_codex_handoff.md", + "sha256": "a6e1cb74e73ed2453da382779b51b58fae64e87bb0845677bddad29965c740ea", + "size": 1881 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m7_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m7_state_forward_path_and_codex_handoff.md", + "sha256": "2452ffbda8a6a53cfc392f2ff51ad4d890f59f7a6143db72608bfb308b478f58", + "size": 2385 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m8_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m8_state_forward_path_and_codex_handoff.md", + "sha256": "bc4e90ffc3f04391ec716e7389330b14fb31fd95f8e4127ff341fb2b15976abf", + "size": 937 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m9_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m9_state_forward_path_and_codex_handoff.md", + "sha256": "7f83b430a567e00b555dc91ddc44cefedba80c7056e3fc3acc0a6b4737e9f215", + "size": 1428 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_branch_parallel_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_branch_parallel_proof_hardening_and_codex_handoff.md", + "sha256": "68ee26e779aae7352458b7e141436c70f86c203116bcd5177d2e7aa476483f52", + "size": 2194 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_external_api_parity_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_external_api_parity_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "a7c6e460187e5acb5f42f7805c381ed36fa0281e766e34c748a38b925925fe82", + "size": 2697 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_horizon_refinement_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_horizon_refinement_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "b9018f6610b83ecb382fd9e1093fa81e929a767c7560d851f1262213a0e1e108", + "size": 2374 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_proof_hardening_and_codex_handoff.md", + "sha256": "3ed666e84acba9ceacfdcf86e22a3cab9f16ed4dda1061a0879c71e878073e31", + "size": 1970 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_recovery_replay_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_recovery_replay_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "9fbe6732ccd54a6583296a54cc0a71e29916dd2057a60006381647f97d0f3355", + "size": 2182 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_runtime_assisted_sequence_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_runtime_assisted_sequence_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "fe0ce1296d9a7f5acf51d5e2e05f49023a8b9a642d18a6bc144c883b20707669", + "size": 2584 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_scheduler_law_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_scheduler_law_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "fb967198ea315d86ffaa1d8197e0dbed5d49acb9b19b46cc2c4fb1b7710382f7", + "size": 2484 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_state_forward_path_and_codex_handoff.md", + "sha256": "fc2e810548765469ec030b04ce7a8f47215ca00053ea350d0937e9df6bf63078", + "size": 2917 + }, + "ION/06_intelligence/orchestration/2026-04-12_composer2_support_field_setup_and_operator_runbook.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_composer2_support_field_setup_and_operator_runbook.md", + "sha256": "e02c33c7287e925ba975ded4d3a8748faaff91eefc61072c38c5f50d1f1b8701", + "size": 5796 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_branch_active_center_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_branch_active_center_map.md", + "sha256": "d6f61a79c59734e7812bd341049c471ddcbb432434b96d3ee92f862c0977f0ed", + "size": 6229 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_assessment.md", + "sha256": "3304e9f1e11f1e55fc1260ce411a0e819bef0d64ae79799a8650c1263235d7de", + "size": 3649 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_record.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_record.md", + "sha256": "af101f03eaa82228ee5e7baaa1dea7814a5f479938335ac96e5537e8057cc5eb", + "size": 2471 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_phase_orchestration_management_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_phase_orchestration_management_map.md", + "sha256": "b226a564b19c578f977d58228a856467aeea0ec60312bc0684ad65911bec0963", + "size": 2917 + }, + "ION/06_intelligence/orchestration/2026-04-12_governed_template_context_feed_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_governed_template_context_feed_map.md", + "sha256": "146fc7315575d736d78bf6da53086c585af0eaec62f5e61cb1cd5e92aa2758ee", + "size": 5990 + }, + "ION/06_intelligence/orchestration/2026-04-12_ion_acceptance_evidence_bundle_current_state.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_ion_acceptance_evidence_bundle_current_state.md", + "sha256": "a396928c8ed35f0f5b49a477ab26285cbc4fa7b4532b8e3e6fb19768ea5aa1f8", + "size": 11928 + }, + "ION/06_intelligence/orchestration/2026-04-12_phase1_template_governance_rollout_plan.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_phase1_template_governance_rollout_plan.md", + "sha256": "90bb4d2fd5e47f145d78dbe1ca66bcc3281da517648390c3773b9d035e7d5b7d", + "size": 7134 + }, + "ION/06_intelligence/orchestration/2026-04-12_post_phase1_template_governance_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_post_phase1_template_governance_state_forward_path_and_codex_handoff.md", + "sha256": "366fea5f2df202ea3d61ed656e44be9743d78a27a69dba65603c3d23016c3775", + "size": 3542 + }, + "ION/06_intelligence/orchestration/2026-04-12_post_ratification_execution_preparation_and_startup_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_post_ratification_execution_preparation_and_startup_map.md", + "sha256": "84405036d563c5950222cd36f9af5347da77f303e2d655007e6b9949b4401cf4", + "size": 5160 + }, + "ION/06_intelligence/orchestration/2026-04-12_staffing_and_semantic_identity_codex_consolidation_proposal.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_staffing_and_semantic_identity_codex_consolidation_proposal.md", + "sha256": "29c5f5d877ab672e52d61d8aa5526bfcdab23aecbc575ced9e5232bf722c7fc0", + "size": 4800 + }, + "ION/06_intelligence/orchestration/2026-04-12_steward_current_phase_truename_and_template_update_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_steward_current_phase_truename_and_template_update_note.md", + "sha256": "594fea561033c738c9e693733d3bce6089c6a751605180410bce3e746fd68f4a", + "size": 642 + }, + "ION/06_intelligence/orchestration/2026-04-13_consolidation_state_remaining_work_and_evolution_path.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_consolidation_state_remaining_work_and_evolution_path.md", + "sha256": "9184d71ffa694daa5b4b55a22c6d8223f943cbd0bf1b4b4d969f7bca2d86a771", + "size": 6396 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass10_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass10_enrichment_note.md", + "sha256": "3224706672103483d80c094aa0c1e9dcc2eef87a7abb2466852f3e494a5c055b", + "size": 990 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass11_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass11_enrichment_note.md", + "sha256": "ae5ca4202d5133319ac7546a5e89f711747a82d94d60aa80a7c2a7df2410511d", + "size": 743 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass12_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass12_enrichment_note.md", + "sha256": "57f934779d291f1415b9395f471337ea42eb2c18283ce7d55e1fc9dba0b516c6", + "size": 741 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass13_atlas_base_stabilization_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass13_atlas_base_stabilization_note.md", + "sha256": "509bdc5c78ba5ae35d05b290c5a73e8eb78fe06cb833d881d6a6b77bafd00257", + "size": 652 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass14_working_atlas_base_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass14_working_atlas_base_note.md", + "sha256": "e169b574d4a352712d4ccaa9560cc0af63ff71d05fec9607c989553d5995be12", + "size": 593 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass15_operating_layer_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass15_operating_layer_note.md", + "sha256": "e854b4fffe84075a7e3fa5be2025e647273d05e953bfd4c5138beb10ebb09f4d", + "size": 590 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass16_packet_gate_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass16_packet_gate_note.md", + "sha256": "7d17428d0d79df616e626dcb25a55c0c2070ff98f28f52598445577c824cc288", + "size": 984 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass17_work_start_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass17_work_start_examples_note.md", + "sha256": "2321c4f8012af567f313b604c012c22227731edd01098aeaf7a8dc1d73fea012", + "size": 1183 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass18_question_class_control_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass18_question_class_control_note.md", + "sha256": "db92379b4ddfe5c2560cbbf76efd38893c165622528dbb6da0212c66660c8b24", + "size": 1411 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass19_answer_output_control_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass19_answer_output_control_note.md", + "sha256": "87f98cb96e5200703e24c1914113ce959c53e7cac5f300bf11f647a6fae3b724", + "size": 788 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass20_landing_horizon_control_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass20_landing_horizon_control_note.md", + "sha256": "ad8c612a9bc3422682a340ad15b5fda14bfb22a12ac583997605c8d6fea2dbfb", + "size": 1228 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass21_control_card_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass21_control_card_note.md", + "sha256": "d7aa9b5303b4f3dac885b261f1ef74cc1863d3eb23b46dbb906f336da4b7e12a", + "size": 936 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass22_lifecycle_demonstration_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass22_lifecycle_demonstration_note.md", + "sha256": "0693e1ef8f61c454a46b62233b12e8a6c7a92f819f25355471cdc4a036457702", + "size": 1010 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass23_stable_operating_layer_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass23_stable_operating_layer_note.md", + "sha256": "689a4282a48f27bbeee5e1465c88882cbe2d8698903298ca39d837f5b6fb18ca", + "size": 1256 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass24_project_control_kernel_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass24_project_control_kernel_note.md", + "sha256": "2552154a6cc0ebb452f163290b3bc6524459e0003364e26f5e9ee19c4ed75927", + "size": 866 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass25_kernel_escalation_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass25_kernel_escalation_note.md", + "sha256": "b556d88afde006db61251a648510afcff43b56874a65aa082ab362f6143dc07d", + "size": 657 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass26_return_reassessment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass26_return_reassessment_note.md", + "sha256": "7241623bbbeede1a0ad6682a5ff1bdf69f659828800568f36aef327cae9f1d41", + "size": 573 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass27_kernel_freeze_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass27_kernel_freeze_note.md", + "sha256": "bb8ef412016b1d024ccc8e7b30a663754083b4379232401c7d54469cfbf576a6", + "size": 1157 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass28_kernel_thaw_protocol_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass28_kernel_thaw_protocol_note.md", + "sha256": "411b5d3d49e18c83d3e2fd5ad9713191b63daf662b9e78afd77bc0e85bf178f5", + "size": 829 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass29_kernel_revision_lifecycle_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass29_kernel_revision_lifecycle_note.md", + "sha256": "9d3693198f898ad700a7977340440408f18ced94d0765c0214edd1b1960cfefb", + "size": 1569 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass2_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass2_enrichment_note.md", + "sha256": "4e94fd5dd7875ee1aef7492ccee48d264103dc5bb04ed5f98f2291b33f9e5aa0", + "size": 1239 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass30_kernel_governance_cadence_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass30_kernel_governance_cadence_note.md", + "sha256": "8d681c4959e303937b5721562b5675231c7ba978985444263e3346693695e937", + "size": 689 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass31_governance_outcomes_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass31_governance_outcomes_note.md", + "sha256": "80617b3fc1edb6d63ed3230ee14668b7baf3a37071d59d9c996cf8619ff6f76d", + "size": 556 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass32_era2_transition_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass32_era2_transition_note.md", + "sha256": "652c783e47d05d57e3b0c195156106a49311af1eff5171b20d5dc1fcb0a4175a", + "size": 589 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass33_lane_a_meta_template_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass33_lane_a_meta_template_packet_note.md", + "sha256": "73e8ff510594f11238d0b771291d19f178e31611632eb79a0cce4019ad66e4c5", + "size": 806 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass34_lane_b_activation_authority_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass34_lane_b_activation_authority_packet_note.md", + "sha256": "e238005a973830e38ef98ea47b49cb727e4224e9d2d39d7f9e1dd22bfee50c29", + "size": 1652 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass35_lane_c_runtime_session_api_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass35_lane_c_runtime_session_api_packet_note.md", + "sha256": "80210eec43ed8ef16bb00d28aabeb5708080db5516cd6e7d49d703e834fbdd1a", + "size": 1851 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass36_runtime_surface_design_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass36_runtime_surface_design_packet_note.md", + "sha256": "615da33eb99e734e196a7912494da6af7aada325bbe38b2f810e87e200c8132b", + "size": 1225 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass37_activation_surface_design_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass37_activation_surface_design_packet_note.md", + "sha256": "dbc8a3a6357d4c254f6a1f52172013da687b16e156d75914ea17be680b0a7282", + "size": 1157 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass3_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass3_enrichment_note.md", + "sha256": "d550331c00f7a5b534c63c0e7350f37ecc9af1dea4c8965ac3ff004b6d0f44a6", + "size": 1111 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass4_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass4_enrichment_note.md", + "sha256": "7fb69aeb30392f46f2d1f92c6def9f2a18d6a1253866cfa83c843deff24da964", + "size": 709 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass5_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass5_enrichment_note.md", + "sha256": "ac297153f1787a2732d4f1f98346ff398bc31d19ca579d40feddf20e9b908e06", + "size": 798 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass6_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass6_enrichment_note.md", + "sha256": "22efc639f1d60324dffab53c580f9263caf81c342caecaea057931346c41092a", + "size": 1211 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass7_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass7_enrichment_note.md", + "sha256": "1d24e9368580bc4ffbc6a5659111a4a755c6a78c3fa632eb907fb403944191b0", + "size": 1023 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass8_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass8_enrichment_note.md", + "sha256": "164e247996968c8a5b32bb636d8fb3102e80670fc0835e41ff9e324ac426f74e", + "size": 1169 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass9_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass9_enrichment_note.md", + "sha256": "bf25b5b459025866e237566f8d0584a8580f7e28462c1d806a4f5ae87ed71e4b", + "size": 1203 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_program_index.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_program_index.md", + "sha256": "14c66e35d95d4b66fbf3c452e6f9286a22b666dace515ae68a8d57aba19c33d0", + "size": 30975 + }, + "ION/06_intelligence/orchestration/2026-04-13_current_repo_authority_stabilization.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_current_repo_authority_stabilization.md", + "sha256": "6e5226924b81141bbb53b63e76ee3553f9eeede71cc835c99e2f2d2464706ac7", + "size": 2010 + }, + "ION/06_intelligence/orchestration/2026-04-13_fractured_core_recovery_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_fractured_core_recovery_map.md", + "sha256": "526a3b8b2df4fddfc622a90c6af1ee71d87c6d73e1c48bac032013e0c839923c", + "size": 1183 + }, + "ION/06_intelligence/orchestration/2026-04-13_master_recovery_record.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_master_recovery_record.md", + "sha256": "40d8d42f2dff4254c8232a8cc56fa57ddfb694b8958426bb3320455ad0acef87", + "size": 2304 + }, + "ION/06_intelligence/orchestration/2026-04-13_prior_audits_failure_record.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_prior_audits_failure_record.md", + "sha256": "58efbc24ea5dcd8e6b43d11592947d398c88b8b3ad9272f89e4c53f601f75317", + "size": 1090 + }, + "ION/06_intelligence/orchestration/2026-04-13_recovery_program.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_recovery_program.md", + "sha256": "f551a1f106b1f05176b117e390b8d9670dafa2d37b9c2e0750271114683c9765", + "size": 873 + }, + "ION/06_intelligence/orchestration/2026-04-13_staffing_and_semantic_identity_steward_consolidation_proposal.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_staffing_and_semantic_identity_steward_consolidation_proposal.md", + "sha256": "022d8b727bf324d8bc61db7797d13d30aa17055136820fe167256cead4b4dd0a", + "size": 4909 + }, + "ION/06_intelligence/orchestration/2026-04-13_startup_template_feed_and_task_routing_defaults.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_startup_template_feed_and_task_routing_defaults.md", + "sha256": "ee3299f18044ac77ffe2553e6eba4fc565c86febc9f5920eb5334267621a53ff", + "size": 4136 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_fifth_pass_role_and_binding_alignment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_fifth_pass_role_and_binding_alignment.md", + "sha256": "37b2fbf3772436c863a67120d3b3941bbe59dcb1bc0d6ea2a24a254a7998bded", + "size": 1077 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_second_pass_active_surface_alignment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_second_pass_active_surface_alignment.md", + "sha256": "46c51dbda835a153bc72b919bf933a94b7bef11369117c609fcc4a401bb8842b", + "size": 1293 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults.md", + "sha256": "c2140987f4ca0bd00cc560986b634b1d4deae4efa657c92cc937c2305d8208a5", + "size": 992 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_sixth_pass_role_field_and_path_normalization.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_sixth_pass_role_field_and_path_normalization.md", + "sha256": "1adcb3fa310534a8946de1a36454badd0f18eb98d860f9d1b9e85897e406d89c", + "size": 1521 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_third_pass_template_and_example_alignment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_third_pass_template_and_example_alignment.md", + "sha256": "83d5fa8ae88f2d76151175857c85a1cd3705803076bb3a548322abe295550eb4", + "size": 1708 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass38_meta_template_surface_design_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass38_meta_template_surface_design_packet_note.md", + "sha256": "7f923ff8f62e1aebb545edf1c21265d63301a42f6fd21532c6c46d55b2ab0e82", + "size": 1208 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass39_activation_authority_review_draft_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass39_activation_authority_review_draft_note.md", + "sha256": "819ee8dd03add657c5959545bc884cb930235f67ebd9ea0135d6cf9bd9865cdb", + "size": 1277 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass40_executor_lifecycle_review_draft_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass40_executor_lifecycle_review_draft_note.md", + "sha256": "0866845df92a02292bda7138b822a2581819eda82a345b103d342be84eef98ee", + "size": 1532 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass41_activation_lifecycle_interface_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass41_activation_lifecycle_interface_review_note.md", + "sha256": "df7fe59c1e3e94777067aa7cb1e0ccfb1f8a7f03336c25978e438af7a30dfdf9", + "size": 1058 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass42_activation_lifecycle_joint_promotion_candidate_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass42_activation_lifecycle_joint_promotion_candidate_note.md", + "sha256": "65a23404bd3a79810b41e0cd13f53223b750411ce5e64e5d734ab15b8081403c", + "size": 913 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass43_activation_lifecycle_counterexample_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass43_activation_lifecycle_counterexample_review_note.md", + "sha256": "286df04517aa8d38316f99c7d0b432ffffd912ba06c31ee85e4a52495b9f60ed", + "size": 832 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass44_activation_lifecycle_carrier_crossing_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass44_activation_lifecycle_carrier_crossing_examples_note.md", + "sha256": "23607358df4148b9efd5f21b4336b5d446eff5d23800c7d9d5c76f06ed6b390c", + "size": 901 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass45_activation_lifecycle_receipt_settlement_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass45_activation_lifecycle_receipt_settlement_examples_note.md", + "sha256": "d2fe8131e952f78fc3862c35d412d145e8de0bbc69235cb0653c44ff16e4b683", + "size": 1421 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass46_activation_lifecycle_install_path_mapping_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass46_activation_lifecycle_install_path_mapping_note.md", + "sha256": "4b2e1693cbb103acda62f1196b577bfc6584d448a199c16b260c771393a7d118", + "size": 1327 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass47_activation_lifecycle_thaw_readiness_reassessment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass47_activation_lifecycle_thaw_readiness_reassessment_note.md", + "sha256": "b2230b4b465d007a0c74940fd701d094c8007f8a7e686ddd59ad72ef8601a1ed", + "size": 1155 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass48_activation_lifecycle_bounded_thaw_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass48_activation_lifecycle_bounded_thaw_packet_note.md", + "sha256": "73f1b820a410b2a46153285bb6756c4f2b780a9c51ab682a5cff5c2ed58f92f0", + "size": 647 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass49_activation_lifecycle_thaw_closure_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass49_activation_lifecycle_thaw_closure_review_note.md", + "sha256": "a78982e1162c6bd2ac41ebcd776d51022d96ee157ddb8dc75f20d2c26b7e62b6", + "size": 879 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass50_activation_lifecycle_active_law_emission_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass50_activation_lifecycle_active_law_emission_note.md", + "sha256": "46db5f5dc8e17ed8027bbb08af23ccc27765df0f705fd1575e72a20c0ca14288", + "size": 797 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass51_orchestration_board_reset_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass51_orchestration_board_reset_note.md", + "sha256": "48376680d20f23f525a7d14df2e96527fe6ba8359542f541f54c5fa9247f831c", + "size": 1059 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass52_branch_charter_pack_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass52_branch_charter_pack_note.md", + "sha256": "7477a7252c5dcd6a63fb6a09e06108b204e307fc419e039b85b0decd146dc72b", + "size": 998 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass53_lane_c_runtime_review_entry_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass53_lane_c_runtime_review_entry_note.md", + "sha256": "6235226cc47036acd8565f6c23a02219bb9cc83c01613519baaaf28220eebce5", + "size": 1218 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass54_runtime_seam_pressure_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass54_runtime_seam_pressure_note.md", + "sha256": "2e3545fd30352153ccfc34af3721ac9089f9ffb81cb6395df651f05626eb7b0e", + "size": 925 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass55_runtime_worked_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass55_runtime_worked_examples_note.md", + "sha256": "af68492cc4f14ff1405657a64783a8bda8908306c1fe9fabf3a6f4c193cc32f4", + "size": 1104 + }, + "ION/06_intelligence/orchestration/2026-04-17_branch_root_shell_vs_content_root_clarification.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_branch_root_shell_vs_content_root_clarification.md", + "sha256": "d03a5afdcf6aa1da012e48b327bf79be17703c00b03ea11220ca2cd3770c42e4", + "size": 4468 + }, + "ION/06_intelligence/orchestration/2026-04-17_canonicalization_decision_template_surface_change.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_canonicalization_decision_template_surface_change.md", + "sha256": "7f39ea3397c96954f360b9e9d55db37cc930200420c59e47b63e6cbfc8ede9e8", + "size": 2864 + }, + "ION/06_intelligence/orchestration/2026-04-17_class_c_operator_docs_selective_extraction_and_reanchoring.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_class_c_operator_docs_selective_extraction_and_reanchoring.md", + "sha256": "26e611a6e370d6f16cd550f89ae1526657c791dca7945f2862135776d4e76c67", + "size": 3432 + }, + "ION/06_intelligence/orchestration/2026-04-17_external_service_shell_vs_runtime_entry_clarification.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_external_service_shell_vs_runtime_entry_clarification.md", + "sha256": "641e0080f3bf05d935daadb86c27a7ede2a7e2ecd5521da274889ca5dfeac68c", + "size": 4700 + }, + "ION/06_intelligence/orchestration/2026-04-17_post_q005_execution_phase_readiness_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_post_q005_execution_phase_readiness_assessment.md", + "sha256": "ea494e372182cd33f8b61f753125941be11ae78b9b3f7b54ad01188ea7b404a4", + "size": 7962 + }, + "ION/06_intelligence/orchestration/2026-04-17_post_reintegration_canonicalization_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_post_reintegration_canonicalization_state_forward_path_and_codex_handoff.md", + "sha256": "8c92ad41e36a1eb48979a37a7db230692512dff43230259e93f7300d93bad6c6", + "size": 6893 + }, + "ION/06_intelligence/orchestration/2026-04-17_reintegration_state_and_canonical_root_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_reintegration_state_and_canonical_root_assessment.md", + "sha256": "88fed362d21e6f66703fd9b513aac71c911dc1225492f032e3d73e60f02175a0", + "size": 11014 + }, + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_current_carrier_exercise_receipt.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_current_carrier_exercise_receipt.md", + "sha256": "ce752e353c97df98be84025f7083f3f19a0c90334a8266b78c272ada47651703", + "size": 2508 + }, + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_external_carrier_exercise_briefs.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_external_carrier_exercise_briefs.md", + "sha256": "371a9fc54613f7e76f0ad016321d2d044f913037ec1645e001b71f541e04a4bf", + "size": 4484 + }, + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_modeled_carrier_read_test.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_modeled_carrier_read_test.md", + "sha256": "d927832c76846136c564eec41878055e5888e40a072c72b6b9ba9897dca94196", + "size": 4306 + }, + "ION/06_intelligence/orchestration/2026-04-17_system_lineage_profile_template_surface_change.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_system_lineage_profile_template_surface_change.md", + "sha256": "3103b75b1e92633785541e10968188cb7b7582c50f4afbc9ded85e1c0c2196e5", + "size": 2662 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass56_runtime_promotion_candidate_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass56_runtime_promotion_candidate_review_note.md", + "sha256": "2955d944f166cfa297052a6443c76024ee586a35e1223018e9ab73397e008e18", + "size": 1114 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass57_runtime_install_path_mapping_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass57_runtime_install_path_mapping_note.md", + "sha256": "19c14adc2562af275809cf61dae6b203ee7f0291e89085408149debcd99983b2", + "size": 1319 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass58_runtime_receipt_linkage_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass58_runtime_receipt_linkage_note.md", + "sha256": "d48222e75d858a2259d36819c97ed231551c290ca880225abac7ca50cf1e2ea2", + "size": 1286 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass59_runtime_negative_case_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass59_runtime_negative_case_review_note.md", + "sha256": "989cec2a118254f2d1b435a4361e8466b3d079deb1c3c93604df5da87ff36acd", + "size": 1392 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass60_runtime_pause_reentry_closure_and_thaw_reassessment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass60_runtime_pause_reentry_closure_and_thaw_reassessment_note.md", + "sha256": "1355efebc59ec50cb2bff3d96af171174c870a9f5382ad1393335e018ca8f5bf", + "size": 1752 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass61_runtime_bounded_thaw_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass61_runtime_bounded_thaw_packet_note.md", + "sha256": "e3c33b31e4dff0a03a8db14af05c56b3db8bc96839357e4c39a39ef47e55722b", + "size": 1252 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass62_runtime_thaw_closure_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass62_runtime_thaw_closure_review_note.md", + "sha256": "7d37ac9e6f9423a53249cf38007315662a2b9b1b4a4df0e70c77ef661513b136", + "size": 1122 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass63_runtime_active_law_emission_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass63_runtime_active_law_emission_note.md", + "sha256": "b52327e82543afac2614afbc20bb0c875fd1d7cece182b4b71d09771b9cb8e25", + "size": 907 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass64_post_lane_c_reassessment_and_lane_a_selection_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass64_post_lane_c_reassessment_and_lane_a_selection_note.md", + "sha256": "5d20cfc664716df6cf73752b449f1215bf4b4e5cda2464012dc3b7bcb2a456c1", + "size": 937 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass65_lane_a_recovery_first_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass65_lane_a_recovery_first_note.md", + "sha256": "8dc6a6a850fe69c0973995f9b4e1060b0d683b9a64d22182ae161a95e8ba705a", + "size": 933 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass66_lane_a_bridge_repair_eligibility_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass66_lane_a_bridge_repair_eligibility_note.md", + "sha256": "179401b8d61437191d9462d32827a1e34d7773b4a531a3d557d34fd2984932c1", + "size": 939 + }, + "ION/06_intelligence/orchestration/2026-04-18_post_lane_c_active_law_emission_state_and_next_horizon_reassessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_post_lane_c_active_law_emission_state_and_next_horizon_reassessment.md", + "sha256": "3a717451a16af98dec8adbab7ee1b247fd7dd7d52a7370c18acfd04e70f66bb1", + "size": 5162 + }, + "ION/06_intelligence/orchestration/2026-04-18_post_reintegration_floor_state_and_next_horizon_selection.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_post_reintegration_floor_state_and_next_horizon_selection.md", + "sha256": "8a2aeb25807953c61a793bd2592eac327a3567e3e534ed1fdadf6337e52d2f29", + "size": 9514 + }, + "ION/06_intelligence/orchestration/2026-04-22_codex_current_phase_role_and_boot_retirement_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_codex_current_phase_role_and_boot_retirement_note.md", + "sha256": "2bc924bd7d4a1457f44da2be842eb8471ae441dd2fd54eeda1ee6d32f27b60f0", + "size": 2732 + }, + "ION/06_intelligence/orchestration/2026-04-22_current_phase_agent_roster_settlement_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_current_phase_agent_roster_settlement_packet.md", + "sha256": "73d746471754b2b22883b77eced8beb7b8f50594dca09813c97fd5842c584b1c", + "size": 10055 + }, + "ION/06_intelligence/orchestration/2026-04-22_promoted_lane_native_support_role_continuity_normalization_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_promoted_lane_native_support_role_continuity_normalization_note.md", + "sha256": "c11a7fc45540ee497cdf6fd0ffb4b98c18464f63e4071ea3fafaac846793205b", + "size": 4310 + }, + "ION/06_intelligence/orchestration/2026-04-22_promoted_support_role_rank_refinement_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_promoted_support_role_rank_refinement_note.md", + "sha256": "a508804fb9f8054c17471305d2e978fed3314b2f436109f3b25255fb5549a23e", + "size": 3273 + }, + "ION/06_intelligence/orchestration/2026-04-22_relay_semantic_promotion_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_relay_semantic_promotion_review_note.md", + "sha256": "77eb742ddc0b309793ac438096a6974579d54b3a1feab7c27b231fcd0e9efcf8", + "size": 6530 + }, + "ION/06_intelligence/orchestration/2026-04-22_vestige_semantic_promotion_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_vestige_semantic_promotion_review_note.md", + "sha256": "354a1115e74c050a60930003eab31f4b2b05e1b0e96839e914b09fc9b8ae0bf5", + "size": 6763 + }, + "ION/06_intelligence/orchestration/2026-04-22_weaver_current_phase_disposition_clarification.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_weaver_current_phase_disposition_clarification.md", + "sha256": "02a288e2b4891cbeafd2498f3dcb696ad8dc4420e9fdc9a9c96cc7cdd5e9deff", + "size": 3136 + }, + "ION/06_intelligence/orchestration/2026-04-23_orchestration_surface_sync_after_lane_a_bridge_pair_landing.md": { + "path": "ION/06_intelligence/orchestration/2026-04-23_orchestration_surface_sync_after_lane_a_bridge_pair_landing.md", + "sha256": "a2557081d5cd42f986c0b177622c1984c0aefef2e724bb70cf50a2b694a43010", + "size": 3168 + }, + "ION/06_intelligence/orchestration/2026-04-23_vm_manual_auto_healthcheck_mission_report.md": { + "path": "ION/06_intelligence/orchestration/2026-04-23_vm_manual_auto_healthcheck_mission_report.md", + "sha256": "574ea291c7e7d5caac40e4e741ff68668a3dc7312681cc78401d5ad5b221aad3", + "size": 9094 + }, + "ION/06_intelligence/orchestration/2026-04-24_cursor_ion_demo_audit_and_build_mission.md": { + "path": "ION/06_intelligence/orchestration/2026-04-24_cursor_ion_demo_audit_and_build_mission.md", + "sha256": "1d0162eb37c51e28b48ff3d5488870ff668d8ce0e202bf6b6cf0aca4a4b7584d", + "size": 4932 + }, + "ION/06_intelligence/orchestration/2026-04-24_ultimate_ai_chat_demo_spine_plan.md": { + "path": "ION/06_intelligence/orchestration/2026-04-24_ultimate_ai_chat_demo_spine_plan.md", + "sha256": "50b9ef79e54726f8f63ef59033026436c35e4274418d847927624ecb2db08f3a", + "size": 2067 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_rootlaw_ratification_and_build_plan.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_rootlaw_ratification_and_build_plan.md", + "sha256": "45e88657d6903212ecd91a721209154b2037d58912bd2767eeb12c879437ec69", + "size": 8001 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_implementation_plan.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_implementation_plan.md", + "sha256": "031f854f0a28cee4d0c58ab4d5c2eff9a2c4edefb624702a76f9867364a6ab92", + "size": 3425 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_origin_recovery_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_origin_recovery_packet.md", + "sha256": "f355ccda99a7a0f1c6b54be6c1c7f95e8f09311b3fa4b392657202a905a53be8", + "size": 8686 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_recovery_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_recovery_packet.md", + "sha256": "39d5a0d07f04d00c40ea2a7d47ce4666b4d1b10fefc3d9d7cdef3018c9e37164", + "size": 3760 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v10_bounded_commit_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v10_bounded_commit_packet.md", + "sha256": "c34ae9e08c5117f4c1a16da09feac2477af0887685fae4d3bb502e0b04af27b7", + "size": 932 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v4_operationalization_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v4_operationalization_packet.md", + "sha256": "3eb2d80d5a73f644d65d54f83c8100ea87f68b656d353a50fb600bee0ca8d21e", + "size": 3095 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v6_reaction_selection_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v6_reaction_selection_packet.md", + "sha256": "04ae72427905b1cf4705e19e3959a956cad9ae2c2c3e46c20cb8d628d245a8ac", + "size": 1096 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v7_projection_index_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v7_projection_index_packet.md", + "sha256": "304dde67c2d16cac8c4c47bc9652a1dee26ac81a7e567118b2ad59fcfd0c8961", + "size": 1354 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v8_graph_writeback_proposal_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v8_graph_writeback_proposal_packet.md", + "sha256": "94b6976c2ec371f4574ed10be11e1afad7ce51d4db298f5c23ad5eb44a30d33d", + "size": 745 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v9_review_gate_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v9_review_gate_packet.md", + "sha256": "677fbbb02090563532833216bd1bf163769ee9a4526a1ccc9dc961143c0e21c1", + "size": 1564 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_origin_to_current_context_graph_mapping.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_origin_to_current_context_graph_mapping.md", + "sha256": "7135e98e745a5434bfb30631ec7747d072f354900a9733b00eae74884da62638", + "size": 2735 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_template_completion_event_phase1_implementation_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_template_completion_event_phase1_implementation_packet.md", + "sha256": "10a0f9492837db3d651d63cb86991db73a624ac172e547c068597272ba3b1f46", + "size": 2910 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/graph_py_comparison_report.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/graph_py_comparison_report.md", + "sha256": "89da04024f2bcbc01d4151ce075f9a791655721ece0d18e5b62dc18d1e56533f", + "size": 5640 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_base_usage_contract.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_base_usage_contract.md", + "sha256": "f39b65baaa3c269d5034edb72dcb24c53ffebfe9d3c5a4adcae26a16cb4c28f8", + "size": 785 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_card.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_card.md", + "sha256": "686459768e7721f8e15e2182732910e2ef3a10417fc000054079f910d75a832d", + "size": 1696 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_lifecycle_demonstration.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_lifecycle_demonstration.md", + "sha256": "3fc416849b4a94d8e4059eea0e87b62ded6ca39977135287b9f7689acc4725e0", + "size": 1660 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_gated_work_start_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_gated_work_start_record_template.md", + "sha256": "ee1a0b3d383296d98b42b18d7f5523965b015e424d2352ec90e396fb81efacf2", + "size": 1055 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_operating_layer_transition.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_operating_layer_transition.md", + "sha256": "12a4713635cab4447da96eb3ef6b6af51292d9ee296148f7bf5696ea6b1f0b78", + "size": 1390 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_orchestration_horizon_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_orchestration_horizon_record_template.md", + "sha256": "fd2daff44796ceec142ea4bfd53fb4b720ece9b7a926df8a8fd11e1143727187", + "size": 1275 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_packet_gate_checklist.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_packet_gate_checklist.md", + "sha256": "cd7c9eaebf6ca029933658d7c30e9e383a1fe1e00f23e2a62902cb11e068a1bb", + "size": 435 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_work_gating_protocol.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_work_gating_protocol.md", + "sha256": "a17c44ec1c8032f8962395ca1b7964477e448ab57b7b31ba6eece429cbf4e5d3", + "size": 5279 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/bounded_extension_vs_illegal_reinvention.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/bounded_extension_vs_illegal_reinvention.md", + "sha256": "44e664afeee2a3c08e9cfd176f4564dd13f48f24cfc8759347cd1e52ed983c50", + "size": 2735 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_classes.md", + "sha256": "0cba1780417d7d738c24f6b54e89132d18ceb45d0024ec8149a0d7c218ecb93a", + "size": 4204 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_defaults.csv", + "sha256": "53badf69841d85a709bcd1acf5ca9c0a57794cbf75dca98f8631da36913ac5a3", + "size": 1437 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_class_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_class_defaults.csv", + "sha256": "4cb952950db78ee1e5630c7e9dc1630ff6788be2061cef56ba9a9b286ab02332", + "size": 1766 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_classes.md", + "sha256": "dcb2d1526d47d51968eb72713079f959fd1f40ed6b93508fc26acbd902af016a", + "size": 4099 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_classes.md", + "sha256": "d45746cff4105a38d6c50b9dd3ee3b0c415bf34143557efc9df5b30faf410179", + "size": 3304 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_defaults.csv", + "sha256": "1221ccd1addf6a145e661ab0d7f6e085596dd461d2fb945e37088737cfd01f3b", + "size": 1120 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/README.md", + "sha256": "19dbe54cc9cf434889495ed09fa86e6f21d264ae9ec94c2ff116660c5798a48c", + "size": 436 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/bridge_repair_current_branch_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/bridge_repair_current_branch_lifecycle.md", + "sha256": "74da304d2db0de5cc90f0d08019e85dc251f7455eb3f008323187b6b7e4cccce", + "size": 1768 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/consult_only_runtime_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/consult_only_runtime_lifecycle.md", + "sha256": "77d8641472222ad015ba2d709823dcc9fb1033f57a826c957f87538652016165", + "size": 1660 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/recover_first_meta_template_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/recover_first_meta_template_lifecycle.md", + "sha256": "2516e9ec10f7351558dfbdcb5b800c98bdbcff26c0c930bc6d7260515a544e85", + "size": 1603 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/stop_and_reassess_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/stop_and_reassess_lifecycle.md", + "sha256": "1f35a3c65567fbdba061985d2c1a84e719107e39f14d971bb47ac51baeb2bac1", + "size": 1148 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/widen_and_return_activation_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/widen_and_return_activation_lifecycle.md", + "sha256": "e97f351dce1114972abf13e2f07ade3d91db714a10ebcdc016f9dec0ebabc1ed", + "size": 1290 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/default_project_control_kernel_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/default_project_control_kernel_judgment.md", + "sha256": "5f8b6572f5919ffe3d592533bbada0ec57d158776a6c794a5008753a17fc1b74", + "size": 2647 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_controlled_reintegration_transition_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_controlled_reintegration_transition_judgment.md", + "sha256": "f9aee9f16a37e0db236edbf2106907340e25b6ed2d70562a019f60203ae83d2a", + "size": 1296 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_reintegration_lane_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_reintegration_lane_matrix.csv", + "sha256": "4f607fa4ef17c2d62ba3dca44370c10487ce51453fbe798fe1772c697ac26456", + "size": 1248 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_control_defaults_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_control_defaults_matrix.csv", + "sha256": "e2e21b57cbf6e8401ff87a153d275aa9ed1b2505cb8580de0d3054b9df42ae87", + "size": 2440 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_authority_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_authority_matrix.csv", + "sha256": "54a6f06a55eec51f1196d8e7dc2d3f2b9144ca70d6ead525a7e9e8c69220a8b3", + "size": 2714 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_completion_note.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_completion_note.md", + "sha256": "f9b521509fc2b732fe549255d6a978afbfb9f2ea6004efb8c61307137dac7a32", + "size": 612 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_packet_requirements.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_packet_requirements.md", + "sha256": "52af47a8e5298347b4b4af17e9ae275ad881c729c691e1367e830ae05054a3ab", + "size": 4029 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/README.md", + "sha256": "b18022e4033caebe8f126a9f7397a2817f8a761f102c574bb43fe4c845c66663", + "size": 523 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/bridge_repair_current_branch_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/bridge_repair_current_branch_question.md", + "sha256": "1b32cf403895b696533bcb3fc0555be199c0d79a306b806587dda496870de5bf", + "size": 1875 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/compare_centers_activation_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/compare_centers_activation_question.md", + "sha256": "6324bc09cc05eafca1cd37c94af41df3560649c5f2eb20f55b0f372e5b97c242", + "size": 1728 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/consult_only_runtime_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/consult_only_runtime_question.md", + "sha256": "84b1464ea3871d1a8c374aaf7276a0a473cbc0c890327ec69e660b48cfa9565c", + "size": 1581 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/recover_first_meta_template_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/recover_first_meta_template_question.md", + "sha256": "e1a3cf757c0021b4d669df7933ea24a5e4f5a9d719fdb21bcfc0ed8f48720676", + "size": 1917 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_completion_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_completion_judgment.md", + "sha256": "d000aaa9a224d554d32995908b82aa1818f83d1ba71720c9bec18efc8cc1006a", + "size": 2429 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_freeze_manifest.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_freeze_manifest.csv", + "sha256": "109eef1a239a45d846aa788076929b1edde443bb5a19de4613e22f066dffed49", + "size": 1512 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_trust_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_trust_judgment.md", + "sha256": "c497598ec722f3a0cad6bfff200a464154afda5bfcc946ba18bebde7b6a47463", + "size": 3193 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/non_widening_work_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/non_widening_work_classes.md", + "sha256": "25a4c1d6a235e311fe1261c403a14b60344667a2746645e2c8e24405fb7a37eb", + "size": 1902 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/operating_layer_stability_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/operating_layer_stability_matrix.csv", + "sha256": "fc20a95b6cc0ad1841d11ecdfb14e46c1a1511448b53dd051e20a79c29b3fe4a", + "size": 2581 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/orchestration_horizon_and_completion_requirements.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/orchestration_horizon_and_completion_requirements.md", + "sha256": "92a0945c9a02d53ed30e9de7b561a7075fae2338e834802eb6a7329a6a62243f", + "size": 2573 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_change_classes.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_change_classes.csv", + "sha256": "11988575f02723ca4a2e6379e8a98d606b4561ea6a98daca3b368f2d92114de0", + "size": 914 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_judgment.md", + "sha256": "f45b81873cf89aa17d56a7db23575967a29f9b825671ab30e07282e28408880b", + "size": 3368 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_matrix.csv", + "sha256": "418d0d2bd5e5b14ddc9d54b3047bda7f65bae4b4bbff9ec9f0fabb126a5ecdb6", + "size": 1684 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_record_template.md", + "sha256": "2c168055e0c161495dde779f3da34c6923b1706be74ac7b957fdeb409882f512", + "size": 845 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_judgment.md", + "sha256": "928b866ae2669fbd591d2acf61bef8869cb3cbe3e7263e4424b8fbd8af2f294d", + "size": 2593 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_manifest.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_manifest.csv", + "sha256": "5418c0883d18e3eb71551ee4aebd8988e4554e7ad60a657b7f113b2c55f97995", + "size": 1477 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_cadence.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_cadence.md", + "sha256": "c8600fa7e935e156b994f37efbc9bed7417667c6d478652ba24211b0712fd447", + "size": 2526 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_classes.md", + "sha256": "d6808cd2117d0e02b7cad8b1d1b8ca43fe813dd12fcf789fca663ee7cb7c6f49", + "size": 1672 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_defaults.csv", + "sha256": "b30ff7184b61223b6ed3b76419ff4a4fe98bdd9b52f88e4166c95ef250e6a779", + "size": 823 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_schedule.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_schedule.csv", + "sha256": "0f34d7ca97ecb8d205b55ae67de8014ba8d8f1956f9dcbcaa9363b69e1f24c32", + "size": 375 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_health_checks.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_health_checks.md", + "sha256": "57c52440e486eaf930482bd33283baa2b1318bb0540a4efb568c84ce63dfb8ca", + "size": 1541 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_manifest.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_manifest.csv", + "sha256": "125975f305e25c284a50de6606defeb337e61ff9fe49468722b85a566527062a", + "size": 1037 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_reassessment_triggers.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_reassessment_triggers.md", + "sha256": "380f315745e3175f7a5e48c5c5f46df1b010ff4c8c940ff75f0ff2524b2e432e", + "size": 1957 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_return_conditions.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_return_conditions.md", + "sha256": "383ecac2392e0abafb4fbeea3c8f31fcee1c0db00132aa4cebe26bb6f407a9c1", + "size": 2955 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/README.md", + "sha256": "2b5f598db5fe3b63c6f9cae681b7ac85aca0a9c3906c071176b741dff59a3ecc", + "size": 272 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/defaults_correction_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/defaults_correction_review.md", + "sha256": "3c772d7bee0ab654196da383533b7715072550d816191f835eb9a9940798ae7f", + "size": 611 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/keep_frozen_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/keep_frozen_review.md", + "sha256": "e9476fb64dd0b2cd446e153c01d9011b399bc31f1cbb8927c4e7739ccb44393c", + "size": 462 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/revision_warranted_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/revision_warranted_review.md", + "sha256": "f441015affe1e5fb1cdeaeb6cba90c2484cd78645c930418e0a615c22019f14b", + "size": 658 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_record_template.md", + "sha256": "d65f820e9f0c3fb53c11521a8d0b1599c6c83886ac8dc684406e804932cd93a0", + "size": 745 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_and_thaw_protocol.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_and_thaw_protocol.md", + "sha256": "5a8f29f24f4f27ba282321631d51205543570ebd78c8cdc3402a419d90a6cdcb", + "size": 2967 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_approval_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_approval_matrix.csv", + "sha256": "d3eeddbab56be3ac45144ea2682b5cc6960ff7d25709eb49a1e055132147089d", + "size": 1221 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/README.md", + "sha256": "9e481ab13b28905893e731f7640f590cb113817173ad0dc08bbb923d37d3a15e", + "size": 482 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/clarification_only_revision.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/clarification_only_revision.md", + "sha256": "e6e3d79f19e36173d3d6ee2699b769b4b39eefaf02c63d3c7da3187313b26d2d", + "size": 616 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/defaults_correction_revision.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/defaults_correction_revision.md", + "sha256": "17e994d88e0b11b7e5756dc4372c492ec7d822ab8ff72ce45c6509490c1b0c1b", + "size": 668 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/new_control_primitive_revision.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/new_control_primitive_revision.md", + "sha256": "f61c1446823197b370c470d939d559f8c21c2e2dc89c5747d700179cd519876f", + "size": 805 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_lifecycle.md", + "sha256": "de88354dff90d8babb4d01f44ff6e5568435f351db98db122328d8f2783fd02d", + "size": 1767 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_record_template.md", + "sha256": "69c2ed076eb8473ce53e07e19e6106040f06f05effffdfb66dd697785843d971", + "size": 828 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_state_card.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_state_card.md", + "sha256": "362d3fe68ab7c1117119f13e04f0c5ae9efd6cbaeccc3628f3a0cf5826af20d6", + "size": 2336 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_phases.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_phases.md", + "sha256": "582283f5f52e1179eb1396f8b8fdf6715325f237fae87bb519c02109c961cfd6", + "size": 313 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_rules.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_rules.md", + "sha256": "422a43a5bbf235be3bdd61758a1416fbe97547e50c9cb2e8550956da57336310", + "size": 271 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_scope.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_scope.md", + "sha256": "c8d0e49d8a9cfad8072262c1121e906ed523e41666f3f7aeefa16a4a55691657", + "size": 377 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_status.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_status.md", + "sha256": "70d77fd1cf38d643fd1422c6716107fc9345f56c7cca1aaeab9c1de8811876d7", + "size": 22743 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/stable_operating_layer_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/stable_operating_layer_judgment.md", + "sha256": "b44b1cc49c7f17040a46257bb4186ef6da3e18b7881f2fd2a1b256e779ee30ad", + "size": 3728 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/work_posture_selection_guide.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/work_posture_selection_guide.md", + "sha256": "249db32e2a912a70681e8b2ecaa080578dc25bf83763c68901f3d927c4cfa407", + "size": 3416 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_chronology.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_chronology.md", + "sha256": "051bd874274cc8be5cead7e1a32d4d7f6857f6cf692a498a6521cdabaeed30af", + "size": 2715 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_matrix.csv", + "sha256": "a05f13a9886eab0ce80ed464d344e26f4dad1f163f8707bf226aa7bbbee7f0d5", + "size": 3207 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_relations.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_relations.md", + "sha256": "9750698efc51314df6ad2b57cd3ad5489c8986169b5e7020da221afa8214d8b1", + "size": 2326 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/current_branch_variant_chain.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/current_branch_variant_chain.md", + "sha256": "eb1857a45a50aef01f8b1188f5e92a89a9b3b7f834f777148924064318ad94f9", + "size": 2511 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/master_archive_register.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/master_archive_register.csv", + "sha256": "e4c6093e23ff4b92f78760cd7f1e77f999061478e2a3c98a1f581d9e48e798c9", + "size": 6996 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_matrix.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_matrix.md", + "sha256": "1d1da747d78e25de7995baa62ee41da3d981d1a4d6b93b36c31624e51c46ccee", + "size": 1549 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_status_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_status_matrix.csv", + "sha256": "f5fd36c3d42f7dde2b4a890d8e43891849733a0af3ee3bbf5a9126cad9cea134", + "size": 2294 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.csv", + "sha256": "cf695637a8d699ad1b2f308bcc960acacce4ce804166f3f82e8b8fb8c159428b", + "size": 3334 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.md", + "sha256": "67ad629556ebb39368efedea9ba6ab9b9a19bb0097197d14e89efc359bc4429a", + "size": 5776 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_provenance_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_provenance_matrix.csv", + "sha256": "ad5f2e85ea8f85056e33c36e5739b96b6455a2ca514d0d88ed26658947227c01", + "size": 657 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_relation_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_relation_judgment.md", + "sha256": "8778c209623deddca3836411a6bf40d1c63e94759c82611ed6f2f2f7acf63714", + "size": 1799 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/contradiction_ledger.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/contradiction_ledger.md", + "sha256": "723c62519acf4e4a9c29c84af34fb6e21391f7ce4a3293cda71c323c6dd3695b", + "size": 1350 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_failure_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_failure_register.md", + "sha256": "71a6c6d96fb4d8f57e1a73d7fa245a8b30a362ca25d03fc909cbc08cec879ee7", + "size": 1546 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_register.md", + "sha256": "b47fcdf2180fd25128d47c5b09e1f6ce44e5b786962956885e47c4b623fa8ea5", + "size": 3028 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_consolidation_outcomes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_consolidation_outcomes.md", + "sha256": "e0de8c5d6557ae45106e4db0433463810443d79570e47a9f613b50c564524420", + "size": 996 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/README.md", + "sha256": "33fd685110fa25086809cae31406dd9e9f2b04ac7220e3983e5574b71e76ba6b", + "size": 978 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/aether_os_v4_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/aether_os_v4_profile.md", + "sha256": "26266c30b9c65f525b54f92a0a69d8fae1aafba631fffcfcd18ca0fc08600550", + "size": 2172 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/atlas_systems_reference_library.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/atlas_systems_reference_library.md", + "sha256": "2fcdb17931284941231489bee81437536e09d6e25db104e57614dc1e9e63de6c", + "size": 1678 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/composeraudit_wrapper_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/composeraudit_wrapper_profile.md", + "sha256": "1e00dd37d19b4e6d438a6416524db9240564d370eacd623a5d6af4ea77377e86", + "size": 1380 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/conjugate_basis_hidden_field_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/conjugate_basis_hidden_field_profile.md", + "sha256": "04d6449cf32adcb4a338a8e72f052456fe535f74282d6c7e0110b26b855094fd", + "size": 1726 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/consolidated_atlas_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/consolidated_atlas_line.md", + "sha256": "8750077e50ce0856dde51bcf2808211584f570acdb0259aa71ea44b4142befd8", + "size": 2184 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/current_branch_template_law_kernel_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/current_branch_template_law_kernel_line.md", + "sha256": "eaf9220d245f5c196ce3317b36636f5773d2c55a46f225ce77f75d50ce7f0c2f", + "size": 1956 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/geminiaudit_wrapper_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/geminiaudit_wrapper_profile.md", + "sha256": "ab4f70d0fd66414f98693c3430c148c48b233f42b8e234805d25e97f8b976cdd", + "size": 1337 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ion_build_runtime_api_session_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ion_build_runtime_api_session_line.md", + "sha256": "f4f2dc10524d6bbd6ca7fa436ede0a3492fd7c1b413d758752ded38ba68a27ef", + "size": 2061 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ionv2_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ionv2_profile.md", + "sha256": "fd217447b2b61db9a355fda8631923b872fcd7ea442ceac60e2dc6a136827f63", + "size": 1549 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/old_aether_law_atlas_template_development_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/old_aether_law_atlas_template_development_line.md", + "sha256": "7a9f0af2b2232a8139e1e6e626f82a936f5d7c287d8e520b82e794ecb2ad4905", + "size": 1997 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/operation_victus_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/operation_victus_profile.md", + "sha256": "da70008deaa6ab6da9bd02e23d47dd1fdfe131252387e61b9583775772e18daf", + "size": 1998 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_codex_precursor_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_codex_precursor_line.md", + "sha256": "b2c7e150e80122a80f4888b458af7a5fb427df63552c2f76fb47351a0015904e", + "size": 1904 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_precursor_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_precursor_line.md", + "sha256": "44f5fe3ab228090c1a4fab635b5b9aca20c13ca32aa6eaad8273de64c008435a", + "size": 1822 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_gemini_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_gemini_profile.md", + "sha256": "1d75911faa06c8d966a818e3337c4a0d7177746cb9fbc707141d4475f2686ad6", + "size": 1623 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_opus_meta_consolidation_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_opus_meta_consolidation_line.md", + "sha256": "b401a63e4772b992b37c9124854664f8b2ef821b588f8101c1e2cfb672470ae8", + "size": 1921 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_family.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_family.md", + "sha256": "86b9578aad8048c5f13413cad7b1ee8580ff6803700c812160be907faede8880", + "size": 2233 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_gemini_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_gemini_profile.md", + "sha256": "386b3be39a1c0831291956ddd93de68eebd6ca0eee72c83b1fc4f1870a7c362b", + "size": 2156 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_opus_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_opus_profile.md", + "sha256": "b03d726568fb4b64cfa392200a869acdb7084f42abc159af902bf16983efee24", + "size": 2041 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/victus_gemini_manager_orchestrator_swarm_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/victus_gemini_manager_orchestrator_swarm_line.md", + "sha256": "3e7b5800da664ce916bc185eb68c1b457f9e3707f7d873695b79296075ce1c72", + "size": 1898 + }, + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.csv", + "sha256": "d08389732287d8181a8c846ef29f3be91e4786f39312d74385fbf201ecd8ce41", + "size": 1291 + }, + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.md", + "sha256": "eb6ba85b292d84c0a5990a0cf6f045db76770ab8a56386704abe8d49c458a231", + "size": 2607 + }, + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/most_evolved_systems_register.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/most_evolved_systems_register.csv", + "sha256": "6af3798ab08d1dba1f4d0b93dce2262e5a62ca5acef357ca6a382ca40883fcb2", + "size": 1246 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_meta_template_vs_current_branch_delta_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_meta_template_vs_current_branch_delta_judgment.md", + "sha256": "6b623069976bb58d0707dc8708c7e2eec98b1ff870cdcaf8dccf5d8ffa709027", + "size": 2386 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_template_development_exact_match_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_template_development_exact_match_register.md", + "sha256": "f5173071ed73ac1f3c96f1da051583d3f9ae9481877aced966a0555dd4bc14f4", + "size": 1495 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_comparison_matrix.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_comparison_matrix.md", + "sha256": "c3cc9d2d927711270efaf9054678da7c4f5a7be87b9e4ff528948b345a3d1358", + "size": 2933 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_recovery.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_recovery.md", + "sha256": "d227eca0d913eabf70dd92ab4fc98338f1ce2061170ea5a5e5522d42a4034918", + "size": 3135 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/protocol_atlas.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/protocol_atlas.md", + "sha256": "33450813c7c9cef16324080b49cb7c18aa7a65c780effa17eab9246dce2f6f72", + "size": 1624 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_atlas.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_atlas.md", + "sha256": "2b9bb494fd3aec14693513f46f4f70c590951bac413406879d0014aef98eb277", + "size": 1592 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_surface_evolution_history.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_surface_evolution_history.md", + "sha256": "e0517c5ae0ca6f6fe50e49fffeaa6bbdc97cdb3d6039b6e612e23681d2585048", + "size": 828 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/compactness_vs_explicitness_conflict_note.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/compactness_vs_explicitness_conflict_note.md", + "sha256": "26c1ec48828676c3ed7867ce2a927090ae6a9a3b52739479d290e45dbb4517ab", + "size": 690 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/conjugate_basis_hidden_field_ontology_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/conjugate_basis_hidden_field_ontology_judgment.md", + "sha256": "795a115d9e8bf414a8aa354d398ffd7e5c86e1203b12733370708eea161b3fdd", + "size": 1639 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/linkage_failure_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/linkage_failure_map.md", + "sha256": "510c68a947f5bd46f6c390eb97c99d59cf33e8c39b9fce5845c09f5d321a781f", + "size": 621 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/smallest_values_constitution.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/smallest_values_constitution.md", + "sha256": "3e6c48e7a5725f54b80d56fee829114c3fad1cdde1a4a2b817acb24eb96b3578", + "size": 1220 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/soul_coherence_audit.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/soul_coherence_audit.md", + "sha256": "4b9fe54e4a35a83cd0e86490ec10938d2998d979e7da83cd49364e7256f9c3a2", + "size": 815 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/values_loss_and_drift_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/values_loss_and_drift_register.md", + "sha256": "5281d2ad08df654ff23b2ae5f61609010ac6d6b642885544cd1283da06578c9f", + "size": 1810 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_execution_policies_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_execution_policies_receipt.md", + "sha256": "f5a90a2bc52c70c14916631ce72f6594bdd71063b515eb8f0c160e816549b5af", + "size": 818 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_session_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_session_pytest_receipt.md", + "sha256": "2812eb1b4b4e7154114849a215693f5e14e1417916e7e17769bc22ff8e87ffb3", + "size": 1142 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/queue_scheduler_session_lineage.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/queue_scheduler_session_lineage.md", + "sha256": "98c583606bef7145b7ac88726aecfda6e2b443963135a5d38afb3afdd267e3b8", + "size": 532 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/runtime_api_session_recovery_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/runtime_api_session_recovery_map.md", + "sha256": "5438af4c5fefe74f2116551cc41fa06cc158266d9606f807d2ef9bdf5dcf71ed", + "size": 1765 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_full_pipeline_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_full_pipeline_receipt.md", + "sha256": "98dded5d3ca2eca17db9466a783e4c86462a6cf24543a462d1c87a9ac4104dc3", + "size": 1402 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_orchestrator_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_orchestrator_pytest_receipt.md", + "sha256": "063e54ed8ff31611a1f8a13d836ed9a7306b15921cd8569b0b9d3b7241fd2a30", + "size": 1108 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_project_gemini_swarm_cycle_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_project_gemini_swarm_cycle_receipt.md", + "sha256": "fda9dd52162ee16e5c6be71010faa72655bf69e78d1f1d8b2b271b29fbb7f5c2", + "size": 1410 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/activation_authority_center_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/activation_authority_center_judgment.md", + "sha256": "eff7eabd8dddb8bfb1dd9d7ba4e0e30004d3262c558c6a3b23be0631c65a332b", + "size": 2343 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_activation_lineage.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_activation_lineage.md", + "sha256": "1d0b7c88315a1c36eb25a0afaa6b881772834ab44d838c3d8767a701c6f2b778", + "size": 563 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_orchestrator_swarm_recovery_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_orchestrator_swarm_recovery_map.md", + "sha256": "cf941b857faf27a40df95e3fdf293f6793e72e433911ee88d0191653d21bd19d", + "size": 935 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/swarm_test_lineage.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/swarm_test_lineage.md", + "sha256": "19bb22c02879eb69f414c0d9abbf0f62c25d682f1b039ec5ae5b95e1948f0bc5", + "size": 575 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/victus_project_gemini_rehomed_fork_comparison.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/victus_project_gemini_rehomed_fork_comparison.md", + "sha256": "63c732ae0c07478e94e7a9ab1de56c7b12708dac96c78e1619a85e905e2aaa16", + "size": 1586 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_judgment.md", + "sha256": "b68d0c8672404dfba409ff8438c992c03fb5a75a8b1efcc08d18897ad5a2de83", + "size": 3157 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_matrix.csv", + "sha256": "55ba5a558c4ab15351041a7886171535b66e9e3c0548f54b527f5bda5594f0ac", + "size": 3457 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/current_branch_vs_precursor_compaction_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/current_branch_vs_precursor_compaction_register.md", + "sha256": "835b53c4032c4963bb76e38f9dfceb8c545f9e3737527870234ad7c5129969e4", + "size": 1469 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/ionv2_vs_current_branch_compactness_and_loss_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/ionv2_vs_current_branch_compactness_and_loss_map.md", + "sha256": "60604fc7ccf6d902c397a33f4a74da57933ec239a1d9d032378e85fba759ad2b", + "size": 1539 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_judgment.md", + "sha256": "291eefc573de6b23999e7aeeb40c9ac9cd4e000290f1aa54c5fe828fbbe9ef9c", + "size": 2167 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_matrix.csv", + "sha256": "ddd243b0de431fb772ab726232775f7b790ffe3bd8f4ba66d433bbeffb7f60e8", + "size": 366 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/predecessor_loss_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/predecessor_loss_register.md", + "sha256": "f87f3f7e74d31aaeed958589c4a5d4590b8404c68e631cd954db87f343237f58", + "size": 766 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/supersession_graph.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/supersession_graph.md", + "sha256": "f6dbe14cb66fc551bb6a414003715d8805ed5a61efc9791a0960da9699b81a01", + "size": 662 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/system_equivalence_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/system_equivalence_map.md", + "sha256": "cb18f1856560de9f84185b563e526b665a6beea5498afdfbc1fa8198df4b49c2", + "size": 614 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/README.md", + "sha256": "94110f6448ad1d19c57b55f0f0382b7920101e5c573cd42a195e3c8b6c66961d", + "size": 110 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/implementation_lineage_register.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/implementation_lineage_register.csv", + "sha256": "b8bf859dee0509bc9e3ab302866a323325ac610433be890c38a03212c089336c", + "size": 1033 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_aether_os_v4_runtime_swarm_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_aether_os_v4_runtime_swarm_receipt.md", + "sha256": "78c28909cbaefccccaa11f7c875bcf7f4d8e3ae55e066eafb296cf233dd8cbd7", + "size": 1138 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_conjugate_basis_hidden_field_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_conjugate_basis_hidden_field_pytest_receipt.md", + "sha256": "949f57d31918d399d3bd20b85d2f30f55b4b11a229aa8ffa202ad30ce7944e2a", + "size": 631 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ion_build_static_capability_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ion_build_static_capability_receipt.md", + "sha256": "7f4d164784697baf36f43797a4684621c9d2d95c70066fe88e2d40f4046fbc70", + "size": 852 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ionv2_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ionv2_pytest_receipt.md", + "sha256": "a2fbb80d0c4ba33edbdfe39fd70fa6c502d576988b08bb4c2542ce761e08dd97", + "size": 1131 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_codex_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_codex_pytest_receipt.md", + "sha256": "c9b6b3ab980ad970c7b904aafb88807be30dc8df0a78fe5bffe9d6094a5d366a", + "size": 571 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_pytest_receipt.md", + "sha256": "60ead74887f9166f8f2f82a44bfaa709ac926d190610996b765a26b3325ca7e9", + "size": 498 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_gemini_pipeline_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_gemini_pipeline_pytest_receipt.md", + "sha256": "c17bbcc41d17cae40fea477b5eb0e10d8738f291432240e74ef4e6c7bfcd9c9a", + "size": 532 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_opus_pipeline_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_opus_pipeline_pytest_receipt.md", + "sha256": "e0c9f4254926f9b198b2a4315e0ad5a035dade3887b17e2ef59e3b1958d65570", + "size": 543 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_pipeline_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_pipeline_pytest_receipt.md", + "sha256": "081d3d888adbf6415abebf2966bf134dcab3c545b5c924e6722ffebb298ad4b1", + "size": 558 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_victus_gemini_static_capability_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_victus_gemini_static_capability_receipt.md", + "sha256": "c1930768350aa68aeb071f4f8ef438bb885337784823199a8dfb85d6f95999cb", + "size": 1048 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_index.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_index.md", + "sha256": "5dfb3c9cf3914fabfd3c290b7134d095cf9adac634fc5782a0b830473ed806e0", + "size": 1869 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_read_order.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_read_order.md", + "sha256": "73f2761fd1f09758d2c5b59e5276433f33bc40f09c46e96d1e106fd483e07aea", + "size": 7385 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_control_surface.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_control_surface.md", + "sha256": "4236f08a56d2bcc98a1c94d7cc554e2ccb5d92521b60cd1e3171404774948e99", + "size": 5339 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_operating_kernel.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_operating_kernel.md", + "sha256": "1958341c0445b7dc013529d7d57d4517d1b3a57eaaa7fadb07534048b6221dcb", + "size": 1403 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_project_control_kernel.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_project_control_kernel.md", + "sha256": "690c78a4e47161fb0bbd1353c9c50f0f45d3e7a57078e88ef1cbc2fcc015b1be", + "size": 4074 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/era2_controlled_reintegration.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/era2_controlled_reintegration.md", + "sha256": "54f9474e5267c23f8e84dd1d239af5c769abf4ac87aa495a1ab5b6c055ee7788", + "size": 1798 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/frozen_kernel_change_path.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/frozen_kernel_change_path.md", + "sha256": "71cdc424d201884b05e22c2fc4f42ef7303a87ba79ce4a2490f862725b68ade1", + "size": 1132 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_of_ION.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_of_ION.md", + "sha256": "516a35490e4a34a8921ef8b162ae2dfd4e2ad29682edc093cdf5f21cfbb12a5b", + "size": 4320 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_semantic_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_semantic_map.md", + "sha256": "82d6ce91811dbcb34d2deb138f2efef3612fef68831c396d4046ee7caa4147d3", + "size": 463 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/navigation_guide_for_future_ai.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/navigation_guide_for_future_ai.md", + "sha256": "46851f565ce90c36fc64a663e699b3b8f5668d8a5fe9f205fb9aaa6a5fae1238", + "size": 1778 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_governance_card.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_governance_card.md", + "sha256": "02aec7c9d024d6edd650ec362766cf720c395a0175e6321c93d5e89c246a01f4", + "size": 928 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_lifecycle.md", + "sha256": "295f3745031b6d96b78519ef6cb1c59ed35bf650c5cfb12c3629ee8229088a5f", + "size": 1926 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_atlas_base.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_atlas_base.md", + "sha256": "6e5e19aee2dd121267ff1e96338decf1b6907527fee9227e69b46f76ef96a863", + "size": 6500 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_center_selection_guide.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_center_selection_guide.md", + "sha256": "ac0e5506a43e98a791e11a686a603584cd65c81ade7017f4c15e2430384e17be", + "size": 1963 + }, + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/conflict_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/conflict_register.md", + "sha256": "4e4a98244611d18f9878c59fd7c639dbff5df2f4d40c6fb2175021ef8d0dbda7", + "size": 8756 + }, + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/missing_evidence_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/missing_evidence_register.md", + "sha256": "2ebca915c08fb6bb21f4a2122b6927c40522d8b37ef26d58fd5738eaa2992388", + "size": 3574 + }, + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/unresolved_identity_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/unresolved_identity_register.md", + "sha256": "6b54f67b3a457bf888933ff902934ed4f5cc53e4ef77271ea6cdb442f2f6cffa", + "size": 358 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/README.md", + "sha256": "194b8383680f7e54fd78a8941e6e8718a42513342a58f4381897fb250121d26e", + "size": 1239 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_matrix.csv", + "sha256": "dec7bc3f727b15b4a95400e6c4a7a2d0f81884c032f1a303ce47dd309bfbd64d", + "size": 2056 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_packet.md", + "sha256": "44fa3a5fad853cfb06ba8c4fa7c5933bbb3c7bc4702db37b3f38270ac9c6ad69", + "size": 5097 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_transition_candidates.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_transition_candidates.md", + "sha256": "370dc67b57cbcaafa962d08d444ce8fd7ab8e78aee02e66cb57e679205b5ab8d", + "size": 2417 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_matrix.csv", + "sha256": "3a25c8cbd2cbb23d34cdb66f6ad2a9bc175bd33bc13d87ce4fdfb42aeddc7241", + "size": 2469 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_packet.md", + "sha256": "c52589d10503b756b76b54e8cc1ddec2473dd053a6a2e753246b9b1598a51b03", + "size": 6636 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_transition_candidates.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_transition_candidates.md", + "sha256": "9870494e42a775680cac5afbd7d32d5b2a5c62a32f7ae7188ae370575a2ff1e4", + "size": 2852 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_matrix.csv", + "sha256": "ed397064c150fdbb92b0e801398743cf88ab813d35baa0fa140a2569617b9406", + "size": 3025 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_packet.md", + "sha256": "9d5b0838bcac43d46605e5365a0bb5ec6da856345c6c9ce1bdad5bdaacc02a5c", + "size": 7834 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_transition_candidates.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_transition_candidates.md", + "sha256": "d724732fca89fcecd27232f1ae0c6d248e0cbcb03fce8ceee9da74635a462fb9", + "size": 3591 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/API_RUNTIME_ENTRY_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/API_RUNTIME_ENTRY_PROTOCOL.review_draft.md", + "sha256": "fd577f0d141fc415bcb89ee6d008c1e6cbb4d7a510cf1142a9c16a0f75199238", + "size": 2366 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/README.md", + "sha256": "407b7190ddec4b0715b36e90995293dc5df0be0c368a6e8add2d43cc0997f282", + "size": 534 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/RUNTIME_SESSION_AUTHORITY_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/RUNTIME_SESSION_AUTHORITY_PROTOCOL.review_draft.md", + "sha256": "3b04388cd1768a448400ba750d70929364e438d3da38df703955c27e77441528", + "size": 3011 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.review_draft.md", + "sha256": "6472fe6c15c394d2ccc95336ac8baa6cc4d700e93588c0bba6839afd7b2df93d", + "size": 2321 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/runtime_session_review_boundary_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/runtime_session_review_boundary_matrix.csv", + "sha256": "75c7694f4b2c3105816242eff04d5996aca329d289ea9fbe7ab7ad999a36aa3b", + "size": 1105 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/README.md", + "sha256": "76749667d2b7e8ea21eeba396afcdba8eae7a3edcad4e04b3aad0a8c71deeba4", + "size": 1564 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_matrix.csv", + "sha256": "74fad3b8b4267aaf23665f951e502b85813231fed787c3278fc74314696aca69", + "size": 1724 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_outlines.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_outlines.md", + "sha256": "78d9b3009f68d6d3790c136747b76bdf6b7a91097a9b8af54213fb8e4ce78cc7", + "size": 2937 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_packet.md", + "sha256": "c605b079c60735c009186c97579d0f7d8a72135b71a96a2e15e8222daecd0aea", + "size": 5243 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_matrix.csv", + "sha256": "26bc6d3165fdd1e3aa516133241d29a72fbc1b851c57b079e11065d6d4253abf", + "size": 1627 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_outlines.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_outlines.md", + "sha256": "f69059fef42bc5ab5a41550b4428a047b342e6fa5865fa3daf794637df0cd22e", + "size": 2671 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_packet.md", + "sha256": "f3491c873b334e574801198a4273301a45e6348aee0b25373a9944de4cb42542", + "size": 4732 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_matrix.csv", + "sha256": "687ae4138ee799ba56f7aed2e7cccd4b2d12a264b0bf7c11bb87a1a78b4fc42d", + "size": 1963 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_outlines.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_outlines.md", + "sha256": "0ee4512c059dd967cf2e062427d4b2b014d245ab6e03c0272e2c748ad8128ff5", + "size": 3665 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_packet.md", + "sha256": "18ec51e63ca9aee6543aa8017e0de6cc85b77129f9f237c1fbd0ae8a281d6454", + "size": 5296 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/README.md", + "sha256": "672a8a12cc2f3f85fa12337c71a7efd1645a8089832d8242036aea80714a76cd", + "size": 1296 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_matrix.csv", + "sha256": "5ff6e1fb86843a7dbc404ebdbb284b2da22706721e4dc21e40637750da177e9d", + "size": 1561 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_packet.md", + "sha256": "1b636a461439bf5560fb644d2d29698de37bf4c1a7aa158ebb7c1e090220a266", + "size": 3450 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_matrix.csv", + "sha256": "2d21ce79381c10bccb49ecfe525deea3492e0381921655470c0e670ce9a2a6a5", + "size": 2064 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_packet.md", + "sha256": "78fe9f44ecdffc524775c6494c043b7a02bf09d6493430a77cf8fa8012a9a258", + "size": 3969 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_AUTHORITY_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_AUTHORITY_PROTOCOL.review_draft.md", + "sha256": "066578d3a4fc0eaee9ccbb8141e5b2be536ff8495881306a1e2bb4e353f695cb", + "size": 8755 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_LIFECYCLE_INTERFACE.review_note.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_LIFECYCLE_INTERFACE.review_note.md", + "sha256": "d8997875a3e7c8f25b508d5d2c678816f3fbefede38a56b36650b14d9f0b72ba", + "size": 2227 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/EXECUTOR_LIFECYCLE_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/EXECUTOR_LIFECYCLE_PROTOCOL.review_draft.md", + "sha256": "65502f10a5105b582d804e65f77d879b3002e2bbf962c7e9df1851827f332868", + "size": 9800 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_matrix.csv", + "sha256": "9f5a68b7062e9f3924ab948c5b7363185d4cba3d585aa30ac4d38061c03063e8", + "size": 1820 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_packet.md", + "sha256": "7acf92cd532d8b3c9b327f1bd62a262dc156b4e5eba6e1eb25f4a59198addef3", + "size": 3768 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/README.md", + "sha256": "57bbb8138d608be7ee4580eaed6f82b843e51d3ba4dc2e542ac4accbff87528a", + "size": 514 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_findings.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_findings.md", + "sha256": "1a0e883b5bbb65e30fa54207d856864791ae7d7c6e8e328b7b000537c2acfcb4", + "size": 1581 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_matrix.csv", + "sha256": "5ed1b7d01f6f1a00f3c522d2564d21df5d246ab65e833798fea38f277994eca8", + "size": 1349 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_packet.md", + "sha256": "ecd192b93ecc957d33df1388f4908d7643653b9d5f0776ec67a6561d78814054", + "size": 3435 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/README.md", + "sha256": "502d212cadc906227e0aee530f58c5300f2e4efb566127316c24d6327c668028", + "size": 761 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_matrix.csv", + "sha256": "45cca0d495fcd9d4c1c48fd0d28dacf7305bdee57da1b41efa356c1b15d0e721", + "size": 1879 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_packet.md", + "sha256": "864d63592050dada7dcf50e54d8dcaf577c7dfdceaa67be5c1f33f1cdcf39822", + "size": 3982 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_thaw_readiness_criteria.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_thaw_readiness_criteria.md", + "sha256": "7a35e6218cf5f579b25cbc4790d864fb89ce699b5cc5b444248b8559d7ae86a7", + "size": 1447 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_matrix.csv", + "sha256": "89d1f8d8f44e24c957bf387ceb3d8039a18f2f917aa199a12a6718b9dcf4d04f", + "size": 2673 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_packet.md", + "sha256": "3c26f1ea7e3776754ae7aec38116c94e9175699f467d5f23a6a958bcba2e21ad", + "size": 4746 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_thaw_readiness_criteria.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_thaw_readiness_criteria.md", + "sha256": "580f83fdc98f368a7ae1b1f389f1233f6ac81b93e9cbb296188fe82ffcf662a9", + "size": 2113 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/README.md", + "sha256": "7743ca39acdf9c679c18aed963a632d6e437e49db163707573deaae951072a1a", + "size": 613 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples.md", + "sha256": "4263b69939a23e251822d9a53cc7c5d83367bc5d765f6407ec06063e929650a9", + "size": 5775 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_matrix.csv", + "sha256": "63348cdc4b26d39502f2539b3f0f9de1c7a773b4e417c5eebcd86b60450d81d0", + "size": 1233 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_packet.md", + "sha256": "7eff449f4a38e650543ed243dc1b37b93fe9bbea564d23857247b8f0c26327d3", + "size": 2787 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/README.md", + "sha256": "486c87c53f6c14e179999551e090e4762154ac156a862236a177d5b01b9fba03", + "size": 809 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_findings.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_findings.md", + "sha256": "1463639051259fd5ac37b05f543c1182b57f923ae1ab1a4db3c7c5bc097018fe", + "size": 2059 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_matrix.csv", + "sha256": "003825584c720546313a6bc8383df2928d8f97a60cab164fa97e18aa0ffeb8b8", + "size": 1503 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_review_packet.md", + "sha256": "41d32f20d36a70051f69b4ec7991f044426f5ad83d38d34be6671f8536fa246b", + "size": 4337 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_findings.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_findings.md", + "sha256": "b173c45307ca60eeca450bc43d233a285bead349c19d81863e802c352901daa0", + "size": 2401 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_matrix.csv", + "sha256": "912e4386a62835b57b3b2d052bb4b3085cae404edd43636e7bf237378fa7b68f", + "size": 1871 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_review_packet.md", + "sha256": "56ea2a2b0bf1ede19b1ffeb0b1c69269c47b7a30a21c52a20d062c184a424ca8", + "size": 4532 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/README.md", + "sha256": "697a73d04a907c27b7026cc2b04e6752a1f260ecf30ba720b8cc12156910b5d4", + "size": 710 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples.md", + "sha256": "b7862d76c5a4c12f30e789c12cc78c3af39e61379c1e61266fc5036c1b8ebec5", + "size": 6840 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_matrix.csv", + "sha256": "8959eb172e8253a617fd01307c09eb554132e51bee8f1b1c739a7039ed68508f", + "size": 847 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_packet.md", + "sha256": "cf7083e2a0b9f87fe91e5106ac53e1fc7f1e51b58ccdcc175031ec69f3f9da77", + "size": 3311 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples.md", + "sha256": "c3fa556aaaaf8f370b3a6fb81de94cb168b26069a8e8d0e4b50be233d5034bb4", + "size": 7419 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_matrix.csv", + "sha256": "5d568870aee60deb7778cc8c4fbd16d0d696b9d5c18bea7d384d9615ce40a38f", + "size": 1194 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_packet.md", + "sha256": "5def0528e9ef2515f6779819300dd2c8026c9c78f2744b110379349e7ec7b58c", + "size": 4075 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples.md", + "sha256": "43cd2fcd91ff6c18d3d6640c501a49942148079c11f5e72e01a7e16a4f08cbf1", + "size": 7457 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_matrix.csv", + "sha256": "0b36dfe6a57b63c07f8ed9b95dd48c4cda1ade53ea814f2d015e2fb49b2880bb", + "size": 1228 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_packet.md", + "sha256": "6e6e67bec79898b1dee08a546a7b29ff50e6053aecab9e9a34f27fb1bc97cadd", + "size": 3805 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/README.md", + "sha256": "003c79b729b362169973d18a5cb893d64d13db8dc858d8ea3c95f785a1d68e56", + "size": 811 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping.md", + "sha256": "36b65af08315c18231a3a878c0bd507340c1b9df7f64c7d4a572f9f4bcd7860b", + "size": 2647 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_matrix.csv", + "sha256": "4018fc0dedd09f95b79a268cf9a79b21775d4b4770aadc676456487472846ba9", + "size": 1668 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_packet.md", + "sha256": "44d38c88939af3105a32ecff4c22fd6c55378c3abc2b9f6cf48db376ddccc4e0", + "size": 3961 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping.md", + "sha256": "1adaf1a198ded4ab59830647d8e829ed1528c95234b53582613e18ddfb7c319d", + "size": 3650 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_matrix.csv", + "sha256": "9febf841f470e0fce7e171f2d03bdd0fd8c7c69a9ca46d874857d81f944230e4", + "size": 1749 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_packet.md", + "sha256": "63974d727ac8e027b6410eacd695751f5d4b64ab17f84f3b50f99ffe84a40889", + "size": 5338 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/README.md", + "sha256": "fcd7c19e026cde1560d52f118afee8e33d109f8c65c5262fadbcc8581effdd63", + "size": 738 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment.md", + "sha256": "a8ef6da796b58ea0a2074e8687ae7489f5a94bd0f733f7647394206ee8afa555", + "size": 1842 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_matrix.csv", + "sha256": "a6b4179ad6b83a2d50b2b2175cadd2ed3ad815dd725a876b52d866424315ccfc", + "size": 1281 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_packet.md", + "sha256": "9b756560be090b40a6c3c335ccc29260a0b5442bcc2e8256bb52153ba95b0eab", + "size": 2958 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment.md", + "sha256": "cea8bb719cee985c996e0a6cd0c799962ef953ae222892665663625a6daa8da8", + "size": 1899 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_matrix.csv", + "sha256": "f186583b400819bca05ca96dc704bc55e335891c134f1aa14ccffec2a02cc37c", + "size": 1351 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_packet.md", + "sha256": "4a3bd637c96127e25de50f99cc7ab243f6dd98ef55b0d19ce7b84c38c2ef2948", + "size": 3181 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/README.md", + "sha256": "8b2be6e3e1c6e352a1c49e1702584881bfa046db94fca0558c48f123c12cf9f7", + "size": 714 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_adjacent_edits.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_adjacent_edits.md", + "sha256": "dd36fa3a674befde63e3b33a1eb325e3eb26a1ed74248e864ad4ac34b5c3c3e9", + "size": 2498 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_judgment.md", + "sha256": "7983291f301ba1351e441ea113882d548fce67d547fe633f157d8da8b907ec5d", + "size": 1193 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_packet.md", + "sha256": "ec91ddcf12bf3eabaefc32d5cf6e043431fefe6342127ac3219c056b1b721fd0", + "size": 5077 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_touch_set.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_touch_set.csv", + "sha256": "c3ce2270b5548952a86879e33fdfade69f9b5a1878f3323f743cc5611bb0c9ce", + "size": 1473 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_review_only_remainder.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_review_only_remainder.md", + "sha256": "87f4d15b93a1557b8f426ad54ba985556f98619624f55fd24b91885f2e386a35", + "size": 1319 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_adjacent_edits.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_adjacent_edits.md", + "sha256": "a10dff3b7a3d9de532feafb6c665ef78cd1347fe5496e867099d21e319d07d9a", + "size": 2923 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_judgment.md", + "sha256": "3f4fbb6f1286b2ba6d946f1fff30a55c808856dd2c93d5f004e40b827e139b26", + "size": 1246 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_packet.md", + "sha256": "7ae53fd1184fe556f78614369b503f4e8ee3fee52a1b78609f0e116032203cf3", + "size": 5863 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_touch_set.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_touch_set.csv", + "sha256": "00f9cc3a9c17ed19a18dc9cd19fe153af4781dba1c84359b936dbbdcfcbed09f", + "size": 2331 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_review_only_remainder.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_review_only_remainder.md", + "sha256": "d3fbf71b48e59b6f1821c3c3dc9f205aa5f75ff757bf27982c8a112e6cbe702c", + "size": 1096 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/README.md", + "sha256": "df42866b953e348185dd10fcfea825237866503b9e571827eda08c666b428517", + "size": 484 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_judgment.md", + "sha256": "c543c298a0b8f5945561d534b1c447b4c08334181005cbf3449108e7ee568c24", + "size": 1181 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review.md", + "sha256": "62185617c019ce6faccde18b99d8ec4a322c3372f2490e50cd6cd6a35409be84", + "size": 1876 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_matrix.csv", + "sha256": "bb5e39960229562f3b0a6747f9432bdbcb1c41426b9d9a6e1fa379657ebb919e", + "size": 948 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_packet.md", + "sha256": "ed64f76aa78e60386d0f7d67fedba3cd8e148389e8f3800f0d387de78241a951", + "size": 3974 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_judgment.md", + "sha256": "64f4859fd00e7eedc267a9fc1c32ddfadd7b35c600015d44f903b046cacc4032", + "size": 708 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review.md", + "sha256": "d29e4ce39a110d352f7ff1ac9d3ab1b148d5c88e0dcf703af1c3c9d50e3f7a69", + "size": 1716 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_matrix.csv", + "sha256": "ae6bea7801f32f266133c5ce41c3309fd8b751e4b226d69acfb12c4f5607527c", + "size": 1048 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_packet.md", + "sha256": "fcd021008b05a01635b6bfdabcec08ed7d23664badcf929e71e2ad292647ca27", + "size": 3412 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/README.md", + "sha256": "2a54ebcc920e13854b2905e466883088f48ba9a83cf112cc28ca72e2698255bb", + "size": 595 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_judgment.md", + "sha256": "f54baec499820de99baef7f0036c995c058f412860684eff59c0d7a4198be1d3", + "size": 718 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_matrix.csv", + "sha256": "7834e699fc24214584f66176e110739b0c0dddc0d118252b1a489009cc271bbc", + "size": 1017 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_packet.md", + "sha256": "38727fbb4daabdbb3bf03c5998d7e32009c087489c0bb4d54572dbc3f569f108", + "size": 1090 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_judgment.md", + "sha256": "1838e415b523f25baf80944563bc291926f4051b895fea279b2979f74f994e39", + "size": 906 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_matrix.csv", + "sha256": "4072bbee6bccb7f2a5028f382f4f239ff361e7d1bf7708a165fb19adf29501ca", + "size": 2001 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_packet.md", + "sha256": "24597c7071cc25b59875aacdf1bf41b0a364791351cad7e04b846942802f333a", + "size": 1384 + }, + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/README.md", + "sha256": "d3d2774f06365f4d826413acf2dad90bd04037118b813faa321789a58903f3bf", + "size": 471 + }, + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board.md", + "sha256": "b8c420981eb4f9252a2294df94001dd4befac623e379fd7721d04d67d2c116cb", + "size": 10385 + }, + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board_matrix.csv", + "sha256": "ae4419947683022d9ad90933a0c93b8880e968a2a69b75236e091f2572b45020", + "size": 1109 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/README.md", + "sha256": "a1f674586f2795dcca5783431cf108c01d4c90527ffbfb14b881d07425cd7ba6", + "size": 1863 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/adversarial_audit_branch_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/adversarial_audit_branch_charter.md", + "sha256": "77f9394818bbad8cc6ece66bd8a0d00fa3994701544d7157accc3817c291a447", + "size": 986 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_charter_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_charter_matrix.csv", + "sha256": "c7078ca46916bbf94c5bb35a765b731357b7f6204a62de563b8584a2af7dd897", + "size": 1685 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_output_contract.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_output_contract.md", + "sha256": "6775b4aaa0bfcad662b2e2e27363a0e801332e9342f870c8b30f62dd35a871c0", + "size": 1024 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_start_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_start_packet.md", + "sha256": "c513c15e868c7335f36a84c79046e5cfa3ebebab03982ddcd035d995029d8f75", + "size": 1022 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/conductor_chat_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/conductor_chat_charter.md", + "sha256": "a509f6858c7b01073cebe7884b1e30b330a37f495bbb0e56abb06cc147d2da47", + "size": 1474 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/current_parallelization_strategy.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/current_parallelization_strategy.md", + "sha256": "a11ea38b8efcc4390c378d2fd04a5a7129144f1c801ba142e892945dca55c667", + "size": 1717 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_a_meta_template_branch_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_a_meta_template_branch_charter.md", + "sha256": "0cf978d6a9c7473f11a33f6f522a057c4262289196dbf7afd4e1d16cc7e30aea", + "size": 1253 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_c_runtime_branch_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_c_runtime_branch_charter.md", + "sha256": "f2d7ec0c905b1110217226aefc7b300e97ea2a813750d8147c13ffad63a86488", + "size": 1528 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/01_constitutional_reintegration_and_canon_foundry_proposal.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/01_constitutional_reintegration_and_canon_foundry_proposal.md", + "sha256": "ec508e7adaa1008906db24ffd1d155c8c4714c66c0848b6daff624a75cb84ea9", + "size": 12748 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/02_ion_estate_build_lines_and_root_status_assessment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/02_ion_estate_build_lines_and_root_status_assessment.md", + "sha256": "ed20b312044be130153a803528be35d42ee4783e607b377930d2d8b6d89eb3a3", + "size": 13123 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/03_aim_os_and_aim_ion_comparative_integration_report.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/03_aim_os_and_aim_ion_comparative_integration_report.md", + "sha256": "7801f0d39411f02e81fa3038358daf9ae0080947ce208f2fbcc79dc410b33524", + "size": 11412 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/04_canon_foundry_operating_model_and_registry_stack.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/04_canon_foundry_operating_model_and_registry_stack.md", + "sha256": "3e384e89674e4037e380106476b688d9d2b05186fcca293510c5ee736af138a0", + "size": 10199 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/05_ion_future_evolution_timeline_from_reintegration.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/05_ion_future_evolution_timeline_from_reintegration.md", + "sha256": "8b34f67fef7d1a720f9b751adacb000710f60653424d0d236207cd6d4c1a5cb9", + "size": 8686 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/06_decision_gates_open_questions_and_first_execution_order.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/06_decision_gates_open_questions_and_first_execution_order.md", + "sha256": "f5f3a6b34eea20e02552a1627ed3fb6f3c1f60f707df0f1274db924a75d66b33", + "size": 6113 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/README.md", + "sha256": "e97d096dcf98a768e37d6aff7fa33259c33ee89fe88d6ecea49e7524d9a4480e", + "size": 2449 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/README.md", + "sha256": "cb18e3691935127d3efadca298d7c62544892eccb8c49e10161aedfdec45bfbe", + "size": 359 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_judgment.md", + "sha256": "8a25c1935c30d93327444c1f743006646960df294a771bea75a9a7e92fc8ccce", + "size": 645 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_matrix.csv", + "sha256": "40ae32cb11f0b5e494bdea52d710c617b67cfeb577fa1c4c1d0f538c6a29a47e", + "size": 605 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_packet.md", + "sha256": "be77245c717a7fa42711cd366d4457907e9a47cba5e0e93731231b50a122eae7", + "size": 3093 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/README.md", + "sha256": "0e28a7a1b7187e288f88c576c7f06c38f12e234f17775850b526cf933c9b9b0e", + "size": 378 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_judgment.md", + "sha256": "1ee6b9c9eb4363185fdac697de0f32e1e5bb5d98f13760a0efc4e85d2911e9b7", + "size": 849 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_matrix.csv", + "sha256": "928f8d74270b8b39f6f6e1a803831b8b5abc15bb4e45f08fa103ce396fc71d1a", + "size": 1552 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_packet.md", + "sha256": "fb92c469fbf508624fb52437eba6d72d9d6ad7b8914e43576dd5cea57326344d", + "size": 5294 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/README.md", + "sha256": "d3a68a378aaac5f3d8f76d159702e4bf5ccda80e85cc80ff0f507fc6bea2f2e7", + "size": 391 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_judgment.md", + "sha256": "0e9ae5316ee54a52c00b3c2f1a2b2c2cb7129230cc9324c528eab59cf9a5365e", + "size": 595 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_matrix.csv", + "sha256": "e47bea48734b9ff05f1cf49b199047ff40dffa97660ae9e8690b2d108ea61f54", + "size": 844 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_review_packet.md", + "sha256": "94fbe48802a74a3aa638837f2075fc62a2e1af36e093612b52eea2d32ef51f2d", + "size": 4043 + }, + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/README.md", + "sha256": "e67495ae2a83cccb8c938f5f38f311ab69feda4167143d8abaf9514ca20e5680", + "size": 548 + }, + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_judgment.md", + "sha256": "4f197897714d8ee232f0cd6cac2de56dea3312d7ab1178eddb10451daceee819", + "size": 854 + }, + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_reassessment_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_reassessment_packet.md", + "sha256": "063b4b445287bce9c12502edfd62571592c29e7236e7eea8fcbaddc03b36c6ed", + "size": 6347 + }, + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/README.md", + "sha256": "e6d0f1f4c2f7baff0fbb719c9bfe125c9b00878dc54bb29feb04c0c82cb46e43", + "size": 560 + }, + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_judgment.md", + "sha256": "a11885b25a2d20bf23945aef715315e1a7806dd02c278843a77727979134dbc5", + "size": 1489 + }, + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_packet.md", + "sha256": "55e558c13b736fb8d7f8000f42f6c8c0778be2f1121ca9f78d1373d9e6fa93c6", + "size": 8751 + }, + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/README.md", + "sha256": "6a8405bdbe0720510fe4ca1ca8304aea366d16b34a4008c949fc4621010b9da8", + "size": 478 + }, + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_judgment.md", + "sha256": "35cb3fef3433694b1b51d6cba9d18e9fa6acc32e2bddf6e96157907d7ed03a8a", + "size": 2217 + }, + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_packet.md", + "sha256": "be59e718ac82e6e93b5a2f1e7b4a5b3ea005df4009ab01063dcbfba22ff478bf", + "size": 3656 + }, + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/README.md", + "sha256": "8cb787572d805141364d5685902b10a0a2a7a2d9a31b04e00143279cf578943c", + "size": 541 + }, + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_judgment.md", + "sha256": "6d17c0465af8e052aa5f6b3c8a280798267a5cc6484d69100df2682fe8839166", + "size": 1633 + }, + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_packet.md", + "sha256": "19e3b89f39e29fa157920c3ea0716a3b48a66970dcbc0d05112b4cca171c9516", + "size": 2814 + }, + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/README.md", + "sha256": "69bdb86e20bfc523e41d1cf6c699ce30a38600f8dceafde1d62de07117975478", + "size": 569 + }, + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_judgment.md", + "sha256": "154f815752228a41250c0e82bf6e09bdb7f27e6717fdaa9251ff7654243b78be", + "size": 2152 + }, + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_packet.md", + "sha256": "6ad13b5ea380a3345f77ab8026fca0221ebd7d178bfa0f7b065aca14b2613749", + "size": 3900 + }, + "ION/06_intelligence/orchestration/custom_gpt/00_CUSTOM_GPT_PREP_INDEX.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/00_CUSTOM_GPT_PREP_INDEX.md", + "sha256": "22ef2ea98edd0bc25c1ec742428b07267bc52c34671022db80c497ac68c7b204", + "size": 2968 + }, + "ION/06_intelligence/orchestration/custom_gpt/01_CUSTOM_GPT_READINESS_ASSESSMENT.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/01_CUSTOM_GPT_READINESS_ASSESSMENT.md", + "sha256": "04da1be297252b0f845b7eb437629e385d6aa0fbb2d19ff1dc8aaee7764517d3", + "size": 2697 + }, + "ION/06_intelligence/orchestration/custom_gpt/02_ION_CUSTOM_GPT_BUILD_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/02_ION_CUSTOM_GPT_BUILD_SPEC.md", + "sha256": "8ad45e5f8e4853ccfb2a7e3fdb30d89753bde92fa2781fd32d9865ce4777a167", + "size": 2783 + }, + "ION/06_intelligence/orchestration/custom_gpt/03_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/03_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md", + "sha256": "6b4f31fb347ebad7a64a11d026301fa9b6ab4ea783f1fe5a256446b2a897b4a4", + "size": 1736 + }, + "ION/06_intelligence/orchestration/custom_gpt/04_WORKING_CONTINUITY_BUNDLE_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/04_WORKING_CONTINUITY_BUNDLE_SCHEMA.md", + "sha256": "b037526b0030486c8002bc5e3ebbf06b64c11e357b2d4aa133c4b382ef4a1c2c", + "size": 3079 + }, + "ION/06_intelligence/orchestration/custom_gpt/05_VAULT_CONTINUITY_BUNDLE_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/05_VAULT_CONTINUITY_BUNDLE_SCHEMA.md", + "sha256": "4d96d9a96f8b61bdaba305b5d480fbaa19392e6dd5ef33d99169e04f9da1500c", + "size": 2163 + }, + "ION/06_intelligence/orchestration/custom_gpt/06_CONTINUITY_EXPORT_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/06_CONTINUITY_EXPORT_PROTOCOL.md", + "sha256": "d57578b45d7b4085a7910eac1a73ecc50d3f0563f3fb515d4861d5456a329554", + "size": 1700 + }, + "ION/06_intelligence/orchestration/custom_gpt/07_CONTINUITY_RESUME_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/07_CONTINUITY_RESUME_PROTOCOL.md", + "sha256": "bab4c4d8a9376e773fac07f929223caed2635dac1ec2a4a71f042064957c330e", + "size": 1509 + }, + "ION/06_intelligence/orchestration/custom_gpt/08_ACTIONS_DECISION_TREE_FOR_ION.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/08_ACTIONS_DECISION_TREE_FOR_ION.md", + "sha256": "3e4513430f683a227495e153c4710c4c70a1457607e97b03ab840ede924061b7", + "size": 1817 + }, + "ION/06_intelligence/orchestration/custom_gpt/09_ION_CUSTOM_GPT_INSTRUCTION_TEMPLATE.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/09_ION_CUSTOM_GPT_INSTRUCTION_TEMPLATE.md", + "sha256": "e99ee4f46ce2245bb2f271b9ecabe4d256ba27c56ff520305e89ddb217d57fd2", + "size": 2594 + }, + "ION/06_intelligence/orchestration/custom_gpt/10_ION_CUSTOM_GPT_KNOWLEDGE_PACK_LAYOUT.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/10_ION_CUSTOM_GPT_KNOWLEDGE_PACK_LAYOUT.md", + "sha256": "bc0ad5ffca014a951c5e8720ea5f5dcaee7a11702e0c40321056c5981afa6b58", + "size": 2019 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/00_BUILDER_READY_INDEX.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/00_BUILDER_READY_INDEX.md", + "sha256": "795a83eb33ec45026c86cba21d1479a6479872dcaed993255eccc87b3b99887b", + "size": 993 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/01_BUILDER_READY_INSTRUCTIONS.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/01_BUILDER_READY_INSTRUCTIONS.md", + "sha256": "8fe60f210027d4a7485a944136bbe6e2c3408e0f3f2f3f49a594ee41772e4088", + "size": 4934 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/02_CONVERSATION_STARTERS.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/02_CONVERSATION_STARTERS.md", + "sha256": "68ed16827fc9edb28647d238f9b0b41f3782078531ea9156a4d21dc366c59a88", + "size": 644 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/03_BUILDER_WORKFLOW.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/03_BUILDER_WORKFLOW.md", + "sha256": "20ecc7bfb21ce79dc0db455f12c922867aa4fcb65a18a4cd5034d6d69bed6ed1", + "size": 1396 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/04_KNOWLEDGE_PACK_MANIFEST.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/04_KNOWLEDGE_PACK_MANIFEST.md", + "sha256": "7906058cd5911857e386e044709df2f5e817247eb36ae765eb1e824125c8948a", + "size": 908 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/05_OPENAI_SURFACE_NOTES.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/05_OPENAI_SURFACE_NOTES.md", + "sha256": "597f75a8e566cc62b7de81005c28b81c9b09cac324f2c1d5a4c314427d2397e4", + "size": 745 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/06_END_TO_END_VALIDATION_RUNBOOK.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/06_END_TO_END_VALIDATION_RUNBOOK.md", + "sha256": "84fbc0c9f8e5b4f5000398021e2444190a0dc6479bdd51d22d15913dda501a3a", + "size": 4760 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/07_EXAMPLE_BUNDLE_USAGE.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/07_EXAMPLE_BUNDLE_USAGE.md", + "sha256": "a7763df4dd66e476f9ba2e37296896b1b75d952d7266ae4cf2459acee4cc2d48", + "size": 1655 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/01_ION_GPT_SHELL_LAW.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/01_ION_GPT_SHELL_LAW.md", + "sha256": "ec48ce97304aa57d268388931428faf05a5dfb8e6388efd5f33e860cbfe0403d", + "size": 1097 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/02_WORKING_CONTINUITY_BUNDLE_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/02_WORKING_CONTINUITY_BUNDLE_SCHEMA.md", + "sha256": "b037526b0030486c8002bc5e3ebbf06b64c11e357b2d4aa133c4b382ef4a1c2c", + "size": 3079 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/03_CONTINUITY_EXPORT_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/03_CONTINUITY_EXPORT_PROTOCOL.md", + "sha256": "d57578b45d7b4085a7910eac1a73ecc50d3f0563f3fb515d4861d5456a329554", + "size": 1700 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/04_CONTINUITY_RESUME_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/04_CONTINUITY_RESUME_PROTOCOL.md", + "sha256": "bab4c4d8a9376e773fac07f929223caed2635dac1ec2a4a71f042064957c330e", + "size": 1509 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/05_TEMPORAL_OBJECT_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/05_TEMPORAL_OBJECT_SCHEMA.md", + "sha256": "5419feea53bdf9912a42802b4043c02a9e87d16014afa16dd2993feb483fdfba", + "size": 13210 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/06_ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/06_ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md", + "sha256": "824f5bbe72e9f3040d30d41b7d14918aaffab86f45731bbb28c0f5f7dd4e5307", + "size": 15118 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/07_TEMPORAL_CONTEXT_LEASE_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/07_TEMPORAL_CONTEXT_LEASE_PROTOCOL.md", + "sha256": "f6aac09f1302ea16a4bcae3e03c70c22033c8f12b59ac205f77e73e43590afb0", + "size": 14812 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/08_TRIPLE_TIME_RECONCILIATION_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/08_TRIPLE_TIME_RECONCILIATION_PROTOCOL.md", + "sha256": "2a09d234f42043c90b71b4943ef17610e821509c2151d338e6da24067c0994b4", + "size": 15147 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/09_ION_CUSTOM_GPT_BUILD_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/09_ION_CUSTOM_GPT_BUILD_SPEC.md", + "sha256": "8ad45e5f8e4853ccfb2a7e3fdb30d89753bde92fa2781fd32d9865ce4777a167", + "size": 2783 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/10_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/10_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md", + "sha256": "6b4f31fb347ebad7a64a11d026301fa9b6ab4ea783f1fe5a256446b2a897b4a4", + "size": 1736 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/README.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/README.md", + "sha256": "9d76b283ead97a609fdc244c686e30806576e03871ecec0894581395fd0d99c9", + "size": 457 + }, + "ION/06_intelligence/orchestration/demo_spine/2026-04-25_v21_demo_spine_consolidation_report.md": { + "path": "ION/06_intelligence/orchestration/demo_spine/2026-04-25_v21_demo_spine_consolidation_report.md", + "sha256": "19a720d0d29197f6494a5395fced661abbeff39acd1a27da1934db1d0e1909b2", + "size": 3204 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v22_summary_refresh_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v22_summary_refresh_demo_plan.md", + "sha256": "11252c36dafcbba3ffcf5e59b6c2b82d2d7577858631e52127a132efed51ca57", + "size": 703 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v23_summary_refresh_projection_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v23_summary_refresh_projection_demo_plan.md", + "sha256": "34eb65b4eb96c1e258966a2a2eb1d1024a030c511e3083bf35201f7cb334aa63", + "size": 728 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v24_summary_refresh_graph_proposal_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v24_summary_refresh_graph_proposal_demo_plan.md", + "sha256": "08477b731c1f0e2dc5f7ae9e76bf44e927b288d14c4a89e07954fcea98b89aaa", + "size": 832 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v25_summary_refresh_review_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v25_summary_refresh_review_demo_plan.md", + "sha256": "ae4019e4e67c146e837fb26303c5edf34db5cdb1f3622edd9c0387382a45059d", + "size": 906 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v26_summary_refresh_bounded_commit_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v26_summary_refresh_bounded_commit_demo_plan.md", + "sha256": "8c08255376aecb4f8b86f3982744c8842e69da9c4e6d47e4287130776581d77f", + "size": 1113 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v27_summary_refresh_demo_replay_cli_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v27_summary_refresh_demo_replay_cli_plan.md", + "sha256": "4f35df13d67ff9dfe01d456ce37e68fe98954b20515759b689b96aaf0cad83b3", + "size": 1466 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v28_summary_refresh_demo_replay_doctor_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v28_summary_refresh_demo_replay_doctor_plan.md", + "sha256": "a192c61cc85b66eed091c54c32958d913ab2e32dba46f3a536e5c7d2c4bc2b9f", + "size": 1042 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v29_summary_refresh_demo_certification_gate_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v29_summary_refresh_demo_certification_gate_plan.md", + "sha256": "c246e262918367a42dc5bc994c284780097fc4bcec642bfeae47d0ec3d726984", + "size": 1114 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v30_summary_refresh_demo_evidence_bundle_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v30_summary_refresh_demo_evidence_bundle_plan.md", + "sha256": "21a84cde5fe68d4ac1d3e0781cad61e05fa2a4d0f6b6050e7dc595cfea6215bb", + "size": 561 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v31_summary_refresh_demo_release_candidate_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v31_summary_refresh_demo_release_candidate_plan.md", + "sha256": "8c1caf475985005f6d9e28e114fbaa6adbe2d1aa6341ac772451f013e497dd64", + "size": 1056 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v32_summary_refresh_demo_release_candidate_verifier_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v32_summary_refresh_demo_release_candidate_verifier_plan.md", + "sha256": "0f9806f41848e9efe23bc33d1a0a4fe062107b2ac45e69221c0941c7558c344e", + "size": 1314 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v33_production_readiness_charter_and_ratification_matrix_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v33_production_readiness_charter_and_ratification_matrix_plan.md", + "sha256": "bbf921ebf08cc0b5d27fdbe58ab694c73ff108c5e93e38b0b265a76c800c2c02", + "size": 725 + }, + "ION/06_intelligence/orchestration/temporal_stack/00_TEMPORAL_STACK_INDEX.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/00_TEMPORAL_STACK_INDEX.md", + "sha256": "90604896162df2abd3fb8172b260c0cf1f91d40e104c181f3e580f0f444b7721", + "size": 1272 + }, + "ION/06_intelligence/orchestration/temporal_stack/01_ION_TEMPORAL_DEVELOPMENT_FRAMEWORK_EXPANDED.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/01_ION_TEMPORAL_DEVELOPMENT_FRAMEWORK_EXPANDED.md", + "sha256": "4eb74b8940bc8bc1d9d306331f9deb55279d62d5eb479400cef2286c88d6f2e6", + "size": 43918 + }, + "ION/06_intelligence/orchestration/temporal_stack/02_TEMPORAL_WORKED_SCENARIOS_FOR_ION.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/02_TEMPORAL_WORKED_SCENARIOS_FOR_ION.md", + "sha256": "165fa1ff82a113b41ee004ed7bb502f1339ccceb0025cb266f46bcbc1a1e85dd", + "size": 14938 + }, + "ION/06_intelligence/orchestration/temporal_stack/03_TEMPORAL_STACK_MAPPING_INTO_CURRENT_ION.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/03_TEMPORAL_STACK_MAPPING_INTO_CURRENT_ION.md", + "sha256": "2537cbb7df51fd01128e759694340894ec75cc2b273ae7c26602f3deb57d3d83", + "size": 13930 + }, + "ION/06_intelligence/orchestration/temporal_stack/04_FIRST_PASS_TEMPORAL_EVALUATOR_DESIGN.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/04_FIRST_PASS_TEMPORAL_EVALUATOR_DESIGN.md", + "sha256": "012be14e53cdcc806350d8a33e6c2fa6a0ba1975e5c3c144d8ca14794867ff58", + "size": 12768 + }, + "ION/06_intelligence/orchestration/temporal_stack/05_TEMPORAL_EVALUATOR_PSEUDOCODE_AND_DATA_STRUCTURES.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/05_TEMPORAL_EVALUATOR_PSEUDOCODE_AND_DATA_STRUCTURES.md", + "sha256": "085961d1c33e3a75ba2856aceb476aa9d21693dacc00e63ceaac405ed6b9b063", + "size": 25648 + }, + "ION/06_intelligence/orchestration/temporal_stack/06_EXACT_CURRENT_ION_MODULE_MAPPING.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/06_EXACT_CURRENT_ION_MODULE_MAPPING.md", + "sha256": "72aa814bbc99338bd994a5da5e164a873197595ab66ee1e165f351ea44aff85a", + "size": 7041 + }, + "ION/06_intelligence/orchestration/temporal_stack/context/CURRENT_BRANCH_IMPORT_LEDGER_AND_SIBLING_AUTHORITIES.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/context/CURRENT_BRANCH_IMPORT_LEDGER_AND_SIBLING_AUTHORITIES.md", + "sha256": "2538c3c606293b20261b0e57eef6a13ce0fe296248e2ac795bb78759f6e1ebb8", + "size": 11803 + }, + "ION/06_intelligence/relay/relay/briefs/2026-04-03_continuity_roundtable_brief.md": { + "path": "ION/06_intelligence/relay/relay/briefs/2026-04-03_continuity_roundtable_brief.md", + "sha256": "97efb78c1805053db1f86634408d6f2fca9176244619c0364988a12670687adf", + "size": 6940 + }, + "ION/06_intelligence/relay/relay/briefs/2026-04-03_relay_ratification_assessment.md": { + "path": "ION/06_intelligence/relay/relay/briefs/2026-04-03_relay_ratification_assessment.md", + "sha256": "f2fd3aa23b9484a8ebbdbbf621e725325350a557050518f65b940d0c75a938e3", + "size": 5731 + }, + "ION/06_intelligence/relay/relay/briefs/MISSION_TOTAL_ION_DEFINITION_AND_LINK_GRAPH.md": { + "path": "ION/06_intelligence/relay/relay/briefs/MISSION_TOTAL_ION_DEFINITION_AND_LINK_GRAPH.md", + "sha256": "c920359ce14d52751c8ac5b02654d7dd6e544e81ea0ba48500ac4f221c0a2b74", + "size": 14506 + }, + "ION/06_intelligence/relay/relay/briefs/README.md": { + "path": "ION/06_intelligence/relay/relay/briefs/README.md", + "sha256": "5ddd50885fe82752e742c721f4fddcfc6b7e5cd99b1f1372c04805c3a5b341e2", + "size": 157 + }, + "ION/06_intelligence/relay/relay/continuity.md": { + "path": "ION/06_intelligence/relay/relay/continuity.md", + "sha256": "db322f090f7ce3a071bd014a06d79b7d7ee5ce3d2ef34c4bdc7a10e93ff4c37c", + "size": 3912 + }, + "ION/06_intelligence/relay/relay/inbound/README.md": { + "path": "ION/06_intelligence/relay/relay/inbound/README.md", + "sha256": "9c9f37de8b2a71d8e6a88db303db675345943dd9d09b8561f5e60c83a4ce065d", + "size": 157 + }, + "ION/06_intelligence/relay/relay/interaction_digest.md": { + "path": "ION/06_intelligence/relay/relay/interaction_digest.md", + "sha256": "2751d8d1a1d0777306122b1f6b7208de3163e00a331f4b2132d57d65dadbb068", + "size": 982 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_mission_total_ion_definition_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_mission_total_ion_definition_to_ALL.md", + "sha256": "daf6f7a018eacb3902549edcbcf931999481693ee89a7f04be2e7a38f04047e8", + "size": 2123 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_agent_hierarchy_realms_specialists_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_agent_hierarchy_realms_specialists_to_ALL.md", + "sha256": "79c63783eccd84f0b4cd8da934e24d0fd33251ccec16715f72310d5a8bf4976f", + "size": 3126 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_aimos_deep_gap_analysis_for_ion_understanding_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_aimos_deep_gap_analysis_for_ion_understanding_to_ALL.md", + "sha256": "e7d26dd26462ae0d514ac2caa542a1a321357031b7028091cc6896de8d491272", + "size": 11137 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_capsule_web_of_protocol_context_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_capsule_web_of_protocol_context_to_ALL.md", + "sha256": "e4b15a069a61f96e3f37828967779b1121ff4981f12eab70a7cbc815ad94fc47", + "size": 1444 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_consider_aether_atlas_for_ion_understanding_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_consider_aether_atlas_for_ion_understanding_to_ALL.md", + "sha256": "c3076c6e794096c7c8a493255eec0f59c3c5b75d694f102b7d75a152b0cde336", + "size": 2315 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_continuity_as_protocol_field_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_continuity_as_protocol_field_to_ALL.md", + "sha256": "2a4ce11ff9712c590deac83eae5eb9434bfd0d87fe83774d950037f06b5507a2", + "size": 2953 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_relay_scope_mission_hub_disclaimer_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_relay_scope_mission_hub_disclaimer_to_ALL.md", + "sha256": "e9ca55adfb45686f9c601a9cac8c52b80d92d9a4c3d8de701aaee41ca8effe86", + "size": 2520 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_single_chat_multi_role_kernel_routing_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_single_chat_multi_role_kernel_routing_to_ALL.md", + "sha256": "7380978f400f6b2f0be7fa3e7ac4b03afd855d8dcb1fa214c3b36fa0ef12a982", + "size": 2679 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_systems_atlas_for_ultimate_os_ion_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_systems_atlas_for_ultimate_os_ion_to_ALL.md", + "sha256": "094a9ba4f39ebe21cf3f9542228b8a80b8eddd0c993977d6a5638877476981ea", + "size": 4442 + }, + "ION/06_intelligence/relay/relay/outbound/README.md": { + "path": "ION/06_intelligence/relay/relay/outbound/README.md", + "sha256": "c4e47c897a699dcef9b30406f7e828fb2fb00a6fa54f409a8af350383c85eda4", + "size": 134 + }, + "ION/06_intelligence/relay/relay/persona_state.md": { + "path": "ION/06_intelligence/relay/relay/persona_state.md", + "sha256": "bb711376a631b76f92f66be3ff146acff33972b310386a718b8bec2edbdd9049", + "size": 514 + }, + "ION/06_intelligence/relay/relay/sovereign_profile.md": { + "path": "ION/06_intelligence/relay/relay/sovereign_profile.md", + "sha256": "fea2aabc21deec611ed9486ee90ea2efe896f6d49f7dddaa3db002f5fcfd3691", + "size": 1600 + }, + "ION/06_intelligence/reports/2026-04-23_vm_healthcheck_continuation_pass.md": { + "path": "ION/06_intelligence/reports/2026-04-23_vm_healthcheck_continuation_pass.md", + "sha256": "a8235906822a66e6ea23f4bed0e58d05db1969fb491142237470430d71a74e7e", + "size": 6197 + }, + "ION/06_intelligence/research/2026-04-03_TOTAL_ION_DIRECTION_vizier.md": { + "path": "ION/06_intelligence/research/2026-04-03_TOTAL_ION_DIRECTION_vizier.md", + "sha256": "b05bcb18944e564bfcc6874ce11b1c69a0ca4d00eb20dfecfd379a655c019eac", + "size": 10675 + }, + "ION/06_intelligence/research/2026-04-03_TRUE_CORES_OF_ION_vizier.md": { + "path": "ION/06_intelligence/research/2026-04-03_TRUE_CORES_OF_ION_vizier.md", + "sha256": "0f21f6017888badd34f51a24340e47bfb092f4ac7ef555d4e83371b92f2a003a", + "size": 14487 + }, + "ION/06_intelligence/research/2026-04-03_agent_hierarchy_field_map.md": { + "path": "ION/06_intelligence/research/2026-04-03_agent_hierarchy_field_map.md", + "sha256": "f0ce30ed948fec8de799cd362c4d1ef2577d9c7e696fe859a6aa083afdae6b28", + "size": 9740 + }, + "ION/06_intelligence/research/2026-04-03_builder_continuity_roundtable.md": { + "path": "ION/06_intelligence/research/2026-04-03_builder_continuity_roundtable.md", + "sha256": "0ac52a7448b8b9dc54367a18b9f2a4c5a6c9517f921b7bb4273d7bdbaa1e682b", + "size": 5164 + }, + "ION/06_intelligence/research/2026-04-03_codex_capsule_protocol_web_and_recovery_map.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_capsule_protocol_web_and_recovery_map.md", + "sha256": "2a4550e5e35cef1ffc2949ad7ce3b869bf933e372cfdd1794e485f4e0f894c7a", + "size": 15236 + }, + "ION/06_intelligence/research/2026-04-03_codex_context_compiler_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_context_compiler_first_pass.md", + "sha256": "bb481c8c8385a4093bfe45d855c3766983038448583223f1f2687f0927af68cf", + "size": 3587 + }, + "ION/06_intelligence/research/2026-04-03_codex_continuity_roundtable.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_continuity_roundtable.md", + "sha256": "5474327d83888b5572e7f818630582293e38da197c6c7ab6bac32a5a3663c0d8", + "size": 9120 + }, + "ION/06_intelligence/research/2026-04-03_codex_end_to_end_law_protocol_template_review_and_kernel_router_transition.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_end_to_end_law_protocol_template_review_and_kernel_router_transition.md", + "sha256": "621080ab93897dbaec1e4ff9b8842a85a6ca9ee08256bb44481a498ac273f2b6", + "size": 12761 + }, + "ION/06_intelligence/research/2026-04-03_codex_future_orchestration_blueprint.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_future_orchestration_blueprint.md", + "sha256": "c2d349fff9829666be68077f390c9fa9d9342cc2d278f9ee37487a09657daa90", + "size": 13863 + }, + "ION/06_intelligence/research/2026-04-03_codex_governance_packet_pilot.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_governance_packet_pilot.md", + "sha256": "cf4f806b2ed30a70cf45834efde383d7ed80d191c12f9af95af53506c7c1da30", + "size": 2845 + }, + "ION/06_intelligence/research/2026-04-03_codex_ide_native_phase_frame_and_team_checkin.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_ide_native_phase_frame_and_team_checkin.md", + "sha256": "2425a99e892a1863382bfc1e71b2109cdf64b284b9bedbe0121ae85e29de236d", + "size": 10271 + }, + "ION/06_intelligence/research/2026-04-03_codex_inbox_normalization.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_inbox_normalization.md", + "sha256": "7e3085e7cd1916e01dee25a625a8162e08d892aa0ede0a488b20206b8cc0ac3f", + "size": 2572 + }, + "ION/06_intelligence/research/2026-04-03_codex_ion_centering_response.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_ion_centering_response.md", + "sha256": "62c82bf3a7487f45f4fac7d017d2a6f18e8ed268b6d2cb693aa0431a977e192f", + "size": 8400 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_child_work_issuance_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_child_work_issuance_first_pass.md", + "sha256": "b86441d42f50815355f2dc17aa6a87c42c96a5b8867ee7b3b0dcfa49a56232a5", + "size": 5439 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_commit_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_commit_first_pass.md", + "sha256": "ab1e00d147ee0843c9a4b096b6c71b0854b517306266e1d30aa3401177aef9a9", + "size": 4510 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_act_once_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_act_once_first_pass.md", + "sha256": "d23b6b7a4552c4a5401935c0141411b96e88ac2049003008575dff00fdce0e0c", + "size": 3853 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_arbiter_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_arbiter_first_pass.md", + "sha256": "80c94c7318b4ff11f9d741d37abbb732cfeb9b15f243edcc3ec6e38e5df7de65", + "size": 4605 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_loop_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_loop_first_pass.md", + "sha256": "75e9cca09b28f610328485a9c222531e95305be3d59fa5fdef43c41608ed54ba", + "size": 3512 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass.md", + "sha256": "012b9a3242888d900b6bd95a54415bb3c8e073b71c8b3fb3ec79bfd7cd7eedae", + "size": 3622 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_dispatch_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_dispatch_first_pass.md", + "sha256": "6da479e173fa58ae83ee59e60567e77878690e92612fd7c582a4971b98373929", + "size": 4217 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_execution_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_execution_first_pass.md", + "sha256": "eedd83a8b3a841f490a2648934c3115c63528cc343552b70e63c3e8723806ad1", + "size": 3990 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_graph_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_graph_first_pass.md", + "sha256": "1c9123ffb06bb69eda740944c679136dac312c05a704f44819429e8f3879d6e0", + "size": 3040 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_index_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_index_first_pass.md", + "sha256": "046829bbcfa11c6fcf9b1d6cd9478ef88259c4b28b509c651f86d66b5cbfe98e", + "size": 3200 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_model_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_model_first_pass.md", + "sha256": "cddec64da33300c1f454acf2ef6a3f3eac11e5757f0f0cfd7b08ca67384648a0", + "size": 2563 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_open_question_routing_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_open_question_routing_first_pass.md", + "sha256": "098c09b1196f14aac56e26e41bec5a3858ec3d4568aba032bde0db220763345e", + "size": 4810 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_review_escalation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_review_escalation_first_pass.md", + "sha256": "5f19b23153abc9fe55299d052d3aa91f78bb97fb9d8c3a8014201ecd7b1b747b", + "size": 4430 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_scheduler_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_scheduler_first_pass.md", + "sha256": "facb92c1eb783e9723dcfa655e77e1dc4326dfd016b13881becd23a738c67e09", + "size": 3560 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_consumption_archive_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_consumption_archive_first_pass.md", + "sha256": "64448866984079409f1896064f8510decfcdfff38cb792090849c85974ac00c3", + "size": 3901 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_followup_automation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_followup_automation_first_pass.md", + "sha256": "4eb21036f2e3dd3b2f335890d6dc3c4469136f050821a0d35ecaa51fd224899e", + "size": 4795 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass.md", + "sha256": "ea9edb83e9e7034714b69097915135f2b40093783f964043e0b0027a2c7a0c62", + "size": 4057 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_store_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_store_first_pass.md", + "sha256": "f60337f8f6b2973018b7dbd4969a4edf2d91a3a05be3e6791bfe9581d1903d9e", + "size": 2853 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_first_pass.md", + "sha256": "4b4bb8feddd9e745e93c43594bcc5be4526f62c1303e025f0f7a7076c8d5a3d0", + "size": 3721 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_receipt_signal_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_receipt_signal_first_pass.md", + "sha256": "1238a86199ed88203e061770c6980e8aa829254ab58a5a3d46d79dd75e9ad39f", + "size": 4244 + }, + "ION/06_intelligence/research/2026-04-03_codex_lead_journal.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_lead_journal.md", + "sha256": "e42c5c187917d991045dee31c51b36b0b082dfb1aaccfd38d05f0e302cf29d1e", + "size": 3996 + }, + "ION/06_intelligence/research/2026-04-03_codex_live_kernel_status_pilot.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_live_kernel_status_pilot.md", + "sha256": "da9ea2804fb8366d9fc4340c4ab8ae5920b133555d1644dc60f2eb4827528c22", + "size": 3325 + }, + "ION/06_intelligence/research/2026-04-03_codex_official_agent_and_support_topology.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_official_agent_and_support_topology.md", + "sha256": "1dc1721fe18a20a776326e78c15e9d0fd01f8400c470d2e449f26df8df4f5462", + "size": 3732 + }, + "ION/06_intelligence/research/2026-04-03_codex_phase_0b_build_run_priorities.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_phase_0b_build_run_priorities.md", + "sha256": "6f50a4cf954a241d3477fdbb90a6db7b6fe88e6f23508a30a597468089d4ed13", + "size": 8634 + }, + "ION/06_intelligence/research/2026-04-03_codex_plan_continuity_patch_package.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_plan_continuity_patch_package.md", + "sha256": "f595bafcf44f7b0c731d8bdb0bad18167567f7a56870f1a1a18204409fab4056", + "size": 5341 + }, + "ION/06_intelligence/research/2026-04-03_codex_plan_surface_drift_note.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_plan_surface_drift_note.md", + "sha256": "ca1f58a07369b175a7a8b096214f02e6c8a670a58da6b3eacdd14af3202b7cb9", + "size": 2185 + }, + "ION/06_intelligence/research/2026-04-03_codex_protocol_field_working_thesis.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_protocol_field_working_thesis.md", + "sha256": "c6906acf338881498fd85f5637b3ff05eefd0e40cafcda6be7f96772a538b8f5", + "size": 8174 + }, + "ION/06_intelligence/research/2026-04-03_codex_ratification_response_and_guardrails.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_ratification_response_and_guardrails.md", + "sha256": "7c7401766e35a0d3171f28077a98c7fde405facfaa3e8b165d87b54999d68371", + "size": 5644 + }, + "ION/06_intelligence/research/2026-04-03_codex_response_to_external_canonicalization_memo.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_response_to_external_canonicalization_memo.md", + "sha256": "a0af8bff55490a6215110a1ab4b6a4571a14f98bd8aecd259104ac4c5bda6a12", + "size": 9594 + }, + "ION/06_intelligence/research/2026-04-03_codex_roundtable_delta_after_ratification_ready.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_roundtable_delta_after_ratification_ready.md", + "sha256": "874efe7915218a7c970d0a7828177460d34f6b7dfed824419f9799e04c6162f8", + "size": 4488 + }, + "ION/06_intelligence/research/2026-04-03_codex_roundtable_ideas_and_first_move.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_roundtable_ideas_and_first_move.md", + "sha256": "6cd5420c1086ea5d7a0989838ffe71cca89f35cb0ddbc64b4a5e975590de53fc", + "size": 7916 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_governance_trace.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_governance_trace.md", + "sha256": "4a865d08f0c23822c98597495ba70e7d21b3c3c75c4e1bb853ddd848e5357dac", + "size": 2964 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_implementation_trace.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_implementation_trace.md", + "sha256": "7a6cddb09de496ee37728b6c29503a3bb18ddabe19d6a26c61139330163d4cd9", + "size": 2829 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_router_build_and_test.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_router_build_and_test.md", + "sha256": "62840dc519489332457fd0b24b9928add995bc5986c15bc8ba47d656a774cc17", + "size": 3620 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_runtime_portability_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_runtime_portability_first_pass.md", + "sha256": "1f63d8f526731957b0ad9422f89ff91010132be73c34acfbdb8a07b75fe779c8", + "size": 3474 + }, + "ION/06_intelligence/research/2026-04-03_codex_supervisor_continuity_correction_package.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_supervisor_continuity_correction_package.md", + "sha256": "e0cd70dfa4224010641dd0eed967c9ef220c265e6db43f0b3ad295cf3f166777", + "size": 6807 + }, + "ION/06_intelligence/research/2026-04-03_codex_task_writeback_pilot.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_task_writeback_pilot.md", + "sha256": "0181a1fe3511801e5394f83bfa37e0d3da446f9fd85af0c2b9838f28693de24b", + "size": 2711 + }, + "ION/06_intelligence/research/2026-04-03_codex_team_checkin_and_external_grounding.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_team_checkin_and_external_grounding.md", + "sha256": "d56bcee44faf6bc9305a2d0f70aa9f8d6fae2eed7c0f386f8bafc2017cbd3133", + "size": 25780 + }, + "ION/06_intelligence/research/2026-04-03_codex_team_state_objectives_timeline_and_watch.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_team_state_objectives_timeline_and_watch.md", + "sha256": "fcf3a32664dd0e6ccc1eec630058cb2bdba6836dd0b5bd7ab15dcc5729c3ecdd", + "size": 16138 + }, + "ION/06_intelligence/research/2026-04-03_codex_template_architecture_shared_vs_agent_specific.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_template_architecture_shared_vs_agent_specific.md", + "sha256": "c66c5f4b6c976414aa11998370e543e20879e7d0eb91a23719b34a921433f0e0", + "size": 7628 + }, + "ION/06_intelligence/research/2026-04-03_codex_total_ion_deep_dive.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_total_ion_deep_dive.md", + "sha256": "5aa52f886655270beeccad5c166da5885f1d79f4564cee90181e221f18dfc140", + "size": 18119 + }, + "ION/06_intelligence/research/2026-04-03_codex_trace_executor_and_replay_bundle.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_trace_executor_and_replay_bundle.md", + "sha256": "405b5e4bd69f1ba6a121d02840df19440d64abe64b325f76fcbb127d6d7bba35", + "size": 3189 + }, + "ION/06_intelligence/research/2026-04-03_end_to_end_governance_map_vizier.md": { + "path": "ION/06_intelligence/research/2026-04-03_end_to_end_governance_map_vizier.md", + "sha256": "88af840dfcecbfb2cb7379ea2e123b9aeeb48c9e7120539714164bb481cec243", + "size": 10101 + }, + "ION/06_intelligence/research/2026-04-03_protocol_context_web_map.md": { + "path": "ION/06_intelligence/research/2026-04-03_protocol_context_web_map.md", + "sha256": "11d158763773244d37e0a7fbd51f2b946a1869bf01326cca79e010b14fd4e1f6", + "size": 19159 + }, + "ION/06_intelligence/research/2026-04-03_vizier_continuity_roundtable.md": { + "path": "ION/06_intelligence/research/2026-04-03_vizier_continuity_roundtable.md", + "sha256": "a8b59681fdcc03855f6c5afcfb64243475ab0d53f7135d726617683b2a96129e", + "size": 9888 + }, + "ION/06_intelligence/research/2026-04-03_vizier_inbox_loop_proof.md": { + "path": "ION/06_intelligence/research/2026-04-03_vizier_inbox_loop_proof.md", + "sha256": "d96b8706af710dbf3f392d4c3aa6bcc790fb6fdb724bf0adcd244edf867bd9ca", + "size": 3139 + }, + "ION/06_intelligence/research/2026-04-03_vizier_phase0b_proof_loop.md": { + "path": "ION/06_intelligence/research/2026-04-03_vizier_phase0b_proof_loop.md", + "sha256": "3f0c301723c31bdb65c6c7f0271120d7ed33cad4b59e67ecc250851816142ea2", + "size": 4597 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass.md", + "sha256": "12227e4c6840286b7c8b52d2be9c0f2b7941c1dbc8fae467de215a023d8c112f", + "size": 4461 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass.md", + "sha256": "cb871a4c36ea39da7a32db7a88d207618d968c7031eaf0dc8869b434acbc5024", + "size": 3975 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass.md", + "sha256": "733c8c67e7d123ab1de86dc6ea79d676c946f91e15d48e8b1eac789afb023476", + "size": 5063 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass.md", + "sha256": "4c8f0717f7d008328ce686fcedc2a6d3d6f41cd30089df1ce1be101e67b708d0", + "size": 4059 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass.md", + "sha256": "c210b85b5d3ad020c7563bbdf535675ad38522af3ca23e6e3a7a636222d14590", + "size": 4433 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass.md", + "sha256": "56e282cf90b556486e28419f41f3f342e6ae824f9846fd05930656d32b76472f", + "size": 4089 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_review_followup_resolution_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_review_followup_resolution_first_pass.md", + "sha256": "9fd985a0deb11f2dae7b9d1168f8d05f2937691bcce352b73ebf047b5e2f8fa4", + "size": 6040 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass.md", + "sha256": "a310b191e7080b2f0cc0f05f87887909ac964fc3f7e3b5f9dd917cf8506ac768", + "size": 4414 + }, + "ION/06_intelligence/research/2026-04-05_codex_agent_reasoning_window_and_anti_drift_protocol.md": { + "path": "ION/06_intelligence/research/2026-04-05_codex_agent_reasoning_window_and_anti_drift_protocol.md", + "sha256": "3067de3da883a1f047c0e89f8c5853112b5415016fda19510d8c6ca1abafa01b", + "size": 2089 + }, + "ION/06_intelligence/research/2026-04-07_ion_evolution_consolidated_plan.md": { + "path": "ION/06_intelligence/research/2026-04-07_ion_evolution_consolidated_plan.md", + "sha256": "26efd95882b9fec40a90ebc8e853f88dae9d89fd6e122d46cda5f21723cb4e4e", + "size": 11542 + }, + "ION/06_intelligence/research/2026-04-08_alignment_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_alignment_journal.md", + "sha256": "d3b72e5e583d134294c5d4601ba837754f0962cacc6c02ad6395dea7be83cd58", + "size": 3147 + }, + "ION/06_intelligence/research/2026-04-08_codex_workflow_realignment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_codex_workflow_realignment_reasoning_journal.md", + "sha256": "b7d701c031c8ab0e56a8cca37adad9238cf8e8ab7182c152fdea73358d58504c", + "size": 3640 + }, + "ION/06_intelligence/research/2026-04-08_end_to_end_workflow_rehearsal.md": { + "path": "ION/06_intelligence/research/2026-04-08_end_to_end_workflow_rehearsal.md", + "sha256": "539135240d0119deeedbda08cee1aaec313d4372ad78a395ccfeebced79cf4b9", + "size": 1755 + }, + "ION/06_intelligence/research/2026-04-08_execution_symmetry_and_horizon_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_execution_symmetry_and_horizon_journal.md", + "sha256": "d4bcea8f8538d64bc2a23b7671a33483a9b69c8ba7f38df6e11a01c1098d01b7", + "size": 838 + }, + "ION/06_intelligence/research/2026-04-08_ion_operationalization_master_plan.md": { + "path": "ION/06_intelligence/research/2026-04-08_ion_operationalization_master_plan.md", + "sha256": "7468abd334ce4f384e0c342112b8716ccb271dbc5956a25e5fd68b3f5169d3bb", + "size": 6805 + }, + "ION/06_intelligence/research/2026-04-08_k2_packet_handoff_standardization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_k2_packet_handoff_standardization_reasoning_journal.md", + "sha256": "0dd31a7120ffb95872dcfd8e1cc1173b16e8621a0c520f30b59d62c6e1b1cd58", + "size": 1587 + }, + "ION/06_intelligence/research/2026-04-08_k3_horizon_groundwork_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-08_k3_horizon_groundwork_next_workload_plan.md", + "sha256": "331351191a3d7ad43e762406ffb8ebdea9c493852ee0123e75dbd6f18d8ff478", + "size": 2353 + }, + "ION/06_intelligence/research/2026-04-08_master_completion_orchestration_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_master_completion_orchestration_reasoning_journal.md", + "sha256": "3aaaaf521c249b2c430ec88803dd3be43eb6f07c3af4d462df4166ecc126c714", + "size": 3454 + }, + "ION/06_intelligence/research/2026-04-08_operator_entry_cli_examples.md": { + "path": "ION/06_intelligence/research/2026-04-08_operator_entry_cli_examples.md", + "sha256": "673d9ad96e07ceb79b0b0b74c2c19cb803f00a7b8edd26f8fa2302a7b8019dfa", + "size": 2138 + }, + "ION/06_intelligence/research/2026-04-09_k3_horizon_state_groundwork_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k3_horizon_state_groundwork_reasoning_journal.md", + "sha256": "64f4f13d3e15d99617f1f6623648362451e30e6b95b9841c7f1dd2e561274c3c", + "size": 1467 + }, + "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_next_workload_plan.md", + "sha256": "982d1b2c9f1b7b439af4caf24e8dbfcf1d157a3ab228a4fe69472aa9692c26de", + "size": 2001 + }, + "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_reasoning_journal.md", + "sha256": "4d63fe5d5759f6c786062a6af82d71a080fbca5918f7940e72685c6a3059c37e", + "size": 1367 + }, + "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_next_workload_plan.md", + "sha256": "db91cf5aa82687310c7de8b2263cfee7a6abf1b1494f9d0a4e26e33a45ab5c1f", + "size": 1598 + }, + "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_reasoning_journal.md", + "sha256": "350ed033650669e3320342352cc45a15a2f7e28d5d67f39074a05ab7539ef517", + "size": 2336 + }, + "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_rehearsal_expansion_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_rehearsal_expansion_next_workload_plan.md", + "sha256": "6f2315b867a4a120e683bb8aa763b39a86ba41324c399d235922af919d079a5a", + "size": 2065 + }, + "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_workflow_rehearsal_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_workflow_rehearsal_reasoning_journal.md", + "sha256": "6836e261c9679e334766e1fc8af034e578ae1b6ea5342a65858a0b7333ec0209", + "size": 2564 + }, + "ION/06_intelligence/research/2026-04-09_k7_blind_continuation_takeover_rehearsal_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k7_blind_continuation_takeover_rehearsal_next_workload_plan.md", + "sha256": "4dd440b655727d4d53d3a210bac68e98c72c387b48facf856273e209dcd7df5a", + "size": 2273 + }, + "ION/06_intelligence/research/2026-04-09_m1_bounded_multi_agent_allocator_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_m1_bounded_multi_agent_allocator_reasoning_journal.md", + "sha256": "05b7b08c82ea3d518f975ab123caf21640ffcc4b6908ece4c3f82fdfc648eb95", + "size": 1607 + }, + "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_next_workload_plan.md", + "sha256": "27749301970165c208fa38758daa563926cb8b610089cdcd5e74867100ab0c54", + "size": 1050 + }, + "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_reasoning_journal.md", + "sha256": "c0c0d3b149ededdd02b92a05b4cf0234dc8a3217a2dc95a69a6c1c54d1b9dcf2", + "size": 861 + }, + "ION/06_intelligence/research/2026-04-10_bootstrap_activation_landed.md": { + "path": "ION/06_intelligence/research/2026-04-10_bootstrap_activation_landed.md", + "sha256": "35a51a3615c9205a31e91c8c81102f12351071fb9dbadb49c635f937b2df69bf", + "size": 2371 + }, + "ION/06_intelligence/research/2026-04-10_bootstrap_init_landed.md": { + "path": "ION/06_intelligence/research/2026-04-10_bootstrap_init_landed.md", + "sha256": "c0867a4d55a5fa6070d3064c5e778f997aa39d5df429e6e6d30ede8f6bdc4ff1", + "size": 3327 + }, + "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_bridge_landed.md": { + "path": "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_bridge_landed.md", + "sha256": "612a15e76aa788d373148c1506ac73d8811c208c7cea828e6d72f590686eae22", + "size": 3329 + }, + "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_non_idle_proof.md": { + "path": "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_non_idle_proof.md", + "sha256": "9acde02b58a58d7fd11ff8eddff300b3a5ce20f4ffcd84eed35ada501fc496bc", + "size": 2241 + }, + "ION/06_intelligence/research/2026-04-10_daemon_surface_verification_and_bootstrap_path.md": { + "path": "ION/06_intelligence/research/2026-04-10_daemon_surface_verification_and_bootstrap_path.md", + "sha256": "7338f6c3373e71d14208241352d4a727cbc353d5a8f719e83d707a4c664fb41f", + "size": 5282 + }, + "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment.md": { + "path": "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment.md", + "sha256": "ff6e5079b4a2100c9945b2731659980cf48a61c9de256d914e5669dd8bb18de1", + "size": 6116 + }, + "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment_reasoning_journal.md", + "sha256": "b0cea9914250d462d02b08caa7af25e57833cc3b759ba027e2ae0ecaea7ed6d8", + "size": 4058 + }, + "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_next_workload_plan.md", + "sha256": "c61341d679efd3c69923018282b362ed3d85187a5cb92152375c09d4f82c5038", + "size": 1023 + }, + "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_reasoning_journal.md", + "sha256": "ca11d70b7d4c568269916c62849df80ed85cbd149f61c8b7b237601b806af88b", + "size": 600 + }, + "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_next_workload_plan.md", + "sha256": "a2a5d2c5d33cd8621c0cf18f7fd6ae7168fe46c3b61a2a12f28947073a81ee0d", + "size": 957 + }, + "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_reasoning_journal.md", + "sha256": "d9620dbda0f6c3d9e4430e7138921ca7719193f26a3c22e570082846638d4ac1", + "size": 824 + }, + "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_next_workload_plan.md", + "sha256": "39579c576c0ab769bbbeb27c1dcb0b70d19603ced287a7854a60e6002d5405ab", + "size": 1004 + }, + "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_reasoning_journal.md", + "sha256": "9f0ecc10cdbe32f5e06c8efd32259a2d6deeafef37be2cb546dacd8ee2b54265", + "size": 634 + }, + "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_next_workload_plan.md", + "sha256": "05b000dbbde690d5f9c7215511008e927b145876dbbc99d8e85424f69eebd245", + "size": 879 + }, + "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_reasoning_journal.md", + "sha256": "1dda46fcedf1f4c943f620c78a65726a483ca14c8c1c4670742ca2d7b5d1b50b", + "size": 608 + }, + "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_next_workload_plan.md", + "sha256": "8b8e794a70b9f96ef9d9af3ebb63ed4bf94cab9d38ef70d869ebdc248ac7e791", + "size": 920 + }, + "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_reasoning_journal.md", + "sha256": "b15161c3b0dcd01752442b7037313d8d48da411e185146107ea34cf349e5f63b", + "size": 585 + }, + "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_next_workload_plan.md", + "sha256": "4194aac188b9691e30d39a8fa01f489266979b258aba87a896826a3dde982e20", + "size": 894 + }, + "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_reasoning_journal.md", + "sha256": "2ea8565b33cbadb3b5eae5f1116c01394854fee4ad4c09beee1a0fc603c54a06", + "size": 819 + }, + "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_next_workload_plan.md", + "sha256": "503bc9c9f716696a464aecb807961f18d4b32082c93c890cc7ca6e63ac4aba4c", + "size": 1080 + }, + "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_reasoning_journal.md", + "sha256": "1f83a45823c73bee600e81594d4c7c9ae7a8d4675cb71e616b1890d3153c5497", + "size": 880 + }, + "ION/06_intelligence/research/2026-04-10_m17_handoff_capsule_executor_start_packet_materialization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m17_handoff_capsule_executor_start_packet_materialization_next_workload_plan.md", + "sha256": "047efd73910348fdc2e6396da9879aedf42152f2622a634de97114808e4dcbfc", + "size": 1072 + }, + "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_next_workload_plan.md", + "sha256": "632f2f2e07ce62209a071549799b709f459d38b8adcc594864f728a635b78529", + "size": 927 + }, + "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_reasoning_journal.md", + "sha256": "46e3ed124889abca69cf41d2679b1b58b6a064e8487f02954916083c220fbb0f", + "size": 1169 + }, + "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_next_workload_plan.md", + "sha256": "aacf27f98cd6fb55971e5604b3992f096cadfc89cc26aeee476a960dacfb694f", + "size": 1155 + }, + "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_reasoning_journal.md", + "sha256": "98572d0f318c55159253fd2187e2aa5cd2c590864c0948a5315d042207f22669", + "size": 851 + }, + "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_carrier_rebinding_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_carrier_rebinding_next_workload_plan.md", + "sha256": "fb778f1d912b0e695c6422c5dd9eb398c7fbf2d288ec13c6e1d81d41271b09a4", + "size": 1287 + }, + "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_rebinding_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_rebinding_reasoning_journal.md", + "sha256": "50e7794bfe14a958733289a6add19a1b63547586cbebfa58b62a0c46e3b2bc61", + "size": 681 + }, + "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_next_workload_plan.md", + "sha256": "a19076d38c92e02a0221f7246b8faca01b9bcc1ed04db1830f67b3a8d9ba712d", + "size": 963 + }, + "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_reasoning_journal.md", + "sha256": "b9f57085bca6b1a02575cc0a6e781ba443781c2b69124b412d14b3f44cc073c3", + "size": 619 + }, + "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_next_workload_plan.md", + "sha256": "e2b6a52447e283ec5913373810885f5e895f29812b57ab6f2d9e5a82f49e60b8", + "size": 860 + }, + "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_reasoning_journal.md", + "sha256": "80bca908c4865a73dc2d999a161fe4307fd7c6a16f5fc8743c49e77d7b739e3e", + "size": 859 + }, + "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_next_workload_plan.md", + "sha256": "c50441bba079d5c706e278247e2578cd55f11e86ce9eb27f0cc0b49b3d61de14", + "size": 794 + }, + "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_reasoning_journal.md", + "sha256": "6eb80c024412981315f1436f3f0d0c2b9f0df3a3b4ea999049ff8a2c19883200", + "size": 551 + }, + "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_next_workload_plan.md", + "sha256": "0930cd3929262a73a01ce6ea8d884233c9f122a099677885ea9064b593219b67", + "size": 751 + }, + "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_reasoning_journal.md", + "sha256": "07aaa3eed6054c8673cbf6b17df3a458555a157d5276ccb78779f28ae5c342a1", + "size": 699 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_active_commitment_vs_strategic_witness_ledger.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_active_commitment_vs_strategic_witness_ledger.md", + "sha256": "420663919a3e0995e8eb16475b3cf1c43c245293aefce00417e514352b1bf0f1", + "size": 7669 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_destination_horizon_stratification.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_destination_horizon_stratification.md", + "sha256": "a63b7dd012842bd6176e4f869466f4fbcf12ff9255d2063a77bf3780a03c622f", + "size": 7516 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_evidence_map.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_evidence_map.md", + "sha256": "5d83bb796f95e801601114f1325a491f70d35acee9f3a478dc17d779dd70eb03", + "size": 9489 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_reasoning_journal.md", + "sha256": "3b91afdd7d60b93d9190658508bf0ed3961ad97f273cef8597fff1defa5a6d28", + "size": 6054 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_working_map.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_working_map.md", + "sha256": "101d5944dd0065211bdb3a550d63af61ae05c747f2598472a02d790bf9f1591f", + "size": 6562 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_origin_destination_recovery_index.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_origin_destination_recovery_index.md", + "sha256": "dc7f1002924853c59da34dfb5a569f321ef4ef9f7ed188472c766850b6482f3e", + "size": 4908 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_layered_identity_stratification.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_layered_identity_stratification.md", + "sha256": "e72dd27cab75b523ec82bc05f8562316bda7a04625f5acfc8414ddb7ab3f6579", + "size": 8876 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_origin_phase_and_root_stratification.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_origin_phase_and_root_stratification.md", + "sha256": "4e33f45a88d280a5a3a5effc68c6a8249d389af73f4dd7c79a3112425dbbc7a7", + "size": 9230 + }, + "ION/06_intelligence/research/2026-04-11_codex_m16_entry_chain_and_stale_surface_fences.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_m16_entry_chain_and_stale_surface_fences.md", + "sha256": "57aa6c8af674a9955b8ab65c81d81eb12407de8db17df002d51f63402b26de3b", + "size": 7781 + }, + "ION/06_intelligence/research/2026-04-11_codex_m16_execution_priority_card_from_active_commitments.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_m16_execution_priority_card_from_active_commitments.md", + "sha256": "0c9a5cc0ef9685a42aae4f26d795ff34514c173cf12b0b6ea95ae192e432e046", + "size": 5393 + }, + "ION/06_intelligence/research/2026-04-11_codex_m16_witness_authority_crosswalk.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_m16_witness_authority_crosswalk.md", + "sha256": "591948b129982db47193e6880a17c82ff053097c64c1fa37ad8d4fc22aa0bea8", + "size": 10169 + }, + "ION/06_intelligence/research/2026-04-11_ion_master_documentation_toc_and_outline.md": { + "path": "ION/06_intelligence/research/2026-04-11_ion_master_documentation_toc_and_outline.md", + "sha256": "0257e28613406cf87122ace9efa3b0eb3eed903734fd8e551b652911de3a4fe4", + "size": 12539 + }, + "ION/06_intelligence/research/2026-04-12_bridge_packet_family_status_and_validation_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-12_bridge_packet_family_status_and_validation_next_workload_plan.md", + "sha256": "aef8f4b511ebad5b201d92a27d08dcf27d7ef573fc1e28cbc18c5e5a96ce91f2", + "size": 5646 + }, + "ION/06_intelligence/research/2026-04-12_current_phase_staffing_and_semantic_identity_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-12_current_phase_staffing_and_semantic_identity_next_workload_plan.md", + "sha256": "000ecf23b869be7bf1bd438b0f90a430e39b75db9a603de24b9d36bef15e404e", + "size": 5804 + }, + "ION/06_intelligence/research/2026-04-12_disagreement_escalation_provenance_note.md": { + "path": "ION/06_intelligence/research/2026-04-12_disagreement_escalation_provenance_note.md", + "sha256": "bc99364082ab4569ab9c5d2d4475326f55943809841edc8977d5657d3216058f", + "size": 2799 + }, + "ION/06_intelligence/research/2026-04-12_external_zip_return_bridge_provenance_note.md": { + "path": "ION/06_intelligence/research/2026-04-12_external_zip_return_bridge_provenance_note.md", + "sha256": "345853d7836d0c3162964ac1e3ff40cdeb7bb5c015833fdc801dc6d068f46005", + "size": 2809 + }, + "ION/06_intelligence/research/2026-04-12_outsider_grade_packaging_hardening_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-12_outsider_grade_packaging_hardening_next_workload_plan.md", + "sha256": "975ba3327add481c3c13f421c612ee26a226fb4f036e7f783e40169283e45a23", + "size": 2963 + }, + "ION/06_intelligence/research/2026-04-12_phase1_browser_mount_boundary_research.md": { + "path": "ION/06_intelligence/research/2026-04-12_phase1_browser_mount_boundary_research.md", + "sha256": "dc8b8e10c54666fb9073f16030a4c217b6c240789ae247f82a21f22d500e8d21", + "size": 2646 + }, + "ION/06_intelligence/research/2026-04-12_phase1_template_governance_gate_surface_map.md": { + "path": "ION/06_intelligence/research/2026-04-12_phase1_template_governance_gate_surface_map.md", + "sha256": "c29ef8ca1a04b22e9d38a46a041ca1e68ecb38e258c1d35aecaeb66dab55c0a4", + "size": 9838 + }, + "ION/06_intelligence/research/2026-04-12_role_chassis_mount_provenance_note.md": { + "path": "ION/06_intelligence/research/2026-04-12_role_chassis_mount_provenance_note.md", + "sha256": "02cbc0bafa5d1ea2d5893ae1f7dc556c7716cadd8c1abb0a58fd0b6702370c48", + "size": 3098 + }, + "ION/06_intelligence/research/2026-04-12_thoth_bridge_packet_status_evidence.md": { + "path": "ION/06_intelligence/research/2026-04-12_thoth_bridge_packet_status_evidence.md", + "sha256": "a99cb818a0a780348b4d19850dc09ab3d3a46fcf56b0dc5c40be4e24abbbcf16", + "size": 13200 + }, + "ION/06_intelligence/research/2026-04-12_thoth_current_phase_staffing_and_semantic_identity_evidence.md": { + "path": "ION/06_intelligence/research/2026-04-12_thoth_current_phase_staffing_and_semantic_identity_evidence.md", + "sha256": "7582fd3824491c1fb8a1e0cf9e9b54a98f10c4bb97bbe0a71f6907e0fd259e5a", + "size": 10805 + }, + "ION/06_intelligence/research/2026-04-22_codex_canonical_agent_roster_and_evolution_dynamics_proposal.md": { + "path": "ION/06_intelligence/research/2026-04-22_codex_canonical_agent_roster_and_evolution_dynamics_proposal.md", + "sha256": "fff3318d071e6b291f33dcf92a59b8ecdab7260a362fc49ee087175fc7d2bb18", + "size": 20637 + }, + "ION/06_intelligence/research/2026-04-24_gpt55_steward_startup_authority_validation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_gpt55_steward_startup_authority_validation_reasoning_journal.md", + "sha256": "fbfbae0da77a7a874d560b25016d04634d52c1126052f4b96ccab2ff384c0ccd", + "size": 2204 + }, + "ION/06_intelligence/research/2026-04-24_steward_persona_front_door_correction_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_persona_front_door_correction_reasoning_journal.md", + "sha256": "eef2d6a2f7a5ab613191824f8f951350a34388bcafef4fe72a2c69df3996f62c", + "size": 1372 + }, + "ION/06_intelligence/research/2026-04-24_steward_persona_fronted_live_use_proof_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_persona_fronted_live_use_proof_reasoning_journal.md", + "sha256": "70f47b52d2b076956bc71737f823376e1c170fb0bc020d13b737470a3914225c", + "size": 1301 + }, + "ION/06_intelligence/research/2026-04-24_steward_post_a1_lane_a_continuation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_post_a1_lane_a_continuation_reasoning_journal.md", + "sha256": "70c2cb5efb0ecae24eb70eede49091a30e05270af3c71f603aa7f43489145140", + "size": 1274 + }, + "ION/06_intelligence/research/2026-04-24_steward_single_carrier_full_spectrum_rehearsal_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_single_carrier_full_spectrum_rehearsal_reasoning_journal.md", + "sha256": "57cdb0a0ea32bce39d5269f5713de53bdf71c1d485603ff255e07ef182e5c747", + "size": 1320 + }, + "ION/06_intelligence/research/2026-04-24_steward_single_carrier_protocol_landing_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_single_carrier_protocol_landing_reasoning_journal.md", + "sha256": "2526c21242cd17cb2fd4fd618c2f61527e6305c0142fdfe4c41f27b2143c87b7", + "size": 1499 + }, + "ION/06_intelligence/research/multi_model_orchestration_inventory.md": { + "path": "ION/06_intelligence/research/multi_model_orchestration_inventory.md", + "sha256": "ec4d332fb5281cd74b4f7aa44999e106c006db11426f55f4a98cf00130281815", + "size": 8101 + }, + "ION/06_intelligence/roundtable/continuity_crisis/INDEX.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/INDEX.md", + "sha256": "f4adb6d9f83ce4766fd69761b70510aae0ca630048af18f1fdd804267b783298", + "size": 9514 + }, + "ION/06_intelligence/roundtable/continuity_crisis/RESPONSE_STATUS.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/RESPONSE_STATUS.md", + "sha256": "1edba0d3b41cd7749dfa8e4aec6a3e0dbd88401c5c8b39d88628d4c7b2a332d0", + "size": 4935 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_boot_and_lane_proposal.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_boot_and_lane_proposal.md", + "sha256": "1f0c2a68f8809a8c7f5e8199db4fe8baef520b8988e042470e0fc25878f55b2c", + "size": 2864 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_ratification_ready_continuity_law.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_ratification_ready_continuity_law.md", + "sha256": "5fd185bdedd7e6cf8227b1567e6fd4dde12ce60908e83f1c5fb6e69967f32520", + "size": 3633 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_recovery_conditions_after_law.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_recovery_conditions_after_law.md", + "sha256": "4fe1cdb16d261213b6b7ccfe01dc0235f8079d5b73506c95e9c02750d1ecd1bf", + "size": 5844 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_minimal_manual_continuity_update_protocol.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_minimal_manual_continuity_update_protocol.md", + "sha256": "51f65770564c5ef8995305c388648359dc3fd889fa3273b69923c1af4df7fd21", + "size": 4079 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_proposed_ion_continuity_law.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_proposed_ion_continuity_law.md", + "sha256": "afa99a201d29f1ed79a284005cae4541a2c2d5046f63480835de49998a91c03e", + "size": 3392 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_role_continuity_matrix.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_role_continuity_matrix.md", + "sha256": "cd915074c3ac32fb23ffc63b19825943dd08343fbdad9307419681f4fd70990d", + "size": 2644 + }, + "ION/06_intelligence/roundtable/continuity_crisis/references/2026-04-03_codex_continuity_dependency_register.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/references/2026-04-03_codex_continuity_dependency_register.md", + "sha256": "475db91e923b425720c5369d13372fe940c937ccabbd5dd47b4c62831f7355e9", + "size": 8605 + }, + "ION/06_intelligence/roundtable/continuity_crisis/references/historical_capsule_inventory.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/references/historical_capsule_inventory.md", + "sha256": "bd6da7681ef7feea1f9401deb51b7ea2300f32b00537d9c289505abee39a018f", + "size": 2247 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_explore_with_continuity.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_explore_with_continuity.md", + "sha256": "97239d70dd19f560ca0587cef62c6b13d05dec22f1d31fc17bd82e3fd59a0157", + "size": 2434 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_manual_auto_and_model_allocation.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_manual_auto_and_model_allocation.md", + "sha256": "bbb55b5c423a2bad1357921405d4ab4664c8950c2fc7314b7e7855cd004295aa", + "size": 3159 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_acronym.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_acronym.md", + "sha256": "840370e5b35ec3cd52b1476895ee11341e08c82575c58425cbab56e47809405c", + "size": 1328 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_name_and_singularity.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_name_and_singularity.md", + "sha256": "d5c0fc20be5790779b6fcc454c2df74f2641f1fd70e8eda4abca892de3c5605d", + "size": 1858 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_decision_ready_summary.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_decision_ready_summary.md", + "sha256": "85ff119d32b92957b50436e401958729b13b63da7c8d78fc2d487280ebd9b3ce", + "size": 3629 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_candidate.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_candidate.md", + "sha256": "57ab3b1e53220bc8680a1fa302a65ae15589202fae5e65e6147f099027ca5527", + "size": 2149 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_convergence_matrix.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_convergence_matrix.md", + "sha256": "5f0b668aa8dda00ab683fa7033a449e19929d1ba6b903a773f1d8c857a97607c", + "size": 8960 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_ratification_package.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_ratification_package.md", + "sha256": "3e124a19216081656d735b560e653e9b30dc55316f8f94b058393a79ba5f05fc", + "size": 5557 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_ratification_delta_package.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_ratification_delta_package.md", + "sha256": "3c39fc8018a80c465f3ebfec6d239ff74ee640ff44f5c883c8586eb3892c72e5", + "size": 5484 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_recovery_conditions.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_recovery_conditions.md", + "sha256": "e721253c464c3ea2fb63360c1a56887f333e10ade07cb49871f2c53c12f669bb", + "size": 3292 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_end_to_end_law_protocol_template_program.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_end_to_end_law_protocol_template_program.md", + "sha256": "a0359f46a23f16aafbfb9226aad4b85e97b0abf1d31ec25c565b132012fcef54", + "size": 11151 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_ion_core_and_continuity_synthesis.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_ion_core_and_continuity_synthesis.md", + "sha256": "cd9f201fae46d2dac5e5626e651cdbcd789d2450bc4fcc53d24b96e46d842b5e", + "size": 13785 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_nemesis_ideas_and_first_move.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_nemesis_ideas_and_first_move.md", + "sha256": "b6ea61fa384e98563b13bbeb303d0f352fabc6f0e6df740cb815dbe19016b141", + "size": 7219 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_roundtable_checkpoint_awaiting_sovereign.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_roundtable_checkpoint_awaiting_sovereign.md", + "sha256": "9911dd902ed016054b75a0d96a4e8d68c95fb31f31585e2f2145c0c7ff48749f", + "size": 1829 + }, + "ION/06_intelligence/specs/T01_TransitionSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T01_TransitionSchema.schema.yaml", + "sha256": "a036b5e76e513a682edbbd1b92f3f1002141c30441ec96f0d590ff82c8ca9c0d", + "size": 9944 + }, + "ION/06_intelligence/specs/T01_TransitionSchema.spec.md": { + "path": "ION/06_intelligence/specs/T01_TransitionSchema.spec.md", + "sha256": "e0be80937605ea11f85ac45d663881e5e9de995279ea277a45a8904b8ad8a629", + "size": 20109 + }, + "ION/06_intelligence/specs/T02_WorkUnitSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T02_WorkUnitSchema.schema.yaml", + "sha256": "6da79b2b8d0ab7365e98faa976d208b785431155f4b0f44ae0937092ca89a563", + "size": 1996 + }, + "ION/06_intelligence/specs/T02_WorkUnitSchema.spec.md": { + "path": "ION/06_intelligence/specs/T02_WorkUnitSchema.spec.md", + "sha256": "a8dfc5d6e7a4abc332ff0a4deb7131db1cb48a2504879d43606fc501ee6e40a2", + "size": 8821 + }, + "ION/06_intelligence/specs/T03_ContextPackageSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T03_ContextPackageSchema.schema.yaml", + "sha256": "bbcaaa3fad3a8c98230bca3fb9c8571142bcb015f093bbe6f3aa4493aa3d6bb1", + "size": 1970 + }, + "ION/06_intelligence/specs/T03_ContextPackageSchema.spec.md": { + "path": "ION/06_intelligence/specs/T03_ContextPackageSchema.spec.md", + "sha256": "a916bd403fa4fa4fcb8672f9271b0ba65a9608716365cf3b0df0cd9b2ae3ea1d", + "size": 7697 + }, + "ION/06_intelligence/specs/T04_CommitDeltaSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T04_CommitDeltaSchema.schema.yaml", + "sha256": "43c1fa6baa0f44557ad7fbd4f1c114b45827d7b525a219c8a19cb46b96dee21a", + "size": 2626 + }, + "ION/06_intelligence/specs/T04_CommitDeltaSchema.spec.md": { + "path": "ION/06_intelligence/specs/T04_CommitDeltaSchema.spec.md", + "sha256": "883ca539711a2d1f8e742431a7631f07bcb938a633d5533d611ef1fec0d4894a", + "size": 5564 + }, + "ION/06_intelligence/specs/T04_ReasoningWindowSchema.spec.md": { + "path": "ION/06_intelligence/specs/T04_ReasoningWindowSchema.spec.md", + "sha256": "57c740e397d141f24f281ba8a976f55430707cabb7fe6d8e5d1f75adb50f7717", + "size": 4091 + }, + "ION/06_intelligence/specs/T05_OpenQuestionSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T05_OpenQuestionSchema.schema.yaml", + "sha256": "fbd76035fcc606c1b2d74ee6f656cf7c13abe435fd165e2bb438c59b7e4af60a", + "size": 1116 + }, + "ION/06_intelligence/specs/T05_OpenQuestionSchema.spec.md": { + "path": "ION/06_intelligence/specs/T05_OpenQuestionSchema.spec.md", + "sha256": "37d00db0de51f471ec822d6e2b92305078c6e58c1f8e7a01be8dfae40317d0f0", + "size": 3172 + }, + "ION/06_intelligence/specs/T06_AuthorityClassSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T06_AuthorityClassSchema.schema.yaml", + "sha256": "488faa51d8df7956206d8144e9e6133affb9321af203cf9551e8b2d0ecfbf915", + "size": 1319 + }, + "ION/06_intelligence/specs/T06_AuthorityClassSchema.spec.md": { + "path": "ION/06_intelligence/specs/T06_AuthorityClassSchema.spec.md", + "sha256": "7746bbd7388e517dcc983b286b7d8207222d1a4d5a04dd957439c1ebad973307", + "size": 6253 + }, + "ION/06_intelligence/specs/T07_SignalSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T07_SignalSchema.schema.yaml", + "sha256": "bba0abc605229c70c52ad3a650f7133039dcbde77fbd6ee8747cfbf62bf0d90b", + "size": 2526 + }, + "ION/06_intelligence/specs/T07_SignalSchema.spec.md": { + "path": "ION/06_intelligence/specs/T07_SignalSchema.spec.md", + "sha256": "f809fc9ad5b1ebd3c18939f4f654dcb10d10b6b80a948af82715a461968d23b0", + "size": 7290 + }, + "ION/06_intelligence/specs/T08_ConfidenceAndDriftSchema.spec.md": { + "path": "ION/06_intelligence/specs/T08_ConfidenceAndDriftSchema.spec.md", + "sha256": "278c7a395a9ade52ae3527212d5ee63a568c1e873e36f1e886d84be2c31c2bd3", + "size": 3607 + }, + "ION/06_intelligence/specs/T09_ManifestRouteStateSchema.spec.md": { + "path": "ION/06_intelligence/specs/T09_ManifestRouteStateSchema.spec.md", + "sha256": "0f2488671c8c1649325b8ef926b06bbc0617b5884988438b91a2a9173e94bea9", + "size": 4283 + }, + "ION/06_intelligence/specs/T100_ScheduleValidateActivationCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T100_ScheduleValidateActivationCliAndStatus.spec.md", + "sha256": "c208da2046e77306f67a4fbb34def20baa50122256694c132c6be849839366f7", + "size": 312 + }, + "ION/06_intelligence/specs/T101_ScheduleActivationHandoffCapsuleReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T101_ScheduleActivationHandoffCapsuleReceipt.spec.md", + "sha256": "9258ae0b2bbf25faed2fb202c180aa4b1127bd9e048e6d2c304a2cfd14e2a28b", + "size": 501 + }, + "ION/06_intelligence/specs/T102_HandoffCapsuleLinkageAndCompactEntryArtifact.spec.md": { + "path": "ION/06_intelligence/specs/T102_HandoffCapsuleLinkageAndCompactEntryArtifact.spec.md", + "sha256": "2daa0e28935a3b526e5ca62353ebdcbbbd2fba8512a00e775109edab1817a1e2", + "size": 437 + }, + "ION/06_intelligence/specs/T103_ScheduleMaterializeHandoffCapsuleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T103_ScheduleMaterializeHandoffCapsuleCliAndStatus.spec.md", + "sha256": "5b703d52eea998b12d982504083ee34995e0e2eb7928654f015483a941b9f246", + "size": 476 + }, + "ION/06_intelligence/specs/T104_ScheduleHandoffEntryRehearsalReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T104_ScheduleHandoffEntryRehearsalReceipt.spec.md", + "sha256": "36c2191836e3aa8035c9604162254853e76afa6188f08fd274e3b19eb3f74850", + "size": 528 + }, + "ION/06_intelligence/specs/T105_HandoffCapsuleEntrySufficiencyBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T105_HandoffCapsuleEntrySufficiencyBehavior.spec.md", + "sha256": "4fed3a3740d1e55322019aa37bc0df07fcbb5783c5e52a104665f1959b88aa68", + "size": 544 + }, + "ION/06_intelligence/specs/T106_ScheduleRehearseHandoffEntryCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T106_ScheduleRehearseHandoffEntryCliAndStatus.spec.md", + "sha256": "1cbca5e7a145a417a8c321dde8c39cf2be6114e4ba382c08e3df475e14042a39", + "size": 472 + }, + "ION/06_intelligence/specs/T10_CrossModelAuditCalibration.spec.md": { + "path": "ION/06_intelligence/specs/T10_CrossModelAuditCalibration.spec.md", + "sha256": "430d578f87cacbdb7cc500c282bed9e719fb6b1c3521db38008fe28f3177a466", + "size": 4415 + }, + "ION/06_intelligence/specs/T11_AutomationStateSchema.spec.md": { + "path": "ION/06_intelligence/specs/T11_AutomationStateSchema.spec.md", + "sha256": "1ac56d07ae034732c6850030b265a3979a36a4296bd415929455cd245e355822", + "size": 3101 + }, + "ION/06_intelligence/specs/T12_RuntimeStateBindingEvents.spec.md": { + "path": "ION/06_intelligence/specs/T12_RuntimeStateBindingEvents.spec.md", + "sha256": "8d82876a466e7d3f477b26cdb02777ef50eda537f3aba465d9229546e0735b70", + "size": 2943 + }, + "ION/06_intelligence/specs/T13_RuntimeStateQueryConsumption.spec.md": { + "path": "ION/06_intelligence/specs/T13_RuntimeStateQueryConsumption.spec.md", + "sha256": "e98ec9f6a924473a67b4c5fb4e43b92d783431d44306651a1bd6d11341be09bd", + "size": 968 + }, + "ION/06_intelligence/specs/T14_RuntimeStateOperationalRendering.spec.md": { + "path": "ION/06_intelligence/specs/T14_RuntimeStateOperationalRendering.spec.md", + "sha256": "35cae1ea4b4cbd66ffc9beb5687c3e7b3e636254613e072569372b4d2f19b7de", + "size": 1337 + }, + "ION/06_intelligence/specs/T15_RuntimeReportArtifactEmission.spec.md": { + "path": "ION/06_intelligence/specs/T15_RuntimeReportArtifactEmission.spec.md", + "sha256": "7a2b62827ac4e63d35cf0101dded82e6ca6b9d63e0b9307cd8bb8549304e3001", + "size": 1203 + }, + "ION/06_intelligence/specs/T16_RuntimeReportTriggerPolicy.spec.md": { + "path": "ION/06_intelligence/specs/T16_RuntimeReportTriggerPolicy.spec.md", + "sha256": "668df41b6f21bb2562d9ea8dc6f212df8c2ced876266486ddb56b1f6acb04686", + "size": 925 + }, + "ION/06_intelligence/specs/T17_RuntimeReportGovernanceReflection.spec.md": { + "path": "ION/06_intelligence/specs/T17_RuntimeReportGovernanceReflection.spec.md", + "sha256": "ca6ff1c87855e771d7d37b1da5765edc198f819efe8d257fa3d9369b91ebc4cb", + "size": 1670 + }, + "ION/06_intelligence/specs/T18_RuntimeReportGovernanceAggregation.spec.md": { + "path": "ION/06_intelligence/specs/T18_RuntimeReportGovernanceAggregation.spec.md", + "sha256": "a4ad90b95db6c139031fbfd86b187fa6f07de972192314a9b089c6166d74485d", + "size": 942 + }, + "ION/06_intelligence/specs/T19_RuntimeReportVisibilityProjection.spec.md": { + "path": "ION/06_intelligence/specs/T19_RuntimeReportVisibilityProjection.spec.md", + "sha256": "098e6ece625b6c463b85e23da7dacdff1fb9f705e73ae2ff4d293f1bfd642c94", + "size": 1337 + }, + "ION/06_intelligence/specs/T20_RuntimeReportNavigationQuery.spec.md": { + "path": "ION/06_intelligence/specs/T20_RuntimeReportNavigationQuery.spec.md", + "sha256": "27aa065dfa7888431933a2c1a366ec5b14178ab513ad42e5ddce2aa9c9d218a5", + "size": 1322 + }, + "ION/06_intelligence/specs/T21_RuntimeReportBrowserReadOnlyView.spec.md": { + "path": "ION/06_intelligence/specs/T21_RuntimeReportBrowserReadOnlyView.spec.md", + "sha256": "db076b77eb80932a5663cc8721ae52ff43179f501a0fef552d477ea5bbf9a406", + "size": 1419 + }, + "ION/06_intelligence/specs/T22_RuntimeReportCrosslinkTraversal.spec.md": { + "path": "ION/06_intelligence/specs/T22_RuntimeReportCrosslinkTraversal.spec.md", + "sha256": "51aafddcbec43aa32c8d3b4a9205654956a2d7909a5db9d226ab97bc2dda6885", + "size": 1188 + }, + "ION/06_intelligence/specs/T23_RuntimeReportAnchorNormalization.spec.md": { + "path": "ION/06_intelligence/specs/T23_RuntimeReportAnchorNormalization.spec.md", + "sha256": "5de77b27f882b6afcd4257edfca7c985cec77e42544870c2a7520c68d756bcaa", + "size": 1972 + }, + "ION/06_intelligence/specs/T24_RuntimeReportProvenanceTrace.spec.md": { + "path": "ION/06_intelligence/specs/T24_RuntimeReportProvenanceTrace.spec.md", + "sha256": "7b318d0f862e8e65d417b4fd5912f3095b93ba538f0493c674e062b775fbbf24", + "size": 2094 + }, + "ION/06_intelligence/specs/T25_RuntimeReportComparativeProvenance.spec.md": { + "path": "ION/06_intelligence/specs/T25_RuntimeReportComparativeProvenance.spec.md", + "sha256": "5d6436abca0b4e5537a116fc63b53350e586e2eaedce9481ce71232ed5c9f36a", + "size": 1316 + }, + "ION/06_intelligence/specs/T26_RuntimeReportTemporalProvenance.spec.md": { + "path": "ION/06_intelligence/specs/T26_RuntimeReportTemporalProvenance.spec.md", + "sha256": "86fe6d0190cc02b628d1e14b9a1690e68ea19f5f7e1fe839d18688594437a103", + "size": 1673 + }, + "ION/06_intelligence/specs/T27_RuntimeReportFamilySummary.spec.md": { + "path": "ION/06_intelligence/specs/T27_RuntimeReportFamilySummary.spec.md", + "sha256": "b06a124cc58a084e72089f1a7ed3d507db963033090d800b1ed084687ebf9ad7", + "size": 1721 + }, + "ION/06_intelligence/specs/T28_RuntimeReportOperatorDigest.spec.md": { + "path": "ION/06_intelligence/specs/T28_RuntimeReportOperatorDigest.spec.md", + "sha256": "8e92438b6c0280fcb37fd03a28eb48b681a9f397b6a244215932fce493523399", + "size": 1971 + }, + "ION/06_intelligence/specs/T29_RuntimeReportDigestProfile.spec.md": { + "path": "ION/06_intelligence/specs/T29_RuntimeReportDigestProfile.spec.md", + "sha256": "6c58fb1b65c268f4a9319b662a0a13f4dfe3b64b7c167e88404c55e24a40a12b", + "size": 1052 + }, + "ION/06_intelligence/specs/T30_RuntimeReportDigestProfileCatalog.spec.md": { + "path": "ION/06_intelligence/specs/T30_RuntimeReportDigestProfileCatalog.spec.md", + "sha256": "b1e0a8493db2c2dec7ee8a6d830c256414bd937e3564cd69013e6870c26dc1a8", + "size": 865 + }, + "ION/06_intelligence/specs/T31_RuntimeReportDigestProfileBrowser.spec.md": { + "path": "ION/06_intelligence/specs/T31_RuntimeReportDigestProfileBrowser.spec.md", + "sha256": "8458d7e40ffa102c0c408b610fe6d58fcb16fae867c8404cfe723c50fa45b004", + "size": 708 + }, + "ION/06_intelligence/specs/T32_RuntimeReportProfileDigestTrace.spec.md": { + "path": "ION/06_intelligence/specs/T32_RuntimeReportProfileDigestTrace.spec.md", + "sha256": "4d2a5e70df74d087593e41f0738de916a5ba4ac879c696d1649f7593c18e4a5c", + "size": 1595 + }, + "ION/06_intelligence/specs/T33_RuntimeReportDigestReverseTrace.spec.md": { + "path": "ION/06_intelligence/specs/T33_RuntimeReportDigestReverseTrace.spec.md", + "sha256": "a8e35e7ed9b7b7c9eb83468c63eb333a7a00cd96bc74a26cf8c328b918291198", + "size": 1757 + }, + "ION/06_intelligence/specs/T34_RuntimeReportBidirectionalTrace.spec.md": { + "path": "ION/06_intelligence/specs/T34_RuntimeReportBidirectionalTrace.spec.md", + "sha256": "d1dba95fc9701fc29e79fc488f9acbe02617f733f868e0a0d5ecbe9af54805b1", + "size": 980 + }, + "ION/06_intelligence/specs/T35_RuntimeReportBidirectionalTraceComparison.spec.md": { + "path": "ION/06_intelligence/specs/T35_RuntimeReportBidirectionalTraceComparison.spec.md", + "sha256": "9ebaf5b338ee8794da3b0f26a81af8bfc98691f8429e18a19a185a838d67b2e9", + "size": 1032 + }, + "ION/06_intelligence/specs/T36_RuntimeReportBidirectionalTemporalTrace.spec.md": { + "path": "ION/06_intelligence/specs/T36_RuntimeReportBidirectionalTemporalTrace.spec.md", + "sha256": "2ec4cdb120826b67905bd62e2df5b8c7e6c88187ac9195c716deab836531f54a", + "size": 980 + }, + "ION/06_intelligence/specs/T37_RuntimeReportBidirectionalFamilySummary.spec.md": { + "path": "ION/06_intelligence/specs/T37_RuntimeReportBidirectionalFamilySummary.spec.md", + "sha256": "75e78cddb73ba79a946cf67e474018a6992163fd36f086ff6a63989faa71e41c", + "size": 1487 + }, + "ION/06_intelligence/specs/T38_SupervisedAutomationPolicyMatrix.spec.md": { + "path": "ION/06_intelligence/specs/T38_SupervisedAutomationPolicyMatrix.spec.md", + "sha256": "3ab40eee21e041396ab12b0c1d1d9add1460d24470905ddc7a6d6657ad5d80f5", + "size": 686 + }, + "ION/06_intelligence/specs/T39_SupervisedDaemonService.spec.md": { + "path": "ION/06_intelligence/specs/T39_SupervisedDaemonService.spec.md", + "sha256": "17bdfd5f56382aacba1c65a7c8643de50fb191051cdf2e760558dba9cb60c621", + "size": 649 + }, + "ION/06_intelligence/specs/T40_OperatorControlState.spec.md": { + "path": "ION/06_intelligence/specs/T40_OperatorControlState.spec.md", + "sha256": "202c93e7211efc09928872c9d5703196d988d81e66e4d66b29696a841fb47a7e", + "size": 523 + }, + "ION/06_intelligence/specs/T41_RecoveryReplayContract.spec.md": { + "path": "ION/06_intelligence/specs/T41_RecoveryReplayContract.spec.md", + "sha256": "927911b8af06dca3d0d4475b0109c28fc760ac4e65002a2ba94e64375c1e0572", + "size": 1678 + }, + "ION/06_intelligence/specs/T42_ChildWorkOperationalization.spec.md": { + "path": "ION/06_intelligence/specs/T42_ChildWorkOperationalization.spec.md", + "sha256": "0856726f4bb582d5070ee6c397691b6356570cf8698c85b01d1e45e7ef94fb5b", + "size": 1975 + }, + "ION/06_intelligence/specs/T43_ExternalExecutionBridgeContract.spec.md": { + "path": "ION/06_intelligence/specs/T43_ExternalExecutionBridgeContract.spec.md", + "sha256": "04130df42c1b539c63624fb97c09fc19499df6cb388269ae23d8f988ce68d978", + "size": 1390 + }, + "ION/06_intelligence/specs/T44_MCPAutomationSurface.spec.md": { + "path": "ION/06_intelligence/specs/T44_MCPAutomationSurface.spec.md", + "sha256": "3bc9b15eec1eafb2f5cfc5a08d09126faf510abaab30b3ebde6b3569317ac738", + "size": 766 + }, + "ION/06_intelligence/specs/T45_OperationalHardeningLifecycle.spec.md": { + "path": "ION/06_intelligence/specs/T45_OperationalHardeningLifecycle.spec.md", + "sha256": "4b8821da3c3c2cf96accf863bec32f3339f7e9052188d10eb4ca6cac0e1654b5", + "size": 1607 + }, + "ION/06_intelligence/specs/T46_OperationalAcceptancePackaging.spec.md": { + "path": "ION/06_intelligence/specs/T46_OperationalAcceptancePackaging.spec.md", + "sha256": "0a93569b8df633383f96479bf32c80f7214ab186e1416bc7578b27e7b5b704d2", + "size": 1349 + }, + "ION/06_intelligence/specs/T47_HorizonOrchestrationWindows.spec.md": { + "path": "ION/06_intelligence/specs/T47_HorizonOrchestrationWindows.spec.md", + "sha256": "1392c2359a01037dd7f3e38cee94596e44f9af44594d30565a10b105e84c5a95", + "size": 384 + }, + "ION/06_intelligence/specs/T48_ManualAutomationFallback.spec.md": { + "path": "ION/06_intelligence/specs/T48_ManualAutomationFallback.spec.md", + "sha256": "183ff8200e03434c67e0cb953769755021b91c81c64a2e265a3f352aed203cf9", + "size": 429 + }, + "ION/06_intelligence/specs/T49_OperatorEntrySurface.spec.md": { + "path": "ION/06_intelligence/specs/T49_OperatorEntrySurface.spec.md", + "sha256": "59076487943a6023aa57aa8e9d0a0a77b01172ea58f1faf12bcb57a4d8520e1d", + "size": 1249 + }, + "ION/06_intelligence/specs/T50_PacketAndHandoffTaxonomy.spec.md": { + "path": "ION/06_intelligence/specs/T50_PacketAndHandoffTaxonomy.spec.md", + "sha256": "cbcd08cb752406eb93cc9ab490eb9040848f38fd9b0eee4c59e3f9d2ab7ae30b", + "size": 1221 + }, + "ION/06_intelligence/specs/T51_WorkflowPacketValidationHelpers.spec.md": { + "path": "ION/06_intelligence/specs/T51_WorkflowPacketValidationHelpers.spec.md", + "sha256": "e9fe8ba76a921ce1498cafa501e30e4d5c276ab352dd5881823bdb1dc9ba7dba", + "size": 946 + }, + "ION/06_intelligence/specs/T52_WorkingAgentSelfUseDiscipline.spec.md": { + "path": "ION/06_intelligence/specs/T52_WorkingAgentSelfUseDiscipline.spec.md", + "sha256": "d3a8a28975f76d592c558df71abac68881e6af3a65bb71d717518ca91ed85e75", + "size": 954 + }, + "ION/06_intelligence/specs/T53_HorizonStateFamily.spec.md": { + "path": "ION/06_intelligence/specs/T53_HorizonStateFamily.spec.md", + "sha256": "5db1e3c55d02e464fe6a1a72a8e97e23bddba00f6f2cc01a9ef1f2655d812c41", + "size": 424 + }, + "ION/06_intelligence/specs/T54_HorizonTighteningProjection.spec.md": { + "path": "ION/06_intelligence/specs/T54_HorizonTighteningProjection.spec.md", + "sha256": "52c3a644b28e85f00ebe5626133b00fe1d61c1b8c958fb871e80472464766934", + "size": 491 + }, + "ION/06_intelligence/specs/T55_HorizonPacketEnactmentHelper.spec.md": { + "path": "ION/06_intelligence/specs/T55_HorizonPacketEnactmentHelper.spec.md", + "sha256": "34b5094a0159756f92eea1d4e1e81031ce5099b8b9516b382a671707b2851a48", + "size": 802 + }, + "ION/06_intelligence/specs/T56_HorizonPacketEnactmentCliBridge.spec.md": { + "path": "ION/06_intelligence/specs/T56_HorizonPacketEnactmentCliBridge.spec.md", + "sha256": "c20f64829cc17f7bb6dea3ff4d5451fd81f6db393a2fb92e8e9cdff09fc6d0bf", + "size": 841 + }, + "ION/06_intelligence/specs/T57_HorizonEnactmentReceiptFamily.spec.md": { + "path": "ION/06_intelligence/specs/T57_HorizonEnactmentReceiptFamily.spec.md", + "sha256": "38e3872fe2bf99f7a456193ec5bc23ed131a5ce045b7f4c6d9f1cd1fd8dec1e4", + "size": 706 + }, + "ION/06_intelligence/specs/T58_HorizonEnactmentReceiptOperatorProjection.spec.md": { + "path": "ION/06_intelligence/specs/T58_HorizonEnactmentReceiptOperatorProjection.spec.md", + "sha256": "9818aa79bc3ad060e5bfba73cbad6b68d5613a8cfc7bc3b26ef509dc28e2fd73", + "size": 798 + }, + "ION/06_intelligence/specs/T59_HorizonToExecutionWorkflowRehearsal.spec.md": { + "path": "ION/06_intelligence/specs/T59_HorizonToExecutionWorkflowRehearsal.spec.md", + "sha256": "a2f464be6ec3486cbf2900c477f8fd883c3b67463b1fb5eef86f4c7f91d70e2e", + "size": 685 + }, + "ION/06_intelligence/specs/T60_HorizonCarrierSymmetryRehearsal.spec.md": { + "path": "ION/06_intelligence/specs/T60_HorizonCarrierSymmetryRehearsal.spec.md", + "sha256": "fd84157c1e20ae55ddce1633e664e73103656037e7a19d84c70daec251784931", + "size": 832 + }, + "ION/06_intelligence/specs/T61_BoundedMultiAgentAllocatorProjection.spec.md": { + "path": "ION/06_intelligence/specs/T61_BoundedMultiAgentAllocatorProjection.spec.md", + "sha256": "70427d59a71b144f5964df44fa754d89b6162cd1aef089b853065cd9787d8fe6", + "size": 771 + }, + "ION/06_intelligence/specs/T62_BranchClaimReceiptPersistenceAndCli.spec.md": { + "path": "ION/06_intelligence/specs/T62_BranchClaimReceiptPersistenceAndCli.spec.md", + "sha256": "22234289a12503c0d40ca97f80b26c2f9a47413490a4d344a50793f60354bbda", + "size": 766 + }, + "ION/06_intelligence/specs/T63_FanInSettlementReceiptAndMergeProposal.spec.md": { + "path": "ION/06_intelligence/specs/T63_FanInSettlementReceiptAndMergeProposal.spec.md", + "sha256": "40961ad298f883493a1ba59ac6730f29eed3402e5132f6e12105e309a3a8009a", + "size": 476 + }, + "ION/06_intelligence/specs/T64_FanInSettlementCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T64_FanInSettlementCliAndStatus.spec.md", + "sha256": "9e3a94584fceff812389e5aa096e41930991f1375fa8187b922a7ead59b40de9", + "size": 463 + }, + "ION/06_intelligence/specs/T65_BoundedFanInSettlementRehearsal.spec.md": { + "path": "ION/06_intelligence/specs/T65_BoundedFanInSettlementRehearsal.spec.md", + "sha256": "0998494c44e7818d37037dde430699e169112f273150bcea92a93a017581aea8", + "size": 442 + }, + "ION/06_intelligence/specs/T66_BranchControlReceiptAndBudgetPosture.spec.md": { + "path": "ION/06_intelligence/specs/T66_BranchControlReceiptAndBudgetPosture.spec.md", + "sha256": "57d0f1fb706a9a7e377098f804c14e87ba0dc23da655eecc39b64cd50d6c73f9", + "size": 755 + }, + "ION/06_intelligence/specs/T67_AllocatorAndSettlementBranchControlIntegration.spec.md": { + "path": "ION/06_intelligence/specs/T67_AllocatorAndSettlementBranchControlIntegration.spec.md", + "sha256": "bc83a0d68ff780c03acfa4041f5685f86b5d0934a199400a7233d3300af3b50c", + "size": 662 + }, + "ION/06_intelligence/specs/T68_BranchControlCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T68_BranchControlCliAndStatus.spec.md", + "sha256": "a49778b28867417e946d55fb689c3bb0b6ba362e9fca8cb3b9ca132df81ff98f", + "size": 552 + }, + "ION/06_intelligence/specs/T69_BranchHorizonSyncReceiptAndProjection.spec.md": { + "path": "ION/06_intelligence/specs/T69_BranchHorizonSyncReceiptAndProjection.spec.md", + "sha256": "0b353ccb5525647de61f0ea127959c7f40336047b7c1af57701debb21701afcb", + "size": 511 + }, + "ION/06_intelligence/specs/T70_BranchFuturePostureMapping.spec.md": { + "path": "ION/06_intelligence/specs/T70_BranchFuturePostureMapping.spec.md", + "sha256": "c414a429e18bfeac54147a33acc161364106fd56e825267da0899114957195dd", + "size": 588 + }, + "ION/06_intelligence/specs/T71_BranchSyncCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T71_BranchSyncCliAndStatus.spec.md", + "sha256": "51f19dc7495e2c1a98f8a8007bc937cef5fa74fe891f2a774dc21a8b027b3f8a", + "size": 430 + }, + "ION/06_intelligence/specs/T72_BranchRescheduleReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T72_BranchRescheduleReceipt.spec.md", + "sha256": "b01c5fc0179af148167cc1b7c58be469defa10645f8e130ea73de026e32e5bad", + "size": 467 + }, + "ION/06_intelligence/specs/T73_BranchRescheduleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T73_BranchRescheduleCliAndStatus.spec.md", + "sha256": "9fcf9bda47e1f49c886c104acfe53a4f8f2de1a7d2a7319a70c585aeeb628742", + "size": 403 + }, + "ION/06_intelligence/specs/T74_ScheduleControlReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T74_ScheduleControlReceipt.spec.md", + "sha256": "613b9c18da0fa75c1ff1afaf840456bec3641a1bc60f3a5ae1c2786b62f88e2c", + "size": 436 + }, + "ION/06_intelligence/specs/T75_ScheduleMaintainCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T75_ScheduleMaintainCliAndStatus.spec.md", + "sha256": "89c9e97461ce302de3d6de690c57ee468dfb61a41c827f2febd48219b1ed3bdb", + "size": 392 + }, + "ION/06_intelligence/specs/T76_ScheduleRetryReassignmentBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T76_ScheduleRetryReassignmentBehavior.spec.md", + "sha256": "f30c83eaca664b06835eec0937a7e73151454e53b775e517b1b3a1d06edc228c", + "size": 351 + }, + "ION/06_intelligence/specs/T77_ScheduleDispatchReconciliationReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T77_ScheduleDispatchReconciliationReceipt.spec.md", + "sha256": "ce1969c140347628e0327e623d8b1f2db9c4a9aec05ae8b368b6691add67e9d7", + "size": 599 + }, + "ION/06_intelligence/specs/T78_ScheduleReconcileCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T78_ScheduleReconcileCliAndStatus.spec.md", + "sha256": "958df2f9da08748888108e5ea99309586a1122c615fd89bd5f70b746fe8eab41", + "size": 431 + }, + "ION/06_intelligence/specs/T79_ScheduleAssignmentRetirementBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T79_ScheduleAssignmentRetirementBehavior.spec.md", + "sha256": "cbc9758bea4e5b5708c8df95f5b09e6722180826647a3b7d05f557a9a36c97bc", + "size": 388 + }, + "ION/06_intelligence/specs/T80_ScheduleCompletionReleaseReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T80_ScheduleCompletionReleaseReceipt.spec.md", + "sha256": "d9ab2e954a9e2248ff4dd453af890a0c44cb7a10bd10a03c965db3e7ac676f3f", + "size": 289 + }, + "ION/06_intelligence/specs/T81_ScheduleReleaseCompletionCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T81_ScheduleReleaseCompletionCliAndStatus.spec.md", + "sha256": "0b0f5dbda877252c550c6d9f7e8b6f25a8dc4058a888b2d2d78f6908e5486856", + "size": 267 + }, + "ION/06_intelligence/specs/T82_AssignmentReleaseTerminalStateBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T82_AssignmentReleaseTerminalStateBehavior.spec.md", + "sha256": "b45708b1c6856aba03b7773f488a1d408dba5c04b43c038e350edb8a9ecb09d4", + "size": 282 + }, + "ION/06_intelligence/specs/T83_ScheduleSettlementReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T83_ScheduleSettlementReceipt.spec.md", + "sha256": "9db2b816061593bb6a37e40cc1a90022d41893e50fac4d4e7af3005f2bbf171c", + "size": 446 + }, + "ION/06_intelligence/specs/T84_ScheduleFutureReentryBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T84_ScheduleFutureReentryBehavior.spec.md", + "sha256": "d260b353e4310e8a366848b8cfc7a7279a708f7fe26c8d0c18104aaf54a46227", + "size": 346 + }, + "ION/06_intelligence/specs/T85_ScheduleSettleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T85_ScheduleSettleCliAndStatus.spec.md", + "sha256": "1d3cd0b9489cfdf50dc9ecc2526e314c6e90be50b7d64ab54efe62130b878cc9", + "size": 246 + }, + "ION/06_intelligence/specs/T86_ScheduleLineageArchiveReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T86_ScheduleLineageArchiveReceipt.spec.md", + "sha256": "b60f9564655cb585e4e74d62321091c3b650b91f1f05167a1b0ae637c2071335", + "size": 545 + }, + "ION/06_intelligence/specs/T87_ScheduleLineageCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T87_ScheduleLineageCliAndStatus.spec.md", + "sha256": "01732b1e7da31db76027dddbe1d66d20c0db059e12f2517ca6a3c6a825dc0099", + "size": 263 + }, + "ION/06_intelligence/specs/T88_ScheduleActiveLineVersusArchivedHistory.spec.md": { + "path": "ION/06_intelligence/specs/T88_ScheduleActiveLineVersusArchivedHistory.spec.md", + "sha256": "43d6e07130aeac7601aadfdde4414b7bf543c77a43b5c29e04a4c089e48c462e", + "size": 309 + }, + "ION/06_intelligence/specs/T89_ScheduleLineageReplayReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T89_ScheduleLineageReplayReceipt.spec.md", + "sha256": "b3509e096e73ca46dd0d51d562c61b3aa8f4bc9c915d69f6a3a845a33091119e", + "size": 491 + }, + "ION/06_intelligence/specs/T90_ActiveCycleReconstructionStages.spec.md": { + "path": "ION/06_intelligence/specs/T90_ActiveCycleReconstructionStages.spec.md", + "sha256": "187d941c3e4c2dfac353a71bb695752417fde9e8292876185974afaf22b40fa0", + "size": 393 + }, + "ION/06_intelligence/specs/T91_ScheduleReplayCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T91_ScheduleReplayCliAndStatus.spec.md", + "sha256": "b27ec069a730b1d211f6d62c4427508c6afcf9cf9c3af180fb97baf1870d7882", + "size": 282 + }, + "ION/06_intelligence/specs/T92_ScheduleResumeProjectionReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T92_ScheduleResumeProjectionReceipt.spec.md", + "sha256": "2c18a797c6ffbb1c6d512dd2c115be4e9052361af9c5d44ad9350bd9d5a40fa9", + "size": 495 + }, + "ION/06_intelligence/specs/T93_ScheduleResumePacketBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T93_ScheduleResumePacketBehavior.spec.md", + "sha256": "919b90f5832122c75c158873524d610cdd81ed44991e9b51483ea3a2997ea9b4", + "size": 410 + }, + "ION/06_intelligence/specs/T94_ScheduleProjectResumeCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T94_ScheduleProjectResumeCliAndStatus.spec.md", + "sha256": "04dd40c1731310ce6de6d2f66a30caf2b928ca6efb4ed3ec6ab1e35d95e1e4ab", + "size": 271 + }, + "ION/06_intelligence/specs/T95_ScheduleResumeBundleMaterializationReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T95_ScheduleResumeBundleMaterializationReceipt.spec.md", + "sha256": "8c39bdf1220c76f16de5f8bafc229b669291db10e42ec9d6272ac1e79854a960", + "size": 622 + }, + "ION/06_intelligence/specs/T96_ScheduleResumeBundleContinuationLink.spec.md": { + "path": "ION/06_intelligence/specs/T96_ScheduleResumeBundleContinuationLink.spec.md", + "sha256": "9b1f79921546cace01a1d9a893b977051067d620334b3e984a40d244588f6b05", + "size": 414 + }, + "ION/06_intelligence/specs/T97_ScheduleResumeBundleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T97_ScheduleResumeBundleCliAndStatus.spec.md", + "sha256": "763bc4bb9e209b0f3f4de9b84f99f7f35df95dbe8e42a4c0a204e6197a109358", + "size": 313 + }, + "ION/06_intelligence/specs/T98_ScheduleTakeoverEntryActivationReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T98_ScheduleTakeoverEntryActivationReceipt.spec.md", + "sha256": "5bc5c8089201cd926912f7a219d124c3dcb5094a34ed2573af5bb4012c7ea5ed", + "size": 309 + }, + "ION/06_intelligence/specs/T99_ScheduleActivationSummaryProjection.spec.md": { + "path": "ION/06_intelligence/specs/T99_ScheduleActivationSummaryProjection.spec.md", + "sha256": "a61ff2f04f8eb194debd97814003ed4a631d236dcec276092614f40a740575fa", + "size": 326 + }, + "ION/07_templates/README.md": { + "path": "ION/07_templates/README.md", + "sha256": "db8aa2c1cb06976c6c879932dfe4d49860f90aa6195553951ab2115aaebc6348", + "size": 623 + }, + "ION/07_templates/_MASTER.md": { + "path": "ION/07_templates/_MASTER.md", + "sha256": "931bb7b506d0f919ee573111aca76de1da341a9abeac59103b803c08f43d2e39", + "size": 552 + }, + "ION/07_templates/actions/AGENT_SPAWN.md": { + "path": "ION/07_templates/actions/AGENT_SPAWN.md", + "sha256": "df55959027af5a845f455e01dd4ab90d862d2c3c8c3eb0462c5ddb7bf921f811", + "size": 1471 + }, + "ION/07_templates/actions/CODE.md": { + "path": "ION/07_templates/actions/CODE.md", + "sha256": "c9a33a54a7d5c7e84de62c18bf5a662cb25d3cbcde352190896e9ecff5d1d63f", + "size": 920 + }, + "ION/07_templates/actions/CURSOR_HANDOFF.md": { + "path": "ION/07_templates/actions/CURSOR_HANDOFF.md", + "sha256": "a212e5e56b5aace62e78dd5245f472c05778f6a0889628d612d1b5b932156723", + "size": 969 + }, + "ION/07_templates/actions/DISAGREEMENT_ESCALATION.md": { + "path": "ION/07_templates/actions/DISAGREEMENT_ESCALATION.md", + "sha256": "60823993c7b3919601a6fef07bd3f60e6ef092a92cb87383ec9400cd7115d66b", + "size": 1271 + }, + "ION/07_templates/actions/EXTERNAL_RETURN.md": { + "path": "ION/07_templates/actions/EXTERNAL_RETURN.md", + "sha256": "60b75fdf4aeb9f2b513d8a1cf58da5afe2963a9e032dbf3df96c1f9a9508fcf4", + "size": 1391 + }, + "ION/07_templates/actions/FULL_CARRIER_ACTION_RECEIPT.md": { + "path": "ION/07_templates/actions/FULL_CARRIER_ACTION_RECEIPT.md", + "sha256": "574cc709f5ca856305f730cc9fa48aab68c42ff5587e8dbbc32159a6a1d696c1", + "size": 694 + }, + "ION/07_templates/actions/HANDOFF.md": { + "path": "ION/07_templates/actions/HANDOFF.md", + "sha256": "6bb832d399324d1a560e8b5777fa4742eeb87d7f5d21e7143b96cc9ab0fd735d", + "size": 880 + }, + "ION/07_templates/actions/MANUAL_AUTOMATION_FALLBACK.md": { + "path": "ION/07_templates/actions/MANUAL_AUTOMATION_FALLBACK.md", + "sha256": "49718e2cbdd00bb5bf3a02e8ffd0eae6d684c4a0f4c284c059ba07946c2b458d", + "size": 1049 + }, + "ION/07_templates/actions/PATCH_PACKAGE.md": { + "path": "ION/07_templates/actions/PATCH_PACKAGE.md", + "sha256": "826cc9fb3b86908d367e07e147e10c584d536fc74eb3e34247f23859ca960698", + "size": 1036 + }, + "ION/07_templates/actions/ROLE_CHASSIS_MOUNT.md": { + "path": "ION/07_templates/actions/ROLE_CHASSIS_MOUNT.md", + "sha256": "71ebe92c935dda60c83eaa94e60ce476ae7b5c3e566f4218f8353cc8825b9b05", + "size": 1497 + }, + "ION/07_templates/actions/ROLE_SESSION.md": { + "path": "ION/07_templates/actions/ROLE_SESSION.md", + "sha256": "788db27b957256803a42ee3de51f59df4fa5b5c590e7d2c58ee39a1ca1b57125", + "size": 1220 + }, + "ION/07_templates/actions/SIGNAL.md": { + "path": "ION/07_templates/actions/SIGNAL.md", + "sha256": "a4b729e8ef6211e63a6ede5fcf0c12e3c4b08ddd634d8eef63a64574734907bc", + "size": 884 + }, + "ION/07_templates/actions/TASK.md": { + "path": "ION/07_templates/actions/TASK.md", + "sha256": "478caacfe2b12e905d245585f20e2f9788391bcf8e0608c958a5e4bccb4cf1dd", + "size": 1608 + }, + "ION/07_templates/actions/TEMPLATE_DEVELOPMENT.md": { + "path": "ION/07_templates/actions/TEMPLATE_DEVELOPMENT.md", + "sha256": "1b7dfdaea3098e0eb7056ca62aab022a5c19c22d2321b71d287d0ce7c9cbd676", + "size": 7518 + }, + "ION/07_templates/actions/TEMPLATE_SURFACE_CHANGE.md": { + "path": "ION/07_templates/actions/TEMPLATE_SURFACE_CHANGE.md", + "sha256": "932c6c28770908c6e382932ba709d8b7aaa760c97a3aa58b02f76e6e4f33a0e2", + "size": 1299 + }, + "ION/07_templates/agents/AGENT_RESULT_PACKET.md": { + "path": "ION/07_templates/agents/AGENT_RESULT_PACKET.md", + "sha256": "24b8515ce231a095d7ff154cd491536758a9fa448a61939ac09726a407fc819e", + "size": 722 + }, + "ION/07_templates/agents/AGENT_SPAWN_REQUEST.md": { + "path": "ION/07_templates/agents/AGENT_SPAWN_REQUEST.md", + "sha256": "1323527bace656cc362dfbe30407e773057017bee5713646c992467ab7e5125e", + "size": 1086 + }, + "ION/07_templates/agents/ION_CONTEXT_SPECIALIST_RETURN.md": { + "path": "ION/07_templates/agents/ION_CONTEXT_SPECIALIST_RETURN.md", + "sha256": "a3fab219d43ed49e6a1e6b72b39095d37d6898e886db67b207ef3b3a521e4ebd", + "size": 264 + }, + "ION/07_templates/automation/MANUAL_AUTOMATION_FALLBACK_PACKET.md": { + "path": "ION/07_templates/automation/MANUAL_AUTOMATION_FALLBACK_PACKET.md", + "sha256": "5ced8e04c8bbc0a03936bf539b4f149cc8420e181affe024d76b371fbd392911", + "size": 599 + }, + "ION/07_templates/bindings/CODEX__CODE.md": { + "path": "ION/07_templates/bindings/CODEX__CODE.md", + "sha256": "5cbdc7fd83b6c63132206033aea6e6b5380dd9f27f500380f972afa0ebfc1f26", + "size": 1774 + }, + "ION/07_templates/bindings/CODEX__CSR.md": { + "path": "ION/07_templates/bindings/CODEX__CSR.md", + "sha256": "3f8e663305158eb9bc40005d1d588c31d36f0513da1249197192d7198ed1f71e", + "size": 1813 + }, + "ION/07_templates/bindings/CODEX__PROPOSAL.md": { + "path": "ION/07_templates/bindings/CODEX__PROPOSAL.md", + "sha256": "d71867f2b55e43d07f6c71b3d0dc496dcd1cdca97b9bd3d0211951f5375a096c", + "size": 1914 + }, + "ION/07_templates/bindings/CODEX__REASONING_JOURNAL.md": { + "path": "ION/07_templates/bindings/CODEX__REASONING_JOURNAL.md", + "sha256": "ba3512904bcfad67745d2cf8ed21653c978c511e36fad438e6e6d26f2c586ded", + "size": 2155 + }, + "ION/07_templates/bindings/CODEX__STATUS_REPORT.md": { + "path": "ION/07_templates/bindings/CODEX__STATUS_REPORT.md", + "sha256": "29674f939eee6cc9bdbf59861599ab1319e62cda409fabcd3de81d2329100ed6", + "size": 1916 + }, + "ION/07_templates/bindings/CODEX__TASK.md": { + "path": "ION/07_templates/bindings/CODEX__TASK.md", + "sha256": "7b71a46ba3e3c4cb1b35741dba8f76a0736b06389b2f02e620da0913021e84be", + "size": 1954 + }, + "ION/07_templates/bindings/MASON__CODE.md": { + "path": "ION/07_templates/bindings/MASON__CODE.md", + "sha256": "26be8931e04e0f6818b551fed9ca8c68be71bfda50b323e9d55a81adbccd33ce", + "size": 1114 + }, + "ION/07_templates/bindings/NEMESIS__AUDIT.md": { + "path": "ION/07_templates/bindings/NEMESIS__AUDIT.md", + "sha256": "03ee57926749f1639c57c2b9ba46ed6c986dd28b9f6332bb4673b8e748bff6d6", + "size": 1202 + }, + "ION/07_templates/bindings/PERSONA_INTERFACE__USER_RESPONSE.md": { + "path": "ION/07_templates/bindings/PERSONA_INTERFACE__USER_RESPONSE.md", + "sha256": "0678638b300c124ec2bc8dacef50676b69a11ec844a3c795fc676660fcf1af69", + "size": 1806 + }, + "ION/07_templates/bindings/README.md": { + "path": "ION/07_templates/bindings/README.md", + "sha256": "9def182c9692c26c2ac474aeedafb7199d3b7401cca47c181660bf86ea074609", + "size": 2214 + }, + "ION/07_templates/bindings/RELAY__HANDOFF.md": { + "path": "ION/07_templates/bindings/RELAY__HANDOFF.md", + "sha256": "5b7ff9d0d2ea46b2df37394f1ef98911377484bce5e6ae63467021f1fdf78e40", + "size": 1220 + }, + "ION/07_templates/bindings/RELAY__SEMANTIC_BOUNDARY.md": { + "path": "ION/07_templates/bindings/RELAY__SEMANTIC_BOUNDARY.md", + "sha256": "db6b886cdca977b15804f1e59f9d8db2912db0bdd9438283ee2375686b7e2e7d", + "size": 2331 + }, + "ION/07_templates/bindings/STEWARD__PROPOSAL.md": { + "path": "ION/07_templates/bindings/STEWARD__PROPOSAL.md", + "sha256": "7c69b685df2085c71cd6ce131fc23bd492b40e311c9a1c4d09dc59033c24b8c6", + "size": 929 + }, + "ION/07_templates/bindings/STEWARD__STATUS_REPORT.md": { + "path": "ION/07_templates/bindings/STEWARD__STATUS_REPORT.md", + "sha256": "16bfef5a695fe57d5bc8923c46f9b9f14857a1c6ff22132bd2fd41fef4df8809", + "size": 934 + }, + "ION/07_templates/bindings/STEWARD__TASK.md": { + "path": "ION/07_templates/bindings/STEWARD__TASK.md", + "sha256": "9ac57cdb7a299fa782b3edad5fdd2c8eee1e24a92efb426e5622b371e46312bb", + "size": 887 + }, + "ION/07_templates/bindings/STEWARD__TEMPLATE_SURFACE_CHANGE.md": { + "path": "ION/07_templates/bindings/STEWARD__TEMPLATE_SURFACE_CHANGE.md", + "sha256": "59e38d7f9457c4b1a29c085b84fa5f85bab9622a344f7ffd717d12dc9d4114dd", + "size": 1097 + }, + "ION/07_templates/bindings/THOTH__RESEARCH.md": { + "path": "ION/07_templates/bindings/THOTH__RESEARCH.md", + "sha256": "67e76ccd9d0be37c00aa0f8233506728b1f8b6aca5d0b9ce2b0ef1aaacc2201d", + "size": 1158 + }, + "ION/07_templates/bindings/VESTIGE__EVIDENCE.md": { + "path": "ION/07_templates/bindings/VESTIGE__EVIDENCE.md", + "sha256": "01d9fb3191374ad1e4db0d17393e08298f4ef02e5771fd0dc48e90d94dc2cb93", + "size": 1545 + }, + "ION/07_templates/carriers/CARRIER_CAPABILITY_SURVEY.md": { + "path": "ION/07_templates/carriers/CARRIER_CAPABILITY_SURVEY.md", + "sha256": "bd84ea1822b0e8efd86ef6d6ccd053b393e441eba163083885d49f6ef1aaea29", + "size": 1296 + }, + "ION/07_templates/carriers/CARRIER_LEVEL_DECISION.md": { + "path": "ION/07_templates/carriers/CARRIER_LEVEL_DECISION.md", + "sha256": "0203b2c20cad23c5537b4bdecd966ff89a1a188f9d92602f4a201879c47739b1", + "size": 894 + }, + "ION/07_templates/carriers/CARRIER_MOUNT_PROOF.md": { + "path": "ION/07_templates/carriers/CARRIER_MOUNT_PROOF.md", + "sha256": "a46b5b48e9ed1058ada6df001f0572ee72973a438a688f27a50b2ec30803d2af", + "size": 1752 + }, + "ION/07_templates/carriers/CARRIER_SESSION_PACKET.md": { + "path": "ION/07_templates/carriers/CARRIER_SESSION_PACKET.md", + "sha256": "b6cd0adc402441d95d3129894086e6e38816509416b045f45bd5afd4b7f73438", + "size": 1006 + }, + "ION/07_templates/carriers/CARRIER_UPGRADE_REQUEST.md": { + "path": "ION/07_templates/carriers/CARRIER_UPGRADE_REQUEST.md", + "sha256": "9805421f5d98764e96e39e4a4f473445bd53cc83c16ed372eb454419976eb225", + "size": 1575 + }, + "ION/07_templates/carriers/CHATGPT_BROWSER_CONNECTOR_SESSION_PACKET.md": { + "path": "ION/07_templates/carriers/CHATGPT_BROWSER_CONNECTOR_SESSION_PACKET.md", + "sha256": "d244861a24393b65f6c66fd33e4d65e1c6858044864a531ef369fa02795e93d0", + "size": 1619 + }, + "ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md": { + "path": "ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md", + "sha256": "463c8d944f4c29b1f0b9edc9dcdc23085d2ac39c4d2805bea1e21032cace3891", + "size": 1699 + }, + "ION/07_templates/carriers/CODEX_EXTENSION_EXECUTION_PACKET.md": { + "path": "ION/07_templates/carriers/CODEX_EXTENSION_EXECUTION_PACKET.md", + "sha256": "719951c97c7f90f598cc68699440bf7df718e72494c801a1f15fd0de210575d0", + "size": 1475 + }, + "ION/07_templates/carriers/FULL_CARRIER_MOUNT_PROOF.md": { + "path": "ION/07_templates/carriers/FULL_CARRIER_MOUNT_PROOF.md", + "sha256": "2cfa201f82a456d91d5a6ac7e5c9b7189bf207aa1bd07fde67af8a33ae27d61c", + "size": 1517 + }, + "ION/07_templates/confidence/CSR.md": { + "path": "ION/07_templates/confidence/CSR.md", + "sha256": "2d8312e47789e105f37c2c92183ca8ffb01cd6b8628f58274ce7811a3b0b4a7e", + "size": 3233 + }, + "ION/07_templates/context/AGENT_CONTEXT_BUILD_STEP.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_BUILD_STEP.md", + "sha256": "931da654a6a9c1625da5e5348088c009004c09d2c70dda061d1534ae54437e6d", + "size": 1918 + }, + "ION/07_templates/context/AGENT_CONTEXT_PACKAGE.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_PACKAGE.md", + "sha256": "0781c6baeac4fe0087ec136457d3fed73b5953e062584183bd9644d80fd74a1d", + "size": 1467 + }, + "ION/07_templates/context/AGENT_CONTEXT_PACKAGE_INDEX.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_PACKAGE_INDEX.md", + "sha256": "2090d6b38fe93452000d3e3d3df48659df125117ebb168ab60345f8174add30a", + "size": 548 + }, + "ION/07_templates/context/AGENT_CONTEXT_SYSTEM_CARD.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_SYSTEM_CARD.md", + "sha256": "c6572b8e526971a8412e0cc775e08ea1a6de7e5a26e1e9e66ce269473ed55f70", + "size": 1037 + }, + "ION/07_templates/context/AGENT_DYNAMIC_CONTEXT_WINDOW_PLAN.md": { + "path": "ION/07_templates/context/AGENT_DYNAMIC_CONTEXT_WINDOW_PLAN.md", + "sha256": "40332ae5ac50ab04a0940aa13923630f683b1d43df259f901dfb0b3cfc00b7f9", + "size": 844 + }, + "ION/07_templates/context/CONTEXT_NODE.md": { + "path": "ION/07_templates/context/CONTEXT_NODE.md", + "sha256": "e8d4f3d38cd551493fb175d03551982626898f7ef096f81c0fbfc2f90c51786e", + "size": 204 + }, + "ION/07_templates/context/CONTEXT_PACKAGE.md": { + "path": "ION/07_templates/context/CONTEXT_PACKAGE.md", + "sha256": "63f43a6ee1c14b5a6fb2211630ae8601fdc6dafec8319f4132e1e6bb6709ca73", + "size": 207 + }, + "ION/07_templates/context/EVENTED_TEMPLATE_FILE_OBJECT.md": { + "path": "ION/07_templates/context/EVENTED_TEMPLATE_FILE_OBJECT.md", + "sha256": "f87726b48fab1b717ba79f265e057af9a02ff5b98872722c0d80c2771f22141d", + "size": 1102 + }, + "ION/07_templates/context/FAN_IN_SETTLEMENT.md": { + "path": "ION/07_templates/context/FAN_IN_SETTLEMENT.md", + "sha256": "0e7a7ba8753f12189e516e51882a14b1cb497043f9db8ae14f64ea42d4d88b06", + "size": 209 + }, + "ION/07_templates/context/FAN_OUT_REQUEST.md": { + "path": "ION/07_templates/context/FAN_OUT_REQUEST.md", + "sha256": "ccbf5f2ab6c36add7fd71e6f30d18b7cc13c851091d7548826e82549aeaa1d34", + "size": 207 + }, + "ION/07_templates/context/ION_CONTEXT_DELTA_RECEIPT.md": { + "path": "ION/07_templates/context/ION_CONTEXT_DELTA_RECEIPT.md", + "sha256": "1162be9c788cb9b21c8ab997c7fa4d8382b52cb6c126e6826998e8f14ed40955", + "size": 662 + }, + "ION/07_templates/context/ION_CONTEXT_LOAD_PROOF.md": { + "path": "ION/07_templates/context/ION_CONTEXT_LOAD_PROOF.md", + "sha256": "5b5247e385351bced8ca6978b96d03a1213aec616f50626afe932a384e7596ae", + "size": 518 + }, + "ION/07_templates/context_graph/CONTEXT_GRAPH_ONTOLOGY_COMPARISON_REPORT.md": { + "path": "ION/07_templates/context_graph/CONTEXT_GRAPH_ONTOLOGY_COMPARISON_REPORT.md", + "sha256": "8abcd0e00c7b9ade53de3ca12809e57b9157f35b915d72a15e308cc02e629d45", + "size": 656 + }, + "ION/07_templates/custom_gpt/README.md": { + "path": "ION/07_templates/custom_gpt/README.md", + "sha256": "6a0f8513838a71d8dc615341ffa4df53c311056a59196bfa484ea5f96c3e1362", + "size": 484 + }, + "ION/07_templates/custom_gpt/examples/README.md": { + "path": "ION/07_templates/custom_gpt/examples/README.md", + "sha256": "bbcec385db0fe0e2905a42452b0e6b623327d7f9c423842ac13a91a898f03096", + "size": 596 + }, + "ION/08_ui/joc_cockpit_shell/CarrierTurnPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/CarrierTurnPanel.tsx", + "sha256": "8f60aa3108bcb75ad4804f9c1f29917a1100b679f2192ec836d80044b29f0c95", + "size": 1009 + }, + "ION/08_ui/joc_cockpit_shell/ContextPackageInspectorPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/ContextPackageInspectorPanel.tsx", + "sha256": "cae302249a6bbf32ab21d7f79cddc973c43ed7b1fa43fc748124745f3cf60699", + "size": 873 + }, + "ION/08_ui/joc_cockpit_shell/CursorHookStatePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/CursorHookStatePanel.tsx", + "sha256": "7aea0f4c84830ccbc860f17adcc7cde9cb0e4b9eb7dda706ea65875039b4bfe6", + "size": 776 + }, + "ION/08_ui/joc_cockpit_shell/FrontDoorProofTracePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/FrontDoorProofTracePanel.tsx", + "sha256": "15ec8d30eee223af99488e28258d8923185d9c243f8a4e5582abcf52f9974aec", + "size": 1738 + }, + "ION/08_ui/joc_cockpit_shell/HumanGateQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/HumanGateQueuePanel.tsx", + "sha256": "2cd648683e96714bec15c2e8d724e11a61e471203d1b469d845d55082386e635", + "size": 891 + }, + "ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx", + "sha256": "78ac1eaf1ad3d1d61c8f6f21209c00e8fae7458408b45f8c892e03ce8833c523", + "size": 9902 + }, + "ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx", + "sha256": "74046d9acfe417c85967b6f8814b787d882d2b1dcc972d9d2e17f6bbf6c3ee4a", + "size": 1567 + }, + "ION/08_ui/joc_cockpit_shell/OperatorMessageQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/OperatorMessageQueuePanel.tsx", + "sha256": "ccc97257960544be3b11cfb4e23961a061e1ff7d8cfc5253f9499f527b1b63b7", + "size": 823 + }, + "ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx", + "sha256": "8c7664da8029da1309651cb7a94f489f7d84a425fb18ec96e426a1bf164fadfd", + "size": 1770 + }, + "ION/08_ui/joc_cockpit_shell/RuntimeDebugOverlayPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/RuntimeDebugOverlayPanel.tsx", + "sha256": "bd816a47dca45b015c9f6ddfae318038b0f8b07c0c11c05efbbda341831cfc51", + "size": 1933 + }, + "ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx", + "sha256": "5f102cd67a08c4aa02f5238069e8424f18ac211c07d663b2485d047ca61c8fa2", + "size": 1953 + }, + "ION/08_ui/joc_cockpit_shell/SpawnQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/SpawnQueuePanel.tsx", + "sha256": "03fb232af964a69f45c4055ecc904932847caa11496f576af9fbd2b3ae45eb2b", + "size": 1118 + }, + "ION/08_ui/joc_cockpit_shell/StewardIntegrationQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/StewardIntegrationQueuePanel.tsx", + "sha256": "1be6b6fe44a6c4a6a9f867095236e21d7d6996159d88f98a27e799b3c8a22e35", + "size": 817 + }, + "ION/08_ui/joc_cockpit_shell/TaskReturnLedgerPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/TaskReturnLedgerPanel.tsx", + "sha256": "ca331cd86d15f2cc51792d03e126cbb7a40f56bf32b799cab4d0980815e0b789", + "size": 1020 + }, + "ION/08_ui/joc_cockpit_shell/ion-runtime-cockpit.css": { + "path": "ION/08_ui/joc_cockpit_shell/ion-runtime-cockpit.css", + "sha256": "d9f8464420bb278ccb89973a867210436c442d01236c0daacb69a78a77aac710", + "size": 4508 + }, + "ION/08_ui/joc_cockpit_shell/ionRuntimeCockpitTypes.ts": { + "path": "ION/08_ui/joc_cockpit_shell/ionRuntimeCockpitTypes.ts", + "sha256": "a1a22262dceb12855639899de9608a9b906dd859ae3de706d73502e6bfcc1db5", + "size": 5461 + }, + "ION/09_integrations/README.md": { + "path": "ION/09_integrations/README.md", + "sha256": "a2ecc0c6786dcf17bec80985bfdbc0eb9dce30ac61b395ef9432974f79460757", + "size": 786 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/README.md": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/README.md", + "sha256": "bc294a6a897181c5d119b6828e4ddc8f4abfa361978b52379d21469ea1105e08", + "size": 4493 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js", + "sha256": "cde5af76151e4eaf2e08a6c3b72e9eed0e34583cd37ef56937da4331cfc08466", + "size": 6716 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js", + "sha256": "1995fa1f94708455de1deffe31c74d4699a83dd71be0fdcac1d8e3f0315874f6", + "size": 45782 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/examples/SEV_CHATOPS_SMOKE.yaml": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/examples/SEV_CHATOPS_SMOKE.yaml", + "sha256": "e7e781ddc9f159f3c9f207b3228580ff0a379e01525b22753259040512c2ddeb", + "size": 756 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-128.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-128.png", + "sha256": "35aad0c0c020f912b4dd3729ec41cebe5f73992d38f5ad7da0a3168c94899a09", + "size": 15064 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-16.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-16.png", + "sha256": "8af6c019bdb8c421bd0233b187f02176252fb6fd7438796722e9447f46b34194", + "size": 659 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-32.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-32.png", + "sha256": "4ba00a35bb34f0e04e23852f1622cc8ec39443febc13048d72d55d44c33ce2bd", + "size": 1834 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-48.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-48.png", + "sha256": "5b59797e4fe7337ce77762819465e09b32c12da59b5024109ecf9c8093363498", + "size": 3325 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/manifest.json": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/manifest.json", + "sha256": "d90e657c35a218e50835b1c48b9478f0a8fe881af7e6ccc326fa8f7ebce1a5df", + "size": 1089 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts", + "sha256": "c528e5d25fa670a1c6ae425ba5ad1c18faf8b73cc117d162c3882bf287365833", + "size": 18869 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts", + "sha256": "375126cf5382fb4e8402e67513a2d417cad31f90ba452df66805625d5298fc75", + "size": 6989 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts", + "sha256": "1c04ddc25d670b8f8fdd8bb519243d9d7ee8c9254c5cc2910845e23fa50e71b8", + "size": 20005 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/schema.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/schema.ts", + "sha256": "1cb6a79fa1a48b2484185dc4d42cdf3cfe3caca60972295bf45ef9712d592f77", + "size": 8407 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js", + "sha256": "dc04c2367bc45ec9ece3168bf61fc6936fbbbaedeb675454ca6d5b77046de116", + "size": 9254 + }, + "ION/09_integrations/cursor_extension/README.md": { + "path": "ION/09_integrations/cursor_extension/README.md", + "sha256": "8497e43763784b4176ae4b5f6f28e48bef6dc5d1b00213fe399700f10a3cdd7c", + "size": 889 + }, + "ION/09_integrations/cursor_extension/package.json": { + "path": "ION/09_integrations/cursor_extension/package.json", + "sha256": "91a710caf5bd51be332842962e3a154025e4493f9675a402a2ace3f4cc033af6", + "size": 1665 + }, + "ION/09_integrations/cursor_extension/src/extension.ts": { + "path": "ION/09_integrations/cursor_extension/src/extension.ts", + "sha256": "86b78290dafefda2e272cabbf70dd5791dea7418212bcda3990781b6d8b7f1b7", + "size": 829 + }, + "ION/09_integrations/cursor_extension/src/ionCommands.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionCommands.ts", + "sha256": "83fcea5ceb9a3f8798869442dfce66e10522badc081198daceeb0b8d89dc28d6", + "size": 2703 + }, + "ION/09_integrations/cursor_extension/src/ionFileWatchers.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionFileWatchers.ts", + "sha256": "68c70587b0e00f4d8dcd2ddab85352de8a90e19c643190d9af0fcf1a5543774d", + "size": 763 + }, + "ION/09_integrations/cursor_extension/src/ionKernel.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionKernel.ts", + "sha256": "52f20504f80e9b37b236fd3e501e83c56ac8d0a4c2f7c30cbb8394e566a7ed69", + "size": 1549 + }, + "ION/09_integrations/cursor_extension/src/ionWorkspace.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionWorkspace.ts", + "sha256": "eedaf746505f626e8a9627ad4b1189110b485e0d65151ead7e15cd679b1dafee", + "size": 1338 + }, + "ION/09_integrations/cursor_extension/src/providers/StatusTreeProvider.ts": { + "path": "ION/09_integrations/cursor_extension/src/providers/StatusTreeProvider.ts", + "sha256": "fc4ed46ee0969b5b6b79ae879f5ed15379f035f40638eeac517f636dc2a25264", + "size": 2303 + }, + "ION/09_integrations/cursor_extension/src/webviews/cockpit/CockpitWebviewProvider.ts": { + "path": "ION/09_integrations/cursor_extension/src/webviews/cockpit/CockpitWebviewProvider.ts", + "sha256": "b170322bc0455d707b59960ea9c5a25451903aaceae916350cf7589f9c42e4ba", + "size": 6549 + }, + "ION/09_integrations/cursor_extension/src/webviews/cockpit/index.html": { + "path": "ION/09_integrations/cursor_extension/src/webviews/cockpit/index.html", + "sha256": "c1da709f416fe73df8216b61a58752cf28b1f01b5379a1af5113c86ad54aa2d5", + "size": 232 + }, + "ION/09_integrations/cursor_extension/tsconfig.json": { + "path": "ION/09_integrations/cursor_extension/tsconfig.json", + "sha256": "ebcf22fb1e51dce42e2ee7308ec0037ec2d3b0790568a48529209ca12e528633", + "size": 275 + }, + "ION/09_integrations/cursor_sdk/README.md": { + "path": "ION/09_integrations/cursor_sdk/README.md", + "sha256": "5926e2f3271320ec91ecf2613137768fd03469e87f550208e2d33f88439b01d3", + "size": 992 + }, + "ION/09_integrations/cursor_sdk/package.json": { + "path": "ION/09_integrations/cursor_sdk/package.json", + "sha256": "ab02a9663dc03ba262481066caed37fffbb14e0d628508f0913d912ba8545a41", + "size": 317 + }, + "ION/09_integrations/cursor_sdk/src/ion_cursor_sdk_carrier.ts": { + "path": "ION/09_integrations/cursor_sdk/src/ion_cursor_sdk_carrier.ts", + "sha256": "30c10fbda355d9754f78acf9919b1e5be9ee1f01b22c24a9072dacee56c1c97e", + "size": 3246 + }, + "ION/09_integrations/local_daemon/ion_chatops_bridge/README.md": { + "path": "ION/09_integrations/local_daemon/ion_chatops_bridge/README.md", + "sha256": "75dc021732ecd62fda3659783c7883e440700992d2ac23e50ff396e3e709dabb", + "size": 751 + }, + "ION/09_integrations/local_daemon/ion_chatops_bridge/ion_chatops_daemon.py": { + "path": "ION/09_integrations/local_daemon/ion_chatops_bridge/ion_chatops_daemon.py", + "sha256": "0a5a912c0535be29faf3983b0e42276086ca57d7bdd37b1ec87d0b3ed218a993", + "size": 216 + }, + "ION/09_integrations/mcp/README.md": { + "path": "ION/09_integrations/mcp/README.md", + "sha256": "dc748d1e3b071e224c09a8ed943bf89aaa1a0100662e6d8e6750cdf5fca796ab", + "size": 1595 + }, + "ION/09_integrations/mcp/chatgpt_connector/README.md": { + "path": "ION/09_integrations/mcp/chatgpt_connector/README.md", + "sha256": "6f568eccb776880652406ac26738180b0e76ba03ad7b9971d06474813f91a0ad", + "size": 1498 + }, + "ION/09_integrations/mcp/chatgpt_connector/connector_manifest.json": { + "path": "ION/09_integrations/mcp/chatgpt_connector/connector_manifest.json", + "sha256": "d33971ff7408f373337a374656323d68592c4bd9f63addf51a41e2c75c2717d8", + "size": 1202 + }, + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_cloudflare_tunnel.py": { + "path": "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_cloudflare_tunnel.py", + "sha256": "137f3d26f3947203a80bf1daa706c601eb27858677114f91b13c8c4c4357ff2c", + "size": 571 + }, + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_connector.py": { + "path": "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_connector.py", + "sha256": "31af5357373590a342d443184c374d416bb3c1758fa052f45062577163fc8adf", + "size": 1398 + }, + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_http_mcp_preview.py": { + "path": "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_http_mcp_preview.py", + "sha256": "8faa3de93d92a8157b5e1d1b44822af6e3d842066216f233ba413239020776e6", + "size": 256 + }, + "ION/09_integrations/mcp/ion_mcp_server.py": { + "path": "ION/09_integrations/mcp/ion_mcp_server.py", + "sha256": "68af4fca1b945225143d2e2579c6e2b96aefff9dbe9798966af5f30c1e97b766", + "size": 12942 + }, + "ION/README.md": { + "path": "ION/README.md", + "sha256": "ad76736dd62450b6d9f5ba13acac6e3f624e3b19340e943779756d555251d9e5", + "size": 2206 + }, + "ION/REPO_AUTHORITY.md": { + "path": "ION/REPO_AUTHORITY.md", + "sha256": "804ed8430fc53e551d254af063ec414646a1c1bf94ceeec51c31769fa41aca1e", + "size": 9259 + }, + "ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md": { + "path": "ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md", + "sha256": "039cb0ea857cc00446b4c26f24b366085d78b8d1c9216f6fba655217bdae3453", + "size": 3829 + }, + "ION/docs/README.md": { + "path": "ION/docs/README.md", + "sha256": "f635a0ec6871705392470e0d79c47f53805d1f3f772c1cbe98d006742554328f", + "size": 999 + }, + "ION/docs/consolidation/ION_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_REPORT_20260501.md": { + "path": "ION/docs/consolidation/ION_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_REPORT_20260501.md", + "sha256": "185290d474ace0af7a0d68fda1892894693df72bf7ebd6b4074833b6f0c3aa94", + "size": 1817 + }, + "ION/docs/consolidation/ION_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_REPORT_20260501.md": { + "path": "ION/docs/consolidation/ION_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_REPORT_20260501.md", + "sha256": "99a7b63a74d274a4119c3a8c0994607aef89acbf9d2b4bb21a4ba1d5d353624c", + "size": 1163 + }, + "ION/docs/consolidation/ION_V102_CONTEXT_METABOLISM_AND_LIFECYCLE_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V102_CONTEXT_METABOLISM_AND_LIFECYCLE_REPORT_20260502.md", + "sha256": "9151f726fd7071cdc54caaa4135d8cbbbb928d09d631a343546101164b2c45b3", + "size": 1425 + }, + "ION/docs/consolidation/ION_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_REPORT_20260502.md", + "sha256": "ab47a50e017ae848fc9b95f12ccd2f8e5258dd47d2a893de8f7e6a7f95813609", + "size": 3490 + }, + "ION/docs/consolidation/ION_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_REPORT_20260502.md", + "sha256": "96e41edd564929ec6dac25ea0f81894f06b7c7c8d4abb12a40e5867afc4aae34", + "size": 5866 + }, + "ION/docs/consolidation/ION_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_PREPAREDNESS_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_PREPAREDNESS_REPORT_20260502.md", + "sha256": "5efbb9de82c2a8f6046d2192806bbc7a891dda5c733a28c9a359e4604551146f", + "size": 6764 + }, + "ION/docs/consolidation/ION_V106_CORE_TELEMETRY_TRIAD_AND_RUNTIME_FLOOR_REPAIR_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V106_CORE_TELEMETRY_TRIAD_AND_RUNTIME_FLOOR_REPAIR_REPORT_20260502.md", + "sha256": "2c40e139c086f1dfd5e426ee153c2581ffd18973a6caf26462347a9888986d78", + "size": 6463 + }, + "ION/docs/consolidation/ION_V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_REPORT_20260502.md", + "sha256": "05c1c5a377ed7aa6ebb71cbe7fe7599b7e19601d93f100b45ddc4a147d213e3b", + "size": 2332 + }, + "ION/docs/consolidation/ION_V108_V72_MCP_DONOR_RECONCILIATION_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V108_V72_MCP_DONOR_RECONCILIATION_REPORT_20260502.md", + "sha256": "e0da84c193f60b18bcfb1ef9a1740360b6e3f727f17e4bf1ad6261d45daa5a27", + "size": 1453 + }, + "ION/docs/consolidation/ION_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_REPORT_20260503.md", + "sha256": "26f2ef334a86d967a25c55fa13997d848610ab19b79a50f504fbf830ffc9f8a3", + "size": 1442 + }, + "ION/docs/consolidation/ION_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_REPORT_20260503.md", + "sha256": "fc32e5dd21d6d5464e3acb2b1af3efe7a2c560db1c0888ae64dbd34039556498", + "size": 1521 + }, + "ION/docs/consolidation/ION_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_REPORT_20260503.md", + "sha256": "df1d0ca74e087790d4bdaa397815d92209506fe300b791b3255578dde48d5947", + "size": 1531 + }, + "ION/docs/consolidation/ION_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_REPORT_20260503.md", + "sha256": "c6294e336f544b2e491336f00a6b3d194b983dfee3e0d8a58889c6a95a9da38c", + "size": 1488 + }, + "ION/docs/consolidation/ION_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_REPORT_20260503.md", + "sha256": "b3125d9d058006e756fd8559465c68dab1f71a40925ec88c3be6dabe73b6feeb", + "size": 1317 + }, + "ION/docs/consolidation/ION_V114_DEFERRED_SPAWN_VISIBILITY_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V114_DEFERRED_SPAWN_VISIBILITY_REPORT_20260503.md", + "sha256": "8b3bef0c4dac1acb81a6d2ec57f0d6639b0302ef0cf401d18f5852ed93b38b0e", + "size": 1144 + }, + "ION/docs/consolidation/ION_V115_AUDIT_TRUTH_RECONCILIATION_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V115_AUDIT_TRUTH_RECONCILIATION_REPORT_20260503.md", + "sha256": "4512ebabb17ebef38a389d9b36b69c1a6da422408c4a53778fc0010a21bcbd32", + "size": 2001 + }, + "ION/docs/consolidation/ION_V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_REPORT_20260503.md", + "sha256": "09ec7acde10810d6c997715f74db54cc6504e8e3f06f595a8a117666fa2007d3", + "size": 2098 + }, + "ION/docs/consolidation/ION_V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_REPORT_20260503.md", + "sha256": "c8328d20c5d8d420fdaba94aaff2728e710df14bd328efe268a9189ad86babc8", + "size": 2585 + }, + "ION/docs/consolidation/ION_V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_REPORT_20260503.md", + "sha256": "e3c3d9bd0ce560e28a77f3dc4c7835baf38e37d23ffbafce2592e79b80e0601a", + "size": 2401 + }, + "ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md", + "sha256": "67eafbb51e2bbf537e77b4bc4fc58a1eb61dcc417adb6050367f3ccb94a1e277", + "size": 2190 + }, + "ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md", + "sha256": "ed2ac66441e2b2c6dbc5737e781d7409f2015c5d8071ac18eb25f1532accd884", + "size": 3732 + }, + "ION/docs/consolidation/ION_V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_REPORT_20260503.md", + "sha256": "65f2a12f485ed2c0c153df5b17f8c4d3ec73bc39c5abaff613301ea5434d5260", + "size": 3859 + }, + "ION/docs/consolidation/ION_V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_REPORT_20260503.md", + "sha256": "ebd5b2f479ee94f990476ed270e145b342e183dd7dac145396ff58147f4419ba", + "size": 3944 + }, + "ION/docs/consolidation/ION_V123_ROOT_ONBOARDING_SHIM_RETIREMENT_FORENSIC_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V123_ROOT_ONBOARDING_SHIM_RETIREMENT_FORENSIC_REPORT_20260503.md", + "sha256": "29a60e93bceb936914c0465e2a6107f53c972641892c3a7921c10878d625e8ab", + "size": 6791 + }, + "ION/docs/consolidation/ION_V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_REPORT_20260503.md", + "sha256": "7902e3a498d836cd18e2db2bb91cc841ed0a093878dc2d676f928eef4e3ba279", + "size": 2534 + }, + "ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md": { + "path": "ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md", + "sha256": "51cf1c4f1a027dea16c1fb7de230f852a146cfb5e4e4968613b084821887bf88", + "size": 2027 + }, + "ION/docs/consolidation/ION_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING_REPORT_20260429.md": { + "path": "ION/docs/consolidation/ION_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING_REPORT_20260429.md", + "sha256": "1e6069ca7f4a75eaf5e7f920859059d2002a017c36181b9e0e3574b2e551d815", + "size": 2634 + }, + "ION/docs/consolidation/ION_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONT_DOOR_TEAM_REPORT_20260429.md": { + "path": "ION/docs/consolidation/ION_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONT_DOOR_TEAM_REPORT_20260429.md", + "sha256": "df134425d38796d3d553692c338708f1d307a6ba30fd4895eafde25a755a026c", + "size": 1691 + }, + "ION/docs/consolidation/ION_V92_MCP_CONTROL_BRIDGE_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V92_MCP_CONTROL_BRIDGE_REPORT_20260430.md", + "sha256": "c3b77b0d81b7030d92d671106357aa4eb50b47bbd839e22bbd7ff73c95852cee", + "size": 2133 + }, + "ION/docs/consolidation/ION_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE_REPORT_20260430.md", + "sha256": "deec3ee120d9ab219032cd9b16f5cbb35c43ea018fe0909d028f5b30f1467790", + "size": 1552 + }, + "ION/docs/consolidation/ION_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_REPORT_20260430.md", + "sha256": "9e33746f17da7e947a8d505ee4015ad379c5bce5b8f9afabe481a3ab3e123ece", + "size": 2496 + }, + "ION/docs/consolidation/ION_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_REPORT_20260430.md", + "sha256": "aa818ade0d712d49c48e89cde6e9908cd8fc6456a6ecd9b772493de91bc28e90", + "size": 967 + }, + "ION/docs/consolidation/ION_V96_FULL_CONSOLIDATED_RUNTIME_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V96_FULL_CONSOLIDATED_RUNTIME_REPORT_20260430.md", + "sha256": "364c9152ff0ed885a786c78a1c8e53acfa9e6b902eb45a379d41f38832761661", + "size": 2086 + }, + "ION/docs/consolidation/ION_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_PLAN_20260501.md": { + "path": "ION/docs/consolidation/ION_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_PLAN_20260501.md", + "sha256": "c6c3a3530dbb989a1bb4f269af95337e7c4c31f5b6a462414f19388678bbf485", + "size": 29794 + }, + "ION/docs/consolidation/ION_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_PLAN_20260501.md": { + "path": "ION/docs/consolidation/ION_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_PLAN_20260501.md", + "sha256": "eb1e016c14174e25b7c4c68e7f74b1656ff2c0e897d6fc3b17a0fc4881a963b3", + "size": 30394 + }, + "ION/docs/consolidation/ION_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_DESIGN_20260501.md": { + "path": "ION/docs/consolidation/ION_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_DESIGN_20260501.md", + "sha256": "aff0d556a2212f01b98feae5afb05744b4f3fc3ca670ec884dfd814553c5f5c9", + "size": 11204 + }, + "ION/docs/cursor/ION_CURSOR_WORK_CYCLE_PACKET.md": { + "path": "ION/docs/cursor/ION_CURSOR_WORK_CYCLE_PACKET.md", + "sha256": "935cc4dcb387791e7db9d81c99797db40eeab8f61de1780b64cb3bdf44d3b574", + "size": 2190 + }, + "ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md": { + "path": "ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md", + "sha256": "dd9d9571011a8b86c1bfd1e19a15ddbb358eb7805fe1d0146defaf44f17b7948", + "size": 499797 + }, + "ION/docs/mcp/HOSTED_MCP_AUTH_ALPHA_BOUNDARY_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_AUTH_ALPHA_BOUNDARY_GUIDE.md", + "sha256": "04db5357c6bf084693528b11849f00ad47c324185b6a264691244e4eeba44cab", + "size": 1077 + }, + "ION/docs/mcp/HOSTED_MCP_BUNDLE_IMPORT_EXPORT_REPLAY_ALPHA_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_BUNDLE_IMPORT_EXPORT_REPLAY_ALPHA_GUIDE.md", + "sha256": "7678f65978f95b909bab1e75ffbfda88219d89704254c1c315c1d4a9171a9cb8", + "size": 385 + }, + "ION/docs/mcp/HOSTED_MCP_OAUTH_HTTP_PREVIEW_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_OAUTH_HTTP_PREVIEW_GUIDE.md", + "sha256": "a4a111e48b8b562c38bf6cdd44879c643f968faec500b36accf571f9ad7c3c0f", + "size": 691 + }, + "ION/docs/mcp/HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA_GUIDE.md", + "sha256": "09b3ca4d5b09980c794ccc86d3fb759f4e8a0e8c9da07f952d1838a6a6bcbf65", + "size": 898 + }, + "ION/docs/mcp/LOCAL_MCP_BRIDGE_CLIENT_CONFIGURATION_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_BRIDGE_CLIENT_CONFIGURATION_GUIDE.md", + "sha256": "cf6e1fc83dcf231abbcc82e240053c0054181c2ac3a005921e51c2c9b98145c5", + "size": 2376 + }, + "ION/docs/mcp/LOCAL_MCP_CLIENT_CERTIFICATION_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_CLIENT_CERTIFICATION_GUIDE.md", + "sha256": "514dc3bf23a23e9a716930cae9f751ce873be332f3ccd37e009c12cd8e07c39f", + "size": 1240 + }, + "ION/docs/mcp/LOCAL_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_GUIDE.md", + "sha256": "71aa0058aa8398f6a2fedfd59a6029ba02dc9c862f3fbc64d0704b2515fe72f1", + "size": 1330 + }, + "ION/docs/mcp/LOCAL_MCP_TRANSPORT_PREVIEW_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_TRANSPORT_PREVIEW_GUIDE.md", + "sha256": "c2732d53497806d5930b502745858cbc6e2f710f317ddaa28d0be939acc07328", + "size": 815 + }, + "ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md", + "sha256": "4cbfad9170d86b3372d5d1850c74c03d85d6d40d800582040c2e9def9a271e71", + "size": 1947 + }, + "ION/docs/setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md", + "sha256": "a4bdb96467864b001b6dedd57faeaf3a986f59af1aef3b412e8c2e02e54fa09e", + "size": 1850 + }, + "ION/docs/setup/CHATGPT_BROWSER_LEGACY_CLOUDFLARE_TUNNEL_REUSE_V124.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_LEGACY_CLOUDFLARE_TUNNEL_REUSE_V124.md", + "sha256": "d4cc64d022624982d6408e25e17208100116b56ad0cdc0478ad30f493ea710fc", + "size": 2264 + }, + "ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md", + "sha256": "3536638c55cd25e9113181eab2d4c1120dc5fde8ca6cc1f0b6cb623fea7e6a03", + "size": 7615 + }, + "ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md": { + "path": "ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md", + "sha256": "080f68b93a7c195efbda0c9e20a250a037aa84a38d06dfdac62282caaee281e6", + "size": 3330 + }, + "ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md": { + "path": "ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md", + "sha256": "510f6b00b1e0b4cb565318a76485e0c674ffb3aa9198cbef6eb25922038f8820", + "size": 10144 + }, + "ION/examples/mcp/client-certification-profile.json": { + "path": "ION/examples/mcp/client-certification-profile.json", + "sha256": "0ec04358ab4b2091fc180e3d1ca9d88afd6b5a64ea157cabc7465aab6668fa28", + "size": 443 + }, + "ION/examples/mcp/codex.config.toml": { + "path": "ION/examples/mcp/codex.config.toml", + "sha256": "93d2541c9c8eec936e7f8776953e36517892408fef562e696451536927713885", + "size": 176 + }, + "ION/examples/mcp/cursor.mcp.json": { + "path": "ION/examples/mcp/cursor.mcp.json", + "sha256": "e10ae9940d1f64f89cef686a08537f18727275c861a2e3e8c1228c73716a75b4", + "size": 289 + }, + "ION/examples/mcp/generated/codex.config.toml": { + "path": "ION/examples/mcp/generated/codex.config.toml", + "sha256": "11d8b9651f83041440a2ed6053c6f9131a53f3cbb6c6efc62487f632a8f3660e", + "size": 245 + }, + "ION/examples/mcp/generated/codex.config.toml.meta.json": { + "path": "ION/examples/mcp/generated/codex.config.toml.meta.json", + "sha256": "97be638b0485e0ec6eb4e356b30cd03d2e3395d70bc372d4d87b50fed7b1b727", + "size": 552 + }, + "ION/examples/mcp/generated/cursor.mcp.json": { + "path": "ION/examples/mcp/generated/cursor.mcp.json", + "sha256": "4580a2901755ff2b632ba803a0d0d00e49f8e5b479278cb2a72f4cc773476d31", + "size": 358 + }, + "ION/examples/mcp/generated/cursor.mcp.json.meta.json": { + "path": "ION/examples/mcp/generated/cursor.mcp.json.meta.json", + "sha256": "76e35f828772a1b1e1b80acefe54ea3ccf5c398468ed9c916b6e81b4e22e2bdc", + "size": 712 + }, + "ION/examples/mcp/generated/generic-stdio.json": { + "path": "ION/examples/mcp/generated/generic-stdio.json", + "sha256": "4733ac4a03e752420a06d69289b26c447040c12cd82b104d779367231dc13a4e", + "size": 555 + }, + "ION/examples/mcp/generated/generic-stdio.json.meta.json": { + "path": "ION/examples/mcp/generated/generic-stdio.json.meta.json", + "sha256": "e194b24d04f1ab26b41ec84c2ad87ed3dd33efa172ca2d1314e5312e21fd65bf", + "size": 902 + }, + "ION/examples/mcp/generated/vscode.mcp.json": { + "path": "ION/examples/mcp/generated/vscode.mcp.json", + "sha256": "26747838d960a099429306c6b7623cc873253537250da72c69e88f2bac27ef29", + "size": 378 + }, + "ION/examples/mcp/generated/vscode.mcp.json.meta.json": { + "path": "ION/examples/mcp/generated/vscode.mcp.json.meta.json", + "sha256": "17deadf278707efd199ce52649df99843762987ad265c645a7d1f90f87005ab5", + "size": 696 + }, + "ION/examples/mcp/generic-stdio.json": { + "path": "ION/examples/mcp/generic-stdio.json", + "sha256": "d522d964dd225cd2f4a40c3b82b2c6f7e59dd08063d9799cfa026bbf3c3fc6bd", + "size": 408 + }, + "ION/examples/mcp/hosted-auth-alpha-request.json": { + "path": "ION/examples/mcp/hosted-auth-alpha-request.json", + "sha256": "f1fa1184db026d60b30505ba6a54329621b0178fe324d5f8e639f4436c359140", + "size": 678 + }, + "ION/examples/mcp/hosted-bundle-replay-alpha-report-request.json": { + "path": "ION/examples/mcp/hosted-bundle-replay-alpha-report-request.json", + "sha256": "5e0f1642767b8bd97c4e965b24f8ded4f2fa91c8a28657022e027d7387762839", + "size": 215 + }, + "ION/examples/mcp/hosted-http-alpha-boundary-request.json": { + "path": "ION/examples/mcp/hosted-http-alpha-boundary-request.json", + "sha256": "59db2079f7bbbcbafbb31a7e4f26de1d32eea6fe200b941c86ca6056c6cae568", + "size": 511 + }, + "ION/examples/mcp/hosted-oauth-http-preview-request.json": { + "path": "ION/examples/mcp/hosted-oauth-http-preview-request.json", + "sha256": "ecd1ac9e7d1f245a6bb9c76ae6862b35845cc929daa4348b56bd4f54f3852a94", + "size": 475 + }, + "ION/examples/mcp/hosted-storage-receipt-ledger-alpha-report-request.json": { + "path": "ION/examples/mcp/hosted-storage-receipt-ledger-alpha-report-request.json", + "sha256": "466bdd9368bb7b9c2642fb13b82dbc92cdbc3e90a7c7fa7b970841c9d64a3ad9", + "size": 458 + }, + "ION/examples/mcp/streamable-http-preview-request.json": { + "path": "ION/examples/mcp/streamable-http-preview-request.json", + "sha256": "895d05bc38721b1bc005ea6369cc7bf06e2378dacf1c81efa73ca6ccb2a0e754", + "size": 263 + }, + "ION/examples/mcp/vscode.mcp.json": { + "path": "ION/examples/mcp/vscode.mcp.json", + "sha256": "eb19a9fd1cfeda30d48746232ed2cbbe9b4d12b6761a9098b3e07b3ad5fd201b", + "size": 309 + }, + "ION/tests/test_kernel_ion_active_state_integrity_audit.py": { + "path": "ION/tests/test_kernel_ion_active_state_integrity_audit.py", + "sha256": "ede4d7e685b180d9e77e5a00f0cdfc2dddcf6035f49a7e3014629f8b7405625b", + "size": 2219 + }, + "ION/tests/test_kernel_ion_agent_context_dynamics.py": { + "path": "ION/tests/test_kernel_ion_agent_context_dynamics.py", + "sha256": "4d19b102b4c0843809c54f1651c71143f50a41a4ddc40496bfa169e37ffe84d8", + "size": 1777 + }, + "ION/tests/test_kernel_ion_agent_invocation_broker.py": { + "path": "ION/tests/test_kernel_ion_agent_invocation_broker.py", + "sha256": "b15003ec453ad5a82c4d1330aa2e21e19dd14bee8db4588f5171ef067af9cac7", + "size": 9010 + }, + "ION/tests/test_kernel_ion_autonomous_loop.py": { + "path": "ION/tests/test_kernel_ion_autonomous_loop.py", + "sha256": "68aa95df8916ae364f61f2b927493df1d7c22cf18aba40775b929d18d5eb8825", + "size": 1314 + }, + "ION/tests/test_kernel_ion_carrier_continue.py": { + "path": "ION/tests/test_kernel_ion_carrier_continue.py", + "sha256": "b1b04869f1f3f85fb1d89e53ad857b0674d32cc601d774b0187ee277b885f2ea", + "size": 21320 + }, + "ION/tests/test_kernel_ion_carrier_onboarding_authority_audit.py": { + "path": "ION/tests/test_kernel_ion_carrier_onboarding_authority_audit.py", + "sha256": "51ed8241f2e9192572f626e26305a40c70f345bce28d328a2bb802df4afc94f3", + "size": 7332 + }, + "ION/tests/test_kernel_ion_carrier_onboarding_packet.py": { + "path": "ION/tests/test_kernel_ion_carrier_onboarding_packet.py", + "sha256": "c0cfe264fe650626b2daf1fef3c328fda7cdc8905ad969940b9821e95775b564", + "size": 5975 + }, + "ION/tests/test_kernel_ion_carrier_task_return.py": { + "path": "ION/tests/test_kernel_ion_carrier_task_return.py", + "sha256": "37c7c600568b17b1d84feb1866770b9a9149626fdb3af2dfb5d6b5db108e13b6", + "size": 3947 + }, + "ION/tests/test_kernel_ion_carrier_tick.py": { + "path": "ION/tests/test_kernel_ion_carrier_tick.py", + "sha256": "52403fe8ff0ea4c2852d8706fc87aca82874090c2d8c21e09aaa367f49e48783", + "size": 19485 + }, + "ION/tests/test_kernel_ion_carrier_workflow_audit.py": { + "path": "ION/tests/test_kernel_ion_carrier_workflow_audit.py", + "sha256": "a890785a727b7b29c48594db4e727d6b21b2c407f07a8879d38dae5c88e87c89", + "size": 4659 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py", + "sha256": "a257b7ec4e64a48ca3bdc8b4ab60782401d21dd1c70106ca2a2844b95587dcad", + "size": 9138 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_connector_e2e_flow.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_connector_e2e_flow.py", + "sha256": "a054b1f198d31dbda2fa4f464ea0da4a0b6fd4ee2fea1230f80a2d0696552345", + "size": 6878 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_legacy_tunnel_reuse_audit.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_legacy_tunnel_reuse_audit.py", + "sha256": "015ce84633e46ed11457bb6d73ea8e2ebb0424bd357f7b034d69e38a2a0a8a8d", + "size": 5578 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_mcp_connector_contract.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_mcp_connector_contract.py", + "sha256": "06174a033d9db9c8ce84d8e1d37b59c3ac2ca2f0d524270caae2b3df6cc40efb", + "size": 14477 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py", + "sha256": "718dd742d00b513541ca368afb7afdb08614f5eb2d2435af54ea2cf87eb3e355", + "size": 6443 + }, + "ION/tests/test_kernel_ion_chatops_action_schema.py": { + "path": "ION/tests/test_kernel_ion_chatops_action_schema.py", + "sha256": "bed5269e15dd203f3494701eec2019642c7ac0caee43209b0fdc883ce94f129f", + "size": 2095 + }, + "ION/tests/test_kernel_ion_chatops_bridge_policy.py": { + "path": "ION/tests/test_kernel_ion_chatops_bridge_policy.py", + "sha256": "0cb5ca7fcf19f80f7e97ca48b263f2dca38fbef3ce54f7521e50c0be4ee95a05", + "size": 16355 + }, + "ION/tests/test_kernel_ion_cockpit_view_model.py": { + "path": "ION/tests/test_kernel_ion_cockpit_view_model.py", + "sha256": "f4c19b19fc9d84c384464cedf086bbaa2d4881a529fb1042fbd73b750d4eceec", + "size": 8758 + }, + "ION/tests/test_kernel_ion_codex_cli_carrier_audit.py": { + "path": "ION/tests/test_kernel_ion_codex_cli_carrier_audit.py", + "sha256": "c463e5f556e24b0f7476e728b4beb63ad0ceb0802f631fcb94f9e94096a1c410", + "size": 1450 + }, + "ION/tests/test_kernel_ion_codex_extension_carrier_audit.py": { + "path": "ION/tests/test_kernel_ion_codex_extension_carrier_audit.py", + "sha256": "6c09bb63464e7b6e3635d56a7c68d0dca1f933d603e3a1e5ebd25943333b345e", + "size": 1435 + }, + "ION/tests/test_kernel_ion_codex_queue_runner.py": { + "path": "ION/tests/test_kernel_ion_codex_queue_runner.py", + "sha256": "a8e069d9405d24d997132e9bdb1eb6f0916eeb2fff985b9c1d940f4f73324fb1", + "size": 9129 + }, + "ION/tests/test_kernel_ion_compiled_role_context_bundle_audit.py": { + "path": "ION/tests/test_kernel_ion_compiled_role_context_bundle_audit.py", + "sha256": "b450a02b55177b896ea099eeb6705445b0fa2fff2a9c01a11099bbd944f926fb", + "size": 1291 + }, + "ION/tests/test_kernel_ion_context_lifecycle.py": { + "path": "ION/tests/test_kernel_ion_context_lifecycle.py", + "sha256": "54d4c25ef4be8368f715f55ffbcbbd01c06b17dd4bf7d3c979418e0356c7119b", + "size": 2606 + }, + "ION/tests/test_kernel_ion_cursor_autopilot.py": { + "path": "ION/tests/test_kernel_ion_cursor_autopilot.py", + "sha256": "c56af8b27ceae20e83401cbf1b9b14bec438c2ec6e9496177e011de7c5a10f04", + "size": 1149 + }, + "ION/tests/test_kernel_ion_cursor_canonical_workflow_audit.py": { + "path": "ION/tests/test_kernel_ion_cursor_canonical_workflow_audit.py", + "sha256": "2e56addffc7bd9706b307ff8e4c3edf4aa634db17fe6ad4ceada5b42472d9bd6", + "size": 376 + }, + "ION/tests/test_kernel_ion_cursor_hook_state.py": { + "path": "ION/tests/test_kernel_ion_cursor_hook_state.py", + "sha256": "6512b4155a2797ec2ea42737c9da98dd5f44ec0f621cd297a229370a3f504afd", + "size": 1433 + }, + "ION/tests/test_kernel_ion_deep_operational_cartography.py": { + "path": "ION/tests/test_kernel_ion_deep_operational_cartography.py", + "sha256": "c1d1caab022bacbe65e50e574565d78df967e519b7d914001d4ae1a6ca14d47a", + "size": 2667 + }, + "ION/tests/test_kernel_ion_front_door_proof_trace.py": { + "path": "ION/tests/test_kernel_ion_front_door_proof_trace.py", + "sha256": "79f485ebbe54da8178e91d702c98c6258614ce4b3ccae321ac6b49d9e8baca96", + "size": 3105 + }, + "ION/tests/test_kernel_ion_full_carrier_capability_audit.py": { + "path": "ION/tests/test_kernel_ion_full_carrier_capability_audit.py", + "sha256": "67325801094ac239994651216c19fb918e5505a05454e01ea88e24d9bab62e78", + "size": 1902 + }, + "ION/tests/test_kernel_ion_github_commit_proposal_receipt.py": { + "path": "ION/tests/test_kernel_ion_github_commit_proposal_receipt.py", + "sha256": "923e8afcb731ede335833e86c09f11223902de895b4e93f0331afe2f83119ca3", + "size": 4971 + }, + "ION/tests/test_kernel_ion_github_data_plane_audit.py": { + "path": "ION/tests/test_kernel_ion_github_data_plane_audit.py", + "sha256": "ac57e986ecfcfa911d7eb0b1e622d3a03aa4ec0f3817c63c6f5b50a52e271d68", + "size": 6455 + }, + "ION/tests/test_kernel_ion_lane_timeline_view_model.py": { + "path": "ION/tests/test_kernel_ion_lane_timeline_view_model.py", + "sha256": "ed7ca2175ab7f0116b0fde90185b57ab0cd88a3a89475f2f2e34d9e764e7f26d", + "size": 4895 + }, + "ION/tests/test_kernel_ion_lifecycle_packager.py": { + "path": "ION/tests/test_kernel_ion_lifecycle_packager.py", + "sha256": "b52bc5b4a968dbf9ca8045e8a8960ff1c34ba0387075d6e059b28db38151964f", + "size": 6097 + }, + "ION/tests/test_kernel_ion_mcp_bridge_audit.py": { + "path": "ION/tests/test_kernel_ion_mcp_bridge_audit.py", + "sha256": "2ec4239d73cf0d80968c433483e5c0938227753a6e261b0a15afae9279388729", + "size": 428 + }, + "ION/tests/test_kernel_ion_mcp_client_certification.py": { + "path": "ION/tests/test_kernel_ion_mcp_client_certification.py", + "sha256": "4a158867c36ea02a1eb3007293e9790eec1e81ef03265937d546ea953a48bdf7", + "size": 1627 + }, + "ION/tests/test_kernel_ion_mcp_hosted_auth_alpha.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_auth_alpha.py", + "sha256": "629ef9b3ebc594dc298293090e4940c2108a7a1c3af0d748fd4e79b47a5a8bde", + "size": 4799 + }, + "ION/tests/test_kernel_ion_mcp_hosted_bundle_replay_alpha.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_bundle_replay_alpha.py", + "sha256": "e133b1e7d63a4e84615a5cde72fc871de2bde08ab9c0428b42767bd06513f19c", + "size": 2857 + }, + "ION/tests/test_kernel_ion_mcp_hosted_oauth_http_preview.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_oauth_http_preview.py", + "sha256": "62f235e16f2c23f41735a7b5f655a8b0b6f8067c2f8c64944f111aa1a4e317e7", + "size": 4802 + }, + "ION/tests/test_kernel_ion_mcp_hosted_storage_receipt_ledger_alpha.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_storage_receipt_ledger_alpha.py", + "sha256": "63dc00dbdadf5029dc7b48e3675033cc119ef3d24f92c8814e3677e502423eca", + "size": 3140 + }, + "ION/tests/test_kernel_ion_mcp_local_bridge.py": { + "path": "ION/tests/test_kernel_ion_mcp_local_bridge.py", + "sha256": "6b5efef7b3900256cf07230025ad59fe3ea7eb54ebdd393548cd237d29303496", + "size": 7499 + }, + "ION/tests/test_kernel_ion_mcp_local_bridge_smoke_and_configs.py": { + "path": "ION/tests/test_kernel_ion_mcp_local_bridge_smoke_and_configs.py", + "sha256": "71d41bc353cb3daf67be3ae3a8fa1caf3ad2d2394821a4bc61bec06170644269", + "size": 3937 + }, + "ION/tests/test_kernel_ion_mcp_sdk_wrapper_boundary.py": { + "path": "ION/tests/test_kernel_ion_mcp_sdk_wrapper_boundary.py", + "sha256": "7831814606ece76d3a852cd4267038664f543ef0aa876f387f08a2ad23add734", + "size": 3171 + }, + "ION/tests/test_kernel_ion_mcp_transport_preview.py": { + "path": "ION/tests/test_kernel_ion_mcp_transport_preview.py", + "sha256": "d1bb7b5f3029ab47fe91ae322d4be86e363b6e5b8341aed4e382858f0aeb4c6f", + "size": 2993 + }, + "ION/tests/test_kernel_ion_operational_truth_audit.py": { + "path": "ION/tests/test_kernel_ion_operational_truth_audit.py", + "sha256": "be23abc49c3579f654ddf63da6f782809f6e072c7949c3fcbfcb81915f8d0f33", + "size": 1906 + }, + "ION/tests/test_kernel_ion_operator_message_classifier.py": { + "path": "ION/tests/test_kernel_ion_operator_message_classifier.py", + "sha256": "103308af6b3d2474dd2ebb9cfe2e313dde3ba402f6655722739b9a3d7722ae98", + "size": 932 + }, + "ION/tests/test_kernel_ion_operator_queue_human_gate_status.py": { + "path": "ION/tests/test_kernel_ion_operator_queue_human_gate_status.py", + "sha256": "46641ec524004130d7ba089a2df2b9f3525c344f2ba7868b0cc39cec0bd71b1e", + "size": 4511 + }, + "ION/tests/test_kernel_ion_receipt_hydration_mapper.py": { + "path": "ION/tests/test_kernel_ion_receipt_hydration_mapper.py", + "sha256": "46d3c31749f8a107b01c59ba2fedaa7e108a7ba13292bef693a7102002758662", + "size": 4011 + }, + "ION/tests/test_kernel_ion_runtime_debug_overlay.py": { + "path": "ION/tests/test_kernel_ion_runtime_debug_overlay.py", + "sha256": "d48d7210ceb3c9f24e14fe2f4909f223868f8c30e6a6075cb7118926ec0184f6", + "size": 2485 + }, + "ION/tests/test_kernel_ion_safe_full_project_packager.py": { + "path": "ION/tests/test_kernel_ion_safe_full_project_packager.py", + "sha256": "2e55eb9f23e1886b32642f9112f84881c3df28456712a9c07f38e801132cd92e", + "size": 5081 + }, + "ION/tests/test_kernel_ion_status.py": { + "path": "ION/tests/test_kernel_ion_status.py", + "sha256": "314bccaf1ef90f5ad5a311a42f4e3a6e2e7e3c48b64922bbbe67ba898a37745d", + "size": 11195 + }, + "ION/tests/test_kernel_ion_steward_integrate.py": { + "path": "ION/tests/test_kernel_ion_steward_integrate.py", + "sha256": "b50e26c5b8d017fdf8ad7516e33d85e40786298796c90e3aba3ad1d50d24b573", + "size": 4604 + }, + "ION/tests/test_kernel_ion_template_action_gate.py": { + "path": "ION/tests/test_kernel_ion_template_action_gate.py", + "sha256": "6efa6b60c2815f498e6d970da4f68e0a3427f3cf3283010148f6c72b890b0893", + "size": 1393 + }, + "ION/tests/test_kernel_ion_temporal_context_enforcement_audit.py": { + "path": "ION/tests/test_kernel_ion_temporal_context_enforcement_audit.py", + "sha256": "4523e70f312b8a08160f70365e0944aa824f8f5f7137133986bee8a1e6c1eff8", + "size": 3897 + }, + "ION/tests/test_kernel_ion_trunk_preservation_gate.py": { + "path": "ION/tests/test_kernel_ion_trunk_preservation_gate.py", + "sha256": "7764862de1ccef3d0647a5c668b41b3ecb99ffe182eb0b3564d189d8f2823348", + "size": 6284 + }, + "ION/tests/test_kernel_ion_v72_mcp_donor_reconciliation_audit.py": { + "path": "ION/tests/test_kernel_ion_v72_mcp_donor_reconciliation_audit.py", + "sha256": "b0a6b572c6e90d93f894eac50c922ec852b51d7eb0454defb599e357f07277de", + "size": 2663 + }, + "ION/tests/test_kernel_v78_ion_mount_contract_audit.py": { + "path": "ION/tests/test_kernel_v78_ion_mount_contract_audit.py", + "sha256": "95193f69a10451d6204ffff3ed56f033a03bf0f596f696cd3c556f00d6a9c58c", + "size": 477 + }, + "README.md": { + "path": "README.md", + "sha256": "93a443aa0f1856b42702c33cda554ba85e891d4dd9df19d3b3782e5e069baed4", + "size": 26448 + }, + "SECURITY.md": { + "path": "SECURITY.md", + "sha256": "a94f9b38ec7c1a036739e552a43e750c49d429ba1bc5de38aa17d818be3d2fc1", + "size": 903 + }, + "pyproject.toml": { + "path": "pyproject.toml", + "sha256": "07ace067ecf91ab85b22d9e4b958cd8cc836666e92a89943c54fdffe3793285b", + "size": 467 + } + }, + "generated_at": "2026-05-05T04:40:14+00:00", + "hash_algorithm": "sha256", + "root_confirmed": true, + "root_missing_files": [], + "root_required_files": [ + "pyproject.toml", + "ION/REPO_AUTHORITY.md" + ], + "schema_id": "ion.trunk_file_manifest.v1", + "skipped_paths": [ + ".git/COMMIT_EDITMSG", + ".git/HEAD", + ".git/config", + ".git/description", + ".git/hooks/applypatch-msg.sample", + ".git/hooks/commit-msg.sample", + ".git/hooks/fsmonitor-watchman.sample", + ".git/hooks/post-update.sample", + ".git/hooks/pre-applypatch.sample", + ".git/hooks/pre-commit.sample", + ".git/hooks/pre-merge-commit.sample", + ".git/hooks/pre-push.sample", + ".git/hooks/pre-rebase.sample", + ".git/hooks/pre-receive.sample", + ".git/hooks/prepare-commit-msg.sample", + ".git/hooks/push-to-checkout.sample", + ".git/hooks/update.sample", + ".git/index", + ".git/info/exclude", + ".git/logs/HEAD", + ".git/logs/refs/heads/docs/github-public-data-plane-policy", + ".git/logs/refs/heads/main", + ".git/logs/refs/remotes/origin/docs/github-public-data-plane-policy", + ".git/logs/refs/remotes/origin/main", + ".git/objects/00/04eba928bdca5abd27df164df36d4ad8cb8286", + ".git/objects/00/06d1f988266f86ffdb301a995c9f095612ac17", + ".git/objects/00/08b98617b62e2bd6e5b76e9a696996a350881e", + ".git/objects/00/08ee3bbed770bd8c1418d14b1cead0b10e644c", + ".git/objects/00/16c2789664483dba47dbcf56e1ca01f757e123", + ".git/objects/00/1b6c95de1d5a4d900dd1c0c3621dc9734405de", + ".git/objects/00/1d713bfcd7bf18bd840c67a99c65cb8973b7fc", + ".git/objects/00/203dba51661791c965da4bb40530b85ebb63dc", + ".git/objects/00/22addb738b26dc684ce4326cf4fcb47186d27e", + ".git/objects/00/2722f1faff6da44dc042e057cea80553b05bfb", + ".git/objects/00/4cefbed166e54297361394c2e6c01edc3a47dc", + ".git/objects/00/53997b5164040c18deb4f200ded1fba8e7d732", + ".git/objects/00/583bfed85de8908e58f4be9bed53ab1b2684ba", + ".git/objects/00/5a755856718307ec70037321009f25c2260bf8", + ".git/objects/00/611f0a00081efbe94d63a712594a744c3234e7", + ".git/objects/00/629f702974feccaab9393fb930a7065bb4f300", + ".git/objects/00/7240e17e570cfba9739ea5d454fe50d3cedb71", + ".git/objects/00/770bef631b3c7810696bfd925fa50cada2e819", + ".git/objects/00/85ca33472bf11615c91aafb891ea974519c549", + ".git/objects/00/88254519eccca82753a0f936c826bfcf39407a", + ".git/objects/00/a4cea208014e4f11ee95b34a841e30ee391dbe", + ".git/objects/00/b816089c1be52521251da44ea071e30cccb903", + ".git/objects/00/b91bb4353e87c166fba9ac1df27185a4526f95", + ".git/objects/00/ce3d41d6826364ac28c64b28340ab51e19f7bb", + ".git/objects/00/e6906373ef99f1cee604825c59bf8d479e5705", + ".git/objects/00/e9fac9e84b6de5b016a447cd178e81b9ca2bf6", + ".git/objects/00/eefd3fa0a9339a99c7ebb27084c0e52129b9ab", + ".git/objects/00/f21c86160c1316fba9199868e53d7ae55d43b3", + ".git/objects/00/f2446937f8e30242eddc92c7612668a2e22e13", + ".git/objects/00/f28d4bf81dba21dafc1ecf3405eced59f5f5c1", + ".git/objects/00/fccee83ce443f80208c0a32e1e99a0196a9a7e", + ".git/objects/01/1f661b7d248bd294fefe30af823367582b0884", + ".git/objects/01/2292c3c9b105d28ab55abcd9e4eb0ead1f56f6", + ".git/objects/01/2ee2c8bd81defabba1f87aa19cb2755a1ac58d", + ".git/objects/01/355ebafeeb452ab0d6860c2239c1fbc26a22b8", + ".git/objects/01/3b71a56450c8a711a3e7e61bb89739062dd5a0", + ".git/objects/01/44802df9025077161c03fe082325de947ed870", + ".git/objects/01/47e45e0a4cfaee56ada1cf973c2a55f6358b8e", + ".git/objects/01/4ab50d4d726f5c18d17cebd1aefdbd75e73fc2", + ".git/objects/01/5262809e6d3f82d41c2e8668e6808f4dde5236", + ".git/objects/01/526e4ea6312d560b9960fba9ee4c14c0833717", + ".git/objects/01/5a5816ae87482748a5ff52e530ea4397ca286c", + ".git/objects/01/6debca6d4981390ce82196c80aceaa160e1704", + ".git/objects/01/8bcfe2fc554b6726bee2a1c2559cad1fd1eb2a", + ".git/objects/01/a423bab8f27f052cd6c55d528b1f75a750499c", + ".git/objects/01/a9b77eb2eff109fc4a199637ff7f8cc6315f0c", + ".git/objects/01/aeb1802a4a24759da96fe5fe912a1e070fce80", + ".git/objects/01/b34a42d8859548e7886d2f60b23cda5bd7168c", + ".git/objects/01/bb9a3340d48b0ad0eb755f4f1c64ec47928b3b", + ".git/objects/01/bc0b7ad145ad5f2b20ee8f443c89ffadc2618d", + ".git/objects/01/cf574a4ae40717b67816ba4ed74d4467f218bd", + ".git/objects/01/d0262204b816bf121f99715cb9c2d7147a2caa", + ".git/objects/01/d9d89f21d4df800b412f83a66638c6959338e5", + ".git/objects/01/ddd65bfe5ff8f99f467350454d8ccbbe14fa23", + ".git/objects/01/f0848596fa25b82c78b45bca67ad81d8bfdbbb", + ".git/objects/01/f262ae0f1741810c9a6fb9c6656aed13af72b3", + ".git/objects/01/f7a5a90e82e9ff82889f7b89c567533ccbf40e", + ".git/objects/01/fca76a66ff5cdf9f8b4fc88974a0a9df084269", + ".git/objects/02/10fe11bfa1b2b052af35ab27f025ad9711d42a", + ".git/objects/02/17fcd746879903ec9f6815e03574da453985b7", + ".git/objects/02/26b4254fb81e67fa28601f46907b20ef8ed3eb", + ".git/objects/02/37a5400ef11d8060586f87a5fa4b763c6155d6", + ".git/objects/02/3ef64c4c68f13d17761f9c44f65faaf8ac8e59", + ".git/objects/02/44d0a336e0214068d910af6adc9e0a6276a34f", + ".git/objects/02/4c38cfb01d9991f32ec0f043d476ca7ccb387d", + ".git/objects/02/4f4145214c5b27ae14eae0a32dcb4b35c1c331", + ".git/objects/02/58d1e4930fbf386eb8ac884a8330aab632a281", + ".git/objects/02/59837e3798f0cdbc219621079080d243cbe24d", + ".git/objects/02/5cb1c90b1de927b9a3b65c86e14e28d1aca609", + ".git/objects/02/70a93d87a35e95382beb658428e84bb2f356e3", + ".git/objects/02/817c127110d4990891dd648d265ce59bd241c4", + ".git/objects/02/86befc33a4fb8d74f9eb1d4aa8d22a4cac2cbf", + ".git/objects/02/88c7bd2bf58f5896787c8f2213b83dc07dba14", + ".git/objects/02/91d483539979ef755a774bc60e966f842d7952", + ".git/objects/02/a95e3db1ca482288231a0dae2a7d22fbde505a", + ".git/objects/02/ac1ee02e76c11a65ff165836aeeda3790a0758", + ".git/objects/02/b067753d4160d90f5c1626c9c3ec6dcd7a19f7", + ".git/objects/02/c48af12ab0c31b90220fbed81e5af4ee08ee31", + ".git/objects/02/cf846db7b186dbd1d3022b85786e4723ba01a6", + ".git/objects/02/d717da669b3417fd90a6c2368959c113903556", + ".git/objects/02/d82b938fe5c6b02585e0cae2c7da0b991e43a1", + ".git/objects/02/e2602b602f8b26d71a39e755e36de00b7dd143", + ".git/objects/02/ff79f8cfd25dbff90335bb5b70487c49c50cf3", + ".git/objects/03/000e8ffe0c0b430a4b7e9d364fd24355f13068", + ".git/objects/03/040ff85ac52d67bd1b81fd083f336df6756a31", + ".git/objects/03/05c61ceb92da8bfbb4e58c4255efd7eab79471", + ".git/objects/03/0de9e984ff01d06b9e2ff422fb2a91144e70b5", + ".git/objects/03/123b5997e82434f330d7772f1583941b498886", + ".git/objects/03/2762f40a633e73a259cec9c3699afc7f31f617", + ".git/objects/03/38bfa59a627fac24b76c4e7b666ffb9a3a4c3c", + ".git/objects/03/4691f869f51215ceee5104e3ccc06bd44dab1e", + ".git/objects/03/5ed7fb6a415e53749f68085b2e2ea4df240bea", + ".git/objects/03/603d85d6590d13757d3c0e5153118a0d79c66f", + ".git/objects/03/6b14ae58d629c8484b61f62e8c819a87be4223", + ".git/objects/03/870d4dbac840d5cb628cf2b6aadc58c096e94c", + ".git/objects/03/8fb256a084dd0b6833877ef9659cb817d126f0", + ".git/objects/03/b6e26c632a9368e08f50899d468f75474fda1e", + ".git/objects/03/bdb76a6c95eab5b7b53fb049f6c21f78c07713", + ".git/objects/03/dd96672606b9b0e39933cd5ea8ba9ea4100399", + ".git/objects/03/df54442c6900aa1dea5559640325e6b8ed7df4", + ".git/objects/03/f1ca0e7188b432fed6f9ad1bd87cb4c2977f7e", + ".git/objects/04/0083ebb79046afd0d4a97d9bb68599481e6e64", + ".git/objects/04/0f507cfcca8ddf5c3d4adf50e87f13c39a60d3", + ".git/objects/04/23dc0623a65c5778a447af3a21d627c07269f4", + ".git/objects/04/26460375d7b9462037baf18b5be0a7d144c599", + ".git/objects/04/57529321475c7c7c277ee310247a4db810df75", + ".git/objects/04/580fd19a9e2fbe1d596c1747730eb3c65a8195", + ".git/objects/04/5f1c15eb51b5a7c16e29999a3c7d391e6db967", + ".git/objects/04/6bac00252458a5f1eb572919cfd0e8fdad3eb2", + ".git/objects/04/6f5711fa66dc4ae3537b36ef34d6c98daf8e73", + ".git/objects/04/6fdb532d3ff5c5956dfc245d08b5771a341d33", + ".git/objects/04/75288d1682358938a0583a99bc263d0d0924e7", + ".git/objects/04/7b596ea4ac5f2f9f2f07982a22db407556a394", + ".git/objects/04/7b6f0162801bbb2447aa04396b226ce510f072", + ".git/objects/04/7dc7afb8b9dc73870239a187cc4b4fd64ebda0", + ".git/objects/04/8a0e8e732e7da55318151062d04c5e900fc19e", + ".git/objects/04/8d0cd4e88fadd12b490915b3ae1b4a1b7e8aac", + ".git/objects/04/b102e385e761ff7378c706404c9f0e7468eb7b", + ".git/objects/04/b3461907b4c791e70f9fdb6003a53f2a49e5a0", + ".git/objects/04/b8d49619c838ce64b033b37d9cd257d1cb2e07", + ".git/objects/04/bf6fbbbc69f04ab70dd111a698b81b3dc8e641", + ".git/objects/04/bfe61e9eb3893fc3734ce6d208b77494eccc6d", + ".git/objects/04/d2fe5a25d83fae7cc891fad3518045e51cb1c4", + ".git/objects/04/ddc5b828a0587c36e785b311b68d020804fec6", + ".git/objects/04/e0a6ceaeedd087d383c2327e2f97d853b77992", + ".git/objects/04/e7325c9d05aec41de729f7f261fe897c51dd3f", + ".git/objects/05/057e1d328ab5c5de3a7f47efbcd22f07a01bf3", + ".git/objects/05/14b3708ece0acb15028e409a97cf1072ded8c4", + ".git/objects/05/14e6d5fd0e9b20c1b7eae50e511e4ec499562f", + ".git/objects/05/14e7263dafd42bc03aba0cfa1bd3b22381a7e6", + ".git/objects/05/2f82565de6fe8eac5e4cd4ebdf606bbe5c8db8", + ".git/objects/05/388736d562226646fa5879a80ea93c3a8a27e0", + ".git/objects/05/427b440ab6618df0797495edd95295f845d500", + ".git/objects/05/4e1d2cc612e858df0b7518e9c91ff425453c58", + ".git/objects/05/5dda548abd227c7a57adffa49aeb26588f7102", + ".git/objects/05/6a15f662ad270cbd6f114533650ca21f4af175", + ".git/objects/05/6af11f5d8c59dfebb929f026906655b572bafe", + ".git/objects/05/76ab85b9360f6c5fc4c74b21c20e9c41ce8a9c", + ".git/objects/05/7ee663805c6eeb34677f4d1b9594f58826879d", + ".git/objects/05/88e0136632a31ee6bd5aae94e927fc0bd709e5", + ".git/objects/05/89055019c176e12fe9e45bbf220277725950f0", + ".git/objects/05/ad3e6e14d2e987f5eb2e03d8552cbc1bac5404", + ".git/objects/05/af220b27d8ab7faf149d28cd368317f8a6e332", + ".git/objects/05/b54bac5fd232dff0fa2387a8c1348483d3b0a6", + ".git/objects/05/ba1b3287f36d92bf0d3bf42c1965debfcff97a", + ".git/objects/05/cf1df71a62e9084536f6595dcb8edcdf18cdde", + ".git/objects/05/e426f2c08fbb3985557645c8c43afada9e0b2f", + ".git/objects/06/14442914789ca4a94a06c8082babbb423344b9", + ".git/objects/06/1526389486a76a8e40f649e0a5f5d1e6bc8004", + ".git/objects/06/318a50dd59d73a28ac158a1d4bcb197c951442", + ".git/objects/06/329d9b2ead4b54dc960b42da20c59b18ba8c62", + ".git/objects/06/5eea468d404e379f98a6e34a244eb7e1e1efa1", + ".git/objects/06/6cb02137769521f114b22beb85c9fa88e4b412", + ".git/objects/06/752c0d4774d1194f9c3d08ba158a777acd8adf", + ".git/objects/06/921e87e0530cd39d426c4ea9e7ad3e5a1218cf", + ".git/objects/06/b3d10ff82fce1feb08b2de900d161887698ca1", + ".git/objects/06/bdc04a2d3c6cd2c11bc019bc784b3459fe734a", + ".git/objects/06/ecb0ce4a48c7459b7c909d50572f1dcfba1890", + ".git/objects/06/f3706f5cd7dd1beff900d3b7e70c40ef4efb3f", + ".git/objects/06/f66ee0dbd5de58c9faaf555b6680172606f8c5", + ".git/objects/07/14904b09a9ce40ea178b19c2182fb8ffde8519", + ".git/objects/07/17f208f8ea134a92f67d552017c2e8604afdb9", + ".git/objects/07/23147f0fb4699fef3776e3f2b2885e362e7f6a", + ".git/objects/07/35c7c09293a64a416fc2bb804dba3e3af6e74f", + ".git/objects/07/3c66f41c9ad94073cdf156e803254ad7c7ceaa", + ".git/objects/07/4f43ea50e84ebc1b4a5a10e3519abc745462f1", + ".git/objects/07/594a3d9cf755aea6d86e6e577d043c61e2b972", + ".git/objects/07/6651516180a463b5512b56ae6f7cd5b7e3ba8b", + ".git/objects/07/67b4973e157ac7de25832ec6c6c416130d6d39", + ".git/objects/07/92523c4b01723378ba40f397977d010f6a9fb5", + ".git/objects/07/97ef62472c25f4ffb580bfdd6016af7273ef68", + ".git/objects/07/9ec1e227e0eeb7fad6771fd55dfea6af5a8601", + ".git/objects/07/a40e5b948799166dea683f4295521f415fed79", + ".git/objects/07/b25b838e43b6b826cdbbbe7a2dcdc53f369cc5", + ".git/objects/07/c36446223f29b4c6724aa714d460af49e9e63d", + ".git/objects/07/d1d4616552a18ef8ab08da9aeae4a23331b171", + ".git/objects/07/d3f4678993ca75c238c4f9f1570a6ad066fcb5", + ".git/objects/07/dfd242f47582af172827ea7278750c50ee734f", + ".git/objects/07/e01df17fb6382e129c507c5a1d38d9a02c7137", + ".git/objects/07/f2bf2c43a6d5da3188579b5d0966c4d0bfb8ca", + ".git/objects/08/023a8bde8a71bf9bcdbb75f3699fcfa3bf34bc", + ".git/objects/08/0403147c3b9ed36dce972f6d328b09914c58e8", + ".git/objects/08/0631db89a1ebc8bad0db804cc1eb68773f7595", + ".git/objects/08/0ed380d6f76aff36756ce556c52d0377c74376", + ".git/objects/08/19fc7300ac923e184b5d3a3a39e422914ea6d5", + ".git/objects/08/2380087180d939f0a9d4599dfa088030083928", + ".git/objects/08/36833926148c954ad79e92a8425905a1088396", + ".git/objects/08/40dbbf7ae3ea407cfa6b4321f8a038f71fc25d", + ".git/objects/08/44d8c324f87fa4acbb82c546362ad92bf80fcd", + ".git/objects/08/58c233c6d8f7bfcc0ac93d33d525880277a51d", + ".git/objects/08/62f4809a721829407406246d7263f3be4a389f", + ".git/objects/08/72fda2827ba45ebedb4535de8fec255d362c98", + ".git/objects/08/7397a0eadf36ef2fe62c9adbdef200313a117f", + ".git/objects/08/7488267a6d28d562f3e56408726069ae731241", + ".git/objects/08/7604f526d2f7c6a04e650265f388a22f546fed", + ".git/objects/08/7a7d4f8b90a93a2a649941945192d6e2bc9bba", + ".git/objects/08/84a617fc72a413fa8bdb4c2831d29989fa3188", + ".git/objects/08/8571d277992a2d05d996c978ece33a33fe77dd", + ".git/objects/08/8e13a7efa05d1355fd4299d288d00cf12dea07", + ".git/objects/08/90101d28f112af126aff13c812b12790249bb2", + ".git/objects/08/94c89f02bad6ba5b0d49367496dcfee5601030", + ".git/objects/08/98fbe59d010a1a913f3edebd534a3bfca3ae65", + ".git/objects/08/a8516e76ad2fa2ae925d1ad0ca80b7fd9e6ccc", + ".git/objects/08/b9954e1284717c61a7c56bc38903e32db8e5f9", + ".git/objects/08/b9e1452eea18ae2b20480c8721198eee01d81e", + ".git/objects/08/c6003635e76ed78bf45964b01fde5ecc355be6", + ".git/objects/08/eb0ae93475b1c99fdb5429345e8780605796bd", + ".git/objects/08/fc0da3257504f39493d797c8eba35d8d04f315", + ".git/objects/09/083086f200ae1aba68c8b2bf291ca6efd4c0f9", + ".git/objects/09/123f9dd3aa08fb90e34105416f16ba121566f0", + ".git/objects/09/33fe1d5f85406af82b0a418a51dc81b59edb2b", + ".git/objects/09/37fe3c6c59baad250f5ad3eb8c35be6a97af78", + ".git/objects/09/7314180a79425a40886df6bdd54a2c219feba3", + ".git/objects/09/8aaeb28037c90b3eaae98667292672d2d5789e", + ".git/objects/09/8ce84cdd7bdb77e63741a3b3b76913ffebbd7d", + ".git/objects/09/a55ea8f0834cc3fd288716c78fad429e47f795", + ".git/objects/09/af9387aebb544abf2d4cee6f88059ff37166fa", + ".git/objects/09/b4f24032eaeee861bc736e3c04c8a7778ca435", + ".git/objects/09/b520ad15df82a7bab3e1ba27170dcb9785204f", + ".git/objects/09/c2ce8d7ac0400fd62b7c1e54f0972986b4114a", + ".git/objects/09/d3f0e931bf8eca13cec6a6aa6a5dd9a44fbf34", + ".git/objects/09/ddc42483ba382803a4842e639e42f53ef0f17a", + ".git/objects/09/e5580ef56ae25da8e5b150234142fa72ebb59b", + ".git/objects/09/ebb90393f6df03f395c02fb2c250e1491c80d5", + ".git/objects/09/ef3e37ae70796ee72c8fa24199b3a1bbba7cab", + ".git/objects/09/f22bbcfb1514bba2e0fa76812f00f0618d8d61", + ".git/objects/09/fc7868a6542c0107097e67d57e387df78677a5", + ".git/objects/09/fe5282b8b4cf07f0ed54113192e5950fb16d8a", + ".git/objects/0a/0acb5c01c7cd9c0358b29c76a682120686fc51", + ".git/objects/0a/10b17dd08a5dc93ac51cf2738a3f7e69d55a2c", + ".git/objects/0a/1ce570145132409be056eff634328c985832c3", + ".git/objects/0a/2b26e2c9f16fb27b54d85c595d288b07ba9709", + ".git/objects/0a/499da85e02ce2c8f9aed367e5e4fa888cc3e51", + ".git/objects/0a/53fae1e39917b7b47f2a1d0a14c46632b3fbb8", + ".git/objects/0a/57e5d1f386842041a4f35ce3124b9f89b0d0d7", + ".git/objects/0a/5bb48fda18ff9d39dd34a57990a4c626d1e970", + ".git/objects/0a/5e295ddc84df66df5a79abbc6c1bc5f3e5aff6", + ".git/objects/0a/80aece851a9b09920fb0ac25265298e5598502", + ".git/objects/0a/916181c9536e27245911b0c9a48342500dc9c5", + ".git/objects/0a/b9e6e3bbb69be486d7bba47a8fc197d0c562c3", + ".git/objects/0a/ca2d7cb326879b8edff2bc24a9f53d9139563e", + ".git/objects/0a/d3b0e13f597ea3a64d5776647b0f7ecd2098bd", + ".git/objects/0a/d8565839aa4559982eea1a3e13c866e6ecf3e3", + ".git/objects/0a/da6f0081e73a285199585c4d1bf961857a777e", + ".git/objects/0a/ead837e419b435f58d625237240a1ea2914a2d", + ".git/objects/0a/edede1176eb1a76070a3a1a316a820ad9c4580", + ".git/objects/0a/f0e65aa64c52ceed0af578365474ac63c23d64", + ".git/objects/0a/f39b69f119c26b5083c3c8dcfe59179def75a1", + ".git/objects/0a/fa066ce2a1581997af054f0e73a057e7c25525", + ".git/objects/0b/1b414f64618117313caebe94cd999a4f78420b", + ".git/objects/0b/38adf8370b53178251df5c1f116b8354ff53df", + ".git/objects/0b/3f693959b28042db4cc6e6fa39bc2a98e08ee6", + ".git/objects/0b/5fb392a933cb6f68000cd07de7e5607e5a70b8", + ".git/objects/0b/69a10d820c056d7beb0ddf56da3f80cc990c33", + ".git/objects/0b/81abe2bcacd1078bf6b1223eac83cec78bcf0b", + ".git/objects/0b/95e5e1e46e3879839912fc5f66c7da14888526", + ".git/objects/0b/a338f722592427396d28655965acba2d96cecb", + ".git/objects/0b/ab4aa982d70807d27fef356ebd919b69c3334d", + ".git/objects/0b/b55f6e9075832a36c04f994151ea08393917fc", + ".git/objects/0b/b5c2f9f9665ccc594b785cc5b17a5c29d5bdb5", + ".git/objects/0b/c0bfd3b6510271e08145707fb6a3e04b665160", + ".git/objects/0b/dc741bb891e190a5c9f60c3eea92887770468d", + ".git/objects/0b/e45ef610f4e946c1a9946c0aa8e3df0ffc9891", + ".git/objects/0b/e4d5ec145fc3145bdefc1eca1a0a11c502a4c0", + ".git/objects/0b/f7f89e22a782b9e9830a0615d20f9e66f925db", + ".git/objects/0c/09ce9b20e831c6352099680955f08a17a1a013", + ".git/objects/0c/113d03ac3105a28ad490d044c5826d16c24f01", + ".git/objects/0c/20d983e4695cb46a43a311ee205173946a71ce", + ".git/objects/0c/3dfb3e38abb6e8a9cb5262cd49162bda592187", + ".git/objects/0c/481efd477d09293b9ab103123c70a9e55ffaa8", + ".git/objects/0c/487f4d9b9fad2d4512793d6ac23867fd248aad", + ".git/objects/0c/498e090a4ebc58903799efe96b344b4cd916fa", + ".git/objects/0c/5f7b14cc0ae097867668a3e7447a278760771b", + ".git/objects/0c/67620d720c60caa8230433710051040cff5a45", + ".git/objects/0c/69ddd370b70e720112f21e9f45443adfd55e7d", + ".git/objects/0c/799d1a0cfdfd3d61ae8139c54901c52fda01b1", + ".git/objects/0c/7ae49c698304424d55007dd488cef3fb1afab7", + ".git/objects/0c/842eb34774ffae12a34f5184c5158e14378ab4", + ".git/objects/0c/87ce0f338d07450d3ff590b6d7eb7ffa13b618", + ".git/objects/0c/8e755d761d5477948b62e46e2058492cc4b3c2", + ".git/objects/0c/98d8669dae2975daa4a893a4c5ce0f4a85e971", + ".git/objects/0c/9c443b3fe61923bbeffec9b598c1db43a9ae4f", + ".git/objects/0c/affbaa0a8347508475752f6ef75f831b89be37", + ".git/objects/0c/bd5ce30cd3e91c867a0a96add53a37c2699c74", + ".git/objects/0c/c48e553cee11358ada9568fc3928f9a4b9da14", + ".git/objects/0c/e8bb66982fd85f3efdc5aeafffefa60924e972", + ".git/objects/0c/f3b7ae326d7437dd98f74b1bb5b5d8ebf1b573", + ".git/objects/0d/0738974f8fb1cd1ff723986374d7dba735219a", + ".git/objects/0d/0a91c39ccc072e08f9b3a153b4b384752accf2", + ".git/objects/0d/2067f2e56bf2f883854150a90d99c899b5ebfb", + ".git/objects/0d/36509217b2da56dfa52a1a5b2d8f89c8e0b6a6", + ".git/objects/0d/37c417cdae432d68662a880c3ba796a299b7e7", + ".git/objects/0d/4c7bce3b553590d2769eb6f6e73cb08c9ac09f", + ".git/objects/0d/4f9521c06a3299e4eb3ada440ab4f1ac20705f", + ".git/objects/0d/51ed992d7276fadb80923d5156f81e70e460bb", + ".git/objects/0d/5639bfd6214f5996b426036d9cedf881018f97", + ".git/objects/0d/5c073a09889a077c53dfae2bdea79dfbfb4365", + ".git/objects/0d/5c819c9ab493b286c1d390abf89774aac79208", + ".git/objects/0d/80173f2b3de58686ffc4a5caa81949eb450401", + ".git/objects/0d/96b5ec1de91f10972cb11b95d7afd0a0889bf8", + ".git/objects/0d/9b4e7d5ed9a344e06959291d91d0219ed7234c", + ".git/objects/0d/9cb5daa2540bb85d2a8a8cbc1fb24d14c17a70", + ".git/objects/0d/aca4a6eb4928a7f901146819e8dd951aaa62b0", + ".git/objects/0d/bcc0b324785fad8411f20474225574a80add73", + ".git/objects/0d/d598f7c67ecd4e3f876b42d2985cb404eced97", + ".git/objects/0d/ffb6ee230ba9aba390c5c6faefc2024cf7a2db", + ".git/objects/0e/07873c3f5492164849d477f01a03c03ea1e187", + ".git/objects/0e/15bfddb5087bc6a284b46f5372c3221c87772b", + ".git/objects/0e/48cb6fcc9f36af70b6e2f1abd1f76926b67eb9", + ".git/objects/0e/5213850f0bee8e705dfff4f514b2b9d678d701", + ".git/objects/0e/53bc2ae4fbfd27545301ae4b7cfbb79b49679b", + ".git/objects/0e/5b50f8ab75fa48f82f4313a8e02b51d8cb8382", + ".git/objects/0e/5ec1a8388587ae76868760c2f954b4a1f06fb9", + ".git/objects/0e/77b68767da411d46919482f503137e29dac1bc", + ".git/objects/0e/7c034725d6559165d605ce8e6e46aac640c3b4", + ".git/objects/0e/83015f2af70b7233038d1e9ea62a410bc266df", + ".git/objects/0e/8fbd1de14d7e0fa870953732b13c07ebade24e", + ".git/objects/0e/b7c8f505ca6e7471faed0e4e158bfb9b6671a5", + ".git/objects/0e/bc1edf245b4c1a7d01b39e8153f5e2ae8d65f0", + ".git/objects/0e/c82124e03e6c1a3febf8f98e8449b974e2559c", + ".git/objects/0e/e4c914ed34801a29e9996cc953fb7dd08d7957", + ".git/objects/0e/edbd20e21503ac5415f70783d66114df982743", + ".git/objects/0e/efdf833b44988fbb1558afc850885c3a83f467", + ".git/objects/0f/11b1fa702066b5823e3e46c1c9c98cfd5510d9", + ".git/objects/0f/15a823f91ec95beed9712f4a3e5c56061c44c6", + ".git/objects/0f/1da260a9608d3787249ca0843c6dcad60ff729", + ".git/objects/0f/31bda43aa988d81e57c5d533c09a8bd44d87e9", + ".git/objects/0f/36309edf0bcec3a32e6c2bf98ea9ab580f96be", + ".git/objects/0f/39d8b473da6d363d7457f0cacdae51dd2d7be9", + ".git/objects/0f/486c49c95027395dae17dfe947681409bf2cfb", + ".git/objects/0f/599f9de081d1b94a6901cc45717156b6332945", + ".git/objects/0f/61999190b9b1f06396833b808a8da4fc7392c8", + ".git/objects/0f/640e33d1ecd8374ad0e0cc97ac1d160903d0b8", + ".git/objects/0f/6caa0ac050bcd81973900f0080e6c67ee824d8", + ".git/objects/0f/6e30e08c035f7981ea5e5fb63215a26bf8b8dc", + ".git/objects/0f/70fe5949c9ab8e6f27003a173a7031141d2583", + ".git/objects/0f/768aa895101f845b9e7e4258e29ef17d66fe3b", + ".git/objects/0f/ad81020f66cabf1565e4ea93ce6d4ae9b9fa74", + ".git/objects/0f/b25dc17d2ed7e2e3a54a4cd9dd31cd60380935", + ".git/objects/0f/b72db5810f6d5310bda972a47388c797123da7", + ".git/objects/0f/ba9b07b2e76b9c3b99fc807fc1374c7f5311dd", + ".git/objects/0f/d2cb024b1c571e472a6ac4b8b3192ccf0318bd", + ".git/objects/0f/f436a8968aaf844947f488ba14eb274020af0d", + ".git/objects/0f/f828f72736685c1667a2a355ffc161462d79cd", + ".git/objects/10/0031c5af36797b0741fccc0690956900bea62e", + ".git/objects/10/0127a40058596f2c2b758b7d91ea1876305aa8", + ".git/objects/10/02105778b86dfb878c8b8556d1a8d7bb9361cf", + ".git/objects/10/0799551c858d4af10526f569178e5435915363", + ".git/objects/10/100cceb6732cfe3c801c4cd119fa7bb7b001d5", + ".git/objects/10/20fd25c39f4d54eb9b1997993695aa0edbd7e5", + ".git/objects/10/3839264872bf9ad915a83cb86a3c4aed035014", + ".git/objects/10/559d8ae6dc3d94ddd47639392d2e4eb3064f22", + ".git/objects/10/5a462e838e091d6dc210c1136dc44d3ce65aad", + ".git/objects/10/5a64428010a0c3bd9d6ef94ba51bd55dffbdf5", + ".git/objects/10/5c2a04527ead06e4f8debeb932cf6992d19e4c", + ".git/objects/10/911369b482fad01fe8b27a018c3d8abc38070c", + ".git/objects/10/a79ce4f17966319c581fafff61b834dd74001e", + ".git/objects/10/b1204f4ca7cf641e1294916e9e2cf22eb09e8b", + ".git/objects/10/bafeda55b7738c2e4d4bf2772db910df42d170", + ".git/objects/10/c5076196f31a6085fde902ab5df6521c1b29c8", + ".git/objects/10/d5393564f912e11ed3e431485c0af0f3ac5a00", + ".git/objects/10/d71bbf3995e210be89a5b9e8da39d00f6a1131", + ".git/objects/10/e28b4b6b17c58740bdf3bca2946eca18082ae2", + ".git/objects/11/068bb590c80577161acb8a064559ca90c7ffd1", + ".git/objects/11/07caa89b2a661e283eaaf51431642b94a7c5a8", + ".git/objects/11/08afd428ee607da838789b57735ff44a3ffd28", + ".git/objects/11/0d68bed303118f420d5554123e606cf6a13917", + ".git/objects/11/1413791e3312c82dd01fdefa74091a7698038a", + ".git/objects/11/1d156071f0b78102ee89d5a45645b83d344bc2", + ".git/objects/11/2090a3aaf85d97437cb14e173c7db0354ac81d", + ".git/objects/11/33ac85bb8aa2e284594387f62bb341e947fb71", + ".git/objects/11/42886826552dd71e322b71d7bd45978d405e79", + ".git/objects/11/44f0d6956017cb05573b6b4b87ae25c76e467d", + ".git/objects/11/5fe3c60d8949cce8d126e541b479b6663d7af5", + ".git/objects/11/7b787f79db730a739100b5e8889b1d1c885edc", + ".git/objects/11/815a6eeea0eb9e4d115d467b1fe58388409e8a", + ".git/objects/11/942e9ba14588787cd6107117de0e04ec551ad7", + ".git/objects/11/9d76e1df31c2a9a1b42864dd77aa210742c9df", + ".git/objects/11/cc1309d3dc7ffd363dda52c9253d10dc58b452", + ".git/objects/11/e4f6076d232291316b6b77be8b86cc0f8f6c50", + ".git/objects/11/e652058ce2a712d0db1b7b62814bbb7df5eee1", + ".git/objects/11/eaa30255aeed9b9b9871c7424076ec78440fd1", + ".git/objects/11/f5521aca9b5d73ee5b3e838581f082a3332e20", + ".git/objects/11/ff81349c753492e9299ecc77c91e0ed51b80d3", + ".git/objects/12/29ab682e30b982bc5ef415abfe3d214883c724", + ".git/objects/12/36c236c32f1271d634f9d09a3ca3c32ff76e6e", + ".git/objects/12/37ae6aec131fca430db1c5ff282a5eabdf8dfa", + ".git/objects/12/3be677a54d0e526f88399c752d422297b2b9b2", + ".git/objects/12/489f6b88adc6ef5613795899713b75e543f813", + ".git/objects/12/5156b303fea4de890ebf46300c055305c09271", + ".git/objects/12/57b7923d6f432cdbba27bb6318ede5facceed2", + ".git/objects/12/665ebfc785d13bc2466ce97966825519a4648f", + ".git/objects/12/6723f8c5c5535bd884ea94391baabe3d17be59", + ".git/objects/12/6b16d039d2100fb651714e48c304f3e61cb28c", + ".git/objects/12/6f694b92731c309031241d67cafe99241450b0", + ".git/objects/12/78643155803dcdef4250b833cf070b86728a38", + ".git/objects/12/78d3e6d5ef8be005d8065abd63ca4cbdf1c50d", + ".git/objects/12/7d006a07e6f60a889f1b12aecdd1ae83b8933e", + ".git/objects/12/87646d5022ae53edc50373edacde60c49e14e7", + ".git/objects/12/9455a22da8ce12a5bc3422a23263a8625c684e", + ".git/objects/12/9c5e675e3b300253dd99a93c36c69fea9f37c6", + ".git/objects/12/b3c12abbfc97a2fa08359e1e1fb329ed2797dd", + ".git/objects/12/b41cee3bed02f27b0c01db6d281243c04e9c36", + ".git/objects/12/b83ca6527f3d34fb8d6ce6efe5ba51a55da54f", + ".git/objects/12/b8b94213cf33d9453b5130d4f02805d3313cea", + ".git/objects/12/c64fea997d3fe57cb16f1818320b6f9abbd263", + ".git/objects/12/effd41ac640cc5a31aef611c25bde528654783", + ".git/objects/12/f1117b6a8c745951f0deca3e9113cd4830bbf0", + ".git/objects/13/0c86909590198fa6ffd42526c5f95730c49bc7", + ".git/objects/13/16fb29e608ea9e9ca71f4118a4e98a6548fb56", + ".git/objects/13/24ab61f116109a450906ee8c66d57cc8345205", + ".git/objects/13/4c3bfbf86da5305ed79ee558d4d80983a6a920", + ".git/objects/13/5565693eee44d8aa44553f20a9bf237e79a91e", + ".git/objects/13/7200fd82823977c616eef6078cab66fbff81be", + ".git/objects/13/7c07c65ceea9a13558850c2b4b3a9788c7dc94", + ".git/objects/13/7ef83a4294872b050dd834a1454801c458bfff", + ".git/objects/13/a8210997ce6d06ac177b0035288caaabd7bb89", + ".git/objects/13/c19298a77ed722d9816b2e2dadce8c0241832b", + ".git/objects/13/c61c39ca2220295aceb5ff19b4ed436e378096", + ".git/objects/13/cda91e90d75f49042ab92726ea54240e8bac36", + ".git/objects/13/d9f9e3ff41f4414dd433c66267ff6fd7a78b47", + ".git/objects/13/e167a7ebaba4d866f5e860b8a99326fc766fb3", + ".git/objects/13/e4a146090312f8e3b5c413784c929d1365066c", + ".git/objects/13/ec06aebcf5913547e27543a1808fad3d5c7064", + ".git/objects/13/ec4798556396ec58c5a28dd96ab40dc93ec1e7", + ".git/objects/13/f025f49d23db2345e0fceaad83268cb00e4de5", + ".git/objects/14/0948b2b8931e66a690c06ff2668467c41e01f7", + ".git/objects/14/17562d909049028783e632ea756ed930044c90", + ".git/objects/14/206a2feefab3b626a911412f11e403f95cd520", + ".git/objects/14/418ea46556a80c16ea25f935aab31eb9478c1a", + ".git/objects/14/479dd4805b4197ce516744cfa8bd89f08e57d8", + ".git/objects/14/4929919953b189e0d807f8f6f656cd70cf335a", + ".git/objects/14/51a80e49694e8f5ce9a6d016549b6527dc1461", + ".git/objects/14/5713b927146800af4e542332fed85d849a30a7", + ".git/objects/14/6f3cb1f095553643ac2ad0b6a32a0ba0097d80", + ".git/objects/14/70757aa6b47414a42783933b89cbe6191b31c5", + ".git/objects/14/7577d36f8e60499e05a4827976787e8b177d73", + ".git/objects/14/77889ec43fcba959d0952c3dac3180a387c610", + ".git/objects/14/81069e7693ef23db0cafca86d066c40973a6cb", + ".git/objects/14/84bb0e53b0d20da5fa12fbe764b66faa141d5a", + ".git/objects/14/a3ba82978b3760e7c846ae0ac8f063ef09ce3d", + ".git/objects/14/ae6f5d51deca1d9327d5d29e9c7baebe005086", + ".git/objects/14/c32c1b181dfe380abc0764eccaf70c6814de8d", + ".git/objects/14/c3526e609379ae4a1e63744e0ade6a1e752530", + ".git/objects/14/c944813a3e11bebb97280a71ffdfdc7fb5dd70", + ".git/objects/14/dbc663cd847a41c86cfcba5b73e48d96b62d0f", + ".git/objects/14/dcc32cea7f4ac074dc3efbac5387733df4a1e9", + ".git/objects/14/de64ad611621ede3fb241d882c09f5c6b8ceed", + ".git/objects/14/e872d28ef58150b2b03899bb0a2932a964ff6a", + ".git/objects/15/00abe2087bd2bc3b9dbd11832fee10fb47f9bb", + ".git/objects/15/087308a461cac6ed437946773af9c53363759a", + ".git/objects/15/0f91d0d14ba7cc952f1fdd0723e97538996c78", + ".git/objects/15/12bbc4ed5e28fb6d213f313835780801214b4b", + ".git/objects/15/13ac28dcd8d0ef659de0a8d3964a96012e42bc", + ".git/objects/15/23e55b793843a2c562b772603c49c75e1dec27", + ".git/objects/15/2473a841835a306ca2ab3f123348ce2cdb6f79", + ".git/objects/15/6ad49c8738bbcdd6c617a7069ceb508b99ea84", + ".git/objects/15/75a4f51dcbd9612574e4a085260caf026617fd", + ".git/objects/15/76ae20137709b4078fa9c41746be05a0a50eb5", + ".git/objects/15/83484e998fcb96c313ee8fcafaff307e6138bb", + ".git/objects/15/8dafb013f9c0e0a76e92c11f77b71bb67be8a5", + ".git/objects/15/997806e388bc817684a9f8053e75414fcea321", + ".git/objects/15/a717121b8ed6fc523b2889a6cb71be40354850", + ".git/objects/15/b4b5746527de854e324af4476101383780a980", + ".git/objects/15/b9a916a564e290d6d4f93df27292a99b8c29ac", + ".git/objects/15/c5beac9f628212d8be495538505408f590f54b", + ".git/objects/15/d64a62cb4bafae9908ec3543953c618ea51d1b", + ".git/objects/15/e0a85fbaa2b37c39d198cac01eccdf6a42f2da", + ".git/objects/15/e7566117b846bb4fd3b9ed23ce9204f6ecf5d4", + ".git/objects/15/e7938e2526df5757308d68bea01766c42542fd", + ".git/objects/15/ef47e57e80c66fe1cec68cf9b014ce064de18e", + ".git/objects/16/1084ce3f43e4a18fca1cff303e23aeb92bc4dc", + ".git/objects/16/130a773d36af6c2a6dfbb6d90c1da1f3006828", + ".git/objects/16/18f7046ba7e2c77742cf62b59937ad8a282e53", + ".git/objects/16/1adde47d2a809d880dcc4810ad9b52a19fa4dc", + ".git/objects/16/2504f11caf76780d608c88312f2cf798689188", + ".git/objects/16/2661183ad1d6e23336b7574e641bfdf7e9d994", + ".git/objects/16/2afedcf8b69006d7d172ebcd5a03f8ab21c0cb", + ".git/objects/16/31b9243662b0bbf2d027bd33cfc81487cb1a60", + ".git/objects/16/33f00e7e17a1504890c2e39384031c11602051", + ".git/objects/16/3e1d45f3724c4fc31d1c052351e4dd8247be20", + ".git/objects/16/489af39b408dabd059f759f053f0b5031f9e49", + ".git/objects/16/48de84848a4093fdc3a2625a82c1f4f2c827b1", + ".git/objects/16/4f3624f2225764efd7a0277847aa23dc131a85", + ".git/objects/16/58fc7c3639c7b7ba161246e792a0686de53cce", + ".git/objects/16/6193352e0b7bf778a2b03b4a07bd9766548c76", + ".git/objects/16/974c56f0d3be1343ee8140b7829a84454ce41a", + ".git/objects/16/9859b4e84786d58e665b2e183d94a3e20eda54", + ".git/objects/16/9c83cba534d34e4f88cc0aa28e724010814bb1", + ".git/objects/16/a37863af1034807153882d96208ff5fcc58e82", + ".git/objects/16/a610fb1f84200cd80fc79e3e347cfcea595f8a", + ".git/objects/16/b1261911648ee780e6b454ee5d56827a7b17dd", + ".git/objects/16/b774b9352e69aca9faf5505b063e93371095d8", + ".git/objects/16/ce0b2b03976d18e626fd78b21865d53c348fd2", + ".git/objects/16/d5bbd088fad3a9fd6020f4450d0988b19f8ad1", + ".git/objects/16/e3ac5a376bbd9fedbea42c6ec16760002f81a5", + ".git/objects/16/e95192e4e0d201f55daf32a96c62543b577ced", + ".git/objects/16/ea87135a8157a735da29ce79aaa52404f2114c", + ".git/objects/16/edc10a22c09fd49687b457f3144c970ec42d9a", + ".git/objects/16/f4971e23bab16d15745a90bd0613fcc01c0a2d", + ".git/objects/16/f906356b1139dda7914c7bffbacd1e6c8487b5", + ".git/objects/17/0388e0914355cc46ca9a62e05c42cfad0ae39c", + ".git/objects/17/06f1a7b7a1f89329e6ec67248ed2dc37460036", + ".git/objects/17/0a2b70d8314ed5e916edd69724fd8d46a0eb55", + ".git/objects/17/1599c0ede3c709956915af806ad0fee4ac9092", + ".git/objects/17/1cf3a4214620101611180bc2132a7c90a39625", + ".git/objects/17/22c3134e7d1712d0da4b3ae12723527c92cdcf", + ".git/objects/17/2eb87219c0b3bc55f2884f32adb05326244627", + ".git/objects/17/4d2729af1690014d263e67669c2ed6d0b1a20e", + ".git/objects/17/4f9f3804c9d0307e4a7e548ab5d3aa84a67ca9", + ".git/objects/17/5ae3f40ad5cb41e46a1b39c5825ef58efc2a97", + ".git/objects/17/6f537b1d6f7f48d5f43bfd5cf8a721a82376e5", + ".git/objects/17/7133c4ec782a080182bac7ed3801a6923fa336", + ".git/objects/17/7f43f12cb00f44afb88c95281068f5ae7e5751", + ".git/objects/17/8ea7c8432928713653064ef557bf4e6937f94e", + ".git/objects/17/96bd57bb3c155fb2a76ccc28f0f92af2be7ee2", + ".git/objects/17/a8a063da985864988b16c6a1ee117626f9ed28", + ".git/objects/17/b0a21cdbbb8d7d7f0bfa590ed9d56094220a10", + ".git/objects/17/b1c4b71710f05b6b6767b45ea701e046c7fd04", + ".git/objects/17/b3e267cdd3c89d0360981e7c232279863a98aa", + ".git/objects/17/bb6be2b16c32c94a4754999be100a5bb18ff84", + ".git/objects/17/cc94761edc11ebb135d0bbb7e197b5e33aa948", + ".git/objects/17/d3b3c2a7f298cc9089a368ef1c4596927aec8e", + ".git/objects/17/d81364bef8afca2ab917a45a749b59ef33c53e", + ".git/objects/17/d950cb04fa20dad0697bf7750c40301dbabec3", + ".git/objects/17/ee4579df3f6cf8f85e9c10483aebdb3c088374", + ".git/objects/18/25d52ec936a43b9348333ee55d67f8df38f325", + ".git/objects/18/2bf985e4c407f7c5f093735845c7f62cda3211", + ".git/objects/18/3173a09cc882b50ef2402f574c5355ee55f328", + ".git/objects/18/3b24654bd3b75abb28c86b857398020cb8f1e5", + ".git/objects/18/434cb4258e2968f943fbef99c07c9e8eb2ffb5", + ".git/objects/18/6e510231c004be881b4d5aff4b593cc40369dc", + ".git/objects/18/7472b0815b6348921eaf3ccf1249f16c1bf11c", + ".git/objects/18/7c1d817e54bed0e2fb60b928d528ef37795357", + ".git/objects/18/7fcf797cfea19d48beb411d118cbc1ef4802e9", + ".git/objects/18/9d457a7bfc54d664baadabc6795c5ea30f7857", + ".git/objects/18/a01eee07bcb3140c759088f1c8cce304e06c88", + ".git/objects/18/b4362c0d9441ae77b01d7db51f08095a98411a", + ".git/objects/18/b95b23c3e2a9979072718a54317efcf62055e9", + ".git/objects/18/be400c1df362e319a86991f06dbfee7f3f633b", + ".git/objects/18/c0fd5e13f6df589f9806b420428f7e0e2eafed", + ".git/objects/18/c25b89c0208dc8eb3394dab90bc91f52e6b2e8", + ".git/objects/18/c78d768389ef091273bf3a9a3a8d57bdfe5d54", + ".git/objects/18/d61fadf2b36b34a24a96f4c4eefd8d61c18363", + ".git/objects/18/d705c1bb0576e5ebd2ed6d460cb0522889f0b6", + ".git/objects/18/d792fbd908f3400d1d7712ed476516eb5e45db", + ".git/objects/18/dd7490b21828c208342d2d0c10ba8872ae4727", + ".git/objects/18/e2898d5cf0ea2228d8eea8e9daa172c44c6064", + ".git/objects/18/ed3d1070840ca936d19e449cc784fe7230023d", + ".git/objects/18/f21198ed7bdce78f90e6ee7fb4b29255312923", + ".git/objects/18/f69592723e1ac59f4ab089b093af7dd687933d", + ".git/objects/19/1b5dd1842f952e7506f2d552e4aca8fce3632d", + ".git/objects/19/21cb593d50878bc81bb946ea9534c2d94029d5", + ".git/objects/19/27b9d2c7b392c8234008bd25d572f576ab26e0", + ".git/objects/19/2e03fda20b53fd543e2fa5738bd4a9267790c1", + ".git/objects/19/2f629bc598a09f5cf75c89cff03985f7702ae2", + ".git/objects/19/502b4e9606085bb00f8f64f706891b08f349f6", + ".git/objects/19/543b7d5de91ba3253cae8691fef2a2e2febe3d", + ".git/objects/19/5f44f4ee0d739aea18b8919bbee3c35a0c9b33", + ".git/objects/19/6293db619c08e6f44481e21819e293ce19ade8", + ".git/objects/19/633f7fd963c50410dbd10edd2c920b91362c55", + ".git/objects/19/7507b996c91d1ab19cfc7b6149c6edd6defea1", + ".git/objects/19/78bc21068a34fa0c716f2d21b8cab08b1b1ee6", + ".git/objects/19/8349e6bffefc08a018a1a6a76b923ad735c977", + ".git/objects/19/8a23a95404125fcf170e0bde9f638ffa03a623", + ".git/objects/19/8c62ff99b09e24aeb75fedc3c7ebd2fa385ca4", + ".git/objects/19/961a83950fb970c6851956bc65f1580157b67b", + ".git/objects/19/9a2559c162ef9735a6e5c6dc954ca866f38e12", + ".git/objects/19/ac0a83c9641e0a80082297742b30a92abb5539", + ".git/objects/19/ad56b87e11b4358cef9d6732fa0e90d7ef81ed", + ".git/objects/19/b683fddc825d497c6b3e473687d38b191ed30d", + ".git/objects/19/b90b3195f6b2760f151cc518a28e602fc36056", + ".git/objects/19/baf5272997cf06ac6139628f2ed8bf71294d81", + ".git/objects/19/bee909788c10eea18c514f4c56d9400e0e5714", + ".git/objects/19/d666b740eceda622250984da697291646b256a", + ".git/objects/19/ded0fa251c203f78c4a7ea6d954d2f64b1f389", + ".git/objects/19/f02998baddfb62c53fdc3eabe95d40eec2f595", + ".git/objects/1a/0aa439eadf8f0aa868429802c9c14c6388f7ee", + ".git/objects/1a/0ee93077009b4c92d9d2771c9428c8d9c16955", + ".git/objects/1a/1a252befbdeab13310ccfb8d029abdc0248892", + ".git/objects/1a/22eb010b2b15721ec161e8c37886e040e7ceb5", + ".git/objects/1a/2cab21a4c5a9cff92b76757f7098d267dc32ce", + ".git/objects/1a/5b7fa9bf8d2a13d683d7870856d3f8c417d476", + ".git/objects/1a/5ddc0ef09f3ada546ac586720e76dc405a1cd7", + ".git/objects/1a/5dec660f69fe43c21a7c4ce3da3ee0c5f41169", + ".git/objects/1a/6af1198d7aac6e527e02f296cd96f565a1275c", + ".git/objects/1a/81e3d0674ba74dc454ee39e94aaf52dc133268", + ".git/objects/1a/860a7ab079859676c8d4d4a288e294f65eff19", + ".git/objects/1a/8c0f9577d6e66c7dde7656c8a68fcef581b691", + ".git/objects/1a/9f6dfcea6a63d14f6e83a3d28b188ff6c5153c", + ".git/objects/1a/a1c84decc8f20f6655d5617ae79eb9496a1b70", + ".git/objects/1a/a942c0bf55e91eef0e44ca9914dae78d9fd82a", + ".git/objects/1a/ad634e1f7645733477bed518032ebd018c0e26", + ".git/objects/1a/b048023bfb3380fe91c4911a8b40f38f20fb8c", + ".git/objects/1a/bffa2dc1ba66039b7bf318968dd01ec644fade", + ".git/objects/1a/ce7ce79c8f758a1a5a18966272d1a6c52cb010", + ".git/objects/1a/cf874ad66a40b28223ba68a70f602e0d723206", + ".git/objects/1a/cffc61886d6465be53d60d3e2100511be953e0", + ".git/objects/1a/f36d09dac57bf8888da697c89e1ee01d350252", + ".git/objects/1a/ff02e90cc033f460f1d25eaf02599ac6505686", + ".git/objects/1b/2249f40105411003022a9f91be075e195cda2a", + ".git/objects/1b/286cb9c4a533f6736383007f84c356cc66bdbf", + ".git/objects/1b/3fda8b119ac0b304040a04940b08359509ab3f", + ".git/objects/1b/4125f3fb1d3aba16320062fa4405fa0ce118ed", + ".git/objects/1b/47984f544229f55c9240ec5dfc3362fff21a10", + ".git/objects/1b/515562efd6455c1103d5941f5856bf6a670dd3", + ".git/objects/1b/6ade04fcb0f534e0ab3bec9ce3a0eafbfb1565", + ".git/objects/1b/727fb7a16236fa73a6ce5286e5d38b5bea1eec", + ".git/objects/1b/85b556139b73c06d855d0b9e503f4043458f25", + ".git/objects/1b/876ebef74c79f2e525aa163855f0332757d83d", + ".git/objects/1b/9b1b41ffbe3a937c298366ada6cbf33e20f1e7", + ".git/objects/1b/9f95cce2ef96c5c517d986f1da53d9130a992f", + ".git/objects/1b/a40b0cdc4fe6f08af8e57c69ed5927968c4ad1", + ".git/objects/1b/a6f75b8968d5f7e05c9be99de2118c8bf39357", + ".git/objects/1b/acb402a5a9ba43ea4ebb5ddb249f33e94fb7f0", + ".git/objects/1b/c6814db8639da81dadf78a9a295efa394e9cbc", + ".git/objects/1b/c71cb5a0d238f41a54e755cc0a202c22636967", + ".git/objects/1b/c7b58d0d854358b47b7f96725ec7b55058406b", + ".git/objects/1b/cc3f7023c11a5ed237e0e33958bf9b8441c789", + ".git/objects/1b/d4a041a5ded4e97a3e83a71fe50fdd09db56f6", + ".git/objects/1c/02db929a03289b00f748a3a27ff9247b7fab37", + ".git/objects/1c/0c2e7ebaef1e701f14be054b9a2236e02b2055", + ".git/objects/1c/1245906af06fc111250403ab8187beb31b2f66", + ".git/objects/1c/25299c3e47270d368f50854068c22ba716e668", + ".git/objects/1c/33ef4132721c30ed1b853313faaa9015628de2", + ".git/objects/1c/45c25d2f738221981efc39423d50c6a36649ab", + ".git/objects/1c/755b0e33f4817924b93c487161a2f26daa5f6f", + ".git/objects/1c/7e497f424885c9ae43ea1faaff230442dd03f1", + ".git/objects/1c/8be3f9f26a8409137afe8ecc7060448a895481", + ".git/objects/1c/95aab3a34f9cdfa2cb73985acd30bfb71a794c", + ".git/objects/1c/a68bb282563e5f141fe91af035d68ced57405b", + ".git/objects/1c/b169764e33fbf8778519a4f74c854dc318555f", + ".git/objects/1c/cb881fa23187e8805544b860185c1d3ddd78b2", + ".git/objects/1c/d566bc6390f7bd8d187b4319cad6ef40ed3b23", + ".git/objects/1c/dc81485a3d3a0684ec2ccc82ad11da14b61b85", + ".git/objects/1c/e47f922c0484db3d89ef458f48e7b105510608", + ".git/objects/1c/e66e9e3dac9394478afbb47e67f5e08473e6f9", + ".git/objects/1d/09d93396160f7be658c3097c486ce21acdcbcb", + ".git/objects/1d/0aa3de809aafc03680cfa3bd07c1b0699c69b1", + ".git/objects/1d/0b50b94111ef18d9e4b404ee07960ad01c8d79", + ".git/objects/1d/3a5a7217d0936fcfa9371f2de9b021badd2d20", + ".git/objects/1d/3ceaf3903fe9db412a776733e41f19a77cc8b2", + ".git/objects/1d/40f905e4871113e6e184d12892b7b1b7ab85bc", + ".git/objects/1d/455d76cf748c71b76b6e6045ddb35564d0e2b3", + ".git/objects/1d/4a0b0e772b34bf5e6dbb3f7039c1bfb983a88e", + ".git/objects/1d/523b40c692cae02a4af5d77818f672421312bd", + ".git/objects/1d/679826eacb214c7837faf33aec8f724f60abbb", + ".git/objects/1d/68d90d87a9b2f722359c7b136fd10e9a2e7ea9", + ".git/objects/1d/6957be8d92e0945e760abbb2c3a92ff508264f", + ".git/objects/1d/6a312c223ae344aa7ee483885ba4934f1a7526", + ".git/objects/1d/6c51ffcfdf55d1fc36be33807bc869e2469637", + ".git/objects/1d/767253e7f07056e9e49dc3da82927ec7cd36cd", + ".git/objects/1d/86c4668c1c838a78bdcf2e52f8a923ed4f38f9", + ".git/objects/1d/95838a6581aa59200acb1534c07288c7f95bf1", + ".git/objects/1d/97e996c1e3975287cf16538570a365011d6b9c", + ".git/objects/1d/aa12a3b13ae3f40730fbfb614fd5661322d60b", + ".git/objects/1d/b127c0ab3a0012912c8b4ebf2e53b6dfec8893", + ".git/objects/1d/db387bdd8f7d0f590e5d3660f583306d0f19b6", + ".git/objects/1d/dd7d89127997b5094b704661094ec37dcc26c4", + ".git/objects/1d/dfb3b1d51202dfad2a484a09eb02f1cddc9bad", + ".git/objects/1d/e43d84a6ffe36760fc70632f8efef37ff90278", + ".git/objects/1d/e5e448f117167a366df15caa1d40cdb5c44755", + ".git/objects/1d/eb126f185da90ee99ecda3f4a3ace3cb8e709c", + ".git/objects/1d/eb2e275200721c7944a7474f4fc4b30be81887", + ".git/objects/1d/ee44b47f4a0b61e1e4ad6384dadf2a8952fc42", + ".git/objects/1d/f0c2265267b11c31fff6d98961231c2d315bc7", + ".git/objects/1e/0230d737f7fb2f8e3ba69c81364a37a4ae1c2e", + ".git/objects/1e/0be7d63bef3784a9733978e90487ed95e95bd1", + ".git/objects/1e/126c14dfa0f575d2a96848e56fcac8e5903bea", + ".git/objects/1e/16baf9bd178777be16f5b33458a1b8a46d0987", + ".git/objects/1e/1dbc09ceeebe9d34116a5a8d93d3f13205396b", + ".git/objects/1e/27f6680733c000b57fcd4be29b01526e467c5a", + ".git/objects/1e/2d63a78cfb344f9a971009b40c9bf6d870f75b", + ".git/objects/1e/365387eb941439c796bff4bc676816c49df50c", + ".git/objects/1e/48783136705abf798104fef7d970727eea2ece", + ".git/objects/1e/4f237163c261d0379b572d3af4ada425fc0226", + ".git/objects/1e/5a77a85d4f13d98dbfbce2cb327769676b559b", + ".git/objects/1e/6c9299fc532e37a73b1787fa2df9aaf20cf2a0", + ".git/objects/1e/6cf568504ab04f46b723d8dfeb3740b4b8ef83", + ".git/objects/1e/95b9ce765de8dd9b7da4e35254522b65c1e523", + ".git/objects/1e/9943473b3d81e479a71fc57587559f65746343", + ".git/objects/1e/a6e6e69a1b803d4f8c3f6548d49503f35a3223", + ".git/objects/1e/b1a68d261045c447de2c7bc87724cfd3b9d9f3", + ".git/objects/1e/b8eec278bcce71515bfcef45c28998519dcbf4", + ".git/objects/1e/bf92e71b51c529d9179154151c831c3f8e952a", + ".git/objects/1e/e7a63d8a09e29e11b698ae470ff622727ff804", + ".git/objects/1e/f9d931ba1960b9a87719428c2bac8b2f993cdf", + ".git/objects/1e/fb6bb2d1bb15c6f60afe4821aabf35cf01b5f7", + ".git/objects/1f/0205f68603e1d135cc8738571e63d7b0c9555d", + ".git/objects/1f/36c47306ec31f9a65d91ae73416713ae59fb80", + ".git/objects/1f/5111905db8f486a041fc41f87503c3e91f9c1a", + ".git/objects/1f/681bbedbc91923fc8b6345904cbfa4730290e3", + ".git/objects/1f/6a46c1b559439ce7c2e1b602de108ebff95a29", + ".git/objects/1f/701985fc8bdbc3b159c1b95f9d56f31832d978", + ".git/objects/1f/87866eaa888ae3a2b85a31e4e7feeaae4cc8c2", + ".git/objects/1f/8a145cc766b6b6d8b0e9a0c55d023fb27becad", + ".git/objects/1f/8a8708b14f0950b80f030a9461fc73c0f66360", + ".git/objects/1f/8f6b866e62f3177b2e4f53fa6c3d3a0e27d05e", + ".git/objects/1f/dc4f466d2e26bcf57376a4ab198d38d28f72b3", + ".git/objects/1f/f301e0ea6479d87d184bd1a2d5618e8a858bb2", + ".git/objects/1f/f733fefd6051e865ef7aac5f2f57e65b5d8580", + ".git/objects/1f/ff43e4bfe0fa6267480f40c9eabd691215ac59", + ".git/objects/20/00d20fd2aecbab24707241610b0a69a8d7540e", + ".git/objects/20/074b237a8de655d7bd3990b221689f4423ad30", + ".git/objects/20/0930fd9deae585d7308deb17e3a5774d1d949f", + ".git/objects/20/12c58c8efea2f76543f4056329fe0fcf10e127", + ".git/objects/20/16e2d5aa9d0977e1327ad40ed109e032c506a7", + ".git/objects/20/197d158fa7a55634b6f62eb37715e8703888a5", + ".git/objects/20/2d478ce4d617b58d0939dab66e447e6f96e660", + ".git/objects/20/2fe0938e20ea45e18d6db314a7d2be4ac567a3", + ".git/objects/20/4db031454a859a93d92c0190b18d53bbfa5f99", + ".git/objects/20/5ac1724423d31d01da7b75248f30d5aefbb2f9", + ".git/objects/20/6fd1fcf76c8901cf7ea39d5e2947aa7326bff1", + ".git/objects/20/72f84250deecb48d6ae8a1814d8faf5161ed1a", + ".git/objects/20/77354c23762228b4917e2733759041a60284ab", + ".git/objects/20/7fd43a814502079f643da395977513b4a08bb8", + ".git/objects/20/81d0c5d05fd50db6fc9ee2b11e250816623a1e", + ".git/objects/20/8de26e745f1a6b70bc8aff33dfb15e7b06adab", + ".git/objects/20/95ef480f16aead68770c85eb3b42009806777b", + ".git/objects/20/95f6d40dae7caf760c57af05766b3026c28034", + ".git/objects/20/9bc56f3edc9a613778488dfe969c4b92e15522", + ".git/objects/20/aef09a481faac39711b6a6f31975dcedeb4bd4", + ".git/objects/20/b2ce0998797cb99c8f9717632806ef96a18a1b", + ".git/objects/20/cdcb2bdf9ac1f0461ca18b5e01c0a1240969e2", + ".git/objects/20/d719c77d7bf8063da3472f1d252a80208b540f", + ".git/objects/20/dc5e1b1b615a1c6af131f401ac3d687f4b1f55", + ".git/objects/20/de363097afc752b3ea2592ecced2579e309f30", + ".git/objects/20/e91f8065d9107b4c720130d28837283944d758", + ".git/objects/20/eb6d0ab7757e797d8c7116e68a8005be2a1aa7", + ".git/objects/20/ec1ca06e95b08562d7336701666038da63746d", + ".git/objects/20/fc9b296a68b070c26e252ce835fdfb10a258d2", + ".git/objects/21/09839f643a3070be9fbea594fa5730be27e164", + ".git/objects/21/0ac48e599c2946cab029eacbe3615d5ff082c5", + ".git/objects/21/127da3dcec5602caab87e78e0baf13807db483", + ".git/objects/21/13b63d0adec2b83dc0f9eddf3e75053027bd33", + ".git/objects/21/17c581187f7df6be653c2e47edc657a16ed70a", + ".git/objects/21/1831bcb27b45dd58a8ac204e2990be16abd85f", + ".git/objects/21/1be13a72b0424448c102324d9f0cd1fc7da026", + ".git/objects/21/2b1488dbb4aca770a050f45ae2b9cd211491c1", + ".git/objects/21/2bd18e7dc016b0a6d128ed73789c9ccb2d152e", + ".git/objects/21/34ef04dfe59640ca804b97070d92ed26fa644c", + ".git/objects/21/4a61b1b357ee85c1f8015087f7300bfa99d9b3", + ".git/objects/21/4e550125fda860d4963845a6f6ed0643a94098", + ".git/objects/21/5be9f4dcaf384dbc100c6ef64ea45d2d3365bb", + ".git/objects/21/5dfefdba986e5ca184fd2a5b1bb779e3471fde", + ".git/objects/21/6547478a44955c0fc34ab469ad96616eaab855", + ".git/objects/21/65e286c49adff98529adc59dc07a6fa196c6aa", + ".git/objects/21/816d129bf7a34187382483af2e64a43b8546c3", + ".git/objects/21/859dfe030f31c66ed8bc303c175a363fcc7554", + ".git/objects/21/a038218e698c34b132368c95a1a6034643b58e", + ".git/objects/21/af6673533ad165968aefe1dca2b60ad925de54", + ".git/objects/21/b306fc70bd56f4366f7d6c2c3b02340d5ad874", + ".git/objects/21/b972a13735993fe16c8dbbdef6f9176e10fc58", + ".git/objects/21/c051c25fb7d34200adc8063d929b2667e20290", + ".git/objects/21/c322e78c624ddc92d4008ebdf03ede280170fe", + ".git/objects/21/c9eb639c3738404edf86f6aa8355b2832674d2", + ".git/objects/21/ca4b85e51c1152cb98beda4abb16cab0357800", + ".git/objects/21/fa680b7286f3fc4688b7fa8a60a4afa88518b7", + ".git/objects/21/fb7088f72224fb9b0e3e6c45f9b454038efa66", + ".git/objects/21/fcdb779676fc61d9d8e2d6eb8e0df3d282e705", + ".git/objects/22/13a9a4cb3bf55fdf5939a2cc5d86ffbe536eb1", + ".git/objects/22/178f3750afd5d0bc20e605801b9315dcc387e8", + ".git/objects/22/18bf97ebd19f8973d41d3ce248d7ccb8d96f53", + ".git/objects/22/2f92c4fe1cce9142a4a4693c3fe3e73ea626f9", + ".git/objects/22/4609bb92ef83ea150de5d7ba24b43c5220b2fc", + ".git/objects/22/4df383ea9315406f6e2165972abf8e1298b83a", + ".git/objects/22/58ea82d359007e5193726fc3ab363a557c0e4d", + ".git/objects/22/59c2811e088a0779b5a8e940402be3a5274d59", + ".git/objects/22/5b6c8f17f99b433b03daad51ac23ee8e3b1d99", + ".git/objects/22/68601052db878bd95490f9eac6f2b3ec8cfb87", + ".git/objects/22/9413edf0f8239957cd092dad30135f36bf109f", + ".git/objects/22/a9ba60cb3e98e1f071e28c10a84a9002e167be", + ".git/objects/22/bba7c00e190ddda7d093940af593ff8a24a00a", + ".git/objects/22/bef1778edcb0bafa18926eb7b6adf6cfcc72ae", + ".git/objects/22/c03728b032c72b6546051a35a51fa9a28cad26", + ".git/objects/22/c22b97d7941928f7b6fa1b7f22242e60c52e05", + ".git/objects/22/c33a5dc62bc4c8dc4ca1676b17f324abfc51f0", + ".git/objects/22/cb686129e78fb714d8aa9f804d9fbd7f9bb126", + ".git/objects/22/dbf5bbdafe47866f93dcd3f4acb3998fe4ceb1", + ".git/objects/23/058cdefe5beb5fe945eab596442dc641f12f53", + ".git/objects/23/06a02073c4649f4ed53351b0e7e8a9348df827", + ".git/objects/23/0995a1200c5d8c86ef7a2190909495f4c23a80", + ".git/objects/23/168109a2484c25a0d7eabb42782a536b81eedb", + ".git/objects/23/1e8600668f655596fe79fe34d7b3a59fd839c0", + ".git/objects/23/1f3d16dc60dcc4d734b187de2148d9162f9b39", + ".git/objects/23/24d14e905850a4a52fe2920871edbc2233e2c4", + ".git/objects/23/2504c8de01c594a5d83e11da1a0f048174fbc7", + ".git/objects/23/2d9501ebb9c0a45dbaf880548ea41fc19db7c8", + ".git/objects/23/3641307f44d6f18b80760b91a66cd42b085c0b", + ".git/objects/23/62dd2c59565f8a0f0a0d3bdfeac71572b72150", + ".git/objects/23/6d5788e00d0894475a7d76f0a3cdb09f64b87a", + ".git/objects/23/88bbd34fde24b28331546644bb73416b2e975e", + ".git/objects/23/8a83d001de70095606ba9e93ac89fdf5fbf85c", + ".git/objects/23/948c071f5a1e4fac0206c53e5d01a0bc481d5b", + ".git/objects/23/a56421b272ebd10b4e17b21378a99379412418", + ".git/objects/23/ba150cbcb039d656724fbb235d54aa71280386", + ".git/objects/23/c54390110d6a160293b2fb97126464447dc771", + ".git/objects/23/c661580e9eb7eff9e4020b5d159e5f37a2d7d2", + ".git/objects/23/cc21f7c908fb6255165d1b26db4d292c2078ff", + ".git/objects/23/d53ffc0fab071a4e898f473f38cc6b3469f6b8", + ".git/objects/23/dd3ad145d8e5e1f732d4dadde4676dc725af15", + ".git/objects/23/deec5e6535fc718a7171a00e0defc824df88eb", + ".git/objects/23/f486c06f4a483a0c3bb3ae6e3f6782ab506ece", + ".git/objects/24/0eb780e15fc7af89794a1e24c014eb14aead56", + ".git/objects/24/1137070581f9c84b01dd71ae2a0347882f4b95", + ".git/objects/24/2e2803b40936b0e3a1d0477023e8c1e272ad97", + ".git/objects/24/361fd0f80f5a6831af054126f1e5fd81e3e0f3", + ".git/objects/24/39b3efdef2d7eed0f6246c86a10caba4968811", + ".git/objects/24/433e3cb654417c90a6bb82b2c86b2701cc77eb", + ".git/objects/24/461cd02504e030528adf63a0aa71cceafa5371", + ".git/objects/24/4bd85ed7a00ef596ea677edbbfa65f8e4fdf51", + ".git/objects/24/73992be123977ffccc3e00b9303a1c74fbb354", + ".git/objects/24/74ade10ff4a64b8a5a6adb4cc1e5bef963a05c", + ".git/objects/24/77476e8ccf7e606dfc6a1d278dd949f11a6722", + ".git/objects/24/7cefaabdceddcf33c2939acbcfa7a53470db5e", + ".git/objects/24/7f7ccede5be5b348c77530ab2bfa0e3eb6809d", + ".git/objects/24/8e5790a0b5229b9447594e34179cd6dca449ee", + ".git/objects/24/baaab6df49044bc068d008c194b872648c18a4", + ".git/objects/24/ce1a146f335ef547a2dbb2ce7f87631d7ce9b7", + ".git/objects/24/d61fecf5d95bae43acf6922bd2155340efe6a4", + ".git/objects/24/d72f82fbbf6cb415409cb103558c55d4fb71fb", + ".git/objects/24/f1432d6aaaef8800be79bd70488f9368bdd4fc", + ".git/objects/24/fdd933b4b0df064625822bab8e889bcb2e12de", + ".git/objects/25/101c2c43a57cf3d003b7db83b6a00c4e8a4c5c", + ".git/objects/25/11a291ed021239a3cf5ac5941fb8fc33b8567d", + ".git/objects/25/146eba48a48c10b9349beac2768f9af7e5425e", + ".git/objects/25/189368034b6e2f46a67f61ec11d00ebf6cefbb", + ".git/objects/25/228e589f404ea9782a0baa692e3d38989fc911", + ".git/objects/25/265fdbca9d14fdc9eb30e6e3b578874d1ed30f", + ".git/objects/25/34ba12c99320b49c508932ca774882ba7281a6", + ".git/objects/25/3d41870088dcc24ff5b4b0c66ed5552d17afe5", + ".git/objects/25/47be07282ce149cc094d2918bf91b9ea05a10f", + ".git/objects/25/493e89e6e2d9bfdf398aa442866693ac3c2e16", + ".git/objects/25/5a017c5dd5079532be8349846c8292dcbf8aa5", + ".git/objects/25/6066b2095d4b14168316c2c0546e74e236c71c", + ".git/objects/25/60fd41c53220036e3969416aa3b0576e3f85a5", + ".git/objects/25/61f4ac7627de0319732d31e912c65a4572b543", + ".git/objects/25/72a4dafd6aeb1aeb1e30b66ecd665faad93143", + ".git/objects/25/a754324bced8f0ae7343ccc216ba619fab2a17", + ".git/objects/25/a9900609e6f9a2a153a7cce8b4a8e445752e6d", + ".git/objects/25/aedaf6e6a2a9bda45b850166f5a83411269fe1", + ".git/objects/25/b5024440439c5d76ffd413d0c04e08e3dbf06a", + ".git/objects/25/b773c4188e47c70fd6e33335a51485c38772f7", + ".git/objects/25/bae6dfa5320600c449fb6a7ec778e09623085f", + ".git/objects/25/e0f9c6aec109c80e24d91c39abb24b6b927981", + ".git/objects/25/e197bfcea907fc6b326e46ab348e7447382d8a", + ".git/objects/25/eaed9ac5edd1cf1464607a9e7111900d62abc6", + ".git/objects/25/efae553801a37331470afad8bef45a8f10c802", + ".git/objects/25/f972daa19c671d176a3768912e4513ddecc2e8", + ".git/objects/26/0d287b9b2795eb49adf9079f318ed69c765e5a", + ".git/objects/26/10c98ab87466918dcf903650ae3d7baa91ae2b", + ".git/objects/26/1ed1ed1d11bbe59fa0a632c6a85c0c08e6fcc3", + ".git/objects/26/4315aea8a9f3d9ca403347465e70c77689f061", + ".git/objects/26/46802bcb15ed68bec19f55ffbe687dadf8431e", + ".git/objects/26/4ac064dca07be6d8bbf927d0923eb538ee9541", + ".git/objects/26/5b04e2d044828674d3e0c729310180e0ddb823", + ".git/objects/26/5bfa499c8101f05b72b80f868ac55435a7c535", + ".git/objects/26/5ffba6b270507e5dd1efab84d4415a8b3215b3", + ".git/objects/26/623358f168ead8283f3949a7e6a35f6c60477c", + ".git/objects/26/65f9501012a0828221d62b4ac727170c407b09", + ".git/objects/26/688f22c661ffa71f904746d9f7f0d501173e59", + ".git/objects/26/6895e955209fe995b293c866ec13fb33282b08", + ".git/objects/26/70566d20e026473392d3616152210e83c8cc00", + ".git/objects/26/972ffbe610c91a9bed543d889be698a9e16208", + ".git/objects/26/9a02250b76f1042e5d3a2d87ff63f1c8d061f5", + ".git/objects/26/9e3789b8bd6164d80362a00c980639f74db05c", + ".git/objects/26/adecb7d8cbb148b5f85fb638cd8b090e1d3dce", + ".git/objects/26/b31342d71cc0a5b98c6b5106486c110259fcd4", + ".git/objects/26/b418ce742ce4c243e4f1cc6d8d02d5a4c75a0c", + ".git/objects/26/c39a0d16d8fddc82a18024391063a0237730b9", + ".git/objects/26/c40df9c4b2829d1bd89bd3c6c25c2a6f13235b", + ".git/objects/26/d63a7c73586395aeb42b358a6a41759beee13a", + ".git/objects/26/dafd84b62af0039313d4bafb7e5e4d6444ac8a", + ".git/objects/26/f8fb069877fcabf2f396d5e6325c83560887c9", + ".git/objects/26/fd488d7db6a8e43abe84715a674f61b67e1c2e", + ".git/objects/27/0563891f84b8d5d239fbd61b8376588d5f53be", + ".git/objects/27/1bd75d353dff1c3fc6c2beeaae866cd111afdb", + ".git/objects/27/272607e7b37f3b08df3d65ebacfe4040eabab3", + ".git/objects/27/357a3ac9957131b01199ca2274850810b76659", + ".git/objects/27/362678737b70aec9a1c5d6a44fa50f74750ca2", + ".git/objects/27/3762534dd8cf5ec3eef5b910ff77b31cc36aa4", + ".git/objects/27/3b097f3431e8f743ff31b567828eb1956d8eb4", + ".git/objects/27/425d045600bf2f18226b8d2a59bd71e61fdc77", + ".git/objects/27/451e7c5571eda0ed9394571fc1b7b4830caaba", + ".git/objects/27/597267e7c66f102f5b2b029880ac79e307a6ae", + ".git/objects/27/5c9b082e6ff31b3e64980f29250d94b4330a5f", + ".git/objects/27/5d32c194c9b32ff08166bb4e1be2ddb340d11c", + ".git/objects/27/5e8b1611677aa253d986947b36930719d624ec", + ".git/objects/27/62eb192cb92d71eebfb1631af420a30556e402", + ".git/objects/27/6471a11b2c1a503ed5dbccd01d62877b1263ae", + ".git/objects/27/7399d239e743e0332932d6376308a43c207fd4", + ".git/objects/27/7cb15a08b41cf214975637d98611875a547f1e", + ".git/objects/27/86398889f1ccefe908c9cff1ee67f37f665faf", + ".git/objects/27/8a06118bde490f43de49f13ef53427892da29e", + ".git/objects/27/8a2e1ce965976352081d6e5cbf07a76ca6fcc2", + ".git/objects/27/8c89528e521dc76d0d7db9b040e531b2991b7b", + ".git/objects/27/a947fe335e956f3bbd1af0315cbff84287a330", + ".git/objects/27/ae2268de38ebaac2c2dfedb13355b7bd85c3e0", + ".git/objects/27/b043af0e9a644fb9f1c88fb3c0494b832f15f8", + ".git/objects/27/c7a51b4481d9cb2994e36371d7c3f8943ec970", + ".git/objects/27/db1a55ced4855e7fe3c3df2964870b41fe2ae5", + ".git/objects/27/dd3260435412ad5b4dfe60820a57233a002a59", + ".git/objects/27/f1c9e49571d1e26567ae556f164d73ed7947c5", + ".git/objects/28/04b30af7fe3ba5e45f8e9275b6099267435f31", + ".git/objects/28/21e991c28c044008cb89312ca92a149355d504", + ".git/objects/28/251f4a11274337e0811740e0dadf26b88b75a4", + ".git/objects/28/27c565b7463a208bcd7cb3a23556e80af0d0f1", + ".git/objects/28/2e8c0d8b21792f15f059bb4a7fcd76b962ea6a", + ".git/objects/28/32317d35384dac4e66ab476faf25a46e0dfcf4", + ".git/objects/28/34e4ab752d67ebd345b372eef03999afe935b7", + ".git/objects/28/429f4f68a7f2ee406d4f459250e71f6974bda5", + ".git/objects/28/4e9befa17ce21306176163d80284381e3eda8c", + ".git/objects/28/54c6bcad05a9ec5790c246b5118574ac6a837d", + ".git/objects/28/5e80995deb04e054cb70b5b10a816784a62935", + ".git/objects/28/64335b02d2b06c80a6be194624d729f1b9df0f", + ".git/objects/28/6687b697f26d5d1c007eb051d9746bd0b0bb62", + ".git/objects/28/78ab833fa7a69acd60446fd5557248a3c674df", + ".git/objects/28/7ee9a3c4f95630f4fbe277d12ee90225d5484d", + ".git/objects/28/99b9d5c866449884a12fb3d07a188df14cb47e", + ".git/objects/28/a09adfd3e8140f993bf07f64e3cf11c8c086fc", + ".git/objects/28/a2a4e3156889d6e769d356a30089c89fe7481b", + ".git/objects/28/b22fe87a29d71c64e978080f5e0142d34d4dcd", + ".git/objects/28/be0c9d7c66d28496d0399ef71d6ce17ed6afe8", + ".git/objects/28/cd352524d9e74b864f239ea2df6850357aa02a", + ".git/objects/28/e98ca49ff11713d6624a84e3499af0d95907ab", + ".git/objects/28/eb20b252472ddd5e925effe2a981adb118b720", + ".git/objects/28/fc6066a6fff15479024a09d7a164a48269c42a", + ".git/objects/29/11c42b00b85f638149e5d4b364c9cf2bdd3715", + ".git/objects/29/1742fd72ce43aa9756724246ddb4188d00eb1c", + ".git/objects/29/1984c5df68259b1b0cb2e2928fef4dfd1d8b63", + ".git/objects/29/20109e0a73af9f8d4abddc20c59dd4f44e5eaa", + ".git/objects/29/20e75d942d6fd812ceff7c4d02f7e83ef78de0", + ".git/objects/29/27d2912f9a465549ab6e8f7c795787af5fc0a9", + ".git/objects/29/294a222dd301a5c1e09f5fce5430adfc495ed5", + ".git/objects/29/364e57660e23774099b5cee0bd21434dffb198", + ".git/objects/29/3cf982c0dacc9ffd32839eefe9dbf387ea9334", + ".git/objects/29/3d152f9d8b30222392b677a927ae99157de888", + ".git/objects/29/5244276f82f6730467686f310bace7ffb5c8f3", + ".git/objects/29/82f0f9fbc21a85c2982e03a3118915fe9cd086", + ".git/objects/29/8b901f0aad508827dbe105689ef09e6afcaa4f", + ".git/objects/29/9556c7ab581f2c9d8bce927b502c5ce2b28bb7", + ".git/objects/29/988651069785a9ff8c964dc0f49c590dd33fdb", + ".git/objects/29/a72ffc8b92d473eefcab585a1d6fad21944b67", + ".git/objects/29/b05ad45d9f215a317d0680a697d1dea987c458", + ".git/objects/29/b07580b89f5a01be270f1c4d8ed336ed64105e", + ".git/objects/29/b5b6e81f77378b3de8ff7fa4e1d76462b2a5ee", + ".git/objects/29/bc388931089ba095621d785d122175c67fbd4d", + ".git/objects/29/c412a6fc4268cbbd4f8ec9b312fa0a9a987742", + ".git/objects/29/c96a216dea759fe6a80bee05c4799520bfe618", + ".git/objects/29/d6b9bfa03bfb41b693cab0ddf6eec3b7e092b8", + ".git/objects/29/e57ac2473730368e97b35f99a6840a8abd2208", + ".git/objects/29/e85572d0d118b089072c76e16d8a2c8b9ae24d", + ".git/objects/29/f7feb53eb2e462e672e7960f99e55a6276df31", + ".git/objects/29/ffb68e8b44946eaab4b5ce90c1faf1f73e2b40", + ".git/objects/2a/0c75a01d36298b314f4edce817ac94da823a41", + ".git/objects/2a/0d034f29bc93a8c5f045a3456ba49a7a23a6f8", + ".git/objects/2a/1d35205e65765448b60952cef172f7fc9fd185", + ".git/objects/2a/1dedcc70e1b7b46de8107f0be830fc199d6a24", + ".git/objects/2a/209aa89c543a030c29424d40019825814920b7", + ".git/objects/2a/32b2f59ef616b34b5c4c128c86bd26f7b8dfc4", + ".git/objects/2a/33d199ff4dcaf189ac2cab081af7ced4fefcc7", + ".git/objects/2a/430746a4d2fb9ed2ae551a53a6fb6f0408888b", + ".git/objects/2a/554dcbd81510bf5ed6440fb967fea723231bc0", + ".git/objects/2a/560a4046f07017868566abda4581d7e8ee80e2", + ".git/objects/2a/614061ce774003181aa17f2fe922a7dc1a8df9", + ".git/objects/2a/7858b16d9dbf17e52102fe6d9c89c579071103", + ".git/objects/2a/86f2bab881f3c0018e214d23c1ad47bf102445", + ".git/objects/2a/8f83883a58904943be9f925b13b7d2133e2983", + ".git/objects/2a/93e11f90dd59b38108e70fa521bb8994631515", + ".git/objects/2a/9e8337d48207237442453f55c7b649e901446a", + ".git/objects/2a/a442dedfb84b44b841ded16897e0938e465326", + ".git/objects/2a/aa39177a2f061307d3fb536738bb6e382a252b", + ".git/objects/2a/abee75498c0c8f20d3dfa7f3205b8ac47f7fce", + ".git/objects/2a/ac8de135bdb643f276493aaac4d7cdb5f4469c", + ".git/objects/2a/b39f3769dce284fe507864beb8539c7b90ffb4", + ".git/objects/2a/d0eb543929d8772d656745e8539dbde8de1e1f", + ".git/objects/2a/d28ab1306fb581adef74ca82d6e6cd4e51e870", + ".git/objects/2a/d298a959b094f7ade4b9717916d74da0d84484", + ".git/objects/2a/d321655f1eca9894d011aafe42712999cad45d", + ".git/objects/2a/e3f9a76e35e10d67e4cec762ac9f1320c120aa", + ".git/objects/2a/e43b0f1e66f12f6535a28d817d7ef9c45c5191", + ".git/objects/2a/e6b4d50c03c0473e46a15581e8791e050c8f37", + ".git/objects/2a/ed1b53920cfffc454abb01351d41aab197942d", + ".git/objects/2a/fc195bea7082b1b444ddadb0c341fed178f807", + ".git/objects/2b/0005a8a823894c9a2d1f4f2990b5e3f29abd90", + ".git/objects/2b/1c0f7a9a8ab2b5796781939a8312355b18b73d", + ".git/objects/2b/354746fc2e8efd0bb8c3c92662e78552cad65b", + ".git/objects/2b/35c1c3f48ea6818cfb28e52003873481d44e2f", + ".git/objects/2b/43f8b8163357a3072b68eb8343081a168b6577", + ".git/objects/2b/4718217b533c007cb9c828cc1c40de63b03609", + ".git/objects/2b/535c7fbac6ed63257d33e58298c2e43492c0ea", + ".git/objects/2b/562b2850194d9dad53d64858207090291cb4cf", + ".git/objects/2b/699216539649afcfbfa9a9bae5890cc515478a", + ".git/objects/2b/6b19ee516b5828e648766b5f80308c6f33e096", + ".git/objects/2b/6bc18e2082a45c7e7a956008075b85854a3667", + ".git/objects/2b/7f41dc5e0444793c1c082ad8589b6863939aeb", + ".git/objects/2b/830e1c2eb1f3459a65994230c413df04464771", + ".git/objects/2b/83eecaeb747d52dd000667d8bf142b61908a7c", + ".git/objects/2b/87cc2ce56021fd1c18f08a10c4c87545bc8824", + ".git/objects/2b/a131c53f6ee08a6acef630b30992b634ee4d2a", + ".git/objects/2b/a135af32aaf197f8bba902cc478a562b50c579", + ".git/objects/2b/a4056be7f3fdff6f269940f30d1ddf0f9ad794", + ".git/objects/2b/af4b9cb676552076262018002660e41446c4d2", + ".git/objects/2b/b5921fdace1e557390242a8282bd93fc042a73", + ".git/objects/2b/b667bd822c592a372ed7d03baea21b19194f74", + ".git/objects/2b/b81607c4a4de1c3bf7c052740b56d20498fea5", + ".git/objects/2b/bc2bf49efafc46d76e45f8863e06ba9d3baa42", + ".git/objects/2b/bc4453539f54fd68573adc57859fc508181633", + ".git/objects/2b/bf47d5d82010f9ade303738ddc2109372977d4", + ".git/objects/2b/c0a98e7117400f3d331f2d4b320d877f4e5748", + ".git/objects/2b/c25ae3785f759fe2f2e965f1ed31c34d006a5b", + ".git/objects/2b/c420642f7b848a4a61af041bfefd37c59be2d9", + ".git/objects/2b/c6d192ef45210f9622c3f3afaa77627ba2e0fc", + ".git/objects/2b/ca6914bcea67474317348758d8f06dbbf02516", + ".git/objects/2b/d5f071c1c4df074b44cd45419397d5d74c5505", + ".git/objects/2b/d9921fa2d57963bb981b080bffc5a07a9b6263", + ".git/objects/2b/e6308e4198e01ed5386466cf080a32f4231553", + ".git/objects/2b/f4d792f46e9385e54093f1b32461b2b6f53b79", + ".git/objects/2b/f7f259d18f3a6f83411d44669ad1fab9bd90a2", + ".git/objects/2c/0a01d2461f591b34de6a595d6f209909680a32", + ".git/objects/2c/0a38fbfb41be4b4aeed431990e13ad34ecca52", + ".git/objects/2c/10ed7941e63179b76d15e311c20a4588647720", + ".git/objects/2c/1d668db4ef6e423796cfd03b270aca311bff2d", + ".git/objects/2c/29d4808cd5aede031e6fd08d23c45aa6c19c00", + ".git/objects/2c/2eaa9a0f1b8d7207b60e5cb747ae4bf85bcdde", + ".git/objects/2c/372c4980220db160b8754c054ecec79061834d", + ".git/objects/2c/4bc936c98a17ea6927fd5d3507cc669e91c559", + ".git/objects/2c/6b96a6d2cb53d51a19a5a3661a457e6d0a409f", + ".git/objects/2c/6febdc7b4fc063b4a2849f96e025fda57297fd", + ".git/objects/2c/70660fd9c980629d642420357253ebf3300952", + ".git/objects/2c/74a580412116d71a964367808c8ea2f57c57c3", + ".git/objects/2c/7adcb39c036154a2fbf17868b8c5cbb8874fbc", + ".git/objects/2c/7b9dc632eea249e5c831232dd4459e1196b0b5", + ".git/objects/2c/7fa1efd5bf71b86592f39d93c9d1607744781d", + ".git/objects/2c/83e173c4e2a15bd741df15165b496f27ffd0ea", + ".git/objects/2c/84fd1250bb6fcbdc46bc66c5a2af30a73f2283", + ".git/objects/2c/86a6dc37fd32b86aeb8e7338a13f944de6c8f7", + ".git/objects/2c/ab31cc6892275d411bb386d0fd9443d986fae0", + ".git/objects/2c/ae63fe6600e78aa96b51c0c67c06f68c4d4a1a", + ".git/objects/2c/bd7bfc0f60f7a11fafe116abe47b06aedcc3f7", + ".git/objects/2c/c018e9011b1f04ba10f909dd01fdff2fd3a8f4", + ".git/objects/2c/c7b37c830233027dd317a446144c3ad813c5c2", + ".git/objects/2c/d30b26d54db369bb2036f0670eb4f52e9ad875", + ".git/objects/2c/dc45821d29d05a97718c7d4de73bcb34cbff49", + ".git/objects/2c/f546859964657337ca899b24d4d0fd19fbeda5", + ".git/objects/2c/f91accc93fc6cb7fb960a0830464eb5ac09499", + ".git/objects/2d/0029e03928a62080d80d68de6914f6ed0c5ce3", + ".git/objects/2d/0c783f52a0f5e1bbe367bec85059f760811e43", + ".git/objects/2d/1aa429037acfdb432458c0d75ef0c8e8dc81a4", + ".git/objects/2d/2e2838ca9c969fb733b2d762cd9e5c000722da", + ".git/objects/2d/3feae879335b893446be4ee2e3c52902547080", + ".git/objects/2d/4d6eb796298e0cb7e483a9dd1f56adca1a6dc3", + ".git/objects/2d/59c7e1d8e67432cc4eea38b581d39ccccc8711", + ".git/objects/2d/7cb5ff9962d61c7e6c696ae6c328af0ca7a495", + ".git/objects/2d/7d81aa8c8b32a16a4650e14d96c188c85f3b20", + ".git/objects/2d/7fceb4a2e360523e35c4dfb9c5b67418d04878", + ".git/objects/2d/86b65a7a2b227509603174b8f905e3098305a5", + ".git/objects/2d/ecc89d4a17d1aa84551f06907bb12378f48312", + ".git/objects/2e/03826ea7b50e5eee0b54cc818d48db934919e1", + ".git/objects/2e/08d6c6a216d14e987daeedb8b4e4532bce1a81", + ".git/objects/2e/0faa301fab59546ba757a97038b2d687dc0392", + ".git/objects/2e/14582125dc91e342171ec89fc7161cc554a85d", + ".git/objects/2e/161a9cc1141ffbfabf16c07ef1e16f6075d8b0", + ".git/objects/2e/1b58d5a6ac5d6e27c230309f080e07edd9a838", + ".git/objects/2e/1ea27286103142f70bc8b7e0e7c974c8e62c8f", + ".git/objects/2e/268a046ac63c3d6b33f98ba4adfc585aa3e127", + ".git/objects/2e/460ca418a0a85f2fe946df5f3abeb6e4e64bed", + ".git/objects/2e/50419fc20e2c04d6de16d0bfe592265ce6f357", + ".git/objects/2e/5c4f4ab6597f9d2e3e21a41f92addc01cd4a0a", + ".git/objects/2e/616dc4b3253b040c6e05456ca8064cf936b0b9", + ".git/objects/2e/72a15dcbaa831da25efdb0442b1338650b7571", + ".git/objects/2e/aa4cf509067b93b4ae13a73042cc157972468b", + ".git/objects/2e/ac21864c489ffb4a22cfa59020e4753ee799e1", + ".git/objects/2e/ac43375867d7dcafc6592f6a853b68977f301d", + ".git/objects/2e/b21c68542881bed0c218d25fb33078603e8947", + ".git/objects/2e/b502caded77d43996ceed94594cb7a3eef2039", + ".git/objects/2e/da0f226143f8dd7551b3cfc9568a847e0012c6", + ".git/objects/2e/e03ed7572fc1cc665ee6d917d032d4f6330fc2", + ".git/objects/2e/f208e6ab3395155b6ee13dd92e03a4c4b43072", + ".git/objects/2f/06dc7963e4147f35844d3a1fada2169d83f972", + ".git/objects/2f/14667883cd92fba5139c0229a828e76484df5f", + ".git/objects/2f/2a414c5748702aafeccac7592f12a01f3432ec", + ".git/objects/2f/2d16abec5e5097666dd981453b2a4cee2ef33e", + ".git/objects/2f/30ac6e95e43349c8d4f0f5b6b7e18df3a9e5f5", + ".git/objects/2f/4b3979c883ab06789cd92f6d37a2074d8b51bb", + ".git/objects/2f/4f999bdf277a695e0d4a3adf63eab3e918dc3b", + ".git/objects/2f/5473faaf700d6aa7c9d721aefffc117069b260", + ".git/objects/2f/5dd7a3a9abe77180a72c99a770b5f79aa13df0", + ".git/objects/2f/692525051d49c92d2548e1339365611e8b77af", + ".git/objects/2f/6957816a8c733d354203ddd522d8b07a335b60", + ".git/objects/2f/78895ef1939102e414f68974466e7252035964", + ".git/objects/2f/926a91270e3324097de59562ad9e447328a430", + ".git/objects/2f/928a200b2c5bfe8be5e223d9d9a72062acc4af", + ".git/objects/2f/99aecafda69491316f6c07735900ec420aa2af", + ".git/objects/2f/9a4f848739b45e16ee3aad3141800dafb0fcb1", + ".git/objects/2f/a63f02ef12c44c58df31aa81deabc67cc3ed57", + ".git/objects/2f/a8988660ed2ec1e34ae0aa43653d402c3dc5f2", + ".git/objects/2f/bd464413a887df5e348afbb830480263be9520", + ".git/objects/2f/ca62a6d7a32be3600d438f17bbffee7cb1f1ce", + ".git/objects/2f/f98c8348cc2b36fef97fa3158bd6ec581643c1", + ".git/objects/30/14b3019bf08c8fff76243c0079fc3169324929", + ".git/objects/30/1a7c1d72d713d017890fd96e67884e4c0903f7", + ".git/objects/30/1f5ab596312585991593169f739ca9bd2428f5", + ".git/objects/30/235bbaea45c08fa503637e2b5ed2aaeb081cdf", + ".git/objects/30/236bc27dcadf3af7db8f7c8cf486b52b1fd7d0", + ".git/objects/30/25c3aeb4891fb815d792cd94660cd002d9b1e2", + ".git/objects/30/3ecd1529ceaa5b7d5792202eed7723bdfe3d3b", + ".git/objects/30/4116b5a8140c16f0294964e8841f1cc1ce86af", + ".git/objects/30/4afe335e92f883952fdca3c2a35e15d10b5482", + ".git/objects/30/4f464cbf9dbc2306639b4d92baf3caa4dfcfde", + ".git/objects/30/738c9755d9b5c05a5c2038f1daf5c1ffff61ab", + ".git/objects/30/7a5f95d32cabff5e5d2ea9072cc64bb2f9bc5c", + ".git/objects/30/8cf9316f1ea6a2a88c0f179f66af902ba1db5f", + ".git/objects/30/8ff885e3271dfff9d650dda3f3c4c8730987fa", + ".git/objects/30/c5a20edfa0acda89edd0bc24fc6530e84def75", + ".git/objects/30/d9a6ef30617c46f5364fe8ea35a18f6c5b943e", + ".git/objects/30/f33f5f1a835a6690f567cc4d837599cd11e216", + ".git/objects/31/03d8a28e6289e6494b3509df7408e08033aa78", + ".git/objects/31/0a018afee47f759e95077eaf70e07aa61ccaa6", + ".git/objects/31/0e3f902ba307f626f4874d56a8e0ac2b6d1d7b", + ".git/objects/31/18c456be06574b5e4745e5d169d08111f95d2f", + ".git/objects/31/1a8a224d0293ae784901ecbc57f772f96fac44", + ".git/objects/31/2137c2a2df31c66ec4e1cc1e6d64e2496a33d4", + ".git/objects/31/2dca1eac394bdde2a73a9e685b83f8497a84f1", + ".git/objects/31/6145a17b9efeac917152726331244c183f9828", + ".git/objects/31/7aede73ae23fb94e0ca7254ba4b6ea81e8a00d", + ".git/objects/31/8405ffdf613b586f788db7fe5ac794c607e4cb", + ".git/objects/31/967526ace70aef1fc00fa317ec749fabfe9481", + ".git/objects/31/970a9a903f65308c6bd576ecf93365bca409f6", + ".git/objects/31/a3f6aae188779fef617ca020b207ce7e7ded6f", + ".git/objects/31/a8f5ccf2c9c067152d7d534688b850167a24eb", + ".git/objects/31/beeaab4286afc19a76e94e6c3bc1200e274a10", + ".git/objects/31/c9f686006354ea22057693b5549aacaa8188ae", + ".git/objects/31/d6b259f9b7c301a46356711a5b0c39a841392f", + ".git/objects/31/e5596b1c5912fb631ea5c52e29d1bf6a45c7af", + ".git/objects/32/014a5d77615a26e15b31fabe574f282b2bac17", + ".git/objects/32/030c101a82afaa6b256152ecd8d10bae9749ba", + ".git/objects/32/1c7f6cc798dc650f397924f1a09a1e9312eac5", + ".git/objects/32/22e44afcc7e5e0e181d1b127dfedcb4f295ef9", + ".git/objects/32/29ebe1c94240e048f6292e73841a1f344de8f9", + ".git/objects/32/2c45b158e8e1c6cbf4ecd3030c79a382bfc9ed", + ".git/objects/32/304efbca8dec1150902a34c37ba08d2353d291", + ".git/objects/32/42e72e7be83a399f653cc0e3d80c085dd554cc", + ".git/objects/32/485305575adc9db97cd430f163486d7bd8906d", + ".git/objects/32/511bf1bfd27758b0355c9bf266e706084ec97d", + ".git/objects/32/51a0e07422fa475ff5b6d76663dc3c00fe7d4b", + ".git/objects/32/6284896e048189b3946468baf99e48bbeea925", + ".git/objects/32/6b903d1ed7d92e91f52323583d7c897b87bf92", + ".git/objects/32/7b89dd5f0b353e5e95f9af3c37688e272792be", + ".git/objects/32/7f18cbbed2963d493af16265beb249bbc1e9c9", + ".git/objects/32/8941aa544fdcc34f8bee46b37b10d5a925bad4", + ".git/objects/32/94a667a948d505f778fd572df5f75ec6a161b1", + ".git/objects/32/9e3378510911d2c55c2ca09eab56e6d1697c98", + ".git/objects/32/9f940b3843ba589c9548b50ccc5b97d9b29171", + ".git/objects/32/b2f735c414e6f118f819f876c07ae717ab0d05", + ".git/objects/32/bb67fd8e2c1298df9f025a953366b735037a54", + ".git/objects/32/c336ef4b029edac14fc3f505b9b51262b98eea", + ".git/objects/32/cd8555b17f09e4f29f2d686dad520829da4bdb", + ".git/objects/32/d48707a41623279d47d287e0e7e1b0f7ba55fa", + ".git/objects/32/dee7f66e49e448b845fe30aea67f83765c8e2c", + ".git/objects/32/e036f0c066898bbd872ec4d3e12b9dcd29121a", + ".git/objects/32/ef9b90131f89ac5d56eecb020958ca6ce10f6c", + ".git/objects/32/f00b3f907a541a1aa81af7216aac4ec188a974", + ".git/objects/32/f08557e3b31df01dd1c3413cd26a064c010513", + ".git/objects/32/f553eb00f7e278f1c6250ef7bcd98f917dfe8f", + ".git/objects/32/fcdf73b94ce8b3d82563b358bb89a4a75998f6", + ".git/objects/32/fe25a871cb7ba6953c61f496bfdd3979f84b31", + ".git/objects/33/05363a96b0f387d49d1d50879e06e3863128ab", + ".git/objects/33/0b7c22feb9ca82a64aeb873ca65b4aa8090085", + ".git/objects/33/14cbf802fff0fa8882220995ee968b263b0c37", + ".git/objects/33/273d762f46c5ca3f1520cf9a85ee0459432cb8", + ".git/objects/33/278a2f36ad241bc82dff9c4b29919180d50215", + ".git/objects/33/2981f5806ec0872c603b5d40722fa612050ad4", + ".git/objects/33/2bafbe236c70381d24a7ec07d8139203bfe139", + ".git/objects/33/3786ee94f624c2f91a9d0f7ae567fc9c9dec76", + ".git/objects/33/3f0ab71267435ac61d408fac3da3d6ccb1c7d5", + ".git/objects/33/42254f5192bb95a74233f62c0026f3470c2182", + ".git/objects/33/5823ab7e7ad7d1c60697d9dc9e943ae58c38f2", + ".git/objects/33/63093adb632ebd6f6cb3a8f0ac4243f20e9067", + ".git/objects/33/6a97c2645b64477cd456534ffe957c5ac9a289", + ".git/objects/33/77d2c4517c8d14c5827286488f8b995fb74c69", + ".git/objects/33/7aa19285afa7f84b951a61c243245007261d6b", + ".git/objects/33/7db720b8480c41c5557e9a898ffeb428a016c6", + ".git/objects/33/8aad19e87be67b7ecd4d086d316e59a6898de1", + ".git/objects/33/8d0ad4bec9dd2bc56d32e355cb3918ec0af609", + ".git/objects/33/9b6253fc8d9e665f4c716919a319a8339f19ed", + ".git/objects/33/a6cb8b5402e48838560fc429eedc4e2aab7547", + ".git/objects/33/ad5b64d339f04a24d138d3820b2cfa9d58f683", + ".git/objects/33/b80489f48c8964107fd55a44e5cadff4c72c8c", + ".git/objects/33/b9eb3b477c0112fba07e9fd45764e7cd556820", + ".git/objects/33/bafe5c29f5c25a35f93eb126a989bceb7217ea", + ".git/objects/33/c6c80a8c50f7609badc8a2e89b2c3f6c099949", + ".git/objects/33/cf42f9779bfb291b27349e27b78bc6904c51bc", + ".git/objects/33/d2194d956bbe73027f0cec67355b049e3cd60c", + ".git/objects/33/dc37f36fc6b298ad24a8f9dd5c02c55285b3c3", + ".git/objects/33/e3f11eee008ec63ebfff5a37e53f76b1a67316", + ".git/objects/33/f0dacee53a92ec28112b128d6948777b2e70e6", + ".git/objects/34/1d128cb4541d5851740fd18e058ded51ad9c78", + ".git/objects/34/1eea49720b8fe4ef95869366e05b418a242652", + ".git/objects/34/21a306f2729d4dc43ecfadac82efc367df81c7", + ".git/objects/34/2ad645b35e59054af62b527b8f8e22bb3c0553", + ".git/objects/34/31f04d400387e3999ba60c124150bbdbccf830", + ".git/objects/34/386cfe053c9c709c8e90a919302d19c8acb1da", + ".git/objects/34/3d26c0d9cca06adf118e3363b341cc7cdecbb9", + ".git/objects/34/3d3974ac4a3b98419870126a194dd543208044", + ".git/objects/34/5db80147dd4580260bbbfcc2d4a8159d8fe908", + ".git/objects/34/76dec6dc1c912dc1d5098a329cf59fd8f443d7", + ".git/objects/34/7e20287a5e8b758f1798cc85bf9a5ebbf0213e", + ".git/objects/34/82affbe5785ff657640781fb83621a61f27a1a", + ".git/objects/34/8d14fce1c9763b27b09a0f0a342c2f046b019c", + ".git/objects/34/a01fff0b5138da6265eab075b3de9ad171878a", + ".git/objects/34/a4e77caf94f497ab9b4d168d074de5d7c0f248", + ".git/objects/34/af67ff18883b5721619384b4ed56bd1a4c684a", + ".git/objects/34/b48fb09c2f7ffe53db20b14f4de7b5bf1a869c", + ".git/objects/34/b5c3b4e7001f6c11e6cbc9f58d5a4a78a98fee", + ".git/objects/34/bd8a0815f0d4b083a3cdde593cf3b4211bee99", + ".git/objects/34/c0f6a33160a815a20436d91f60b7137e25161e", + ".git/objects/34/c2cc8d44b36e880382ca1397cfad0dcdb0e738", + ".git/objects/34/db9deae47b234350e96fd94607c92118b65654", + ".git/objects/34/ed9b607ad338ea1c2cfd73f04bb218d9eb1d2e", + ".git/objects/34/f15402c87f65aa926924e493d35aeaf26ba59f", + ".git/objects/34/f300a09c329bac2a2fc410878970deb60b7cd3", + ".git/objects/34/fc410303aea9dfdc046efcc4d1f80f66d30c51", + ".git/objects/34/fee5dc78bd8f874eeb9a6edb457eb6e2260ba7", + ".git/objects/35/042321c480359dd5e6ed803d4088f65161c276", + ".git/objects/35/2159d351066648a50ac7c9ba1cc311f2bb414b", + ".git/objects/35/2270daec450c3cc3422acbd9379a5491843d21", + ".git/objects/35/2923e4ef5600aff077ae7e8caeafe7c900c2b3", + ".git/objects/35/2978b65e19886116d1201e9978c4df1e29ebf6", + ".git/objects/35/310512bc772600239d1ffb59352d2f696d4264", + ".git/objects/35/3e31811fa743ad08fa672aa3e218679b81d375", + ".git/objects/35/52ca05e480aff3808015fbfdc522f7a848997c", + ".git/objects/35/6232e3416ef087b98d14ff8093889906e15dcb", + ".git/objects/35/7d090230c5b090749d26033a0ee525baba2521", + ".git/objects/35/870f2e5096ffe15fee7914137c6812cff48fff", + ".git/objects/35/a5833afdbfef4f43b00a809355f23b231dfa56", + ".git/objects/35/a7040650072a5d9cad9827e9623d61859a7424", + ".git/objects/35/b3733bc976c0a6bb2fccb327aec1136eb67eac", + ".git/objects/35/b5a298f6098837bec4e907aebbcf1e748bfbb5", + ".git/objects/35/b90c86940fa09d3784ef21e6fb3262bf3b7008", + ".git/objects/35/b9b7ca467ab48edba53e78a6abe3bbe3ecb9f2", + ".git/objects/35/c9c0f7ab7943726f469db6ebf18b785fc2239c", + ".git/objects/35/d57aa5103f979c2a64f1dccd2df61996598143", + ".git/objects/35/d9a66c37caacf5d4d73a6672f85f4d6f523deb", + ".git/objects/35/e65b33361f934b43f957180454eae58c5f789f", + ".git/objects/35/ed2868663e77b2983ee1f7e9c8f6dc8f552627", + ".git/objects/35/fb4f312bc9255124a1d8d3600bb9cdfdec51c3", + ".git/objects/35/fd5d435a62b0f1392183b03d10bf857e4ca772", + ".git/objects/35/ffe478b299eef1e294829e3aa9758595017fda", + ".git/objects/36/1c822bfe5efb19494ef2b571ce340aa78073ac", + ".git/objects/36/2d2c99ad3dd85396578a44307746b93dc855c9", + ".git/objects/36/5518966662f498958d178b6e3c7aa64fc6daa7", + ".git/objects/36/6297a106060793df78ed832021342b34ef9f1a", + ".git/objects/36/745a75a89b9f3cd6223e938f6018c172bca482", + ".git/objects/36/7ad12758e6e8c593f34bff37076fcc214ca416", + ".git/objects/36/8202d8937217c8ffac26866217b13b063acc92", + ".git/objects/36/93bfb1bc57795f4b42a710caba4028f209bba9", + ".git/objects/36/99a2f2fca09f5fb308a728207431dd7f92a2df", + ".git/objects/36/a33fd8ba59aa671b5fad7e9f23f795a73d68ba", + ".git/objects/36/b4e01de766fd515028a8da2f7d71c7791099b0", + ".git/objects/36/b729e9fb25c255256b1beb76270fea5d8edd49", + ".git/objects/36/be0b28aacf652c03a5ebdbc33135c48b4515b0", + ".git/objects/36/c9da406dc82b5e5b41a1ad47bc28ef15bf74d0", + ".git/objects/36/d686e5f93354e5acd966e2eb7549207f13d7bf", + ".git/objects/36/ec52f575af793e913fefe7e35b0cbfb26c72b4", + ".git/objects/36/f8c06c7c5b1a7edefd89e40c442fd66d807ce5", + ".git/objects/37/0ded2a6cfcacffb4514e8f40eae59580726943", + ".git/objects/37/18211d115cd6a3cb79e0427a7f183b2418bbfa", + ".git/objects/37/1dc878783f0c86eec5173ee94186570c9328cc", + ".git/objects/37/1f09f2ef8477480c53a3abd850fab309021634", + ".git/objects/37/3ad125bca5f566ff6ff27a8740bef496fd42e1", + ".git/objects/37/4955b535dfce2d67d60da8a9d2fc806cd40f90", + ".git/objects/37/4dbade44741fff7d066c998e75d9d0d86e0964", + ".git/objects/37/4e3e841eb0f6bcd78b416604f49c67afa5eb85", + ".git/objects/37/5178b358b2fcdadf29837ea1739daf652cbd6a", + ".git/objects/37/5312c1191699c1083ac15edcb7b248110712eb", + ".git/objects/37/5c42a164458cc9663a594c38c0901d1f96d777", + ".git/objects/37/6acfc32ece8d1be64e6e22f2222c5720727be7", + ".git/objects/37/71ad2357afd1b70764f708ed31691ab4af919d", + ".git/objects/37/7257099a1bb8deba8875c6035b6ee1dafc6a75", + ".git/objects/37/726a399e1edc8d8827a6817d722340a5a5bd37", + ".git/objects/37/86bcd85be5cf023b08e8531311d33d40a2f87f", + ".git/objects/37/86db592408f6b95a7c9457ca6d1f7c682b00bc", + ".git/objects/37/8e83dc0991e125e20ec3950e2f3a036d531fa9", + ".git/objects/37/9c95517830fd5fa644d0e9f9b4b24e67a26024", + ".git/objects/37/a54434fb15afb7ea44a8a985bae89385c1cf54", + ".git/objects/37/b38a3f2aa49aebd8a452802515a75982a307d9", + ".git/objects/37/b43eac9ba37e73f9339a7f04703bd8c657bc44", + ".git/objects/37/b63bda775153c4c449fe9d69237013e40e1c09", + ".git/objects/37/c2ae5cb8e7e40b847f6b7a3331ac370766616d", + ".git/objects/37/ca0dda37c22d740b26b4459c66d0b016802d9b", + ".git/objects/37/cf93f75fa9b79274c7952231c355824d47a319", + ".git/objects/37/d8cfd1a8856c140553b9a6fcf6c5e4188564d5", + ".git/objects/37/f467b1c7df3069e1fe464bb906505a7e7a84f2", + ".git/objects/38/05103fec4cadc1dcb3b06d78296199dfccb561", + ".git/objects/38/0bee34d2c7f646a6872649c65950fca589c649", + ".git/objects/38/0ddfcc26d95f86f2abc9347a3c13d608f6ef8c", + ".git/objects/38/0de8542a5ee2895a4752474346d18b5d5ce87b", + ".git/objects/38/0f1dce9936718e43891c0dd81e1f24bb8154a5", + ".git/objects/38/1de881a19aea4b93a45e0504e659a48d712c07", + ".git/objects/38/26fb3c5eb61978186c74dacc25e15cc15eb930", + ".git/objects/38/40704ea343cee2db95ee8e43d4fe3097545d4f", + ".git/objects/38/45e755c13f6fe1335c3a18ac09626ea5022ecf", + ".git/objects/38/4a366cbb5f9f2a51c8f2285217ceab72b43f8f", + ".git/objects/38/4e1eea156e243fe8bbb3773cb21aab7155bc19", + ".git/objects/38/561d241ee7c2a07d8582fbba2a9a4695f1c2c9", + ".git/objects/38/5ed4acde6f5723cbf3203f29e412d98a717576", + ".git/objects/38/69f958e5c1a9fc7e29fd675b11cf8ef55f60a9", + ".git/objects/38/7cc4ffa26e018f52f2c78ae7c894082cfd2a23", + ".git/objects/38/87c63d5449bd5205efd55b453a42dbde87fa85", + ".git/objects/38/a50a80e3bb8d53f3579d8efc5411f595aa5eb5", + ".git/objects/38/a8cc491f34a633e2ada9dec39f9755bac5c2f1", + ".git/objects/38/abaf5baece4ca4821ee7ab7660a4fcd50f20af", + ".git/objects/38/af9ff9dbbd52e8ff5e7d795a2acd2f874c971e", + ".git/objects/38/b3bc67cc1af118f827bebd7afc9706833441ee", + ".git/objects/38/bd8242ee471863a32043ab67279e4facc9a998", + ".git/objects/38/c5be256d48613e534d3fd41de052757ca3f7da", + ".git/objects/38/daca4cc6c6083ea08526333adac8cfc7f21f47", + ".git/objects/38/e055e491696d3ebcc5cb6f16405a37fa79c8c7", + ".git/objects/38/e42a1129cd7cecf417418701857b3fd9105a42", + ".git/objects/38/f7c5954806b98d7b6303a6ec05b3f3833064b9", + ".git/objects/39/389bfe78fe1ab38589e09ca62efaddae582c71", + ".git/objects/39/3ad7cdc24fabc111a14959815ba92e0e025697", + ".git/objects/39/3f6c1c7983f150c7830afd921a1bbd232e04a8", + ".git/objects/39/45b4d19a7d2ed169d03f1804fb9e236d349808", + ".git/objects/39/4ad33deb985b61051a41d2002d8d915bb21136", + ".git/objects/39/66be0ee5cafb71284f877b6bee3d2b5318c603", + ".git/objects/39/6c2a1ec818b78d4538e118e3cd48025cea8fab", + ".git/objects/39/7890886dbe8a43c446a4bed3aa7e0e8e417a29", + ".git/objects/39/86c18d76a1a3038f7d3fb39a6f516f48fc78c3", + ".git/objects/39/895da3793fd076c7f00fa0e0b8e7d3cc6a527d", + ".git/objects/39/924c7b22f15fe2cdc3de296e9ab43edb0a4f48", + ".git/objects/39/93255846a4cc9471e53426d4a209c8c5578dac", + ".git/objects/39/988d3f6a7c1ee4409cad0212f55788441b5374", + ".git/objects/39/b68cb025e26a0cc0e785887a269b42b532720b", + ".git/objects/39/b83e664b9fdac9628eee56cbf275253d1834e7", + ".git/objects/39/c2ad9e55bae66b6f894c8103364f310a932f51", + ".git/objects/39/cd64f368f5385641a68b463029a87b3ab5db70", + ".git/objects/39/db1a9db7c2aba04e54c962161deee560e8ae81", + ".git/objects/39/ebaaca7efabdf6b2b35291751c303755aa541f", + ".git/objects/39/edbba955c658b89f9da7d00544a25dabbd5738", + ".git/objects/3a/1857fa276fa90ec2ba2a69b5d113ac03acef6c", + ".git/objects/3a/1be64c10f349f41a6ec270c6c34756c9462685", + ".git/objects/3a/1e1711138705afbb612f573118b68a74061548", + ".git/objects/3a/314e5739bcf45dffb038639d7eb5513219c735", + ".git/objects/3a/5d98f434c4f28a48ae6e76b931bbc7fa296200", + ".git/objects/3a/62265ddf34361aa3c59e9780d2a4b8a8f64785", + ".git/objects/3a/8f69d6fd9fb09684c385e49f5917e64b786fee", + ".git/objects/3a/8f97d6a0fd5790c21100d5c2b5bca245290fc1", + ".git/objects/3a/902eee65efc5804ff4cca19e39c4d502b108b6", + ".git/objects/3a/9693bb66ec7cd777cb7908daeb803dec66b853", + ".git/objects/3a/a983318d8b94259ec5e9b3d2753b8327ce118c", + ".git/objects/3a/af9d115ace570666826e0ac4484e8fd9aeb0ab", + ".git/objects/3a/b3d6a7bd7d4452c34af08e049dc615f76a3ea4", + ".git/objects/3a/b69284cdc004d1fe31d0b41e978c7b908afbdf", + ".git/objects/3a/b7053f292ff42190433600e5c84f33aa1a4a1d", + ".git/objects/3a/c99eabb0d2dfad9fa502d6a01fdb716a0d5135", + ".git/objects/3a/ca12a3345fba087180d06271a0f7fd9e807b4c", + ".git/objects/3a/e04e53bb06f49bfcbd7a5c1a71cb1fbd677719", + ".git/objects/3a/e14f94b2a4caf5e1328f599c6ad4344aa22692", + ".git/objects/3a/e2c1101813101c89a933e0a0a3c3ab2b7dd9a6", + ".git/objects/3a/ed67bc4e41a89aee80eae260efd4cfd5db557a", + ".git/objects/3a/ee7b6811d1f3ee608a76226f249db58ad04714", + ".git/objects/3a/f941c23942a1da474712648fea9e9c5ea633b7", + ".git/objects/3b/0001eae5da25a37cb9ce0d112e06d6a6c0011e", + ".git/objects/3b/02b370a81bcc2f6efcf7308ac38627704fa688", + ".git/objects/3b/054505bb43a82e80cf47e47e94a3b5de7cccb2", + ".git/objects/3b/0b4c12a988ebf0b66859fa2417230cdd4784ce", + ".git/objects/3b/0c35e69d04946b532f288a0e1aa055e4c11061", + ".git/objects/3b/0c54e1282ec510e760ef26861130f419ad4cd1", + ".git/objects/3b/104fda52811653619e8e15e672a976690bfd17", + ".git/objects/3b/11ab4e94c8406ca4a59b2ff58f517ea8900f31", + ".git/objects/3b/1475bd0272a3632c4e3516edb53dd41746a633", + ".git/objects/3b/1b485bc7cf15116f19532fad81a1efac6ffad6", + ".git/objects/3b/2461233d74090389e9136342afe514131fe3a5", + ".git/objects/3b/3288fccf82a5db2e2bfc64668a68a5f0422728", + ".git/objects/3b/35f1680c45a3cf284f6d80caaee99a388cc904", + ".git/objects/3b/3965ac7806a47e1468fd09957f5fb0b1207d1e", + ".git/objects/3b/45b9c307f2a85aa069ad4cf35cb13892e3d106", + ".git/objects/3b/6c671a42c3e3dc36efc64bb54c4566bf98f4c1", + ".git/objects/3b/6c6a3f8f7ffcc631145ee2df31431473ceb819", + ".git/objects/3b/77424a86462c4980d79fe5f19d8deb24d94b17", + ".git/objects/3b/779324d21970ed4fddf846fb5677eeb39f7ec5", + ".git/objects/3b/7a41a644b39166ba6f1909ca513702f272ff55", + ".git/objects/3b/803079bb6ffdd5270a47db775af9c4b9c04d7a", + ".git/objects/3b/8218b4c39f4313bb514c07a93b19edba4ad87f", + ".git/objects/3b/868c121be69e20ab150640a9f1e4686764bffa", + ".git/objects/3b/aa08dc58932c0d3e1e2051d98862f5907622d9", + ".git/objects/3b/aac812554dc651915793cf4b74a2b73f001835", + ".git/objects/3b/b9d4b1bf02c5ca91fcd841de0ea01ba995d13f", + ".git/objects/3b/baf1345bb73162dc54022b438159e9b14f44ea", + ".git/objects/3b/cd39c6959da4e52c48d6955508148cf4f1eb5d", + ".git/objects/3b/eba0ecfa826fced50ed8068c754b2ebdd9f29b", + ".git/objects/3b/f16182b4792652833fb2ff91b74508e22b0e2e", + ".git/objects/3b/fe7a165b84c5137e375573fe30b125ad3de521", + ".git/objects/3c/03990a2d16ec6be2b1d16d5493cd453e3d86b3", + ".git/objects/3c/0b42cf50d320ee1796b72ad775fe1731facd09", + ".git/objects/3c/325a60d1bec03a738997f8b574a6ac64544d29", + ".git/objects/3c/3c1595293f5a049bfd562cbd38b78d2083f8db", + ".git/objects/3c/3c5f87c3ce09a9ac76b018ceeced03df2c8c83", + ".git/objects/3c/45aa6b022c5279b0c03fef32252620e5c0af24", + ".git/objects/3c/552089c77b195f45d3cf6f106ce5e75c1bd255", + ".git/objects/3c/58fd0556899fe198b45a940a207f21628acf86", + ".git/objects/3c/6e210c4c228e53739be9bf560a68f7118e125c", + ".git/objects/3c/837ee1c43ff840cf1dd8cc8e70a0dbfdd9c2b2", + ".git/objects/3c/84fee5094b09d2c08061e4907a5e9c7b652ccb", + ".git/objects/3c/9f63bd52545fe5722ee787845f2a1044f87373", + ".git/objects/3c/a032d0e366753a19582ad14e3ac081f0d9e9af", + ".git/objects/3c/a28e694cc1e9e9a737c7ed01db542a5f62a3ca", + ".git/objects/3c/a5f95fdea5cf6dad62b3343c0fb91b96fc05b1", + ".git/objects/3c/a9cba51bda8738a73b4a98902251923970d78d", + ".git/objects/3c/aafb540b61f0968d8560e1566ac0efffbe468d", + ".git/objects/3c/b39d447d6dc09793d321c9f6d6c2b4484bbd13", + ".git/objects/3c/b92a4f1ee39c3869b582a903d93e0b693db091", + ".git/objects/3c/c55b10fedeb035e9983b9f59e5491e4639ed9a", + ".git/objects/3c/cdd9cc494658b5ebe1cf7c2b8f473bf208b910", + ".git/objects/3c/d90f66f7008d24dde5f6f16d404697c3da6739", + ".git/objects/3c/db24a737552d17b5afb8e87c0c659934f8b4e5", + ".git/objects/3d/0dc091c96b14d5381b69ff0eb592e5f8abdbed", + ".git/objects/3d/185d75b89a2c681c6eec38b58b0f04d8419d8c", + ".git/objects/3d/294aea50771836e19f43e2cb537f8286be70a4", + ".git/objects/3d/322b8c21f9589ceda2ac0e9311a94db7d9ad76", + ".git/objects/3d/36afcd1ecc00853cbe23b3d91d4b0bdf8f1cb9", + ".git/objects/3d/397dbb48be6c1c0a05ace1bb9da869a297880a", + ".git/objects/3d/41b1ff10ebec6f5931e027529104c7e35dd836", + ".git/objects/3d/4e98aaa6ef537643932b538649a9feccfd490b", + ".git/objects/3d/556782f88fb97bb262f2034830adc4d8b67b9e", + ".git/objects/3d/5750b6d65f76902cb8d509abee41741a9af964", + ".git/objects/3d/60fcbbf35af4414bbbf946ad2a92419c0c14b3", + ".git/objects/3d/6bc565b78d35159eb33e46c26e94c75789a529", + ".git/objects/3d/6bf638715d077b6066faaa00300777f53525a6", + ".git/objects/3d/6dd6964c5f54f12836f2e7e89f5f8e1387dac8", + ".git/objects/3d/6e04322bd2f3d9822ef5f19b7ccfbfee159d19", + ".git/objects/3d/71f96a469abb820ae8ae91d7b7c2121a01a39e", + ".git/objects/3d/782dee1874a0efddd7bfad3d4f96ee8e6400c1", + ".git/objects/3d/814f84c4b56defced9577c9a820b2ae16d642d", + ".git/objects/3d/829949fd9773980627b42ee6827ee40bf4ca9c", + ".git/objects/3d/89ac8cf5fd84e16c79af8f01477f51c5b1e438", + ".git/objects/3d/d485994f5772922f8379126cfa6b41c71a28c3", + ".git/objects/3d/dd4a85158a07b45a4cdf15f8bf0c37a68a6a0b", + ".git/objects/3d/f051a0633380e44cbe3ff6c6348906667b01b9", + ".git/objects/3d/f10410f7d3cbf42ffe0d7bdaaf752638cc8170", + ".git/objects/3d/f367ff09ed83501d3ecd5a1f77a9964432e76f", + ".git/objects/3e/0856e944f7ea4d1ff5b98931b780ead3ea4dc8", + ".git/objects/3e/150ae26b5aced1d8f5ce6b2014b987460fa73c", + ".git/objects/3e/9144e9e0d58476050d26f116ac94afa553ca6e", + ".git/objects/3e/91fb9d56c9d694d4b0ff6dc585687614933884", + ".git/objects/3e/936a17597d8d2e240ca392f2eef0a7a04d25bb", + ".git/objects/3e/ab64016255a2fe4db82d37c00cb2af9f7296c4", + ".git/objects/3e/b7c48b1a065805e1e281a44c1e4c0613116b75", + ".git/objects/3e/bd211d9f16dfbec4bdd2e1cd9cbbf9c7a58534", + ".git/objects/3e/bffe48ae25cffcd1e76a1bac2e89ffa34d6602", + ".git/objects/3e/d90a39d46aee3c6fc894dd695bc57625c7d239", + ".git/objects/3e/e784bd6a63329a26d6d05e1ba80c91d94cba40", + ".git/objects/3e/f5975559f50df7d37752fb45cda5d0c6c527a5", + ".git/objects/3e/f959d8080fe1d8b3c68da17a552055bb412dec", + ".git/objects/3f/03aaca95957e58c0bac9985b46622f0f6bbe7f", + ".git/objects/3f/15a8934238c783506b977a3d22d05fbfa7b622", + ".git/objects/3f/20a02e4a69be176f9c03054a9fece2eccd6d33", + ".git/objects/3f/22eae3f9269fd2c478ee870a0003ff2acb1f76", + ".git/objects/3f/27ba5f5a900b4502c2ccb679896c596e91cb94", + ".git/objects/3f/356ed3b9c6d357ec136c9c6df6810e840db16b", + ".git/objects/3f/525d441c04f7995e1001137a92153a5ae34489", + ".git/objects/3f/5871d7774bfe2ee6840a4ac3b06f0630fd18e7", + ".git/objects/3f/76ddf8b9b8e1a90759c8a291bfd72383efbe04", + ".git/objects/3f/7ae6f40cc544db379d680c369f3387fbc361aa", + ".git/objects/3f/a663e9c537c34888f8914d252ae2a235333fe1", + ".git/objects/3f/ad44d17cd56022c052e97cc19e2d70b4b37396", + ".git/objects/3f/c9f717f75547c774a725f5eed4631ff323ec5a", + ".git/objects/3f/cb5d8ec8787bbf6baade8f10846fb7401d401b", + ".git/objects/3f/cc6f34a1500921a121bfb32da67c8b92f8683f", + ".git/objects/3f/d83d48b996595c491713cc8478edf7e2378c3c", + ".git/objects/3f/d8ef320bcb571e0f08988c8dfcd4af871a5360", + ".git/objects/3f/e1a820236b8982980df01e09a66281dd70d875", + ".git/objects/3f/fa71d41413ad760b81c88d6ed11d7eb99fd4e6", + ".git/objects/40/08abd67c337f74456005f3d75c4c14ea2a4adb", + ".git/objects/40/106b0064f1fd6647edd7df855980cd7d11ce15", + ".git/objects/40/23aef3209755e5648c8ecccac7027655769a72", + ".git/objects/40/245063f7862323d9af10f18042a0d38f0c98ae", + ".git/objects/40/381b52054d837878e241cd625f962aad7a627b", + ".git/objects/40/3901f2d3351cde4256eef4312f70e7b6d3fd3f", + ".git/objects/40/47a2312b2352b95a35c1053a688a61b880a7c9", + ".git/objects/40/5698d36557511a75d71c4e3d68a47a63133a78", + ".git/objects/40/61af83f04a3618a70b600cf3c0a9a504bfbff5", + ".git/objects/40/6702c8ecd5c23866aacd785cd7c2e8dd8e1bea", + ".git/objects/40/838e5ed0831863fc814b5185fc9f13313e8d13", + ".git/objects/40/8541c96790c215c1eea6e21b65bf0781a1a75b", + ".git/objects/40/8e6c22b25a472b36766769a99a0acb6deee122", + ".git/objects/40/9087480421f545f042131935ea567b91e99791", + ".git/objects/40/91d96664fa8130a172fed4f7e2e7ec98425794", + ".git/objects/40/a31c33051606574b287956589bf514dc946a7a", + ".git/objects/40/a9262ad0495cf54684d162bef3f9f9dc1b67fb", + ".git/objects/40/bb80896aa0330f6eb166a6f9277773c36dda51", + ".git/objects/40/c054d3eb20a92e2c11b7560bd7815f494ed276", + ".git/objects/40/c7185e93ba2bf2441d608a1454664ebbd6c757", + ".git/objects/40/cab46cb5848abf44d08dbbde1ec7bfa0c63123", + ".git/objects/40/e763c9ac9db196dd13018388a8c9463c920b6e", + ".git/objects/40/f476c041db49f3ec097385385a7c2c1d99a553", + ".git/objects/40/fcb6529d8d0df65aa981b77cc364f562b99ec9", + ".git/objects/41/0a400ec54d4905ef5d58b25d20e6bd3035cbcc", + ".git/objects/41/14cfba7e9d18154278deccaa82c2bd55731fa8", + ".git/objects/41/1906b48257a32b5170d1513e39b4bddd8360ad", + ".git/objects/41/3757491cf1bc94e9fcbca846435a13ba26a58c", + ".git/objects/41/398293f6c0339ea34c04b7a1e1240edcc459bc", + ".git/objects/41/4332c732f9067749e32a33f139250366df35af", + ".git/objects/41/507c5951dc6e70e75471cf4380afd9e1368c71", + ".git/objects/41/55491a9ce792ec9a7f3d456bf46fdee0d629d2", + ".git/objects/41/57a1cea28dc83f3ef5a57c962ea76d30c58eb5", + ".git/objects/41/66a97308412524a2440c7803e7998a1c20d13d", + ".git/objects/41/6a652d807b458984c8db7c7cdeb2365ceb77c3", + ".git/objects/41/6b0daac994955d6360f83ab29b6b67fb5d06a0", + ".git/objects/41/7b4c6d91405a7ead935fce861fe7d2b636c356", + ".git/objects/41/8449272171f691d7ad4f9dc2aab941543bb9c8", + ".git/objects/41/8983a91940dce1978f449e279a6e95de83aa5b", + ".git/objects/41/8e19449ad3f2ad6983c18295aae324ecfd4894", + ".git/objects/41/92d745962ef96b5d2f3b5d0e20442c0275c525", + ".git/objects/41/9cc4a9acbcbb6ef07ae16ce6292109b694bcaa", + ".git/objects/41/a8e6ab9000d1c222ae2c833d9237c6b3f03e17", + ".git/objects/41/a9a166d5f11cee5f7ec5bd39009f5590136976", + ".git/objects/41/ad58aaa7f7487b32a5911ec9d64573b6473c34", + ".git/objects/41/b5ce181cb2d793723531bca17927d07d9d6c02", + ".git/objects/41/c5977bd322d8d6d84a74fd5bf94dbd744ef85f", + ".git/objects/41/cdb9b628ea0b0a2c96364d2a28202efaf5c891", + ".git/objects/41/dbc6e3a610c21feed8a33ba8cff9a519a47746", + ".git/objects/41/dd7cabfc7bfa6bbf37f3973fa3ae63861e7598", + ".git/objects/42/0c9b6b7c7e8bf729bff1c3fcb9e7805b29b686", + ".git/objects/42/143b4d9e840a90fb4041901bc68e33e4905071", + ".git/objects/42/21d31761a9d10abf3383d3db3b740444f1412e", + ".git/objects/42/268c42a8b3705a37efc57c51211e822a00d14b", + ".git/objects/42/26fe625011b4bd7db0fd0ee9ed6ebec52335dd", + ".git/objects/42/2f31d777dcab3532319a3bfaeaf2535766f341", + ".git/objects/42/5282aa14931305ea977563118f4df985fb427a", + ".git/objects/42/5928915dcae1e363f6052f53f977d402adc3ab", + ".git/objects/42/5a298470549cdd7124b4c925a51d6fc837a881", + ".git/objects/42/62bfc4bd79681b5c5e5048870ff2c56c261e46", + ".git/objects/42/6f5490772b93303a6229464dfa35ee03794805", + ".git/objects/42/771001720fac98c72f150ed551ea06dc5e5c92", + ".git/objects/42/77ee2054c84f3c8561c4d2b1b381b015205ce1", + ".git/objects/42/82d7bbd178ab4d64b9fb2da25bc4b4094ef6e8", + ".git/objects/42/86a68b362d8f760f0930bdb4cd71f3622431a5", + ".git/objects/42/8cc656c14c653c5d667b5dae5c1f86bd22be85", + ".git/objects/42/96645b9769e446be1b993db36a39dfa7c08ccf", + ".git/objects/42/a72e6bcbf820bcaaef38544cd5519f3c8780a2", + ".git/objects/42/aad7cf15a5f6cc9e51f9b99aeaa80ac93325f0", + ".git/objects/42/cfac0670d7007ffdafd839248afec779eeee4a", + ".git/objects/42/d45337bb9d8b936bb8eecbc647b3faf88cb513", + ".git/objects/42/d680ef7743fa20a6736a692ec8fcd548043aba", + ".git/objects/42/ed90d564745c1127eefabb4277d2ff6e15671e", + ".git/objects/42/edfaa7bd57d35029a8b49faa85a5531cb755fe", + ".git/objects/43/05ef50cb3cf3425ce0b7affb5342f906373239", + ".git/objects/43/103d648ef82fc10f64808bdd9c1c19705098ea", + ".git/objects/43/1675de8499858537346ac1ce9f5feb8604d383", + ".git/objects/43/1eaedf37d63f8772fa5621b1898d7dd3d65347", + ".git/objects/43/223398a5351e9e9e93c25b527be0eb17acaef2", + ".git/objects/43/480963f83a658e607c84c835dc8b441f7fd4cb", + ".git/objects/43/549f65dffc9a8bc27f11dee516e9f01a04331b", + ".git/objects/43/59e38b575091f1f47895a47b083ed90b0806e3", + ".git/objects/43/6e966a668c438e9d6b68568c8f74e119e79c28", + ".git/objects/43/71142906be4a18c01a940d2dc710c56498bca6", + ".git/objects/43/732f94de0c12fc49d7de8b6292bea75a6eef59", + ".git/objects/43/85e61172dd321ab3700939b2edc34c0f646e11", + ".git/objects/43/8f654271d178ea01c8d3fd61cf583a89cedfe2", + ".git/objects/43/a908bb6d9f2b3a276723c39baa47b8237c9184", + ".git/objects/43/b1f2fc036434a957708e74d778cb4715e94d89", + ".git/objects/43/c72211af8b2564ab4bcac610c21640c71cd86c", + ".git/objects/43/c9006d69bbe97bcb3b4fe0debc360e399bb605", + ".git/objects/43/cd40a10eaa45a15be4c651655984722b23045d", + ".git/objects/43/ce040faa8f30365309960f01a3e7742d317221", + ".git/objects/43/ddc6d1146ed52d431dfbfcf0872e23fd38b04c", + ".git/objects/43/e07343d3fb249bd7e17e95e2396d4151c01ded", + ".git/objects/43/e5664dbe4359cded265fc122cb2a4b1353b13a", + ".git/objects/44/1806b2ba6519fa5ec88a3c6bc2b256e6ee715c", + ".git/objects/44/1bbf1f3f5605813e866486514fc6741cf5d434", + ".git/objects/44/1c7b43a335a44b6b190496f80642bb15891600", + ".git/objects/44/3736339eee2a6f46fb8851bb2bb35ccde39cb9", + ".git/objects/44/5263a9eba055d3d3553861ec6fa0d16ca3465e", + ".git/objects/44/53350319b2b959b50bcbc73e62b10cf2ffa6b6", + ".git/objects/44/6caa8c194202e9c94ed0744d0bc7efb15a5c08", + ".git/objects/44/795124f63e8e1742425019c52e7397c6e1fa38", + ".git/objects/44/bd1e7d94a4882e79504484546c58090f522d96", + ".git/objects/44/c153eafeae1dae58eb26cc84b1d8de57922fd8", + ".git/objects/44/c31ec44d38e8ae177073647b5016fa56e75974", + ".git/objects/44/ca4e9a0a97dacf430fdb21f10a6101b2344ad4", + ".git/objects/44/d01cae8e6618fbfb3d65dd3e169dd8ebbb8048", + ".git/objects/44/d3ff731c5d6d55759284feac9138da8b74eb23", + ".git/objects/44/e5387010c59c76c2b52325f9fb24d8dd9241d3", + ".git/objects/44/f934359533ac3455f0ba846472e0323d1a8175", + ".git/objects/44/fdc5288b26625f25cd04fae2516d8d44fa3cbc", + ".git/objects/45/111a785da63f0e746526c8aed702d5adcf6461", + ".git/objects/45/3e2523a58ec711cd808a51e8180051600e394b", + ".git/objects/45/43378b6b82e7c31021cd736e12e091664490d1", + ".git/objects/45/4650cbe2e62cf1acd45084f0402f5fbe541e7a", + ".git/objects/45/54d231668d8487ac9628381ca0fb87be21819c", + ".git/objects/45/5aeefe9505c872609a2e149f46495a11adf109", + ".git/objects/45/6a9583dab21760ce30e0d2e087d3cf960d2b63", + ".git/objects/45/6c596315ee9a28d1db5b37beb635653f0745b7", + ".git/objects/45/6e8a9e38bc2cc1ea0334a7d51679fb1995c582", + ".git/objects/45/72eca6a761176d87a5886a775d2cdf862930c9", + ".git/objects/45/88c8d076798b2451320b5364f688a1149189a8", + ".git/objects/45/c6f70fb472a889975ccab33fb6803098d9c1ce", + ".git/objects/45/dbec5b046e849183fb94eeb0181cfa11be2497", + ".git/objects/45/eb5fdb857d39691f7ed48b2e07a1eed5abab27", + ".git/objects/45/f41e064194be568b48fff58e4d7f9b881f9e96", + ".git/objects/45/f8a59b6b9c5cfb7692b4e93d4c526ebbecb8ca", + ".git/objects/46/02af167486a6700ba7cfaec3f1b614d4b1872c", + ".git/objects/46/1235ac67df38657c931b6f40c274a2fc8f4b5d", + ".git/objects/46/16841c356870ffad23c50df82d4ab3fb1ab5a7", + ".git/objects/46/24b00e4462b917d0a71f7c7da8c4b01568fafb", + ".git/objects/46/2c250427a67e2321f6b3b2d384fe72eb96182e", + ".git/objects/46/336091ad697431ba8b51f10fb241f0891aed31", + ".git/objects/46/41612e36406c72597b15201aab6f9a35262287", + ".git/objects/46/426264427acc158a32e6575d96125ac8bcfa7e", + ".git/objects/46/42d05d7189871c47e84684882dc82355c37b37", + ".git/objects/46/4af0319f8529a59389d8be6bfefd0387127361", + ".git/objects/46/4d1b30dc74d9478865bfaaacf7a6bf4935051a", + ".git/objects/46/50bce71e03473fa42b852778f0ac64a906f2c8", + ".git/objects/46/5678cc307a8afbf24f5ba3eb6fa1c615d48b5b", + ".git/objects/46/5789ef5296ad9de2b352ae4d0eed8e2e6446aa", + ".git/objects/46/64c504996368b8769b760cc987223a35c209ae", + ".git/objects/46/64f027192e9a221ecacd74543f2132a74fd2ed", + ".git/objects/46/68641e14b318c7f68db8c4b0921a673f871999", + ".git/objects/46/6c8ce069b68d77a902b3be6134c452d208279c", + ".git/objects/46/6fe2766a741bc59f835b04a0e281173c11ff23", + ".git/objects/46/734e2391cff332624a415783b9613099906407", + ".git/objects/46/8707c9e1977a102186d2de09bc16599c508276", + ".git/objects/46/ad01d3aa82be28257de33496b3deae450cbfb0", + ".git/objects/46/b398e277010caaceea0f8ba9fa19a25d961e16", + ".git/objects/46/ba9c1b17ee5b411f33b421477459701801a1db", + ".git/objects/46/c02734405dec58fd6a8beb84cebe0126a98fb4", + ".git/objects/46/c0d144d89fcff588ce85f99548158460778eb5", + ".git/objects/46/c7413524d7d6756d0498b9dbcde48b80f8534a", + ".git/objects/46/cea771b47509cccef1554ae46e505e93d6fd0a", + ".git/objects/46/f1e10e92b55bbfd0960d1b77aed9f295afe2bb", + ".git/objects/46/f43ad20a5a4b219333f4ebcb7194c296d88ded", + ".git/objects/46/f736c13c301a9a5bf883c29e90c20d3fb648c6", + ".git/objects/46/fa16ba53d9f020d901918847f4b34b6bf20aba", + ".git/objects/47/08ba3c7c49e887d9ffc2ccb7a6fc63bf5d82d7", + ".git/objects/47/1a2bab954630e0838cca1f6e9241cb6eb03901", + ".git/objects/47/1f6ddcccfbb5912f5a7ccc92fc01eeced93738", + ".git/objects/47/2d2b3977394d4c35e8d667df726978effe9f9b", + ".git/objects/47/44dc45c251f0bb72f464b0ca1bc6355d85d907", + ".git/objects/47/518df5453163817e6012d26d887210c8804447", + ".git/objects/47/5f4759987ac40815c572619e4a9cd568de4d9c", + ".git/objects/47/66edf1034921b810543f717fb35efe193f6b7d", + ".git/objects/47/897437b789645866617948c742949f4e6c603d", + ".git/objects/47/94834a3cbc9cec143ae232a73e6bff8cb2ca54", + ".git/objects/47/94fa86f6f828a6f914e6f2dc76210496804479", + ".git/objects/47/999407f8a38178dc7dd197255a22c4adee38e0", + ".git/objects/47/9f97bc1df95c0a1a83a5d83cc9e1a451e98725", + ".git/objects/47/aa743a2aa1bba310a973e0c9b95c68a7010bc3", + ".git/objects/47/ab1ae240ef5ccdc4224ec6b35d7e96050d09c3", + ".git/objects/47/ad58dcca6ef3f1bf2295a6b40f8601d0f8a04d", + ".git/objects/47/ba908d3854efdac4a2d263e779a35f924451ef", + ".git/objects/47/ccb88598b18507847a5d84871f53e038e9a861", + ".git/objects/47/d57025a7731672d6ef91995ae925e0b6962b50", + ".git/objects/47/dbbdca66de84d9dd2a3e1087344e3fc7c79dbf", + ".git/objects/47/dfe7abad5222cd3c3367cd812eddfc1f261abb", + ".git/objects/47/e00d9e2711dc16c8dcd3b48da5dce91dab0eba", + ".git/objects/47/e671d289a95271467bcc9235eca2946402e2fe", + ".git/objects/47/f3d5b933ee538c8f188fe724573ad81cd74ada", + ".git/objects/47/ffffcafce8918ca378cf1655ab0f086e56c4b4", + ".git/objects/48/07972fada52a7b6ff44868fc9c53c3eb6273dd", + ".git/objects/48/138852a16663fe79464c44409c35b5b3136ba1", + ".git/objects/48/176d8da25166772ff5f386383e8776a03192f7", + ".git/objects/48/2971670d92998fd24149782086a7e42b9f6208", + ".git/objects/48/4bd5e459877ec3bc148667516756487f634a0e", + ".git/objects/48/52cc9b80640d9682241e08bac7839f618f4a95", + ".git/objects/48/5ad8afef0ca5b805fdf71613af7182036f8a9b", + ".git/objects/48/63bac800bdaf252dd7eea87c87f2dfed2100b2", + ".git/objects/48/77fa3f7498f8de91aa06cd818a1e73180bd294", + ".git/objects/48/83d6452a7f0fdbfd4f4a38c1140b932673d906", + ".git/objects/48/a6eba836a5e17cb0a1ed2fe274ddc39d4d9399", + ".git/objects/48/a7662359b8f08227c70a420dd16dac3c59b3d8", + ".git/objects/48/b2d82e6712e8ed0b3f0f4d475d230c38313909", + ".git/objects/48/c769b94894faf4360664e96dec2b3f307a134e", + ".git/objects/48/c8d8dc13a1bf3d6601e520c6e7f33629040a9c", + ".git/objects/48/cb188ae5f4445365f0a29e2e8ae77e835fc279", + ".git/objects/48/cf67e55d0e1f6aead54253d27e721d4c3b15c0", + ".git/objects/48/d1deb2494c229db35243747d01fa8b460f113a", + ".git/objects/48/d9d13daadb49b5806d43d8001b78555bb32d44", + ".git/objects/48/f71a7a9b9a3fa6887b18c6fd86349e8ed19951", + ".git/objects/48/fcab763e12c37f2f1b8511c77180a316717826", + ".git/objects/49/00a7e4f89615a2dffddd407b54e63cdea8a78e", + ".git/objects/49/016732f6f348771d8e6001f019f61c403c406a", + ".git/objects/49/0ae95c77ddda35d782c59038bded54513f56f3", + ".git/objects/49/15e5f0cf3e9d3de103c1c3f5d573838f71d40b", + ".git/objects/49/22030338ef1d845e349eee005e899cbe12213e", + ".git/objects/49/2cd11ae0219d5e86e908965211e521a21141f9", + ".git/objects/49/2ce710311dfb4077b46210ca9664a88129337d", + ".git/objects/49/2d650bd70a8c45ad8b5a9d1f4c0d0583f2f682", + ".git/objects/49/3ed37ca46255e7dcafa14c63d73701bc767add", + ".git/objects/49/4374826fd6ba0716009770dff84d8dfe32e825", + ".git/objects/49/4819fc0d6801e1a43c8e13786b4ac6f8f332ee", + ".git/objects/49/48d00db2563dc0e0d15de2639201b992e76c96", + ".git/objects/49/58f2fdae7d210dae8865bfff2effb38cb56ad4", + ".git/objects/49/60bf3a7adc1b2e719dfd7fec1873f3fcce5100", + ".git/objects/49/66f9ed8dcef546ea18697dc6f7cd9082205141", + ".git/objects/49/6f577400a50a3506a38a77e17cea8a2b4c2b12", + ".git/objects/49/73bc66ca7f98ca32c29b4538d749145f3b744d", + ".git/objects/49/93c0899a31322fd00c4a4381651b4cd1c7acb1", + ".git/objects/49/951cfec1a7f2cd6cd596fcf532511765b937de", + ".git/objects/49/9a4edb3fe41500ce14b7a649841738c9d2347d", + ".git/objects/49/9b884e99f1d72696b1df72756317980de57fac", + ".git/objects/49/c00f534f46a0e967f8ace8e52f8cb3f5cbae01", + ".git/objects/49/f7372b98a7af421cdfe3a3485a7b1316f63566", + ".git/objects/49/fd43dd20331ca1c9646dafab1bd3f505abad97", + ".git/objects/49/fe54b16b5be19501911783b89ecc685badee35", + ".git/objects/4a/0529c59f7ecb3637f5b64fcc1f47530121cb17", + ".git/objects/4a/3018dbc2c7abfc2941cbb9204be5bc83311a0e", + ".git/objects/4a/356c5713964d70d1f808cb3c24b2b7746c7204", + ".git/objects/4a/41f77db4a8c3b8c6d2185d94ecdfc5bae44cb0", + ".git/objects/4a/4b605571e01dbcba99bb50589ac145c06d2c86", + ".git/objects/4a/4fea7219403ea7b13d2c43a85e35c02d27118b", + ".git/objects/4a/5506e97810ae8d53fbc584560dc7b6d66438e5", + ".git/objects/4a/6e2abf2168183a76819abdf40283e753974489", + ".git/objects/4a/758225b5ea103d4a9e0ce2f032297a3917be93", + ".git/objects/4a/7981b2b380cfe83455293bebb0568452301beb", + ".git/objects/4a/7abda9f0691bab5d122151c04b6ac12ce082f3", + ".git/objects/4a/7db228ca3c4de1db3197a903a1418dd0c1ac12", + ".git/objects/4a/7e32c63d28bf2962862757f9333090a85d20c9", + ".git/objects/4a/96e704f67ce5e6fbfeec70c1fd01f26fac607f", + ".git/objects/4a/99fee3760fa40ffac67a100b4010b306824311", + ".git/objects/4a/b9dc1a71c0a98472b20a0ca343140809c6aec1", + ".git/objects/4a/dbf63c7c0cce5767829b596d8193dce16fe3d6", + ".git/objects/4a/dc9ac66114b5b7eb43d738494d808ec7f91685", + ".git/objects/4a/e5754e228f4fb1d3fe90f723ad68acd0b1c7ce", + ".git/objects/4a/eb821513ae7739f95639b92ff5cf9cada43c91", + ".git/objects/4a/ec0b81647562002b8b7ed921af9a9461e7de03", + ".git/objects/4a/f788d533e4974569b82d81e6e0ce267d414352", + ".git/objects/4a/f8bb21d7f4bcf27057afa999c615f6977e0b11", + ".git/objects/4a/fa0c0d9123c2e41660da6f66471ca933488571", + ".git/objects/4a/fde4a07e25b2222a1ed59654ec5a4cf7141883", + ".git/objects/4b/12942b17ae97fecd9ffc16ae273d46d013e124", + ".git/objects/4b/3075c5cd4fd08ec51c9e7501700b6a0bfe61b3", + ".git/objects/4b/33f64ce827b84a1c7632cd14c7ab75cec4d7a0", + ".git/objects/4b/34daef9aba4469772d4fb0c7a620098605dc98", + ".git/objects/4b/3a701efdbe57bd273351965be71a600d0df83e", + ".git/objects/4b/46b4cb12129d4be8fc6dcbd8b8b55adf5f8798", + ".git/objects/4b/4bf59a2878a3b9955edda690290bb8a4633a85", + ".git/objects/4b/4d8c8f6ba2b553efefa15cb8fc3c0255e6c6ed", + ".git/objects/4b/539f93e14480c8d01d5cf69ae10f987f09f7fd", + ".git/objects/4b/620c9e3b726d04df6ad00ceed425d0ad30240f", + ".git/objects/4b/6a927ed0122826598b2bc400778b2e9ceedf96", + ".git/objects/4b/74096949733f06bfd233459db76ae90aa13ef1", + ".git/objects/4b/775ffc3c7ff1831baa8bdba62c1ab78088da5a", + ".git/objects/4b/793451af69105110a0f912f16f77e8a8791eb1", + ".git/objects/4b/7c4c4f2fed35ee45573c1178ef01d776942a1b", + ".git/objects/4b/7ecfcba53240e869a601aef29d70aefa7ca58e", + ".git/objects/4b/9e84b5caf168188cc94ce7cab129f495d16eba", + ".git/objects/4b/a49e2c5125f5fd183d5a1406b165f1b6b2ea78", + ".git/objects/4b/af4efc7b2e4a117ee3e1357d4f542f97452c66", + ".git/objects/4b/c4fc080379cd57f8dcbb8bb7b5b334612f253c", + ".git/objects/4b/e4bae9d48d174310ae02f412b8a22c38466528", + ".git/objects/4b/ea56f32a5f5cc6ba06b47eead976f826a94fc9", + ".git/objects/4b/f36c00489c5720e30212173bd1bad59c8394d1", + ".git/objects/4b/fa8302fc7a81a0d3735b87a7370baf72d006cc", + ".git/objects/4c/00da044e546dc6249398936b6f408dfa9c7602", + ".git/objects/4c/0207899da1e6e959bbbd184c1223542317bfcc", + ".git/objects/4c/0e22251ca2a33e088714a5231a11d85476c14d", + ".git/objects/4c/2521c1e2d63c74df1c9c7b019d57e8707e06e5", + ".git/objects/4c/2590902a4cd8dd823109c758c62530f236cb10", + ".git/objects/4c/27f206bc3a7ad84be9667fa3d4e4e5574faa21", + ".git/objects/4c/30cf01eba98be96239f9729eb873530ec611f9", + ".git/objects/4c/3895c889d4df8b95639ab351a4323b8d4c6952", + ".git/objects/4c/3927cc516bd00003c553071010f8229d323d97", + ".git/objects/4c/614549928f7f2a9952b4f9219ae457c7a761b8", + ".git/objects/4c/74611a49c10bffefdfe9fd035a18a4286f6479", + ".git/objects/4c/82c81c9ddb448d5c7aa280112f2ec35350c16d", + ".git/objects/4c/842d92c14c676a00af5728a419d4aa22017c37", + ".git/objects/4c/8c2b382f5f2083032ae4a3fd8b07dfa4091ba7", + ".git/objects/4c/8c3f07234b1df752a0301db9686dcd282258e9", + ".git/objects/4c/9674cb42779b739ad9a20f9f4e7ed6f3b7ec38", + ".git/objects/4c/9a1ff153c25b4a17b63c9b3e786716e3beecd0", + ".git/objects/4c/a8d0a76ae84aa410ec92160c3df1983e97a650", + ".git/objects/4c/b05a758a7a7acb4f0bb316a45c3aa9d6d4c5e5", + ".git/objects/4c/b8fcd9f8d0ae5dcae1102f585beed7a5546822", + ".git/objects/4c/b9c76ec13cf5c70feece043ef7680caaa1edaf", + ".git/objects/4c/cd98c81cf01caec9104509e0ff3e2a58dbc768", + ".git/objects/4c/cf68e8d97557a4ab52345b29574f16c0775f95", + ".git/objects/4c/ded4bb585da6bf37d7af2337843413887e7db3", + ".git/objects/4c/e0af15b8bde6bab3cfce8d61783b61d9cd915f", + ".git/objects/4c/e118d77ada2b64ea99baf54b0b69b568d26958", + ".git/objects/4c/e2908962f424b8657cedf06e5c74372fd28dcc", + ".git/objects/4c/e47158fe559644fd46b8e50ecd7820518b1346", + ".git/objects/4c/e80a5b6500442a6e2ec8f289adad575a969900", + ".git/objects/4d/066c1f81adde2a248a0c88f5d30fd845d1638b", + ".git/objects/4d/1caa7e0bba565a78717498d4816b7f08a8e46f", + ".git/objects/4d/1d3adbf631b8996a751086f659333061d5fa66", + ".git/objects/4d/2bd42137bcad90c4a0e8975cdc13a9302a623a", + ".git/objects/4d/2bfbb2f72048ce15571baf68cb6ee29ff0e493", + ".git/objects/4d/42955c6a4832ccf7d6d177d51c6460e5b132aa", + ".git/objects/4d/5821179aedaa564d29df288aa708f7db78277d", + ".git/objects/4d/5d031aeb5118058abfeeb78942001049616338", + ".git/objects/4d/5f93c87b7c59bdb768fcd74d9c173ad66516ba", + ".git/objects/4d/77ff4394ac8778bf3a886c9c414db72e965381", + ".git/objects/4d/7b6df31eae1a86e7a26b66a3965a708910816a", + ".git/objects/4d/86e7be540c8723472af30e7ddf0e28edbfe4ef", + ".git/objects/4d/8e97a69d4b2d2b5dfcfeda903358c72895a28b", + ".git/objects/4d/a0907b6a31f5d2308e68a50a7f1b53a3148c17", + ".git/objects/4d/a95882a6debc75e3045c4fed3055c95d3007bc", + ".git/objects/4d/aeea24a5c0c1b76947154fcd9e4567a79d1bda", + ".git/objects/4d/bd4441b83ffa320476b00e0bf660914e432ba5", + ".git/objects/4d/c6ad32b53e3dff5500ea08436c46288e3d5746", + ".git/objects/4d/cb8bf6fc6d6c901a50fb70f5e4e70144b224e3", + ".git/objects/4d/ce5279c6ea93f4915ecba35ac0251cc02fac77", + ".git/objects/4d/e6ddfd781ac788c149694676292021aa459bee", + ".git/objects/4d/eaa0c6439a2d8b21e1aa3aa02f19dabf0ea3d9", + ".git/objects/4d/eefc9c07343299905d1a01e0dd9256d7f3d7c1", + ".git/objects/4d/f991522fd50cb754bb0dc164c26084f7b4dc83", + ".git/objects/4d/faaf90df7f6233c798030d2aa7c89f864162bf", + ".git/objects/4d/fc5ee775e63fcef0dca9cecd4476b0422d1c9c", + ".git/objects/4d/fff5006bbed2c5072249af9f0b2c0d9c50d0da", + ".git/objects/4e/0a2ba876519987ae2fde688491a641dfe2eada", + ".git/objects/4e/116295fefd6480fa1c67a079bfe84ec1dd19b0", + ".git/objects/4e/1c30e04bc73e6d4b0594e40177c0c229667a9d", + ".git/objects/4e/22c765df6792cb42c9456d3dd18eee7c8c20ce", + ".git/objects/4e/2a00f4d252bea597f6d70fa5c34ed6849009ff", + ".git/objects/4e/36e4c99273414dc2a15e62606b3e90260c4215", + ".git/objects/4e/57f0137273f2a1dc51c611545cb02f562e8084", + ".git/objects/4e/706b7b9764c17f6af333b5f4738e9f75a05110", + ".git/objects/4e/75faa6dbd867eae278b605a10e85188cbdda3c", + ".git/objects/4e/81ec7d631ead981821aa5204a41f65eba03a2a", + ".git/objects/4e/8ab5d4ab827b89a4d7ab79dd7247013c631215", + ".git/objects/4e/8b7b5577e2d3994ee34b96449df180e5de044a", + ".git/objects/4e/905e9f85245a701e5b020821d6d11910b472d5", + ".git/objects/4e/a31fd4f1f4ea30dac5fc7f2bd31f8a457849a3", + ".git/objects/4e/adae9a716ad243199b8c054439b4f3e217bf1d", + ".git/objects/4e/b30a29f683a5829710746e32c199251dce32ca", + ".git/objects/4e/b769d301fb9d26d0396d64f7bc35999a8596f6", + ".git/objects/4e/bc7e11949186269f2a02a2febcf37ae32870eb", + ".git/objects/4e/e6876dcd9decc1de010ed2057ecf28f9758e68", + ".git/objects/4e/ea5f5e6d86e4a92f049e936d8efb917cf01807", + ".git/objects/4f/13501c7aebc264df5ea850b3799541b17bbb13", + ".git/objects/4f/19ab22fa5fdcd1319fc99b595b851444abca62", + ".git/objects/4f/1ae444b3240f8205303471ad84008db92e6e06", + ".git/objects/4f/2782dab27435c3357a005f9b20d04d445f67bc", + ".git/objects/4f/29ea6a576f4174ed0c3cc6ac75a4f60d44cc4c", + ".git/objects/4f/2dc512c0201a71eb1ab109d10c7e981fa9e941", + ".git/objects/4f/38bfb3b1c6b3d93c26643eed4f302debf17ba7", + ".git/objects/4f/5e5a415f062e0f13b280529477da504f4a68b7", + ".git/objects/4f/62a8d27c18e70c5a26e381cee686fc462fe4e7", + ".git/objects/4f/698a4aff3f569528f09febba30ec0fdf686048", + ".git/objects/4f/6da68870871f00d457aaba61941f53fcac46dd", + ".git/objects/4f/807396149499e2f2e6429862f13cf248ecc9f8", + ".git/objects/4f/82988d9c39cdbe3425a903be487e00b759d522", + ".git/objects/4f/adb8451632439714e3b486cca870cb57e91232", + ".git/objects/4f/c657d1469196f0efcd6ad487108e2e56fff312", + ".git/objects/4f/d8a5e72b067a70b646a7bb3022bcf9b0151e39", + ".git/objects/4f/de740aecd5372f3a0d2f581475f494d9a6220e", + ".git/objects/4f/df17af2e5f6f316fbd3c783194ed250d5e0351", + ".git/objects/50/001ec6362406d2daf1bbdee650ab3d2f64a78b", + ".git/objects/50/2624333854e4ba3e9354d7d11a9cd6c8f34bcc", + ".git/objects/50/28850d812bf767bcc8ae087bb16c493f615744", + ".git/objects/50/29bbe0a626b18f88af30f97be59fafebdb4046", + ".git/objects/50/3b304b42da178ba26f680fb40d0eeebf226917", + ".git/objects/50/546f578abaaab61ca8f1488f9382f88889b65b", + ".git/objects/50/5a1c667257b79feff654fc30864765a1942efb", + ".git/objects/50/64ca33170bdf9989bd7edd88d370ab19d6012f", + ".git/objects/50/73e25a1a2bb7dbfebef63ec3878c1561913402", + ".git/objects/50/7deca340f1d77b608e7ee9d95ba5e7e66df9ab", + ".git/objects/50/897546d8a249e8e546e105b9f9665b1a6ac9ea", + ".git/objects/50/93a3c5576f6b644a490839f2cac7195068817d", + ".git/objects/50/993894f3ea8b72fba02210c8529bebba5575ed", + ".git/objects/50/99e4c737c7ac9773de683b1af2a44566ab7cf8", + ".git/objects/50/a2cfb41bad7f08458c9b05b66f1d999779dcc6", + ".git/objects/50/a3cd23e894af02e95faf01d66785d43a26bf35", + ".git/objects/50/a5ae23c969632a9bb05aa6318037574e47a4c7", + ".git/objects/50/a9be6ecb90b93bcd550edb21f942adf40c4fab", + ".git/objects/50/ad433c04f6f14b319fa79d576e34957f03ca4c", + ".git/objects/50/b08a1ddc15f825706397b3dfa32b9b702996c2", + ".git/objects/50/b7c3943371a6f18bb89338db282113b7dc7585", + ".git/objects/50/bd5c3c5d98448cb035af16efb75e8c20028c99", + ".git/objects/50/c23284e55419431c3974ad462093e750d4426d", + ".git/objects/50/c4a4e1d460aa2ffd27aac29907283fbb2079d2", + ".git/objects/50/c67d3977c1c8b3eef40e591720b35b7db9c5f7", + ".git/objects/50/c6b0b69f8ed8b23043a0c2c15cc550ee71d71b", + ".git/objects/50/e53bf4c1e4a74f8009fb59f4663a949f4ebdcd", + ".git/objects/50/ed55a5095d69bda78f657e592973b25fdb3e9a", + ".git/objects/50/fbb4f73f583ea4107b46e22218efc9af84f6ea", + ".git/objects/51/0397156f04aa3a7857d2ec3fe8d3d2b5890117", + ".git/objects/51/0ee765cddc94d76d27a272410a0b68ba292f11", + ".git/objects/51/0ef05931f92727113eb8762d4607c9c8200de7", + ".git/objects/51/10e41bb2636e77d453e314ebfacf59b99df9df", + ".git/objects/51/16e3e0c757c3c42c561aebe77eb0a0f55cdce8", + ".git/objects/51/1ecf1e966746624e5a707084fd0c3d0039937d", + ".git/objects/51/203463190a5b5bfb8c692c445b44ee97d974ae", + ".git/objects/51/2c1b8049e15c21dae1f3c32e7fcb266ea900ce", + ".git/objects/51/36bb15d6ad230db2c35a42abefd6d08198c118", + ".git/objects/51/4f6e04900e67ff58c409e9f891f68b5228506e", + ".git/objects/51/56e5ea5962fe769153b7bf2bad619324add8dd", + ".git/objects/51/58ba88ca5488c7da7e27fbc6df6dc8d28daab0", + ".git/objects/51/5e58d185100d23c176f08a36bb38e79bd2a3c0", + ".git/objects/51/5facee30271921ba589aeda2e7bc91ca62e7de", + ".git/objects/51/71bda9ebd87a4491eac154d5452b40c95e6627", + ".git/objects/51/79d7c18edc2fb46724415aeb5b7d7cf2c1970b", + ".git/objects/51/802f5d406bdb1e9d805a8d96b21e042724e931", + ".git/objects/51/87b0a63a24702cba6c3d63a8af679a765dba3e", + ".git/objects/51/8fd89afc7013fc8d367d889e52aa0f27683d2f", + ".git/objects/51/a922ee5b53ca81c4fa07c4179f6f2b81a4d423", + ".git/objects/51/b4d25ff61f57fc36b01aab6cc278aa7b784a48", + ".git/objects/51/c815196a2d734521e0ae85fcacb28668504570", + ".git/objects/51/cbcc62492b8bf891379791946e2467d0dc680d", + ".git/objects/51/e5751a00af88442c3c4e98c73ce59ef6909859", + ".git/objects/51/ebd6ff2a17d74c5c5ee3df241bc83544b51313", + ".git/objects/51/ee6471e08992419ba99362668ece4cecea06b1", + ".git/objects/51/f2777683edc4f4dec725c28c6ccfdda1292688", + ".git/objects/51/f5895575dc91d9910f6491607c40e5f8430e8f", + ".git/objects/51/f8cb51136b58329c06fdabae81d8a9fc9677e0", + ".git/objects/51/ffbc284ba574415f75ab5898a523a961c39d9e", + ".git/objects/52/19da4ca2f1bf8981c95c2271defe0f871561d6", + ".git/objects/52/2ade8e9620e9cd83a77a600b2d0fb0097bf6ee", + ".git/objects/52/2decb09c07caf7df33b9057888da8e761f4e87", + ".git/objects/52/31473b00bfa3fa3888a8f75bee0ddd16fb7dc2", + ".git/objects/52/35fddff2b12e492c287e3e1824af43a31c20c1", + ".git/objects/52/3acd48ce7817dae090bb632000790f7855e4c5", + ".git/objects/52/3cf576eb3ab9ce7a84ee17978e2efb49f0f11e", + ".git/objects/52/6b8974835e788577062b20647c489898f517dc", + ".git/objects/52/6cd55a5ca728cea1b8940f83e00a506361e8a8", + ".git/objects/52/81213e38ab3aab55bc0262d9a94d8436134d43", + ".git/objects/52/8552374521397637651e9a15079bd64091a8e6", + ".git/objects/52/934894159228bba2cda35b964e26edd8d08dc0", + ".git/objects/52/975cbb8fe9b8dfb8ae54f0508e564ef6dc4b42", + ".git/objects/52/9b839df46910e22c4239b7045fc861816e30e5", + ".git/objects/52/a0cac793946b3f48fef434d65443cbf14c1af4", + ".git/objects/52/b7e83b942249b7576000834166bf72456e4350", + ".git/objects/52/b900600258baddd86c60afeadb363da1cb380f", + ".git/objects/52/ba21d4c87739948b99ba86ebcbaf9d84cb6606", + ".git/objects/52/ba99777980c8a5e71c9827e1fd72375fefd42f", + ".git/objects/52/bfae8caf51f9cbf75241ea55ec80cb7510c099", + ".git/objects/52/c29a0b15100bd712f235ffee0d42946b7f2927", + ".git/objects/52/c32f99a43a036f3f2484cee2370b7fa686d453", + ".git/objects/52/c450c455522f2feab14c5091c80ef3bbacc948", + ".git/objects/52/dbb4ee1cdf7ebc9d5bff286f805430bdbf8d60", + ".git/objects/52/de58f73527b100dc45a251174a71565905ef4a", + ".git/objects/52/ed44f64bc0eeed61c319d65b14d99cd544ee85", + ".git/objects/52/f106dd7f97bc0a7e86c42d076b0da2eaa7f32a", + ".git/objects/52/f289822c69878098bd3200e5129cd29adfa8f6", + ".git/objects/52/f517980f7744207c365d6047ba2505902e5bd5", + ".git/objects/52/fbb43c23b7a212c5a2bd951aed3be951b7a6f2", + ".git/objects/53/15af50d55f524d6c66c76cec84a97bbf4ee4dd", + ".git/objects/53/294ed6577f045deb2c1d358ee1dfd7519961d0", + ".git/objects/53/341265741fc3bf8d5b47ea6a1cf3172b3cc0ea", + ".git/objects/53/34537a843cd860d0d5e937b995d426c686ab04", + ".git/objects/53/570d71d090b1699efdf97989184a55f06a9974", + ".git/objects/53/59316eb2d38c779b32a13a90b70782cacaacfa", + ".git/objects/53/636f1e3156961446f99f0eaedc454886e897df", + ".git/objects/53/64ef0b91fc24472006821f5eb1136dcbd4fec5", + ".git/objects/53/6ac766363aebb1c6c62f42e6d2eedd4ab276ee", + ".git/objects/53/7930c1e0c84b18d68de99e4ba088c132a53c66", + ".git/objects/53/86012b7a6bc16f5eb4b63ec8d55772a10cba04", + ".git/objects/53/8af58bbbdbc3ec5faba3c87a671b8802383044", + ".git/objects/53/959628fe63f2c51c1f770c672b4cefa47213c5", + ".git/objects/53/996f0d2b96c521ff077a7cf96430737fd07479", + ".git/objects/53/bc0d5adea00e2d06b2fdb15f460415d3966cc7", + ".git/objects/53/c5f1207d303f01dc9a947e4a81d2f614e2aee5", + ".git/objects/53/d9b718c0bc2ce4b9129f55e8636b4625e5d51d", + ".git/objects/53/f9a335c51095c110ac7a6327c0b4c780ffc854", + ".git/objects/54/1266f7121235abcfc3444018f5e7fed8d51608", + ".git/objects/54/22edbd06286c031e6145772f1c0a4bb810a0e1", + ".git/objects/54/2f54863c5525f20eba32ff97812341a200a4f0", + ".git/objects/54/30b5832758846193388c3949718ba6c693afe2", + ".git/objects/54/343323c382f916cce7ae28fcf8650e498b5def", + ".git/objects/54/34e811684d3bf9e9e8a6ba704c60be4f71b76c", + ".git/objects/54/437964acfa8ffdf26c15f6fd3763da868aeb7e", + ".git/objects/54/4e4bf4c4ef8b79068539f8f90821ef38a8b4b8", + ".git/objects/54/63834ea95aa35a44d7bf3961841932dfd17842", + ".git/objects/54/64c9cfea2af71a02e3c3a1d7b14ec14657b509", + ".git/objects/54/6968b452c73aa84dbb63581b7fc4593b53e5a9", + ".git/objects/54/78f22af6aaff7b4ee5cd0e789ff1cb631564be", + ".git/objects/54/7a485922de797b7b6a487e99f0114d4e21c733", + ".git/objects/54/97140887c0db8e9da1af2aff6fac3569715bb7", + ".git/objects/54/9c768fe8cdeefd2862ddee816605129ab22bb4", + ".git/objects/54/ae858cf796abc5a5a2f24c1056d3b0412913dd", + ".git/objects/54/b16d697365c30fad0e4a4e03187ed4ccfa6779", + ".git/objects/54/c1b2e6f019bc2d6ea83ec332c433e1b909a376", + ".git/objects/54/ce73099ab1a79b4a07e0479b0b218c69a685f7", + ".git/objects/54/e8a7231a718c756003be22456a3ef2fb15e42d", + ".git/objects/54/eca2c8a3d70f34b2566e796d54ee487b6411f2", + ".git/objects/54/f47198543eaf2b20e75ce55e3ca81bea896c4d", + ".git/objects/55/02013f8985d2ab98a6910cdea09373bd958d74", + ".git/objects/55/0a9eecd076ea705cefc8a36b00cdc7b90254c0", + ".git/objects/55/254865bbc413b8592277a1bba80412e1b8fc7e", + ".git/objects/55/283938633ef9f7d2b07331bac8487ee6d2b598", + ".git/objects/55/2a7eaac23e3db26df72fa4ebaa4a46d2eb87c9", + ".git/objects/55/2b23730c74105c72d13b7e1f364a63906bf382", + ".git/objects/55/31e441119bc6a9d27faf81962f46d57f2bcbac", + ".git/objects/55/3c4de0de3a0a7d0a3e02bd5694a7425b327454", + ".git/objects/55/42309684a8f27691202032713ed54c8dde683f", + ".git/objects/55/4f8382001eb0a83426739fb19b1dad2a7d694a", + ".git/objects/55/5c86df3a1fd507c4606d582d779b2b3a2d798a", + ".git/objects/55/6c6512f5aa6784ff87fd49021d2bf15dcac175", + ".git/objects/55/77fc45821a156c5e92f187417e644028fd692d", + ".git/objects/55/78f5ca24efdce22a8463ed7a3fbcf5f2f98ce2", + ".git/objects/55/82456b7c4c8e6cc02d0a45c4b65a2f93d5fbef", + ".git/objects/55/84fbe78a80413c22cb18e5c3a09a9bf225889d", + ".git/objects/55/851e131552a2afc69a0dae79b4d44517f3dfdb", + ".git/objects/55/97703c364df22db22fd9bb1742d97d3c6a0eb4", + ".git/objects/55/9ccfa9136a0d00798a119786063e53b76237af", + ".git/objects/55/9dd393de32fbda50da6f26eb6efb2ee8a88c19", + ".git/objects/55/ab98ac45e33e4c06073a7a6d6d964251a1d56c", + ".git/objects/55/abe63a64ca89502db2cb01f491d969323a9e2b", + ".git/objects/55/da24a62ca746ce16629631efd4a15a3e589133", + ".git/objects/55/f63627c36824e65965f535af599ed8e0b244f4", + ".git/objects/56/1327944ee3751d92244552154c6c5c44ad7955", + ".git/objects/56/1331be2ced15548183747aa3b7f75b99d8d60d", + ".git/objects/56/16e3079106d1d25f75b3b4c3d6aebe82e455c4", + ".git/objects/56/19e36ec2f3a357aca5e8ba72312cb4396f1dae", + ".git/objects/56/1d7751dade3f8dbc42f12095798e082fd45a99", + ".git/objects/56/1f3c426f7729e89af363bb672ba45d0613d730", + ".git/objects/56/21f8c28dacb1c4dd0642fdb35659230e0cbe48", + ".git/objects/56/2bb0c3060b6fa2624b83301b61fd15c59cc119", + ".git/objects/56/2c35736583798fef3231f53a4f1aee1f93bc0d", + ".git/objects/56/308c91da2a12bd5bc744be77249722a4c0bbff", + ".git/objects/56/34264984908a5713dc35edd0ff46ac928b96c9", + ".git/objects/56/38f66f17aac9f1c6e801fe162c94526cecc558", + ".git/objects/56/4dcab1a6a2f965cd6abb38f906dc4e414654c2", + ".git/objects/56/506aec16571814f2f2845e3726be77d8641b75", + ".git/objects/56/645bab6b7dee40a6d3525992fbe71914a4fb4b", + ".git/objects/56/8f9a907d49ff2a07de4e52206c48f4e3fb55ae", + ".git/objects/56/924d41f6017d84006ab1ec1ac843450f96d5ac", + ".git/objects/56/9600d167667ef07471c25e7b97b92e9e95d52b", + ".git/objects/56/99667f4fe4cb9233c19b696409e296b4347c6e", + ".git/objects/56/9b9c254a85812a976255f6886e6791228cfa22", + ".git/objects/56/a152c4e4ffda62c0cb549279817f07fabe5582", + ".git/objects/56/a77fd2dedb7084c9fdeec68dd0dea2c99eade7", + ".git/objects/56/ab7eed86c491e1a0f68c0ae98b5f9a3d3b6c73", + ".git/objects/56/af708c261aaee54be0ce179293ef132971ee14", + ".git/objects/56/b0f6d29917470d00d3d0888a5db9ecf569e52b", + ".git/objects/56/b66219d5516744c85ee015ff4ab2c7b9ed5096", + ".git/objects/56/e932d73aa120fa1ba870fc736846d598d54fa3", + ".git/objects/56/edb7c244a5fe9cf4b7fc3f0da9efd69de4ec2f", + ".git/objects/56/eed3c94400825d10186b4f7cded78c8eeba242", + ".git/objects/56/efe67febcad652fc114d83a1f54d86633347e8", + ".git/objects/56/f5bc0058b1cfc7f9db4ca3c13a3e1c3512b232", + ".git/objects/57/0ca0ccc729ab4f26492a37e9aa378f6ce1ba61", + ".git/objects/57/21b9d98d87e244631e7dca0e7270202b22fbc2", + ".git/objects/57/24b194d354e4d800e4334e72d5e564a01e09b4", + ".git/objects/57/320d1534466d9534b7cb591dd1305e0c382b30", + ".git/objects/57/44a060182d7c2740179c127e41fce72af634fb", + ".git/objects/57/60a14894b1c7c77168e39af32628ef431eb2d4", + ".git/objects/57/62be83129e8383f54606093925794da528533d", + ".git/objects/57/6525448b1c3ecf9f5fcc7a6e54bd2f4870db44", + ".git/objects/57/68eff4e5d5f1cabb5b2c5953607281a503999a", + ".git/objects/57/6c9daba28e976dac888478c98e6dc099eb88fb", + ".git/objects/57/76026211f31b9b4333b1227a5bbbfd785f0737", + ".git/objects/57/8bb8b189c5a918fe29c35ee2c4f85af0ff5200", + ".git/objects/57/9999596b4dd262fd24f00cb0f0b801b1cf3381", + ".git/objects/57/d24fa33359e9edc0d67fb701dde786c33e546e", + ".git/objects/57/e3093982b7954d41596b8531f47efff69abdf8", + ".git/objects/57/ee19722043b0e5561fe3111a7d8771af8ed213", + ".git/objects/57/eea56a0065de5e777d1e8eef728fb9df82480d", + ".git/objects/58/099f10f8aa11850892d6acd2ba8bf4646f5857", + ".git/objects/58/0b52614c4e40db03867dd770278f39fe5ec994", + ".git/objects/58/0ffcad690b1498ab61b6f1a8cab0fa9f1d3796", + ".git/objects/58/1e5c33d96db4764ca7c004e783873aa2eb1d8f", + ".git/objects/58/1fcc5c5e4d222c524a44f77c4d0d6452a01759", + ".git/objects/58/1fd6a856072891a76d6c4625924d1e46e86faa", + ".git/objects/58/415a0b5dc72b71d4910844dc6bf3e124359816", + ".git/objects/58/42a7c131ac99a2f6a5eae69eb6c9557717efec", + ".git/objects/58/4644158870d5f0c0c332ceecbaf1a989d3ea90", + ".git/objects/58/482b1d82e8efa3019be42132b342570536aeab", + ".git/objects/58/65217a4cc9ed5587e19b193c39e44ee9415e8d", + ".git/objects/58/6aacbceb74d82bfa95deff7d0aa416ce4f15e7", + ".git/objects/58/78419c931afbb930c0f631aebb9711691cda93", + ".git/objects/58/7b7e3c37d87a4f40dd2466af1384b7ff04b112", + ".git/objects/58/88401adbaeea6c04ca5f903dbc0fe59207f50b", + ".git/objects/58/9376f0766c808873bce89cb4aad497b613481b", + ".git/objects/58/9a8cd36119c5856ad3c882f106ac5e4bf70b0b", + ".git/objects/58/aa99a63e0068ac81cd02947670bcf15d96079f", + ".git/objects/58/acdf959614b888979cc0c5d2e122f1155ca278", + ".git/objects/58/b6d79b1d05e5f118e7b78b48f8a1ebec51ac4e", + ".git/objects/58/b844463a68a09f705917132396b6519986873b", + ".git/objects/58/b9c22dd3fcac363b07162dcbd65c30931055a6", + ".git/objects/58/bf4663c1ad6b044f78f4880029a8dadc166f01", + ".git/objects/58/c20d45e8c2237e09d65f9b592094f8fad48bfb", + ".git/objects/58/c3eff264da6c1a31183d52193f854cd69409e7", + ".git/objects/58/c482d58de0b33073f0c5454fbaa6f994026db6", + ".git/objects/58/d334bb1a8b1f4f835f784fee35c9aa0fe3ea94", + ".git/objects/58/db22f5ec4459fa3a4cccb354fd88b26569b60d", + ".git/objects/58/dc978b11116af44631ef22d1b9b4a9dd6bdd0b", + ".git/objects/58/e21151024db4b496d6dabbbec1b5641c435222", + ".git/objects/58/ed56d4d8c0dd98b105cd08b4622ee9df1c8c52", + ".git/objects/59/071a77ad908ba387cc1822538d92d806cb6d06", + ".git/objects/59/083c9d2da5b2727cc89997cd1348eacd255452", + ".git/objects/59/1e77c1d09e7fb0b1d4f5f1208fdc059d37a935", + ".git/objects/59/210e9fe9e77368c9e73547c2dd382da11c8f68", + ".git/objects/59/2ee06ce30beb5b376d7dbf3f697a907755dd60", + ".git/objects/59/303e723a9b79909b1e94478fb779ba95b15855", + ".git/objects/59/3949565c1e715af657549ffeca5d8adf1a222a", + ".git/objects/59/3c41618451b9df53888b6b290ff79a78a0298c", + ".git/objects/59/49b6e88de57530c98a3a9c6d85e81d3a4abcde", + ".git/objects/59/69c5ab5688c9376a528bd0e38f6d1da9bb08a3", + ".git/objects/59/721bc36b8f72f819d237754bf7395ae5611b27", + ".git/objects/59/7a30d37e384df7aa20cc908b9ba95a03243ee1", + ".git/objects/59/884c09c8985d158445fb0b7a86adbaf0796d49", + ".git/objects/59/8d5a38fa6595e11b7cb95b9d7668aa841a296e", + ".git/objects/59/ba41843715dcf2af35639d09b7f3d9c92380ee", + ".git/objects/59/d29d0f4a3d0beed92229c04c1b96efae2b9fdc", + ".git/objects/59/d2b601b49e90d8ade5e43e3ca77e8cb7a2ec92", + ".git/objects/59/d4bf7b3592e7d0bb434b42682bc62604e23c71", + ".git/objects/59/d78e775449cb5c5833fb8ae53b549bc05c4f7a", + ".git/objects/59/f0fc2ee794694c9d85351bfa5b044e6ef9cfba", + ".git/objects/59/f42c0669d1dd17b2580b794fbacf8a9c797ced", + ".git/objects/5a/05731bb2a1ce51f2cb0cc04c76f64bc9412fec", + ".git/objects/5a/0d68f946fde3b630f11a518b1cf67e9cdc9d95", + ".git/objects/5a/2067778dafa7f0ec217d229d5751ae32c8254b", + ".git/objects/5a/2354cde8a435b518a8d246eaea3ba76496b379", + ".git/objects/5a/2a1740f037642f9a58b7f73ff60076b16789e4", + ".git/objects/5a/30e3494d84ae870b7f7bbb082ca7a5a83ad938", + ".git/objects/5a/336306dbbe21bf5a091c618d51fa6abfe12911", + ".git/objects/5a/3c43dbfc84ed7f4a13257912e6e898bb1c611d", + ".git/objects/5a/418aed2d06d5a4ad644bfff346ea16b9a1f598", + ".git/objects/5a/423ef81a843bfe9ab40b7f5a04528564cdc69c", + ".git/objects/5a/478c3e22cd5cc84d7b2dbc6348c3ba3b829971", + ".git/objects/5a/5179f6d66f8e6243f16def9e6b3c7ac60a1bbd", + ".git/objects/5a/56b087c0f7a3468a0f2d116733784d80aa2472", + ".git/objects/5a/60c3d4e67a3eeb16a2c326f2f49970c09b0a4d", + ".git/objects/5a/620234a3448c11754c4cb987845ae126469115", + ".git/objects/5a/6ed824c9e682e495b643dfc55f0f59a6d50d7d", + ".git/objects/5a/80c23cbf332275f8155e42dc8fef27dd6f9776", + ".git/objects/5a/8accad2b0852d878d585fd2a67dbf961bfe6b3", + ".git/objects/5a/96b99cbbc1a0bd6f61c961501a6cc27b744d6e", + ".git/objects/5a/9c8485ad6dfb5c554bf94dabdf86fce0fd73d6", + ".git/objects/5a/9d3cf975d685dec87c2ec466cfdb86ad5c8007", + ".git/objects/5a/adb5dfb565bfc53ac252d94cfdce09e8f8f7c3", + ".git/objects/5a/c513782e74513c8a1ebddf62415570e42eaf80", + ".git/objects/5a/c81d1118ed3827c478d6478a395b7cc51e4678", + ".git/objects/5a/c9b1a5b526cf5ac16d24dc0a928bdbdef2ae7f", + ".git/objects/5a/ccb279e2fe360fc6f527d6c28326584773c961", + ".git/objects/5a/d9c34b317c13e8382b0c409c930d23a5d1e335", + ".git/objects/5a/f2aec1b5d128885b7847b09afaa571df801300", + ".git/objects/5b/121fdbb2a0dea27ddfc52aaeccd3e39dbc871d", + ".git/objects/5b/1a24795828c16fda65798d7c37c41778ae1a89", + ".git/objects/5b/2150e0332b7ddc0a5d02f68eef6417fab318d0", + ".git/objects/5b/21a172e3c4f3765ce759d5d75ec86abc63ef30", + ".git/objects/5b/22418e020a983805ef57c1a073dc20cc36301a", + ".git/objects/5b/2600699373621a5cb0c4a23dea3e9c4f2467ff", + ".git/objects/5b/265062e53880912a9b41bf3459df1a64bcddb1", + ".git/objects/5b/2da425ae46f638de55a449608e7cfa74d907ba", + ".git/objects/5b/345216ed805ea524963262e75a6db0680fcdb4", + ".git/objects/5b/4896d6eba6e5d0bfb3be133160ea729e5ff9f1", + ".git/objects/5b/498cc360f26747287627fe810f925ec3938cb7", + ".git/objects/5b/4c0b30478f349bf31aab8e57d7eab13234a5d1", + ".git/objects/5b/4e7caf15100abad8104518ef0e3e241f7c8714", + ".git/objects/5b/59664ac9ff5f5b84b9a7eddae01656c7ee4a0e", + ".git/objects/5b/59a1fe93f623dd04cc0e364a35565c164a0087", + ".git/objects/5b/5ba0cec92426f0e7bd4dc6013592b523886ed9", + ".git/objects/5b/5ebbe3c81c9c5626047f78bee23ac51528481a", + ".git/objects/5b/63f2240b9b8bb00b353f248319eb7eaf152f72", + ".git/objects/5b/6774fe01c3a3e412581c405a2d874c57f8b611", + ".git/objects/5b/67fcf6b6c9c3be96b2c95ef86ecf9b30d83c40", + ".git/objects/5b/6bc2cc226b1b7d7347e734cf144d1e169cb4e3", + ".git/objects/5b/6c2cf9d3d4e4fb301c778cef158e08cc05045a", + ".git/objects/5b/6d25ee724cc0ba531b62b31b355112f0c7af5a", + ".git/objects/5b/7458152a43de31308f0fa84915a29d9035cdd4", + ".git/objects/5b/b357ea9917804f667fce5ff491335356be2af5", + ".git/objects/5b/bb4c538409fd18ae55fc52740cb606bb95af78", + ".git/objects/5b/c1a50521abe6d5eb101f335dc3dcd62c98cc81", + ".git/objects/5b/c1f0622e16a92ed096250dbceb54e7b45397c9", + ".git/objects/5b/d3ec343465386d728e6d808884e32652945a2c", + ".git/objects/5b/f47c71627aa1920b70810902cf58e55c1a96d3", + ".git/objects/5b/f6a1a9e0e6cbcd5fed8ff6efb4a9ec0da0de47", + ".git/objects/5c/03bbe1c6baa00631b37fb9ec509b898156895f", + ".git/objects/5c/1640e8725cbefcbaa9d361ad1abfbd65632b88", + ".git/objects/5c/1f55fdecfa72694169088afcba1fb6082dcb10", + ".git/objects/5c/2863107d71b76458bc252f247e8b230bceb227", + ".git/objects/5c/34c1ac0d40794227a9ac2080bde88c47fdf1df", + ".git/objects/5c/51585c40f2eeac3d7b6b7083d530855cb70714", + ".git/objects/5c/7af833fef784a2073d7de5772ff29c9dcef5f9", + ".git/objects/5c/998ba749c66e7305da94d2a258aa02058ca2cb", + ".git/objects/5c/9b9075c503e57ca3315adbdbe88f6ffc7e172f", + ".git/objects/5c/a6f388d803d394fd69bbb25feab6f13917385e", + ".git/objects/5c/ace7ab2a22725a00c81a765b84f140f57f681e", + ".git/objects/5c/ae1ad7b2a027e530890fda8e4f87966b94f71a", + ".git/objects/5c/b1fb5ceec74caa5024cb77c0bcbdb4aed1edf7", + ".git/objects/5c/c709ca00fd76f119aa6d104026d2aa39517b9c", + ".git/objects/5c/ca752eb8512b4f27345eec949b0215d045f53e", + ".git/objects/5c/cd52f6fb32fb23b4c01e3bb574f014a4fa9b82", + ".git/objects/5c/cdc4430b77fbd89199c9a1f515405757bbe19a", + ".git/objects/5c/d80c47c04afeb50f36260d9878799beca23bc2", + ".git/objects/5c/eaa7c5b82402587759a4ac6dfc1387a5471666", + ".git/objects/5c/f1e4db7511eb4cc9598901b95821a548f577d5", + ".git/objects/5c/f7c84b51848295f03afe570d2a0a83263c5149", + ".git/objects/5c/fe7f212bf4f038ce4332b9f06762315e373170", + ".git/objects/5c/ffd02368e654000ad5657326e70cbd6882b087", + ".git/objects/5d/050bf8a7fa440e92cdcbad6c3d93e58c3fe14f", + ".git/objects/5d/084fbdd262180ba6bb90552fe6bc490958fbfc", + ".git/objects/5d/1a17327950df3d34f453dda6906d42d2b1562e", + ".git/objects/5d/28f535d9be08e5beac569760ee914b38db9148", + ".git/objects/5d/38cd0a274d9d53ad23383da9f6f32adcdc1520", + ".git/objects/5d/3aafcc26da767d83cbb6393e94453424d4445b", + ".git/objects/5d/48359b8ed2a4c8cd1d42f58884e2638238bb97", + ".git/objects/5d/4b142cc0e11e37a0af879ef9eff72f05def1ff", + ".git/objects/5d/540105ad6385bf1cddc00eda866786331915e6", + ".git/objects/5d/660844f1352c2ac14d0f800171a6d1e540485d", + ".git/objects/5d/8338c0d5223ee54535e316111a2ca31eaba6a8", + ".git/objects/5d/83f14d0e485bca5a370051da9bc4e04cef3b6a", + ".git/objects/5d/867a6d760b151d9c6b8a78961a360aa61e2519", + ".git/objects/5d/87982051ed9475c1fd5471506931a2454411ef", + ".git/objects/5d/a8be53a50fb3996e21a3d8c33299c47bf0884f", + ".git/objects/5d/acd4009a8ec03b712c628efd15b9777c976f7b", + ".git/objects/5d/bb8bc4c1db6d5af11858a1e112ec74794ea463", + ".git/objects/5d/bf69db0fc303f56e8dae7deb48d84679631a06", + ".git/objects/5d/c01a8be0d1d2f101135c99a69896a4547a2a0c", + ".git/objects/5d/c41a777ca2e4855a044ec1dbd68907fbef3ebe", + ".git/objects/5d/e3accf1ed2d048be2025c93896355d7c067475", + ".git/objects/5d/f215114655afed14df586667875caef275c8d1", + ".git/objects/5d/ff22d139c63828f781f716e25057969307ae92", + ".git/objects/5e/07a194ff1597b51da7c009959132d0c9fc55fa", + ".git/objects/5e/0c058ac64414e022609830fa1748656dc93052", + ".git/objects/5e/0db8b960be5bd61167e654924d95912222b6d8", + ".git/objects/5e/1209b609137c9f77ececcea02ed5ac7a7adadd", + ".git/objects/5e/13d3a028f96aa49c9680509471a80cc5a0389d", + ".git/objects/5e/1d217a8125eb6d457395ae5a7a3628eb4425cd", + ".git/objects/5e/2b3aec1d9b7d78de8b4e1e33ff42504f2daca3", + ".git/objects/5e/3243ad3059d9cf0d62ec42760517f48545cafc", + ".git/objects/5e/3b6f99967652625ae172085cf22a9e8919b6bb", + ".git/objects/5e/41561547ed9b7e5a6b529403704581aaaff4fe", + ".git/objects/5e/471ca3b94087e7db6f99d475049f5281f17c9e", + ".git/objects/5e/4a67a68349ff99cb77e4e7accaeca54c5e6726", + ".git/objects/5e/4f8dd3e1f733541e5ba7655c6e8d97a15db8af", + ".git/objects/5e/6398a6e58e370c7b658639425023046aa60eb5", + ".git/objects/5e/698cb5a656e01d6e9ab97ba7bafc16d678e2fd", + ".git/objects/5e/7fdc4908f98b0d37388fb51695c7215e9e1009", + ".git/objects/5e/8beae6b12dccd8066ae51306eddd52f80a4176", + ".git/objects/5e/91e8ae224482a8c1ad87f8e486ec9ee1164261", + ".git/objects/5e/989a5ff0a183fd9c7908625edc7ea5d56a23f7", + ".git/objects/5e/af8ac580bb6e9a1df59db0c8f82a90c21de4c8", + ".git/objects/5e/c35296f6b552fcac47814605f3b199d6e75f6d", + ".git/objects/5e/cb62b507591d807e9d85af563477dda2b0f93a", + ".git/objects/5e/e96cf4d0a27dcad890dbaa6faf114f507bdd3f", + ".git/objects/5e/ed714839a74ff21e3bb4371e2227cc6cc0887c", + ".git/objects/5e/f9220dec71d8f24e92704bba1b8fa96b2f9151", + ".git/objects/5f/041790de67c0fdb03dc6f23b0fd39b7c9e9a24", + ".git/objects/5f/0da0c1aed64f1792079132b473181830d6ec25", + ".git/objects/5f/19970dc53357da537fb3cbfe65ed91a586e094", + ".git/objects/5f/25b9ab13793252217024537436a57664ee5c5a", + ".git/objects/5f/41ce3b516a63ef53039211aafad8d6debbad5a", + ".git/objects/5f/5cdfee935887ac38c04ae96ac5051eea741a54", + ".git/objects/5f/60a868aa1622776afca0e2be390b304c914179", + ".git/objects/5f/6aee2752cae3d7369990fd9d27540ddf79fd3c", + ".git/objects/5f/79bc823abe4e7af7de12b03be9542d794964a9", + ".git/objects/5f/7ce2ed5876927e251a0394f3a95ae0dfed2f15", + ".git/objects/5f/84957513738517fd722edb3c31adaa68d52aa5", + ".git/objects/5f/9253a5534f8d63af43789bbd77f7fd34c38da6", + ".git/objects/5f/a72a79f8c6e22a29b8a62600b00bd047a9b205", + ".git/objects/5f/acd8ee2fe7304f86b4108e661579a921066bb8", + ".git/objects/5f/c0b62216fcc98d3104d3b557ba52456dfbb1db", + ".git/objects/5f/d2346175fe610b18d11f502ad813483cf11b34", + ".git/objects/5f/e0c49d9e34355fccbb503724a3f2cf971e22a1", + ".git/objects/5f/f0a75b6687ed872542d394f2a8eac87a599b27", + ".git/objects/60/00c7b92039f3891c48f5947954b63c0a4a460c", + ".git/objects/60/0a80e93856c0765c983f02908e41b0309169e6", + ".git/objects/60/0bf569dee46233797731909fd869547e037481", + ".git/objects/60/1781017cef0f0f857cfc7654eee145191f569c", + ".git/objects/60/2798adc96cdedf2fe0971dfe52d44dc06a0fa1", + ".git/objects/60/2ea4e90e3266512059a913ba86b84057e43247", + ".git/objects/60/40c5785b9b7a141f48cb60e3a5a89adcbea7d8", + ".git/objects/60/41bbf97fd29df472e9d65e58733b7365f0c86a", + ".git/objects/60/41e92fac63cf34d3da92e0eff53c55c2b20cdb", + ".git/objects/60/4258c5adde81e67c7b97e285154fc483b71641", + ".git/objects/60/458edafbfe683c2d5057f757ef61e3039a8153", + ".git/objects/60/4aff4f58d880a9de33149a246646c685d04e6e", + ".git/objects/60/4faceba3daea01ed739b151b899d7eaa894257", + ".git/objects/60/68f7530ccc859f52e55d573aa69f35c0572990", + ".git/objects/60/6ad534c98c71bc3327d0ef54148f8f25098f6f", + ".git/objects/60/8837879826565d2a7f55c62dbf3fe33e35684b", + ".git/objects/60/8d5dda2e8ea444126057e30963cd6ac76382d3", + ".git/objects/60/a7e0c308a397e0184586f0f31006cfc256c9ab", + ".git/objects/60/b4313ba8d455071ad711eb320707f34eea6518", + ".git/objects/60/c58123de47b7e2b1cbc48237626abccbeeec12", + ".git/objects/60/dee6706baf1d29a6a79ffeb014127209c3f107", + ".git/objects/60/e40986b0a76a068a8165e198b4fcf131c6cb9f", + ".git/objects/61/17f8636fa1eb9004aff8cb136fba201b22bb95", + ".git/objects/61/1a0231bd8f88ab9fc4019127f2ac614dfbe131", + ".git/objects/61/1a6721d38d3eb6e1884120a80b68bc3ceb8244", + ".git/objects/61/2478e8e2cd3b9526c4c190f9bc7636f41c35b9", + ".git/objects/61/254a6422dd6ac5b89f72f95383d09947fd1089", + ".git/objects/61/32ab01c4557694a78e385417c0ea133261f27c", + ".git/objects/61/590536df668f793b2eb0ce5efcfad5819b1eb8", + ".git/objects/61/5a98f4cf70ca4b0028d72ec212b38132f77337", + ".git/objects/61/5bbebc300b9ea8c9bb57f36a4f2a27f21cb20a", + ".git/objects/61/6872c6c0b5f228c1f5547d4a9ef9dc0cd94e7c", + ".git/objects/61/6c612e611cca20a9835a8fc9171f74b731992f", + ".git/objects/61/6e881b008123a7cb96d99523d28cb332e58862", + ".git/objects/61/81744f839bbe810ea3bdd320baac964effb8e5", + ".git/objects/61/8bfdf52c5b25d25112e1c7e0eea1128ebab97e", + ".git/objects/61/a332660b013603cdaf68e8f6b2ad14929128bd", + ".git/objects/61/a37c0f19187bcc6b9c19da184b8b269cce58c0", + ".git/objects/61/aaf30437dd4f3a888df1d52ac379e4fe04270b", + ".git/objects/61/af5a06183439325d2782c53dee348969834348", + ".git/objects/61/bebeba369c204c251ac74b918c1e467407a188", + ".git/objects/61/c13cb55cc43801944c5b0133129ccb185b6894", + ".git/objects/61/c1f225828b29834c8710101046ef9f516f2b01", + ".git/objects/61/c6306cba1c50fbc996b483f51aa3e36164f8e4", + ".git/objects/61/e0bf5c66d322f8d24826109ce3c7e5bd64fb1b", + ".git/objects/61/f4ade4613d274adca7f230196347d728ade6dd", + ".git/objects/61/ffdd7aba1de9513572379697ba152038f44a27", + ".git/objects/62/0ee97fd63bc1858f6a7c80927d3cacd7bc31ee", + ".git/objects/62/1aee050f83ddf726c9adb0292fef8fcf612f46", + ".git/objects/62/249d07a12f399bab9e824ade42a37ac45513e2", + ".git/objects/62/3afd1759d2542c6e4170b4a50118a013f1ea1c", + ".git/objects/62/473e0505b6edc73c8ded6e52a105de7bd5d3d4", + ".git/objects/62/5890c979e56867548e27c65bbca41b519a5750", + ".git/objects/62/61b040dc6ac63553c1b9d22d37ad5990b38eaa", + ".git/objects/62/6425b8d3dab5595c90f576ccc4e9ede5c60ec1", + ".git/objects/62/6adc40b2e71482ffc1e63a39e0223787a4b14f", + ".git/objects/62/77c2e456a14fde3078aee4e51abe57519596d6", + ".git/objects/62/7cf2111cb66b7ea14ccc59cd69ab249fb40e03", + ".git/objects/62/8eed49c65a7c45fe3ecaf4997547bfdc2a67a8", + ".git/objects/62/b0fadc50e915acc0e3b2982bf7f5e133babecc", + ".git/objects/62/b15be60d08f9f3f6179c9e3cbe7dd94199f221", + ".git/objects/62/c09c7f77469df690d204d609dc3e794b9a6742", + ".git/objects/62/c375ebc7ffee6751ad961d033b63deb76155d4", + ".git/objects/62/c77a44914913d00835e530be00984511d34d1b", + ".git/objects/62/cf51d4b008664db876abe17c80dffc8e908655", + ".git/objects/62/d238d97401135110afdfc4fe2130c5a9cfaea6", + ".git/objects/62/fb7984d8f549a783bcde0de4c7532411ff01b8", + ".git/objects/63/25e5fb5ebf2d78ae78f4c552fce21ad06351e0", + ".git/objects/63/2dfb78bc13b0e1713b1a80535403a3510671d5", + ".git/objects/63/351c9a68799ef2431d68a1064c67dc83232b94", + ".git/objects/63/3a191a3bce76ee672c0fd4e26a36399557e1ea", + ".git/objects/63/3b41c1c50085ebe6a1cbdc20391fd9211bc1fc", + ".git/objects/63/5e97a0cc470b78f131218183ef7f2efb7b53d7", + ".git/objects/63/63c0482072d65c0c91dd4157f3c00c25cd9f32", + ".git/objects/63/6aef7cae9459d8a71fb52516be11a3476994c4", + ".git/objects/63/70781584071ad9b2e5ee378251d2764bea33ac", + ".git/objects/63/71ba88de8192d68f71e4740f1564ddeeacb5e9", + ".git/objects/63/7415c0c2a3dfe3541842debce336445f8eb53e", + ".git/objects/63/757e76ef29d97264e5621494f2aea85ca96ab9", + ".git/objects/63/8fe7efaa022766783103968c421de289aebf6f", + ".git/objects/63/96c321364d63dcfd22686c767d3dde3ab1c306", + ".git/objects/63/9af403b58b0c99c728d5d0757f22bc358be94c", + ".git/objects/63/a2238e1685180e29d04d55f99f2ef453ff76fa", + ".git/objects/63/a5b78a79eed53cc6d5bffa7c9708bee579de18", + ".git/objects/63/c5e213ab4d996788f3a3819da397c4cc8411a2", + ".git/objects/63/c8e4b27dde632045751f83f984ee889947b002", + ".git/objects/63/ca40fda8d921aa0f4f3db4987393ccc7b4b65e", + ".git/objects/63/ce941b30f4fed489aba9721c6c93d60d00a492", + ".git/objects/63/d17df4e06c1f394d6807ef3e8e03a278b44b79", + ".git/objects/63/ecfea4cce1dabf860c525e9fa319237519bc5f", + ".git/objects/63/f40363b5036691bf7267092a97bb5c0c983a3d", + ".git/objects/63/f60586165c222e02f9d96800c5feb44425e358", + ".git/objects/63/fd2dbf50f3f41ac3d98614b84fe7c84d5c7446", + ".git/objects/64/0ffaee52663c4d567ce521b02d5452aad11989", + ".git/objects/64/1779be5aafe6d5449d3cc832e302225947a59f", + ".git/objects/64/18f7b29c7534105df6cfa2845505dbd4f65db8", + ".git/objects/64/2299ec9f2c0a05ef39d0f9f54b1ca8adb1c9d8", + ".git/objects/64/2a8b99e2c77e4017ef8a90a219bbafce8798a6", + ".git/objects/64/32610bb63409df56f86285f260c0ec8aa939ec", + ".git/objects/64/35bb82e0ed14448c13330da2a54dec17780706", + ".git/objects/64/38a0fac77d4323c818bd720f1df44034a7fc47", + ".git/objects/64/3c6f962ebb38ee80b655b499d215b1ba910521", + ".git/objects/64/414e4727d42b5f24eaa0ce422aa7a3daac0830", + ".git/objects/64/4417e09629e9f200b88756b2b87e4fff0b46c0", + ".git/objects/64/44e467ac89e18afffd0a39ba5dca47e8a0f968", + ".git/objects/64/64471b789fd3dde43068a13048e3884064c393", + ".git/objects/64/688ad10bcfe0ef81d32edbe6326d321f3a2a5c", + ".git/objects/64/7018540f1006c3fcbfaad46be2b71d497c3793", + ".git/objects/64/8680b06c4bd8dcf071d1e4eb9b21dfe0588bab", + ".git/objects/64/8c89a21207c12d3e43014fd00fbd79165a3f76", + ".git/objects/64/909b79ce4db8eac364406bf05de9d58bc17d4d", + ".git/objects/64/9630d5aa92ce3003995fc9a441242fbe632f0c", + ".git/objects/64/9703d80dfa21e086eeea7f3a0229b1ee785234", + ".git/objects/64/98c16e71ab5c3e142ef0a0c59259d3cf34da4b", + ".git/objects/64/a0f5e7f6cf0bf5a0378e0852b289a66af4a971", + ".git/objects/64/c44985ef0d9a1fb70bb2a0a96bf8f45cf78757", + ".git/objects/64/ce16ef067aa66e59305f5a5fcf022e6f8a0b19", + ".git/objects/64/d633003d746d2e43b420670e3620ca5a0fefdb", + ".git/objects/64/da219a00ef495d801d0fd72ce4c1410913c582", + ".git/objects/64/e2f8c438cf9039ef7faeadcf88992f51f509df", + ".git/objects/64/ef58b92e49a928ffdad92f7d42910090771f3b", + ".git/objects/64/f895f63eaa1bbb781653c0829b1c54d3fd3087", + ".git/objects/64/f8c9328c82ae6ec0e8535cd1593fa625155a54", + ".git/objects/65/03eab907028e91dce6090a3396c42a3eafd935", + ".git/objects/65/0cca78fc6279ae8e9055582b5cb2f8f8b121c3", + ".git/objects/65/0ce66665dffba169fb14bcff090712dd198e66", + ".git/objects/65/105959b99d29bb05733aee6027fe29a0bdc0d4", + ".git/objects/65/112d39e1d953a5c2f9b9b622edc045de5ba35d", + ".git/objects/65/2868c21e1802b70767b93656027b1280da0829", + ".git/objects/65/2f63838ab964ba971fe802dabc70c749f18ff9", + ".git/objects/65/3bc79273787aedecb7fed3bc7c924299f80ba2", + ".git/objects/65/3d2852a0cdaac007d4514ce4714f04d0c5051d", + ".git/objects/65/5379e3bc30b7d878ea26cb491b7bfd43cf62d1", + ".git/objects/65/578619b76cf3706232e913933b44efc8b32d8a", + ".git/objects/65/608afd279849a449f1b2f9a64d57d27ea1cad7", + ".git/objects/65/64ec1a96002e69650f8487710dbb1dcf8045fb", + ".git/objects/65/6ba48eac1f40772ef4e724872ee9f8296d7c72", + ".git/objects/65/6d7c71cc857a1a8a2043a437f444aa1edbd2e5", + ".git/objects/65/78e363bcc76e6c82098fe33813091433a1bba9", + ".git/objects/65/8b778b00a481d7473f488941afc3d21fd288e6", + ".git/objects/65/8d0446b02197c2ac91e0c51d29ba29d7b185c4", + ".git/objects/65/8f58dc7337208d16c9059e6b29bb918baca04c", + ".git/objects/65/a8921b8a6e6b2ffadde95994053f0ba6d4fa06", + ".git/objects/65/b287faa640ca1b7bf03927ea70f01495b52160", + ".git/objects/65/b6768004ae0df22d4e432c988a162b6256baeb", + ".git/objects/65/c5926678315aaeb35998525465d49bb8c8e7d7", + ".git/objects/65/cabb361973b4263dedc884f39041a0845aebff", + ".git/objects/65/d287f0052545b93bf74c15b29d7feb6b00a209", + ".git/objects/65/d37405018cb5adcf1d7b870ade90a49e12a58b", + ".git/objects/65/d4a2f822a4769beffbfb169e80f68a4a50d4b6", + ".git/objects/65/e9d5c3e820be0177af564a2fac5fa8e7dda47c", + ".git/objects/65/fbcd8e942784369a3773a84219fec4430d8981", + ".git/objects/66/071bf34279736bf886a9a7f2010d8d366ff787", + ".git/objects/66/0ea5b8ae4c650815f18e7fd0ffbf40a833d0c8", + ".git/objects/66/183cfe77985580882b4780a37dafdf1774adaf", + ".git/objects/66/27178b8e1f2fdab0ada62c9282a6a438adc153", + ".git/objects/66/447397514d0423f141193e9be59f97cec8ddbe", + ".git/objects/66/4b0d6b3c48c85ca7eff5d184b4909e55f919f2", + ".git/objects/66/4b83a3e96c7146a4c4917c49443259493df196", + ".git/objects/66/6a387929c1e7dd31889a26ee5a26c7dbece468", + ".git/objects/66/6dab6986a676ec81741eb238b954e723cc78da", + ".git/objects/66/755f2d84078a3589b0f2e991ee3110e4f425c6", + ".git/objects/66/7cf4814fd6f4d53d6125413318ac709752db45", + ".git/objects/66/7e7ab8e09531e9707255b4865d8324649d881a", + ".git/objects/66/82e9e0d60606f135238f850b203e3881038e36", + ".git/objects/66/b6a13202402ec8b48c73afcb3758b29a9be1f0", + ".git/objects/66/b9e63245fe48cd84e094836863805e90149814", + ".git/objects/66/c3a9b5187ff1c4b012d7e5a6bb1d42b2c082b6", + ".git/objects/66/cc1bd83cb8bf6170e57fb363e78878024bc64e", + ".git/objects/66/d62e01eb9474963141306367eb5bc563b4ca27", + ".git/objects/66/d76c0f30c3bb0e3d45b25df9edb7f40e5d4ad2", + ".git/objects/66/d8f3a3d39f69a66737d4a3d70ed44d60c96582", + ".git/objects/66/d98d71a26cb41681740c6c825082054863a6ee", + ".git/objects/66/e7ff6e980684256aae57b615603d9f305ad6fb", + ".git/objects/66/f078947ce0bd7b00740379cbe23cb3168793fa", + ".git/objects/66/f1deb7430893015460207da5f9af492db74006", + ".git/objects/67/0422d9842cb3d587bc41fb06e859e037507029", + ".git/objects/67/0aa27a06a2df88674b126d02051c4a1caca8e9", + ".git/objects/67/0db134163753ffcddea49fa07dd23c273e75f5", + ".git/objects/67/0fe031d4ad7daaaf376b5507be92f794cb90fc", + ".git/objects/67/2241926c311919923da9ccc06c3641ca184fed", + ".git/objects/67/3dd00b1872734d6890c5e6406d7398786ce5b4", + ".git/objects/67/443118f23a92fce351ac6e87e48cc478f93967", + ".git/objects/67/546eb7b256a29a06b6876ef6869da4d80f729a", + ".git/objects/67/5df0c99b54b9df746283996dd8d7c072fd5f59", + ".git/objects/67/62d53cddc1603d5a1846ae5bd66b95b9be2549", + ".git/objects/67/64a762f45b672c32a793c5cf94e9b0b3a73d68", + ".git/objects/67/72e2e8429e2ba060816e30c1dfa907bffa61e9", + ".git/objects/67/77acabf9408a192be2ca7a47401148e4cf2f11", + ".git/objects/67/7cbcea89fd7be908743e78998cadfc3358a514", + ".git/objects/67/7dc878cffbb187b38057b912331cd303d152a4", + ".git/objects/67/8398666226e81357f33a27632d10ee6e0a1322", + ".git/objects/67/8a6a9b787b753e60b34ee1762fede71373b01e", + ".git/objects/67/94d19d6f813f98de3585760a8c446c50a46bb1", + ".git/objects/67/a157bb966acdc8b8cfd29ab68d92dc7a8aa8b5", + ".git/objects/67/a8eec9ff7311ea84607c676ea29cecb5b45e53", + ".git/objects/67/b8702ddcfe6ba7cbafb6602101b271577dd64b", + ".git/objects/67/d219062615249f771fcd32ee8fcfe754eb4c87", + ".git/objects/67/d5e417a54724fcd5f9f8e011a86afd6c3e19ac", + ".git/objects/67/e4b6dd056eb16dd61a6f06ac2e4fba969b5a02", + ".git/objects/67/ed4fe0425c225a0b9ad99273e0e056ae70a300", + ".git/objects/67/ee242e4666a0261c30da679e05d32f6553097c", + ".git/objects/67/f2cb6eb495c0118a141f2d59fdb4f2c0f96e1a", + ".git/objects/67/f46ae5d9fe46d75849b14662a7c0378345b832", + ".git/objects/67/ff4a521fe932d38eec61e2df102317675927f4", + ".git/objects/68/01135f2af48818b0cd31eb3cf1249a83522f17", + ".git/objects/68/1c0f3ce65bff3dc01aa75a49cc65e5d86f1c79", + ".git/objects/68/1e99b0d9de998129ce6c7b1ed2c32ff8a7fcde", + ".git/objects/68/1eb97a7b948781f3aad6188a32ee2e74337b94", + ".git/objects/68/23c390d2900b8a48c314d4b2b817747079f68c", + ".git/objects/68/27eb07bcedde20c21320b7daf7202372e36919", + ".git/objects/68/3acdae938ccf4879b728852ff820dfe09885fd", + ".git/objects/68/419f6fc5855336e09b764b30bcb35b07367f15", + ".git/objects/68/503cf3cde6839936b1e43fb738bf1d11e8987c", + ".git/objects/68/5cfd02a26b66443e3f4e4693f63dfe9516b93f", + ".git/objects/68/7aa9f8fe4685a4a7427a57b67e53413668ee11", + ".git/objects/68/7eff86be9a5d95a375f25525a81c517b173671", + ".git/objects/68/825fa77f9d5420e1ce303e21a4dabe3fad1917", + ".git/objects/68/82afa1e2a5aa915192dcfa95a6fa8bb9a0928a", + ".git/objects/68/8528c7ee540d15351d27ef09e24a08ce16b156", + ".git/objects/68/8c6926e02f98f931fc1c4952c11fafe547608f", + ".git/objects/68/90e91169a9a541942c6c7813cc1215397d5c05", + ".git/objects/68/9bf99f98a8d39800806cc226cbf76dda5c1105", + ".git/objects/68/9dbb9bdb92bbde1fae77f90ceb8ca669ba1d89", + ".git/objects/68/a1e6abc8a07a02c92fb1e98e7905f898d98a52", + ".git/objects/68/b1bddcf519e354afd713cbe40ca09a6dc3cddf", + ".git/objects/68/baf3ac2fa56866eb669ad94d6d418973c18344", + ".git/objects/68/c58d8eb5ff9555f90164a99cf5aed92418a025", + ".git/objects/68/c8c5778c19dd99d133e3c16782184911bdfb55", + ".git/objects/68/c8f39ef0d374afa4a1b8aaac50c7b65c0c3940", + ".git/objects/68/e536a94d870b27107d7a33a7e5e53be708fb56", + ".git/objects/68/ea94478b48adc4576560c72d446bf60ee2eaa7", + ".git/objects/68/eb0b4e39134814d66595b7f288a02c5e8f9b77", + ".git/objects/68/ecb03ce5154288ad67eef2cb722fc7ba17d602", + ".git/objects/68/f0b456ccb0252b833320d14223df34d2c7477f", + ".git/objects/68/f62ce395ce7e6df3520f8f714d56a39314e333", + ".git/objects/69/14f964fe2e08a9e55d601a2df6d5de9d49a5d8", + ".git/objects/69/1723757e71c64ef26f8f18f2b727a8c5a1f61c", + ".git/objects/69/31413a85aec621dc9550912b70d24410d1d7cd", + ".git/objects/69/3eee84421202a8feb595cadec3e911aabae665", + ".git/objects/69/5588beb284c9dd705ca8c7659451ccdc2fbb41", + ".git/objects/69/62d7effe49b44cc1aceee09db494adb6b88058", + ".git/objects/69/745ac9bb8641aa51d17f0325b91f46bdf31de0", + ".git/objects/69/774b9374d3e326ca9dcfdb2efa88b3a2f321a0", + ".git/objects/69/812f5378f7a186b9b8b30cf2df64b4a4cafa00", + ".git/objects/69/945dec2aa502871d43686aec68d4b9e3fbbda9", + ".git/objects/69/a413450b87978b95782ead35b0c7828f813301", + ".git/objects/69/b3c9f51bdec1fb788958f11bb13aeef23ce5bd", + ".git/objects/69/d8dba6e6d9fedcfeaffe404008944b52dacaaf", + ".git/objects/69/d919bea469442256721bd452228460c08c03ed", + ".git/objects/69/df1c496acf6a64ae96cf3d1923abd2c2306f8d", + ".git/objects/69/e4be7dac98fe72b8cc3156ab4c1fa21669b224", + ".git/objects/6a/110a7505983e959347ce4b0dd688c7eb3914d0", + ".git/objects/6a/139fe72f8a36d4fe735fe862e012d0424fef0d", + ".git/objects/6a/13adf97cba767df4b1b179df36b741d87a7e62", + ".git/objects/6a/19c6196f56c9d020f156a904a355a568f254f9", + ".git/objects/6a/1ccf8c624fbf54777ae1c748d9eeb1470957d0", + ".git/objects/6a/21c5a154d3afd2b9d39dc5626e28a6b6295b96", + ".git/objects/6a/3de23a64440c58cd6146b0ced83223f82155c3", + ".git/objects/6a/451306a216b503c6b397d309223c568477302b", + ".git/objects/6a/51a0833cfdcccfe5a42ee57bae2fdc0d7c54a8", + ".git/objects/6a/5f776a02223ff1eb153fac1c8ea6b6ea829385", + ".git/objects/6a/78cad49fc2b828ec9b9adebf23dc87dabdc874", + ".git/objects/6a/82d5716a62dc3fb3ad77366b5e02398acb70d2", + ".git/objects/6a/88a68c4caf74fa9d62dc2c5dd4d08c423e32df", + ".git/objects/6a/8993e7a469d60af69d46a5eb16806676c69a86", + ".git/objects/6a/8c4d04c920573af1d39e31557db017754908bf", + ".git/objects/6a/8d82fb13f6ee3da7c8fecc6ae12fef7838e67c", + ".git/objects/6a/95d53a15c4ef0a6ed3be0b332f3071edad99b6", + ".git/objects/6a/9eb337833de0ab7d26be86c6ef7c27e9ba5be9", + ".git/objects/6a/ad4d48f02a89c427ce75c40f5a02804001d8cc", + ".git/objects/6a/b54473158a8a7b4d627940ac4ded2b429b14e8", + ".git/objects/6a/bef2c2f0238319c53b0fa05dcdd1cbda47d3df", + ".git/objects/6a/cfafb7e088e4aab5b73f67bee254a5e475f393", + ".git/objects/6a/def303bb4225628305f2115722862876c8ac38", + ".git/objects/6a/e10182e8ac42f27e9c22c03b4c61393ee385bf", + ".git/objects/6a/e10670716de2f4f7b5833ae17cdd3e834d87b6", + ".git/objects/6a/e27e07a2f5d2a45e6bc8e6a72ca175a0a494f2", + ".git/objects/6a/e7c7cb5a1aa910a2289b54225ef67ff5350c71", + ".git/objects/6a/edc3908b173ea2af5207dbfb84442873b78eb6", + ".git/objects/6a/fefc119efaf4420bbfc8bc1a796985f8b8ed33", + ".git/objects/6b/0186b12f63eeb9bec3b4529c32f6cf1ce0df3f", + ".git/objects/6b/037bf9da82786399d3f2ccf0210e1bc6f1ad85", + ".git/objects/6b/2a7d4a16da00925cae546c74f18082b569d5eb", + ".git/objects/6b/35a6848b171f40c2532e8220266eabc5bbb4f4", + ".git/objects/6b/36caa3e84bae58347c84527a75ff1f82b8e540", + ".git/objects/6b/3b761491b1ee555b885950b97bd7257ea8c45f", + ".git/objects/6b/3c7846a199f736846b7a5adab45259674b777c", + ".git/objects/6b/3fe5f6ce416509c488c38495d592120cebf433", + ".git/objects/6b/488e9f645fe850f47988db55baecd92f0d2e0d", + ".git/objects/6b/49e6264c47fee92be6847aa762d7801e65a2c7", + ".git/objects/6b/5238b07f690e2639f39b0ae806b9a0909948a5", + ".git/objects/6b/65463ce0606742d7fd7d0c29173820f0db5c0e", + ".git/objects/6b/6bf9b9ceb8a63481ef39ccd0936daefc051574", + ".git/objects/6b/77f8e977c46378592d72c219c2dd90e0c64044", + ".git/objects/6b/7a67c01a27106845e84f581da727c7b3cb101c", + ".git/objects/6b/843b369aafa539906a557dfb8ea7f12dc88e92", + ".git/objects/6b/908e7ad137a664d81d40a439b3916b6622ad96", + ".git/objects/6b/989f17e7dc8dd5183ef39dda4734e86e16b3a3", + ".git/objects/6b/9c4fb679dcdd0b818a3902788d9f70d154534b", + ".git/objects/6b/a2beebebcf33fe4f04fbb349d63c750ab75ac7", + ".git/objects/6b/bb4f2db05bd92a6c125c257ac332ac1eac4144", + ".git/objects/6b/c10d5126cc08fff70622d241c6dc506e7985b1", + ".git/objects/6b/c7bd58bb84f5a91277d0adeba77a5e1b59bc21", + ".git/objects/6b/dc74d50d3396959c7860ba16d5339e1825de54", + ".git/objects/6b/e131f2570fd3aef89a0e23f198878eb01956b6", + ".git/objects/6b/e4b82b68400443ae1634a37d045dbf97f1959f", + ".git/objects/6c/0f60a0f205043502d7f8b3300d869e05969f3e", + ".git/objects/6c/11aace7ee8bcfa8251cc69451ac2d3ac04bc1b", + ".git/objects/6c/20c460895b4271eb560cb606e1e8527dabfe76", + ".git/objects/6c/26a297ba590ebdfb22b3daccdbfa986c2ed64c", + ".git/objects/6c/6a914e82ad0ea96c7942752ae46046681308bd", + ".git/objects/6c/7f3227e71e8c73d2e6328793b2d47159c54eee", + ".git/objects/6c/8ff7cc8dc35d2d3d472e8e116a6df30471a0fa", + ".git/objects/6c/9678b8e51b866fc12295257445ee85d5b89d7e", + ".git/objects/6c/994ef5b6989564db3c60fb87cb036b48120c8f", + ".git/objects/6c/a3a6df7619df7d946f83bfff465e19952857f2", + ".git/objects/6c/a87d619a1258296d17d967957350f23c1cb6c0", + ".git/objects/6c/c4e3d331bac09a99480d4ad34dee3cf9f92a5f", + ".git/objects/6c/c4f73150d970fd49afef0d66b2c89129f4dcee", + ".git/objects/6c/cb4ae4ffd1d0c057a4e8715993fb1cd716ee08", + ".git/objects/6c/e299dc16830ec1908d963631aa7d69be6a9443", + ".git/objects/6d/0faba014e98434a32f0d847f585f5208a94a23", + ".git/objects/6d/30dad406af962e07d27580abaf2f769cdd477b", + ".git/objects/6d/30ee73be77f0d36fd94b07f0e13907d41db440", + ".git/objects/6d/39c8e825f17ec6e57be3a00b9962bfa0eb3d4b", + ".git/objects/6d/4bae9e578dea4622463813b1779732e6198313", + ".git/objects/6d/72bf8723aac0a2d62746c41bac856c9c447a21", + ".git/objects/6d/7711f5b661e911d0272b00ac6233211482feca", + ".git/objects/6d/79681569e5c2867ef48ea1bb6c5068d49ba6fd", + ".git/objects/6d/7c1add01789a5ee077f2b692d914e3e1086700", + ".git/objects/6d/8021dd56ddfacbcfcb4baa9aef359612dc87cb", + ".git/objects/6d/8253a35a4d897ba868994395bde92f979c7ac6", + ".git/objects/6d/9884b904688adbe83e65b434e9c5c670cdc092", + ".git/objects/6d/9e6a82e4e59d42cb030c1a367b783c7ef03360", + ".git/objects/6d/a28f65414dd076f89a7d920dbd463830ccae1f", + ".git/objects/6d/a993b5ace9726f453ca9ef6c6fbb2256401a4b", + ".git/objects/6d/b24115a483a1983550e84a507d0a9fbf120b44", + ".git/objects/6d/bc73de7f5230672bdc1585a2923ce6f0d90ac5", + ".git/objects/6d/c41fd59cad9480fdd292951966120be7e601bd", + ".git/objects/6d/ca6e4340539e848efc68bc01c4ca5033fd4899", + ".git/objects/6d/cd5433d178d8f34921cd9ebe87bab24a61a00c", + ".git/objects/6d/eda4a30a52fd4f77dd6881c2d095928481f423", + ".git/objects/6d/edb1f54ef13872e7a24fede0ef7008ae15132e", + ".git/objects/6e/079076953780cd682c8d4d7e07e344e3209af5", + ".git/objects/6e/083c31d5578693beb554219d017dfc9a8602df", + ".git/objects/6e/0bfd8960278cfe1f455bc0030c15bfc04034ae", + ".git/objects/6e/0df80a176315a6220fb7a9f041bea8db29d441", + ".git/objects/6e/1f687183df98ee0c21bbddb0619ced33c9ff08", + ".git/objects/6e/2572ad59fc0c6838729130c5b900bf9d724692", + ".git/objects/6e/3c6a5f8f7a4bffb9886f549a837b73850d696f", + ".git/objects/6e/44d6ca7486ffb510b866c43356168ec75e9266", + ".git/objects/6e/4606ef7607f5605afa55166bcf709e40eb3e93", + ".git/objects/6e/4b79226cd229212bfef88e215cdb791149bc4b", + ".git/objects/6e/4f66cc43d1b938446b7922ba86bce0e0c812a1", + ".git/objects/6e/5f1fa2983df9274810bff1ca867806f0e761a4", + ".git/objects/6e/600a988073b0d63b0f2edb2b3970609bd237e3", + ".git/objects/6e/6427f64d8f0158e620424157928b077f4e1bde", + ".git/objects/6e/6ba804611c36ea390c2562847a0faaac4d40fa", + ".git/objects/6e/7a7fd579c3666c0e4aaa1c52eaeaad78a2ee45", + ".git/objects/6e/8f113ac046d4677795f25d9007f6f55f6e2e3e", + ".git/objects/6e/90edbf093413f0343798d5cc2c1710eaffd11d", + ".git/objects/6e/91ef6565eb4c86bf351057ae93345756a161cc", + ".git/objects/6e/9ceebd7638801b45cfd9b5e38ce89ad0b1e749", + ".git/objects/6e/a98eadab700d946f499b1fef04dde6f5e01963", + ".git/objects/6e/b2178255ad54453f0caba24b205f62762420cd", + ".git/objects/6e/c017d170dc4c832349baba5c733dd8f6832ca1", + ".git/objects/6e/c871b23832de3d2842fbdc6943a5f2ed61872d", + ".git/objects/6e/d3506d5d2958bf3a640984c18d4e76eae74945", + ".git/objects/6e/dabda6e3664376db3953e8cdd7b26de3b9e1bc", + ".git/objects/6e/dea5f9ad843ad8526c4272d07885fca8065217", + ".git/objects/6e/e3e07e250c05aa720e29bf6e5ac1b642fed7a0", + ".git/objects/6e/ed947e8eabb5373fbfecdc0bca637dc0cbca99", + ".git/objects/6e/f6298a65bbb181e18ebbcfcaed38e3e34635d9", + ".git/objects/6e/fa34f921641058c2b324b65818021e82a6826f", + ".git/objects/6e/fc6ae807dd9faee1d72fad3c2ffbe5e43ed583", + ".git/objects/6e/fcf63d9f8106d078bb31fd995c8eaeabeec742", + ".git/objects/6e/ff3bae50b48150fb01ae86b20855cceb0dbf6d", + ".git/objects/6f/03846c73185272f4e664dbd629e95222659dea", + ".git/objects/6f/07ce1138ca099ac0f0419541544baa51cb5425", + ".git/objects/6f/1c19c92fb172db0e2d83daa73920941b80fd53", + ".git/objects/6f/1d4d324979521a1e28e0d5fa7473917fd1a837", + ".git/objects/6f/22be12392e2dfcaaeda01b48b411c29137d9f0", + ".git/objects/6f/2cf3de82f04f9e3eb60f61c84b0246d56eeace", + ".git/objects/6f/2e3b0d87400cd5974c990e929c3df1d77e470c", + ".git/objects/6f/34861514b0b8020190eb25577bad2827ce48c6", + ".git/objects/6f/458f731941024fd9d8f3d371a14693e4305f2f", + ".git/objects/6f/4822df435be818548c82b58ce80dc84ed768ee", + ".git/objects/6f/51fdbae2a95472de0b14f68b004097b243443a", + ".git/objects/6f/6089acf7331328429b7129f1833ab4f7aa8efa", + ".git/objects/6f/63cafee63c04d12da8b0d08ad84b0d78e48d9f", + ".git/objects/6f/6b9170a53ae3b0ffa0f320206ebed9e8c8bd53", + ".git/objects/6f/6f44ff73781b43fecc34e35dfad52ec88831d9", + ".git/objects/6f/6f85127b7763dfcffc78b00f7eb7d3f60c0520", + ".git/objects/6f/78b14e7d7f51eede3f2d3bebd482fe3b384ae3", + ".git/objects/6f/7c74d6419e75bd5cc619a155984c2f533bc82d", + ".git/objects/6f/89830e2c359182d6770c6a892a279178ab4563", + ".git/objects/6f/920b8441f0e2364c376ce0716ef1e7ec4ce02e", + ".git/objects/6f/a08e1310bc3c78a5dc497a97cd83fb91923bde", + ".git/objects/6f/a7977cf25986b44338a11f669e304c7711933a", + ".git/objects/6f/a7a82efd4dee799a6b705f30c6b23d12e235f6", + ".git/objects/6f/ab7e86431de2661fc535b9122335cbbf074841", + ".git/objects/6f/bc78ccc9f767aa3de49589873d0cb033ba515c", + ".git/objects/6f/caa2c3ec543d27f4eb5f9c15ad552f4d4bb8f1", + ".git/objects/6f/cfbe99375e512c14835e3b79c6696f12412329", + ".git/objects/6f/d17d1c1ab3df50e882ae91c61e1a94278db488", + ".git/objects/6f/de056726b8a802541411a888afd07ea41486b7", + ".git/objects/6f/ebbb2f2bcfdc6a76592003bcd53ad6073ca805", + ".git/objects/6f/fb67393b6408ff0fd0349b12ca6a0bab2b6df4", + ".git/objects/70/0096bf3d827bf3ac3b6dbe277b0e963ef7ac9e", + ".git/objects/70/051e0a92be4378397b2317923b1d7eefd23fe1", + ".git/objects/70/0bd8634c22d4bc5f10873afdb12202167336eb", + ".git/objects/70/185a3923c34f0481f7cfe455367d0d514771a9", + ".git/objects/70/1c7a8eeca026ffd83cceae4ea8c0dbaaf1d473", + ".git/objects/70/4b9ca5a9a32561c9657ba629bc587f15760295", + ".git/objects/70/4faad166e7e0b639e39bb0879f3b0a64212dfd", + ".git/objects/70/520ecbfb50b30ebcf9cfb49578ac4ef0aaefe9", + ".git/objects/70/557e295633f0b63c2f5f904455becb0c15bb36", + ".git/objects/70/6447d19f3fd8ad496d71752fc38ad770d0378f", + ".git/objects/70/655a219c1d9d8421d767a310f699646b885c99", + ".git/objects/70/8b977afd6f19c0b78eb523fd360eec1a479c45", + ".git/objects/70/8efea74cf2d6580a89f1a1e4db9773ce2a3c02", + ".git/objects/70/95f572205452a0bd6e0fa74dd30e4953207a33", + ".git/objects/70/9da8c320d394eae6797b08f25da5a569784300", + ".git/objects/70/a737bbf1ec49d9a3d07727f426fe4f64db54de", + ".git/objects/70/b58095f9878169ccd99d93977dac9c7e7218b2", + ".git/objects/70/b7760522b6e3838ae9e23d408712359038937e", + ".git/objects/70/c2f6d03b851a283d4f010a76932c71d7cf7d36", + ".git/objects/70/e11d160e886fdd79f46b391feeb815f31501d5", + ".git/objects/70/edcb9b9f63d7f5b17d23687b1aaaf6133fa82c", + ".git/objects/70/f6b31afe3e4bce867b8e9f81e8fae72d79f0e2", + ".git/objects/71/0149e51e1de61ce9e1b0cb6de1e30a0ba6504e", + ".git/objects/71/02b2ffdf37d6cc0c52b677b49cc0a600e88a25", + ".git/objects/71/03a5a05ca77ec7f22a0c10f723a2b4a48d4a03", + ".git/objects/71/0ee4ded6ef5fa1f2449912d7ec472f10d484c0", + ".git/objects/71/11f68e2bddc489f6da5b4494991ed13fce1de1", + ".git/objects/71/1655bba0e0722b950b97c2ada3ad9edc17aa08", + ".git/objects/71/26fef142d29eff6a33fb219c8c343a33b13976", + ".git/objects/71/3122dcd740523f71048c79b10880ec61f58447", + ".git/objects/71/34c43966d7eee2c0e307a71c283e8b82ac1a3a", + ".git/objects/71/399af0eac6230f54d54423ea79afb3ae4707c6", + ".git/objects/71/42932128a206f4379207ade2449d6374aa52f6", + ".git/objects/71/48e61614094fbc11cdf08574f4d34e08c910bf", + ".git/objects/71/4b958946680ce39cec20773fa9f360884b632d", + ".git/objects/71/545a67ba3b9d06ceaa896faf9e1272094e6a50", + ".git/objects/71/5c687cf8345a4eef890ad50eaf94acb09c48f7", + ".git/objects/71/6fe9739c04e88d313e98e1716a45e494c2e562", + ".git/objects/71/75387852d25a3164da99f10c7d8a2621e60b1e", + ".git/objects/71/a806223d0bf3d903116d718b1b54fa88f7c065", + ".git/objects/71/d480003e895978872784635076b6e2bea692b9", + ".git/objects/71/d9c6cf5724b720b5c3b57b6fc61dd01fa51b76", + ".git/objects/71/e6251accbc3e0cb2748bd7e96983ca7d1fedb2", + ".git/objects/71/f6f69f1c82503f1a3a7fe360f3b0e7b787e7ed", + ".git/objects/72/29387b743e6604ecdb9540b46afb8dc0af45fa", + ".git/objects/72/34ad7c00d94699b9b187ad22622f2376670e1c", + ".git/objects/72/3ccc070c1b65a864e67df9e0d44a7e89f76099", + ".git/objects/72/3fb367dbc77cd28fdf1b6d091b653b2d9d31c2", + ".git/objects/72/4343e40fbe02ea9fdfd87f92ac892cd1bbb5ac", + ".git/objects/72/5a2f6faf8a657fa85f047015e2cb25634a4596", + ".git/objects/72/5d0686891c18e70bf5811feb4ee5d389c89fef", + ".git/objects/72/8ca3d2c4f27853a528a90ec1ba4e4aa92cd51e", + ".git/objects/72/8effc58570a1a517f03150b6a2f792329b8805", + ".git/objects/72/a296132a3fb7e25908ce7b037fc843e7dfdd90", + ".git/objects/72/a6ccecdb94cb37656a33836bb3084a68ebbb96", + ".git/objects/72/b6ea588657b5c01fbe80ed002abd000341a484", + ".git/objects/72/bac7ca3081534db1509524496d9855461dc9ac", + ".git/objects/72/c675ed377c6cc1f89863374a200c0ee4bcc250", + ".git/objects/72/cbbff54484af28ace95dfd9c3be51729b105f4", + ".git/objects/72/d5072396aa875292ed6dff36fde7c5ccbc99f4", + ".git/objects/72/df2e1e5e234e3f1ef4b7d11eaa31ba36769f62", + ".git/objects/72/e3d5cbae30705912581711a58d3e12f1e34e03", + ".git/objects/73/1289a90df507ce5a7ef1fbf0cdf53908891e1b", + ".git/objects/73/1b55e16e4ff7d981c15ecd5253bf455f2da552", + ".git/objects/73/501f2822f518920961fdcf00b6fa619533060e", + ".git/objects/73/5cecfa7e1e32a0edba2180e32910a221aabf07", + ".git/objects/73/5fbf34067bcbb8b9b8e2db13746cb2165a7798", + ".git/objects/73/68c3ace7d9984cf4655a12df3958e7b0618d1d", + ".git/objects/73/69ee944e01f439916828002ede7d404ec037e5", + ".git/objects/73/8aeba88f2c500d244c36eb2bb9808d39308788", + ".git/objects/73/8b7ab1883ab4efdcb77520d1835054456a7c11", + ".git/objects/73/8c64199f4844b7ebc929d64738c53efa5a6fd0", + ".git/objects/73/95b957c94a1730892a484e15276dc79a3a293a", + ".git/objects/73/a51662050d68aa57046c5b48a0bed9d9860761", + ".git/objects/73/a6e7c5d34f3176015dc33e8c964be957774838", + ".git/objects/73/acbe2de6d60a5dee1a3852140a85a8e7b94d01", + ".git/objects/73/b7941c61134327c7457ce8b531afa1a6e1b76e", + ".git/objects/73/d6c0a9ad639b5387d03e3c4a2138a29bc0a9c9", + ".git/objects/73/d70a5dcf221c9306d4faeea14b770f10fbc38d", + ".git/objects/73/d98ae82b133cc5df863ea2c25dd38359272345", + ".git/objects/73/e7fefc91951c4cdd2eddee131490fd83024c4e", + ".git/objects/74/001c2b374566212ed002fb400d0e9d58ae8015", + ".git/objects/74/0486663e1b8e121896931fcc68037b91beff48", + ".git/objects/74/0e65d58d6d436e42229a11f50a185226e15cd9", + ".git/objects/74/11c425a775396bfb42da7ae3a203dca7af3fba", + ".git/objects/74/1f67115f0c865456110779144f442cc628b210", + ".git/objects/74/29b5ebd1248d0f751e9d47568bc208ab219b08", + ".git/objects/74/2d32771f684817e25c528272871f6c3e39d618", + ".git/objects/74/383a26b76b3529a24d9540d3589f9d73e8d139", + ".git/objects/74/5326249b06e4948fd3b34009aa6ca83229aa84", + ".git/objects/74/69bdb2411f1d900325440eec5688bb0281b82f", + ".git/objects/74/81173a2919d58c02cca87e9cc55e88ef28729d", + ".git/objects/74/90e3db4ccb433846728f1d8e30f989d4673955", + ".git/objects/74/94e5b7c97d981b6a182ec75ed54d68f10e87af", + ".git/objects/74/b3f06b0e5efb6252fbb3d07192edb3e090bf56", + ".git/objects/74/b817ecea3b0e5b52f1a6110c03be1e194c94be", + ".git/objects/74/b89e8a3a4d8ff3d4329eadce41f5794a5a2450", + ".git/objects/74/c6ba82af345885f7a367e594b217a6a96d9551", + ".git/objects/74/cfe602f1324d9381facb23da94b220dc3f3a8a", + ".git/objects/74/e8498c23bf728f9ea8cacbc0df6936e80db3fb", + ".git/objects/74/eccabf72da7abfcaa4a92e64c6444103937eb3", + ".git/objects/74/f9eb9a960744c241a08f0abc68e14f1470cd2e", + ".git/objects/75/081f70221718b8751eb68f1d876b6aa591d459", + ".git/objects/75/09d8a867324a80f940dceb503adc3fd9cfcc82", + ".git/objects/75/18a9b724db86df171fa860ded21a433eb6d038", + ".git/objects/75/260162a97a1179f32f94ef0b589f75263529fa", + ".git/objects/75/2a4a56174e3f0d96b4fe5e3c929a62c6d34a96", + ".git/objects/75/2f2ddadc6d4eee8152ea046ba32fd6c0cb9070", + ".git/objects/75/386ee2066e2200844c5cd422c4932c0032d764", + ".git/objects/75/3f81d3e36c5832a8645d6e5e338f5b5c33340b", + ".git/objects/75/539c3b5c2f9933a7553c067b7df84cc812eba4", + ".git/objects/75/6f1adc5e05d4d3625b59bc25744fd2d86586d9", + ".git/objects/75/7d0aed0735d45c6d1c85e4ac26d948206bd0c9", + ".git/objects/75/82e7911cde0fada29a6eaf599dc8cf68dcdce5", + ".git/objects/75/84834f93e7e2af87163b1b079305ce906f0b84", + ".git/objects/75/9a304446209e619b1e1d498a8618f1132c5d59", + ".git/objects/75/abc0b0c3d013979a940218adbbc0e1c2c87d56", + ".git/objects/75/af26262f5d58115cafa8509b731855b74f0648", + ".git/objects/75/b1a5b97fbd6b518369fd2cee1adda0002477c0", + ".git/objects/75/b54d46794c768c2d7349d41d7b5e49fa9caf23", + ".git/objects/75/b7899d5881a4cdd2e2f7f8da6b56e27d7811a7", + ".git/objects/75/cb1f6ccd3d410e6d836f234fb1618cf6104cc2", + ".git/objects/75/cdb8734b7ca4eba3fe646109dfe680e6967794", + ".git/objects/75/cef7792c8bfab18400be0906086482c1cee951", + ".git/objects/75/cf173d87bdb59640ae7b8b1fc36f8d76980c24", + ".git/objects/75/ef0acff85fb0b87dbd83c97f43e83d161e738f", + ".git/objects/75/f02caea1e69a344be0b095907fceeccaf83c44", + ".git/objects/76/017c5915c6409b2816fb515b1f43073a65046d", + ".git/objects/76/02a282acd5deee42d67f28dc793329d7c1d3f9", + ".git/objects/76/1c19d9e86240b1b597e1c51eeba7b8c4acd612", + ".git/objects/76/30f775b39b841ded5ded8ab6df2775296169a9", + ".git/objects/76/378335f8db9101fc57d71f4e0e3bbf152bf6ff", + ".git/objects/76/4dff29fd5b94494d82188cf53b58bec4cbf4a7", + ".git/objects/76/59f49cceeb70ad5cee283dbe1a952ceaa714f1", + ".git/objects/76/6058a2fa632f0c060a8f1995ba413f1522f5fb", + ".git/objects/76/ae3cdc5ab4ca0fe1e893a52b20951de7b4b27a", + ".git/objects/76/afd09532acf707821e4f991ce231677dcb61e3", + ".git/objects/76/b4303d44cb42833b489e119e885aa6bfafcdb1", + ".git/objects/76/b53bb95232e6e60a31221ea51f727cba566458", + ".git/objects/76/d2378e1f52dffba6ff97d7091a6315755c3cb1", + ".git/objects/76/dbf64e5e87162d3fef3a444a3bd606f2619abf", + ".git/objects/76/e270731bd3aca7ca5874a54ca592481d84dadb", + ".git/objects/77/07508189edf29bdf2c6003ddfeb543e97e94ab", + ".git/objects/77/19af0464710da6f7d1910c6d78e621ebe90f53", + ".git/objects/77/1c601aa0f502d35ef901cd6cf0c32f9fe72456", + ".git/objects/77/31e8573731ae29ab8cf63dee19e6b39c1a66d3", + ".git/objects/77/32f4fc3d7c810988f82b56f217f35d6bbdb311", + ".git/objects/77/4043a418136dd2d5b267049d3654431dbdcf34", + ".git/objects/77/43b0987631432b7cfd54e539daa0340821aa6e", + ".git/objects/77/4c473e773fcd921589dc6562c17fc23d630394", + ".git/objects/77/5259b776fcf3b1dfb4af54aa9849ccc3076ba0", + ".git/objects/77/5959357c03b94eaf62a26c51e53fe87afc2b26", + ".git/objects/77/5e3a3c682a2bfb25772cf58e17c7894cbcacbe", + ".git/objects/77/5f37e7deb83f37ff42060356330cb1dbfcee7c", + ".git/objects/77/61b699c09eaaee0611611d303eaf3150b0ef18", + ".git/objects/77/65258bc1272e5e262aed48a2865e89cdab061c", + ".git/objects/77/6ade3987f74a539d3ea74493d1b1c5e7f4a410", + ".git/objects/77/73076c6c867aee6dd76127fd630cdbebbafc5b", + ".git/objects/77/7e49fd6bbc87e06d70cd1d61c1d192a7eaa573", + ".git/objects/77/953dc9a7be52f55e489fb28ead1ef3fb7c63a3", + ".git/objects/77/9adcfd201dd54193dca6ca430bf99a800d3011", + ".git/objects/77/9e3f5b2d7e36eb4278d61bdaec8299653a0ee2", + ".git/objects/77/9f6838b3de0d0bf3722d17149a55c1878542e9", + ".git/objects/77/a48e1593dbd8ed981bff9b17418b880878e607", + ".git/objects/77/a75a7842c5b2bc9a9262fd1ed271a84937b126", + ".git/objects/77/b9d1a2caa1277afdc7978ff4b6cbef08c68bfd", + ".git/objects/77/e425d3f26c0e8f591191934d223619162d3c50", + ".git/objects/77/f5b572b49c50e00845f460cc16b3a64b584f60", + ".git/objects/77/fa538fab46ff4e0c9fcd6cca4db81e1aed7209", + ".git/objects/77/fd0969e51a1fd45a6fceca711f671e34e5106a", + ".git/objects/77/ffae73bf51a607feb16ea2450a1063d811aa22", + ".git/objects/78/11c83710f2942c6f531bad93f8c80f12a0011c", + ".git/objects/78/17d261f80fe143c4de14688896ab93d2a1f9bd", + ".git/objects/78/1a3dfd259fa2b987ef5833488cf46646cb306e", + ".git/objects/78/1bbae62839e14327c38bcb4e51120cc061c14b", + ".git/objects/78/2252a1c9ab0d732ed73a4892e2504570c9c2ba", + ".git/objects/78/3449ba4cba9d6e0f4d73a0d86c16940ca6c16e", + ".git/objects/78/4148ee5be10593b7c0daee10205bf84bd144a4", + ".git/objects/78/48f68170c909674e443b8bf62f7e734a3c855f", + ".git/objects/78/4ce2b085f9423c3959b4c84bf869d444e0ecab", + ".git/objects/78/57f54fad408dbc92d66950af72c3e674d739e0", + ".git/objects/78/57fdf1e6bcedd33b8bb644f41b6ec4d6f859ac", + ".git/objects/78/5b5fb99c26d160807e7f9d38c014dc709445ab", + ".git/objects/78/681c472dc335c4d00a196f98e376f631892298", + ".git/objects/78/7cf61b851450be96f48006f23f124e0f4250ed", + ".git/objects/78/864f1a036f0ee5fad38308ea0da2b7672577d8", + ".git/objects/78/917c97f2790ac796a7867fad23b960d8b26b0d", + ".git/objects/78/98fab82453117075f6b5ba3481cec234dde4f3", + ".git/objects/78/9ca340e08fdb33711ba306f501ea22bab90276", + ".git/objects/78/a1feb6cff13415b05b9e5a2db97caffc3ebf40", + ".git/objects/78/a2414f3cd77a348464c79fbccff0f71a6c86d6", + ".git/objects/78/c539c29e7c8a1ad45d54f3d2463b174b3a896d", + ".git/objects/78/cba3e4a63155172a6881a655c51b4d1973f9b1", + ".git/objects/78/d6bc94a20d5edd811612acfbc1c8d02cf54133", + ".git/objects/78/dbcd7e6058dbac07bb997b56e076da7563ba75", + ".git/objects/79/077e0c7b83b64f126eca581177ebfa2eafaeb5", + ".git/objects/79/281495ab195a01ed2fc433ab8fab7574b29fdb", + ".git/objects/79/324641a3bdba8dfe066c10974fd150788f3067", + ".git/objects/79/32d331c23a330bac688526935106281108f000", + ".git/objects/79/6b66ccb2b1abb09217344612657d4fc8a5cb8e", + ".git/objects/79/8194049629373d869938a0e5f6d86d27f10dfc", + ".git/objects/79/a66440bb3ef95cd28e8206e1f6cc6e61f93782", + ".git/objects/79/a796e6847f342cd80234904fa6f4c51ec529c0", + ".git/objects/79/a87dd4e39c3685a47574726802ead7b557c3af", + ".git/objects/79/aeeb0773cc78ccb210312d7af6b355a6a06de3", + ".git/objects/79/bc04423e9eb3b19405167d70d2ac047691dc8f", + ".git/objects/79/c5a12e33a4c59e04aee195a020d0d9e6f34624", + ".git/objects/79/dc0892f53a629e99c9b0da5631923dd89e30ff", + ".git/objects/79/dd763050808e4dd03a2f8aff13dfa9ca23359f", + ".git/objects/79/e22925005aa12eccf53391ee32788924380655", + ".git/objects/79/f454f83f5425aeed3e3911db0f353b45c0c4a7", + ".git/objects/79/f622499c6a6420323eb857dc1b939dc7eff368", + ".git/objects/7a/18990d84da9230cf7605c1fed2e7a55ef24c4d", + ".git/objects/7a/2d4ebca410678a467d05f365f10653e5b842eb", + ".git/objects/7a/59762aa4e60eefd44eda57b43c3da1bcf66689", + ".git/objects/7a/60f60c9e32dffe78298c7659d4a6790dc824ba", + ".git/objects/7a/71296976f47d70d213b577d1877fc0520466e4", + ".git/objects/7a/839d07f69f6d3ab4939a15b34af457b29d62d4", + ".git/objects/7a/8cde207370c462e844da5d9cf50d0c8c6f3b09", + ".git/objects/7a/8e24f5b715ac0883592eddedc243e82d72079f", + ".git/objects/7a/90197be8a72a65519b279ce856839553c9c066", + ".git/objects/7a/99cf894bc007571aa5311e5c72aa75e6de6c81", + ".git/objects/7a/b1c9a19d4e034ad45e101e764a543de3b04ab9", + ".git/objects/7a/b41210f457789f37d80f3fe0d1a97dd5be0cae", + ".git/objects/7a/d4ed637e1e7c6a070138f0d7ebbfa11ebc260a", + ".git/objects/7a/f0510b8e116c3cbefd7caac153c2e0e9544664", + ".git/objects/7a/fabe9d76eccfafd86347594f8efe225bf85201", + ".git/objects/7b/0bebf1ff8077fd726f6dd23cead87b96356fc9", + ".git/objects/7b/13f8b5a7d48a2bdf54e0864e0280e312c02610", + ".git/objects/7b/142a38f6af7a51626ee00664fe874218294b99", + ".git/objects/7b/1a8fd14f100f3bcc7187914f4aaadf9dc74d29", + ".git/objects/7b/235448bebd120551a0130741949e9f50652714", + ".git/objects/7b/26aad85e390e54fdddb4d5f2a51ac603fa546f", + ".git/objects/7b/3f2e996725d0eaf71fbb200a22b3184a45b8e3", + ".git/objects/7b/4b88f777b89ddfbf4385ece39025c67172f954", + ".git/objects/7b/4f17b6bc9c2aee1a0749a65efe305c8438c2dd", + ".git/objects/7b/58a9219a1d8dcc49b797473a98ec4986dbd40f", + ".git/objects/7b/6499408cb517704651de91d91e1ec12dd06f07", + ".git/objects/7b/65b516b5785122477d870f3855702d0ee096f0", + ".git/objects/7b/7db018fca957e96caaa1ac3afe1ff42552b3ef", + ".git/objects/7b/86ac5b311593f0781b1703a21627fca3feb4a3", + ".git/objects/7b/9dcd56fc6419ceb1e54eb20adb5645296568b7", + ".git/objects/7b/a4d80bbf60441b43ee389cac3aa14d7b0781d3", + ".git/objects/7b/a634edebb26fa27f92dfe76877e51ca6abf1d6", + ".git/objects/7b/a82ede1ad26d1123b5beae901592d73611d8a0", + ".git/objects/7b/b9ffe07b5db6ecb8b26efb74bb6368deabeb0c", + ".git/objects/7b/bb481107a55260c4ac163e8b9939dfd344f384", + ".git/objects/7b/ca565de5b7a831c960b2d17511090d543fba79", + ".git/objects/7b/d1c9979f2e32a53b2d27865b23302b387c28da", + ".git/objects/7b/e63d2dd059b633cd113454f1ae27aae94abe9c", + ".git/objects/7b/eb9330d552b3f25e5d3d101e97069c86e04fe9", + ".git/objects/7b/ed7805104a80c334fa931f15b979568778c520", + ".git/objects/7b/f29801387ed045954038f9d4d77d035d91b202", + ".git/objects/7c/2a3691bb7d5b447e9cb0dfbc882005fb3e1579", + ".git/objects/7c/351de4f1f592e00c02eca21c2055e2e4c038c8", + ".git/objects/7c/38dc7f4ab98191f548165ebf2979ad7af502f9", + ".git/objects/7c/4e8d6d8b521f5628c96becc83a3dc0e69bcd0e", + ".git/objects/7c/5233aac8726fe2f78d3c6d18f779af27aa35e5", + ".git/objects/7c/5662d03179c5f8cf5a4087eeb3427bf85ea6cd", + ".git/objects/7c/575af5eec08e762e6ecdd5cbb9de70600534dc", + ".git/objects/7c/5d9f2e6552f197a7f4a818483eb68a397a1869", + ".git/objects/7c/6bcd743cd06669af07a87831ecb8b857e833ed", + ".git/objects/7c/7363119ed2d8c821bb063a06f11b0bf793b51a", + ".git/objects/7c/76595ada04a35897b6c2f04228d78ab0a694ed", + ".git/objects/7c/84402750346422495814984538be41930e6b89", + ".git/objects/7c/876a33697824db88ed2414ec9c089814eab0c3", + ".git/objects/7c/8e404e32496fd930dc2955c0e007e6b2442466", + ".git/objects/7c/9728c03327c44ed5b78b964157c04b8825bd53", + ".git/objects/7c/a26e9293e9fbc954830dcc35a2b888d153f510", + ".git/objects/7c/a91bef9dbd7fa82ad310ae04eb2c344d6b362e", + ".git/objects/7c/a936485a9e7ecdc8ff7f17adcc0277583c4147", + ".git/objects/7c/ae22908d54bba8325135259187c7c01b6d0025", + ".git/objects/7c/b4dcd0212174f6411ece59f5755ae88c82f125", + ".git/objects/7c/c18f21a694943a8f0f4eb045a2b22e48b8e6ef", + ".git/objects/7c/c333f661f31a6462f5f27f8226c3055189238c", + ".git/objects/7c/ce36dea92954ba0c65cc052e29ae9abeecc180", + ".git/objects/7c/d30481dcb02f042a2ada7224cae9f16ce58ee4", + ".git/objects/7c/d98578a70adf71eeeb9afdacf1659680d9173f", + ".git/objects/7c/e1160bcad2a4eeec821731c0da8644f5cf6eb8", + ".git/objects/7c/ea95ddc275aa53ab83adcbaa905cee041e1719", + ".git/objects/7c/f4f60c3fcbfcaebf461409b1d5750ca2fc5b56", + ".git/objects/7d/05a4f788b2e47e199cf522c048fc273c97a223", + ".git/objects/7d/0cac23808b6798bf6e749e7af187334cfc1fdf", + ".git/objects/7d/1f84687d3f3d2e9e648610ab3b712319afa84e", + ".git/objects/7d/2beba1cc186a603fb6c9096c0e9470b787c901", + ".git/objects/7d/309664ca012706beb6ac632d202c65285f4088", + ".git/objects/7d/3b804c88f0f4720f4bdab2d3d0ccb53e341320", + ".git/objects/7d/44a352fa087abb0d32be1b70be0f02ae003803", + ".git/objects/7d/459e3d1bc2b182d123124dcd4507bd0046a4cf", + ".git/objects/7d/4781592b0c2a958af8e4b23b17664ea07af1bb", + ".git/objects/7d/5237a5668b11445410fdf58926248be65e5fd3", + ".git/objects/7d/68a52cc9105e91e368ba8bf19e8b74411fdb6e", + ".git/objects/7d/6a25c0999954901113738b8db08cda97c390ea", + ".git/objects/7d/7dc19d7d4056d214465b5e2102541cd1ef8ffa", + ".git/objects/7d/8800f4b870144424f002bf42557dc923b11b48", + ".git/objects/7d/89fbc5d6523ad861e4d58dedb1cf69149b32d6", + ".git/objects/7d/982e61fad435332382bee37df5f1aac35bb580", + ".git/objects/7d/a7805c6844626aad07e4ca2202b87c5a2885ee", + ".git/objects/7d/cbca33a71cd0479b7d96e5f53691f88e83c67e", + ".git/objects/7d/e42b39e1c24b635c49ac86e04dd7d607a8b579", + ".git/objects/7d/f76e2588493f9151dbe0078785caf2a952520a", + ".git/objects/7d/fa262592406dadfb914376b1766d64cf23473f", + ".git/objects/7e/0114c44da87f27529309135f68df2653c35620", + ".git/objects/7e/0a4613cc9137797d55649a3851211ca13c18ee", + ".git/objects/7e/1d87e2a078f1b7af19d7237e6c574a4af567b8", + ".git/objects/7e/21920f4202a9633998ba28231f141dd98b90ae", + ".git/objects/7e/222c4a17396b072e18e0cbdef702cca54708db", + ".git/objects/7e/2ea63044780751031df0135bd20df5f9bd14ee", + ".git/objects/7e/3b6c09a153ee76e6a290069f2b14ecffb277e9", + ".git/objects/7e/44d9cbafb54a9e396b9132551ccc711e864fc7", + ".git/objects/7e/6afa7199983c2debb3c3b7597a784a2b59cecc", + ".git/objects/7e/6c848edfbb24c51baa480be5add5d819844769", + ".git/objects/7e/7ba20e6df90f4f8aad18deebccbef605795ba8", + ".git/objects/7e/95e5ec02dba0529f37e8ea14eda58e6f68f58b", + ".git/objects/7e/a3888a1b50eee1198b9ab674eced56b2b75713", + ".git/objects/7e/a85b18704641093cc9a90cb3ab85d4d5e342b1", + ".git/objects/7e/cafddfe6b3f7dca1940009197149efb05a7f01", + ".git/objects/7e/d7d9cb517a8a47aec987bee71ab47a38bbec02", + ".git/objects/7e/d9c3567af7676ae881f8725cceb9f992ab0ce9", + ".git/objects/7e/dd425b863c58c0c9ffdba82fea47d86fd064e2", + ".git/objects/7e/e18f2c29b53e2525f0a6a9d9d19309b3a0b080", + ".git/objects/7e/e5ec42f0d49d0a78be339874f1e8579e0f6878", + ".git/objects/7e/e6ac459e74ac567df772b69d2a89fd9d212e94", + ".git/objects/7e/e6e68e260021b03a782612f2ab528eed379232", + ".git/objects/7e/e847cb048e9c6053e11dc403ddca0c7311df8f", + ".git/objects/7e/ec2b940c369d8a2211a10df17ffcb8e42bc6a5", + ".git/objects/7e/f0b4ff0ca51871807b151c9aab1001387f73d2", + ".git/objects/7e/f3c0a3288c6544fbfb1ba999dc0a948e696d81", + ".git/objects/7e/fe79d87141e12735ad8fa0b7a9f85f86656a21", + ".git/objects/7f/011c6ecacaa92dd1f32a26c641ebb47d9ade6d", + ".git/objects/7f/02846e560a5a7821e5c3a54b06a5e6e0409441", + ".git/objects/7f/09a37682ec6592b907b2fddace2378d1bb4108", + ".git/objects/7f/11cf0fe2fe744b2109de7fc244d627a5f3e85d", + ".git/objects/7f/2c64bfcf14d6abeda3e9a980a400193dc5421b", + ".git/objects/7f/371767fb6b4174d8ea70961d364470b30ee6d6", + ".git/objects/7f/47f7b86c347c024c0a04f73ba6d472fee3cd3a", + ".git/objects/7f/4b2aca303386c1447d767186c6ecf87458636d", + ".git/objects/7f/4e1ea34941509bae79b6f16063e0fc3dbf9c1a", + ".git/objects/7f/59e6fe29d2605c8eb46510c412639969ee05b2", + ".git/objects/7f/5d1d3a32bf52a7e5b9e2dc688bef2a50ccbbd9", + ".git/objects/7f/66ae41254133dd9543618c58651da2d922bef4", + ".git/objects/7f/7694d3454d2e6d5055ef66661e2ab22c10b939", + ".git/objects/7f/76c0ea42bf7d6da9996591a895af962e57a0df", + ".git/objects/7f/8cf7ca007fb463ce8a7828d37783e62a26a015", + ".git/objects/7f/b1812d7655697c4b47465559d15cc7cd1b141c", + ".git/objects/7f/b74717d59f3530396875fa47e4d19292c07b8c", + ".git/objects/7f/c03c37de8ef700070d9597b418ad0bce252784", + ".git/objects/7f/c570925f44089a18420efb0b8b3d891d42d284", + ".git/objects/7f/d2c8006a5a08c05f44b73a30fb58ff7eacc5d2", + ".git/objects/7f/ffbc36d294d2eea7203b643ae3d703e2d54fb7", + ".git/objects/7f/fff8e5b5cc4db6e32e850448440ec49c00aafe", + ".git/objects/80/15fac0e9cac1336294b79c5b9d475cccc45f0c", + ".git/objects/80/19ba4eefa449c7835339d1ef93495887e2519b", + ".git/objects/80/19dd581c158f1bc88883cb95b82be32741e2cb", + ".git/objects/80/2175ddd764ccc583f315f7a503324ea670ce73", + ".git/objects/80/42aadc3502d5d8ac9244bc39d0564d7d8f8dd1", + ".git/objects/80/5b935a76297303bc54a7b98cf786b0587ad093", + ".git/objects/80/5c4c8555e74fe03c6dfd0c6a980189a32a7ca9", + ".git/objects/80/6776cf4855a3c49c9c362db3bf1ea1258b8083", + ".git/objects/80/71174d19ae9859b91e69afb0021772ad520b21", + ".git/objects/80/841cd9ff513ccc90227e6e023629d2ec089211", + ".git/objects/80/8ebdfb884e888937ebd43da5f1ebd7aafef6f8", + ".git/objects/80/92f29e607b61d10dba9ed3266c48f3139f57f5", + ".git/objects/80/9b3704737e4dc871f50e067f4a6771b4ca98bf", + ".git/objects/80/b02cfeb43f3a5b0d71a4b118632a0508d0b4ff", + ".git/objects/80/b28925f2ecffcc96898c256fc522b58301409c", + ".git/objects/80/b3f1078e6e8c3ea372d48b05bdd06933c006d9", + ".git/objects/80/d8034ce3a534c481fe8cb618d03836ebbda33f", + ".git/objects/80/daf71353d7e88fe73672bd6de40bf8e7fc7ada", + ".git/objects/80/db6dd1225f8092e5c662c8468a1d5757b33217", + ".git/objects/80/fdf97eee6bfc22484b126927ce6b1483c9e153", + ".git/objects/80/fec140f63e3288aaa1b8162e2ab8772025c9ae", + ".git/objects/81/02b5ab5a9f1f7b71e093a78e987d4f6ce082d5", + ".git/objects/81/18a964a32c3895c7004f65aa50918f38bde9ee", + ".git/objects/81/20ce85e12b150fe9fc5bceca0265972d9a1d06", + ".git/objects/81/23397037895c3c19002650cbe9f0f585cf0bb4", + ".git/objects/81/2cf1ab2f06f5077a7bfac41154aae3e260e3a6", + ".git/objects/81/3277b1447f3af712f26b25d1dfb34668b12c2a", + ".git/objects/81/32b61a24e952a6eeb87c29a37700b21fdaea9a", + ".git/objects/81/39dd18ae7787c77568c2c44b219b785f9b3200", + ".git/objects/81/52031249d99e50bf0439a6730ea1c55b368954", + ".git/objects/81/59e7ccb1347e90ae373a42c56fbf7cec220e7c", + ".git/objects/81/5f3e52b89c92ba46a57e1c99efbd29b929a585", + ".git/objects/81/789f6d67f04ae63da04519ff1f134e889fbf98", + ".git/objects/81/a0f489ca913074b63a02316b0792b50fc94b85", + ".git/objects/81/ade6420c5555843ca333abd7bdf39d1df2387c", + ".git/objects/81/af4d0a2b5e940831c546b5296d65a058a84a5f", + ".git/objects/81/c98ee7afe360617520cca0111928035d6865f9", + ".git/objects/81/d8e67de6359fd261002be97b054e3c62b9531f", + ".git/objects/81/e6966bb89af5b3e8496f12d97df9d78c0362fa", + ".git/objects/81/e6efb72af53c170401126a97f85278c7895db6", + ".git/objects/81/e8a102cd7d5d6ef706a9ecf2a9fd6697acaa0d", + ".git/objects/81/ee769be8f5249f91b93137e011ecd02028c65b", + ".git/objects/81/fff1e8083616fe161a7b1af4b87d54ba0dd3a6", + ".git/objects/82/004a5c92678ef463df20b84abd06428ea192d0", + ".git/objects/82/042a67326273346e3cc54aff1643385eaddede", + ".git/objects/82/04f65972c95c86be4512f4f2761e6636d23ebb", + ".git/objects/82/07768e33770b0ffb654a6caba0df079da13d75", + ".git/objects/82/0ecada26a44b432318e8c196da670c324a2a5d", + ".git/objects/82/1ce7e4c16b2f99638b1fc34c6ca66e2654315b", + ".git/objects/82/2a9a42e4da4f8dc552c87f97f1b8a14cedca1b", + ".git/objects/82/409e8e27cc36c83e8b8d9eb1a72802adcb61eb", + ".git/objects/82/4bc3eb98cb88051571ca3f3b2c917d1b68279c", + ".git/objects/82/57240354d222c2283add5460bf1e6f32524133", + ".git/objects/82/6293b4b425fed7113b3bf0596c08b8d8506777", + ".git/objects/82/6749bff830da79e7e9c56c7541390311aff23b", + ".git/objects/82/746a8b98e922e80bc25fca0054132693d8f920", + ".git/objects/82/76899c62ee0cb405a3354ebd72e38c25e6ee2b", + ".git/objects/82/947a8c4e8f8075208a1aeccf5788f8e23c708b", + ".git/objects/82/95af8879ac8c7de87f9ca8fb870cabe262b004", + ".git/objects/82/aca02e3b7e99af291847fe88589109c2d359ce", + ".git/objects/82/ad22264e48ec51dbfaabe619432ef8f178d10a", + ".git/objects/82/baef46c1dad08fd9c18929aca5f1c61544c7aa", + ".git/objects/82/c3fc053d766f2366d01c9572642b5b67679a3b", + ".git/objects/82/ca106180d2248a59540b5fe510ec0b73d07a91", + ".git/objects/82/d08dbda8bbde0d6c67564f35e616b0e4064221", + ".git/objects/82/d82bcd9d2596c8e97906334c7582fb1535fe8f", + ".git/objects/82/f0497fb5d8d3819aeae224b80666b1d680bb64", + ".git/objects/82/fa9f32d215fe459209fa5956c49c0ab57ac052", + ".git/objects/83/05291b606384bc6240e5c10baa408a944ef631", + ".git/objects/83/11ebace319a749ea766f55da3842e770d6e975", + ".git/objects/83/24842e4b738cb7ef6bbd5b22980947c63646fd", + ".git/objects/83/24c53c52b195fcecd01abceb0262a8b8a68d9e", + ".git/objects/83/278ad04da027b629dcd7419769d83b67092cd5", + ".git/objects/83/2f30d51b1c4ed5f8295619636c683d9f065c24", + ".git/objects/83/5aa25c07d92d7606a6b3b61c3d6a2ca7a824d8", + ".git/objects/83/637d67e653213134df4464c8d12aec64bf0d8d", + ".git/objects/83/6c053c50999a31929e90ba7042a30a6e76c922", + ".git/objects/83/7f9ec47208067ba1229105f2740658d2515cb5", + ".git/objects/83/9a90bb7a6389941a71ac2f4942028b2dd861cd", + ".git/objects/83/ac44d14daa366d4102e321064991736ab8e356", + ".git/objects/83/b080206acee7e2cd37e3e7692e8afe51323748", + ".git/objects/83/bc82ad86f28bc705477fb2a4af4da35fccd569", + ".git/objects/83/c2cca0efcb3ccf184e4178ceee67ff67c2c222", + ".git/objects/83/d9f2bf58f71f13e4d152bd034f8445492384ee", + ".git/objects/83/e445eafe7e45c2a334bf2cb8c67eb6e9f15e4c", + ".git/objects/83/f743036865336d7ce1ec74d2bf8e082b565d2c", + ".git/objects/83/fb3cda94a4e16f0ffec7a93a6f0bd6afa151db", + ".git/objects/83/fd933c6235124bfb7c1d458b0bed8684492417", + ".git/objects/84/02ee8b833110406c9102a16a42b73bffa8b2da", + ".git/objects/84/0976c7c07324b1f0bb2794efc202a23d71b6e7", + ".git/objects/84/1ae2cf5984072c737b38c90f327acd4c497e76", + ".git/objects/84/39b4bf19aa80fce48334c9124e89df3c54baf1", + ".git/objects/84/5803204b87e46fb51b611a54f747aa9a0e0404", + ".git/objects/84/63ffd42526659c3054e52af9b29f251adcba13", + ".git/objects/84/69ba7260c17b3504878fd6a838c7063d2c6497", + ".git/objects/84/70c30bf420fdef0bab0a93e102b683b4422243", + ".git/objects/84/a3b8dab96b2fad56516b9ff27b88a290c152e5", + ".git/objects/84/b3cda5ea69545226a93702065def4eb379b69e", + ".git/objects/84/b79ac950a4c2ae331ed76ea787c16bf6b68df8", + ".git/objects/84/cd6753833856f094fbd441855429f9dc3bd9ad", + ".git/objects/84/d078daae8a8b1b12a4470d7f7de211f6fc92ee", + ".git/objects/84/d12183bff95171a68b8b02ebaf6d5c0134fa99", + ".git/objects/84/d36166f9305db3eda9716a9ef5d73115860394", + ".git/objects/84/d85055d03f6e1e494f4d168c31f783e7f33b10", + ".git/objects/84/e4f19035264e769e77d66c302ab4a8344d7827", + ".git/objects/84/f4471eeb1fc20febe8f22674819b90fa1786c9", + ".git/objects/84/fbebebf921cf8a95b7bdae5c500aea8afc57fd", + ".git/objects/85/18207d643112afa59b9b577f38aa8d3c76887e", + ".git/objects/85/31e6ec06a03d23e553ee7b33d13c19293349b3", + ".git/objects/85/31e6f7404aa0b0b5a282060e5fe838db44037f", + ".git/objects/85/5a659cf090e35b7bc29a5c5e226d37b2b9481e", + ".git/objects/85/634da94f7161f54f34814aae1399d253fec4a2", + ".git/objects/85/6b8916ee15b9760602dba7445ac2382cc3296e", + ".git/objects/85/795525efbcdf076e747c323caf1d342f6907ed", + ".git/objects/85/7d7926eb891dc1b02afb8e7d4a11228155c2e9", + ".git/objects/85/87e7c89df710386fc3ade71292d2bf40d9525b", + ".git/objects/85/9084b11b422d872de41813ff2abc24974afab4", + ".git/objects/85/99f09b35fce53ed0aa2f8de5c9bc0cff39e826", + ".git/objects/85/ac3758b1e087696872c1c8a311403d0eca0934", + ".git/objects/85/ac8c1ce6ff8b154fdae5830ed0ab33c38e1e2e", + ".git/objects/85/b1a20972bc340a8354f3e67ee7a7b93bf151a5", + ".git/objects/85/babda394d2a05b4ab197c23db56ac484cb52b7", + ".git/objects/85/bf2c8603d87f87f3b5913b5ef4f60baea28987", + ".git/objects/85/dab8409278d3e7010b3bf3eafb4bad7c01c309", + ".git/objects/85/decef4cb9341fc9db2e94355fc1b05e7ef2ebd", + ".git/objects/85/e0c8788a278edf88c2673e1f5ba3d2a7b282aa", + ".git/objects/85/f90a1979788219ce5f7684643fd964e43d3e3e", + ".git/objects/86/04f9cdbe838ab7eedffa1ce24c45ea4ca53420", + ".git/objects/86/172e8309826d8ae2ba7e7cfea611caeec2f56b", + ".git/objects/86/2c0e48953eeebd2ff10e9d7d7919d66c81f529", + ".git/objects/86/35173af3bcdb136b392af8b9683038b33c47eb", + ".git/objects/86/3cf839d83c4572e7ca786c631ce29b6e891c70", + ".git/objects/86/438911b49d48a17b706f30c5b97455a7149b06", + ".git/objects/86/47c8180d3726031eb5450009165f8e624cc310", + ".git/objects/86/4819d8bcaf45d9d31ee81948122d7ef44f3372", + ".git/objects/86/6ccf759ebde70222403b0c146997623b140086", + ".git/objects/86/729d18fcbf649fa61cc64ce73b251c0208af13", + ".git/objects/86/8fa73bebbc602d864d2080ff757e28f7197c5f", + ".git/objects/86/980e16e05991b8f86fde250ecb80f1ee5bcd50", + ".git/objects/86/99125c981810f23682e300d09b60dc774c9f98", + ".git/objects/86/a41caae2e52a487911523de0f0d5e2b8ba001e", + ".git/objects/86/a6c20b5a9dabc59cb339549ec81af6cecc6057", + ".git/objects/86/b5ab192215294a9c0395fc34607ffc4b33a02c", + ".git/objects/86/b6666e3958fef3b008b3015e1dc9f16afe84b1", + ".git/objects/86/bb79b3e41138f52b9884f3af8c496d55d108ef", + ".git/objects/86/c96bdc311509464d6c7d5d6dae7743f7c1e789", + ".git/objects/86/cff01a1809283b799998e88fb70cf7ca4a2c6e", + ".git/objects/86/d15735ca28df1d7cfb4b340cbd5919ea1fb811", + ".git/objects/86/e92277733bcf25e2142de08f71f4da12f3452a", + ".git/objects/86/f4070605d7c3d1bcffbac73ed2bc60930c8541", + ".git/objects/86/f6ff696d8f65076ada63873e8f8fd658c81329", + ".git/objects/87/07b97f7a4455c127cd41fbbd9061df20c16b21", + ".git/objects/87/29c95804175ddc68466df13aa22aca7a646467", + ".git/objects/87/2a6fd49f15d41946446b73ad96086611f1a05b", + ".git/objects/87/3049494919c0f6c00fd3c3f4da6215e63c635c", + ".git/objects/87/3d92e5a199a1afab33ff4b723427190b0ae014", + ".git/objects/87/4090e015ade16746ec3e7513062253d200a989", + ".git/objects/87/4e88975d95f6b0c4d1a7e1b361ae8f7920ba52", + ".git/objects/87/563c96185df161d6282de76a8db3877b586ce4", + ".git/objects/87/5667e291814931159fb8f60e9c8fe25810c70e", + ".git/objects/87/5ec21416f37472fd3d2c2f2662b53fa25da56e", + ".git/objects/87/61e30a990489506b44c3834d9f879d818a7d11", + ".git/objects/87/67471aa3308d58f116829f7d0c94b3941b228f", + ".git/objects/87/6792beb9982a19a462d63c62698cd89effd7f0", + ".git/objects/87/6fcd29028f4b2d4884b3a0a9fe2537cbdd8622", + ".git/objects/87/7bfdf5e23eb9e3d4ba33e292d2eda4581e97c1", + ".git/objects/87/85f46d3cafc0539f4e9f564f0189a7d11cc871", + ".git/objects/87/a76ed2c5169a71bcf14a36c5ad1fb132f2b27d", + ".git/objects/87/ae6ee1c5d36622770653437b7c088182c847b7", + ".git/objects/87/b7fdd2eafd3681842c27ca4dde8808f402a854", + ".git/objects/87/c668c69c19dab095ee92b031019c1a7fdf8fd1", + ".git/objects/87/cfb36d2e5aeffcfca88e7030e142b3dc23faf3", + ".git/objects/87/db336e227906e8da841d138e124431a3706b16", + ".git/objects/87/e3aaca210790c5ac43f3dcea7735a5af663f6e", + ".git/objects/87/ed21cea97d56f3cebf3c49d3bf9d6c765e54df", + ".git/objects/87/f672749e9519eb08723df6e4a8b7cd8e10c641", + ".git/objects/88/09d972ecc3529978d9325501f9deaefa638579", + ".git/objects/88/251b51780494aba5628fc4fd0494736ba288b0", + ".git/objects/88/271f53d714a16df6c2af4b3995842a3d9f9368", + ".git/objects/88/3f14b46faded6bb362fe77a90a96f287ef05dd", + ".git/objects/88/42836ef9b0e7fd6984f99fcf57dbf805ce2554", + ".git/objects/88/4e99bbcf20698193a9130311f10287812c31a6", + ".git/objects/88/7b43dba401266579ba5153cd9bce442b05298d", + ".git/objects/88/8ef7dfc2ba31449d27df32e133f702a1078ab1", + ".git/objects/88/99874e442437fa00f684d8014bde864b670513", + ".git/objects/88/9a70f7e06c7ad865a65f515b2e9d8fd7937fc5", + ".git/objects/88/a714cc1687a20956782ea3501e9b2f2343613d", + ".git/objects/88/a87c9f111e0d01e51149d3941a6a9f62d599c8", + ".git/objects/88/aaf64813adeda20e482a5177d2736adbdf2364", + ".git/objects/88/ae04df3ecaa5df4654be73f693ac200cf5ab61", + ".git/objects/88/bfc2ea28ef74978aa7074806463ad6ffd87f32", + ".git/objects/88/c8eacef72e6e3d6649ab602e411bd6b81d8a41", + ".git/objects/88/ca56b813219485759b9fc9d2fabde1d63e0793", + ".git/objects/88/cd219b0c0345dc99a464f83d205cc06974f445", + ".git/objects/88/e0da9d4d128ee18b9e49da649c74ed02c0db6c", + ".git/objects/88/e4df0ecf327ab92f38fe4c94d629bef60b0a03", + ".git/objects/88/efa9e696d2b276120f9c45c3b21ade845b6a84", + ".git/objects/88/fa87d72c85a5cde44cb8ce8d03c7d838043c92", + ".git/objects/88/ff1b703c19bbb49f3a9abb00bd5549c8560da6", + ".git/objects/89/0a557d90e2b9b4ad1f35923c1fc86791d3a49b", + ".git/objects/89/284e0ca4b30db2a0a4ded867123143a67d5cf7", + ".git/objects/89/3a6f4b0d60281d7c9031fcef8013357947a4dc", + ".git/objects/89/3e3fa7cdca393480c792832678fd7c0ed2ca26", + ".git/objects/89/47a9064d4ccf9d4e80286d922087ae975ee4ae", + ".git/objects/89/52b155e7efa96d3a965fc2dfb2b47082f4787d", + ".git/objects/89/55316a3102dd06baccd488da7f90f667802047", + ".git/objects/89/5b21979eb7694ea60772a30c20f89753424dbc", + ".git/objects/89/6ea8fb9153389abb2fd2bc5360f286a4fcb0a8", + ".git/objects/89/7fd5757f33dd9895c838b96b6a6cdf54bf3634", + ".git/objects/89/8830f041e618e410cca84a429ba8346ea1556b", + ".git/objects/89/9f724a927da19a6d9b2b279a5fefb17bbf05fa", + ".git/objects/89/bf4591f722d58f7f6696617cf9b3d20bda3f70", + ".git/objects/89/c1a5304b650e568b5d4a451e75884643c6540a", + ".git/objects/89/d9213ecbb1be9c02f5f1ed14c20645535404e5", + ".git/objects/89/da33d47dc411bf0a684d402a3587c7601b7e21", + ".git/objects/89/dc9156f48440d02e685e19936e31706f8d4889", + ".git/objects/89/e853c72cd293b318311c16b340577a21dc2d64", + ".git/objects/89/f7484108c0d55686259b393d313e2a78732dfd", + ".git/objects/8a/0cbeeeed90158b631e84a6c9bba43c5387c742", + ".git/objects/8a/16b9212959914289947cae6d3c18cfdc80c74b", + ".git/objects/8a/1f502b3c61a5d4347c1005001ac902422abebd", + ".git/objects/8a/201dcfa61a78c4101cef93295e8f4e1d327f7a", + ".git/objects/8a/20cdd808f3176703bccdc5bc93d1c9e7cf9e0a", + ".git/objects/8a/24491d866c8df7130cc54c84b60559e5f6df5f", + ".git/objects/8a/2537bca87bc09cde45bd469334ca1361255e0a", + ".git/objects/8a/3cee0bb580475b939b11023848e74638d830a0", + ".git/objects/8a/40b0da9d22278eb62c35c7e42141890bde636f", + ".git/objects/8a/610da67f8b7d481a711d02b7014b1014599a89", + ".git/objects/8a/63574639c1708f99663cbf5dc2e048205eefe4", + ".git/objects/8a/81414bd105cb60fa4e579eb29e6fdd92442338", + ".git/objects/8a/909695aee151b3f181caa1e9962ad09ed50424", + ".git/objects/8a/9c501a4aeb60d950012087dd0a4dd68216c2e2", + ".git/objects/8a/c5b3988f2e2210b6bdb04b6647543feccd8524", + ".git/objects/8a/ceb52048235b2ced01fe810db498d1201cdc98", + ".git/objects/8a/d5c527068bde580cb97fa7012a41062635fbdf", + ".git/objects/8a/ee03c9cfc4c96d330bf1c39c84961428dba259", + ".git/objects/8a/f166a470f71d55e5f34d242005e7f05a64af3a", + ".git/objects/8a/f260110726198401dbe0c5891a8ea7eb66de2d", + ".git/objects/8a/f58261dc99e1397cb59cbca43d92e4d5ebe573", + ".git/objects/8b/1c9bb774ff98cbc3c7236ab3104efd82f62759", + ".git/objects/8b/23f0bd55e49abd6475aac8148b2bf970f21848", + ".git/objects/8b/27a1e9de15ac7d32f82de1cda823ca302b320d", + ".git/objects/8b/2d78040e7759a283b533fc79d302a6d77eca36", + ".git/objects/8b/40bbc6ac3e652292503ca380eebea4169d705b", + ".git/objects/8b/46decf6f0d25de905800e467bae19aefd4510a", + ".git/objects/8b/52064d45e28eea198112eeebfcd9e7ec171d0a", + ".git/objects/8b/54f7a48cc578ac0f76a5e10b24d6423acc7e2e", + ".git/objects/8b/605249a952303f1fe33f68884ddc560cc09439", + ".git/objects/8b/663f3842c18e5510998f32b1e6f3d9a153b941", + ".git/objects/8b/67fb4118a8f9a91b06be28a5b4beae7ed80170", + ".git/objects/8b/68a59c589152d9fd8a3fca7b2fccf9775cc14f", + ".git/objects/8b/70983cd061f71f6bc7003bbeedd1c5395f1640", + ".git/objects/8b/7d0dc8a39ec4d124f56b93d7cbac7f8149bf20", + ".git/objects/8b/91967d84caa5455f0055bc691920c6ccbfe414", + ".git/objects/8b/a321d526f650dc3fdfbd4196a7837b01d74b40", + ".git/objects/8b/c892b87cfdafd7a12b1251c767aa412efe8034", + ".git/objects/8b/c92936ad78012a5adab74ae6844c9a655c3f70", + ".git/objects/8b/d667faf317703c5d4cde1c12d51b3e57d3df81", + ".git/objects/8b/dd1845f9f53e92c40614719ca51a6fb4551cfd", + ".git/objects/8b/f47b82872dd6a33b464db78b4c0eafed76340b", + ".git/objects/8b/fdefec29a6fc5c5e3e7466af8c793f72a8fb04", + ".git/objects/8c/136a6e7e27bbe482fda822aa06b9a4ea483e44", + ".git/objects/8c/2a2804e7eb140dda36e7b9117b62986386281b", + ".git/objects/8c/36bf57ba6883c1de20a78ccedc266662f3b101", + ".git/objects/8c/3d717c786e6f72eeb0a396da7230373b194794", + ".git/objects/8c/3f4a592025f0ade6b4f3bd600831d80e62ce61", + ".git/objects/8c/4491ed726bc573218e5a8f3cfeb933dc11fae2", + ".git/objects/8c/765a228588f5d20b98b77fe3012e058587db28", + ".git/objects/8c/a2917517c346e5c1c927837f9095e2b0f37736", + ".git/objects/8c/aa09022c055e8238a4e3dfb162beb50460d33f", + ".git/objects/8c/be1f13f8da2e6e273522aa0e289c90dfa6034e", + ".git/objects/8c/c0cfa95cd565f718f71c9d6adadb53cb33ff5a", + ".git/objects/8c/c9d19a70accc583edebd764592d8b0931e2833", + ".git/objects/8c/d1d11cdda8de408c72ac43e4b9f24d637c0ec8", + ".git/objects/8c/e3e46749fb42ee498377f86b73a36af1e4219a", + ".git/objects/8c/ef01e49e2f6e3816c74ff11052eddf933eb616", + ".git/objects/8c/ef1344ce0fdd92524dc5bb2c1d347e791482a8", + ".git/objects/8c/f6e6d00447964f22e9a5c370c5e76ab594b98b", + ".git/objects/8d/0488a5a4b9d8683a1c0f427748072b7ba1fb7d", + ".git/objects/8d/091393c38e9fd9d57f9e77807216add1279189", + ".git/objects/8d/26d3fbf33143bb3d5d5a473727aedd8bdc6eaf", + ".git/objects/8d/38217e743a1bc6c2517a15212180c754812038", + ".git/objects/8d/5c369ea4a3b24ec214be75cc51f9b870cf2022", + ".git/objects/8d/64e89250e702e658e43bd11e9efffbae0136c5", + ".git/objects/8d/66fc5bd549ede49a4ff6b2e27bcf0193db6121", + ".git/objects/8d/7c50d59301d4ed1a10082b407c5148406436d3", + ".git/objects/8d/80a2dc8f6f23001cfe5d7d4fd2bd018b37ff4f", + ".git/objects/8d/870a6d58d0668efce2681c922a40d2e7933441", + ".git/objects/8d/8f051044d4171eecd108818bb3c87d6ab1c2f0", + ".git/objects/8d/9f820c2db4409c289755848552104228f9b4c2", + ".git/objects/8d/a6eca8dd57d6cded449fbcc1a33e6fea6afc1b", + ".git/objects/8d/a9ce48f72f7c95f14abff1ec1e7f0b04733d89", + ".git/objects/8d/ca6210f1885decbbf81fb657a55105d67fd73a", + ".git/objects/8d/d6d6fcd6f513c503fa0706fb6907e1dc742387", + ".git/objects/8d/e004021e69f6fbcd3a12ed2db843d1a8c9111b", + ".git/objects/8d/e166ebb12f05633cc55e886e3cce6d2bb4fbc0", + ".git/objects/8d/e295d883aa71adfe3eb15c4f9f705cbc05ebbf", + ".git/objects/8d/e534a601d1c28960b01aa14ffd4914976b5dfb", + ".git/objects/8d/f3ed260fb55d5813f60d226da06240b0f96b68", + ".git/objects/8d/fa405aceba4189cb3c43c42109d00b54cb18d8", + ".git/objects/8e/0cb10bc64d8db6768990149532983861285cdd", + ".git/objects/8e/0e8b6e766cde4deb35de3f9f7efbcc555e5cd7", + ".git/objects/8e/11866e422b82c05c1049f39b909641b1907111", + ".git/objects/8e/20f44ede489177cf0196d6a0898288d1781b46", + ".git/objects/8e/302a1ceaf1a929778f1de09deca99d694c8451", + ".git/objects/8e/4bdd6d1b3e8b9969ab62d35d0be4a93a2907af", + ".git/objects/8e/4da8a25ddcfc1e2f02f2b8b4b00e9add388cc6", + ".git/objects/8e/68e756a5fbb525a2d04c78de7aa8c1c4fa68ef", + ".git/objects/8e/6ec99fd4c16c9b2b3a5f853dd2a0b7d29cd8d4", + ".git/objects/8e/7d6e8fa42bee88ebf355477dee996dbeff0d7f", + ".git/objects/8e/94966ed03a18bf3b92a6e47305e74c2b975405", + ".git/objects/8e/99d5d82e5a1fe7468f4b82b2d3768af08a4ddd", + ".git/objects/8e/a6ade5a3523e432b428c0f7a54d5220ecd37e7", + ".git/objects/8e/d00d0124971b3395ae6d1bcfe643b682ee4cf4", + ".git/objects/8e/d53b2b4e994e947abeded1c6381c3fc272947b", + ".git/objects/8e/ee99a96982b9be84640b722e2d0236453e4c72", + ".git/objects/8e/efab666d5c66f228233a6247e947ebbee84cde", + ".git/objects/8e/f0a81f17f59ba15c986292e7f63fd93fb36c19", + ".git/objects/8e/f6e60b1e15241b9cee89429bc46a0164c31e00", + ".git/objects/8f/0251744c922bedd57978309cad46a619545955", + ".git/objects/8f/0ba6931dd4165df67be4dfd0b05cd745c6c0d3", + ".git/objects/8f/6325343d0c99776d2761cc8873e07d1b983905", + ".git/objects/8f/70707ba01d243c8833b1ceff3e4a8a61d7ed26", + ".git/objects/8f/7f10ee961f318ac0ecc2e1a28bb272995cfce5", + ".git/objects/8f/873157582b008b2b150491cfa99bc3926a4a08", + ".git/objects/8f/87745293fa454fa696b831175eee814248568d", + ".git/objects/8f/979b09da3dc11a3c6d26c188dbe401fe26c323", + ".git/objects/8f/9c154aacc6385527d7eed5efdc65f884e2300b", + ".git/objects/8f/b302676d485477b97e82c71f6f15403c9897f9", + ".git/objects/8f/bfc81bad58d3419c490002a51288953f46003d", + ".git/objects/8f/d2a3f143deb294000e58580e572e7f1c8c2dad", + ".git/objects/8f/dbe00f7b04114c3dae2ddedab77aad0b88c004", + ".git/objects/8f/fa1f5deda85ed50de0676d68752892e487ff00", + ".git/objects/8f/fd513e37882f1a68cb179cfa0c8fad4f5d8ad8", + ".git/objects/90/1273dc3ec862f001a89b1b9eeabec0c31f2565", + ".git/objects/90/192e4e294b709f39b505bad6bb1c0561260183", + ".git/objects/90/413743f190a75b1b0cd5da0ab1f11feaa886a0", + ".git/objects/90/477994703c844941809e49677ba40432ed3160", + ".git/objects/90/4802db9e58862db5ee79e81b1d96258bdb1778", + ".git/objects/90/7264b71f8d0492cb3f614357a0534ab7e80fa3", + ".git/objects/90/806fc8d0f29327f7bd225393f7254b89852e1b", + ".git/objects/90/8847c7a97edd025f1863ac289ec79b9fe8bf50", + ".git/objects/90/923edfed7c7ae2618d77d666f56731d23189cd", + ".git/objects/90/98bf53ec27594642d56194d61fad1eb490f8db", + ".git/objects/90/a1560d4cfabeda0f480f9f95f3922e809462a9", + ".git/objects/90/b0225a3233d7e426c16f27cc014d7c0f35845b", + ".git/objects/90/b4b92f7b927e9d67f4a20b2e1dbb320a960543", + ".git/objects/90/b6b24c3f973e05c709be43975d40f322d047e6", + ".git/objects/90/b77220349b740cc74777bbd3b874f1372c686a", + ".git/objects/90/c23d5743d8249617600b207b531f75f742bdbb", + ".git/objects/90/c86f177543207475ad27c81e42aa451368e12b", + ".git/objects/90/cd8738eeb5cefd942ecaa35c2bfc431ef1e191", + ".git/objects/90/d4ef089368826eec2c3b17961b6f43bc5f420d", + ".git/objects/90/d8b271927aa7cf6694f62bc5653eca90584079", + ".git/objects/90/efe588bfd564be8ebe067ac85a832f84da1fad", + ".git/objects/90/fab14f3847dcdb842c3e411c1d2c5d004a47db", + ".git/objects/90/feec8aab609f29e63a7b14bf9bd384f187bbef", + ".git/objects/91/07863649eacabc15ce26be202ae336a0e5a060", + ".git/objects/91/2a854a0793c37d1c20cf9267342fa696c3284a", + ".git/objects/91/2d1f6baf9a64cbb4b58827b188e10230eb6f84", + ".git/objects/91/2d5b7481a23657603513ad886b96e9cfc2bea4", + ".git/objects/91/3aef0b11c1359f9abb68e609b7f4f2e2dd1f93", + ".git/objects/91/46044f9ded0a1a34d69dd0aa66422d87c2c54a", + ".git/objects/91/4a02d385abc775b98bf675b5809204ee67bbf8", + ".git/objects/91/67ca49cde0add348e47299bdf879a947ff19be", + ".git/objects/91/6cdf703b2eca09d8baae30449ad7efe14bbdae", + ".git/objects/91/880c6c51421e9f65ae7342e0ce43d80a9ba295", + ".git/objects/91/9313d8d380708a9963e8692dfe1a3c4bf17c5f", + ".git/objects/91/953d31ab2a67943608065b27b512803dbb4ef3", + ".git/objects/91/bbbf97be569a3c05238f9927f1bf96e34a5dae", + ".git/objects/91/cc57acf1e8c8b09d2c48cd58918569fcd665a0", + ".git/objects/91/d01f2666a66fcbe50d337cce38bbe6c2098f86", + ".git/objects/91/ee8090e8adb954a6bb0392e83a2a8de89c9f5d", + ".git/objects/91/f283a333c23b7508535581a3a6b9e37b7aa9fd", + ".git/objects/91/f4f41b5a6b84bcca45694c8e5c7f828c148ac6", + ".git/objects/91/f859d22a367f28d0065ab4d74fc5dec9e8f11b", + ".git/objects/91/ff69406763266948ef509395d64afdb95c76ce", + ".git/objects/92/0de9548e6974fd363eab96508d567a28b2d76a", + ".git/objects/92/1d3d2d9824c847cf07ebeb5521b30a8be6dd0f", + ".git/objects/92/24fae443fd910ebc47ac55e72076bb0e9eca91", + ".git/objects/92/360d857fccd98f4f945199d7b65b5a4e5abf4b", + ".git/objects/92/40040e88b800d0329edc3e687fe4af237f7fac", + ".git/objects/92/41442b12189e642e9de9ec3c81739fbc638a27", + ".git/objects/92/7497a891446f5659ed1b91b243c4247e170ff0", + ".git/objects/92/7d2bfcbc25408ec36d50056b6e550d819818ab", + ".git/objects/92/8dcfcadbb5584453a8186571bae4d5bdb6df41", + ".git/objects/92/9463f5d74432ccfb528c84c595c504f041a00c", + ".git/objects/92/9cbe904950f9fe4c1957d76c35aae1cc0cbd3f", + ".git/objects/92/a43f9c56eb2e45491ceb1b51c2dc42a80a2565", + ".git/objects/92/aba27e69b36d506b41789489a82d12ce05701a", + ".git/objects/92/c08ea0444f8adbd74a9bae627c7321cee48bc0", + ".git/objects/92/d9e05f0002cb0d906f21fff0130531618d846c", + ".git/objects/92/db190b6503e341fbaefa1f297a5f3687545865", + ".git/objects/92/f127759d44053c47183f747127bc6962e12616", + ".git/objects/93/05e4bce3ee902cd91f720b1d7cbcf783c8fc44", + ".git/objects/93/396792e6733569bcba71b32c38db91fc7940fb", + ".git/objects/93/720921082c55d176306e255e28fe461e1c80c9", + ".git/objects/93/89f6a943b5745c08c7d4cecff9749d2a71c329", + ".git/objects/93/96c6200c1f418da1500860615efd091217fe76", + ".git/objects/93/ad63a01d532ec271f2cd7ac2174f4138bf63ff", + ".git/objects/93/b4ee602f706c7f7a6e10a511bfc4a28b66e778", + ".git/objects/93/cc0add1de33c56b246eadd76b4b661ed754860", + ".git/objects/93/d2b407d6fe6f71ec7eb48166ceee2374784792", + ".git/objects/93/d3934b532934768f07807ecedf96b1bdb2fc6a", + ".git/objects/94/1658ce70d0694946bdfb200e315ab3a6f5e06e", + ".git/objects/94/17da7734af904df0b63c4e3ac594c1a6e7c515", + ".git/objects/94/21a5f696f8539701d1e3b86b31c52edc2feb7d", + ".git/objects/94/221b389948f471c2c6f844dab37b99c02962a7", + ".git/objects/94/25926e8e91b591cca13550d0ed647e901c131b", + ".git/objects/94/2916e27532d930ba76c41c79304583f9184dd7", + ".git/objects/94/2d65789e22d92e8c4bd2c85c593eca08ef3c6a", + ".git/objects/94/302d9ea00df05c9dce2eb0dc6dd25310c07447", + ".git/objects/94/35b309393df23082f198128ce6c6be66a3eb08", + ".git/objects/94/3f159b74dbd439354465bff3089b61e8b0254d", + ".git/objects/94/40e75e3241cba15faacf988dd85362f7bf6448", + ".git/objects/94/5a2e8548782d834bd76650a15220a3f10aa41b", + ".git/objects/94/740641e793bc27588c663b12c2ddc2714d8e5b", + ".git/objects/94/8c6f39b06dfc55a4e093f32606950b23605296", + ".git/objects/94/8f15a8a05ce8b1e3a25a8933bf15986b999f9b", + ".git/objects/94/9572de62a90fae4b9bcfe502034304b985ca5c", + ".git/objects/94/95c3ad9bc3b0213015390d7f941ca899a0221a", + ".git/objects/94/b2d31f0b75bdcd99c23c3f2ad08d60c7b36c5b", + ".git/objects/94/b885a492e312ce8395f8dcc710b326e3e88354", + ".git/objects/94/cd236bdc8b5492fde4aa52d5161ec3a8cc0485", + ".git/objects/94/d4fd433365b13f328e497a15d0c7900a39efee", + ".git/objects/94/f1b43a1ca5207d424e39469f63f76206a2d1a2", + ".git/objects/95/01132d67be095456149e5808990e581c2197c6", + ".git/objects/95/06b0150f9cb6a41bd763cabf3f67c0bf2bcf14", + ".git/objects/95/0c513f803f27d259a20ebde846fca44f952a98", + ".git/objects/95/178476aa1ff6ee5ec4dd5016d6b962c17256fe", + ".git/objects/95/1d191a908de31071e229b45c091f8b3dc49e97", + ".git/objects/95/2fa1d83470be621be618fc96cb738a2f4b9f0f", + ".git/objects/95/3a14df13c44b98aea62e2de1ea80d4b9650d21", + ".git/objects/95/3eab9147ead4e6785c530a25059937f5e76a70", + ".git/objects/95/4f4d2e574fdf45652a648020eec71fc97bb3ec", + ".git/objects/95/5a6d9c299a87482c8a47fe15a37fabc894b61f", + ".git/objects/95/6b16d45c65cad9635d323a9915b4009de2df7a", + ".git/objects/95/6d259125404b184b947267d8dee9fb42f7382b", + ".git/objects/95/7783163f96873e3af23886d9faa033d694ee08", + ".git/objects/95/85a8a53899edea13e6b6dd156d0f07145e2d72", + ".git/objects/95/8aa617d16e39a8c9ad4605ab2c35ad2472044e", + ".git/objects/95/974ea135451c7d780128346843d7d71b147822", + ".git/objects/95/ba2d58ebf9a941a0ad734eec20e265834a1d10", + ".git/objects/95/bb7ad10bdc7ed64edb8e5eb1ede3147358c769", + ".git/objects/95/bddb5a4e51b1f696fc64d8285d4e133f4404b7", + ".git/objects/95/be17f1f593d95b85887259564ee61699f164b2", + ".git/objects/95/c93e377a7d8bd27655151a1526be361e062ead", + ".git/objects/95/e61154749b11c5ce096dbd13dea2be751ff506", + ".git/objects/95/f6c77d2d51076b93de9ebd8777e62324dc3f9e", + ".git/objects/95/f6e6c5e90b1c6667807a1331fffdf57e97eca9", + ".git/objects/96/107a208051699fce100475f93307d552ea0a20", + ".git/objects/96/15d98329d103fe98cc78bff5f8930d3320ee45", + ".git/objects/96/236eca7c4ef79ed264c0c84d955edcaff42cd1", + ".git/objects/96/250712a86faa5baa2a67ec306678f0273a0ec5", + ".git/objects/96/256c30ef726e6629801990940103195b55e3ae", + ".git/objects/96/44e886f9c076f54cd69c324818f84796f2ca86", + ".git/objects/96/48fbe3ed3d18ffb4c7906fcc82a3822b63967b", + ".git/objects/96/619e5040cbfaef0b5d0cb195bb34400f61dce9", + ".git/objects/96/6ab1d6ec04f7186cc69b4c4e5cac38633f3d5a", + ".git/objects/96/6b80afd3e0af00412e2bae583f4d56dd7a3ac8", + ".git/objects/96/7dbeb5161c8372ca1249e424539a6e310e1200", + ".git/objects/96/85c021744ab7630817afb8bec3aa75ca1fac00", + ".git/objects/96/92dc70d569b861d5a01da482ad3d373d5a4b1f", + ".git/objects/96/cc0c8748ec3da71d2f84a967a72e0b914d0075", + ".git/objects/96/cd5358861a5daa96de764bbdba620b0a633051", + ".git/objects/96/d32afbcfc42f56a07392a9ef06ba6004a231e8", + ".git/objects/96/d371033543ce988e8a72d911cc259b084de015", + ".git/objects/96/e984d5f1424d5f1ff1d4a53446fcdb3cf672fe", + ".git/objects/96/f8155912ea7c77bdcc7ab53edaec42cee2521d", + ".git/objects/96/f8502d028d2fa959f6c6c1f3f6df81bdd3dba3", + ".git/objects/96/fbdac2bd6552f42cff21ecea9b0ddcab95aa0f", + ".git/objects/97/0a069117766a3f3559d28d333f58db84f27dd6", + ".git/objects/97/398d32b45ccb7221b69ec7a583d7121371399b", + ".git/objects/97/4503185741082ed183c66399f499dbd9aa132c", + ".git/objects/97/47da260f9af9f6f2cec3d20d9775c7b1dce91d", + ".git/objects/97/71a349e351a99ccc2e640bbccf232ebd99a1de", + ".git/objects/97/771112249d8e2da76d2477c719baa313d0c413", + ".git/objects/97/7a92d9e159b8393e3c526e6bb241d4dd5b388e", + ".git/objects/97/8152123a5af83101bab9f5d238b132bfa66bcf", + ".git/objects/97/8798721ab6ae18712ec4fdce1a63c44d49f7a3", + ".git/objects/97/8864fd61e2b54637ae364a46f39a3ed3379fbc", + ".git/objects/97/8bbca964a83fd63b3f81c674881b771e0ef875", + ".git/objects/97/94d103a82da39ebfb94326bb3f1303cd8f99b4", + ".git/objects/97/9642f3227f695307e8cdac988e718b104cdd8a", + ".git/objects/97/97f8fb8a85f485341ee17bbbab9008b7fea824", + ".git/objects/97/b00ade5f68c3335f6ff6a9619eccc7c8b3be9e", + ".git/objects/97/b509066341a4c16a3ffc1ff1e98356246b890a", + ".git/objects/97/c577e5ebbfeb72fa83d774b8bab00322821717", + ".git/objects/97/f0b8a6791dc756b3d83ed1467d0e820326d8f7", + ".git/objects/98/062e624704ce0e01e2b3d8e4ace77d94f6b32b", + ".git/objects/98/146c26878f26ee2d7fff41e4f23e7578baa08b", + ".git/objects/98/19152a69ae7d3661f1d9986147990e46692860", + ".git/objects/98/1b9a2983b567c9e61c613e5de9f5f6b0b73b05", + ".git/objects/98/2c7d942829f34e68e91b93e2a04ae2a4063531", + ".git/objects/98/2e14e4cac1b95bd8bcc328ab23fa26ea3614e9", + ".git/objects/98/2ebfe14b88d135e291bbb149f71cdfce28122d", + ".git/objects/98/3e76eacb39c2991dbacd48579e983bb657dedf", + ".git/objects/98/4ff3ce739c14c0fcaa86b1ca21dc16410f14d1", + ".git/objects/98/55a17bf4266c6155be9dae4b141439e0bb8a13", + ".git/objects/98/677e85c4076ef7bf7056e835d07161e48da014", + ".git/objects/98/7623cc5810422af3e77afb4f3b75a0d38b06b0", + ".git/objects/98/836d3917fbfa0f0b3618b4546a1f1429c3fd02", + ".git/objects/98/9d14908c22db6c237e4c5ada4c8b41bbfc901d", + ".git/objects/98/a5905a9af817cae7c70be8bda4011d4b1a71f3", + ".git/objects/98/aceeb285a6a7a2d69fa084fde6fc2ff2eb7122", + ".git/objects/98/bff3f2cb22a15161487a09b2935ae2d8ddf0b9", + ".git/objects/98/c1b5d91398088f6cb3d89a9a1c2ad5f50dde28", + ".git/objects/98/c34c09e5d910ccc3030da2fdd7fd2882ce3f6b", + ".git/objects/98/c6317c31eea289849598dd740a54f7ddf7d121", + ".git/objects/98/c634d80408a00b7cdb23fad5df7a8afcb556d2", + ".git/objects/98/d1ead6791f6487818878e43711cb77100c0faa", + ".git/objects/98/e9eaa1dfbcae1f1a38c466d4515f9d60054c21", + ".git/objects/98/ea9abe6c620caee62e34888f4b786abdd3070e", + ".git/objects/98/fb7a46889409e2ea071a15520d0c3e0da83f19", + ".git/objects/98/fe5c6b8dcacadba8324a3a928d1c1b35b64cb8", + ".git/objects/99/0854cdcac3b2e5ab8eab87e648a13defa5f5c7", + ".git/objects/99/3f0ac8193f3f09df0ffe189dd8763585872d9e", + ".git/objects/99/4db618a4b924863a66ee3b133787211930f606", + ".git/objects/99/56f542b93783f4f3fa40ad38df739b8e367557", + ".git/objects/99/5db4b0e3e6a0e27e9f80567ee2bd6d90a07b7a", + ".git/objects/99/6006785338ccaee912b8e1ebed0e09a2ff439b", + ".git/objects/99/613838a9fb82a09d3c1fe240a811360c3b5b5e", + ".git/objects/99/65a13931408fb6ee37f9b822b48b004f21bff2", + ".git/objects/99/65b090317742b60a58c6c204e14b7ecc159334", + ".git/objects/99/7508315a69f6b532d2d53ae016939a0b2c95b9", + ".git/objects/99/8c2ac9f0288416b1d541a3abaa387fd3f6c87c", + ".git/objects/99/aa0c75c65a40f1e0115f8b087790cc44aa411b", + ".git/objects/99/aa7d2a1944a9f162967cbbbab38d8d06080722", + ".git/objects/99/b59254408d1e5ddf01e14e56ee79281490c649", + ".git/objects/99/bd026acc26b7906b9b43f1fdb3118ef5a9f5f7", + ".git/objects/99/bf06d684e23ad29e179ceb1cff30915979566d", + ".git/objects/99/da2d073fa15d0013ea0bd6775870f78a35b048", + ".git/objects/99/dcc90ccc63373a1805b78ff4a08de289029503", + ".git/objects/99/e3b38625ffc9f8a873af94894f2637efb54905", + ".git/objects/99/e6b8aa315bb7e38f7f697299e07e1da9d312f1", + ".git/objects/99/f279b0988b9f642e930d99268f762392ad805b", + ".git/objects/99/f5dfabbff5fefa21bbd794881b1017ced03908", + ".git/objects/9a/01398f7d059e884718fa4ae67513861845fa9c", + ".git/objects/9a/0752c7e5017a4e545ccc3b6baa3ef11d20bf6d", + ".git/objects/9a/0b07418ee95983f783a8747dc5ce4132970fe6", + ".git/objects/9a/1836bc64aa09671e5f8eb9b1df7a217cd7dcaa", + ".git/objects/9a/19eb4e9a1dd360dc5f4df7d0082109e6d5108b", + ".git/objects/9a/1d156b5bfa7d2ef6497d2b0667eecb5f520e32", + ".git/objects/9a/222b5078c4690d8b69392c175769a3be5abb13", + ".git/objects/9a/27b6fc530246b5df4189eef30b44c8308fabbb", + ".git/objects/9a/3331696b3a74403b189d44eb89473200fb0c5f", + ".git/objects/9a/420ec3d5ab8c202c84eb09e0f8d0017d100bf5", + ".git/objects/9a/496fc46f5f38f966fadfa8d9d486d411742629", + ".git/objects/9a/6221e3b17baa7ef7a7a3a4e0c92775076ff73f", + ".git/objects/9a/639cbc342d4db989a4be8875eea482c9865b27", + ".git/objects/9a/6dc269314c71651ce75e2fbb2f65a2d01adf43", + ".git/objects/9a/709a88b656bfd823d9e75fc45ee7901b3a1de3", + ".git/objects/9a/716b582521720b13a3404201057f67494a8790", + ".git/objects/9a/7f008437ca0a1a6126755388814fc6006a9037", + ".git/objects/9a/84b3ade583171207ee473f7eec83f27c92f0ec", + ".git/objects/9a/88a3576d8dd3fccca9f100c03bec197e829990", + ".git/objects/9a/9e1a4d28cfb6e1d0081ba8e8d03eee00428f51", + ".git/objects/9a/9fb309e2459408502618b692542ac0cdc61683", + ".git/objects/9a/bc4fb8e7ac328ddc32820f94525d33d9fb7667", + ".git/objects/9a/d79ec2a43e7d4c3d4e9ffdd7ca57b4ba8340ef", + ".git/objects/9a/dc06b9578c112e37d4a631083469198704c941", + ".git/objects/9a/e2dff3899ae2af17eb713c1cdc1a9dffc52227", + ".git/objects/9a/e5f536ef70662efc7bb20dabb7c837f637afb7", + ".git/objects/9a/f27e6e28539fdd3107ddc39c47da26e2dce930", + ".git/objects/9a/f5523556e3939e9c75ef2672a1644d7d5602e5", + ".git/objects/9a/ff1188e84364dc3520d1088280ec2a3334872a", + ".git/objects/9a/ffea2b076465a48cd16c42fe27e90b678719e8", + ".git/objects/9b/02f9ed7762763e341e9acaaa45bd8fc5ce44f9", + ".git/objects/9b/03a4f60f0badcf5e38d1be773d18138bbe31e8", + ".git/objects/9b/059d561900aa0f974f550f167fd8b085b28eea", + ".git/objects/9b/24035a03009d7bbc0547ea2cbb32f5d2f9c4e3", + ".git/objects/9b/31ee66f22306cdefce9782d2991cde2a1709df", + ".git/objects/9b/33e84abb783567f435ed2ef4c9991136d8259b", + ".git/objects/9b/44286f2c4c07db498c6f380c1bdddc4c87882f", + ".git/objects/9b/5f386b236dcca4cdfcc2be1cad88b7fc0a2397", + ".git/objects/9b/5fae2119fa30ec9071f6771ea8df652d76e4c8", + ".git/objects/9b/7e0dac002cd6b5f7d3527aa7b191131647fdfa", + ".git/objects/9b/88994250be94918027a92f30379177b05fb4b4", + ".git/objects/9b/906b216d620c6c6458346a1ab1fa3dc33025b3", + ".git/objects/9b/926c0b3669dac5bd668fef6bf775198be8594b", + ".git/objects/9b/9b0bf7baaa85fca7e6c41abba42f6bc2ab9343", + ".git/objects/9b/b1b38e0ca5ff9ec34bdfa15432f399b2ebeaa7", + ".git/objects/9b/bd62025b1b6056bfbcae28416099a99f557692", + ".git/objects/9b/c5c26862940e74767215d446abce48fb167cac", + ".git/objects/9b/cee610b562db0c6593284f92c79e84b805c6fa", + ".git/objects/9b/d9391ff99c83009dfffa978245e36095310a24", + ".git/objects/9b/de2f77026267eee6114b6655f8cde3ed75809b", + ".git/objects/9b/e34fc7750b860d870eb82deb4684def0453d0b", + ".git/objects/9b/ef1bcf8191b5aaff7c1838baa623b668da02df", + ".git/objects/9b/efe7b74eff8d26413e3e507a375d20f626256e", + ".git/objects/9b/fa395a30df10b68b550b2b9aa8a556fb37b3fd", + ".git/objects/9c/02e2d08b9a0e7774fc1b6eef32d53d9d2b49ce", + ".git/objects/9c/0a9192f05a0e43789319e0978dd109decb534b", + ".git/objects/9c/10d82dfdb20887db4bfbc4a1031a833d8a7514", + ".git/objects/9c/157f7b3c4199d264affe7f6b6d19eab12db9b8", + ".git/objects/9c/1f1ab34e63fde16e781789de5bd5e24f617f1b", + ".git/objects/9c/1f3cc84e8f16535dcabae586e4b7214a406a25", + ".git/objects/9c/3cfd9e68c101d2faa11b96d2dd761b88041e6f", + ".git/objects/9c/62f82123054fe658720690e3eb7ad85205b812", + ".git/objects/9c/66905ed2df13088ce3062fa8fef12a8873e105", + ".git/objects/9c/8f0fe12f10d11ad90ce902f0e7eb767efc36fd", + ".git/objects/9c/a37512bb643478a59d3816686aa24bd45f9118", + ".git/objects/9c/e1efa20aed615a3caa422fd2d6d131ad972f98", + ".git/objects/9c/eb540c1659299b97cf8b3d089dc4a669312523", + ".git/objects/9d/016454116d967f148f804290ea17e135e84df0", + ".git/objects/9d/031aa7b9f8bac9d43c5de206ed7789c6550bd7", + ".git/objects/9d/16de8d01fdb6924797c4b8525c3ab6be65bf38", + ".git/objects/9d/2f97456f1c08b816d4f31d3c8a20069205897c", + ".git/objects/9d/357cc45aaa61bac2bd7f19662024352212dffa", + ".git/objects/9d/3e1f477c3b859193e5a02124b5d52dbf69510a", + ".git/objects/9d/54ca38905e375511edc26268916454b44e6d18", + ".git/objects/9d/567d6fba88ef85a44027f794cba55c0bb2ad5d", + ".git/objects/9d/5aacb1c584f831cb3b5224a0391a6f5dd2c5eb", + ".git/objects/9d/618c43ce8e8ee4bcb04f5fe33df3935432e1fe", + ".git/objects/9d/6b5f61a02545ad918d624fa242a3555ece25cc", + ".git/objects/9d/6c576417878f7cc2723b5a67191c155f9e5da1", + ".git/objects/9d/8771dde3cb76050000d412a818fbb7bc024bf4", + ".git/objects/9d/97e5ab523dd0432dadc6b4e5c85e7ea5ce7905", + ".git/objects/9d/99a380ad425bd9ef7ce80238455baf5f8bf0ea", + ".git/objects/9d/ad3ce13b114121d268c432f3acb42a64dba6a8", + ".git/objects/9d/ce5104c7082feb9189e843cbdc17441db8dcb6", + ".git/objects/9d/cf755beb077b5c5291527c4629a1bcaa10a022", + ".git/objects/9d/d9c51026a18929788a8cb2e0ddec7b6f004659", + ".git/objects/9d/ddd340edcacf6fe05ff71fd1c9480730d7e147", + ".git/objects/9d/e32875326eba14990d75cfc27a4e30ed1c2ba1", + ".git/objects/9d/f3b00c4edde7e135b5564a8f402db56c830f9f", + ".git/objects/9d/f813aad5fe6b66d0af99b99fa24124a0f6ee3c", + ".git/objects/9e/1792adb033d3769543720a828b13334f8b902d", + ".git/objects/9e/183107d50f9f0ddd472f539bac1f06637aa466", + ".git/objects/9e/18f12a4a24ea3977a20dd0b648cbdc2ff26291", + ".git/objects/9e/246179886bb6dbaf4181e7a126420d1ffbbff0", + ".git/objects/9e/475cacdcbff2d8bff41e60161180e0ed5475ce", + ".git/objects/9e/59e5e20320fb8cdc3e8862ba3f485c59bbb46a", + ".git/objects/9e/60f5624c0a638c9f53d6610e741b516c655f75", + ".git/objects/9e/66dc68935b1212b0dab3f2a0cd60786fb0dfa0", + ".git/objects/9e/681f9f40958a1af2f85ad0b8cdab79a255aad6", + ".git/objects/9e/76a2f6e7921d7112492332bd3da72c5013dd9e", + ".git/objects/9e/8434294bdb266f7b163827f50b13c601f5f6d0", + ".git/objects/9e/85050a68d93173f4722471ffda014f95438cc6", + ".git/objects/9e/87b8a7eeefbe01f5b5f8a074b78663ef5a643e", + ".git/objects/9e/8889f64e7f30b5f1a03e712369ae2f41d2c2c2", + ".git/objects/9e/8d88a94d5cbae7ae2f0ebbe1a083235a09aa1b", + ".git/objects/9e/9027608d5ddb4b0b0ce541d33dd50278358588", + ".git/objects/9e/9d100c475f85ce0ed8f9fa765914c697d24648", + ".git/objects/9e/a52b03260575526488b1c522007dc9773b8529", + ".git/objects/9e/a5dce6d64c6857e7cc3da87221afcf7c9b5a94", + ".git/objects/9e/a7ba6fc14ba69790a2ecb619063f8708c7984b", + ".git/objects/9e/aa292a37e6c14e490696ed751a65744c08da5f", + ".git/objects/9e/b1c867f0838a148040c7222f933fe00a5e01c6", + ".git/objects/9e/b69873ac3ebcdb3a892af542ee2529614f8f3f", + ".git/objects/9e/c95a1d1e7a1e4f49f58a567f3a2061f29a9ac4", + ".git/objects/9e/cd040dfb39b22dfce529a25510526f544314dc", + ".git/objects/9e/d4dff8b0d41950e2410234993414d5507a134a", + ".git/objects/9e/d5c67e9bcca1ff926eea1ce04e19b0ebf2c357", + ".git/objects/9e/dcb3bc3c8efd9720904d88fe5cbea863d7501c", + ".git/objects/9e/e73b49bc86c7c15a7d65d989f7100d33b711c7", + ".git/objects/9e/e9d22a59a581755bebe25e79deac176810a5b0", + ".git/objects/9e/fa95aa187871c9fad9d79da953d5cc2fa1018a", + ".git/objects/9e/fd7d89a196bdddc9e8c80052e0bf413a1b33b3", + ".git/objects/9e/fe63a1ffcb8321f71928c124e759ef19bc0940", + ".git/objects/9f/018ca9c80f341ec7581809813adb7b67cdbd69", + ".git/objects/9f/033b9a727e480bde02a34965bca84f24b1eade", + ".git/objects/9f/16e874df622bee7913bee5c15660031224700a", + ".git/objects/9f/1784ac104a942599b4802e0589f87ef234bdce", + ".git/objects/9f/1ace715d4023385116f6902e4d2cafcf81858e", + ".git/objects/9f/1fb5b82272b3ad64a66ac220c5f62128a00fbe", + ".git/objects/9f/23e7e9a8c27ea3def0e5a5f600b44c0e5a389f", + ".git/objects/9f/25f562e2a20ab151feb596cf79f59840527d74", + ".git/objects/9f/421b96f72be1d3b658cdd988fbd34c3fdb3728", + ".git/objects/9f/59d6cf6334cdef12e28f212ec37320f62791ed", + ".git/objects/9f/5b77bc6f1aeb9d78f2e45618b2e26d70119ade", + ".git/objects/9f/5e64428b1e82edb71691b6869567fe182db41a", + ".git/objects/9f/67bd95124d205e0d3a8bbcf6b3a4cc0ce16713", + ".git/objects/9f/681329e7b93e8cd8bdd643c54e20fe1c2a9450", + ".git/objects/9f/806ce6778cb769a2dd660d36e1c94bc34299ca", + ".git/objects/9f/82b2f2b47d859e97dcd2d6e59120e1bdb9b064", + ".git/objects/9f/88f38d5cbdb48ea2f0fe4c407c80a4ca6ac1fc", + ".git/objects/9f/8eef3b014ccf23d71d2e82452293ab55b5e556", + ".git/objects/9f/9316ee300393f719805c2117bda87e60388dae", + ".git/objects/9f/a19bc89bda512247c7b21ec44e3563148ffdc1", + ".git/objects/9f/a2c7d4303ef39e5170844b1b688d69cdf9f49c", + ".git/objects/9f/a4e7d12817bc2c5d65054fad366fcdf29b4b43", + ".git/objects/9f/af8b774a48282e059a4623d8deffaae3d08ae2", + ".git/objects/9f/b54f790528708e26b5ef5ddfbc55c8f904f580", + ".git/objects/9f/cb3a0f56902be08e4acd78a843a2732b3cdf29", + ".git/objects/9f/db13fb19d5a340d794f9fc3c007b8ee20317e8", + ".git/objects/9f/e61a0f9d3cbcc6763753517b73480e8940a0e6", + ".git/objects/a0/04f05f38153db0c04ee1c1b1dbbe0b5878f26c", + ".git/objects/a0/09caa8f305bef748bb129f5d14395da6caf43f", + ".git/objects/a0/09f899c9f082cb6c2ea32255f8d72d9a13f2ba", + ".git/objects/a0/14c3652de4b0b9e0ef3fcdb5d2f8c7001233e3", + ".git/objects/a0/601b5fe758bbd10007d74f289359886b44a994", + ".git/objects/a0/682912c5c70928d698f574215dd06c36767bc6", + ".git/objects/a0/6c775a076fd205384f6e0b6fd0761b1e316d7e", + ".git/objects/a0/75e62452ee7fdc4114197cdee6ad6374a3e7ba", + ".git/objects/a0/75fbeee3244f6618cebbf262d6ca8463395d69", + ".git/objects/a0/8215ecb36de014aa9e67d9a74578a4e4bb793b", + ".git/objects/a0/92e613191af3f95e69d0337622108cda916905", + ".git/objects/a0/9aa9964d2b5e1e807121de22067c447ddae09c", + ".git/objects/a0/a80bf18689de617ccb2e7ac6d4fe2febe01ded", + ".git/objects/a0/ae909359405ce7756c99b16a54035fe0267472", + ".git/objects/a0/c4d8858769ffb1a37cb0568261d7fcfc8e0b24", + ".git/objects/a0/d3cf8ab833b8eb5fb4d3b57d385f87eae78ef2", + ".git/objects/a0/e35564b8107a254065dd80e1b5011186dc283a", + ".git/objects/a0/f0b3b9c07b2bbe160bf96adaf8957755c9e10d", + ".git/objects/a0/f285b6ff7d02da6d69f9189fe18ce6fb00ad2b", + ".git/objects/a0/f66ec3e04424135f60224955e3c2e955d39355", + ".git/objects/a1/18718af0df5548034dafba26b620950ba10f59", + ".git/objects/a1/216a8485c3835e2e782196883748163837db3f", + ".git/objects/a1/24b2e1ec58f24dfaece95bdc13baa84d747591", + ".git/objects/a1/28bf4adfc4ae2a0bb28d2ff280217e506c00b0", + ".git/objects/a1/2fc1d0b6e8ef4da7d3cbe3595638e5ca2ffba6", + ".git/objects/a1/3221381798ac14d16c41242fe738728f0a795e", + ".git/objects/a1/33027e6e2de4bbcc79c86c6b1b18a9d41e009c", + ".git/objects/a1/6130082dd33b8c2b570cb1fcd7eba24aba48ca", + ".git/objects/a1/68d20d29daf702725cfaf83cc2e82edb1cf59f", + ".git/objects/a1/6bf5c8b5658ae6dc24fb41b02e154eb775b8a8", + ".git/objects/a1/84745e103756b8a51454733e3e7dcd5f9ea740", + ".git/objects/a1/86e5f0b2710c282ded465a88af16981a309825", + ".git/objects/a1/8815ff60196ed8d971df7f1229cfa38b6001e4", + ".git/objects/a1/89c507f11f0b09711e8943a0737b0c57f5ce90", + ".git/objects/a1/8f97f1a8a60f8a250cf69f7392f2309d6e64e2", + ".git/objects/a1/90a367432f5dfd65519748c0cda8c80d275a10", + ".git/objects/a1/adc8edbdbf13336d1e1381197c1262c66d7df2", + ".git/objects/a1/b006c2747c3de660e956eab7fd101375370c3f", + ".git/objects/a1/bd2b27315863312fafbc88c78ae77e51b34622", + ".git/objects/a1/be138a1d60d638543d5e8fcfcf8e524dc6ab95", + ".git/objects/a1/e01529da97ac1e1bd7938637a07b55b5b10aab", + ".git/objects/a1/e7b7e00d3298d6dc8040521d2df8080c81ba90", + ".git/objects/a1/ec745c47ad8d70a2fb31dd0c4f5bed6d2f29bb", + ".git/objects/a2/0466f4a3898d26ad3de3f0fbf120540d51213f", + ".git/objects/a2/13663f16ae67e7fe4ce6b388d5615f093ee1bb", + ".git/objects/a2/2341a3b4c20b59e93e0b9f205b753adde10c85", + ".git/objects/a2/249438c737cb2e97065d3a3a8dce4c11af58d8", + ".git/objects/a2/306e7a1f29908b29b7dab50b916ae55f1b53cb", + ".git/objects/a2/3309add894a79a8052122f982a3149d224ac51", + ".git/objects/a2/5fcd803dcf363550604a12622a4b7371f159ef", + ".git/objects/a2/60fcb40b7e4916a381c97e25537fd6e2b12795", + ".git/objects/a2/686a8b3e67607330f96dd128b59e3c13de4a43", + ".git/objects/a2/6933a88069fcac5ca0a603b3a9bc20ad99bea4", + ".git/objects/a2/76a0fab845a6b485ec862d6a992abf3e59457a", + ".git/objects/a2/9e238cae160544a5a4d977d7b2c7ed2ca8d417", + ".git/objects/a2/a709de300a12dd85c6a9cc16646685791c412f", + ".git/objects/a2/a904df18b2a4da5893a06adc7682e4e38c6ade", + ".git/objects/a2/afd71ef403d6b3470e0e87f460ff7a600dab96", + ".git/objects/a2/c5bff709fd08ad7d2bfc79769db57e1d4b4974", + ".git/objects/a2/e3da64d2c362e5a4bef89e0303af2fda86e76f", + ".git/objects/a2/e9277d9b3ef63dbe0e4293510b732d70b17ddd", + ".git/objects/a3/01b4e2a4e753fefde55a93d08aaefd9ccef52e", + ".git/objects/a3/2200a606b81195017cf031df6f04672cf31ee3", + ".git/objects/a3/23446e69961c85111aae7ad0080b315615f12c", + ".git/objects/a3/287f4fd92939e74039d5c6fdc5cab3fc8b0d22", + ".git/objects/a3/30f4fe714982244d359fcb891a577f899bca87", + ".git/objects/a3/3cf504416409d93d06791644f967b5a927b56d", + ".git/objects/a3/45aa4a3b3c26a487f8b3c48e88d26428eaad32", + ".git/objects/a3/47a932ecfeae19a58f82cbd67194affe688383", + ".git/objects/a3/497692a16a3453e321ebc92d7841ef2580b00b", + ".git/objects/a3/5592d01f86286158b857c85628459f26b36526", + ".git/objects/a3/57acfb5ccd23467efe71d0fcbb440e99a11c5f", + ".git/objects/a3/64a74aa4f02dcc768937b7206e23c2f343c274", + ".git/objects/a3/681de629bfaf281e33eb6cd1fed5f8cef71a97", + ".git/objects/a3/6b7f2033ff39e40d005a35adf77fb065218046", + ".git/objects/a3/7631b8129623dd8f6b384e22c08cf8a3001f84", + ".git/objects/a3/83347a0ff6bc6965ce9abb807755d72f541f9a", + ".git/objects/a3/871c4b9f252ab3943b7cbdb0c804120b75a398", + ".git/objects/a3/8eb6bfc2446995528aa1d965f029a6c24cc58c", + ".git/objects/a3/90ecd38b2e0e25c9e6013276645fd82c378931", + ".git/objects/a3/92cc8f465df5e94bc48e7c535e0f054adc2083", + ".git/objects/a3/a3dd74da018c0a42c9b59c030921de52668efd", + ".git/objects/a3/a829f017499a0779fc19cff0287bf3d172624f", + ".git/objects/a3/cf844b2d9bdf756dbce44dfa3798edd00d9ffb", + ".git/objects/a3/d2c53969385b8d02ccd09dd05382d7d010a2ac", + ".git/objects/a3/d604736ed95e07526eb7611c239f296b8cdb42", + ".git/objects/a3/e14e89e91dcfcf729dfa83a763aaa89d08f8e7", + ".git/objects/a4/01b885b0e347f564b9aee4d5aed95b60f884be", + ".git/objects/a4/15cac671a58a6ccbf865ddde47a163f47d7196", + ".git/objects/a4/2f6f2c3fb9d0cb7501d5dd8aa3fa69c9c142ed", + ".git/objects/a4/326a9c80b097d252be04975ee661fd6e656a80", + ".git/objects/a4/3b46287c28d3fe73d5664e7a2d5a6ef42482a7", + ".git/objects/a4/4679995f9fbf20fd6f0c8037f6e8ccdee2cb08", + ".git/objects/a4/7207de289b8084e7fa76a51fe2a9a699858e3b", + ".git/objects/a4/73e35366df19b7cc6d386d94ce62176891ac61", + ".git/objects/a4/751f84adc0920c1c7bb6d12753ef39dc66ac82", + ".git/objects/a4/7a45f0eb522042dcccb41382934f4273b19912", + ".git/objects/a4/7a63dfb4e4d74e009629765befb7e92ab11199", + ".git/objects/a4/822a211e1266e8d8d2c88624b7960efc374e7d", + ".git/objects/a4/83e7d86ee52cfbd1b62980e9d394586a0b1ec1", + ".git/objects/a4/928674b4387b05e567449dd21acc1373faea51", + ".git/objects/a4/95389ffd3b6aeab196d5ccd27ea0f6224a9525", + ".git/objects/a4/986da5599c29e420ca98c13b40306ebd1ac1ff", + ".git/objects/a4/9c87172c7be71d9b4d6a1db1e929aefb657ed1", + ".git/objects/a4/baf99b5831b975efb5d2b4c97986ab5b59a7e1", + ".git/objects/a4/cc87f52c21b4c809911a89d3c5a7135a4f485b", + ".git/objects/a4/cffed1449b9cf7f283d9c0b23be60c1edabdc3", + ".git/objects/a4/d5d476a8c0dc04f62b9cc57254d64f8df2c72e", + ".git/objects/a4/ec0e23f02b5412582000d3155d3ce10bb5e3eb", + ".git/objects/a4/f7859476a438e68d9a078dc8a2de080c424479", + ".git/objects/a4/fb93cfd736914a42ed5255beff052a8cfb36b1", + ".git/objects/a5/03f56073c41729cc48bb68a5d6ad8c5f3fa353", + ".git/objects/a5/08700c8cce04e5fac3e603305608d4433027b6", + ".git/objects/a5/13fee1757830857ed0f2e13fcf249641784627", + ".git/objects/a5/27325a4b69e36b5bfe04b530ddb9739b84a520", + ".git/objects/a5/35627d64f64c3b60a114a94f58cfa155822752", + ".git/objects/a5/4e15fadedf210ffd900690fe4778e1cd520079", + ".git/objects/a5/5cb6b641b897cd6c0866da6c82fa541b81e353", + ".git/objects/a5/5d0b13fa40a253c946e47eba71a9d41e7e1e97", + ".git/objects/a5/7025a40f5661832c0a7de1b6370c69f45bda77", + ".git/objects/a5/7b28a2e54045f463cff72de95cfc696128f7cd", + ".git/objects/a5/8cf84e8d8fbc8a865cf785e06864e8239726b4", + ".git/objects/a5/a933bff5f47a83c59e4853392ed8235a139d19", + ".git/objects/a5/c996a5fe004d6a85710083400f57393a2e6bf6", + ".git/objects/a5/ca43ddb2253b3172eee43bc067bc5940e12382", + ".git/objects/a5/cd5be4a024f870eed8d614ead2c76713b0831c", + ".git/objects/a5/ceca8ef26614969a85302cfcacc0d225abf475", + ".git/objects/a5/d0c24d225707277fe30f7d224c23bc575c1cf5", + ".git/objects/a5/eb6a70e102ed8a1fd1d1721fbc59ef4044c10b", + ".git/objects/a5/f011779d24b3b9ddbb74f21abb20f97724936d", + ".git/objects/a5/fe3b4b59ca53dd09fb0cc21ffa5f599dbf99fc", + ".git/objects/a6/04361d912e87c1e1215ae408876ef835843381", + ".git/objects/a6/17af2358f3528daa68400c05b2ebfaa2607d57", + ".git/objects/a6/1ad551bbb07ae455cc640fa6cdb08e4f71d8b0", + ".git/objects/a6/313a4106d3e9dd755d0defaeeb1d129bb48055", + ".git/objects/a6/391ce901bf343ef37cec23a58c6849d18eb6b9", + ".git/objects/a6/42f25854ab2e6608117387fcf909ffc5386a64", + ".git/objects/a6/4689ae83b3d2a331bec8f24e97b16c9a2c16bf", + ".git/objects/a6/4b4b6991c39953c719f9e4cad1741c14d033ae", + ".git/objects/a6/5d37403f592184d6ca60e12a4eb1a3553975f8", + ".git/objects/a6/5fb56f776f91fd0a96e370780c7861ceea8e69", + ".git/objects/a6/643854853bd66aa597b06f58adbd6417604fa4", + ".git/objects/a6/6b81db7aa77d8e319b3654ca9c5fdfee542862", + ".git/objects/a6/700934a79eddafdd7dacb137b3d440a369d087", + ".git/objects/a6/7968ad2bd9cf5a0ac2c556d1b47b0cadec654a", + ".git/objects/a6/815ba5aeadbdc2b4cbbd694edbd6d711a5c44b", + ".git/objects/a6/8447d341d02ddcc380c0e105ec4536e01dd500", + ".git/objects/a6/8b222773854afc98885e054df3321e8a3228e2", + ".git/objects/a6/8f33003566ddc7d7cda4ed9c300ed5b395128a", + ".git/objects/a6/a28d32b22b9c8e98a7127ca8aae26b06b39404", + ".git/objects/a6/af7f9385fb1891fed0ea209caaecbc14b3905f", + ".git/objects/a6/b8d68d7e479f5a83dca04b722d2b14654153ff", + ".git/objects/a6/bd322d22071d300d913e465b2f259cf70392c2", + ".git/objects/a6/ce32670a4d05dced6785a96d5a73a067e50c67", + ".git/objects/a6/cf82211783eb4e436a032bcd5b80bc3a797de5", + ".git/objects/a6/dd312a47815d8979d17f78f784055b1f79bb72", + ".git/objects/a6/f18fe0d21c87fe75920e6cd8635035276232ec", + ".git/objects/a6/f4ccd6e4cdf79ebace0ee16ba417b3505fa891", + ".git/objects/a7/0a61c4f30b4b930ccfe256a76f98154423321d", + ".git/objects/a7/1aefd11f67efd9573c768b06c5d640ed50fa0e", + ".git/objects/a7/1fad8183014200c0ff4dfa57d137a8bdd8f83b", + ".git/objects/a7/279a243d0713c7bacf38fa9133545b7686a45a", + ".git/objects/a7/2fc23ca6efd5d8a2979ce287eda90356b6b709", + ".git/objects/a7/356f8d5fe4995427471ea4bc5329306abdf663", + ".git/objects/a7/4a9433db914d3c4b9118ea7e3782e2c281ba5e", + ".git/objects/a7/6301b23ee84ed5cf86d3359e2b4e8848bea701", + ".git/objects/a7/769e2e6ce95f1eedc8f18a7f97ef69efa4bd63", + ".git/objects/a7/790e3e308d8a57288b5ec4d075f4d635fd10da", + ".git/objects/a7/7ca2185d9983cd6bbd5ab396e5ef9e9184e7d3", + ".git/objects/a7/7e07cce35cd336b9ca658cd5105121590cde39", + ".git/objects/a7/911ccc74b61e0743466fe41a1b92b36a1ae773", + ".git/objects/a7/9894a34160c5d753029e6dcef34751a5df24f9", + ".git/objects/a7/acf4e4af45e6a6673538bf0177e451124cc55b", + ".git/objects/a7/b1fdfe0c7c1ca910d3247361127e5e0f824d5b", + ".git/objects/a7/bbb82069c06e5f6f0b3273f4fe1817cfa3a7ba", + ".git/objects/a7/bedb329a032c1389544847e9420274f4ba3a2a", + ".git/objects/a7/c96f7f2b36f149224c2521b21d53b8de0e3cc4", + ".git/objects/a8/26b94f8ab9ab33192f10dbf7712d7ad4cb97d6", + ".git/objects/a8/41c6036e8a4677966c371dfeecd76641813018", + ".git/objects/a8/42ce1986d3d0a84a44c4dbae33e61ae72bd359", + ".git/objects/a8/43b82786c1e3faa55f9534be93ade75d808d4a", + ".git/objects/a8/4dee9b7aee4680736068d050c68ea3edfba644", + ".git/objects/a8/4f89ec2ff9b8dbcee1d06aed19175c6e267094", + ".git/objects/a8/54448d922d58214e6e0263ca6b8a5973d8ce57", + ".git/objects/a8/5461d503c843a8aee2fb51f67dc946c8c21809", + ".git/objects/a8/5a81b6b775f0b1f28a3f15e6de40942bcefa2e", + ".git/objects/a8/63063b33e8636e7df4250937596f6aa37ffd11", + ".git/objects/a8/7a417065f3b9ac04e1c644335f945004a25b84", + ".git/objects/a8/85916ffb83a7e2bb91682266b51e5ac8508e0c", + ".git/objects/a8/863a8b38748b0bbaab0bd4829126b0ebab5334", + ".git/objects/a8/86c8b269cb8394c58043e4f8d34fc3da964a17", + ".git/objects/a8/894f50cf50c1037fda366275dfdeab8fca3f5f", + ".git/objects/a8/895cab40b89843a8fe55a2b9891da9d9bbc200", + ".git/objects/a8/8aaea09f060151f2fe37a9937401cc08082a62", + ".git/objects/a8/9493dd6017b371bf87edff0472b5081c5222a7", + ".git/objects/a8/94d497122bccedec7a365e80d354fb3999bb6a", + ".git/objects/a8/99b373c658013fc65d7cb3af2fb4863e04b68b", + ".git/objects/a8/ad36d18b398588ec37e865c80a2444f0462939", + ".git/objects/a8/b63358a52648acde8dae74faea788edeeb8059", + ".git/objects/a8/bbf7f64bcb03b1969b58a1e52e491134cc0d15", + ".git/objects/a8/bc335b59409af913cee2e0b7b68efee000c12a", + ".git/objects/a8/bd4599f26e09ec7f5eb9404b7d8bf69458eae7", + ".git/objects/a8/c1f4b754fc50bc76c9ab86da05bc0e6a30e352", + ".git/objects/a8/cce61f8bab7c1f042d189b86818eee894475e4", + ".git/objects/a8/dd4bbfb5e2014e422f5d0a0046f65ff861f43c", + ".git/objects/a8/e87ea9151760a7eff3dacf4d5b4222f8903904", + ".git/objects/a8/faa674831795e5aa595fb2e43c1d96990b2117", + ".git/objects/a9/04513d392ab20cc08eea23962346d85e0a5d39", + ".git/objects/a9/0cf819aaf28dccf792cb58c45883f71f812d00", + ".git/objects/a9/12368d34cd79decd949a9dbccf857174927c79", + ".git/objects/a9/24d756921e56913e3b17f57797e0bbe73a6c7b", + ".git/objects/a9/25adbd73ed43ab26a5216f7c1db3f6098ffcd9", + ".git/objects/a9/382a937597c87c4ac2c95086981bce78eb1ff4", + ".git/objects/a9/3c14ec5985dfebc7ad08a1f44edcf37971b0a6", + ".git/objects/a9/3c9a4678d6e3961614a8e90214618d3045aaaa", + ".git/objects/a9/3ec68d9d428548a9415bbfa7c76196c3fc0aed", + ".git/objects/a9/5adc13d19a5ca768393ef00ba5d367fe97b152", + ".git/objects/a9/6a26e2a447bb0a4c045a3e79eba0182ae3e28a", + ".git/objects/a9/6dc4f6cb0589fdaff337cbab86e59c2bd1033e", + ".git/objects/a9/74a2c70e634bf8a1189a9734f94abf17d7f436", + ".git/objects/a9/94b45dd08201d7626cb9de5585994f3794627e", + ".git/objects/a9/a7f170f469d53af613bccbbbbe8d764346ae94", + ".git/objects/a9/ff78b37055fdeb8a3f6ee6b87a6603d3c38145", + ".git/objects/aa/01c7cb80f8cbffa59ee038f158ec648190bd05", + ".git/objects/aa/1193c61318780d4dac128dc8aeb5f10ca0fc77", + ".git/objects/aa/174042ed0a4fae22bba5f4074bfc0a364db395", + ".git/objects/aa/1ecaf9098775352ecffa9b60513e1a262491d6", + ".git/objects/aa/34c0c110995b04dcba1b7f560d85c94d23be41", + ".git/objects/aa/35c4ff65f2f0e96fd0bcf2fdb54b670d188701", + ".git/objects/aa/4c4926e354b1de7f71c7b84adc60dd012ebc7a", + ".git/objects/aa/5b5aea6d33751b9b1e03292b196c4ddda3972d", + ".git/objects/aa/636669686929595c4c9404b1456bc1d6539038", + ".git/objects/aa/6b3aaeda11446eb1cddbe87a2f9d87c9b83eb5", + ".git/objects/aa/6c421a135e5fd438c0fa7fc581ef69bd0b9215", + ".git/objects/aa/71a2e96779393160d3fcc0eada422ca72bd46f", + ".git/objects/aa/776d7fab6acf432d38871f05c448eb9ad5d51c", + ".git/objects/aa/8e00add1577b8f42c153cc809af1a03e31f0aa", + ".git/objects/aa/972066d3b102bd0ec5d9c7d4186f401cfa4af3", + ".git/objects/aa/a1b988d6eb58a0074c22bdba00ad8c9efe6e2e", + ".git/objects/aa/a9c881405fedc37fbd90d529f19b9517d44a28", + ".git/objects/aa/af6dbc8aacf19625b54d9ae629af2bbc8051fa", + ".git/objects/aa/c1269e74a5a58db108a7eeae32333f669b8b05", + ".git/objects/aa/c5cb1270ddc8aa836812835a407797fd84f3b9", + ".git/objects/aa/ccbe5e21e51573dc843a9d33bbb29f4d949190", + ".git/objects/aa/dc9ec3b35afe6c0960c9ff60aff43f7ca16412", + ".git/objects/ab/081c8e52e8425ac980f2238db7a891e9072b8d", + ".git/objects/ab/143fd2e5342107a2f20f89b8f89a6617f033aa", + ".git/objects/ab/1519929be1f8c000fae46f7808e260bcaea8b1", + ".git/objects/ab/1deeef47524feccafd609ea4a511abddc62e80", + ".git/objects/ab/1f80b2a8ec769d6567e051470d8754c3233881", + ".git/objects/ab/2db6c7535f009900d222b0ed6753274c703166", + ".git/objects/ab/31f7ee3370af478ba34600f28effefa8c566ce", + ".git/objects/ab/332f15f4aa7ff4b54318de44d0e917bbcbeb15", + ".git/objects/ab/33aac4a60ffe5678d3e8ad8dd4cb78d7f3e15f", + ".git/objects/ab/48899a40231918bb6f2c1e3a6e27d594c5dfeb", + ".git/objects/ab/540d5418c40dfb486f24eb01e6e8006ec02bc7", + ".git/objects/ab/566d2632bb24c0dafcf3b332d2edfc19381bcf", + ".git/objects/ab/56e73fb763b2c728c3fd0f9ee8c7cc88d89250", + ".git/objects/ab/5d5ce3617ca6928ef9e537aedc7ed5e3077f48", + ".git/objects/ab/60252d44aef4927e730814d93ae0f53e7b614f", + ".git/objects/ab/623aab95629ea844e7f3f9cd1d13a9f281099e", + ".git/objects/ab/81a132fea28a070a00bf455f9322202b6cd279", + ".git/objects/ab/8577b3947e94b6a004350dbde7095e63437270", + ".git/objects/ab/8862d596c2896b82870c08583c4aed0b873d21", + ".git/objects/ab/a6c82332d186a91b79a00c8f9b629eac7febf3", + ".git/objects/ab/b22a5c3c12b4122631512183e897fe5eeb85c2", + ".git/objects/ab/b61133daa7a682c85cb9a0448e26532988bd94", + ".git/objects/ab/d5affed29d9ee18a01ccf3241893f245211a9f", + ".git/objects/ab/f7cdb03d7271f3f05de949db22cb6d22165e44", + ".git/objects/ac/1b74931cf45c6c87daf16e32ada90d29306ccc", + ".git/objects/ac/29319f6d17976260ee62832cdb805ca1a06f6a", + ".git/objects/ac/37a836020be8a272dd8d01b7e3554c432caedf", + ".git/objects/ac/37c403f3cd604000c7d28f477e9e4f2164e056", + ".git/objects/ac/393c8cb59071e53aa2bec78b0214cc3ca28ced", + ".git/objects/ac/4788b482dc27785c1c4c09d57cf9ece1434eeb", + ".git/objects/ac/4b71485f61016b8f251172e177109381b4bed2", + ".git/objects/ac/58e01dd6608dddebd59decfbabef0abd9610f9", + ".git/objects/ac/7ed88401bc0244e808570a4251f26cf9353bcb", + ".git/objects/ac/8365149506ffd30b399af261c2e3dcd8fdf352", + ".git/objects/ac/84a65e507da50fce0db9f80df15a91a180b3e4", + ".git/objects/ac/8734e0c38202da1c2ec36e4766b92c460a33f8", + ".git/objects/ac/94b36f057cbb0ab466a87aca7f97e76cf7dc6c", + ".git/objects/ac/9f1cda0ee72b85d0229fd2fe70604d6363a6a2", + ".git/objects/ac/a2d376e63f93ab000a73b0f512f0ed721adc35", + ".git/objects/ac/ae7dc28b0015bd01d5bea01799929c2a194ef3", + ".git/objects/ac/bacd303cfb65b596a26e43393bd0687e1932cb", + ".git/objects/ac/c1e0328840df9b57cad4a6511bc2c00ebfdad7", + ".git/objects/ac/d44de6d4d08cce572cf171a2a5abae01de66d8", + ".git/objects/ac/dcbcb530110435c3520d5bc441084ea15dc1c5", + ".git/objects/ac/e5ec32ebfe09ef26a3cf6e68201e2d3dc0e6bd", + ".git/objects/ad/0508cc52c6226a4b58bd10ea93f85c16e25daf", + ".git/objects/ad/093bc1eb35ba688b4d30c1cb679dcd9cb5361d", + ".git/objects/ad/0ca862397abd1807f0d0cb6e2c84d981231bbc", + ".git/objects/ad/484bc9ec53c3409068109a46f8636dc8366b17", + ".git/objects/ad/51e62afd1f7a5bdeb97f85a7301e36a4f6f282", + ".git/objects/ad/5d40472893af6663fbb8c210dce36c7ddeac32", + ".git/objects/ad/6764bc1b28ecf7f6cad613a667b82247d3ddb7", + ".git/objects/ad/6fa8f94cc2262325363e9fb590213f9e66f04e", + ".git/objects/ad/74d7fb0708011ec1b04b6494204bf855258f50", + ".git/objects/ad/7fb65bafcc8b58998997cc98beea3f0c33118a", + ".git/objects/ad/87ef09ade869008b23506787cfe358b1afb483", + ".git/objects/ad/8c2eb4958bf082ba2662bf2774b741a0536997", + ".git/objects/ad/9aa78ba74a820ce46fb4552443bc6feaedff09", + ".git/objects/ad/ecdda887c7b873d71216bc892d47c103e63b18", + ".git/objects/ad/f0038452a4aa9f15b3c6c34079ac9db8fec996", + ".git/objects/ad/fa5ead244dbe9840a3bbdd7c90b74cbf011045", + ".git/objects/ae/04a74c7b1df365c15d2028d73564a6a0b79af8", + ".git/objects/ae/0a47dd97495e8bcf793ed1c254117bfc22f7db", + ".git/objects/ae/0b8da42cddae5b355c0b756b3e39c07b082a41", + ".git/objects/ae/0ef72e8808e666e59f85cfe9bd1c20b34428ec", + ".git/objects/ae/406e7f269824a419ca61cce693b5939aadba9c", + ".git/objects/ae/441e347eb2eb3c4eff286cc643c2faf36bb5a2", + ".git/objects/ae/58708a5bc335a2f257c4183ef8c96d2a7816da", + ".git/objects/ae/69dcb678c9e0dccd771cee659748fdaf01cd8c", + ".git/objects/ae/7cb79ff75cec5dce617b2db64f03984dcedf27", + ".git/objects/ae/7fb85d5d24f7a46781cee0bf4000307ecaf107", + ".git/objects/ae/a97d2231649943412483820105b51768e8249b", + ".git/objects/ae/ab260af4c6aaab7d370358328b7c4c94266aa8", + ".git/objects/ae/b4736649091406b67d0be25e81b92eef1be4b8", + ".git/objects/ae/b8f6acc0f55733118d9c21ac6324cec07552a8", + ".git/objects/ae/bb63bbcba68bed37d0662b3774cd6a742ce73d", + ".git/objects/ae/bd523f04f0775676d116668139bfb731e4499f", + ".git/objects/ae/c99e84a30101d2523bdbbb321d185f889b98c7", + ".git/objects/ae/d58682612c56a3a4c914d63be4faf295229942", + ".git/objects/ae/d9badf183fc6ce0029599a5178a1ff7793c42a", + ".git/objects/ae/e0ce4b3ccf9bc27a6ffc22ea8fb33d824f627c", + ".git/objects/ae/e2c055124fd93516b0d477327458787f78bcc5", + ".git/objects/ae/e9a0b404f23d4e0ccd4166bdfac5e9979008b7", + ".git/objects/ae/ebccac5f8fcc7e861a0f3073148911b0380f91", + ".git/objects/ae/f1825fb913868bcaf80c93e508288cbb24ed1b", + ".git/objects/ae/fe8ce0773b8e7a69c6e482fdb6291316d40d5d", + ".git/objects/af/19cb91a0d259cd761c856977669954513476f5", + ".git/objects/af/1c51c89155fe7e6bf382e3755ab706fed53abe", + ".git/objects/af/1cc9349ea11ca190567bae15badc6e42674e62", + ".git/objects/af/260bc315378be475efd71dd61b5ee87432c656", + ".git/objects/af/27f66d4ed29e5bcbbf850db877bb829d3e3c2f", + ".git/objects/af/30f65054b2e86ca45505534fe79476b5e0cf8f", + ".git/objects/af/334e2c93cb318cb06c9529f1763cd4f7eb1c5a", + ".git/objects/af/56d421f642ffdce90c349dad1565dd693038a2", + ".git/objects/af/5749840a6fea5a1cefa1a82e94830e4f4fcb7b", + ".git/objects/af/63577b6998f6fc1efa77933f756db9f4650960", + ".git/objects/af/67732122ec386b863671b5cb92e0bb695cfb36", + ".git/objects/af/6e25bab06ee930ed9d743c6e272aff94566517", + ".git/objects/af/88395db13cee7238057fb29e0ba3e4f3e1db5d", + ".git/objects/af/8c34dac651d6d26eb72e18af497157edba2c0e", + ".git/objects/af/8d65a30d7d8200e3c6190d7689a12e03a98639", + ".git/objects/af/8e5668b46193d453d6895f878e786214c13ce6", + ".git/objects/af/90c5d17058af24bc5dd4f17b0eeb1ab9839670", + ".git/objects/af/9238c3c9ac70358cf68144298d6a7a61aeeaed", + ".git/objects/af/a4b27726dcb7ae9af8876136c6a06631ded5f0", + ".git/objects/af/ab67e13c7881e05300e7fdcffdff8ca868d701", + ".git/objects/af/b0327197e363983c2d2fc44eb24a59a0e71643", + ".git/objects/af/b84ffd6ed14fc514a4fd5dcef74ea2d07b9fdb", + ".git/objects/af/bb4d25f16cf95e41ba205629bfb87385d2638c", + ".git/objects/af/d528166e1d992c70e4cf98b21f17abffe08aa0", + ".git/objects/af/d8568e1939e6a835ab9ca378023f10c0fba8f9", + ".git/objects/af/e3b4450d71beea96684cb8287d631a8027b530", + ".git/objects/af/e84eb344a883a5ea4030c8a192342f95921229", + ".git/objects/af/f59c0e83ca97b5d0bedb34f0d0f5558e677607", + ".git/objects/b0/0d8092f8930a04bdfc24851046436ccc08b916", + ".git/objects/b0/3658dc9fc6d3bfc887b079ac4157e5d1db3b06", + ".git/objects/b0/5371bb72b02b2f035aafa323e4a0795485f9d8", + ".git/objects/b0/702c928d0785ff2f813bd98af79d398ae1578b", + ".git/objects/b0/7501b324d93ea087e6d0a38773bd2352642f87", + ".git/objects/b0/76e274cad6c8ef12ac1076e52894d220cdfc5c", + ".git/objects/b0/8f5b61a3afd64234c41f9f3a8dc2af78713e35", + ".git/objects/b0/90bcf081e96a76ac0ecdbad4da7c7cca561290", + ".git/objects/b0/9a5cc34968a7e9ddbbeda0ccbf8e23e01947ee", + ".git/objects/b0/9cff5cd726b074c0b6042dacf5a7b59511ae5a", + ".git/objects/b0/a11416a17371c54bc0b7e3abefd33986233b12", + ".git/objects/b0/a848d1cadf7e0a59c99e92212629edaa0d1fd9", + ".git/objects/b0/b8a011d119fcc9140f3263ba56c1db1eaa1e77", + ".git/objects/b0/ce73b45d891fcc99da9039c2a5d413f5ae2334", + ".git/objects/b0/e759f72762fa9b3bf6dc7a88dbd1387f7aa745", + ".git/objects/b0/f981d1992004fc9cb822aecc19f6d9870a8d90", + ".git/objects/b0/ff6f0c6910255a74d45f2068bc31503cea3fb0", + ".git/objects/b1/06a22c73d0660f8609842d9b9cbd0fa5c0668a", + ".git/objects/b1/06b84d5f034186513696a830173a2d70c627a7", + ".git/objects/b1/1677ec0f97c304cbf9cc42b3574478a2b2b9f0", + ".git/objects/b1/17a4e8ff2365227d4a9ff5480fd02431527669", + ".git/objects/b1/17a7f9712c9bfbf1a47c1dbbf568d1e2c4200e", + ".git/objects/b1/2a227e5b019fcbe14b46af7014176f6d713785", + ".git/objects/b1/2aa2e0a95593ee2e7048020aaa4f6ecb5d77bf", + ".git/objects/b1/2ccad66b07ac17906389ac02dfc760de0a5d68", + ".git/objects/b1/2d7532a5e7f4601b4281900a5e65bb66adbbd1", + ".git/objects/b1/3ce3f7e32be35c6467dcc5f9207974a5641c78", + ".git/objects/b1/56800703683445823c74891a7afd880754258b", + ".git/objects/b1/63a78736b7b4026171ad5796b535e544b1f21f", + ".git/objects/b1/71e4f00f6e3fe01b0aee0aae33760846d65f9c", + ".git/objects/b1/76563d6867b52ea1ce210fd52d121e50bf63ae", + ".git/objects/b1/818330fa22da28ec6b6eeb7698d7c3a631b233", + ".git/objects/b1/87c47cf018637bd23676e436ed5d92a47bd4d4", + ".git/objects/b1/9328705d1ba08a75144a58607b52cc3fd46bd0", + ".git/objects/b1/97cdb7b071c113b715f28b26d319d21914649a", + ".git/objects/b1/9824256585c251182f6c7e439fa297fd257ecc", + ".git/objects/b1/b3deb347edc9ee702efc995694d9e296bb54db", + ".git/objects/b1/b64c6db68a6a13f8dc41b61a223b5c702e45e5", + ".git/objects/b1/b9bdcdcf7907aadb817fb3b071b7f2bfb27aac", + ".git/objects/b1/c021446bc643d0c7cf272d02237dda778f91ae", + ".git/objects/b1/c5d0f30191d5b4f1c570f35163dd9bb2ebaf56", + ".git/objects/b1/c9fec3b80cee7d150ac54cc42ab198f30c2340", + ".git/objects/b2/0423401b1c8d74f76becba9fac3656deb23ae5", + ".git/objects/b2/044dad2ccc3825cf407d3c6004cb5ce0261ace", + ".git/objects/b2/22b291dae3b1abdc94069dece4eca8166920c0", + ".git/objects/b2/369466f823ea0d5e24f8027c2ff2160bedb23f", + ".git/objects/b2/3f5a02cd4c6302cf3d75503a942e3bc9ccbe22", + ".git/objects/b2/4a280c299762f45c485229523200d98751bcea", + ".git/objects/b2/5011c5b5a3d14d9e06909e286c48fad36f90f3", + ".git/objects/b2/55496233e6cb6f71d77684cddcc676cc376e5c", + ".git/objects/b2/56d982c7f2d965b842688db1d52e6fbdff3553", + ".git/objects/b2/72d72b913d7381cda1e0c2200aaece6291c72e", + ".git/objects/b2/745b9d0681cfb72025b3374468fcafc51d20a3", + ".git/objects/b2/831a813febdc0805144d119cff852c2889ed78", + ".git/objects/b2/851dde4af5c1314ab9bf9b641ed2c830adb0db", + ".git/objects/b2/99f8aabf9a1129f9b5be345df1aeea80aea648", + ".git/objects/b2/b1b562bbf3a48bf00e6736cda98c30539eb228", + ".git/objects/b2/b421bd3ab73e5a90856770000301368354b446", + ".git/objects/b2/bc005ed52d04e933759c29f94795419886e2fa", + ".git/objects/b2/bcb0665efec51d10f2ba132bfbca42cc7826d0", + ".git/objects/b2/bea30f6f3721fb7a9232a56b38b0d43488f720", + ".git/objects/b2/c05f9ccf125f458b8678aa95d4f015121ffd3b", + ".git/objects/b2/f9e07c374d1bc3d1b87089b87a60758f0cf272", + ".git/objects/b3/0c691bf23a285578f4adc96a7b60906f8f6f2c", + ".git/objects/b3/10f31accb988cb38b4e4888a817e204d9d52c7", + ".git/objects/b3/2b3f256343f15b75efc2bb17b3a8582426d914", + ".git/objects/b3/2fcc4f1db03622c63a0dc7f7df7954f8e84adf", + ".git/objects/b3/3177ecab9ca3e394ddca622c5c1717256828e4", + ".git/objects/b3/31cfed6057e3a72f911495cb8cb3e248defcec", + ".git/objects/b3/3e006188d9cbedd300dcfdc31ca5eb9436e617", + ".git/objects/b3/4ef03605176f82ef895c2a1374442f040d83c5", + ".git/objects/b3/53420c7c6e73d5e77b483082bc9f7857535b66", + ".git/objects/b3/55792d189669e6642b5b9d7bd65795cffc79b0", + ".git/objects/b3/58e1f5a3b0ebe9a0cfc5e7eddfabf33d165e0c", + ".git/objects/b3/5cf99acedb608ea02d676f97d02faed8d0ad90", + ".git/objects/b3/632572b575dfc591a9fa2f2c8a43601005e891", + ".git/objects/b3/6eba3284367e9549d55eb3fd6361e65278e93f", + ".git/objects/b3/7bdc076f4ecbdef8e6da9678df4e47ca559578", + ".git/objects/b3/8624d89e69a1fde6204d2639a85fd75bc8daaa", + ".git/objects/b3/bec834e6cb3063387c3be20dc975e81eb9f4ac", + ".git/objects/b3/bfbb0bf89c61507a51589ba45b83ac52d0bba8", + ".git/objects/b3/bfe731f3c88b1fb52c7410f1bc7ee4b65b7248", + ".git/objects/b3/ddeba4ad8fcd01afe02596d6649cf8e2d05b3c", + ".git/objects/b3/e679730aa2b49e7b19bdb361a6ef4d432c1c67", + ".git/objects/b3/e788e788bd91206270f351b2d045b5e5f8bcfd", + ".git/objects/b3/f674969b5682c2a3338d90812f4752441e03d9", + ".git/objects/b3/f6b5d201c10c3783012c4e700a9fd5e84c4d44", + ".git/objects/b4/08d2c61c52f001617d17ea91b17ce5ec093862", + ".git/objects/b4/0d740a449520e116185fefb7024dabf0b56c37", + ".git/objects/b4/1c219b007e9d4d8cb275b3d981da42aa7fd1a9", + ".git/objects/b4/2218c37710a9e5537324e72849c9f149b18ecf", + ".git/objects/b4/299cbfbcc7e123a60713c918c85bbf1fc9481c", + ".git/objects/b4/380038e7181bf05306648534e0d16338efc401", + ".git/objects/b4/3d1342e23de6f09e40679fb6ee34c43dec0e26", + ".git/objects/b4/3f88e065cd0122f7a0f83388b42ae8f56a2d27", + ".git/objects/b4/4701b86f3986416ad19a51f2b7c66bb4cdfd56", + ".git/objects/b4/4a9d8ae6f9a0101c58d029182c93f997c15b67", + ".git/objects/b4/501a470fc26400f566144851b42997bf25ff38", + ".git/objects/b4/5b3e711aa7d4ab78c6d0edb752b01eed97104c", + ".git/objects/b4/6cc76c427a77b15a9434534d0de907f734c392", + ".git/objects/b4/6f1ed5d9a5d00957d286c5571141ba017b824c", + ".git/objects/b4/7769c4b57da1b24a1999cbc1cf79abfb855288", + ".git/objects/b4/7d01c4f4ba1bf8b3446e4961862915075fea3a", + ".git/objects/b4/89f028cb9aeedb9dafb5f34f7d76d8d81127d7", + ".git/objects/b4/99d8d5dda1e3b367e257a47051c08097c2a3f9", + ".git/objects/b4/b837c146ab290a49ba12d8854c76b44681e4c9", + ".git/objects/b4/b898095e3a8f748eb01a0835e148b7548b4ae5", + ".git/objects/b4/d2668c68367e169d0c36e47444701ce70be5d9", + ".git/objects/b4/d284053039134ef64ca247508761f4ba219c74", + ".git/objects/b4/d4c990f0f5a0e8d75e6c194ef4de84ecd3ed2e", + ".git/objects/b4/e49c29fffe92f54573930abfb906b203549c7f", + ".git/objects/b5/001108857a6620d75318ce7a8252900c04c574", + ".git/objects/b5/04f70481fdcf123883b60a144563dbd3e5927e", + ".git/objects/b5/2978d4713e19dc31b49683835ec0ef90153a68", + ".git/objects/b5/2aa9a6eaae14fc13e0969dc83ac16c3a7b35fd", + ".git/objects/b5/2f990cc6e530e8701b2ba479009062997532b6", + ".git/objects/b5/48b05c924f310e15e7500a545f7cb0fd0a36b7", + ".git/objects/b5/4a98db95969367cdee2733625ebdcfd8f4f49f", + ".git/objects/b5/4cdcf2d1a1bb128bb7c918f90878ca47a903d5", + ".git/objects/b5/4d7e3e764b43903ebb81e11cb284a4aa688c7e", + ".git/objects/b5/5be2c3dc2bb4cb5c467d2aa4144bf00a42d3d7", + ".git/objects/b5/65ed7a7ffb9d3af9111128902dc7101f4def05", + ".git/objects/b5/69690414000606efb3059bbcd6a2db84776aa7", + ".git/objects/b5/6a040277080af01b41c0a4b9da39fa1973296c", + ".git/objects/b5/6b4c8fa7346a9adb8199aaa52f21415ce7738a", + ".git/objects/b5/7781ff29d8d84f15c64318a2aca9b9f3143560", + ".git/objects/b5/858061c5d987673c77faeb7000f84d3b666498", + ".git/objects/b5/85905be9c961495df3a8926804f9e28ddef2e6", + ".git/objects/b5/8e145e0c8e2020c9f914beefaa9f6a7db60bf5", + ".git/objects/b5/8eca491d0e03feb9514d8bc785addbd0c9ee64", + ".git/objects/b5/90fe5c03e1f79d8d55014167d57cfc2140bed9", + ".git/objects/b5/99ac7991d142f242add19e6fb92711e8d61647", + ".git/objects/b5/a672f8d3d30fb32d2d551580cb77f0a9761c91", + ".git/objects/b5/abd9bbc1df4852f5bfa6744a917a9b85bb5346", + ".git/objects/b5/b7c535ae04d750dde4dd9f96ca5d2f83be758b", + ".git/objects/b5/c1afb656a29cd7130cf01495a2435a92f6c0cb", + ".git/objects/b5/d4e1f3c61b709ffabf35a70a87a93fc160d41d", + ".git/objects/b5/df10e4ab50c171ac86503d6325c6ee44969a62", + ".git/objects/b5/e1a9e510a07e22de35a303a1a1b0d9f2834aea", + ".git/objects/b5/e2381c8fba4e03a25209bd2d4160728cfe3874", + ".git/objects/b5/ecf604ccd1855f59c3937f61dd4276e18d9454", + ".git/objects/b5/f693d4ab290ec7965d58214cd432bc9de0be07", + ".git/objects/b6/066561f057afd6c90ebaa757e4e54b56ab204f", + ".git/objects/b6/078530f4de92d371e467c76645e67d98a8a941", + ".git/objects/b6/09c5a2587ca4512d11200a37849f8893eda8a4", + ".git/objects/b6/14be04057402934897c2a4287a6db706481790", + ".git/objects/b6/20df306883c9f75e041e5caee135af74ea8bb8", + ".git/objects/b6/4285dfffe5a819d12a99b810f09f5d4051ea54", + ".git/objects/b6/571e05bb8fa814d50e249c9133aa1b4513ad88", + ".git/objects/b6/66bd7077ba1dba2076f234e69282b543925083", + ".git/objects/b6/697c05b84d66e45c154fa7ef1d6214cfa710fa", + ".git/objects/b6/6ee723f395f2fc9d9aba9ee89c5d03a111c1e2", + ".git/objects/b6/7dd0963bf5fb4d4b143ec05f1f058c3789f391", + ".git/objects/b6/89122cf14c93b655816d946be77d9f49df6d3b", + ".git/objects/b6/9437fc959e4ce354c4166edf4874761a7c4160", + ".git/objects/b6/965ed86a58db623008c25162b497cc1f1e5298", + ".git/objects/b6/a328945f9539c53f0008bff8936ed76bacf79e", + ".git/objects/b6/b100763fd056befbb60181c5716cb754c93fa9", + ".git/objects/b6/d6e8c24c176de7b0c04383dc7dd75a77a95e2d", + ".git/objects/b6/df14b0d7f16098b046ff4ecfdac9b496309d01", + ".git/objects/b6/e58e510ddfa258dead644e1b8ce6888e241db5", + ".git/objects/b6/f44ad83e0bb5bd30cff0b4d8fb4a3fd921d277", + ".git/objects/b6/f84f30ec111195e3c210e7f53def1ae660a3de", + ".git/objects/b6/fbb46e2fddb99b79413d70fc435d7eaee1d878", + ".git/objects/b7/0e1ce42d8614156c9227a36172257092743bbf", + ".git/objects/b7/133e53545c34c65e6534db777b31183022d6eb", + ".git/objects/b7/232d7525319a9061ac1da544dc4e6605526764", + ".git/objects/b7/3629ab14ec111a49b3f973c45bec5fa9cbbd4b", + ".git/objects/b7/38ddb5c9b50a6b45bc80d5672e856b502994aa", + ".git/objects/b7/391746ec92d41f18ef27488e633abaacb39776", + ".git/objects/b7/3cd90f1bae609c62910ca32b4a79cd765e2049", + ".git/objects/b7/3ee20d5d7ada99c85fa08f3b00f5b0cc2817da", + ".git/objects/b7/48ad2d2903271d769442badea1c4d587113436", + ".git/objects/b7/4afc5fa6f794ddb3168166c3715db9a157bc9a", + ".git/objects/b7/511f7916c8d89723b566b881728281e88d6024", + ".git/objects/b7/57c082faf4d1c3d94c1b1a343923aa5cce7bff", + ".git/objects/b7/68fc1ba501a95a85380f8da5d145aab7343c81", + ".git/objects/b7/6d824993d62a8c5741feaf5e471874d5609808", + ".git/objects/b7/823f385efc3836805aca46f1b444fc44ac0b91", + ".git/objects/b7/856361b232c10210509d75ff3da0787dea9599", + ".git/objects/b7/8755d1d0deb32167bf88c64f14774edcbb3a77", + ".git/objects/b7/9d85474d19e844b54a2c9e286a37820c3ca847", + ".git/objects/b7/b385041374d6d232c7d41c7f896823ed730423", + ".git/objects/b7/b5ede41f290ca571a041c2158e0f4b28560f89", + ".git/objects/b7/c57831b413fbca0dd36474a1202c18b73dba22", + ".git/objects/b7/ca4ad915f7a6edcda840028fd02e1f99f9bcd4", + ".git/objects/b7/d312bcc1dc075b572565df53570425014542b1", + ".git/objects/b7/e9e4f46f0bed218af94a3b436efeb3251c7efe", + ".git/objects/b8/2b16462133228d9dd555ae3df6f9cc82effd43", + ".git/objects/b8/2d07440513335691825757b691fc4ca3c74211", + ".git/objects/b8/3ad823ced777808c791f2dc70515fce5b8d864", + ".git/objects/b8/3da0c25795f78aab0390a4f3223c8d4b085ced", + ".git/objects/b8/41384ccb72bad7a3753c7af73a1accdc5c719b", + ".git/objects/b8/41f043a843ffdcfbc21dca9dac4e195dd1e756", + ".git/objects/b8/48b16175f970c4c5d55e86d6ac795139fd5af5", + ".git/objects/b8/5960de41b2a777f234e159b1c420f68609bfc2", + ".git/objects/b8/5c5f329eaf90a19703a4216f138bf016f22b2f", + ".git/objects/b8/71a3ab0de8919cec59a112f2e49365a5cff58c", + ".git/objects/b8/85db0c24a40d6e5c55b692853a88446fd46c32", + ".git/objects/b8/8c1baa8b182691e14c00bcc27b64dd46bf88fe", + ".git/objects/b8/95ae326c5e258f09a1999a9413b6a3716c8d4d", + ".git/objects/b8/a9006afb043e0f46845b0af5717fba06c8404a", + ".git/objects/b8/a9c1749076fd2ea2c4291d77674bc89e3d3fdb", + ".git/objects/b8/aee66247782bb4f5652665a09aa8434d1b9207", + ".git/objects/b8/c08585aa8b5f158e781d882985aa81ad2a0bf3", + ".git/objects/b8/c9992ca06c8e82cce25113a0fd34dd85c60cd2", + ".git/objects/b8/cf2ed58feca4b5362b940ea24029e1090934d6", + ".git/objects/b8/e23f34d925ada15c27197ac63604b90f687f42", + ".git/objects/b8/e783b029e12995e209e8b2e645b160c118153e", + ".git/objects/b8/e83fca0eeedb8250a95c9ef2205740539b10fd", + ".git/objects/b8/f0cd786860008840cd5d94262df5110ff72c7d", + ".git/objects/b8/fa6ab42de64633d44e0318d15e2161610b38d2", + ".git/objects/b9/100a947ec1938566e1c7f8bddef1c3f026864c", + ".git/objects/b9/168493d5947aa86c8f653f58d8c390964efb85", + ".git/objects/b9/1e6a94780fbe39675667163f32d07db9a74b9e", + ".git/objects/b9/2dcea5a761bcb5d48835122490d430909d6e4b", + ".git/objects/b9/31c06abf26ef25c1aa7ece93740fc704c6057d", + ".git/objects/b9/32224778ed8a1e0a73c2ae91866e0d8303216f", + ".git/objects/b9/49aef3c4206f016b4c64d51b9201960b005341", + ".git/objects/b9/5b02be9653a9755a47ffd8262673f39b1eb42b", + ".git/objects/b9/5bef33208c0c441f31c955d8f50b3d6e0ef876", + ".git/objects/b9/60f2fc84eb6f1b5df8ccc38066c1365ca0b857", + ".git/objects/b9/6dc6977a07d11134af4ce63c26fe9884a5693d", + ".git/objects/b9/76d823bf8b86b7f7cc8c712064977e2ce15d28", + ".git/objects/b9/8b20834096d92baef9d7925186d6097c1e9474", + ".git/objects/b9/8fa694623a83af275801d326d8e1aab193edc9", + ".git/objects/b9/928f0f342ef56368e953bfb91ca15219ec5ac3", + ".git/objects/b9/95df76d11e9922dd4f66b68f499519ddd28721", + ".git/objects/b9/a87884c2ee6f90054c3159460c07f54d645bd1", + ".git/objects/b9/b4437f1222c599d65fc6e74efaefb43f3a75b3", + ".git/objects/b9/bad957fc26c96527f27526f5e0ba0df3346c5a", + ".git/objects/b9/bd7291e143e9fc675454da612c69c176457cf4", + ".git/objects/b9/becf0daf4c0f59de53d18d2df19e55a090f06f", + ".git/objects/b9/c3c20e7a2cb38059fda7c88007d800d62898ac", + ".git/objects/b9/c778123431ac766966e14b8e281fa418afdfbd", + ".git/objects/b9/d611f2eb74f989e9999f40bd29ad62ce2d9130", + ".git/objects/b9/da880a337dcd1337c149062e49cd67d52ad476", + ".git/objects/b9/db48309ed53e450e63d8a8bbcca54d63b70212", + ".git/objects/b9/fd9a91304c93f1567f49e6ab10fa3178929a0e", + ".git/objects/ba/08d827b691e792bf62e1021f3eee130d1a661c", + ".git/objects/ba/0998449e0505de0143254583e6ad3d10ae44d7", + ".git/objects/ba/14c1d1e76e793e8e46c0ee7ffc784739d33640", + ".git/objects/ba/214e719c1fddc2f4bd8aa4574f06cbaea8dec4", + ".git/objects/ba/347255991c8349b4f4c0068e785c3b15934005", + ".git/objects/ba/4996400e4c88824bf6e2233f4ea32adb887945", + ".git/objects/ba/774b59b544a5c852868846ff6e9e46f18f2dee", + ".git/objects/ba/79c74edda64b32c061068da7ec12e4cffadc9b", + ".git/objects/ba/a30c2c629cf512f2ea834ed708d5a8958e81ea", + ".git/objects/ba/a7b311acd60bbb21d35542156665404c03078a", + ".git/objects/ba/a953105e91182fa1e00fc4ea3a4f01a374f369", + ".git/objects/ba/c300c1a3da36acce7c8750a4d8bdcd1c379656", + ".git/objects/ba/c4775fc6c40d691c57d1d3ce88e7927d33bf49", + ".git/objects/ba/c639a39166d95bdf29ed56f8e5ea9044962def", + ".git/objects/ba/c6770100aafa69cbee2e08a4743793e0202ba2", + ".git/objects/ba/dace233a8ebfd3f2cf54cb615bf8d5c51807b1", + ".git/objects/bb/0bc779c0676937d74b18b753d2cdb601d1c450", + ".git/objects/bb/356ddcd48b4ef439e2d263829ea416023c6c5a", + ".git/objects/bb/3b6b6f1126f982101aa7979478e4069933310e", + ".git/objects/bb/3ceeef3b77158fdd9756df08665551e603af6b", + ".git/objects/bb/424bdb105af7b44b42868c81e85e444ed24487", + ".git/objects/bb/46b8cff14aca5661b43bdc74725b79d27e0d0a", + ".git/objects/bb/4830d1217ffdbfbd3187f73c1b3dabba35245a", + ".git/objects/bb/4d32ba02655ef42275cdf34ed78c2f7ea85bf9", + ".git/objects/bb/53c93e62c2ef15e673a78dd95f058590e71513", + ".git/objects/bb/630cbd57a9951a7a627cd1dce2dfe6eb66a4e5", + ".git/objects/bb/6c19cd2a5997407901e61ef6df34c4635f44a9", + ".git/objects/bb/839b0482d9ea085010dbfdffb1d8425cc2b22e", + ".git/objects/bb/862d42763a68a17bd782147a288d0e77ebb74c", + ".git/objects/bb/9abd2f8344e114e1963171ab535fe155678837", + ".git/objects/bb/c1c228f262c8511a3ac38adf3f146540e67060", + ".git/objects/bb/d06d55b2d604d6ff928f69236065ec92b8a9c3", + ".git/objects/bb/ddf8bedea0d62420b27a4e463c70a035ac13c5", + ".git/objects/bb/f83f6e7c48a6685da341753c8914ffe956ef37", + ".git/objects/bb/fea5f1992d9522d2b65b7ae5cda4c82c71c91c", + ".git/objects/bc/0a85b63791c91c4c2c4d7552489ea9e2493a60", + ".git/objects/bc/11898f04858412c47fe351727fa64de5b41c63", + ".git/objects/bc/12f2a66f05411289c7b401da0fcfd94f6bc7ef", + ".git/objects/bc/192206587e29da0bf78218e05393b56bbcaa0b", + ".git/objects/bc/1a2a7d4ec04d1629218475b9bef8ccc69bdc78", + ".git/objects/bc/1af21c48a95916fd0e94ec3668c482da60be83", + ".git/objects/bc/1ce48632611dc68633e4575b86b2114e42247e", + ".git/objects/bc/234dfffba6821ed52ca536b738d28b37e3f30e", + ".git/objects/bc/34090636c89bb894c8d6562546650d4b004255", + ".git/objects/bc/377bf46ad423c9e3b83b29e3c23153a30e1136", + ".git/objects/bc/4cf768fa0b621aea93a2ecd2be93bf07e5d86d", + ".git/objects/bc/4e93e0348ab619572da689c7f36387257f388a", + ".git/objects/bc/4fd2f8cc65bdb739097cdf6f813fb482793343", + ".git/objects/bc/51b14c4d2e919d0dea80f4cc100c3fcadad1ed", + ".git/objects/bc/5d80f14162df2382bdc73fffd8e1b218819d93", + ".git/objects/bc/5f998e8debea94cd67fe86de0bde136464e6cf", + ".git/objects/bc/73d9232b876b7542fd95ba009ca95a1424e37a", + ".git/objects/bc/8668f68c20703a5ab6d0287acbae464e8fb388", + ".git/objects/bc/8e2f65cb5049a41bf432cc21d2fda5aa5ee2b7", + ".git/objects/bc/a84ab49375ffe4b210aea213038f82c95d1f91", + ".git/objects/bc/a86688f6cd9baaee3b34185e3a7437f7eb496b", + ".git/objects/bc/a944b7ee46ea4ac27200bf2b6464e6fcaefa62", + ".git/objects/bc/ab6d98aa42c1ddc88eb6bce5f6681993929efb", + ".git/objects/bc/b93910b7705ae16506a6d20006d69871dad580", + ".git/objects/bc/bd41b020276393203054d5edaaacd5c129f22b", + ".git/objects/bc/c3d98ccb21fad7b5d054cc820618b8d864c087", + ".git/objects/bc/cef1091c4efc6d125276c03a2834c2c76add21", + ".git/objects/bc/e9ed97e6e96a8473f77179fdb073b5f9ca9c56", + ".git/objects/bc/f47dbfcb90ea7316d71975aaa971068a5ef612", + ".git/objects/bc/fa26ce902935da6d3145cf709eff044ca6c729", + ".git/objects/bc/fd0fda74d52c59af3fbb91a5ea41d0879c4833", + ".git/objects/bc/ffc3af9cf24e088eaebc439e1d0c3c685ee3f8", + ".git/objects/bd/14ca4f34bc7454f0493bb9a2baefe87b484801", + ".git/objects/bd/22bcddaa4e8412ae1221f9b79ca9f91566499b", + ".git/objects/bd/242944ce6eb750e87eae7f9c8a26add6cb52cf", + ".git/objects/bd/2cbe8779144274c7b6a7a482b5f7eea5b4dd64", + ".git/objects/bd/34fb5ab2302b1475d264328ce01ab5614863f9", + ".git/objects/bd/39be8eb9067f295a85d143a4ac909a057b44ee", + ".git/objects/bd/3c48c5d31818544fb733e3ddb0e9b3b75a9cc9", + ".git/objects/bd/54f169731732e45f984c2d68984cd26dfa2cbc", + ".git/objects/bd/7074ad3d3e36e3bfa942b5f88751946e6bb495", + ".git/objects/bd/792a9dc80e4ce2e249ee47ecf51e18c0c05673", + ".git/objects/bd/793f8a6ac84d6a8c3a1ca4e4caf8cc4eaadb28", + ".git/objects/bd/8d5ceb207219259abb758034797bcc1eae7e75", + ".git/objects/bd/a336f20bcf2fb2cdfcf76490b5e2a88096f0f4", + ".git/objects/bd/ad9214e69d8b7cabfc1e682793907e75ac8312", + ".git/objects/bd/b80fd432c541eb988951a770667b224a53787c", + ".git/objects/bd/c89029dca8a464429c7feb4833c1c427e289d4", + ".git/objects/bd/db242309fa895b45a6969c0c753cbf6414a6fc", + ".git/objects/be/06a765d6d45f25a5bf7330b716ecff991ae007", + ".git/objects/be/0d04bdd7ea5f6eb37cebd4955d06039e83587b", + ".git/objects/be/0ee8d36095b99fca01298ece83ca60befcd094", + ".git/objects/be/1f734cab53d058d411b238f67d7112e5912341", + ".git/objects/be/3505aba37d84cfc189209d688402c91485b9ab", + ".git/objects/be/41e30fa777e8f1a622820c62edee98136ece2b", + ".git/objects/be/42e74377545ac868ef9fcaca0b11aaaba155ed", + ".git/objects/be/4e629e0a1ceb1147c2aff23695a5e644813ddc", + ".git/objects/be/7469076d59f8b7774041f8549b121e0d1d157d", + ".git/objects/be/828bb168cef3814fdf88706ac6aebcc98e6475", + ".git/objects/be/863e33d27c3278c6baa1c316fa0245a4cbcf84", + ".git/objects/be/953cf1cc2affbe0c96c76814837b6d2dbeb01a", + ".git/objects/be/9d7f2ecf3621406588bd46125d66873e5f4c04", + ".git/objects/be/c2109f0c40d5585b63f12a261c2fd454bcd63f", + ".git/objects/be/d521ab1716b748f14f384cc3aa1264d541a6b6", + ".git/objects/be/d9cc2979ddfc1b820e31165a7e19c550e47b8a", + ".git/objects/be/f6f4e8e785f0c9d60af5d8440f40712d6c4b1e", + ".git/objects/bf/0c7990c37b3e1f7662297a390c01a292db11d2", + ".git/objects/bf/0e0d048083014032af66eef5fc545969d3b4ea", + ".git/objects/bf/1dc267726c9a47dd885d647b90f5a7a2a1078a", + ".git/objects/bf/25eb6f191ffd7364f89bc2fa4a7214147257d2", + ".git/objects/bf/32d02f6a813a0a77b5baae0dd7f909c1676f3d", + ".git/objects/bf/55bde3f9c0211d9a90b8db00833e25bc66e683", + ".git/objects/bf/58626fc8a6e677a92c3c8b4f4ba8d745c220bb", + ".git/objects/bf/63602a41af6703b58adafac7bd48dac477dbab", + ".git/objects/bf/7183d8e1ed55fabfa11144877e207aa8e2e872", + ".git/objects/bf/7d5991e68806972700711b5963ffedc8c6784b", + ".git/objects/bf/8514804ab5371fe0099fa5d22f945c0161f207", + ".git/objects/bf/93329195c55bd8f64a8dc8ed89c65f3cca2139", + ".git/objects/bf/97f5052c5bf1e0f9b781d745e317b3de62c179", + ".git/objects/bf/a416ddaeadda8f9ae1286025f7ca5d3bb179af", + ".git/objects/bf/b0b084fdd2473023a6f2f6c7aa527a88d825e2", + ".git/objects/bf/b128dc0d7560626f87ad92ed5a312431f4c5c2", + ".git/objects/bf/b12e11f46853883e2f1b3f4e49d990f88e0e22", + ".git/objects/bf/b24b533c5097174afe93ff5bd6b93e45d8422e", + ".git/objects/bf/c8f83aca0527d3e8a22f1ae4568920298b9bd2", + ".git/objects/bf/cbd8360a99edfa1ef35c63d1c0d090bdf29431", + ".git/objects/bf/d088f82533b48a6aae3af249acf4a91bfe85b1", + ".git/objects/bf/d930edb292962f6224e3fdada6e84429aea8fe", + ".git/objects/bf/ea64c7375defa31681b2ee624c30188b344368", + ".git/objects/bf/f14cebf1a8739164699d3920b6be7221cd5a2a", + ".git/objects/bf/f326ff5a881d6c686c975e4e2d7c987b417662", + ".git/objects/c0/0ef11b433c6aee101181e6c7baebeb81bf9d97", + ".git/objects/c0/1a60509b81fd3cd4cc00520849fbab5dc19818", + ".git/objects/c0/1ce6145eeae73cbf060886abb8e3e331b0cbe8", + ".git/objects/c0/234c875f18cef516af5ed5f59d2f21e777bbf8", + ".git/objects/c0/27471297c27fda105fa0276220b3611fc23ab3", + ".git/objects/c0/344a5f3522f30d15cf0531071b360ff4fce366", + ".git/objects/c0/374b90a7c825254008b00a23fac15b448dfd5c", + ".git/objects/c0/4dafa5635fa3d09a080d59ca06ba991af1c239", + ".git/objects/c0/57541579528a07e7fa90c10a7346e59bbaf9fd", + ".git/objects/c0/58b60b670e96de60b194dabc7ccb4c192d718b", + ".git/objects/c0/58c028b7a3b3f2b568a721734dea721723cd6d", + ".git/objects/c0/5db8c721e59921d92079b6255376e3becfc369", + ".git/objects/c0/643c660fb811179dfbcd742004c87b1a92a228", + ".git/objects/c0/6de4bc915197c91c0d52e21ad2d9fb4d5bd079", + ".git/objects/c0/70e02a151bf9ab0ee3aadbc9c2275f5ca694c9", + ".git/objects/c0/7293673aaae656c4542524c86eac2a8ca9b640", + ".git/objects/c0/79821face982f706515d6bb4a473676f8a0aca", + ".git/objects/c0/868d83dc76b9fe894a6cdec32240ad93f01d4d", + ".git/objects/c0/8974ca3516f4d01d832e71eaac50a32bc03783", + ".git/objects/c0/a1dffd07429bf3c5fd6dfb46636a6017d744eb", + ".git/objects/c0/bf3f2338622118344072417c9812b571beab24", + ".git/objects/c0/bff052a091022778295706c2d01666839c465e", + ".git/objects/c0/d1eab38c7f0997b718fc17513fd01dc750ed00", + ".git/objects/c0/d2a53e39ed6fa07e014de427e265c18180d706", + ".git/objects/c0/db4ccde3844a9066be1eefdc9fa76b4c4fbb61", + ".git/objects/c0/e0c7e8c91d0c66f02ed4d8b42a54de62cfea9a", + ".git/objects/c0/e44be12cc66d9b43b236d077c40ff950f49195", + ".git/objects/c0/e4952b70d514ff60ef914c7ed0a9e92d491d94", + ".git/objects/c0/f01c85ff26eabc1a33adfa32dabd849914b00f", + ".git/objects/c1/01b19dfa2d9a076de5b3b7f180c9002f5e3643", + ".git/objects/c1/0487b6720bf8ebc7e3e3588a939634a16fae94", + ".git/objects/c1/1648f42523fbdb56872f74dfc262e3d400be93", + ".git/objects/c1/2ae0fa72c264a2cbedf676f2a6073da8d36d39", + ".git/objects/c1/2fb62b9d6475fc85be3790fff818806c03a131", + ".git/objects/c1/34c91635adcabd52ac66e9ce78ac856aebbae3", + ".git/objects/c1/52aa19d17a3151e2d67f8dbc19a569f8628474", + ".git/objects/c1/6ae321a8afb6fb5d7a27a271a9d0a340a6b3a1", + ".git/objects/c1/6af39c71c0c32b19d905e8eb4b4a3f4a623d25", + ".git/objects/c1/6bdfbab46d2937dd49460aaf95dec2048057d5", + ".git/objects/c1/777d6ef8d81dec1026ebe673567135a5f566e5", + ".git/objects/c1/79dd57ffc83c10b5aa4c128eb5633ae6d0c6d3", + ".git/objects/c1/7bac49aa1e5fecb0631ac74d1361f603c2827f", + ".git/objects/c1/7bd92324f210ff185facc60dd99b2b84988755", + ".git/objects/c1/80a6521cf64dc48737539cf8e12df13d4f30b8", + ".git/objects/c1/8310d3c9edd4935e389192509dc8ca5c94b26b", + ".git/objects/c1/8f47a0bcbe4f040e366a8f7b8c380c2b6e5344", + ".git/objects/c1/91ea6694f61ba7bda2ef2479af416f96d1d8d9", + ".git/objects/c1/9c088032dcbb31dfb2f3ce92183ac9e48269ff", + ".git/objects/c1/9f9a48e46dec577a3e9a1035d4ebeee9f50559", + ".git/objects/c1/a4c96b06e2ee00855a4eed95ead03659ce7397", + ".git/objects/c1/b39cba396c4399c5dbfb22a4eda1108271e813", + ".git/objects/c1/bc60dac59234a7b06dc9f411d2ad964c394ded", + ".git/objects/c1/c492a04ceeb5f5f8d1f50637924ff93aa52d0c", + ".git/objects/c1/c7c86a8a615822c8969ecf84c910a67b40813f", + ".git/objects/c1/cc84fd99f06d265549d3fbc3f1c7fc943f4f64", + ".git/objects/c1/d507b6605b17fcfd656f1d9f67bd66d621b5e7", + ".git/objects/c1/db0bffe5bdfb46f47222ad07b165365f744e4f", + ".git/objects/c1/e2798886179d9cbf8a6f35a19ed9a55558ca77", + ".git/objects/c1/e6557114b447ce6a1cd1309225d249b1a286b5", + ".git/objects/c2/0959f77c538511e7a154a4955d337758c491ee", + ".git/objects/c2/345f33c3e92509fba4b38fca98e1b2daafb2bf", + ".git/objects/c2/4fca830adde5825894b28646213490c4919d18", + ".git/objects/c2/523694b742e99ceb18a0c752d50cdfaf373f2a", + ".git/objects/c2/55b47972a733a0eb189aeaa2b5cdfe20039770", + ".git/objects/c2/8da4872ef72bf67fe059d792aec1ff49cc91e4", + ".git/objects/c2/aea9afb009af9cb58c831b40bc91332e30878e", + ".git/objects/c2/b2c672e2516942790465d5fba2b0640f4c8840", + ".git/objects/c2/b3981bdb13675a646ee2dae898a3a8807e9e6a", + ".git/objects/c2/b6698e9d1ec630a7faa77b8064c985b065a95e", + ".git/objects/c2/b6e552cc2359bcefaafaaadffea246de7c4042", + ".git/objects/c2/d12b6d9e3497b3fe5f7cbea4051580e74cebb4", + ".git/objects/c2/d25fc003a2caee0762cf1e4660bf2651f258d1", + ".git/objects/c2/f3aa31b95f39aeca3fc292bb340928372e1f48", + ".git/objects/c2/f652509e8d4c30b515a45a948d15d1378a6ce2", + ".git/objects/c2/f79ff4308170d0101b7cd7de187654b8aad633", + ".git/objects/c2/fe1feaf2c4935c477d8c5285db4dde7fa7bad7", + ".git/objects/c2/ff61ac2ccb77ae9b4b0e40c2251d4d724b255e", + ".git/objects/c3/1e7345a1fa6294aa0a08595376644c1ae09f16", + ".git/objects/c3/36cca093757d861364c5c3bfd5c7b5604b7013", + ".git/objects/c3/476498b75204c69d3a98ea75513e1b51fab406", + ".git/objects/c3/4de329cdef6244b2c3673cc3f6be77530bf030", + ".git/objects/c3/53682641005ec12da0bfdc3189b7d6fe3ea0c5", + ".git/objects/c3/6108bedc4ee75827c7a37313a18ba426510593", + ".git/objects/c3/696d6379d87800f18f02a3c07158b4f6e328ca", + ".git/objects/c3/6d086db3068931adee2d39b057c63369d9f0b9", + ".git/objects/c3/72dfc5915bab6237403332b19220ed9b07d8b5", + ".git/objects/c3/834e0a9b291925f5ebc1a172956b758240c2d0", + ".git/objects/c3/96164537462e573bafc22258f405f364700bda", + ".git/objects/c3/a1c1a46240f83281934ae587945224ef3d4c2f", + ".git/objects/c3/a59b1e4443491dd415cbe2a9bc97615eacfa77", + ".git/objects/c3/bd6befc708bd69f34e9aad78b78afb37276926", + ".git/objects/c3/c35359efcd8bb3b6c20ca9e1eb73281a33cac4", + ".git/objects/c3/cdf7bc2943a1770486af8354f234daff51769f", + ".git/objects/c3/d775cab306ff0940a6e3ca69e3608a377ed793", + ".git/objects/c3/dec1ac59fcd57cf68693e8257f00feb3595df3", + ".git/objects/c3/e2ddf41b0d52dbab4750bf11ba2143e333cc4a", + ".git/objects/c3/f74f091162e91cb839bde0ec62a1f7bef984cf", + ".git/objects/c4/0cc761103b4ad21c1760784070f27225ed02b8", + ".git/objects/c4/0d948ba58e70719c2e5353dc318e613d03ec36", + ".git/objects/c4/1530c4eab73b3cf4e8bfe957ccd564a5a6b65f", + ".git/objects/c4/2015bfc647a5fc8e5af7e2540b2fc6343d6859", + ".git/objects/c4/26f64a2db4a3b3c78b97d42c4aeacc7d9d5da1", + ".git/objects/c4/2ad21c0ecc39775255af95faf7fa97381d49f7", + ".git/objects/c4/51cb44d68384fbbd57c5613129d08d846bb41e", + ".git/objects/c4/789a04647cf4dc7f4c28407a0e2e7daefb26f0", + ".git/objects/c4/7d1ebcd6c8534976023845ae7f332a6ab202d0", + ".git/objects/c4/8efd00b873c526ada31353f0063faf87958d2c", + ".git/objects/c4/92f4a07e09049ea73dadcf674ba963904b2775", + ".git/objects/c4/9e1bae05f6d0b18701f4803c6a9cf646e88e74", + ".git/objects/c4/a45e316755d083d965d6c151f56619467542da", + ".git/objects/c4/bf0ce2424b2a6a571924330f5010de2b7092dc", + ".git/objects/c4/c6e7a499f66d575d53b4eca02e33a40a50a765", + ".git/objects/c4/ca3d4d1ce6f30a07ba07b4237441f4153d40bc", + ".git/objects/c4/cba983cf61644ffb7d66171c828884f60d5423", + ".git/objects/c4/d6be7dec326056971c7899169b038eaee0f8ef", + ".git/objects/c4/d740a2931b7ee8e1de37be6491b26c572b991b", + ".git/objects/c4/e6535ce50f214b095f84a98f0def4d2bdceb14", + ".git/objects/c4/e700d1221ab3962cb1c316c95ce777c4ab73b1", + ".git/objects/c4/f38ac2c6fe1f88ee2365b2d263076756863034", + ".git/objects/c4/f8d9dd56a684965caf35a545fc3757504f22f8", + ".git/objects/c5/01cc7134fa8e3057bfee7d4674d590abccffe7", + ".git/objects/c5/157719e40198974611f468b8f63b95e5afc234", + ".git/objects/c5/192f24c33c05daa30622265a471ed30cc27f49", + ".git/objects/c5/26e8fe6f00074a5d16b2fedcda294934be6fb0", + ".git/objects/c5/29bdb8e87288504e0deaf185c1e5c0cefe6e9f", + ".git/objects/c5/3364119181c61e1f63962d1c1419d1c7ee410e", + ".git/objects/c5/3a10622145f43f28a0da4c694a82d044e0acd4", + ".git/objects/c5/43e35050d186677005354f6619b9efc61d1b76", + ".git/objects/c5/4f5c3d5b865af75be95134c68c2896dffcad7c", + ".git/objects/c5/71055b13cc210a1ed14db4870100bd5b6874f8", + ".git/objects/c5/8722458bc40a7d9196da94b6cfe1cb34068fda", + ".git/objects/c5/9457784d0930fcf6fed82509382b8b3eb7d664", + ".git/objects/c5/94fbf049846270bcb6a184a0d7e02217187b7f", + ".git/objects/c5/9db4294a1f2257c037ae5b4d248c08c481ba2b", + ".git/objects/c5/a647a9d2c96939886cdbc2f2973c22fa507e47", + ".git/objects/c5/bdb8ca0aead3293bc7289723a1e2968c9b7a5f", + ".git/objects/c5/c740b9b761220c1e401a9bbe206fcb7ba514ab", + ".git/objects/c5/d440ed00cf31a1b86b77690c0be16c5c5bc16d", + ".git/objects/c5/dc53871ef0d1c9f92384e234c500463cd55dff", + ".git/objects/c5/fb0df5f537cd8d3ba73a3414be87fff265c114", + ".git/objects/c6/1aebb84ab961d1f81483f9417c3490ae943893", + ".git/objects/c6/1fd981bf85d9c44549d9f051117e64ff86abfc", + ".git/objects/c6/23056646e0a6170d53429e8384088dc622ee88", + ".git/objects/c6/26b85b69445603bc033b1e5f99a12693fdfee8", + ".git/objects/c6/37bbece69804fec7795e265b9c5bdb7ea68db9", + ".git/objects/c6/45add3875c6dc936cb69d63b40da5c6d46a65d", + ".git/objects/c6/4603c7eb04065de0dd4c712bf7618f79a5bac2", + ".git/objects/c6/53b9fbdfda008d708018521c54f0ec597902d8", + ".git/objects/c6/6166f4d0c1d1377542a2e905813067425a4e9b", + ".git/objects/c6/7a84c9047a85608ac3b2f3b09170dc3d563ea5", + ".git/objects/c6/891bd84e7bca4ac4f12cd07acc3dac2b92e74a", + ".git/objects/c6/9a22daca033ca796a3925af47133e224b90f10", + ".git/objects/c6/9e5cb14cf85fd92aff3afbb2ace4f6b7e7b8be", + ".git/objects/c6/a7b57e80411617ac2c3f1f67d4661e3b72ea2d", + ".git/objects/c6/b01e81f0bfb5d66605955072625e4649be8f4f", + ".git/objects/c6/c1af3e2cf0b1c2adce8d927e9f2acb517f5f74", + ".git/objects/c6/c9bc4704fe7db92214fbca23e1777ce639107a", + ".git/objects/c6/cb0bd71ae34a83a15a933fa7ee077fa461d456", + ".git/objects/c6/d0bdb985108e98d64de23ed37ff66237327794", + ".git/objects/c6/d1ee10f93092ca8e0732c74d2ab93fe50b636f", + ".git/objects/c6/f7f9bd6651a061b0b6d3c7aa7871712e5fee08", + ".git/objects/c7/0071ed947cfd06577b9498568ab9586cc189aa", + ".git/objects/c7/137f2df256b153e3a356b947856d852688f117", + ".git/objects/c7/1696158c7b1aa05591c9f65758a810e195ecb5", + ".git/objects/c7/2b62ce03a03bff95ce825a1c713a791fa2d0fc", + ".git/objects/c7/3523b92d97d5bba31fa6c13f9ccaacada37a04", + ".git/objects/c7/3caf888ed74d7958e3db4e0be76fb712d3ae6f", + ".git/objects/c7/3cfd1fd227c107e12ce814594606e5782d29ed", + ".git/objects/c7/4e256a0f95837c231db5c3e413bf1e0dc7fce8", + ".git/objects/c7/4ee06c8bc4974cc6eb8ca344fdc79f4858bd3e", + ".git/objects/c7/53006279fca1de1c5e9bd2d3406e4dc07cf3ad", + ".git/objects/c7/5456ceec5cd212f974b2eb88e1dc0fff5bdd87", + ".git/objects/c7/56d984e01f53e55119eac8bcace254d5cbc51a", + ".git/objects/c7/571307dd03e03edeb18a149cf933157ef9d9f4", + ".git/objects/c7/573ef46eb18bd80d1030abd4327e089cdc7cf9", + ".git/objects/c7/6be128e9ce9da034131fc71cdf41af8337676b", + ".git/objects/c7/7e69501ba3f696cae9d8bdcf4085abe6f9d708", + ".git/objects/c7/8b873e0916f097b7cf0167b259b3fdfa1ec971", + ".git/objects/c7/8c7c540291176dd488f6f35e22c23a81d5d683", + ".git/objects/c7/97980b6c7fe90675596e5f3e5a9d8029359881", + ".git/objects/c7/9b85e9726f85d51e8b9494c2a19017cd0dd2e2", + ".git/objects/c7/ad6319da732af51f6a530b9355eeab9634d1ce", + ".git/objects/c7/c373d00f46079da5d62460ed479899680a4f7d", + ".git/objects/c7/c808391c6d95c1568881687a99c283f03b6761", + ".git/objects/c7/c89f4e386e29a8eec611fe342dd2c529b726bd", + ".git/objects/c7/d174d2f1ec1245cf09399405b19c7c2700baa9", + ".git/objects/c7/d80f389beb4890170bfa2634177d93e2dda62b", + ".git/objects/c7/dfae2236b8fd7026a3d947f01ed28baa0006c8", + ".git/objects/c7/e9ee43362cef39bb1bfc7a6126ae4ab531560c", + ".git/objects/c7/ea9c19a70a05e3060ac9013bef844c0665b35b", + ".git/objects/c7/ec90ca5b478326f470ce278992313f3376a38c", + ".git/objects/c7/f9b3b36431eb716f55c6c6e4cfde21de05fb79", + ".git/objects/c7/fda459446938fa66e1605cb43447250248b557", + ".git/objects/c8/0155346e1e534de375d91d2e0baab6a86d6510", + ".git/objects/c8/040fe2436f378d53df46ac1cfe68c38c58d2ae", + ".git/objects/c8/17827cb66091188f3d7dd2bcb826b66a7f035d", + ".git/objects/c8/1e3a20c7949153cec485b8c97a330f98cc0ce8", + ".git/objects/c8/1f429201fe55ec51ef54424d9e7fd9366a85e7", + ".git/objects/c8/572d31ad28e2ae0bdf15c1859a4a0f54c3d64f", + ".git/objects/c8/590b799da1d90356faf4cdf13bf15bc58d0513", + ".git/objects/c8/7166ffdcb00b8c2df15ea6a09e99b5170e7b4b", + ".git/objects/c8/7462012a201bbb91d0ff28d99aacd62bed9310", + ".git/objects/c8/8f40120ed8f0ed0f4a8328a61770ebf2a44316", + ".git/objects/c8/9bfb0163190bbbc3c12d59b87955addcb1a32b", + ".git/objects/c8/a38e85fa4261d6dd0fab610b745888274c54f4", + ".git/objects/c8/ad0ca5359ec89059f5794ab8e168c0dd68fde1", + ".git/objects/c8/ba0269dccdb6cdcea446b748326ce9d06b5c46", + ".git/objects/c8/bd5dbc080534426058f17ad2e92e2e8e499685", + ".git/objects/c8/e5f35ba95c3debc111419fa20f2668e3da10cc", + ".git/objects/c8/f813681665730c858686d5178d75ba6f2566d4", + ".git/objects/c9/027304a47eccfdf4331a1f961b2e88815b0630", + ".git/objects/c9/09698e5019924fa4fdee145da85e0f892a50a1", + ".git/objects/c9/1c8e65ec06f137658bc71c43e4f8b5c5906c55", + ".git/objects/c9/23cd0736491d93f8d9101ea7c751aef14b4952", + ".git/objects/c9/4521519264d0c2f53a5a8aac354e1a8c61f53e", + ".git/objects/c9/47f564d7fae4b4289875bf67ec3788f49db6d0", + ".git/objects/c9/51ff23873192ef3498d182821b85203c6e910a", + ".git/objects/c9/573b9842b7a8e0967c4bc36875816dbd705996", + ".git/objects/c9/67ada0e8f6e8fc2ede7d5ae2feab45e2e6e1a3", + ".git/objects/c9/8bc617edfe362ebfc983db4aff1838a18cd783", + ".git/objects/c9/8eee2f8cde2cc8760d9b33930bba8c682df4b8", + ".git/objects/c9/aab2948b7c3e168949701c570177033a3525b6", + ".git/objects/c9/c68498440dc1230ac309fe61bf8e840c50d14a", + ".git/objects/c9/d62dbb732323988fb7546b22cd5d3668132808", + ".git/objects/c9/d85d44f721e7e22d1fa79feb3a86568eeee704", + ".git/objects/c9/d9258008ea198dbfc785b1a0bb23f67d5e51ba", + ".git/objects/c9/ee788b9fc8b8d7b35222c7c580e632ed13d07e", + ".git/objects/c9/f2fbeb6914ac4d7108e7ca2b5ee5ed92566973", + ".git/objects/c9/f74bf3a6e752322cb356b36fb448dafb7862ad", + ".git/objects/c9/fec040d987c73dc07e4b72b59d7f3577617fa7", + ".git/objects/ca/06d332cec9224be15919cc8c400260989df489", + ".git/objects/ca/07ff06fee4605bc7899aac8b265bab87ea13ea", + ".git/objects/ca/16b9d4cdbefca19a301f5c487ca6b07e05d88b", + ".git/objects/ca/30ca0a77f0ce8c9a24ddfe40df327862ad3d78", + ".git/objects/ca/3b47c88251d4b06e7a9e7182c7134386e4a362", + ".git/objects/ca/475a9e60d3e90b13ee37348cf6cca1b4d5f5c4", + ".git/objects/ca/49d8d5e3a2bf05557658505e32eee3bd818074", + ".git/objects/ca/4d7b8d42bff8aa9f27f42c767bc553ae91988e", + ".git/objects/ca/55dc4b1da95db61fd9d6fe8ef88a134e959df1", + ".git/objects/ca/56352df4e098fb8d406a5bf3d1c7741a439632", + ".git/objects/ca/5682d457a73d3021d3aaf44534645b1584bced", + ".git/objects/ca/624c5f1d38287103a580af1333d888cd1d2a55", + ".git/objects/ca/7877534333d8a6f4410b86cf755933f5541818", + ".git/objects/ca/7cc678914e12f326d4cb39c4dc3ab7e7662020", + ".git/objects/ca/832c5fb55de74c8a47f8c87c7c8cb71354e8be", + ".git/objects/ca/88ff318aed6607f7e1cf576cb323df0b13b47c", + ".git/objects/ca/bc2a88cd590451694cec51cf0906f801ae61b8", + ".git/objects/ca/bda1e1d9081dbd1b74f3e0607ca3ab3876a218", + ".git/objects/ca/c98eda4a21b7231f988a6123b086b1883f8943", + ".git/objects/ca/d22b9dc0da56e6ae14c6d00cc544b6762fa1ae", + ".git/objects/ca/d26fa7b647e55f19d34a121a7ddac71976d7aa", + ".git/objects/ca/eaff1043be43cfd06a06ef4d72f2d9ecddc4eb", + ".git/objects/ca/f9e5fa4ae5f402a0b24b0d32d8adf55ffc14c5", + ".git/objects/cb/02092fdf09ceeca7ba72b8dd627721e6a95521", + ".git/objects/cb/051c2479dde4486926d9d6560ff6dfcf408c4c", + ".git/objects/cb/0d42c8e272755fbb53cb128d05bce532932a17", + ".git/objects/cb/131ec2207720215cc8d256e449aa389f7dde0d", + ".git/objects/cb/2b1382cca9dcd4037e4cf6dc784eea79ca0b49", + ".git/objects/cb/3bbbc17858c25596e9ec482d16ed0e2319ae88", + ".git/objects/cb/3da7a645a090d6f2588840a0dad1331753e1f5", + ".git/objects/cb/54bdfcf47e0297dc1ac97540538602c2290a71", + ".git/objects/cb/98bb01e8c3dbeb0e1a5ad4e4c34334ee48dc40", + ".git/objects/cb/cba3780745fbdc481043356c5a5fe42948e864", + ".git/objects/cb/ce9ea376e7ea76a9141a92756d5e4686a33987", + ".git/objects/cb/e4380f962b6e1286236e445b9151990c73a991", + ".git/objects/cb/ee806504295facb9139c2dd4b26cf7bf606ee1", + ".git/objects/cb/ffc74d963b52846de8cb8338b168d54dd2c0bf", + ".git/objects/cc/00eac387fa4734a750eea2f852b933f6a5db6e", + ".git/objects/cc/1cac788f0499908d711ba3c5ef0f17e81a69a5", + ".git/objects/cc/244361596ae612d304ab94d297784a5ce9ee01", + ".git/objects/cc/28306287e2fcf887f5a2422ecd6fbcab5b7f6c", + ".git/objects/cc/31846927c5964c76fc9f9821b7288f66f7ea23", + ".git/objects/cc/3a0f504d6e95afdb2d357cc7df2c4e6909e701", + ".git/objects/cc/41b9bc35163bd89526540f6e1a053ce681007c", + ".git/objects/cc/4a6795169bcca114a4de32aa664e20e081e005", + ".git/objects/cc/4df1343cf545f3411cf493d028f05f46c1c886", + ".git/objects/cc/539a3422b197f0ecf4164933fd0917b4f0b0ef", + ".git/objects/cc/60080f353752570ab45f90423fb35cdf2b75d2", + ".git/objects/cc/66cc7fb9272cd7103421caaf4a28a6712eb5ed", + ".git/objects/cc/69c3c276b7a4b859a4122877aa136f74087d70", + ".git/objects/cc/7d3f655fb0680e427a7ee58c657b5cb8f08fea", + ".git/objects/cc/841811d14c514f69acd8c99eb1a79346a6e6d5", + ".git/objects/cc/84e78c2acd2324f0a8f24b36e7fc199466e55f", + ".git/objects/cc/93c4fd583adac3adbeaaaa2faa11fbfbd7bb5d", + ".git/objects/cc/9b7c9d3aae5e02959550c19bc57def93afbc3c", + ".git/objects/cc/9c22ffe0049c35798e3022b3774a6ccf40692b", + ".git/objects/cc/aa1453e54b3dfd90d6c7043a4cfe2db2c7a279", + ".git/objects/cc/b346cfbf2ad903475d80559c20b17aa98fa580", + ".git/objects/cc/ba04795787516e0172a73f2b6561f6557e8465", + ".git/objects/cc/c8bf04a0df3918f78eb39702b1156b12bad067", + ".git/objects/cc/cc00d12c9bb609b315e03862f39922d87f6617", + ".git/objects/cc/dc868a69fb05421e97f5bd92d4e2cade47a23e", + ".git/objects/cc/efe8a3f7c7e4a13eb9f57928248c17b8105bb9", + ".git/objects/cc/f7dc0f62a8b1ff5ebb4f77e564ace602087b9a", + ".git/objects/cd/0800b3c70ab04845415d46866f84ac1bb29115", + ".git/objects/cd/0aa820408840e1808496877caec98c52a2c176", + ".git/objects/cd/127555d26c3cf99c6807a64bf56a930ed41935", + ".git/objects/cd/1b73a0cb9d02e88fd349c95bc93a121eec6c57", + ".git/objects/cd/1d68d5c0b9584e8684fc0ee4146aa5d8ae7f4d", + ".git/objects/cd/28bec9764d636ad3dc8fa32afa0e97ac86e35d", + ".git/objects/cd/50cadac73018780bc541b7d38ed3e82f1584c8", + ".git/objects/cd/56b09bdc48a796a255071fcd9be4473da6ac56", + ".git/objects/cd/57990105cdd733cd4097de24aaca2e3610f9c2", + ".git/objects/cd/59e8b7156f6847d545f1e0e2a71a4a646a0aee", + ".git/objects/cd/5a80685625dba303f879dbea12173e3a8bd2df", + ".git/objects/cd/5cbfd4ff61096a06c5aeb302a79e711287420b", + ".git/objects/cd/5ef452cf518b4a27bf41233243ac1fc3f5a78c", + ".git/objects/cd/65453526009303d13e9f8d69718a8f1386352f", + ".git/objects/cd/69d8078530bbac61e22809fcaff63c2eeb80ac", + ".git/objects/cd/77a15489555e68c5d47a2ba393543475422a4b", + ".git/objects/cd/78a67b3ac9711fcbac44b6acc56a7ef28ddc81", + ".git/objects/cd/890d85a41509afb7bd5463a10ecb9a88659efd", + ".git/objects/cd/8fa398ed70dee4c9a571268413a03e804a6c11", + ".git/objects/cd/97844cd96bc56abdfe7c5f3cb2a1a3e0ab27cd", + ".git/objects/cd/a6456ba462fb4e4fe01b561935dd0487fc6439", + ".git/objects/cd/ab1f6a1e558c7c576cbbcd1a61f6190bef57a9", + ".git/objects/cd/b2393efbeb7c645e9d3a3ed9fb0521ea62390e", + ".git/objects/cd/b9114b8cd76fcbf87699ccd0c7bb38ae8eb08a", + ".git/objects/cd/bd5773b8fc9f4b87a8086ef7ee966708911287", + ".git/objects/cd/cd774eb9bc6482b7d4597e449765bb252462a5", + ".git/objects/cd/d36274176b2d2d3fd8528c3cbab99865d6934a", + ".git/objects/cd/e405ebf563bce26e9ea00d2b27acb5eabbea5d", + ".git/objects/cd/e9609b445568ae9113fff35643e37529f69e55", + ".git/objects/cd/ea0733877a46fe3f8e36f6dfc646f262d4a6cc", + ".git/objects/ce/01a168b2a59f8713750de570bfa7f60e8bed89", + ".git/objects/ce/0749fc0501ef633637e964f814896009fe5d56", + ".git/objects/ce/15384496759c09080e81a252c567988ae14db2", + ".git/objects/ce/1ee0ef78d29082dbe95468f861cb81672b7276", + ".git/objects/ce/26d96cfdb8665e357521bb711dbf383fb1af7c", + ".git/objects/ce/3c33e92cc39f75cc8fbdf3cbd96c5f3698a086", + ".git/objects/ce/6901450a743b96bf5f0287f120a63536683a1e", + ".git/objects/ce/6aa7abdebfb508730e6c25202bb5b96c5f7cec", + ".git/objects/ce/6f81a873002e2449985ba037b8918041b45d10", + ".git/objects/ce/71fd877bbe4a1115403a63d0af076c2e392fc1", + ".git/objects/ce/76d97e78fcbb581abeccd4081f6f3f0e78ac7d", + ".git/objects/ce/8093a2a621239d5e97be43a3fc83c05c24b8f9", + ".git/objects/ce/8b8f55866899f28ba6d5b51b5ebfefb88758a3", + ".git/objects/ce/954c3f567625cf8720a7d7bf478248dc04490d", + ".git/objects/ce/b46913ab509c50a41761ba4f5b8d74081f0ce4", + ".git/objects/ce/b4a2da5c7e067bd34bf4dd72e85b59d1d4587e", + ".git/objects/ce/cc29b2b1092761ba908e5c7eb269a2e558d875", + ".git/objects/ce/d22f215cb5f0d05d00c93fa2ae23da4f96a884", + ".git/objects/ce/d6ec1ade280af87b1bd1a60b22ecab4fba6577", + ".git/objects/ce/d9635e26b36fdce9bdc0e0242e6ff4ba96d9d0", + ".git/objects/ce/dc0b852b16e2ac9030370f6c4211de1f53f047", + ".git/objects/ce/e70026e46624d5c832a9a6321a4ef6e5817757", + ".git/objects/ce/f647d937d6a1cb735d77d5c3805fa4d3bfd715", + ".git/objects/ce/f9acadceb63734659fe985d12c22d8156fb1b5", + ".git/objects/cf/072bc0834cd69437a258306d79ef06d3499994", + ".git/objects/cf/091716e24a823e7315770e3a7a5068f469e184", + ".git/objects/cf/2e23bb4f9427058c4769938b05500ef350aa82", + ".git/objects/cf/4b4e339e05e9e0a9036ebf695def25f6be0306", + ".git/objects/cf/61eb39d7181a5ea6a5f1721ab1ad36e4dfac3b", + ".git/objects/cf/71d70be0f41dca2f5233930fdfefb9f6436fdc", + ".git/objects/cf/71efda189edac1999e49dedc192996a6c1cd2d", + ".git/objects/cf/72e252c59b337f97afbd7123f0e3fb0e3463ba", + ".git/objects/cf/73cfe0bd4f32140faac6c16cd3d00f2fc90a48", + ".git/objects/cf/7a31a7ab04dcf302d5c3c73c26be0d404b5bef", + ".git/objects/cf/8ed4af4fb0786d8d95d6ea6c48c65281a11eb6", + ".git/objects/cf/9aed228add7e7fa9403383f8f13eb1834b2f25", + ".git/objects/cf/9ef941dacea66c53553ecd51b3debf9e788f4b", + ".git/objects/cf/a194edd64352c29b84a5c635fccac28532daed", + ".git/objects/cf/accac1413cb511974c3730eb03edb1f0674c59", + ".git/objects/cf/adb5173cc9d08959854f3ad290db51e4931a8a", + ".git/objects/cf/affbeb42b39199217d77c9e05e6aa2347505a8", + ".git/objects/cf/c6ad65f4ad05b55201bc959d263fcc5c084bb6", + ".git/objects/cf/d3c941450b9c012c427654f8cb0592e617e5b2", + ".git/objects/cf/d3f539ab44cc7c441a873918cc0d37850504a2", + ".git/objects/cf/db703faed762ac765ce85d6f863670d22c676c", + ".git/objects/cf/e5a89526c0c51a93d7e917c7e3650202592baf", + ".git/objects/cf/f30b049dad84b512db5bf3babb89325a22db46", + ".git/objects/cf/f99232f3921a7ea598c69778de99cd4a3d79cb", + ".git/objects/cf/fff3ff51d45d97f2a20cdf8e08bb155671ad15", + ".git/objects/d0/08ae4c9ba6e595d2ebdcdab1804e05053e3291", + ".git/objects/d0/0ffbb999e0f5f05278eabc171fbfce38b567c9", + ".git/objects/d0/1aa6efe35579890cf2ee0a0eb9d6df05b36c88", + ".git/objects/d0/1aa8b67409c2dd2059dfce00ed0b11153be954", + ".git/objects/d0/1ed0ad5323452838f4a6619fd96fa06086ea66", + ".git/objects/d0/356def6852f04c870a2c5c0d5f649d6e0b104e", + ".git/objects/d0/35f44e3867fd842a65e31402858919447aea57", + ".git/objects/d0/3fe07c8971c6470bc679f923400dbc7414a119", + ".git/objects/d0/4c44b70e5d5cda010059dd63d61de1ea598058", + ".git/objects/d0/4e57ddd84f07dcf7283ee41da9224f582cccc0", + ".git/objects/d0/51e4e0e4e6d8263555cf1382a022a58824403c", + ".git/objects/d0/6382b967402758ab02525a6442dc34152168bd", + ".git/objects/d0/6f9e6da3280071e4c5d2231c74eaf23cab315e", + ".git/objects/d0/77d1fbd9b986a4620dde7dc4fec0b0e93dd81c", + ".git/objects/d0/7c67e7d5b6c4a4cb97003e9ea61e795aaf0512", + ".git/objects/d0/8e7368f50e831a184018bff38ce091a31ca5c2", + ".git/objects/d0/8f72b6e8624936ec179412387cc19f4dc84f30", + ".git/objects/d0/8fa9e173b0c71395a490fead11005225816eba", + ".git/objects/d0/953fa7ecf3fc99935deb7435f988f4a899e606", + ".git/objects/d0/9882715ffe7307460dc0bb0f59ed16b0383c4d", + ".git/objects/d0/98ca8eefcbd7fe3eda724b94fee5f489d4b6bf", + ".git/objects/d0/9f79adc66cf398a18bbf6a6af377b72b198189", + ".git/objects/d0/a53016e1df560807ecd32946baa08d841c3dd1", + ".git/objects/d0/b2d91c4282adc929bdcf24fb8a43d7512fe21b", + ".git/objects/d0/eea2b300ad5e24dd750bec5233aa16e3bc7354", + ".git/objects/d0/f0b7bab470c8db754077ac5489c9e583b2d8c7", + ".git/objects/d0/f926c08ace378e088ed18eaea0f424afb1db10", + ".git/objects/d0/ffbf5cedd2161a6eed63060c01ffedcf6912aa", + ".git/objects/d1/05504e7c96e2557734dec0c3a2fd9d87c6782c", + ".git/objects/d1/066bb1457789f459ad5a30af9711a2e46e3588", + ".git/objects/d1/091720e6b0ea90f618f8574a773dc109886b10", + ".git/objects/d1/0dc92d756a825f7ea93b96dcf4a4b3f02608a8", + ".git/objects/d1/0e46bbfb9056a66f2e191baf39734cc00f9c7c", + ".git/objects/d1/145d606bfebd2911eb3c7548968ae36ba99179", + ".git/objects/d1/1729a13efffc068680c0287bdb836fdc5b5321", + ".git/objects/d1/2cb6928bf7c1d3b3182020f829be07ced59cd1", + ".git/objects/d1/38292c5ce025c35e3689aecb7186dd1fbb2856", + ".git/objects/d1/3bc436c73cefa3a32448410a98c13882a869bb", + ".git/objects/d1/5a3f76bfb53bae74d8d4b89c32d0faf327a03c", + ".git/objects/d1/5cb3a5d6f2bc48b568d387c7aa983d17dc467a", + ".git/objects/d1/698386e089e5965d51b94ad830c092655debb6", + ".git/objects/d1/70b3201238b8e1b81634bf25d48000a8dc5bb0", + ".git/objects/d1/73bdbb7d9c22bf8b4e9f8d5ab52c1a858f541c", + ".git/objects/d1/7e7e5986481f801df4cf0b09118d6d552b3083", + ".git/objects/d1/8b398c8627eff363f933fc0759adc568a043dc", + ".git/objects/d1/8e60493d6033381c7146549311963b93efddaa", + ".git/objects/d1/b71bde468dcec4b4ac4700eaeb32c9331791e0", + ".git/objects/d1/c6c66d3ba588960e6ddcb5717688bbf5706d52", + ".git/objects/d1/cc22c6ea64ca3f6d967c130cc3cc0ae1225cf8", + ".git/objects/d1/cfc6efbd55345a34353dfe9a3214a9e38a2346", + ".git/objects/d1/d5eb7223406a9492a1eb32749219912aedc25f", + ".git/objects/d1/e135edc13f1a80d2ac22653566c70b2f3dcc5d", + ".git/objects/d1/eab8ab69d82f2e9f2e9f5ce96fa91e7765fb39", + ".git/objects/d2/0dbbd2a4f5e81d1410061a7db7d1a13e3ce6a9", + ".git/objects/d2/1a72f66e35b3dc05c788cc7af5a66b3ac5c82f", + ".git/objects/d2/20928307fa2598d8b59b409abf64458fbad392", + ".git/objects/d2/290a50b4e790a531412d63ea3444d52244659c", + ".git/objects/d2/323f3c9d77f7fdb25ea89c5537fedfc23d9b92", + ".git/objects/d2/3adb9d58c6790cbfc05156aeb49be6fc9e0ace", + ".git/objects/d2/3de1c5205ec8484e84f405ef199f126aab5f99", + ".git/objects/d2/41f1ca4b8f5302f88b2f24b9271cf07d1d8b28", + ".git/objects/d2/4a2fbbd676c3d2b6a22001e09ab0a66c92f3c4", + ".git/objects/d2/51f5c86fb17d7a0a02d676287e97bc4b782507", + ".git/objects/d2/701f53d2f49d40d3a3ae83071ddb3bfd2560ec", + ".git/objects/d2/7cb041b41d5dd1713ffbe8ecdc21d5618ea49e", + ".git/objects/d2/92bfc4ffb6bed23653b3f29736d2c70c0f49e6", + ".git/objects/d2/a45a5e5aabdb53e059c3ef17320495e2cfa7a5", + ".git/objects/d2/a665ab7669eb3a565f2474146da425781a2054", + ".git/objects/d2/a68bb11253e0e85f3bd10136c5e1b2b8bc6648", + ".git/objects/d2/ae80b8a6a465c66a5b3283e2f20eef1b6faa85", + ".git/objects/d2/b8f5c3c70be0e885ef577285e76b5e54b611f3", + ".git/objects/d2/d8afb4cf08e227b7d4ab1c9e2ab66ed6846f73", + ".git/objects/d2/dc167dad3d4f24faabeca87782aea0a8373033", + ".git/objects/d2/f8b943f9d2c15dfa6287ff06b6cadb756d1757", + ".git/objects/d3/0066c171b1c0767a9f8db3916f4471a7c75e68", + ".git/objects/d3/0c0ddbf0b20d064ea255f872c93817f1ad0f74", + ".git/objects/d3/26d39ec6fa62546dd7d08b68481289e7820dbc", + ".git/objects/d3/2d30911e5fb0b755c37a1d203668b1383c2bd0", + ".git/objects/d3/37edee01c4079490081bcb5023bd2a2f6341ca", + ".git/objects/d3/3ac2b57f1fa4ef56f77ec7a37f92beaf6bfebb", + ".git/objects/d3/56087724cb2f351f365513cfd4865b6e0950fc", + ".git/objects/d3/60efe059c19a7ac314960949ebf590397b4d7e", + ".git/objects/d3/6735d545c14eb326caf68f6dae1741934ad5bb", + ".git/objects/d3/693c224dff27d162eda0b309790bbf65a3e7d0", + ".git/objects/d3/6a2889fdde9b79f18c2087dc7fa94c932bda80", + ".git/objects/d3/70001d6bb942ca3c2943fb06bb653670177d92", + ".git/objects/d3/700839cdf12c293ec673d3d31e9042ef91c9f8", + ".git/objects/d3/70ad034f4108ac22c75c0c46f92f697c512731", + ".git/objects/d3/729b57b47e67389041fcc40cce3a6a7b4f8be5", + ".git/objects/d3/7d74b6970b7ee942950ffa1b6e6ca6824f3bac", + ".git/objects/d3/8d95e87e7c87375903863b64c3fe6f4feab35f", + ".git/objects/d3/a30744de753b1b46f0e005f92fc4ea333fd76c", + ".git/objects/d3/a35df6a2be8d18855eccb6b074103e830367ad", + ".git/objects/d3/acc75af3562731ceac33dec4a0cd3534611466", + ".git/objects/d3/b11714e1dd668ebe7d4ea1e35af0f4c0ed14a1", + ".git/objects/d3/b957b60f49838fc3d9ad275fd650b28b9d7614", + ".git/objects/d3/caec656146d1ee51e1fb94a6996235e1f5024f", + ".git/objects/d3/d7262ebe4975d2c9ea711d0a4e8d22ce5c691f", + ".git/objects/d3/d7511a7dd16caa0b49fa2f12ee2ea0d6c4f0ee", + ".git/objects/d3/e123e2d2f18815c7cda113d1b9b5277520d8a1", + ".git/objects/d3/e48784d1aa5cc41cc83628cda84734b2a13e30", + ".git/objects/d3/ffae405b5f6d49082ea98469e87a0aba4f880c", + ".git/objects/d4/174364b64226684a0939d51d82c35d826e3466", + ".git/objects/d4/176fa6d2dcdde181cb1ea256887965bb3f2c5a", + ".git/objects/d4/186e9e5455b64ef98b23a08745b993cc97a2ae", + ".git/objects/d4/1e0a768bd22845c591c8a41d8626cb920ed954", + ".git/objects/d4/207ebdbc5dc33f0787d313a7ef44055d03903e", + ".git/objects/d4/2b51f2efa328fc8e2c25267b040a8572c1998a", + ".git/objects/d4/2e9fb26184b37c0c3b0e30e66039440240e25f", + ".git/objects/d4/3e41b73be1ff16c4667b40433319dde25332ca", + ".git/objects/d4/3e908924c42b2112122832797b8d70bb51962b", + ".git/objects/d4/5fd57d4d5ca474144c5651ba7b16b1c9f77cbb", + ".git/objects/d4/78c136ce4790f58d3e859eefca44ae9bcbd9ac", + ".git/objects/d4/917a69080eff282bb96e82a18e5570b1a4540d", + ".git/objects/d4/ae421de3f21e03cc779c7224106ae366376a31", + ".git/objects/d4/b29597d415bd9912e4bac6e23d58f9714063ba", + ".git/objects/d4/bb1551913de3d07f5f4320321bcb0df92bf2d1", + ".git/objects/d4/d2d1641cc2863718ecfb56c5b29dd98977bc31", + ".git/objects/d4/dd84fa838fc0aacd79b6d03cf89ae57ddd1f20", + ".git/objects/d4/f1355b17f45e885e908350d1ac303c423d89f5", + ".git/objects/d4/f5264fc9a59ade3a2b219f6120094d921dfbb1", + ".git/objects/d5/18e64720d566205cd12c00b494f86a5553db2a", + ".git/objects/d5/25ba3dc8b7a6db73704e02859f56abdc1ef415", + ".git/objects/d5/28bea89f81b0c3d7975fc9e63ffd20fe4f146d", + ".git/objects/d5/3105e5941ca873072778f2f912dd2c85398d16", + ".git/objects/d5/365814fea8d1f7bbcb8f26e4f7b551a3e07c86", + ".git/objects/d5/37c1c423d4a97d87bf1fae30bca8ed8febab2a", + ".git/objects/d5/4e2616fe1537a523075753581e670ed9103f12", + ".git/objects/d5/5930848faf459643c28717e2188a81762efa2e", + ".git/objects/d5/7e10e313e36fb79e19018f2cee06a4ac0114c9", + ".git/objects/d5/813cc1affd1dc7e03370b8508f3750ad29c672", + ".git/objects/d5/84020edbe6625ef16729255d4d1edd0488f5f1", + ".git/objects/d5/9c7ada1460f52860265a88111a2a614d2e62d4", + ".git/objects/d5/a97ddf73b6425e2199d6ef002222067b109321", + ".git/objects/d5/d44ac495e38bf87e95dc3e80d912d3d00996cf", + ".git/objects/d5/e38343cbfa494457faae68093130380e854506", + ".git/objects/d5/fcc1d45736a5d26cc7b8a37a90406c2787dc9f", + ".git/objects/d5/fdb25b0cf6d870bfdbba4253744c2dd779e7e3", + ".git/objects/d6/08ca090533633b080597b069bfb4749429e57e", + ".git/objects/d6/1dddbfd460e5421222879f6b0be952bfedca12", + ".git/objects/d6/3e3f978a4163324ebf53f7d4a5138617313469", + ".git/objects/d6/5036cbe334769208df6e206a7442372bec67fe", + ".git/objects/d6/6324310794c27a53b69783e4a4c22374a9a7f9", + ".git/objects/d6/67275bfe9143639a7d6df846c2c57b1a3ba852", + ".git/objects/d6/694d26c977e53edf24a9a42eba35d8625aab24", + ".git/objects/d6/6a724799b8849c86ddd57c5a5917100ede7f09", + ".git/objects/d6/72139f8beaf6e2cfaafd605292680cc32aa510", + ".git/objects/d6/83bc59dde81a3ea67151f33a755f302ad44399", + ".git/objects/d6/872d5bee406197a2a3738b61f85470ca630b4b", + ".git/objects/d6/a0d4bb2702ad332057d6e7d81a759cec3736aa", + ".git/objects/d6/a67f7d4ff39b5dac983431ad819ede7e350b60", + ".git/objects/d6/a96725c29846646da64f78eab0e571022289fc", + ".git/objects/d6/ad2c6469aa3ed4de93cbfd94d892d8c0ca1c1e", + ".git/objects/d6/d732770aa163ee6b039704c31f57037247922e", + ".git/objects/d6/e89b3a9510a721abfab0b32876a35d9908bc6e", + ".git/objects/d6/ee8d749617a867a418c1808a78465f305be660", + ".git/objects/d6/f28c4bdb51efad3c15d15255aac797cce6898b", + ".git/objects/d6/fe0195fd258cb9ec64e5f64545bbc05ac645a2", + ".git/objects/d6/fe1963dc99a8fe736b3625b303fdabe0a965f0", + ".git/objects/d7/0ae96964834a334988d6b29c6b689f133cf731", + ".git/objects/d7/2cdb89319a9432336c19fb5fc2d14ce58fea7a", + ".git/objects/d7/38ddf335ad9f6fe026334e5845ab3485bba02f", + ".git/objects/d7/3d97066dd61194e5b88a9c1738093ca39565ee", + ".git/objects/d7/4396624b3f3e35b8a03bcfac3adf5ba25fa471", + ".git/objects/d7/53de291bd41aaf8437179017e35d37158c0921", + ".git/objects/d7/58e9fde55e717e691d626ca8c67aa78d828184", + ".git/objects/d7/694a27b0004dae5f1da214faaa82f12142d36c", + ".git/objects/d7/6d9839d6ddd928d9fbfd01070f5a2fffbb97de", + ".git/objects/d7/714ae825d34a1b14720605aad452345b1dfcea", + ".git/objects/d7/90f81581bf97cc5c1fe11133307084bb6809c1", + ".git/objects/d7/912e589f9d89b05362d2c2dc508166b3b9b869", + ".git/objects/d7/932aeb66feb1e3899165df93ecc29d886608ab", + ".git/objects/d7/a99cdd5e5ec32a6f1071a092edfb2db17da81e", + ".git/objects/d7/b047d4a5b641a772ea1ad416166d18d2fede6f", + ".git/objects/d7/b0808fd3169b4d6ac9cedb470ff74b574fd2fe", + ".git/objects/d7/b1968dbdb4b9e8b0aea0b944ddd813b2fc8439", + ".git/objects/d7/b42ecb97593a825127669a7da73191b9ae3959", + ".git/objects/d7/b8914dc8fa350090009adf1003b7e870609d32", + ".git/objects/d7/ba337c35063a65ec05c45b4f1fda6b3a0ef617", + ".git/objects/d7/cf318f5bc1478cb4f20d93dcfb77df80861d90", + ".git/objects/d7/db40d371a114128fe488c572807c6bac7bbb49", + ".git/objects/d7/dc322c8de4d626eb2c92d23928e4693f1e4cc3", + ".git/objects/d7/eb62c89fc27c8d8c447a812e6b11899ab45ea2", + ".git/objects/d7/efdf44b1c2ca327ba29f77437cc0abe1baa331", + ".git/objects/d7/f2f96c33461c098b22e442be3c185b6f8a3e10", + ".git/objects/d7/fbe4920758af82aa6ee51ee617c4cd347217a2", + ".git/objects/d8/023fd04075183455ea1163f35b939c1d1afb5e", + ".git/objects/d8/0c718bffc96372b47e4608f55236209e6e152e", + ".git/objects/d8/149f1cb6889c64912a5935b6ab4f373313a2b3", + ".git/objects/d8/1bf888e03eb24ec14074db3dcb1e2e14e69dc7", + ".git/objects/d8/1dddb4234fbadd249461e4ff23b927ada469d6", + ".git/objects/d8/2434ff21c81dde9794f727b0e112b85b6128cf", + ".git/objects/d8/33236230376a762b03b3c0524b2821bac06c93", + ".git/objects/d8/462cdc48e5ebcbd11c866deba757a70f4d35e3", + ".git/objects/d8/4c4543ff1f03b3114ac1151f153fb3dedf22c4", + ".git/objects/d8/4cb9328819dc0c1f8b1a1f9dc31af34c319641", + ".git/objects/d8/52442fcfa8d8ac032bcb5f5ff49c2c5361ca45", + ".git/objects/d8/70ce8813f9756292338c6fde2133690a814f32", + ".git/objects/d8/76f58d36a30631d98218e852f2038796f49ae6", + ".git/objects/d8/86b5b4f9db5f93bd6a422ac2520ec6a0dfb2ec", + ".git/objects/d8/9d5de7d8283a6a2e43803c01d5d1e7206310dd", + ".git/objects/d8/b4d778f261128a15856b316313109013c3a570", + ".git/objects/d8/bbcbdc7379908ad59df95b4130cb1da08df584", + ".git/objects/d8/ca46683f1c93b47086b31c5b493d64d70cbc38", + ".git/objects/d8/d6f00f6d367b44f008d11e9e77b0d7dbc19745", + ".git/objects/d8/dc04585e2a4bf1ae5bc02c9d83c071e186933b", + ".git/objects/d8/e7e18090f57d71fd20b63307c574ee44319499", + ".git/objects/d8/e95342b32378a3cbcc381109ea24706895ee2e", + ".git/objects/d8/ea0961fbd0b9b4f61c533ff7e1162d91d098f1", + ".git/objects/d8/fd933f6c2a633e0be6f545b65b6a23b3305613", + ".git/objects/d8/fe854b2c1f5ad221c3c7f79d2a48dcdfa6f584", + ".git/objects/d9/00d2b5019d464c52096fc6df021c2cb92a7b40", + ".git/objects/d9/112ae5165bbaa13e00504e5520a09dcd45d775", + ".git/objects/d9/1383bf7863c3289cfc128a073847d9a4f8529b", + ".git/objects/d9/1cb8372a2dbfc8791d83be6ff63b16cb6bcf60", + ".git/objects/d9/1e854be8b7ebc133600b4e6e45a5cac3773ab7", + ".git/objects/d9/2f03653e5b3df4c5957b1eb8e3901691ea1a38", + ".git/objects/d9/3982d4c6db86fdfce65b0fbbc24f1a1eca3f01", + ".git/objects/d9/42de780e178afda732a432ba09523c7753a212", + ".git/objects/d9/48c7a747574eb38c93dd616e7c0a333da2ef3b", + ".git/objects/d9/4bddf7467a7940bd6c39e6482114b92b63857c", + ".git/objects/d9/4eb1d23ce84ac38e1041dbbb4a3945ecff23d4", + ".git/objects/d9/5e88e4092e2f17781de2f33408f3451e71b741", + ".git/objects/d9/7d4193b7030ab2077ca055e87dbb7352fbb32e", + ".git/objects/d9/81c86f27050319b5703c786ddd47cb7c184883", + ".git/objects/d9/839cc8eccc3eaa1e3bc77fa87f25b8c253afab", + ".git/objects/d9/939014aab9c2697a71c6e708a9e22318f23e26", + ".git/objects/d9/a264c9ed010919c741504cc3db3df0cdff3a7e", + ".git/objects/d9/af4b28ec2a6f6a7e682d69e475ef56a2818c0e", + ".git/objects/d9/c29c6271606f53ace1840b4d8df7b61ed2e0ff", + ".git/objects/d9/c7d1e84c90b47502dfb5ef9036877b6238be91", + ".git/objects/d9/ca24341e1390e4c8b2d02b8075e4ab14eeac2e", + ".git/objects/d9/d4cf49311bf3e4bf952c2ff9d0d8b2e820e519", + ".git/objects/d9/d8cf464e9760897d3d7ab41c1e2518bd10c2f8", + ".git/objects/d9/e989cfb441f7661d76b5811e0180bfe5543453", + ".git/objects/d9/ef81ac00da2b31b28a865d0a12f056c0d72e69", + ".git/objects/d9/f9ec4cda32a729aaaa30bfde1d43f2f2d46124", + ".git/objects/d9/fd43a04300d4c7f0b6b9c777d0ff6223bd8675", + ".git/objects/da/09a976c6338e0531b55102f34f3478422d03bf", + ".git/objects/da/0f92db14465723060e8911d7c2d26de737f7af", + ".git/objects/da/117ea3404597189db0dfc36321d47f71cdb538", + ".git/objects/da/144b7098edd1c3820e55ff4f3de237550297d0", + ".git/objects/da/1a1b67025be6bb023a40180b04a7b9560c0297", + ".git/objects/da/2c21ec108c82dde62b2d3a5083c6cc392ab95c", + ".git/objects/da/360149d26c13c107f9fcf572ddc90ffe705fd0", + ".git/objects/da/5869c2b0fa65c0625203f486f061ffd31ca42d", + ".git/objects/da/5d98497554e018ac5e2ddb11e1932b6f7f3ea0", + ".git/objects/da/5efb9b7e3656ce0243dcc25dd40d65be786f20", + ".git/objects/da/62a4a1ecf90b85fd2b3a90be0a8aa7e5fa4e1d", + ".git/objects/da/65cb2a45915842fe60285c50ebfc7d29857c2d", + ".git/objects/da/6681c6cff652071dd1c7d0c9719fe418b59725", + ".git/objects/da/68676b70719901326d0df83cb8b2bb2992e82a", + ".git/objects/da/6dd741649285db0ddd2afe02a2217456abaa8c", + ".git/objects/da/709704def60199e6006385202ef2cfa7610026", + ".git/objects/da/997cc3b92e5730f688573165d9ae3fdf500355", + ".git/objects/da/9d22cf74ef94904ab9ba1d6cb522cdf7c3b943", + ".git/objects/da/9da09976c4caf58053821a168223318aaa7ab8", + ".git/objects/da/a5d3294f43e307596fba5da8ba25070999c76c", + ".git/objects/da/b696d0b9d570cd366d213aa6a386ecfefd13a1", + ".git/objects/da/c0b68ea4d3e1817ed523dfe71cf4043e19fbd9", + ".git/objects/da/d0790aa7d0cd859ae0a1386588d345942ff9be", + ".git/objects/da/d7ee1b0244fb7181b3e3551fcc2e87f2299422", + ".git/objects/da/dbf2b4f64fe3acfd1eee851d5ad51099349426", + ".git/objects/da/fa098cf07f8c072e7f6bec6acf63c738e5394a", + ".git/objects/da/fd86b61711571b544cdbf452f70fd04d707686", + ".git/objects/db/03678379227956df18dd9f01625e061381c8e3", + ".git/objects/db/115df0dc28fb01c005a888b1587e7be49dc6dd", + ".git/objects/db/183af15f900c7e3d274b5a09db4439010dbaca", + ".git/objects/db/1d180f8909e0c5ad9247ed1ed1c808182f4061", + ".git/objects/db/1f2e7ce641e224093800dc1847c6a79ee0aded", + ".git/objects/db/2231493ffdf83883db9ff78d173b6ad59c8cbd", + ".git/objects/db/27f9cda26cd9a8aee1196c126adf2b0c079c2c", + ".git/objects/db/2ce2542b36a26ca1373b77a7025fa6cdf72aef", + ".git/objects/db/2cee1349d2e135eb9ca120cdb1319d0bda91a6", + ".git/objects/db/2ec5182b6afd4d28ef918fcc1e32278d20cfbb", + ".git/objects/db/3b636d511cbea775aa3b5b4a8071cc0ad4a9bb", + ".git/objects/db/4759bb502455227a3e0b91f77ac49463688208", + ".git/objects/db/4fc690bfa26e62fccfda426cfd9f878c85330a", + ".git/objects/db/6142ba8083d7f3b1e4a98facb97285fc484419", + ".git/objects/db/844fa18547c2e35b85073047b56f6ce3453d51", + ".git/objects/db/8c05ee3b8a087a318efc3bf7562f07334910a8", + ".git/objects/db/8dd012f1e3445a1061a5daab2be9cc227f121d", + ".git/objects/db/9cf460efbba0bc1a8305a04a7755f6ea839310", + ".git/objects/db/a572913e086e226b5a1bf0c65292e77508d076", + ".git/objects/db/b99fcfcef2b8864df8a94a7aa88f23f0da569d", + ".git/objects/db/c0ca669e546caa67cee9b5e5edc3d7521a6416", + ".git/objects/db/c4bad24652401b0ac6b192a3c30c1adca35b2a", + ".git/objects/db/d520d41c5fd066461b8ea2ccdcef7c2d64a9fa", + ".git/objects/db/d99059b24dc9bf3e932d5f3fe718e93d57227b", + ".git/objects/db/f7bf27ea2f74f51922875d5628bec424286278", + ".git/objects/dc/03b1b3afc2b91ac69f10c9603079a1b2afa41f", + ".git/objects/dc/232273078bd4fbce71cdb43abe22f44d092998", + ".git/objects/dc/26a68dda222a2d722d42a29d4883c01244b26d", + ".git/objects/dc/2cfb753d0a1e25e1ce80d11ac4c3dd5a50f639", + ".git/objects/dc/39e1ee6bc4608c9def44d8a14faac410c54e24", + ".git/objects/dc/40ce15328056d8e89bd8ad1c35428d01663e38", + ".git/objects/dc/41f3bd9d151fe995ba79cb372d0ff275813a7c", + ".git/objects/dc/45640d7c9cded19c4311e41f1379aa70ced959", + ".git/objects/dc/478213bf19d4292111b5eea695eaa5d2e227f7", + ".git/objects/dc/4c116ceb68cbcd55a9b63a7ce8f3fef8f3c312", + ".git/objects/dc/50ec29a765465fc0e15c30999aa869632d5c2a", + ".git/objects/dc/53a5f06a2aeb5e5a6e1e7b66280fc6de2c78af", + ".git/objects/dc/6c2bbf37f218599880ab9f45ed6b97102a0657", + ".git/objects/dc/76398fa8336f95dff0dc1b3bb12b7c9c458bb5", + ".git/objects/dc/7a1021aea945275510320ba7fab77d8d2de082", + ".git/objects/dc/7ed8e50d67ea6048f3b3680fc63c9c848ed407", + ".git/objects/dc/81c5b51516257074058bd39af82e0681fc057e", + ".git/objects/dc/846de78528f4af5c473265a85f99e1c57b4560", + ".git/objects/dc/8b0e323b82eb629dc1393d7aaf067a6ed00c59", + ".git/objects/dc/974064798fecb641b444214d831df38a1ac2e8", + ".git/objects/dc/9ae26b3792ed1da350b04baeabdf4badbf3529", + ".git/objects/dc/a8dd2b763e0fcd8c8ce4ea9752ba2178a9afbf", + ".git/objects/dc/b030076bfe0ac2fe89603354222c791f922347", + ".git/objects/dc/b7e61ed61ec5469f58dfd329ea6d7ea3006361", + ".git/objects/dc/baffb58b67eb56a258294f1b6b202918f0b2eb", + ".git/objects/dc/d0cdcb189d1eed193c69676fa1db9d64bb50a6", + ".git/objects/dc/db96c6fd46f20430e2ab540bd4ba7ac2c52328", + ".git/objects/dc/eeecb9f55c4ab236bf3ab4c7b28e373af17e1a", + ".git/objects/dc/fd2c58b2b24c2bfde37044e431fd48af7170ef", + ".git/objects/dd/1dded2a05d1f8418c9d11c68d7e5b68686062a", + ".git/objects/dd/1ebd30f12ea5e0b06f6c410dbffeae4d48fad6", + ".git/objects/dd/27384a22b6fd091237f493b5c2afb7615cd5ea", + ".git/objects/dd/3d7a78ab572ec65337026d9f3ce4a7c515181c", + ".git/objects/dd/521548a1f741be7a0f601f2e700df3835b8872", + ".git/objects/dd/5a4483ced8c4d5329958b501e9a17125a8bded", + ".git/objects/dd/6c274b1a5ded93f1d09c499617653857c85dca", + ".git/objects/dd/8c289b4805ccdcba6d453cb2af3270332b52fc", + ".git/objects/dd/90e9d0adc21494203899c49c7bf1473a2ffe0f", + ".git/objects/dd/9f0c098b16c9dde27e723a33aaa0b460ba5998", + ".git/objects/dd/a60971e77d0d19e7b3b91decca90537fd2184d", + ".git/objects/dd/a6918e110221813b59eaadc806a22fb8a889aa", + ".git/objects/dd/b63f85e83a2a566a609b53de6eea55b618101a", + ".git/objects/dd/b95147d3b2faf6526ae48be2711b59c16da47e", + ".git/objects/dd/ccb739a0a22deb8144b24d7f807217c5cc3186", + ".git/objects/dd/e9e81b0cb457549e1ebab896ff5d13d737b4a3", + ".git/objects/dd/f408a758f7ee589620c77d5f1fe4b976c24678", + ".git/objects/dd/f7fa2f02931d5c3cf87e5aa38f414f70309e2a", + ".git/objects/dd/f9ae70c6cdbbc036615f62e7aec0a898820412", + ".git/objects/dd/fc8d34e1aaee8e9cb2c5174f2b7a6ab5d3ac2f", + ".git/objects/de/00dabfc64611ba2a52209b33cbf47770f4c582", + ".git/objects/de/17baf5861e8cedee2e17d7649ebde3eceb676b", + ".git/objects/de/1a5c64b82185c6c8e38caa451a297a6a39c2a6", + ".git/objects/de/1b1502f2f9d98a57c9e56a8248bd0de34283ee", + ".git/objects/de/2745b7e4ff7971ec5e6e47bcc2efc2ac2cb803", + ".git/objects/de/308ee5cb889f58944d0b9e2b07c78af86b7f4d", + ".git/objects/de/3932c5a8cc1da148eacb688db41c8a83d8a9d1", + ".git/objects/de/446c31f4e0ca4c0f25906a0f5731dcdbcfc0bf", + ".git/objects/de/56a2ae3ffc39e0bdfc962e3a10d6623c007677", + ".git/objects/de/630cb2b067d68be4b9ecb1c7f82b3b47913aa0", + ".git/objects/de/76caa1e9cd30efa27546170c8327d6bf8ef8fc", + ".git/objects/de/7af1e6d446b9a27d6e6ec95a2e2c3f8f9f3efb", + ".git/objects/de/7b76f2e8a4f2552c31d8282d1119928d886df8", + ".git/objects/de/8af0a9abf21d41cb120e46ac5715f0fc98067a", + ".git/objects/de/91190aae4e800fc8eb8e899d7eda39cc14aed4", + ".git/objects/de/91d544aedeafc9424fc0429058b62c31d9af43", + ".git/objects/de/957b3b1fc4138ce9c9f2d829fbebe477541f16", + ".git/objects/de/9b18b18259c434b0f18d809a655807cf4fd673", + ".git/objects/de/ceb508779db9a5fb66a2a90f5a78bcf3440226", + ".git/objects/de/d76f94d5e79250da914b5732f1a46758f077eb", + ".git/objects/de/d9e60df610c08a0c97d57c22a03c7a19842d61", + ".git/objects/de/e67c6627c879fda23a98395815120f7d41c796", + ".git/objects/de/ef6498569c7eec812fa8975d71ff85efd6e313", + ".git/objects/de/fa630a71160cb425220ad08a905ecaa92b0bca", + ".git/objects/de/fbb9708f90ffc2e543a8b0d797f6f511536b43", + ".git/objects/df/09d1c41d50ecd70a15f6ba83169f46cd544083", + ".git/objects/df/0d8500253e6c978be5670316032d3595812d39", + ".git/objects/df/0e192bcbd428c3c2f6e44762df1ac3ee14858d", + ".git/objects/df/12bf4a6f7e2c94c30e383f05ee573bd6841c90", + ".git/objects/df/1bb1bdaae44b1ed9cbd7958af4d43a91e2863b", + ".git/objects/df/35592cbaaa6c70db12cd51e206af5474dfdea3", + ".git/objects/df/3eed6472624dd05ff6a1025734aeebea4b27be", + ".git/objects/df/52eadf42bbce3525419b276f98a8f82ee0cb8d", + ".git/objects/df/58965140e023aae416d533bc1c2f6773246ba6", + ".git/objects/df/5ddc946b7fec650216a53b6381d226e3d7594c", + ".git/objects/df/6057197c613a32c0630f19c1606ea1366e8d57", + ".git/objects/df/60819a85722f85439345cb4a4d8990a8efbe66", + ".git/objects/df/67a59a5d7bd069f0197cfd4f15f2415b44875c", + ".git/objects/df/70b4643c4f77fe38c138d4b7f70ea9047e0daa", + ".git/objects/df/86725bfcd13c69cc240e260a2f1113c71340fa", + ".git/objects/df/891c5c3ad17491f15544efd5603de6fe956bff", + ".git/objects/df/8f522fc1330096606bc8ff25a2f0502a67d8f4", + ".git/objects/df/9945f8a33aa6ce29249808ebac003919fee322", + ".git/objects/df/9d040c421e529454a24f81eb454048011ff46b", + ".git/objects/df/a07cba2263759650ef82d27b14cfef9b766045", + ".git/objects/df/a39f4f62daf820fa46d693e8a803b399f08772", + ".git/objects/df/a8e6b573f5393c18ad16056d087c1c87e1ddb2", + ".git/objects/df/ce2b187957ae1c84b709cb55c57c2cdc6a3891", + ".git/objects/df/ceab696bfd763e2ac160bf05303efc76c5b942", + ".git/objects/df/d514ace513ac7f1dd6d53e9a17bb0a3273cd00", + ".git/objects/df/d86612354ca39820c4890debc0e06860201167", + ".git/objects/df/e667f711cc6f63b72130a756d3b40e8d9e5b02", + ".git/objects/df/e6ff1b0c14b3490fe3ee9bf6faa6c194639ad9", + ".git/objects/df/e79c8a5f2d62012b1d5b91c1d19b857725a9c3", + ".git/objects/df/eac180daf7f096711a1413fdc19a8197b7cd2c", + ".git/objects/df/f1d9a425a5f18d45e78599ed35366817df0bec", + ".git/objects/df/f340e35fe6581b2ea88f6561871edf47440146", + ".git/objects/df/f69b250a0f8a51aaf5711e2d7fc1af23083952", + ".git/objects/df/fcddaf2f39475d3396dd154df275eb40e7e7b2", + ".git/objects/e0/17770d274fbea21d9798bd6eb6a7ed2e005641", + ".git/objects/e0/17a7121501adbcb20f425959e4bbcdab4c2603", + ".git/objects/e0/1a2e00911d2531583cf0fe098c937f1f273695", + ".git/objects/e0/1e4a2d40c3f9387337d30251b01c3690c5bec5", + ".git/objects/e0/2f7fbe876bf968a43901767aac2796b874c1b2", + ".git/objects/e0/551769f996b9360393cc61be1aad5848854784", + ".git/objects/e0/656031942001d945b0903783741174538024e6", + ".git/objects/e0/6c501e7bed007c323a79590f09886c05964e0e", + ".git/objects/e0/6dbb43c2329f5f8507e2d7b6c68201f725c660", + ".git/objects/e0/a5f103e2ee5675355906a41b8b9841df90b561", + ".git/objects/e0/a75586565a62f432b199e663c9a07149f9ce68", + ".git/objects/e0/b5d98fa24a300899c3677a1cdd83369f9fd673", + ".git/objects/e0/b66b9f1db513972107f9b248b9100d55edd7d8", + ".git/objects/e0/bc574a503b83910a2615aac88bcc9a5a65ef77", + ".git/objects/e0/bfe104c36fa8673a27c594ec32cf1b1a4d2c7d", + ".git/objects/e0/c238cba9696ef62177d89f997be9e7c035a269", + ".git/objects/e0/c43896904ae6b912b9e31e4ea0ede1347df71f", + ".git/objects/e0/cb0d448452d440b9eb3ad2333a9fb49850e46b", + ".git/objects/e0/d7bfba02978d621b7548907a4de51e6dea2d04", + ".git/objects/e0/f2315bdaa4317f45b2a2d3ef6e414812d2f92c", + ".git/objects/e0/f9d59039308f31bf2a0f17e63f919b33549c67", + ".git/objects/e0/fa6fd154997598e744f32b9973fb456ece3285", + ".git/objects/e0/fa9155a04d4ed74f12c35c25613d8b24a5bd38", + ".git/objects/e1/1404e1cfa30c1f151834f0142060d71e43c026", + ".git/objects/e1/14eb07c249567a804c8f8003a4e911e26d4b2a", + ".git/objects/e1/21914311e7627c3758e963f83ef78c7d61a584", + ".git/objects/e1/22ca37eaf7ce6bb385a574a45750ea4c9f3574", + ".git/objects/e1/26bf23d7ccc9533b5faad8a736c832df454458", + ".git/objects/e1/28669a463104f27c7db5c87e51723c7e670469", + ".git/objects/e1/3bbcc7b1515ca0bec8e746c71ba24d17ea18fd", + ".git/objects/e1/41dc338ec7bff6bd35ebe3a409ef1238fd5ff9", + ".git/objects/e1/4ce03d8a438cbffcee6f92ab581143b5db40ed", + ".git/objects/e1/4d1ddee6e4611c197804393414cdd0107f27b0", + ".git/objects/e1/4d242c84253f1b113c20ebb19525ec883987d4", + ".git/objects/e1/637e329b59e61114743c8a3df9bb6aae582884", + ".git/objects/e1/7b8a6aa6218e81cd3a811e36236d6c5ae2d8c7", + ".git/objects/e1/884423620faed9a9982583eedeb66a49ec14c0", + ".git/objects/e1/9149fd235820943e3b06c16b621a1531944328", + ".git/objects/e1/96774d300cca4f24933f63d1d78442ff1c5b4f", + ".git/objects/e1/978224f7d31b528004aae42686a463706a87e1", + ".git/objects/e1/9e9ed9ea21a0f3bbcc5a59604dc2163ec851ea", + ".git/objects/e1/a63de35720d9b45f3249be256c29613df5a28f", + ".git/objects/e1/b15cb1a49961e7c32f4412e20699a7eaed4dc2", + ".git/objects/e1/cf7e581b80c91aa3c100f11e80b2231eb63bb1", + ".git/objects/e1/d08fc7259293000c5e64616408a55726e34981", + ".git/objects/e1/d99208fc014f98187b6e6ac5d33b72f5c81690", + ".git/objects/e1/de1734993e12c18d83d904cf3b12afde5f1d16", + ".git/objects/e1/ebcdfe97676d588cb25da45bd406e11a32a4ea", + ".git/objects/e1/ec75767cdbb24d33932c54cfad7a31da672bd9", + ".git/objects/e1/f97c3249175f9f77b9b2250f923fc1ef275ba2", + ".git/objects/e2/0434f46561d1eaa4767f03b18dd526919e72ad", + ".git/objects/e2/0bf432a9a234686ca9ee4a48af9034079f94f4", + ".git/objects/e2/1f622b18c5bab1dc57b27574fec7783646ed4e", + ".git/objects/e2/606e413c2000d9a85092d83a01d10a8ea35b1c", + ".git/objects/e2/61ec5af47f3746288af6720208e9a222859b8e", + ".git/objects/e2/67f9d74bed21b3a6d1664060cbf20e02486f1d", + ".git/objects/e2/822ca14734cc952bbe71f918f1ebd00241cbb8", + ".git/objects/e2/82c02bd5bfa4a38dce5a825c35d619ff247ba7", + ".git/objects/e2/9413591dca4c8e2ee538030f3357f196e1b955", + ".git/objects/e2/990e08a08888dbd35a91860d6280aa506096d8", + ".git/objects/e2/a6ef1ff8a7b0a9e96238e9cc2ac6e03afc2663", + ".git/objects/e2/a7c6346e9a19b458e03de34be60c865e53b87f", + ".git/objects/e2/aed7609f47b6751aa6b7dd04343caf5abd004c", + ".git/objects/e2/be7fb65525b54f0c96a57787d7a1a7a86269b2", + ".git/objects/e2/c49dcf83510236566b3c1a725791e44907c0a4", + ".git/objects/e2/ca832c7b2b74385d86ba02bde91d62b70f71db", + ".git/objects/e2/d157b7f11b088e8da826238485f8893eab3633", + ".git/objects/e2/e73b0d2bde02c7d2694c4ece3b1deea0e6c9de", + ".git/objects/e2/ecf2a59fd9298ce4ac0324da33904cb5b78b0d", + ".git/objects/e2/efc2ba8a4bb29ec3e0f07eb18d55bc519b01ca", + ".git/objects/e3/05bd6c08ae7f5cff8fedb81b919cbecd20aee7", + ".git/objects/e3/0a12e5dec99def7c5657a986048b478e3a609c", + ".git/objects/e3/0f62c494f04e8e021c8b4a989e5951a16a547c", + ".git/objects/e3/136736b2adf6bee66da25f1e60514b994d1205", + ".git/objects/e3/1c268f19538d629abf40dccfa15fa0aec91045", + ".git/objects/e3/2626ad7b75746fe6ca3aec34b2b9c7f0adc4af", + ".git/objects/e3/341398df4638ecb029d3021f999700ab176cd4", + ".git/objects/e3/3853aa3e3f206160aa80372fb31b621f145a1d", + ".git/objects/e3/44c33ba700760bcaec4ce2c11d5079c194f525", + ".git/objects/e3/4524f48d4173e6b8e6745d92607395993fc3f6", + ".git/objects/e3/4e5c719ff8b03bfa9eda8fe09c0feaf479b190", + ".git/objects/e3/54cd2e815d2b1147f3844d9819a271f5ace1d2", + ".git/objects/e3/70e36e009358e49622cc78a9b51564a3e74079", + ".git/objects/e3/a3248a3fa3eeabeb45c0c255b7e0656d8abf53", + ".git/objects/e3/b795b390c678f81ccf6227696b535b3f4f0cc7", + ".git/objects/e3/c30e5be48a9f2436e8a1a989b7a23e312f6a28", + ".git/objects/e3/c8711ea52bfb77240b0ac3df3614ec6555eeb6", + ".git/objects/e3/d630ea38d26ea8e2176e322fbfb23cd8750ad8", + ".git/objects/e3/de38e1c29e0c9fcf002b2c334430af10d42c34", + ".git/objects/e3/e233ed3684841b3eb98da74edb317743b22aa7", + ".git/objects/e3/e4c55b9f80eea9ea9ac6007426eb2a5cbce5f8", + ".git/objects/e3/e55eab0cf5c37588309e480d2158a8cb12a6de", + ".git/objects/e4/0d71c9c91c52cc7975cdd2ce8d308377b7becd", + ".git/objects/e4/15dc6ebafb25bf7242f6b3e8351b538870ff05", + ".git/objects/e4/206fa4fcd1463e84323692d520876b6be26e0d", + ".git/objects/e4/21cf791608552801b5e9126d74e3debf5079bc", + ".git/objects/e4/3d3f955ecb274efa14399bf9abe907628b0001", + ".git/objects/e4/434fd70d53fb1e00484e1517729714eda91123", + ".git/objects/e4/51d05ac6d895892480ff9c27978f80a3918e80", + ".git/objects/e4/55b23ea8eda92bb045e69848902712e82b48c0", + ".git/objects/e4/6353e819c94f54a0da7a30c2cf31f89eae8ee4", + ".git/objects/e4/6e3b4f6794fd53f4ea1f9124f0a4d837aa61c6", + ".git/objects/e4/70cb06f05fc8526878527ab2b090717e356609", + ".git/objects/e4/793c780a3656c40df0d6332abb4b76e10ddf60", + ".git/objects/e4/796d4d48eb989d946a23291d85d228793afa22", + ".git/objects/e4/7cbd29e4f339b777d4ec6f1a81869ec45d223a", + ".git/objects/e4/89927abcfb122b43f8ca6e163d5286d4084449", + ".git/objects/e4/9a00f91ae0b913eb8292d7bef6f042e366356b", + ".git/objects/e4/9f4ae1c9ca6c30aa7064a3b3434d924693c11c", + ".git/objects/e4/a96c5ed6eb5f09144071ace1db2a23a3630d29", + ".git/objects/e4/afcf5d518cb457d5eb0bac88b14e63126c0d0b", + ".git/objects/e4/c76637f696b27a78a21c93767eabca0102f99e", + ".git/objects/e4/c77891d1229789f3a68cf2118209154762317a", + ".git/objects/e4/ce4b377e22c80cdb5730238c12fb02b126188b", + ".git/objects/e4/d454e8f05ae423862465aaca1cf648c925fc4a", + ".git/objects/e4/d57f86c242d910ce41df4a116de970f37379fe", + ".git/objects/e4/e096d84d381ff3bd582c90732a9e93f78e51d1", + ".git/objects/e4/e83d31f9241b2d8c5d31acc4f43468073dc28c", + ".git/objects/e4/e85ae3376860f58cbbcd5770f4a475e45cbca4", + ".git/objects/e4/ee74e95f182b0fb6032a679a3715cf142ab3ce", + ".git/objects/e4/f3b9f140da052bc19fbf775e602644a4b9edc6", + ".git/objects/e4/f482aac38c64e93d858bd0656b76e2e896c9ba", + ".git/objects/e5/0d4499a59e3f479052c43c7da5784a0019aba8", + ".git/objects/e5/0ef35de519bbad63f47b8f8c543fa589865d4c", + ".git/objects/e5/0f8322a49750dd995ebaef9278dfa1d156feee", + ".git/objects/e5/1734ba50b4bda0f9bf72b3d153833597298b22", + ".git/objects/e5/283291129735b0c8978b41254b9b9617bfef91", + ".git/objects/e5/2e8a3455a55bbd24ffbddb00327c282dba1e45", + ".git/objects/e5/45e99ef1be2017eef67a3949e8798f43056ff8", + ".git/objects/e5/5b81e04615a6f10e7fcc961c51c32257d92fbe", + ".git/objects/e5/5ed718b08d68f2dd12461a7b4e1c22d7166fcb", + ".git/objects/e5/6446c6a0459e41d9478b782ccb5760eced902c", + ".git/objects/e5/6bbb31384864b421b1d948a9cb446ac1db560a", + ".git/objects/e5/6ec718fe27b676b0fde8e24814b0819f43e233", + ".git/objects/e5/79e7f2c901a177d1bb3cedeace79a89b1978f4", + ".git/objects/e5/85bf95f65705ec5342c3e649c6243e80432415", + ".git/objects/e5/949bd5a02d133a8923d5fc5041c2c898575c68", + ".git/objects/e5/97a376f5e3e8a9f83936adc6bc773a1dce777b", + ".git/objects/e5/9e227d5e579bc07022bce1c5568a0c3d2b8c88", + ".git/objects/e5/a4282721a3f8effcee5e9d8efcb9843a8c02aa", + ".git/objects/e5/a614b0f9877fd5f12e16597afa9f3004f34f08", + ".git/objects/e5/b03fed784d8ac37735fd603267cb4d1ee9117c", + ".git/objects/e5/b6d07b0cf120421dda6c620c62da9488a1d383", + ".git/objects/e5/b9a71d07596fe75c966855154702ce21cfe7d8", + ".git/objects/e5/c090cd993120854cec315e8711316bee63e341", + ".git/objects/e5/c611c7d8f179d6561ba64f4712a2dadb36e919", + ".git/objects/e5/c7e13ad9939b1bc6542b2aeb88ac69fd90fbb0", + ".git/objects/e5/da0735cd2e38da6e4035a3e132a2b630c0b665", + ".git/objects/e5/dd6be56d9a75c42573142b0d899f3afbc97ef8", + ".git/objects/e5/dda4df7d0d2c04f91e6f6322446340f43c8e0d", + ".git/objects/e5/ee3a3cd089e5807df89f59ee4d1d33787cbdd8", + ".git/objects/e5/f088251c2596ddcfa5d11dc0038a5bbb3982ec", + ".git/objects/e5/f926783a17897f48a577e002f3b89125c703f2", + ".git/objects/e5/fcee632646ca2d50dbf26d1550e33aaa19dfe8", + ".git/objects/e6/23d2d965de1591e4156a1d175cc1ea298b6825", + ".git/objects/e6/27a88ea6d27db79ea11d1840da7f5595978e14", + ".git/objects/e6/3771572dd8da48c9bce77a7714dee4701f1eaa", + ".git/objects/e6/3f2c07289c8a0c687de17fa40dd3c5c3b3b060", + ".git/objects/e6/428e66cccd364280d4e4fd85bb9ace738e363b", + ".git/objects/e6/42ba2cd4daa011df4f42042b87a201e298f9cd", + ".git/objects/e6/4851566874cad9adbdb91411cf38a092f0b68d", + ".git/objects/e6/4a46e8c9589e9f3d5a770436cedce8971ec83b", + ".git/objects/e6/52ffc729971a522d32f5a89069ea195dda65c2", + ".git/objects/e6/550953d5ee8e00f6101c11069d9c3145252582", + ".git/objects/e6/5fac2de13f4f6c007b0bef744e4f6345653593", + ".git/objects/e6/6571c5d301031be15e6ae57c9425fbb766efa8", + ".git/objects/e6/810a17b78431a2bbcfb9409aee58f6f30c44ed", + ".git/objects/e6/90135e16748d8bb0746ad83caef776a4713a40", + ".git/objects/e6/91c3de53389af16ab7335d6620dfc29732f792", + ".git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391", + ".git/objects/e6/a1e29d87750d9a57a185e7369800dc54391a45", + ".git/objects/e6/aaf74a4f5057d4d0107e282ecda51ab20da611", + ".git/objects/e6/adcee0a94b62ff22cc70b93883e434c60ded91", + ".git/objects/e6/c13568bb8e1ce96fcc45ce7be521f466b97f5a", + ".git/objects/e6/c164aa338415d8ded9ec78e25389d352f14332", + ".git/objects/e6/c57d3cb1df45509086895f6d491ae1b237d405", + ".git/objects/e6/cb3cd44eb3db9b7e15f2865178c6212d34224c", + ".git/objects/e6/ceb21b054e0d6489f3c50e73e886cdfb641088", + ".git/objects/e6/d02ea5d8bde71b1118e03a3f00bc61a3252a7c", + ".git/objects/e6/d3f18978a70688aaf31d4dc159da4e07b9b353", + ".git/objects/e6/d7af2225d6eba2dfd2c37d4a50468c5820b498", + ".git/objects/e6/e597ab51df67fe8281215ee7cf32a2ff9d5734", + ".git/objects/e6/eb22b562edb6a098e4e7680ee30bc1df008378", + ".git/objects/e6/fa1905f54548f95df735bc3edb9d8b5e2ffa57", + ".git/objects/e6/fb8dbee7952e3464c1e4d830c008bbc4f2863d", + ".git/objects/e7/3722ad0fc291e3564657e7d13b9409df721775", + ".git/objects/e7/39e37985de5a2914201a348f87ea9029f20d65", + ".git/objects/e7/40079c0f781d2e66b607ade0818ea9202dc028", + ".git/objects/e7/4c3c004f236fa64cf25412a6b8138abc3a0f77", + ".git/objects/e7/5a4c7866d8553e3bed5fde660b7ed55abac3f2", + ".git/objects/e7/5c69bf9576c69e7ded44313ab71e625e567335", + ".git/objects/e7/605420adb5e25161f8aca54eba2fb33bbd022d", + ".git/objects/e7/66d7abc4367aafe88f378c332db90cf4760340", + ".git/objects/e7/68a7c897a73f78d888aa3a225858b07545ecb0", + ".git/objects/e7/6c4a897490c8657d5d5644df3c33b1723c3c8c", + ".git/objects/e7/6e03aff9fd22876723221cf23ea7ee2bbdf2e8", + ".git/objects/e7/75cf8b441670b24ab0cac3c07ceee5946c8c36", + ".git/objects/e7/8308ba2d72ab6a04ea0a7ed61576b1c19ddf65", + ".git/objects/e7/a26774ade9669767872952e13be37f32720bd1", + ".git/objects/e7/a58cbc61685a3baa934480c1889c353ee9d049", + ".git/objects/e7/aa5af5de7ebe0b4ef9bc8329beb1b06ca12f78", + ".git/objects/e7/bb8a23966706b104d3aa8eb27aeac93e990dc4", + ".git/objects/e7/bd602c6a6eb010aade65bb796c4bdbc840bb58", + ".git/objects/e7/ca6053d8e9ec325f8572e676a4b2c9a91753c7", + ".git/objects/e7/dbb8c2dc9384127ccf7ae97562a30bbec3f6c2", + ".git/objects/e7/e2a56cd60a7fea20c7bc839cfb59db00ac70d4", + ".git/objects/e7/e3da92e94478c6316e176b8f8e6cbc07c76ef1", + ".git/objects/e7/e8784729ccb009086a2a90406f3c4c18d26ef4", + ".git/objects/e7/f5438cf1c106a11fe0bb2c13e4a2f58df8f632", + ".git/objects/e8/1c3c72f0f233c7894889e94b01f0470edb79e3", + ".git/objects/e8/22ff0fd381d929a51c2ccff8d0950384b80b26", + ".git/objects/e8/259036b2af9b7fa6eb9700662f9afd7774e834", + ".git/objects/e8/2ec0f7f7c4c3811417173fe98be616fdb3b866", + ".git/objects/e8/3c944a3d73fdc6bdacd237ce5098ff96bd6719", + ".git/objects/e8/41aaa45077942c7fc8ae613774a1970ce911dc", + ".git/objects/e8/50b6129febc5c968a49d9cc482f77d154551b3", + ".git/objects/e8/5aa0687d9d0212de1701e874679a02a69216a9", + ".git/objects/e8/68370d2aa3eb2152911b94267ce49f6d7a61b2", + ".git/objects/e8/77d7242c21f342fbf55f9c4fb0459f2b907b55", + ".git/objects/e8/84531860c78c67f21b237891e6c1985e1f5a37", + ".git/objects/e8/8b886b29c46b2f95b819dcea520ec33facf425", + ".git/objects/e8/97219820e6c7b7af98bfe64324101bbd6593d5", + ".git/objects/e8/996d685bab9c84205f50ddde103d485996e13c", + ".git/objects/e8/9a5499a1d1e88da9f0a5bf56ceabeccd5227cf", + ".git/objects/e8/a5b9faf12111ca5a7f347920830632a9cbdfd5", + ".git/objects/e8/aa9a7b8839de3f2b8a86a497c923b812c3f49c", + ".git/objects/e8/afecc016b40308c91b96b2521cfa02097ae30e", + ".git/objects/e8/b9d02ff0c8741cb7c02675beaa1d819d45c161", + ".git/objects/e8/be586a17f9b102dfe719fde8031fb79cbd8b77", + ".git/objects/e8/c26897aaab990c79833ec4b72af7f0f99db700", + ".git/objects/e8/de2accc441e8ef5697a7d35c4f468daf21bd87", + ".git/objects/e8/f4ddc87afbd81189cf67e2d94ab90a74f77fbf", + ".git/objects/e8/f9fbceb8e69f85465d91efcdc6973b58e6a887", + ".git/objects/e8/ffdcebea35e39414e2b7c2446d5b14ae01d840", + ".git/objects/e9/0240b2a4a60d5293d6e05f8abc643854e050b9", + ".git/objects/e9/14fbcbc338bcd32c04a6b656bbb65bae0cdac4", + ".git/objects/e9/2ab0ef7cdee6a01c7d6f325418a0d1aacdd0b4", + ".git/objects/e9/2c2bf7d002811b45eb4bd948f382cbc89b3305", + ".git/objects/e9/3686a71edb5e8e4068303154328548a5fc0273", + ".git/objects/e9/390e9fa038487b5fb9f92016f731e04778224e", + ".git/objects/e9/3bbf89b65a7136f7d03cf8f6b169b502fb5cce", + ".git/objects/e9/5799952de73d12605091879c9b68681c46411f", + ".git/objects/e9/5e8577e0464c8ee7bfb1b84cdf779bf3c7a1d9", + ".git/objects/e9/6b13117bfcc933445a415c67cec5cf1046e131", + ".git/objects/e9/6e39c3fa05aa10ace833d8265c36b9f673e13e", + ".git/objects/e9/8503b0dc3ac08c204b729a56059b385e631a52", + ".git/objects/e9/8e9a8e6585fe8b4fd911efd1f6da2127180d31", + ".git/objects/e9/927fbda81fc57f53697e0dddf76ebc91067948", + ".git/objects/e9/9c9bfef36cb15630cfe26916edd03fc2e7f0ad", + ".git/objects/e9/b5cbd982b1a31b4a8a3a64583b854adb64ade4", + ".git/objects/e9/be79102158ea1ba183e7976c71205c9b6be0b5", + ".git/objects/e9/bf720b4dfc1e8167e7c6139d1f55877abe3c83", + ".git/objects/e9/c3147a401389fc7ca79e86ad8a8157cb15bc9d", + ".git/objects/e9/c6282b08639eb44d732c03d0f85177e82a4209", + ".git/objects/e9/d3aeb49f5b2bdd11e3df9cb67b7b1fd33d82ca", + ".git/objects/e9/df1fbbd29d3a39a81cce6c94a836b9f76a131d", + ".git/objects/e9/e2c571430c8b76ece02ce63513647e104fbe95", + ".git/objects/e9/f70070f447a5647b728c2dae82a943a151c0a1", + ".git/objects/e9/f956b1e5c73927ded6d383135c9ae4738e772a", + ".git/objects/ea/03fdeca6f50cda0ef668a3a64a209fc4185975", + ".git/objects/ea/132c6cbcdab9f62b57cec36baaf535a74f9b1c", + ".git/objects/ea/158bb0ae4f97386b4aa7cd980f0ae502eedc5e", + ".git/objects/ea/1d9b8fe78b7f8bb4706246f97bc936f993cccd", + ".git/objects/ea/33f93a1a6618ec3305536eba6e89866924f63f", + ".git/objects/ea/3865825283979fb67ea7e8e21522bd9ecdad9a", + ".git/objects/ea/3e9e0530a908207e68997b3769f9fa34bd9a1f", + ".git/objects/ea/45f918e8ba0e98ef2802ec87e5df80f8d53c66", + ".git/objects/ea/4708ae8eeacfd5f15f9bfe261b441e9748edaa", + ".git/objects/ea/5261228a3aebf2f54dccb8ad9c670aafd9c725", + ".git/objects/ea/75570126f4a54a46102c2fbef67ed34185cf32", + ".git/objects/ea/800c9c7b1083da7302bb964afeafb1f15a1a73", + ".git/objects/ea/83a49cf520e20c25c609bc7a57f5b7fda7022f", + ".git/objects/ea/840b7a4e228381a95cf0cd4db4c919f2aeebbc", + ".git/objects/ea/854f9c7d5d3252ab25a95abd50b99f529b7007", + ".git/objects/ea/a049341443da1cd650c8f811e04dc5d4b68e7a", + ".git/objects/ea/a69430911d0a40cb173390d24f9c1730fa3c26", + ".git/objects/ea/a97155822d0ba2efd8598b02b8136c034e0ee7", + ".git/objects/ea/bee2446cbb428fd4520e4c8508f64e3f3df163", + ".git/objects/ea/c94ee142f8c5bbfe58976367a38a463370f1c1", + ".git/objects/ea/c97ec95d99eb9971a83ac4a7e56c04dd9dbc54", + ".git/objects/ea/cdd495a0e7fc967eea53f114d5460a1844ac5e", + ".git/objects/ea/ce37ceb94dcf022545e5a70c42340e3135f377", + ".git/objects/ea/d009b7ff85dc28298524703a53706cf42fc3da", + ".git/objects/ea/d972ec81b280abca6ed28b35bfc512771231dd", + ".git/objects/ea/dea9d1dfe7f0058fe1ad29d32377be74bf1c7c", + ".git/objects/ea/f4fd9d307ac3d24bb05eca84c499863a0193b8", + ".git/objects/eb/22d96971e982a65018cb6327a6d0151c257797", + ".git/objects/eb/2eb2b6039ec391ab53cb958ce7ac87bcfb5617", + ".git/objects/eb/3dae5aa0404b407d8ede7a7d0576416af03cbe", + ".git/objects/eb/42144e5a4cb8231b9306b73023060edabcf008", + ".git/objects/eb/422e9546d6ff4144511b8b8d96127da3585d9e", + ".git/objects/eb/578bc9fe1bfba0cdf09323c22b4696e47bf57f", + ".git/objects/eb/5a0e96b84760ae075a7aaea62dba6618a7e8fa", + ".git/objects/eb/7083436711a4857b6d5de654e58ad452600b9c", + ".git/objects/eb/720da55ddbedf1aff96e4089931c1e246d8954", + ".git/objects/eb/89b3bbc553528722cb819d12c094ab6f218583", + ".git/objects/eb/8bdb3eeb372c54ddbf103e5f0d4e72bbe7c8d3", + ".git/objects/eb/8c6e2ce3c21c94151b877670ba30f4f8af1ce7", + ".git/objects/eb/a15e64fe68a932b8ce5db20756809cf7eb8487", + ".git/objects/eb/ab8d329977d4153fa71329a92e71d321591eff", + ".git/objects/eb/b25675bbb381173bb51885b653438cc4cf7db1", + ".git/objects/eb/ddf95a899e5b34bd3e781f6cf6e6d8522569c0", + ".git/objects/eb/ebb48ba7900951ea9fcc37c8f2702081a16526", + ".git/objects/eb/f13a4401b34abdb18aa45f379b28844a77eb30", + ".git/objects/eb/f30c28251221ab12d161d4ed63fcad0f61afe2", + ".git/objects/eb/f6c0ca2c20e6dbc69e5277e789eafbafd2a177", + ".git/objects/ec/0522aacfef703a56be27efd1aa5a348882d4cf", + ".git/objects/ec/06870a3d8c018bdbba4bb8b9a01a58fc2b86c8", + ".git/objects/ec/1bdb496d366cc007bc3dbe854cf5df3617a0de", + ".git/objects/ec/1dbf5d1eb10fc3c08f2b54589a3b00438e1c79", + ".git/objects/ec/2aee0e78e1140e1f6fcd759e87b65005cae4c0", + ".git/objects/ec/2d25e96265b3eda5700ec3dcfaefa2288243d8", + ".git/objects/ec/3cbfa77eeb9cac271026db530a3e146b80ce62", + ".git/objects/ec/41ca314a6ee0778186827972fd5adfa00fa231", + ".git/objects/ec/459ee9c8e78db2a8c3028e29c07bece478c319", + ".git/objects/ec/5b2175eb2d6bc2bf38a529efb5ebcc9b5dbfa7", + ".git/objects/ec/6d02264c0f553942c213fbd8812698b5dc29b2", + ".git/objects/ec/78fe592e447776de5dd6f663a1592329de9303", + ".git/objects/ec/79fcf4e9bdb1f31b12778934f3b90eb3dcfe3c", + ".git/objects/ec/8869b19248e6490aa96c87701c6e719d00880e", + ".git/objects/ec/914e1cfc5465da49b94ee1a5b18dfff4427f17", + ".git/objects/ec/99765bf9e297879b5bd467fdf35d1bb28abc64", + ".git/objects/ec/9f60cde89cc32a65d85cebd32303905e1d3dd3", + ".git/objects/ec/a2ca4fb649a331f22d6d946c6eb664145d6b22", + ".git/objects/ec/a893d5c6bacf9203dc7272744f99703152c07e", + ".git/objects/ec/bcc09d7764527eef34aa8ad309d55a688b6824", + ".git/objects/ec/ca16622145b72f4959a108b0e53fd926d3e670", + ".git/objects/ec/ca828748a52cd940bb3912c72dabdd4cffd7d8", + ".git/objects/ec/d6164a9c7e91df2fdf789151ff06798daa8ce7", + ".git/objects/ec/e790a8fe1e2a998d7fd9b586cf02739a0e0883", + ".git/objects/ec/ed979c97385f6e3dae061d4bde809a693ae6c9", + ".git/objects/ec/f4bf04b3d2c59ff14d3c2268b94bb9544ea470", + ".git/objects/ec/fce729763196b60bafc76ec0884f0c831ca52d", + ".git/objects/ed/09cc746c2992e61ec9c10ae4a419b6b8f4cf37", + ".git/objects/ed/0b890dedff6c6c007df03db1b2de3433a93b3a", + ".git/objects/ed/23c57dc60bf04c9f1f0f3c2a46b5d407008290", + ".git/objects/ed/27a51bb73fba425d80a51b367ebfed060c60d1", + ".git/objects/ed/2ab2bffdf193f704062ae44e8080f177f0387b", + ".git/objects/ed/3e72a27c5500b91feec9e267b47b0329b53663", + ".git/objects/ed/4b190ab44d3803568e55b9cefe76cb6db8186d", + ".git/objects/ed/4bedb2926a5342b369218274cda22997ac862f", + ".git/objects/ed/5067c9c96fbccd3e0a107edf52f56815aa8600", + ".git/objects/ed/51cb2f3239d271e7bfdc1ef750fd9a755636c0", + ".git/objects/ed/54a79460a80a6a798f689446696eb1b525e418", + ".git/objects/ed/5ba011c995c647f5aa0656206609b271ba908e", + ".git/objects/ed/6e0f46f37eab96c485afdddf1f12153977e8cf", + ".git/objects/ed/809fa83ce3b5be8b6cebd5e8487a648e231aa8", + ".git/objects/ed/8f3531f68d6227d88720f40cccc39345dff9bc", + ".git/objects/ed/b77807be559d01539492d20e1fec20037656ec", + ".git/objects/ed/c6ddc72136c9ec12977e6b792508ebe5ed15dd", + ".git/objects/ed/d418c1d1cb89eecdfe5a40712998a1e6288cb5", + ".git/objects/ed/d927cdcf5662883fa457238c1a1f841c1a06db", + ".git/objects/ed/e9237ce3f96424c90d0e1b9547c7f38e6854a3", + ".git/objects/ed/f1fa4966ee8e4b5d133612ed2ebf8e16ef78c4", + ".git/objects/ed/ff90dd75ecb744e19553c49015dfbb33a5ef78", + ".git/objects/ee/013e94564f3bce0cf2c3fbf29807ae7d52a65a", + ".git/objects/ee/03e44029c403ae4337dfb6a08c28965a78e78e", + ".git/objects/ee/08535d12c44006890bd38c3e13d48056c2c2f8", + ".git/objects/ee/0f3bb1843904709e1a5c1001a77abf6df77b11", + ".git/objects/ee/1bef36a831530d638e644b11f5bfc4ecf15b05", + ".git/objects/ee/2c17d3a9b46e8a3e1b438be6f18f93813cac7f", + ".git/objects/ee/2f7b978aca5510a360b1c3c2afd7cb312fdfdf", + ".git/objects/ee/322ce1984ab9c6df0ce1a459dc7026e5bc597e", + ".git/objects/ee/344ed23b4d5cfa81f10c4f91bbbb59747ced35", + ".git/objects/ee/52d6bae1a216756466923f487f184a62001a43", + ".git/objects/ee/53cc3ec82a1a103e8c2d23f2529b8b3ab22ab4", + ".git/objects/ee/542f157591d81938bac8e7a0f79f7c99191f7a", + ".git/objects/ee/5aee4a069d45824741aab88f1924cd2285a436", + ".git/objects/ee/642a795771086bcd505916f34f96ccbd4e95d7", + ".git/objects/ee/700a965c1e93b83918261ef5b7d59486b0111b", + ".git/objects/ee/84f8cdf108669307eed2e6fb99f57be36b9f53", + ".git/objects/ee/894d6a7812957b50b0f76d4df3def5eaa4ddd3", + ".git/objects/ee/93f9b3b40999961d6700116b719ba7e4472400", + ".git/objects/ee/97702e35500f5a02c0a9148179c9c4c0ac17d4", + ".git/objects/ee/9a5648f46d0852e06e6545581b7b6eefd15b06", + ".git/objects/ee/b88ef29730f9389a65c756c8cbe2112edc53e7", + ".git/objects/ee/bacb56b9705c550ae81546cdf6fb201748e9e8", + ".git/objects/ee/c2d83232a6fedb7399f2e32238d46307d4c7f1", + ".git/objects/ee/d7764c72fc84221663a0b4c9b8b170c621946a", + ".git/objects/ee/d90bf07520729dc54912dc254666d71c9d28b6", + ".git/objects/ee/dbbb37d90e1074efb2e16e2c8ac97ac117a15e", + ".git/objects/ee/e0881ea2eaa4c5c1d18a479a8b7803d72ca8a4", + ".git/objects/ee/e978c3c9809dea4ba5a413369e03d5ccdd1164", + ".git/objects/ee/fc32d18d4580d3daf930843fb5062a0069dc6a", + ".git/objects/ef/0036fa183578278e6b016b7fcbe1471e651235", + ".git/objects/ef/08d932ad436ca1de7a3bacfbdce922a4ecd9c2", + ".git/objects/ef/0ca410762afe3654e69039003ff120e058a8cc", + ".git/objects/ef/11d3371303a8551157407f1c6ca532960318eb", + ".git/objects/ef/1fd2d7b7e4a3c3d2ac8c77b941f342a2b2ad05", + ".git/objects/ef/21dafd5290498e6a1f085a1b97db02b81d1ffd", + ".git/objects/ef/2b900f28bc29b6960cf3261659396b345d70a2", + ".git/objects/ef/2b909a8cd1341e0120b3dc902aa7376edf1b9e", + ".git/objects/ef/2c087652b2f52ec69530deed745ac535e2d414", + ".git/objects/ef/373f10c8e4278dd655362ecaa97ce2d96c6e67", + ".git/objects/ef/490c763d1f91f85ad9c41adfecc585ec02f416", + ".git/objects/ef/4b9146a5f81bddfd0d5dd6cfd8057ded8afb58", + ".git/objects/ef/70939c42fb4ec6c97483663d3427685931b2f4", + ".git/objects/ef/7ced4a1e3c699bf9e7a079f6a69bafc39b0e2b", + ".git/objects/ef/804049edf6e6cb6f074823590e306c1ce0d837", + ".git/objects/ef/89f7d7e81c3ee5706262c43a62a0baef4aedfc", + ".git/objects/ef/96939f47cf2887d6d50d5ef46f618a219a70e1", + ".git/objects/ef/9b15353a0866cf38f4f33fb180cd19ba6ff2bd", + ".git/objects/ef/b4175fb30d24558718f2913232e8d66326c908", + ".git/objects/ef/bed8b4526362d9b4eb4b149a081e8ab0d590d4", + ".git/objects/ef/def9ea6d073f26622ffd2528cc964aaeaac1ba", + ".git/objects/ef/e83d67356f2c59df114092a998dc0c5779b0b2", + ".git/objects/f0/0011a8325fc59eb02e9acffb4f01b6bffba27e", + ".git/objects/f0/0c1cb11b496d00e92a48fecd42f364548793fe", + ".git/objects/f0/0f404d253005b5dcc7341087219a3a66c5a3f7", + ".git/objects/f0/1e32ccedd54805f8d4edd5af6ab64137b3a930", + ".git/objects/f0/276a0515541aed622162eafd275de5c28899eb", + ".git/objects/f0/292234f4606df65714d3b368d1f95926db78d4", + ".git/objects/f0/3043d2e32f3be2b86e6cc3bdb4a29205a2ab15", + ".git/objects/f0/34c2ff133fe79b649f6adf99eb4670ffa54089", + ".git/objects/f0/3891c636026584eb95b7bfe0d796e10a0f8d17", + ".git/objects/f0/42c072d9674894736cd3eb2ccffa77b4c7f3f3", + ".git/objects/f0/6c7f6227ef8589ff16089698cde12ceaafd8b7", + ".git/objects/f0/79b3e2f2c45085421fc11292de1529cc5a7d62", + ".git/objects/f0/7fb671b0908a331dd918cc9d19acc289e74823", + ".git/objects/f0/873ec11b28cccfaa5c7b8aa8fe88c3f72d2396", + ".git/objects/f0/8d27987b5153e411e73b77cb570ff5415ef2e0", + ".git/objects/f0/9ad85ace283746e27171650a11fbc345e81a9d", + ".git/objects/f0/ba9fd4ae9158725ca55f8d2b9aff1e996dff87", + ".git/objects/f0/bf7601be7028da76edb26af5426ab713a1108e", + ".git/objects/f0/c3f80b7fe52e7b66cf9e0ad2d149a8f19e8916", + ".git/objects/f0/c8b8756a6b5b3e9c6c01609de5541a7ccda0c0", + ".git/objects/f0/e4020ba89e84f7ab90b063d9ab229d06d8aaf8", + ".git/objects/f0/f1ca6ba313190d825fae061f6fedc483cf38e3", + ".git/objects/f0/f52828be1b0d783e3af8d2af67d5f3377f5cd8", + ".git/objects/f0/f9fbc56b7d5a7a750ad85d099dc15046faaf33", + ".git/objects/f1/0940afe17b0fbf6033a8397ab9e090713d20f4", + ".git/objects/f1/0a169581c987e759f906550c7d4c4aff3abc0c", + ".git/objects/f1/13506a057a779cace4fcaace2c2d5070785d56", + ".git/objects/f1/2b8c6e5f1cdcb5d3aa04dea59ae8277d11936a", + ".git/objects/f1/3e23f6a1ebab0aa1a4dc10311e3d3cf1443e67", + ".git/objects/f1/4ff2c672ce39db370cc0ee53ad7ed600701fb6", + ".git/objects/f1/5a5c86eb194f44441c0b095a7728bf23a7d3b3", + ".git/objects/f1/619f342ca0e845272dc875c7473a889e7f658e", + ".git/objects/f1/6440eb4586072d1d58ad985c28af3b58338fd7", + ".git/objects/f1/6cff43fd0fe2cbca3070933d951fa477768b2e", + ".git/objects/f1/7e2e25cd136d2c66d9704e1aa3e3007d68df2f", + ".git/objects/f1/7ef99592b49d2ca8b17f6b64caf44a67be5b03", + ".git/objects/f1/852b00d41d0ca0b1c08625415833629088dbc9", + ".git/objects/f1/8895e99bc3605dfde2219d84317c2005a13aad", + ".git/objects/f1/8db2d9f1c1757b0dc4a7976a7eab0bf4fad240", + ".git/objects/f1/911d79965cd0078316d56500ec7553f8ee46da", + ".git/objects/f1/96dafd3060c83be67a800e10b6b898196efdcb", + ".git/objects/f1/98f456b47c6b8876875bf86fdae2a3c235fcec", + ".git/objects/f1/a094834f091ee76b167c4b24afeffa4eacb45e", + ".git/objects/f1/bdbebee5286c0cbe1c2bdd75ec0414b8829410", + ".git/objects/f1/ebfe3a60d30f1331d240ae4c8514cf749c4797", + ".git/objects/f2/08af9ada21c314c524021974b2214994011f00", + ".git/objects/f2/23593611f7c145e6f8ac65a2a916d77f2a1573", + ".git/objects/f2/243879b58527c982d8a76cbfc3baaf4a45a66d", + ".git/objects/f2/34e2f6c6b6f8d782f9d1766aa31e3e78e0944f", + ".git/objects/f2/40b32d9c75104a12e02704a35b86c8c4cd2a7c", + ".git/objects/f2/461aef5f2f39268bff89f27b2f607d8a7d52ee", + ".git/objects/f2/53816872931a1153c51d8b545e8a0ad25a806f", + ".git/objects/f2/54fe3e92d1e69da4df8dab4e3f435d76ccfb2c", + ".git/objects/f2/55864ee5046a77979556a3ac0e9fb24774693a", + ".git/objects/f2/55d80c3f7a4e6c9563aca5e4521794f94025c5", + ".git/objects/f2/5a273bfe3e59576ee7c767f114adc9c371a673", + ".git/objects/f2/62cc6c7abeb77b3f7b7b79a4564290d2fde559", + ".git/objects/f2/63430b4626e55e7ca26f585f6ae6a35363e114", + ".git/objects/f2/651f77e09878315986525b2120860bc9694516", + ".git/objects/f2/6558fac759564e359b6c0ce163041fc9428399", + ".git/objects/f2/6e7d3fe6b8fada1b16895727f5abaa6afa0013", + ".git/objects/f2/71276c15b867033a885b54abe41acbb20f3a97", + ".git/objects/f2/780a43ea22a922da809027d78f3883bfa3fd26", + ".git/objects/f2/7b90b99c9cdbc5cf2db1f6e0228421fedde073", + ".git/objects/f2/86a29db2da210b358831e16e4fe2284348a45c", + ".git/objects/f2/8f6b64964717de620d440a41a699237a562243", + ".git/objects/f2/90bac639936a8f0465ed713cf286486b8c1e10", + ".git/objects/f2/b3780605af58a2987646bc81329d381a35c780", + ".git/objects/f2/b3c618dd767549b14026ac4e5c2db022809f96", + ".git/objects/f2/b55e5d184033ecfb8e55e8a3fa5efed75d747b", + ".git/objects/f2/badde8a1297be112049d01d387f1bc125aa325", + ".git/objects/f2/ca97af56221b4443d778976a7e9f3d8044673c", + ".git/objects/f2/cc74608ac8d7da73d79ca8b093cc6eaf9ca719", + ".git/objects/f2/e3ba253eae7d022067fa7244cb0eed37d20194", + ".git/objects/f2/e7bd79b056ccee0400607cf78cc289bc330ce4", + ".git/objects/f2/ef55f59457ee52886e04cb6d9ee1a0c0541603", + ".git/objects/f2/fb77f7809806d3e4798f4d143c40c842a5c552", + ".git/objects/f3/085d130aabb2d3b4d20f6f7c59e82acce74561", + ".git/objects/f3/088fffb2e6201813c5b5b1ca9c780df4ec17fc", + ".git/objects/f3/0b9473850aee161af8524a8c2ebbe73b34d27f", + ".git/objects/f3/170192a2a0805682a891e6a093fbf1987cdd36", + ".git/objects/f3/188a0428d673a3d483649078b9ab5c3ccc45a8", + ".git/objects/f3/1c89109e1f96ffe8753b8d3c1f2321ce8cead8", + ".git/objects/f3/1e48c26079941a5b766ab3c63c199d8591fedb", + ".git/objects/f3/2809b5556234745bbd64345001a4cd0754674f", + ".git/objects/f3/2e87b16e61fb8aee72a69f9b3628470cf888bb", + ".git/objects/f3/32aab5c20f9c7c9a7eceed6b6b47f127200b9d", + ".git/objects/f3/34746feccdb22f4a8f1897fa00a64389f62865", + ".git/objects/f3/54d43f71b00cd3b513f58e40cb989bea0bb044", + ".git/objects/f3/583647443b34ea31760be0bcaa67cea5ee72c6", + ".git/objects/f3/6496a4541ea26312f23bd0e7d4ef57cfe2051d", + ".git/objects/f3/65eb1cf05541408d61974cb8d2deb8f2e746f4", + ".git/objects/f3/66f27f6c7f765315f51a04e08fb66093779a09", + ".git/objects/f3/6b709f4772877f0d40c6710f3866ecc0b2a541", + ".git/objects/f3/6da20149fa6bd1b6342930496317487ac48a7c", + ".git/objects/f3/74fb292610818533dbf67d08a63227242cd765", + ".git/objects/f3/78a28db04584423d18a3782a152e8aa5e31266", + ".git/objects/f3/857bd6d2b7c02246e705c50ef71bccfb34c464", + ".git/objects/f3/a5f4253d30fbd82457936b3d0d95e79516196c", + ".git/objects/f3/a5fe25b2b8d738b07a9f695724923a16457d50", + ".git/objects/f3/aee953ed4498e7ea9a2505b8ad7ec6b062bcbc", + ".git/objects/f3/b238fa49711785809b4d5c04ae4602c61b415e", + ".git/objects/f3/b6fd9b7036da8a42a11f7579e4fe3ec90ebb45", + ".git/objects/f3/b73e08c204482864acedf3bcde878d3ba00dd5", + ".git/objects/f3/c50f8ccdd7f5b9540b69f742dd343a9eef47eb", + ".git/objects/f3/cca35c462a617d1fc811d0a252c929a1fb4ad0", + ".git/objects/f3/e758bb3aa9ffca8522123e88d00600f7fd4b19", + ".git/objects/f3/fdd8fbbb632c2fb860b4a6e213cd564ce0e795", + ".git/objects/f4/19ada40341ae32943c5754ca23d4d5f05fdc1b", + ".git/objects/f4/230c51242b85a6a710a753d8978d9c904ad6c0", + ".git/objects/f4/24794c839938865aead6315359748cd8dff19a", + ".git/objects/f4/24c7a2ce3958f8dca12646b43549d99e3dbb7e", + ".git/objects/f4/291929b41519d7c232ccfbc044e73a8d02e004", + ".git/objects/f4/2b0b4be90df197693145efd1b64e6fe7c243c0", + ".git/objects/f4/2e442edd7db72f7661bbc7b961cea9003a0774", + ".git/objects/f4/381d947fc87e8d68780b4ca88c7ef817ba9f04", + ".git/objects/f4/3f14f29a8ed1bf85e4321180a61fd83dffce53", + ".git/objects/f4/57ccfbf8e56cec9918a55ab00fbc252072027f", + ".git/objects/f4/6fd5c8999d49e1c7ea818ecfbf88e24852e242", + ".git/objects/f4/81a13e167c0e5e7fe57ec98dd40e8dc1c3ba0b", + ".git/objects/f4/98f37029b6b8882a7560333df84af3f8753bf0", + ".git/objects/f4/a9f5e044fba9e0bd8c8953dd59dd206eefc125", + ".git/objects/f4/ae335f47c20f8ebb83f879784a22eedd9aafe4", + ".git/objects/f4/b1730d633450ac0f58324a21d62db8916ecf20", + ".git/objects/f4/b479800d303023d20ce5364b58d92087572d63", + ".git/objects/f4/b784dc2ee9654c0ad97e0eaa9fad82aa49ac66", + ".git/objects/f4/bdbb7f6a264dc6738d07195165e452449c9b7b", + ".git/objects/f4/c8d51ea022c55bc5f8ef7f03ebe9228a1d114f", + ".git/objects/f4/dcb3a1f392f1c9876984afd88dd459cae42dd9", + ".git/objects/f4/e12e66fc1218314e6c4a1feedeb997497cbcc7", + ".git/objects/f5/12b7e0aa4809a842a19c125354809d560a90bc", + ".git/objects/f5/281bd6bf946e36eb13bd5abde2a901b98c2884", + ".git/objects/f5/2a97424b9e40e183ca0b6fef392fa572811edb", + ".git/objects/f5/2f806100b4946646ca720855efaee7bcbf496a", + ".git/objects/f5/32e549a82ac88b94d54a882a8f4f3c1531e77c", + ".git/objects/f5/413ea8a7a4a38075666640268fb5bf166c9e1a", + ".git/objects/f5/425038677d93362cf7666e3268006d19c2598d", + ".git/objects/f5/4366aaef4b6d36e267c128a6f46eee22b27037", + ".git/objects/f5/48fab5ae52db4c87716cf64ed8bd2871088c24", + ".git/objects/f5/4a21d0205fc29d37b56829a8aa5035d516657f", + ".git/objects/f5/53299e3fecbb967383339e70921cdb29c41404", + ".git/objects/f5/5f335451f3961dc59d9cfeb4af6f5269776175", + ".git/objects/f5/61c798539ac7e67fcd335dd9605203397ce595", + ".git/objects/f5/9adb81ed04e0163b050b96ed48361215006dcc", + ".git/objects/f5/a345eaf6e28d78009fb77eb10e871c6379f8f7", + ".git/objects/f5/b13e92766ae1f4933f07387012b1b8724b5e0b", + ".git/objects/f5/b23c998fbd6bad02ce1db3256417004c07c2d3", + ".git/objects/f5/bbebfa3da5416dbcde7902fc98791ecfce0ff1", + ".git/objects/f5/bd0b5c9d00e3c35fb8a268ce1cae70cd0fcc4c", + ".git/objects/f5/bf0bbd9c427b87a3c2e0f3cbf8880bb2cbba22", + ".git/objects/f5/ca7ef7bea5460353f506da4b87a1e74bd37dfd", + ".git/objects/f5/ca948213273ad9d88c9e22022d735ccd78e554", + ".git/objects/f5/dcf13a50e40411c6eaa5ed58153bbca0e1aef4", + ".git/objects/f5/e6554106903a5196e1c16ee365855ee8dcb9ca", + ".git/objects/f6/11fc02443f61d3fc9712cacad9328203caf8dc", + ".git/objects/f6/133b6444426f4f4c27e93ae22fcc2aae4dbbb1", + ".git/objects/f6/1a00ae7d1a825bb175d3f4fa0b37256f509145", + ".git/objects/f6/1f602854771fe3c26fbd45cf6a35a096e41b1e", + ".git/objects/f6/265b721eb4f24daf541abbfd8626657ccd8579", + ".git/objects/f6/278178ee445d24d8d0e74ad04ec9c1703079b8", + ".git/objects/f6/3081c439228e3f0325189e8cfb74e383e83848", + ".git/objects/f6/3df7a0b747df78b10fca41ef0c0e4b59591f20", + ".git/objects/f6/454aeb1f9f19d4cbf461d5fac297a86a9a16a4", + ".git/objects/f6/479cd6090bfa96a229364ff8000d36d864f239", + ".git/objects/f6/4871b3ff8887858be33d1a2e9b6c8d10715f0a", + ".git/objects/f6/5375de56ec57d307bc3dfe585d9f3b26c641ce", + ".git/objects/f6/574e56a0e92a5d23ebadae39450a9e8e8b5599", + ".git/objects/f6/75d97921d9a9aeab14a8288f672c4c95eec9eb", + ".git/objects/f6/983b849421ac65b4e5b4bccca9eb0aaa1667bc", + ".git/objects/f6/a54afdf7bcb5f55417196e94e8a8fd47eb46c9", + ".git/objects/f6/b5edac2d060332e2c375ab3eeb39de77566981", + ".git/objects/f6/c8b01143a36e62cc5b069dadb4014d6c45c788", + ".git/objects/f6/c8fcc3daf663acb810bacd0029e2a2df7d7135", + ".git/objects/f6/dc37988346e4b36479105cc1a20f75488f187c", + ".git/objects/f6/df06920b3dd283cfa11da5146d8fd4e65de3bc", + ".git/objects/f6/dfa833a87015eceb6e47e22b92b023c371df92", + ".git/objects/f6/e253d2421e6f726f143f9dc6d8a35434f6b13d", + ".git/objects/f6/ef30cd3faaa8b075a8f354a51d3093291e1451", + ".git/objects/f7/07e24f51c55ee9d71853df399a5a1dc410615b", + ".git/objects/f7/24af1ce24e66caf31ced56b340e756b164f31b", + ".git/objects/f7/31bcc1395792bf57baa29ee7bc5359380151ad", + ".git/objects/f7/34bc4a816a7d698f9ae55387794024ae7ee5da", + ".git/objects/f7/3e4bbbb6b1644fd609fc39c738d1b9eda9032d", + ".git/objects/f7/400330d41eb58c2a8689e4217640d23a209d57", + ".git/objects/f7/4143e1f9c57d769ab0e26a5c3abb3666ee0eca", + ".git/objects/f7/438ea045f759c44970460eca0b916d05b83c17", + ".git/objects/f7/5040b01c41763d0879d1e32f78a358dd0a85fb", + ".git/objects/f7/5e58bc7fe4a911c8c8f8f2ff3b5128ff1ba687", + ".git/objects/f7/6024489dbd64b86eac0df01d3c846f723de266", + ".git/objects/f7/6d6ea8ab922579720e8ed1d48cc7b15da88c60", + ".git/objects/f7/6e3a68fa79b4827e4a109e4c745bb226d7c9de", + ".git/objects/f7/7179e44419db49c9f88ea0c17c9f666001cdd9", + ".git/objects/f7/74a78f2918b03f0714337c970af57c31955938", + ".git/objects/f7/77035451445d5271a7104bc0ce13099a834d8e", + ".git/objects/f7/821810068155049cd157defe8cd6a102527a39", + ".git/objects/f7/a424aff96feb256b9c0cbfee68dae598f50f85", + ".git/objects/f7/a6ae01fb91c60ba1e8d05dedf211b235fa4220", + ".git/objects/f7/af4405c7ab42b118f795bb65203c6a40ec9e7f", + ".git/objects/f7/af881b2997c3c89fd700385e6fc5f9400d6130", + ".git/objects/f7/bf56d3d21e0f5f4f7bb41b75f3f1f2c6cfa0a2", + ".git/objects/f7/cca0059bfbf0705a955f80f74db9fa6544d4ec", + ".git/objects/f7/ce061248792941e5594811c2f9444049e1e264", + ".git/objects/f7/e22f29a5de44277dd155cadef71da43d9a2278", + ".git/objects/f7/e9bf6cc8500ac579d86755eba357fcaf90b514", + ".git/objects/f7/fce9e83b0ed14946f299b0b6b975a1e58c4bea", + ".git/objects/f8/09bbaf8fbaffe62e88dcee709fe7c96f1a3520", + ".git/objects/f8/16a119f17a90fd8b0372acf660e91be0120c8f", + ".git/objects/f8/1ca008bc0f6b75f97ff39398a1783d23f3cd96", + ".git/objects/f8/1eeda0020342469ed7b808d8502d40dc1358f1", + ".git/objects/f8/41caedf350ded04637878b8cb51498b94d7ed9", + ".git/objects/f8/611cb8685716da0ef7b035934716496c93adbf", + ".git/objects/f8/6260ec31a17034d0a8eee3e3da688ccd1533b7", + ".git/objects/f8/657449bdd150e3c17d011fc378c66652d3f299", + ".git/objects/f8/6577caf7e6d5ba59af90bba2fa7d641813bef8", + ".git/objects/f8/8101e8ef3d7707b1baa3bcc9b36467b11413bc", + ".git/objects/f8/b6259c0e8823708ad73020ba45109b1b4643e9", + ".git/objects/f8/c76e37492508abc98309cf83b0a7301f4dcc39", + ".git/objects/f8/d7d3ef65a1fba5bdee6dcfc7ec7ca05dd37dde", + ".git/objects/f8/d98fc855e4cefc65ba697c4a1e19437ab6a558", + ".git/objects/f8/e0b14c5a1e389b1dc4fe2367db658095058e88", + ".git/objects/f8/e9c7122f390d1c35c2d237259a9ebe90b3731e", + ".git/objects/f8/ec83d4bf515b9aeebe71d26694ecd911544990", + ".git/objects/f8/f1a1c81a9581c57653a6bc81b962dafb2317d1", + ".git/objects/f8/f50f27b565e80af02a1bf08ee84a6f04fd1720", + ".git/objects/f9/1ee401db59cc08580a957c8076b00a0973d7a9", + ".git/objects/f9/2b7ee4d40b32846126d3012e99667ff4f18206", + ".git/objects/f9/318877b4e786d0a0ffac7a4b10ef5138fde917", + ".git/objects/f9/36d350100b7ec3bbaec1e0fceeda6998f02adc", + ".git/objects/f9/3cccdebaef5c96901169735aa337f7377118c1", + ".git/objects/f9/4a6610a092fcc52e430cf1b89ca4f01c67ead7", + ".git/objects/f9/4cf6728fe1d624d3f1c7042d03afab606e2fe2", + ".git/objects/f9/50cfbd443437e0aa60a3e2082401574ad32f68", + ".git/objects/f9/5fece1a3dd27dac34babad5b486939792e6b7b", + ".git/objects/f9/63fe62a9d39d84d6571adcc8a5136eb5e5a7b9", + ".git/objects/f9/657fb6896848e633cb2ffa24e9a5c1b8a92a3b", + ".git/objects/f9/7153049c3c3b973c054a4dc303ba0a3db22043", + ".git/objects/f9/85675bda8da431514ca755d35c737244da15fb", + ".git/objects/f9/876c8a41915a2516a79070ee650ab530891051", + ".git/objects/f9/8d823cb5f9e4c75b2a1bee0e7a4a48ed42fc19", + ".git/objects/f9/9a5ddff0b108864b1b7ba924ce09fae561f527", + ".git/objects/f9/c03a51fe731476cfd39b528656b7f9d7648789", + ".git/objects/f9/c52ec64766bab5f1253363fe34067fb03af743", + ".git/objects/f9/cb98eab2e2e53c1ffb25e5dff646db81c7cb5a", + ".git/objects/f9/e5ca9afba215084c9f2880c3694acda93a8972", + ".git/objects/f9/f2ea8fde7f46e0c855d5dd133ec4e16ec965b5", + ".git/objects/f9/ff91990209a1223a9b140c363531eeacd7966b", + ".git/objects/fa/1d3a31df411fc016d82cf95ace668a7016df8e", + ".git/objects/fa/25c5c9246f8616354d01a8abf6702a6f5891d8", + ".git/objects/fa/35fd3841620b324f8e39072222de2b9f07de71", + ".git/objects/fa/38ea2d5352794889bc29ec08f37713058f661e", + ".git/objects/fa/3f3c44e0caab4953d324b2f863f4f04333cdef", + ".git/objects/fa/436e2e9fa3c664d79174bff67137844d428738", + ".git/objects/fa/5b8071b223c02bd2732f627f8a00089e8167e9", + ".git/objects/fa/71dd56369f0dde1f4f6382dc053b1806583fd8", + ".git/objects/fa/76f497e2e5881ef71c05073f52f4d414525b60", + ".git/objects/fa/8ab34221bcfdf6bc032e9e48c1e9102f355226", + ".git/objects/fa/8dfd6c378e69c5367e51a5483beec0ea50ebdd", + ".git/objects/fa/968bf8d9963abb8dce1a71e5963b75a76da69a", + ".git/objects/fa/972552abc365b52941f280bed8bfeb2fbd38b0", + ".git/objects/fa/9b90b0e8e4f9a604920c7809bbd133eef83a64", + ".git/objects/fa/ac32a7a9ce7f38546e81bb8e1d53209b48dd4f", + ".git/objects/fa/bedc149314761e9a9b59c6f0aa04ad42809362", + ".git/objects/fa/c1415cbf7aa01bd668155f4ec699c6cb75b749", + ".git/objects/fa/c268cc3a535b7e7488ad410df6d5c7bfaf9cde", + ".git/objects/fa/c7497a0e70a38ffed1772a544615b42571aa0d", + ".git/objects/fa/cda986c2d9a3d203722e8cc8dff745c6f110b1", + ".git/objects/fa/d7638d0cf808c7987ccec3b17e658655d0c404", + ".git/objects/fa/f068dbbdfd2dbed7d94a89fe8fe15b73b7f1c1", + ".git/objects/fb/02446950cc18b6fb7585429f69041a285c5640", + ".git/objects/fb/0c5faee30f0e170c54327b6e901cbfbc8e3b15", + ".git/objects/fb/3dc3c64d3cea9c7249c3d8e1ed010ea81e6979", + ".git/objects/fb/41b8fbfad932d826af929d8c4a674a205775d5", + ".git/objects/fb/49c631596c5615a963c3dcbadcc1cdd4ac70e6", + ".git/objects/fb/526e44ac3558de0e977c1022f95d9ffc59cfbd", + ".git/objects/fb/8a7ec48e6a0bf738b5859ae3d94a97aef1f32d", + ".git/objects/fb/8e1cc615eedbbba8075a5c592e0a64f6ac3a5f", + ".git/objects/fb/8e2949b07458b38861975b371e849014b07b94", + ".git/objects/fb/9887c39ec29609c0389d046f0448f308a4825f", + ".git/objects/fb/ba25d3ddc11794c48f26fb17d38f13fe9575f0", + ".git/objects/fb/c9530078667c6c4f073a5759bd2593871cb2fa", + ".git/objects/fb/ecd26dc450e459641032d8c1e5cdfd3c770aa5", + ".git/objects/fb/fbc18a68b7a7002be255b34e1ba787039208b8", + ".git/objects/fc/0bc390177a08b11fb67a12bab44b36865a6c2d", + ".git/objects/fc/1a8ce86a98642cc913f2483c7827ffa90e9dc6", + ".git/objects/fc/1c3cdbb931813f774312f538c52f9e36833fde", + ".git/objects/fc/241fa037e862d1a755a59c6551f5490216f702", + ".git/objects/fc/27f34bea943d5331dff2e0cd54ee0d6fdd8ae8", + ".git/objects/fc/2fe90392e989da796358dbe68a5b73764b2d6f", + ".git/objects/fc/4ac7cccec440e41d493839613b5069a0b294b9", + ".git/objects/fc/4f8b704a28ff021373bd9c628dbf29e33a1e79", + ".git/objects/fc/51779e83fe71073658b92ff531321941b45fa2", + ".git/objects/fc/51c13233c49528e914a75e1493164678a7d5ca", + ".git/objects/fc/610dc44fc32b3f10afb2f9549dcd802fc732c3", + ".git/objects/fc/66d6378df04bde130981764f41236dccb396be", + ".git/objects/fc/68a3d1249dfdccc84e94bcdecaa56a1d80f063", + ".git/objects/fc/78023eaefef2fad2e561e321b1d45cfba495c0", + ".git/objects/fc/7f3c9132d43cb57b190a24e22a6c41a00371e8", + ".git/objects/fc/848d149bc807aaf1184c7190ecf846871a5805", + ".git/objects/fc/84dae93df2b81ba1e713fd6af05d2c6355c514", + ".git/objects/fc/87fae6d8e1e4f50ba87268f2b0498b3c02d838", + ".git/objects/fc/9d33dae80017d5eb3a74405cd957aa633795d8", + ".git/objects/fc/acf0e54db754aff225b6a52e4aee19150c11e5", + ".git/objects/fc/b831ac91bcf240ac5ac85c28ac15ee7aa6398c", + ".git/objects/fc/c19786ed93e8cd30cff521f805b79441e7b819", + ".git/objects/fc/dd4b09c34f04454aaf0f3cfa62d7efd1074698", + ".git/objects/fc/fec077127e7a10a088d5ba8e7b31ec4d2449bb", + ".git/objects/fd/032390bc412389e375a9f5f0474c8676523ea4", + ".git/objects/fd/0c141b8c603340acf62b382479ab9a005f8893", + ".git/objects/fd/0e4f03d83769daca9c7b3252ffcb14bce29960", + ".git/objects/fd/1c345eb7e2693f4fff7d3416f319f76c462643", + ".git/objects/fd/20f808b61bc679f2194600fb5426c61372656e", + ".git/objects/fd/28fc25415757184e5f9cd1a4d1a4af2ee1ff4d", + ".git/objects/fd/35b7aaf0776a2672f860e6dfad121663065fc1", + ".git/objects/fd/52cb8cd1623c815ef2f4062fedb0dc0b3d4b1a", + ".git/objects/fd/580f390e0aec47dda1692ee8733f80478085f8", + ".git/objects/fd/5fa763724715291b5170e649c861ce67cb1e2c", + ".git/objects/fd/7280da9b9599b88344a218a71498be79991415", + ".git/objects/fd/8a6c1e1060057c03f27374b19dfb572a3933f4", + ".git/objects/fd/8ebdbcb5b0c2777039d7b9992ded161305187a", + ".git/objects/fd/a18f95e3ac8e34555a6b004c1ea5f73eff27eb", + ".git/objects/fd/ad36cb9a5b9de3090bb582b82767c0a53c4a7b", + ".git/objects/fd/d36be68d21df4634ff68ad516b125200f88ee2", + ".git/objects/fd/d990c95adf75fb6224889f3407985661c87660", + ".git/objects/fd/e7610226b0654b2383c7f5038661a29a498396", + ".git/objects/fd/f9d05403065ad3a8b4d69ed2bba8302bc11b7a", + ".git/objects/fe/1ae1a8415cfd5318b8db4d4f853a5ce2e4b499", + ".git/objects/fe/23e76bb95d2ebc7fd03d472d4bfb817dd7d26f", + ".git/objects/fe/2b0a303d99334228df7a2dc4b6e81cf966695c", + ".git/objects/fe/31d065d03c702d71aff3133285a59b2bda64ff", + ".git/objects/fe/32fd21d8131ad599127efd5a182701144c274d", + ".git/objects/fe/334dad0f6da681ff0a7ba95bf9f574a5e41fd3", + ".git/objects/fe/39218baf826ca38ad89070b8f4f759feddf35e", + ".git/objects/fe/414da20e3de08ba232e365d5b51c2e24a54c51", + ".git/objects/fe/4796fe84828b9f80e4dd959b74d29aa6c462c5", + ".git/objects/fe/53d87aa9258c34ee226a42a150f3d484886f27", + ".git/objects/fe/65a1ff388380f360134da0b1591467f05a1356", + ".git/objects/fe/722373646b711c63c3bf4a00e9fb9ebe48acd7", + ".git/objects/fe/743e5d085665fc91bbac07366fa32c717f5666", + ".git/objects/fe/7943aa0f936495b68590009abd855fb1348ac2", + ".git/objects/fe/82ef9801df372430dce0ee6cba300dbc643347", + ".git/objects/fe/83747d0eb5f939fc19ab83eb6b8b2e89cc7e6c", + ".git/objects/fe/9098d36ea166e6e2e4b518a987b245ef6909ed", + ".git/objects/fe/9b454c376756df899a9cd00d63a39e8c30bd04", + ".git/objects/fe/9cd535db21bee9ce81e370da9aee57b4839aa2", + ".git/objects/fe/b2f918ece9e0aebd5d8563550de9e076dea4cf", + ".git/objects/fe/bc786ca0353fc1b6f9bce2fa5a89138942459d", + ".git/objects/fe/c1608dd4a8ce9bb63513a509811161d62efb22", + ".git/objects/fe/c1a1fba61a6c6db34a0eba5640064e7ade2c5b", + ".git/objects/fe/ca8877efea10526952ccc5e22eca8aee27871a", + ".git/objects/fe/e3abb71c518e6853406014b39cb4f2b89d9fe1", + ".git/objects/fe/e5a255cecef5ea8e9463a8d65c083d015f323a", + ".git/objects/fe/fead0a0d54dedea1a075b7a3b546c346d9fde5", + ".git/objects/ff/02fec7a80117f867562f521fce1bd9fb737ef6", + ".git/objects/ff/0f2b74e71478957541aeb526d82be4823f1fe6", + ".git/objects/ff/1453e82ac69fda0b699c8073bad2a2a7a5bd52", + ".git/objects/ff/19b09d373ce4ed2a0922398e1c2b18aaa26a70", + ".git/objects/ff/1aa1d816be16aea48df39aae28a149fb3c8a1a", + ".git/objects/ff/2a30c1f9062ad84bd9c2d5f4a3850edc8de61b", + ".git/objects/ff/3996673e9a8f78f0e1d300e6747da8152d19a9", + ".git/objects/ff/3d9e3b658670ba9f54e77d265134ef93fe6c33", + ".git/objects/ff/3f61925bf5d297fb45cd82bc738a1f305c1aba", + ".git/objects/ff/413223392b80592e96386f033c430024bf854e", + ".git/objects/ff/4760863ee4a1bc5aa074bea0f95ffff2f2a7ca", + ".git/objects/ff/47987a671a67c561db5c21d46fc36262b799be", + ".git/objects/ff/49a0363fef32213188433658c1b67adc0708ae", + ".git/objects/ff/4c5f38bac9a58817fe4a699964ea103330a3ea", + ".git/objects/ff/7dcd9a454bee035b13f96c7b6a0909b0a2a78a", + ".git/objects/ff/9505c4541722732a25a1fa2bc82e77a31fd7e3", + ".git/objects/ff/a6119cdc1711b4c36cd177ec853192b5dbb7d1", + ".git/objects/ff/ab9f5bfcc155c33c3f288fd08939db9e649232", + ".git/objects/ff/b434154afa80b457a51c0c4a38f01a220a1182", + ".git/objects/ff/cc06256e31ecc37b58a2e0fb0ac9e7ae34eee6", + ".git/objects/ff/e23d5a14cb0949bf4aea8f879ac1eff0a1882a", + ".git/objects/ff/e34bb065c9965aea99907327c37edc4756fefa", + ".git/objects/ff/e5689b1ecb6bcdd065bf10f8159370fe99e1c1", + ".git/objects/ff/eb8bb604d6888efd98e0304a35527f47c648ca", + ".git/refs/heads/docs/github-public-data-plane-policy", + ".git/refs/heads/main", + ".git/refs/remotes/origin/docs/github-public-data-plane-policy", + ".git/refs/remotes/origin/main" + ], + "source_root": "/home/sev/ION - Production/ION_CODEX", + "total_bytes": 49086671, + "version_line": "V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_GATE" +} diff --git a/ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json b/ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json new file mode 100644 index 00000000..3179f731 --- /dev/null +++ b/ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json @@ -0,0 +1,33937 @@ +{ + "file_count": 5583, + "files": { + ".cursor/agents/ion-context-cartographer.md": { + "path": ".cursor/agents/ion-context-cartographer.md", + "sha256": "85d187298c8e356638c49f55863fafd2b236b22b691890cca18f01ffc3a8a36f", + "size": 558 + }, + ".cursor/agents/ion-mason.md": { + "path": ".cursor/agents/ion-mason.md", + "sha256": "7916ec8d4fe4a5948aff77786ca84088f6b853a5ac8f4fc93bd4d77cc9604c7a", + "size": 526 + }, + ".cursor/agents/ion-nemesis.md": { + "path": ".cursor/agents/ion-nemesis.md", + "sha256": "cb20466afffcd8e6b809a2580a985f7d8ad5c61f5185b26cd0267710cea0a144", + "size": 546 + }, + ".cursor/agents/ion-persona-interface.md": { + "path": ".cursor/agents/ion-persona-interface.md", + "sha256": "8d577d2aab241e58126469fd942e01c86decb14d2b9d4359b25ef92ba999c61d", + "size": 460 + }, + ".cursor/agents/ion-relay.md": { + "path": ".cursor/agents/ion-relay.md", + "sha256": "3c343b84cbb450c947873df28d0c058362ee5a5ed48fd952452a00ee04949109", + "size": 502 + }, + ".cursor/agents/ion-runtime-cartographer.md": { + "path": ".cursor/agents/ion-runtime-cartographer.md", + "sha256": "0f51827c97f3eed5bbca7c82361fd7deb320882c582d60729c1f6a38f6c0fb96", + "size": 565 + }, + ".cursor/agents/ion-scribe.md": { + "path": ".cursor/agents/ion-scribe.md", + "sha256": "e92509e8b485eea369bfedfb892e546f282f815395175a3fcc686b2d262eb2f8", + "size": 480 + }, + ".cursor/agents/ion-spawn-row-slot.md": { + "path": ".cursor/agents/ion-spawn-row-slot.md", + "sha256": "2376521840fce48e3affc99df18fe909d855aef618843aa5e613464ea683df92", + "size": 1799 + }, + ".cursor/agents/ion-steward.md": { + "path": ".cursor/agents/ion-steward.md", + "sha256": "1e19b99699f1bdf2bb18dcf30835acb6f497ea8c90382fe58ee2a0e7dec6ff26", + "size": 791 + }, + ".cursor/commands/ion-cockpit.md": { + "path": ".cursor/commands/ion-cockpit.md", + "sha256": "de4e2758e40a3b5ec37cc115852606c812bfb15af0777c4a0a26d31f1ac73920", + "size": 493 + }, + ".cursor/commands/ion-context-plan.md": { + "path": ".cursor/commands/ion-context-plan.md", + "sha256": "992a8c6e18be0b607aab7b7dc1d1bc2735519d816c74503e4debc28898b3d905", + "size": 518 + }, + ".cursor/commands/ion-continue.md": { + "path": ".cursor/commands/ion-continue.md", + "sha256": "3d62b42f0feb970d1e551d12273596a37153df0d560824a03a4731b4177dd33e", + "size": 1040 + }, + ".cursor/commands/ion-health.md": { + "path": ".cursor/commands/ion-health.md", + "sha256": "49eb299af33fd121905e0d524f2779eaacb2ef9c5c099e3fec1bf29c3edb8c9d", + "size": 343 + }, + ".cursor/commands/ion-mcp-status.md": { + "path": ".cursor/commands/ion-mcp-status.md", + "sha256": "df2c55680a224fb09b2627556490c14623829fce1098f5a3498ba586150f75ee", + "size": 360 + }, + ".cursor/commands/ion.md": { + "path": ".cursor/commands/ion.md", + "sha256": "492a6ea2a7f19ea850fbdf1eca8a0eec4599d0d1dc3f05efd50b23279207ebd2", + "size": 2717 + }, + ".cursor/hooks.json": { + "path": ".cursor/hooks.json", + "sha256": "d6efaa9edfe47a0d064dd1066a5745a07714cff3f71aaa8677283522070cf64c", + "size": 153 + }, + ".cursor/hooks/ion_carrier_session_start.py": { + "path": ".cursor/hooks/ion_carrier_session_start.py", + "sha256": "228bae8ad8e196845df56573e84d414d3002790132d19ec1978b92f1804faa60", + "size": 9302 + }, + ".cursor/hooks/ion_session_start_persona_mount.py": { + "path": ".cursor/hooks/ion_session_start_persona_mount.py", + "sha256": "43fb5842ab480b9240200b66fde157df53c3af80ecb7bdc1017c544a3f3ced9b", + "size": 8808 + }, + ".cursor/hooks/ion_session_start_persona_mount.sh": { + "path": ".cursor/hooks/ion_session_start_persona_mount.sh", + "sha256": "5515912ea4318b4d91aa8a00fb07fd2236afbbd5ec436e57fc1ec8dc4ab9f943", + "size": 184 + }, + ".cursor/hooks/ion_stamp_operator_gate.py": { + "path": ".cursor/hooks/ion_stamp_operator_gate.py", + "sha256": "177fa66f10fb5ccdcbd7bad5e5a4457485fc3d495094d4a0469251acf0e95136", + "size": 2865 + }, + ".cursor/mcp.json": { + "path": ".cursor/mcp.json", + "sha256": "409005ede18fbe07b197b142c27913ea08c44ecdecf447236f23f34308127426", + "size": 310 + }, + ".cursor/rules/ion-agent-context-dynamics.mdc": { + "path": ".cursor/rules/ion-agent-context-dynamics.mdc", + "sha256": "c5f779c9c85181c014b86bfd6dbbc2a72f8e2a487d3fb47bfe177ba90d9a11d7", + "size": 988 + }, + ".cursor/rules/ion-autopilot-command.mdc": { + "path": ".cursor/rules/ion-autopilot-command.mdc", + "sha256": "7d4d97d38d7dd033bc348d4945adca7d0fb7bcdc5ab2b4b1c8e553951f5ad047", + "size": 1684 + }, + ".cursor/rules/ion-canonical-workflow-unification.mdc": { + "path": ".cursor/rules/ion-canonical-workflow-unification.mdc", + "sha256": "d6b17574307749158fe52071be93c1c06f3b660885f766eda69c26b4ff0488c5", + "size": 2339 + }, + ".cursor/rules/ion-carrier-boot-packet.mdc": { + "path": ".cursor/rules/ion-carrier-boot-packet.mdc", + "sha256": "76114d7d7d614b43319146742018ac0c8de951f62fe58b7c24318e33a5c1a815", + "size": 1193 + }, + ".cursor/rules/ion-carrier-mount.mdc": { + "path": ".cursor/rules/ion-carrier-mount.mdc", + "sha256": "bc1f3f5c8dd47bdc3fc9f201c2618333549d4f8b681fc011d5834ddb7c8b7528", + "size": 3163 + }, + ".cursor/rules/ion-carrier-relay-mediation.mdc": { + "path": ".cursor/rules/ion-carrier-relay-mediation.mdc", + "sha256": "ea3fbbd5b8d57f956f0ccd61abf7d5d4afe9561952388e4c746788c4d3ef1e5f", + "size": 11995 + }, + ".cursor/rules/ion-carrier-runtime-foundation.mdc": { + "path": ".cursor/rules/ion-carrier-runtime-foundation.mdc", + "sha256": "2e3299cf6ca1480be2dbc4f695ab6c05032db54c1885e2a114e365d6c3dc8e91", + "size": 1716 + }, + ".cursor/rules/ion-carrier-task-return-intake.mdc": { + "path": ".cursor/rules/ion-carrier-task-return-intake.mdc", + "sha256": "0f6841dd2bed38e22669d568db4648b53735efbc396a98385ee10cf59a561c13", + "size": 785 + }, + ".cursor/rules/ion-context-authority-team.mdc": { + "path": ".cursor/rules/ion-context-authority-team.mdc", + "sha256": "dee4d3c58ce5b5c59c480b70f7151eba99196b13c5d7b328b693a72d5b0530f2", + "size": 1129 + }, + ".cursor/rules/ion-cursor-onboarding.mdc": { + "path": ".cursor/rules/ion-cursor-onboarding.mdc", + "sha256": "69776bec21cb1de4a51adac50953f0fe962c7ce1789085928f429402d6eb14a9", + "size": 2281 + }, + ".cursor/rules/ion-full-workflow-mount.mdc": { + "path": ".cursor/rules/ion-full-workflow-mount.mdc", + "sha256": "211022c1cfd448a160c04de53ad4bb97ea40c9f1d73d587a0a2580cc2f8945e4", + "size": 1607 + }, + ".cursor/rules/ion-mcp-control-bridge.mdc": { + "path": ".cursor/rules/ion-mcp-control-bridge.mdc", + "sha256": "0c63262518fb2f891921b790c8c0e2de13fb3c4a5cdceeeb27c7a11739e41cb8", + "size": 877 + }, + ".cursor/rules/ion-persona-user-facing.mdc": { + "path": ".cursor/rules/ion-persona-user-facing.mdc", + "sha256": "2626f8079aad72133804a87e19d87d11fdac52531a520d292c3de07e20238ec8", + "size": 1527 + }, + ".cursor/skills/ion-autopilot/SKILL.md": { + "path": ".cursor/skills/ion-autopilot/SKILL.md", + "sha256": "baf3ecbe9b2b527ce6e58b4cd981e5d42e9a032564c7580ec1d34332589dc5af", + "size": 2279 + }, + ".cursor/skills/ion-carrier-control/SKILL.md": { + "path": ".cursor/skills/ion-carrier-control/SKILL.md", + "sha256": "7833f6fb4200026fd47003b083ae26fffffc1aa6afade4c30e5dfdb5e63609f6", + "size": 1171 + }, + ".github/ISSUE_TEMPLATE/config.yml": { + "path": ".github/ISSUE_TEMPLATE/config.yml", + "sha256": "aade932569664b9ce4330e51aa45f74a431cca70e8d689baeed7a45316d6132e", + "size": 238 + }, + ".github/ISSUE_TEMPLATE/ion_work_packet.yml": { + "path": ".github/ISSUE_TEMPLATE/ion_work_packet.yml", + "sha256": "d60819411cf2016e02548dd122a70265db8720539479ba0089624e3a20e0eade", + "size": 2296 + }, + ".github/ISSUE_TEMPLATE/public_bug_report.yml": { + "path": ".github/ISSUE_TEMPLATE/public_bug_report.yml", + "sha256": "b39930a980bb8b6224aa9a4097e66fa40e1d622beb6ad2cf4e0b5fda2be45508", + "size": 1225 + }, + ".github/PULL_REQUEST_TEMPLATE.md": { + "path": ".github/PULL_REQUEST_TEMPLATE.md", + "sha256": "898854c87f897bac371acd91c5cc64c2fbba355de0404528806e7521b0c2e7bb", + "size": 404 + }, + ".gitignore": { + "path": ".gitignore", + "sha256": "96b15217d8bb4da66ccf8f314c62dd62c1d5285ae906a2697503475a34ef0c10", + "size": 684 + }, + ".pytest_cache/.gitignore": { + "path": ".pytest_cache/.gitignore", + "sha256": "3ed731b65d06150c138e2dadb0be0697550888a6b47eb8c45ecc9adba8b8e9bd", + "size": 37 + }, + ".pytest_cache/CACHEDIR.TAG": { + "path": ".pytest_cache/CACHEDIR.TAG", + "sha256": "37dc88ef9a0abeddbe81053a6dd8fdfb13afb613045ea1eb4a5c815a74a3bde4", + "size": 191 + }, + ".pytest_cache/README.md": { + "path": ".pytest_cache/README.md", + "sha256": "73fd6fccdd802c419a6b2d983d6c3173b7da97558ac4b589edec2dfe443db9ad", + "size": 302 + }, + ".pytest_cache/v/cache/lastfailed": { + "path": ".pytest_cache/v/cache/lastfailed", + "sha256": "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a", + "size": 2 + }, + ".pytest_cache/v/cache/nodeids": { + "path": ".pytest_cache/v/cache/nodeids", + "sha256": "f80fcd7526fe7b61553732069b9a46e67a7692ad0f7e2bb8588abf13d69bf7c2", + "size": 31539 + }, + ".vscode/extensions.json": { + "path": ".vscode/extensions.json", + "sha256": "bf8afec74beffbc8ad8ad9cfd706b6e24a5b95387a98534d17bfb617b6517c5b", + "size": 74 + }, + ".vscode/launch.json": { + "path": ".vscode/launch.json", + "sha256": "9e8ecb92a397899a619261494b775636806c55b9f9843f7a589172fa2791d904", + "size": 1469 + }, + ".vscode/settings.json": { + "path": ".vscode/settings.json", + "sha256": "316aa5bd73fc5d1855279e6d721286c361e6dc6f2e17cd83c007777ddfb4df36", + "size": 806 + }, + ".vscode/tasks.json": { + "path": ".vscode/tasks.json", + "sha256": "82c1071b39272ec2322019f29eb49dbbf6a2b9ac36e58b3cd6f92ca414e8566e", + "size": 591 + }, + "CONTRIBUTING.md": { + "path": "CONTRIBUTING.md", + "sha256": "bc2e59c543b1b1e7dbea10c61b14a4d260b8ab142986d4e5bc6e447aec76cc70", + "size": 1367 + }, + "ION/00_BOOTSTRAP/V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_LOCK.md", + "sha256": "97f5fb7cff632a0da437bf975db4be067fcc5616161d125c7ed2470a75228fbb", + "size": 1572 + }, + "ION/00_BOOTSTRAP/V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE_LOCK.md", + "sha256": "530a669003d2d18ee93658d786f7cc683cbc45f9757b2f9975b8fa96d6d0f5ee", + "size": 1288 + }, + "ION/00_BOOTSTRAP/V102_CONTEXT_METABOLISM_AND_LIFECYCLE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V102_CONTEXT_METABOLISM_AND_LIFECYCLE_LOCK.md", + "sha256": "e36d7a34a7a0f7c8d61bc2be1ab56db3f6098250d681cc6fa4371c77f7acc23a", + "size": 1249 + }, + "ION/00_BOOTSTRAP/V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_LOCK.md", + "sha256": "d15d45292e823964d11241192bba6d7b1e45cffffa6f6f3dfe9158025ad70410", + "size": 1191 + }, + "ION/00_BOOTSTRAP/V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_LOCK.md", + "sha256": "3df604eee76434dbcca5e38d6ccb375f92b7b65f866eab7841a95cdd9a78055d", + "size": 1036 + }, + "ION/00_BOOTSTRAP/V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY_LOCK.md", + "sha256": "7a71cd2b0bbfeec48239e513469e0e1c750fe89c6a311cbf154aa909a1cdc455", + "size": 507 + }, + "ION/00_BOOTSTRAP/V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_LOCK.md", + "sha256": "2c6fdbfde5cd2739f33252fba37701eeaae7dbda76f2bb57ff69b750cd338b0c", + "size": 888 + }, + "ION/00_BOOTSTRAP/V108_V72_MCP_DONOR_RECONCILIATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V108_V72_MCP_DONOR_RECONCILIATION_LOCK.md", + "sha256": "74a4007a7e2270e2eab6952ad9750c7f8497f247264ad05751d0bb917cafe6fe", + "size": 2035 + }, + "ION/00_BOOTSTRAP/V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_LOCK.md", + "sha256": "1542ea96ff0f9b5e0179226ebe0f8e297dc1e095c3b4d994a797e8d488cb7278", + "size": 1380 + }, + "ION/00_BOOTSTRAP/V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_LOCK.md", + "sha256": "946df50f853a118c24a8669a29b6e546dee268166e0cbab1f500124b3c2ea871", + "size": 1267 + }, + "ION/00_BOOTSTRAP/V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_LOCK.md", + "sha256": "ab6606bfbd992e7c53354c20c0bb18b88251f8ebcfc28c182e53fb63d2c85f26", + "size": 1502 + }, + "ION/00_BOOTSTRAP/V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_LOCK.md", + "sha256": "84bbc01a82225d6236b2e558e18356a01e96b9991e958f407b81b4fe60115082", + "size": 1610 + }, + "ION/00_BOOTSTRAP/V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_LOCK.md", + "sha256": "b74dca0749323745a0945df8a53707bb999492212307c0419c90a896219f3251", + "size": 1488 + }, + "ION/00_BOOTSTRAP/V114_DEFERRED_SPAWN_VISIBILITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V114_DEFERRED_SPAWN_VISIBILITY_LOCK.md", + "sha256": "c8f4347a356d339cb1de98c4f1f07fb14b8f2c19822f3246ea3a578d79551dcf", + "size": 1432 + }, + "ION/00_BOOTSTRAP/V115_AUDIT_TRUTH_RECONCILIATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V115_AUDIT_TRUTH_RECONCILIATION_LOCK.md", + "sha256": "b8e0f63ed8a9982477780ca36cfcdbb633d9396d353d850a5b262ce1f986276d", + "size": 1526 + }, + "ION/00_BOOTSTRAP/V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_LOCK.md", + "sha256": "f0f7ffd6986eee07517490621730a024b5961cc3bf3f2d1faeb6dde8f94cffae", + "size": 1574 + }, + "ION/00_BOOTSTRAP/V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_LOCK.md", + "sha256": "aeee41302cb0fff7e504117767257153161e1ca53a6aece5ebaa8f0a03bc1326", + "size": 1985 + }, + "ION/00_BOOTSTRAP/V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_LOCK.md", + "sha256": "d8d531108311ebbda367a5ddb7e55958e5be30596631f02bf9441c5d589f8a14", + "size": 1848 + }, + "ION/00_BOOTSTRAP/V119_CURRENT_OPERATING_PACKET_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V119_CURRENT_OPERATING_PACKET_LOCK.md", + "sha256": "adcf6b4b985164eaf0c5225a598db0bc6ea6eb11b69e4e13398823d2d2e242dd", + "size": 1427 + }, + "ION/00_BOOTSTRAP/V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_LOCK.md", + "sha256": "1718aad4d15abef0239bc7599cc10acf2edb5ea1875704f61431373137f74de7", + "size": 953 + }, + "ION/00_BOOTSTRAP/V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_LOCK.md", + "sha256": "c9523ee1426da7aa71810e677fca7c2bde86230cbf9ea73f702974a406f73e8d", + "size": 829 + }, + "ION/00_BOOTSTRAP/V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_LOCK.md", + "sha256": "8afbc1757cbdeb3569cae420ac2061dd63f3940a34a4f2212755aac800b32cea", + "size": 654 + }, + "ION/00_BOOTSTRAP/V123_ROOT_ONBOARDING_SHIM_RETIREMENT_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V123_ROOT_ONBOARDING_SHIM_RETIREMENT_LOCK.md", + "sha256": "4a5955798efa9f5daea22d04cc9d23fc1e28e4ad0eb6fd6590c1186506d63b90", + "size": 2932 + }, + "ION/00_BOOTSTRAP/V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_LOCK.md", + "sha256": "d31244dfdb07775297b640168330af175801e36b3216551cbd9c1b57dea35321", + "size": 1578 + }, + "ION/00_BOOTSTRAP/V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_LOCK.md", + "sha256": "d20d765c49763fe92e68270385fdad1921848a5484a7873d76eca45ac2404481", + "size": 1436 + }, + "ION/00_BOOTSTRAP/V32_CERTIFIED_DEMO_BASELINE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V32_CERTIFIED_DEMO_BASELINE_LOCK.md", + "sha256": "58a2360dccebae0f801f55a56bd67db8ac4d5de40903b0994dd839a37135729d", + "size": 1153 + }, + "ION/00_BOOTSTRAP/V34_GPT55_SELF_MOUNT_DELEGATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V34_GPT55_SELF_MOUNT_DELEGATION_LOCK.md", + "sha256": "bf071f54528e8e25909f1dcaf9647e0c66d0da522b858177a8140ecbeb46b073", + "size": 1533 + }, + "ION/00_BOOTSTRAP/V35_RUNTIME_IDENTITY_ENVELOPE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V35_RUNTIME_IDENTITY_ENVELOPE_LOCK.md", + "sha256": "3b74f218199a58d3a6d60a812746e6c5c85eb277edfdb5035157ae742bad79cb", + "size": 1423 + }, + "ION/00_BOOTSTRAP/V36_SELF_SURFACE_DRIFT_GATE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V36_SELF_SURFACE_DRIFT_GATE_LOCK.md", + "sha256": "318be2d6b965a1a59c7f773aa7db25bcae5a272ddd27bdbd7bd73c51807e0854", + "size": 573 + }, + "ION/00_BOOTSTRAP/V37_AGENT_SUCCESSION_PACKET_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V37_AGENT_SUCCESSION_PACKET_LOCK.md", + "sha256": "da8b239e97c3d7ef6f663b916e831e7e5639a9b2c358e251f4e0b24d57ded28d", + "size": 476 + }, + "ION/00_BOOTSTRAP/V38_SELF_MOUNT_GRAPH_INTEGRATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V38_SELF_MOUNT_GRAPH_INTEGRATION_LOCK.md", + "sha256": "f967f7b7c13e6ad2f85ee1c1580fbb1d0d056310be4e2b1523c2f0e1287ca7a4", + "size": 439 + }, + "ION/00_BOOTSTRAP/V39_FRONT_DOOR_SELF_MOUNT_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V39_FRONT_DOOR_SELF_MOUNT_BINDING_LOCK.md", + "sha256": "ea758cd7ef0dba04fa4a957655ac071da6a7ab274169dc1675b1d70cdec5cff1", + "size": 915 + }, + "ION/00_BOOTSTRAP/V40_MAINTAINED_WORK_SURFACE_AND_PERSONA_SYSTEM_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V40_MAINTAINED_WORK_SURFACE_AND_PERSONA_SYSTEM_LOCK.md", + "sha256": "20d23d8ce9327500e11ba2897ba33947d6c878a68a08863793c2d1f63a74bdfe", + "size": 1426 + }, + "ION/00_BOOTSTRAP/V41_FRONT_STAGE_COUNCIL_RUNTIME_RECEIPTS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V41_FRONT_STAGE_COUNCIL_RUNTIME_RECEIPTS_LOCK.md", + "sha256": "5679d52139565014f0ddaab5de8ba6fb7204a872021ded872b7da8d6063f8c13", + "size": 1066 + }, + "ION/00_BOOTSTRAP/V42_CONVERSATIONAL_RECEIPTS_AND_LIVE_REPAIR_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V42_CONVERSATIONAL_RECEIPTS_AND_LIVE_REPAIR_LOCK.md", + "sha256": "273e55bca9e621613df005ea2c774a76fa61b0613f08b9bd1bda793d055ed789", + "size": 380 + }, + "ION/00_BOOTSTRAP/V43_EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V43_EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_LOCK.md", + "sha256": "fbcd414c2d947f25a169e2461e7ac7093a9f8291e3997c841f90e7fe8434fad8", + "size": 358 + }, + "ION/00_BOOTSTRAP/V44_VISUAL_OBSERVATION_PACKET_SCHEMA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V44_VISUAL_OBSERVATION_PACKET_SCHEMA_LOCK.md", + "sha256": "bdee235db2e40d924f4c14cb0786420ac6c7ad6b7f63425ed972e5dda3b0c2fd", + "size": 423 + }, + "ION/00_BOOTSTRAP/V45_VISUAL_DIAGNOSIS_RECEIPTS_AND_BROWSER_HARNESS_PLAN_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V45_VISUAL_DIAGNOSIS_RECEIPTS_AND_BROWSER_HARNESS_PLAN_LOCK.md", + "sha256": "b7fd0e85a8bf0fbacda8df177b08c2ca787b071b2eb32f3c0330b5c65bc03391", + "size": 905 + }, + "ION/00_BOOTSTRAP/V46_LOCAL_VISUAL_HARNESS_PROTOTYPE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V46_LOCAL_VISUAL_HARNESS_PROTOTYPE_LOCK.md", + "sha256": "509b9f3f40f711aaa6ffd6675db24ad9a76fdf2f4d67ae96caa3e01f0ea3a29f", + "size": 997 + }, + "ION/00_BOOTSTRAP/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_LOCK.md", + "sha256": "e7502027fd687095ebad3495d23a113f7fc95dbd5e27da5774329514993bec45", + "size": 317 + }, + "ION/00_BOOTSTRAP/V48_VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V48_VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_LOCK.md", + "sha256": "db2307eca6e49e0318ec667c942794f5374ca5f097dab005e14c77525f4963e6", + "size": 298 + }, + "ION/00_BOOTSTRAP/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_LOCK.md", + "sha256": "945bd3ff8aca0456b82654f7efda9db3b6ea24fbc9cc5b690a47fb481044542b", + "size": 1094 + }, + "ION/00_BOOTSTRAP/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_LOCK.md", + "sha256": "798f7f839cb69061b847210a05f376edf1868977926409cc462875f9db28c347", + "size": 1422 + }, + "ION/00_BOOTSTRAP/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_LOCK.md", + "sha256": "979a5122585dd7dc20b3df778cd515e9b26acbd236f3be7487a2326775ae8aa4", + "size": 1389 + }, + "ION/00_BOOTSTRAP/V52_LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V52_LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_LOCK.md", + "sha256": "336de0643ca4160e637fccd05f07ac85334f97c809d4c7c7c6f8e09dc98a9140", + "size": 274 + }, + "ION/00_BOOTSTRAP/V53_LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V53_LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_LOCK.md", + "sha256": "90c383a33369bb4c376852b9dfe874157773b887a2de2750e9e9ec05372bc2a6", + "size": 434 + }, + "ION/00_BOOTSTRAP/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_LOCK.md", + "sha256": "295d003ddd34e8efa5f3d58558b127f28c72f3a1ba23012096ee4babed55b418", + "size": 689 + }, + "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_LOCK.md", + "sha256": "a3f2d162d0bd57a3ab5d86a9c535aa9e37485cdcdbe95fc552320a7efd8aae07", + "size": 2163 + }, + "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_LOCK.md", + "sha256": "2f61f04e4c47bb3a477a1d0a1f7ec21ba9ec143f33d4272b4f75db9306e968a5", + "size": 479 + }, + "ION/00_BOOTSTRAP/V56_ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACTS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V56_ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACTS_LOCK.md", + "sha256": "3b00692ae615861ed244777ffc418aabcdf3712925056bd41170cf8c9fb5c396", + "size": 2346 + }, + "ION/00_BOOTSTRAP/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_LOCK.md", + "sha256": "48741676a172edf8216b6dbb9eaf5823317baab98b23432393ff0b33dd0f09cb", + "size": 845 + }, + "ION/00_BOOTSTRAP/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING_LOCK.md", + "sha256": "74ea368793ab6087aaeba9d3cdaa8e889f901ec6b5401d766656ca3fb4d64a7b", + "size": 895 + }, + "ION/00_BOOTSTRAP/V57_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V57_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_LOCK.md", + "sha256": "a043d22e995424ffdff2bf68cca1338ac9664bc8855c6ee47dda8d03c9b43fe9", + "size": 1602 + }, + "ION/00_BOOTSTRAP/V58_BUDGET_AND_API_RATE_GOVERNORS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V58_BUDGET_AND_API_RATE_GOVERNORS_LOCK.md", + "sha256": "54aaf89fa0145c066d69dedc03134946fe2e83baf885774fae0f4e132f41b754", + "size": 1004 + }, + "ION/00_BOOTSTRAP/V58_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V58_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_LOCK.md", + "sha256": "953bef11f833ae1cc4773268d9c095f8f718563a7166aa99df0bfe31ef57ea6d", + "size": 1608 + }, + "ION/00_BOOTSTRAP/V59_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V59_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_LOCK.md", + "sha256": "9caad42678f66ed345a3f4dedb9c8656ff26d2f7b0ae648f6c1d69f316d189ab", + "size": 1369 + }, + "ION/00_BOOTSTRAP/V60_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V60_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_LOCK.md", + "sha256": "ff987e7e8a18c89a3411e585b68f823b2bb3636d8341d079ebec92a5622f574e", + "size": 1187 + }, + "ION/00_BOOTSTRAP/V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V61_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_LOCK.md", + "sha256": "91e860dbf8c70d1a58d98a338720dc2b63833653d8def1a2e8a88418dcce09c0", + "size": 1388 + }, + "ION/00_BOOTSTRAP/V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V62_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_LOCK.md", + "sha256": "c1aa7988e890aebb524e4a83872c68989ff1a0d5bf3b0311e122d625d1c5c317", + "size": 1605 + }, + "ION/00_BOOTSTRAP/V63_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V63_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_LOCK.md", + "sha256": "a970499700cdccfbf5b7c7d18a4cd7d7dc2adce3734131d8afa723fc476e2d71", + "size": 1249 + }, + "ION/00_BOOTSTRAP/V63_ION_MCP_MOUNT_AND_ACCOUNT_CONNECTION_PROTOCOL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V63_ION_MCP_MOUNT_AND_ACCOUNT_CONNECTION_PROTOCOL_LOCK.md", + "sha256": "cf3391521c1ef75911e8cd2be48245bf663d71de99b008bcd22303e5ac616225", + "size": 1776 + }, + "ION/00_BOOTSTRAP/V64_LOCAL_MCP_BRIDGE_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V64_LOCAL_MCP_BRIDGE_LOCK.md", + "sha256": "9fed969409ece0cd03b5affc4b38530f5b7efaa7d522344d66945d609a68d681", + "size": 1060 + }, + "ION/00_BOOTSTRAP/V64_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V64_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_LOCK.md", + "sha256": "b1ab18d0515c64c88661a777ddaa15a2f5d9fdf2ad3bc8ec47dc1c10e8b4887d", + "size": 1076 + }, + "ION/00_BOOTSTRAP/V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_LOCK.md", + "sha256": "9f83cb88fa2c5366519dbb864efd7184372e245f8194e752384b7081c061fb32", + "size": 1004 + }, + "ION/00_BOOTSTRAP/V65_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V65_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_LOCK.md", + "sha256": "789aeb1f705079f070add2b1d662f54ce9ac4ec6377459619a684186aaef1aab", + "size": 1262 + }, + "ION/00_BOOTSTRAP/V66_LOCAL_MCP_SDK_COMPATIBILITY_AND_CLIENT_CERTIFICATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V66_LOCAL_MCP_SDK_COMPATIBILITY_AND_CLIENT_CERTIFICATION_LOCK.md", + "sha256": "60f4dead3285864d22a85bd9ea1c5d2cce8b9578770bc7ebd01da8d4d0f4d337", + "size": 1092 + }, + "ION/00_BOOTSTRAP/V66_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V66_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_LOCK.md", + "sha256": "3076c655f04ce3bb1aa57f04af8394cb4739d214252b4902f1e6eea26d239f06", + "size": 1283 + }, + "ION/00_BOOTSTRAP/V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_LOCK.md", + "sha256": "cf3252f009b96b7a8bbfd6d7f93ae135fb38dbb6c8e4c3154c4f103fac5c940b", + "size": 627 + }, + "ION/00_BOOTSTRAP/V67_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V67_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_LOCK.md", + "sha256": "1f8697f3caa9494a6362293f2d5e178e58e4d6cf3928a039a2702bac4fc7836a", + "size": 1226 + }, + "ION/00_BOOTSTRAP/V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_LOCK.md", + "sha256": "b6484a68362a83ea2fc61a701350232000a582548ba3196f0b1ba1829a300815", + "size": 930 + }, + "ION/00_BOOTSTRAP/V68_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V68_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_LOCK.md", + "sha256": "6628345eb5b836f601772c81e7f596d45c950951f7e07e39f5fc50e19aa54334", + "size": 885 + }, + "ION/00_BOOTSTRAP/V69_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V69_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_LOCK.md", + "sha256": "1333bad055313a9c04b2b6c38e2de760eb0a6423cc17c11126d00e61d4c23d10", + "size": 621 + }, + "ION/00_BOOTSTRAP/V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_LOCK.md", + "sha256": "40af4af92381ce03e36128cff9bf4b0506945a0b8084ebce467628e7dea0cd0b", + "size": 719 + }, + "ION/00_BOOTSTRAP/V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_LOCK.md", + "sha256": "15261c92680c23ff40d1499448526cf3b8f07d331e2b03259517fd20f4869620", + "size": 592 + }, + "ION/00_BOOTSTRAP/V70_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V70_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_LOCK.md", + "sha256": "a06282d33a54963d3c0bc098b4b12c9902ed4d0d8a73108fa7341ae7e1d44365", + "size": 698 + }, + "ION/00_BOOTSTRAP/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_LOCK.md", + "sha256": "bb8148c38ecee7cc2508a583889e884be4686f05344cc696f7c6f477731ef1b6", + "size": 511 + }, + "ION/00_BOOTSTRAP/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_LOCK.md", + "sha256": "cd7ead2ab3c074e438bbd4ea6cc393fe57ff6d8eb75621cdfc99763c30ae9f78", + "size": 509 + }, + "ION/00_BOOTSTRAP/V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_LOCK.md", + "sha256": "c6820f0af80b307510903a9794f1663597b2aab1bf47bec7afe15d47ebaa55a3", + "size": 847 + }, + "ION/00_BOOTSTRAP/V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_LOCK.md", + "sha256": "313ce137ef01a19bb098a0b560cafa3d6e393db6acad6f314e91315c079c4312", + "size": 1324 + }, + "ION/00_BOOTSTRAP/V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_LOCK.md": { + "path": "ION/00_BOOTSTRAP/V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_LOCK.md", + "sha256": "86629c05f18e8c4138096596fbbfbd7e336a840b5f6cf6afa2322ce70ca8ebcc", + "size": 546 + }, + "ION/01_doctrine/CANONICAL_WORKFLOW.md": { + "path": "ION/01_doctrine/CANONICAL_WORKFLOW.md", + "sha256": "290d7d54c01c90003169735c96375418270de38167c22deee49cefb4091f3955", + "size": 3629 + }, + "ION/01_doctrine/MAINTAINED_WORK_SURFACE_CANON.md": { + "path": "ION/01_doctrine/MAINTAINED_WORK_SURFACE_CANON.md", + "sha256": "e2cfc8c00a47dfeb4e2b8b63a668937b0e374cf2a3bc4373ed69036287eae826", + "size": 1766 + }, + "ION/01_doctrine/README.md": { + "path": "ION/01_doctrine/README.md", + "sha256": "e21cf9a6d664d419bf749a539ba3b8ec9f62ad459b64226ebbbdae51f0173421", + "size": 1586 + }, + "ION/01_doctrine/SOVEREIGN_CONSTITUTION.md": { + "path": "ION/01_doctrine/SOVEREIGN_CONSTITUTION.md", + "sha256": "881cbc57448454003073c0e99d7d04f4497bd3564f219e2f0cdb77840ce5efdd", + "size": 4201 + }, + "ION/01_doctrine/SOVEREIGN_KERNEL.md": { + "path": "ION/01_doctrine/SOVEREIGN_KERNEL.md", + "sha256": "11ebe10b53bd93bb56fd92ec28c3fa4e8de4df39f9fbc511b4bb72500d9adaa1", + "size": 2347 + }, + "ION/02_architecture/ACTIVATION_AUTHORITY_PROTOCOL.md": { + "path": "ION/02_architecture/ACTIVATION_AUTHORITY_PROTOCOL.md", + "sha256": "82c4952a083237e03cd441bc5c50fb71d7c1c135eecd34d9e919c8e4d454f6c3", + "size": 8905 + }, + "ION/02_architecture/ACTIVATION_SUMMARY_HANDOFF_CAPSULE_MATERIALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/ACTIVATION_SUMMARY_HANDOFF_CAPSULE_MATERIALIZATION_PROTOCOL.md", + "sha256": "bdfdefb226196829e2588a3f38d5783c9446491c267535e02296f077900a056d", + "size": 2873 + }, + "ION/02_architecture/ACTIVE_SURFACE_RETIREMENT_PROTOCOL.md": { + "path": "ION/02_architecture/ACTIVE_SURFACE_RETIREMENT_PROTOCOL.md", + "sha256": "de778417ce6da20884f733df12c3c3ff6afec36efc409e135b598854f247b225", + "size": 1432 + }, + "ION/02_architecture/AGENT_GRAPH_CUSTODIAN_AND_SUBSPECIALIST_FANOUT_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_GRAPH_CUSTODIAN_AND_SUBSPECIALIST_FANOUT_PROTOCOL.md", + "sha256": "504e617729963cb4abc0e2e44f812c8f0238ab8e8276de82d578a4f8c4a84740", + "size": 2170 + }, + "ION/02_architecture/AGENT_REASONING_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_REASONING_PROTOCOL.md", + "sha256": "07981ef5399e06b4d4912fbd47f9b3101f4e1407cf61443d17a1fcb727fea869", + "size": 7005 + }, + "ION/02_architecture/AGENT_SELF_SURFACE_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_SELF_SURFACE_PROTOCOL.md", + "sha256": "d7d673569220769daeef926d764f6be44ca1b911ca8d6dba7b2e9bd134ee9d90", + "size": 2458 + }, + "ION/02_architecture/AGENT_SUCCESSION_PACKET_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_SUCCESSION_PACKET_PROTOCOL.md", + "sha256": "4317b2ceac1ec454c5ea0ac6202fca2e507876beb1ea5a85f45f59d1b2232f65", + "size": 1000 + }, + "ION/02_architecture/AGENT_SUCCESSION_PROTOCOL.md": { + "path": "ION/02_architecture/AGENT_SUCCESSION_PROTOCOL.md", + "sha256": "b1bdfade38c35aaa419507f3af460331c0e20d33834a20870916bf2a1248a421", + "size": 1619 + }, + "ION/02_architecture/API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.md": { + "path": "ION/02_architecture/API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.md", + "sha256": "8745953fa36af72c0d1044d10c965aa1288964180c457df009c9b1f9c6325a85", + "size": 719 + }, + "ION/02_architecture/API_RATE_GOVERNOR_AND_PROVIDER_LIMIT_PROTOCOL.md": { + "path": "ION/02_architecture/API_RATE_GOVERNOR_AND_PROVIDER_LIMIT_PROTOCOL.md", + "sha256": "6282a9305f6a695c03530da484e24b9b26be7cadb92af89c26e8e9d93ef0bfa3", + "size": 1488 + }, + "ION/02_architecture/API_RUNTIME_ENTRY_PROTOCOL.md": { + "path": "ION/02_architecture/API_RUNTIME_ENTRY_PROTOCOL.md", + "sha256": "e191e618a45a1d6288d630e43ca030e65a6273317874d52fcf1f2fad2a77e6ff", + "size": 2970 + }, + "ION/02_architecture/APPROVED_CONTEXT_INDEX_PROTOCOL.md": { + "path": "ION/02_architecture/APPROVED_CONTEXT_INDEX_PROTOCOL.md", + "sha256": "6b40b88683fcff1f77258c914f7422d50aabd948ed0285b7f77763088b5195c9", + "size": 2104 + }, + "ION/02_architecture/ARCHAEOLOGY_DAEMON_CONTRACT.md": { + "path": "ION/02_architecture/ARCHAEOLOGY_DAEMON_CONTRACT.md", + "sha256": "3afedb2a87b18fca3be58fcb4a0264316832e13c59c548f3afa0e9b80a818885", + "size": 9028 + }, + "ION/02_architecture/ARCHAEOLOGY_DAEMON_PROTOCOL.md": { + "path": "ION/02_architecture/ARCHAEOLOGY_DAEMON_PROTOCOL.md", + "sha256": "a5c52d4453c986bc101401a7e2e2f85a5f8429b78c7823b9f8c386fe258bb8de", + "size": 4458 + }, + "ION/02_architecture/AUTOMATION_STATE_PROTOCOL.md": { + "path": "ION/02_architecture/AUTOMATION_STATE_PROTOCOL.md", + "sha256": "c3df6a43b2187135a4bfc297d6c10d98ee8b33c1567eeff3cd5744dd3bb3a753", + "size": 5090 + }, + "ION/02_architecture/BATCH_AND_BACKGROUND_MODEL_EXECUTION_PROTOCOL.md": { + "path": "ION/02_architecture/BATCH_AND_BACKGROUND_MODEL_EXECUTION_PROTOCOL.md", + "sha256": "743517fa5c101ceec9015c15ecff1c4155f3193727c97061992cb2d7135460d1", + "size": 1439 + }, + "ION/02_architecture/BOUNDED_MULTI_AGENT_ALLOCATOR_PROTOCOL.md": { + "path": "ION/02_architecture/BOUNDED_MULTI_AGENT_ALLOCATOR_PROTOCOL.md", + "sha256": "af2bda2249fc6608ee6314cef07f99ab348080a114337b63921e3226414c32d5", + "size": 3921 + }, + "ION/02_architecture/BOUNDED_PARALLELISM_AND_SETTLEMENT_PROTOCOL.md": { + "path": "ION/02_architecture/BOUNDED_PARALLELISM_AND_SETTLEMENT_PROTOCOL.md", + "sha256": "89b40f8f1cf5e30f43ae184df1e92f3ced6efe8b856eabca2cacf909a944f200", + "size": 6500 + }, + "ION/02_architecture/BRANCH_BUDGET_RECURSION_AND_DRIFT_CONTROL_PROTOCOL.md": { + "path": "ION/02_architecture/BRANCH_BUDGET_RECURSION_AND_DRIFT_CONTROL_PROTOCOL.md", + "sha256": "298ae4d82fa28fac7a6b702d7a324be0c6622f5253d47adf20e8ad2fe81f6394", + "size": 3281 + }, + "ION/02_architecture/BRANCH_HORIZON_SCHEDULE_SYNCHRONIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/BRANCH_HORIZON_SCHEDULE_SYNCHRONIZATION_PROTOCOL.md", + "sha256": "60c463210c9374304d0b911105b387a806091636e2b5db5da189be30f9cbcc2b", + "size": 3848 + }, + "ION/02_architecture/BRANCH_RESCHEDULING_AND_REBINDING_PROTOCOL.md": { + "path": "ION/02_architecture/BRANCH_RESCHEDULING_AND_REBINDING_PROTOCOL.md", + "sha256": "a7c7bd5e42c8a4e196e624550d8a0b41bebc3eb6d405c50250d580f5a0884c64", + "size": 2195 + }, + "ION/02_architecture/BRIDGE_PACKET_STATUS_CLARIFICATION.md": { + "path": "ION/02_architecture/BRIDGE_PACKET_STATUS_CLARIFICATION.md", + "sha256": "d08a8a8cdf0200f73b07516286822838107f161dd71bb48716d24e8fc049ead2", + "size": 3109 + }, + "ION/02_architecture/BUDGET_AND_API_RATE_GOVERNORS_PROTOCOL.md": { + "path": "ION/02_architecture/BUDGET_AND_API_RATE_GOVERNORS_PROTOCOL.md", + "sha256": "6164ff5fc7740af6a433c2935b7950ffae17c1d5a81831e2092ede3627aa96af", + "size": 1794 + }, + "ION/02_architecture/CANON_PROMOTION_AND_RATIFICATION_PROTOCOL.md": { + "path": "ION/02_architecture/CANON_PROMOTION_AND_RATIFICATION_PROTOCOL.md", + "sha256": "cc156bd5829eeb3b980dd3e61a3f215cf0d6235b1a954913175ad9eafa6ee11b", + "size": 1448 + }, + "ION/02_architecture/CHILD_WORK_OPERATIONALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/CHILD_WORK_OPERATIONALIZATION_PROTOCOL.md", + "sha256": "f6ab4bbbd4201884aa2aa647f5ca16a064fd1bdb3426e1f8f11be8e767627ed1", + "size": 1939 + }, + "ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md": { + "path": "ION/02_architecture/CODEX_CLI_CARRIER_PROTOCOL.md", + "sha256": "540b09f8d7f53d31675f719c780d1a71ad9f646d00f035658238b497432874f8", + "size": 3824 + }, + "ION/02_architecture/CODEX_EXTENSION_CARRIER_PROTOCOL.md": { + "path": "ION/02_architecture/CODEX_EXTENSION_CARRIER_PROTOCOL.md", + "sha256": "a6003ed4bc00fdb8f86ede880e60784b907bce9bd9d201d35671e85d6607c656", + "size": 1479 + }, + "ION/02_architecture/CODEX_LEAD_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/CODEX_LEAD_ORCHESTRATION_PROTOCOL.md", + "sha256": "3d2331af7f88977d1a2b2d1443939a8f2d3f960892accebe83e1e5c531292674", + "size": 1744 + }, + "ION/02_architecture/CONJUGATE_DAIMON_PROTOCOL.md": { + "path": "ION/02_architecture/CONJUGATE_DAIMON_PROTOCOL.md", + "sha256": "4ddfe011ac307c89cc3e27f585a49b1e798248eec2f3c9417730910ceed85052", + "size": 12191 + }, + "ION/02_architecture/CONSTITUTIONAL_AMENDMENT_PROTOCOL.md": { + "path": "ION/02_architecture/CONSTITUTIONAL_AMENDMENT_PROTOCOL.md", + "sha256": "2547fb46f07fc0cef07037b3eaa2f1e8747cc0f5dc03a47f604aeab866564f39", + "size": 1383 + }, + "ION/02_architecture/CONTEXT_GRAPH_ONTOLOGY_ADAPTER_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_GRAPH_ONTOLOGY_ADAPTER_PROTOCOL.md", + "sha256": "8cdd77447cafc45928749a3adc65a6451383c29b43cd72780f71830766188199", + "size": 4773 + }, + "ION/02_architecture/CONTEXT_GRAPH_SUBSTRATE_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_GRAPH_SUBSTRATE_PROTOCOL.md", + "sha256": "96dc47a1892c60022b1a0f20fe09c5a414e7cfa0bdcf32e61b75569f04c76b0c", + "size": 2754 + }, + "ION/02_architecture/CONTEXT_MODE_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_MODE_PROTOCOL.md", + "sha256": "e93412f113881ae9ef2e67f0dc11472f521e877a703ecf0e93173d13ad79eea7", + "size": 6516 + }, + "ION/02_architecture/CONTEXT_NODE_AND_PACKAGE_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_NODE_AND_PACKAGE_PROTOCOL.md", + "sha256": "ff21a39dd08cc1d31237af79255b25b587d0c7e9cdb8d3795bd0fee8365fde48", + "size": 1078 + }, + "ION/02_architecture/CONTEXT_PERFECT_CONTINUATION_PROTOCOL.md": { + "path": "ION/02_architecture/CONTEXT_PERFECT_CONTINUATION_PROTOCOL.md", + "sha256": "aa29f121edc14228f4a22ebed18fdb857b7eef0906ac0801e8a31a10d6d8d20d", + "size": 4550 + }, + "ION/02_architecture/CONTEXT_PLANES.md": { + "path": "ION/02_architecture/CONTEXT_PLANES.md", + "sha256": "ad9189b2dc9217999958c5c117c6e763addd1b5d9930c1557859f391d05b0521", + "size": 4237 + }, + "ION/02_architecture/CONTINUITY_ARCHITECTURE.md": { + "path": "ION/02_architecture/CONTINUITY_ARCHITECTURE.md", + "sha256": "f4b0c040cd4584e5ecf6b93768d314fb37bf9600d67886a96b1f12afeb567f13", + "size": 9151 + }, + "ION/02_architecture/CONTINUITY_OF_SELF_VS_CONTINUITY_OF_TASK_PROTOCOL.md": { + "path": "ION/02_architecture/CONTINUITY_OF_SELF_VS_CONTINUITY_OF_TASK_PROTOCOL.md", + "sha256": "c8a7cb90f7e9786dcb73c58c93aa1e4f7f636c68110c732b703b2d452ad5e7b8", + "size": 1817 + }, + "ION/02_architecture/CONTRACT_BOUND_EVENT_INTEGRATION_PROTOCOL.md": { + "path": "ION/02_architecture/CONTRACT_BOUND_EVENT_INTEGRATION_PROTOCOL.md", + "sha256": "4f099128d25dc0aa445800cbcac6de63949870c36af4b8f02d85f02620c9f9c5", + "size": 2684 + }, + "ION/02_architecture/CONTRACT_BOUND_EVENT_RUNTIME_PROTOCOL.md": { + "path": "ION/02_architecture/CONTRACT_BOUND_EVENT_RUNTIME_PROTOCOL.md", + "sha256": "eb98cc67f7619cc98c5fa5b0e6e2aa09ad365b83c3f94a8d339ab72e8f9e6e4f", + "size": 2837 + }, + "ION/02_architecture/CONVERSATIONAL_RECEIPT_AND_LIVE_REPAIR_PROTOCOL.md": { + "path": "ION/02_architecture/CONVERSATIONAL_RECEIPT_AND_LIVE_REPAIR_PROTOCOL.md", + "sha256": "bb8a1c170899eaf60ab526ba3c8479dbc171275c15f6fb63e2cb27b73d3b3a4c", + "size": 958 + }, + "ION/02_architecture/COST_QUALITY_MARGIN_ROUTING_PROTOCOL.md": { + "path": "ION/02_architecture/COST_QUALITY_MARGIN_ROUTING_PROTOCOL.md", + "sha256": "422d27bae79f4eff9f447776ee9108b205a4ae10334ba674efec5a3fa8068c52", + "size": 1493 + }, + "ION/02_architecture/CROSS_MODEL_AUDIT_AND_CONSENSUS_PROTOCOL.md": { + "path": "ION/02_architecture/CROSS_MODEL_AUDIT_AND_CONSENSUS_PROTOCOL.md", + "sha256": "7a8475a7580f0b6725ef7b3eb1e93272f18ad297e0465d29c8b6f3ab865d43f2", + "size": 1458 + }, + "ION/02_architecture/DEMO_SPINE_BRANCH_CONSOLIDATION_PROTOCOL.md": { + "path": "ION/02_architecture/DEMO_SPINE_BRANCH_CONSOLIDATION_PROTOCOL.md", + "sha256": "da9b58b36146d948c9ff5f9149ed5b2d0bac0239b234a5732eba2a11dddfca06", + "size": 1444 + }, + "ION/02_architecture/DISAGREEMENT_ESCALATION_PROTOCOL.md": { + "path": "ION/02_architecture/DISAGREEMENT_ESCALATION_PROTOCOL.md", + "sha256": "affe40e821a9df539e094940443a0e15166747a478329c60ea13ed2ab8d14d76", + "size": 3085 + }, + "ION/02_architecture/DOCTRINE_EVOLUTION_PROTOCOL.md": { + "path": "ION/02_architecture/DOCTRINE_EVOLUTION_PROTOCOL.md", + "sha256": "10c1e56ba907ef38e7d75012fd8c5fb2b5d36d6ecfccdae74d9aca08c0c75901", + "size": 8228 + }, + "ION/02_architecture/DRIFT_OF_SELF_PROTOCOL.md": { + "path": "ION/02_architecture/DRIFT_OF_SELF_PROTOCOL.md", + "sha256": "28cf2658ff9e9f825168ede6b5fc846e1667f6201770c8a497c8df42fe073a81", + "size": 1483 + }, + "ION/02_architecture/EVENTED_TEMPLATE_FILE_GRAPH_PROTOCOL.md": { + "path": "ION/02_architecture/EVENTED_TEMPLATE_FILE_GRAPH_PROTOCOL.md", + "sha256": "12f1789a5caca78c4a97a90d43580da9aab4406ae1256e37c4754401cf28b8c5", + "size": 7116 + }, + "ION/02_architecture/EXECUTOR_CAPABILITY_REGISTRY_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_CAPABILITY_REGISTRY_PROTOCOL.md", + "sha256": "dc7b11867cd5d828a24be68f7e14ccca5ff7aded05c9bd312901d7bdaa7043bb", + "size": 4979 + }, + "ION/02_architecture/EXECUTOR_FLEET_LIFECYCLE_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_FLEET_LIFECYCLE_PROTOCOL.md", + "sha256": "42a25baa48b0492725d6c4d3170988e4d3210454cb0139f8c5ef353a56fb9f80", + "size": 3861 + }, + "ION/02_architecture/EXECUTOR_LIFECYCLE_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_LIFECYCLE_PROTOCOL.md", + "sha256": "4d8c0111c5409291b37dec2f5035974b1d0450dd4120616cbae6189e0af5add8", + "size": 9442 + }, + "ION/02_architecture/EXECUTOR_WORK_CLOSURE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_WORK_CLOSURE_BINDING_PROTOCOL.md", + "sha256": "51d417b248ac5998a6f2e629a62d2fbaea60a88fa107674ea0c669a7c61da13c", + "size": 1372 + }, + "ION/02_architecture/EXECUTOR_WORK_LIFECYCLE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/EXECUTOR_WORK_LIFECYCLE_BINDING_PROTOCOL.md", + "sha256": "e0e7408a2380d78b9ea6cb7eba01c19f55fda5732cd41721ce9ba2c6f5bbaf8f", + "size": 2299 + }, + "ION/02_architecture/EXPRESSIVE_TELEMETRY_AND_AFFECT_INTEGRITY_PROTOCOL.md": { + "path": "ION/02_architecture/EXPRESSIVE_TELEMETRY_AND_AFFECT_INTEGRITY_PROTOCOL.md", + "sha256": "b948d36c498ae399ba65a14ddc4e3b2cbc990e4fcbfb03a06215a1167c7093ec", + "size": 1464 + }, + "ION/02_architecture/EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/EXPRESSIVE_TELEMETRY_RUNTIME_BINDING_PROTOCOL.md", + "sha256": "a637385c91cda70cb883821040591c28c4cb0bbc1437cfdb19ea2de570842fcb", + "size": 581 + }, + "ION/02_architecture/EXTERNAL_EXECUTION_MCP_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/EXTERNAL_EXECUTION_MCP_BRIDGE_PROTOCOL.md", + "sha256": "c0102c35d7d5b86e6e07500e3d71fc303cc211a5c8e460cf5def2401890420d1", + "size": 2839 + }, + "ION/02_architecture/EXTERNAL_ZIP_RETURN_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/EXTERNAL_ZIP_RETURN_BRIDGE_PROTOCOL.md", + "sha256": "253ef3855fe6f6aae57d97a87d34571f07db9268b087a8513c31cebb72afc28e", + "size": 2963 + }, + "ION/02_architecture/FAN_IN_MERGE_REVIEW_SETTLEMENT_PROTOCOL.md": { + "path": "ION/02_architecture/FAN_IN_MERGE_REVIEW_SETTLEMENT_PROTOCOL.md", + "sha256": "43e76d656b17617cc341fdc3bc732e3b125776e0d8734aff075b0f624721662d", + "size": 3044 + }, + "ION/02_architecture/FLEET_EXECUTOR_CAPABILITY_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/FLEET_EXECUTOR_CAPABILITY_BINDING_PROTOCOL.md", + "sha256": "6a76acddc526761a96a497b6040c9fdd887efcf32e41de6dd42227782401606e", + "size": 2031 + }, + "ION/02_architecture/FRONT_DOOR_CHAT_ORCHESTRATION_ADAPTER_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_CHAT_ORCHESTRATION_ADAPTER_PROTOCOL.md", + "sha256": "ddb4653fb485b6c9cb84fe96c51d7f3ab3f260db3b2978ae96d1941e2a27c4c2", + "size": 3032 + }, + "ION/02_architecture/FRONT_DOOR_PERSONA_RELAY_STEWARD_BOUNDARY_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_PERSONA_RELAY_STEWARD_BOUNDARY_PROTOCOL.md", + "sha256": "21b2e2ae2d9d8cd21158219bfcaf972a3bf436f71b83e61fcec8f418457aea57", + "size": 6284 + }, + "ION/02_architecture/FRONT_DOOR_RUNTIME_ENTRY_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_RUNTIME_ENTRY_PROTOCOL.md", + "sha256": "69fe31621cc562f380d138f6b79ae155f0812bdbb8d9245b9e4d7101b1bf84dd", + "size": 2261 + }, + "ION/02_architecture/FRONT_DOOR_SELF_MOUNT_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_DOOR_SELF_MOUNT_BINDING_PROTOCOL.md", + "sha256": "fd9845def08968acd9450d7900e684214d0611c72b29529154931d06517aab78", + "size": 1524 + }, + "ION/02_architecture/FRONT_STAGE_COUNCIL_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_STAGE_COUNCIL_PROTOCOL.md", + "sha256": "db11b5e35532701bcfa4215ff23adb616282a845553c96c57d55e3aae512f93c", + "size": 1231 + }, + "ION/02_architecture/FRONT_STAGE_COUNCIL_RUNTIME_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/FRONT_STAGE_COUNCIL_RUNTIME_RECEIPT_PROTOCOL.md", + "sha256": "e764d751922aa5e3693aad057ea2ac2fc2abf57806779ca662107f70ac76ae7c", + "size": 2310 + }, + "ION/02_architecture/GPT55_SELF_MOUNT_CHARTER.md": { + "path": "ION/02_architecture/GPT55_SELF_MOUNT_CHARTER.md", + "sha256": "fb641d2cf01b10c3b0947c87dcf8a7ee542ef45d1310631d1f5892fe9bc6d6f2", + "size": 2478 + }, + "ION/02_architecture/GRAPH_REACTION_REGISTRY_PROTOCOL.md": { + "path": "ION/02_architecture/GRAPH_REACTION_REGISTRY_PROTOCOL.md", + "sha256": "810a9673b1ade8ec79bd4f55bcf2e0210a27b24e921788ef62129406265d7528", + "size": 1944 + }, + "ION/02_architecture/GRAPH_WRITEBACK_AND_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/GRAPH_WRITEBACK_AND_RECEIPT_PROTOCOL.md", + "sha256": "054cf5850adddab9f42f092f769c138e2a64e2e13a9b0611249e5b1e39b6049c", + "size": 1870 + }, + "ION/02_architecture/HANDOFF_CAPSULE_EXECUTOR_ENTRY_REHEARSAL_PROTOCOL.md": { + "path": "ION/02_architecture/HANDOFF_CAPSULE_EXECUTOR_ENTRY_REHEARSAL_PROTOCOL.md", + "sha256": "e24244054879ae9abd74ff01155a92b60d4347496cca1da59fa8458d318a2729", + "size": 3127 + }, + "ION/02_architecture/HANDOFF_TAKEOVER_NORMALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/HANDOFF_TAKEOVER_NORMALIZATION_PROTOCOL.md", + "sha256": "6279daaaee9b7c5a4279e60364fbdf3025d0012b7b0148396fbbaeca99e1429c", + "size": 4458 + }, + "ION/02_architecture/HORIZON_ENACTMENT_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_ENACTMENT_RECEIPT_PROTOCOL.md", + "sha256": "6ec26b2f9dbeb831d2b0d3cb1fd5f8b8f7e56bffe80c04bb5e13d3954011105b", + "size": 1809 + }, + "ION/02_architecture/HORIZON_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_ORCHESTRATION_PROTOCOL.md", + "sha256": "8a8421bc4701f584a55b9447aa345832044e1c72279be6e24ec68d7b41ac837e", + "size": 2027 + }, + "ION/02_architecture/HORIZON_PACKET_ENACTMENT_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_PACKET_ENACTMENT_PROTOCOL.md", + "sha256": "e4b6cb332fa91d17b4393e91992507bbf80abbcf76ac80d4a9f244b0a37181d0", + "size": 1977 + }, + "ION/02_architecture/HORIZON_STATE_AND_TIGHTENING_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_STATE_AND_TIGHTENING_PROTOCOL.md", + "sha256": "dba9a68aea7ff6d138eb7604f632ff59aff472dc7452390f1826353e59033e40", + "size": 2032 + }, + "ION/02_architecture/HORIZON_TO_EXECUTION_WORKFLOW_REHEARSAL_PROTOCOL.md": { + "path": "ION/02_architecture/HORIZON_TO_EXECUTION_WORKFLOW_REHEARSAL_PROTOCOL.md", + "sha256": "f372f9241cfacbfa1e42f958794994157b64b621282ae395a30196ac555804ce", + "size": 1987 + }, + "ION/02_architecture/INGRESS_AUTHORITY_RESOLUTION_PROTOCOL.md": { + "path": "ION/02_architecture/INGRESS_AUTHORITY_RESOLUTION_PROTOCOL.md", + "sha256": "5df4d548724c56a02e953c2d47c5a3079f4f0d7a42e37b1e7a34b982db43c567", + "size": 1688 + }, + "ION/02_architecture/INTELLIGENT_DOMAIN_PROTOCOL.md": { + "path": "ION/02_architecture/INTELLIGENT_DOMAIN_PROTOCOL.md", + "sha256": "4cd405967b6e5f7d3970de385cc477f87284412c0f72bbc519126033780259b2", + "size": 5333 + }, + "ION/02_architecture/ION_ACCOUNT_WORKSPACE_AND_STATE_ROOT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_ACCOUNT_WORKSPACE_AND_STATE_ROOT_PROTOCOL.md", + "sha256": "59bc9baab631633d44a4979ac1183bed5b4948b2e60df1d5f0ed2af8de660c51", + "size": 4906 + }, + "ION/02_architecture/ION_AGENT_CONTEXT_CONTINUITY_TIMELINE_AND_ROUTE_MAP_PROTOCOL.md": { + "path": "ION/02_architecture/ION_AGENT_CONTEXT_CONTINUITY_TIMELINE_AND_ROUTE_MAP_PROTOCOL.md", + "sha256": "2b64dc0641a0aa4f54ad96af9f8fb5cc3b009d978808e8780a0b17348045229e", + "size": 10046 + }, + "ION/02_architecture/ION_AGENT_CONTEXT_DYNAMICS_AND_CONTEXT_WINDOW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_AGENT_CONTEXT_DYNAMICS_AND_CONTEXT_WINDOW_PROTOCOL.md", + "sha256": "30ec213c9b9a8dffc346075a51b2f94b50dbc0d64817c95c4fcc0a540d05c56a", + "size": 6451 + }, + "ION/02_architecture/ION_AGENT_CONTEXT_SYSTEMS_PROTOCOL.md": { + "path": "ION/02_architecture/ION_AGENT_CONTEXT_SYSTEMS_PROTOCOL.md", + "sha256": "37c4f30751a51a4da5d3de74b1d8cf9eb879e10c6fbf4dee398a8c227dad4aca", + "size": 5465 + }, + "ION/02_architecture/ION_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/ION_BRANCH_CONSOLIDATION_UI_MODEL_GOVERNOR_BINDING_PROTOCOL.md", + "sha256": "8bc5982d0c46ccd31cd23304c0d9279d1044c197c607345654daf91973c8c6d5", + "size": 1661 + }, + "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md": { + "path": "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md", + "sha256": "9d9c04f5601409ebe37887c829d50309b97e2d557edd6a7c31047695990d63e4", + "size": 5542 + }, + "ION/02_architecture/ION_CARRIER_CYCLE_PLAN_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_CYCLE_PLAN_PROTOCOL.md", + "sha256": "b8c32e7aefc01d38386b3b3c72ee28adf6d083af5f2ce664a109868b0c7350bd", + "size": 1442 + }, + "ION/02_architecture/ION_CARRIER_ONBOARDING_AUTHORITY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_ONBOARDING_AUTHORITY_PROTOCOL.md", + "sha256": "bc512a5a361fc1beefec0ec39187ca4febee26588e866f0347d8454ca87f8dde", + "size": 4336 + }, + "ION/02_architecture/ION_CARRIER_RUNTIME_FOUNDATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_RUNTIME_FOUNDATION_PROTOCOL.md", + "sha256": "47d188c93871a7361b0f2b4c7ead24ad943ee2680a442f284d9c3c16b8660658", + "size": 1561 + }, + "ION/02_architecture/ION_CARRIER_TASK_RETURN_INTAKE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_TASK_RETURN_INTAKE_PROTOCOL.md", + "sha256": "ff45c4fb90c53fa48e6b932e8755a59782ec1963ad16b620a85a819b8eb0fb98", + "size": 1997 + }, + "ION/02_architecture/ION_CARRIER_TO_CARRIER_COMMUNICATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CARRIER_TO_CARRIER_COMMUNICATION_PROTOCOL.md", + "sha256": "4da3c70220212a6124825f4d7ddf1258ca99306bd86573e6a7bcb5c7698c4d20", + "size": 2455 + }, + "ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md", + "sha256": "b7081fe506a36b099914ff475008400c5351f83c2f3157633962c3c2412c0c55", + "size": 1763 + }, + "ION/02_architecture/ION_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_PROTOCOL.md", + "sha256": "64e318ae5436025f112048f1df824730f7b3537f34b3d8123ac9306432dfeb26", + "size": 2140 + }, + "ION/02_architecture/ION_CHATGPT_BROWSER_MCP_CONNECTOR_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATGPT_BROWSER_MCP_CONNECTOR_PROTOCOL.md", + "sha256": "9c8931029cc7df778d04c62238c0f63db65d5955705e437696cc55f457cfea27", + "size": 5093 + }, + "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md", + "sha256": "a042ac4da299442316b5624ddc1ae7015ebb6ceb307d6822bdddf66345802429", + "size": 3194 + }, + "ION/02_architecture/ION_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_PROTOCOL.md", + "sha256": "b17cdbdc5448a9201c8d3fa1af3b7bce4832791acd169941034726b1e1465b75", + "size": 975 + }, + "ION/02_architecture/ION_CONTEXT_AUTHORITY_TEAM_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CONTEXT_AUTHORITY_TEAM_PROTOCOL.md", + "sha256": "a24db38a81c9f1f664fd1a233200710b1e486ba69ff3e0c923b5c745908388d2", + "size": 7976 + }, + "ION/02_architecture/ION_CONTEXT_METABOLISM_AND_LIFECYCLE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CONTEXT_METABOLISM_AND_LIFECYCLE_PROTOCOL.md", + "sha256": "16128c7ccb9df204612b9673e74d6fbcdc8b89dc5ad36450043bfa67ced6f890", + "size": 5463 + }, + "ION/02_architecture/ION_CORE_TELEMETRY_TRIAD_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CORE_TELEMETRY_TRIAD_PROTOCOL.md", + "sha256": "62f4e0bb4b52151fbe64d94a3f5392b123c11da618182f75efaf6bef08889381", + "size": 1178 + }, + "ION/02_architecture/ION_CURSOR_AUTOPILOT_COMMAND_AND_SUBAGENT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_AUTOPILOT_COMMAND_AND_SUBAGENT_PROTOCOL.md", + "sha256": "f357bd1ff4cdd091783a9d8334b4e6a189606cb644546917d7cca5fd3a03406d", + "size": 2264 + }, + "ION/02_architecture/ION_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_PROTOCOL.md", + "sha256": "b5c5ee8b4fe6dbe4a24fb6aa5a99256aed9bdef9b5d04926d4ab6ebe077ebbc6", + "size": 6112 + }, + "ION/02_architecture/ION_CURSOR_CARRIER_CONTINUATION_WORKFLOW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_CARRIER_CONTINUATION_WORKFLOW_PROTOCOL.md", + "sha256": "8edcb37477f60439b5f7f6ab9c2abee8ee4121094d5ab80bb3c3e43c74d5e9ca", + "size": 2263 + }, + "ION/02_architecture/ION_CURSOR_COCKPIT_EXTENSION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_COCKPIT_EXTENSION_PROTOCOL.md", + "sha256": "2feee193de6e076f3ca39e176956aaa176205ccc5fcc33ec5d0ad101219de288", + "size": 2779 + }, + "ION/02_architecture/ION_CURSOR_FULL_WORKFLOW_MOUNT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_FULL_WORKFLOW_MOUNT_PROTOCOL.md", + "sha256": "c2b534e1b811a3074cbc175c3ee5663fa8d569b524f40084bf18a8cb42eb597e", + "size": 2249 + }, + "ION/02_architecture/ION_CURSOR_SDK_HOOK_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_CURSOR_SDK_HOOK_BRIDGE_PROTOCOL.md", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/02_architecture/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_SYSTEM_TELEMETRY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_SYSTEM_TELEMETRY_PROTOCOL.md", + "sha256": "9f43e3cb1f757139e8254469e9aeb45a61cce333f822560a5a4991703362c672", + "size": 2611 + }, + "ION/02_architecture/ION_DEFAULT_CARRIER_ONBOARDING_PROTOCOL.md": { + "path": "ION/02_architecture/ION_DEFAULT_CARRIER_ONBOARDING_PROTOCOL.md", + "sha256": "3295b2d9d8476e5d38948379903a3d08519ef8c1965af020e43c215e82a4e57c", + "size": 1434 + }, + "ION/02_architecture/ION_FILE_RECORD_SCHEMA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FILE_RECORD_SCHEMA_PROTOCOL.md", + "sha256": "a15a66536a81a7b6b15abba4256a7052f6021ea83ee126c828832df73d5f88ab", + "size": 2017 + }, + "ION/02_architecture/ION_FRONT_DOOR_AUTONOMOUS_TEAM_WORKFLOW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FRONT_DOOR_AUTONOMOUS_TEAM_WORKFLOW_PROTOCOL.md", + "sha256": "cd006950cf2e959ec9a7df1a660fe681e3f7eefefe7b068146250019f1f67abc", + "size": 1986 + }, + "ION/02_architecture/ION_FULL_CARRIER_MCP_PARITY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FULL_CARRIER_MCP_PARITY_PROTOCOL.md", + "sha256": "53fdd493c216c3974c826ef80473aa359d7a600791d72c37e2531e20fa7b555e", + "size": 16073 + }, + "ION/02_architecture/ION_FULL_OPERATIONALIZATION_AND_TESTING_PROTOCOL.md": { + "path": "ION/02_architecture/ION_FULL_OPERATIONALIZATION_AND_TESTING_PROTOCOL.md", + "sha256": "ee5ecc85c266fa939ebf7343b6c4d7939ffc676080fde6d0e10e022f7e515765", + "size": 8307 + }, + "ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_GITHUB_DATA_PLANE_PROTOCOL.md", + "sha256": "467f43edbe0804e41e6deb02952d2812dcaadd21d791296838e2ccf11c151de1", + "size": 10909 + }, + "ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_GITHUB_WORK_DAEMON_PROTOCOL.md", + "sha256": "c4de11d357b46c6802893e026a760db22bd4e53a9f6e7a6c182da7b00c9afabc", + "size": 7520 + }, + "ION/02_architecture/ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACT_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_COCKPIT_SHELL_COMPONENT_CONTRACT_PROTOCOL.md", + "sha256": "f09407343c1c673405f8602af1a2e116ee8e6dc6672d506d3e54859911a61219", + "size": 3040 + }, + "ION/02_architecture/ION_JOC_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_COGNITIVE_EXPLORER_AND_CONTEXT_ROUTE_VIEW_MODEL_PROTOCOL.md", + "sha256": "3d14d657e5b2f9c9f2b97868c4278dd39f616ee0812a48c034f14e3c41446726", + "size": 1855 + }, + "ION/02_architecture/ION_JOC_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_DISPATCH_AUTHORIZATION_GOVERNOR_VERDICT_VIEW_MODEL_PROTOCOL.md", + "sha256": "b06ac99801d962dd7610ad268c41d7a178e533548b8d071e708c3a088563140d", + "size": 2473 + }, + "ION/02_architecture/ION_JOC_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_DRY_RUN_DISPATCH_EXECUTION_TRACE_VIEW_MODEL_PROTOCOL.md", + "sha256": "c2d4b23c892a2fc560ed038c05fbc51d4229fb3bae6dbfde8999c312f46a6999", + "size": 1512 + }, + "ION/02_architecture/ION_JOC_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_HANDOFF_PACKAGE_ASSEMBLY_PLAN_AND_CHECKSUM_PREVIEW_PROTOCOL.md", + "sha256": "dc8bfd3fa64845445da82fe3222140f39d3174aba0e2febd1995f733abb3b08c", + "size": 898 + }, + "ION/02_architecture/ION_JOC_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_MISSION_DISPATCH_AND_MODEL_ROUTE_VIEW_MODEL_PROTOCOL.md", + "sha256": "a571cf33bf08e77c1a32c3bd6aa23f5d02975ee91732b41ec8312787959306fd", + "size": 1773 + }, + "ION/02_architecture/ION_JOC_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_OPERATOR_APPROVAL_QUEUE_AND_DRY_RUN_HANDOFF_PROTOCOL.md", + "sha256": "41ccb802b481a99171d545e6b7d70b6a0280ef28e6dc81aaee1ae377d72d7295", + "size": 1396 + }, + "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_EXPORT_HANDOFF_MANIFEST_PREVIEW_PROTOCOL.md", + "sha256": "600c28664c1cc971ce164a9b17d8c7ed3250bff9fc46b9c90e69479272e3776b", + "size": 1397 + }, + "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_OPERATOR_REVIEWED_RESULT_SAVE_PROPOSAL_VIEW_MODEL_PROTOCOL.md", + "sha256": "ae58ecd8e5fb41b178ce8151850f93275f21b8588ee9148cc898a893a3056627", + "size": 1525 + }, + "ION/02_architecture/ION_JOC_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_PROVIDER_ADAPTER_READINESS_AND_SELECTOR_HEALTH_VIEW_MODEL_PROTOCOL.md", + "sha256": "5a010447e5c0819f5cb4b5c9ea90546a7136b084ec3c6ed2cfc44af104795969", + "size": 1606 + }, + "ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_REACTIVE_OS_STREAM_AND_AUTOMATION_VIEW_MODEL_PROTOCOL.md", + "sha256": "8b122906213ddd8c4c4ace4affa2b18694fd8f899c14631df020a42cb2ecb9e1", + "size": 2313 + }, + "ION/02_architecture/ION_JOC_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_RELEASE_CANDIDATE_PREVIEW_AND_PREFLIGHT_VERIFIER_VIEW_MODEL_PROTOCOL.md", + "sha256": "1810abad117781dd41dc26d39d9f222609feb55867d6747ea74a87e559f99bb3", + "size": 1045 + }, + "ION/02_architecture/ION_JOC_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_SYNTHETIC_RESPONSE_CAPTURE_AND_EXTRACTION_RECEIPT_PREVIEW_PROTOCOL.md", + "sha256": "b940e6f8aa44beb6ffdab426c417f12ed213b9199e1e9353b0f0a958a394515f", + "size": 1186 + }, + "ION/02_architecture/ION_JOC_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_JOC_SYNTHETIC_SYNTHESIS_AND_ROUTE_RESULT_PREVIEW_PROTOCOL.md", + "sha256": "c631da7964ddaa3e67ddd80b9725894cb7c27327d08c4890e7231ea5f90fa51c", + "size": 1319 + }, + "ION/02_architecture/ION_LEGACY_CLOUDFLARE_TUNNEL_REUSE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LEGACY_CLOUDFLARE_TUNNEL_REUSE_PROTOCOL.md", + "sha256": "88ce1f45aca2ea438632239bdb1e4737159491d00b32466189996b8899982dfc", + "size": 2312 + }, + "ION/02_architecture/ION_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_PROTOCOL.md", + "sha256": "f8bbb2864463f6e0dbe0cebd1ffec61dc42940ddb5ff1bbad90e6781749bf6fd", + "size": 2205 + }, + "ION/02_architecture/ION_LIVING_ENCYCLOPEDIA_MAINTENANCE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LIVING_ENCYCLOPEDIA_MAINTENANCE_PROTOCOL.md", + "sha256": "98b3652c2a24e6ed24c6b12497ad8fdb546ac217e40e190c4af699d96e40e283", + "size": 3503 + }, + "ION/02_architecture/ION_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_PROTOCOL.md", + "sha256": "d9b8ac49506310ccb6f4337503472e4fbb0958026a5e0b36a8c0209cb05afc69", + "size": 1809 + }, + "ION/02_architecture/ION_LOCAL_MCP_BRIDGE_TO_KERNEL_AND_DAEMON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_LOCAL_MCP_BRIDGE_TO_KERNEL_AND_DAEMON_PROTOCOL.md", + "sha256": "9e6aebc253052df95ea89d7a32e29a2ab41fb2cac741369d6552899db51e686a", + "size": 3570 + }, + "ION/02_architecture/ION_MCP_CONTROL_BRIDGE_PROTOCOL.md": { + "path": "ION/02_architecture/ION_MCP_CONTROL_BRIDGE_PROTOCOL.md", + "sha256": "1b87d4bff2f824511379afd6a0b552404b97e6285f97d532d646fba5d8ee57c6", + "size": 3056 + }, + "ION/02_architecture/ION_MCP_FRONT_DOOR_AND_MOUNT_SESSION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_MCP_FRONT_DOOR_AND_MOUNT_SESSION_PROTOCOL.md", + "sha256": "1177eed4834caf724ad19f44eceb7695935539309eb29418b1b572bf524bd495", + "size": 6943 + }, + "ION/02_architecture/ION_MOUNT_CONTRACT.md": { + "path": "ION/02_architecture/ION_MOUNT_CONTRACT.md", + "sha256": "468bbf85e8fa0f38e0cf9347fedb615dd68f59b77cfbb8ed94cadae79ee0f891", + "size": 4003 + }, + "ION/02_architecture/ION_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_PROTOCOL.md", + "sha256": "e44ff4dda3bf125639b872b3007a34449bbbe6a3ab707cd40ffb1c4fc412eef3", + "size": 611 + }, + "ION/02_architecture/ION_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_PROTOCOL.md", + "sha256": "8d14603bb2ba5be748b25ee8d7b7297174d9c3d31288e3bf60e4b29f5d860ea6", + "size": 2938 + }, + "ION/02_architecture/ION_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_PROTOCOL.md", + "sha256": "f732e4665b8d162bc42c14391f38090cfd4534c1583405ab3ae2664c87039530", + "size": 2988 + }, + "ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md": { + "path": "ION/02_architecture/ION_OVER_CURSOR_PROTOCOL.md", + "sha256": "99495e9b32832a651a9691a8070136f920877df245dbc1f53af4cc4454241ec6", + "size": 12952 + }, + "ION/02_architecture/ION_PRODUCTIZED_RUNTIME_BOUNDARY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_PRODUCTIZED_RUNTIME_BOUNDARY_PROTOCOL.md", + "sha256": "80f49c45b62edc3a9c86355d956b1a8d8e13ffd46c9973a8a37cb9d9b5cd163d", + "size": 1914 + }, + "ION/02_architecture/ION_SELF_MOUNT_COMPLETION_ROADMAP.md": { + "path": "ION/02_architecture/ION_SELF_MOUNT_COMPLETION_ROADMAP.md", + "sha256": "a4208577559cd539b618882dc8e6ca2602d6efd1ff18a250cc44435281cf0f7b", + "size": 2181 + }, + "ION/02_architecture/ION_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_PROTOCOL.md", + "sha256": "70dd2fd1205db71955267e5100d278df0e6b3ccff5cbdd037173ecda9d5fe6ba", + "size": 4603 + }, + "ION/02_architecture/ION_V64_LOCAL_MCP_BRIDGE_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V64_LOCAL_MCP_BRIDGE_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "285f270e9d5634dce266a63182b3fe9c8adcc86f0eaeb0b99f3b516ee90a3aa1", + "size": 936 + }, + "ION/02_architecture/ION_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS_PROTOCOL.md", + "sha256": "02433c1e110582ea427d47a5f87a9f638c5f8e639d2b016b762f84d862f9e7e7", + "size": 3404 + }, + "ION/02_architecture/ION_V66_LOCAL_MCP_CLIENT_CERTIFICATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V66_LOCAL_MCP_CLIENT_CERTIFICATION_PROTOCOL.md", + "sha256": "834e1d72371429a5810f4b4bf381590e27749c30011da1d2825b8a5768888ffc", + "size": 3326 + }, + "ION/02_architecture/ION_V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V67_MCP_SDK_ADAPTER_AND_STREAMABLE_HTTP_PREVIEW_PROTOCOL.md", + "sha256": "3da8861b6bf3ed146774c72d61b2f672959ba2254d821799eab5658f7a936edd", + "size": 2010 + }, + "ION/02_architecture/ION_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_PROTOCOL.md", + "sha256": "3512ba4b7f17248304bdc6b75a295ad43e0ee8b549b4732653b53bca3588b5f9", + "size": 2325 + }, + "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "236cb13c7993e60ffb06b42569abf9d69604c05b21dd9ed948e6de5d4e7da8a7", + "size": 1042 + }, + "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V69_HOSTED_MCP_AUTH_AND_ACCOUNT_WORKSPACE_ALPHA_PROTOCOL.md", + "sha256": "8af5c57c6dc393be4aa35ca43e923fdacc46eafe3c1bae468fc5d16611ac3985", + "size": 2450 + }, + "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "f42ff4aa6aa7707931f88e6215bd0cd2d047cc6ad46e23bc5a0430a675a659a5", + "size": 668 + }, + "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V70_HOSTED_MCP_OAUTH_AND_STREAMABLE_HTTP_IMPLEMENTATION_PREVIEW_PROTOCOL.md", + "sha256": "16556b5cd851e620ccf955ad2c4d134704cbd66227ededbee93d5262ee56e2f9", + "size": 1851 + }, + "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "500b27dfc49e709d2225a615b194095bc2d4cea838307c21252b73334a766674", + "size": 1227 + }, + "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_PROTOCOL.md", + "sha256": "113a328771fa0e97c05fc49719ca675964a4f50b0c1f51838047fbb747f4acc0", + "size": 2953 + }, + "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_EXECUTION_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_EXECUTION_HORIZON_PROTOCOL.md", + "sha256": "607a7028ef08ca47aab90f2c3a9f09af164f6472b9954d0602f7f6fdd7dfded7", + "size": 499 + }, + "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_PROTOCOL.md", + "sha256": "6ace23f2cacd6c7f72bfbcb11cf61d165c7445e01236747716a63d62ec054a3e", + "size": 1793 + }, + "ION/02_architecture/ION_V72_MCP_DONOR_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/ION_V72_MCP_DONOR_RECONCILIATION_PROTOCOL.md", + "sha256": "b592ba31d15bee63ad4c2473a887ec3c690a74a5f21e5490ae14625b62596e91", + "size": 2067 + }, + "ION/02_architecture/LAWFUL_ORCHESTRATION_SCHEDULER_PROTOCOL.md": { + "path": "ION/02_architecture/LAWFUL_ORCHESTRATION_SCHEDULER_PROTOCOL.md", + "sha256": "a928ddba66282d881c34b9af63619ce8462ca09229223be6291f061e88fedebb", + "size": 8512 + }, + "ION/02_architecture/LIVE_PERSONA_LATENCY_AND_PROVISIONAL_UTTERANCE_PROTOCOL.md": { + "path": "ION/02_architecture/LIVE_PERSONA_LATENCY_AND_PROVISIONAL_UTTERANCE_PROTOCOL.md", + "sha256": "23dcbcd2967fab3baeb0f2f68aa8fe8e923911224eb45cf6096719237fcbb810", + "size": 1622 + }, + "ION/02_architecture/LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_CAPTURE_ADAPTER_STUB_PROTOCOL.md", + "sha256": "0185fdb06045420f4c5af68c1785e486c2487a9670b56046ce555885300debc0", + "size": 527 + }, + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_EXECUTION_HARNESS_PROTOTYPE_GATED_PROTOCOL.md", + "sha256": "a35b4ac547039e3742bc373314411178a5e42e8ef3716379130199d0149cdbc8", + "size": 435 + }, + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_EXECUTION_RUN_RECEIPTS_PROTOCOL.md", + "sha256": "7491cc564b4aea9eb71c736d94da0583241e94dea526d3e27e41610c543a4710", + "size": 650 + }, + "ION/02_architecture/LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_PROTOCOL.md", + "sha256": "f8da90c6298e53aace6dbe0b46f1bc44c81e9cbe685c119cc66d3d113817b8e1", + "size": 2908 + }, + "ION/02_architecture/LOCAL_MODEL_AND_PRIVATE_EXECUTION_LANE_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_MODEL_AND_PRIVATE_EXECUTION_LANE_PROTOCOL.md", + "sha256": "333880065baa8882136fc85ad5319262924ae61533714ec8c2da014532453574", + "size": 1457 + }, + "ION/02_architecture/LOCAL_VISUAL_HARNESS_PROTOTYPE_PROTOCOL.md": { + "path": "ION/02_architecture/LOCAL_VISUAL_HARNESS_PROTOTYPE_PROTOCOL.md", + "sha256": "40d93f7f7e826927499ed96f2980cc36c8c5738cfc627c7c1e37feefc9b34717", + "size": 2092 + }, + "ION/02_architecture/MANIFEST_AND_ROUTE_STATE_PROTOCOL.md": { + "path": "ION/02_architecture/MANIFEST_AND_ROUTE_STATE_PROTOCOL.md", + "sha256": "3adc3a3c8ccfc44b7a2a51e89ab2fe0c830655747fd874177cfffbea2042aa46", + "size": 5613 + }, + "ION/02_architecture/MANUAL_AUTOMATION_EQUIVALENCE_PROTOCOL.md": { + "path": "ION/02_architecture/MANUAL_AUTOMATION_EQUIVALENCE_PROTOCOL.md", + "sha256": "7d3ec5d153dc281618fe446cd42af63817ed70d376c161d6d7b82df61b3ef28a", + "size": 3296 + }, + "ION/02_architecture/MANUAL_AUTOMATION_FALLBACK_PROTOCOL.md": { + "path": "ION/02_architecture/MANUAL_AUTOMATION_FALLBACK_PROTOCOL.md", + "sha256": "117eff9db7f7afa1cb4883dd10bb2c519732ff6bb1fe4183e50cef42c72b024c", + "size": 2137 + }, + "ION/02_architecture/META_TEMPLATE_CONSTITUTION_PROTOCOL.md": { + "path": "ION/02_architecture/META_TEMPLATE_CONSTITUTION_PROTOCOL.md", + "sha256": "0ebeb00380598fd1c8fb8965be08b7b0fa188dc645bb63d6229c61b5dc28dade", + "size": 5541 + }, + "ION/02_architecture/MODEL_CALL_RECEIPT_PROTOCOL.md": { + "path": "ION/02_architecture/MODEL_CALL_RECEIPT_PROTOCOL.md", + "sha256": "d9c976aeb965caf79a4c9303763a665c38ebbd1e921866758a930cec2fa52f65", + "size": 1501 + }, + "ION/02_architecture/MODEL_ROUTER_AND_COST_QUALITY_ROUTING_PROTOCOL.md": { + "path": "ION/02_architecture/MODEL_ROUTER_AND_COST_QUALITY_ROUTING_PROTOCOL.md", + "sha256": "9a4a8d3faac9d3ac54ba8c15ff3f67c13dff7a93d4e57b4c2b8a10295e757b77", + "size": 2646 + }, + "ION/02_architecture/MODEL_ROUTING_AND_PROVIDER_ECONOMICS_PROTOCOL.md": { + "path": "ION/02_architecture/MODEL_ROUTING_AND_PROVIDER_ECONOMICS_PROTOCOL.md", + "sha256": "a9a8d21274f58405138acd0e6cb6f863a0d8dd05bbc09d5a170b6642ef3497f6", + "size": 1557 + }, + "ION/02_architecture/MOUNTED_AGENT_IDENTITY_SCHEMA_PROTOCOL.md": { + "path": "ION/02_architecture/MOUNTED_AGENT_IDENTITY_SCHEMA_PROTOCOL.md", + "sha256": "215c46c96cdf01397d843051874ea21d7e0eeb251844b6305890cc7525bfb3f1", + "size": 1831 + }, + "ION/02_architecture/MULTI_CHAT_COORDINATION.md": { + "path": "ION/02_architecture/MULTI_CHAT_COORDINATION.md", + "sha256": "3257ceccd43e03d9d831d87653baefdb452384db76e0ebba7837e62bb2d77f94", + "size": 19028 + }, + "ION/02_architecture/NAME_LINEAGE_REGISTRY_PROTOCOL.md": { + "path": "ION/02_architecture/NAME_LINEAGE_REGISTRY_PROTOCOL.md", + "sha256": "d21d9f5fb2efd140a50aaa10513ef72fcff98bdae6a1fd60ab2566859775594a", + "size": 2195 + }, + "ION/02_architecture/OPERATIONAL_HARDENING_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATIONAL_HARDENING_PROTOCOL.md", + "sha256": "15a11f00f17f3544210cd4935953b26410c19c9a9bc272faca50b55cf15936f5", + "size": 2472 + }, + "ION/02_architecture/OPERATOR_CONTROL_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATOR_CONTROL_PROTOCOL.md", + "sha256": "512165c295843bd55ab069a2271f64af60b86f3ed962991e44390d9dbf65eafb", + "size": 921 + }, + "ION/02_architecture/OPERATOR_DELEGATION_AND_NON_MEDDLING_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATOR_DELEGATION_AND_NON_MEDDLING_PROTOCOL.md", + "sha256": "6cd157a98ed076df5e505085446934b195c8e20264a186991305dbf6ce9b956f", + "size": 1660 + }, + "ION/02_architecture/OPERATOR_ENTRY_SURFACE_PROTOCOL.md": { + "path": "ION/02_architecture/OPERATOR_ENTRY_SURFACE_PROTOCOL.md", + "sha256": "dc68bb2f3d58d664a6a585f2e3e6ae8986775adf14f6a1f917ddc94b788537ec", + "size": 2683 + }, + "ION/02_architecture/ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md": { + "path": "ION/02_architecture/ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md", + "sha256": "824f5bbe72e9f3040d30d41b7d14918aaffab86f45731bbb28c0f5f7dd4e5307", + "size": 15118 + }, + "ION/02_architecture/PACKET_AND_HANDOFF_STANDARDIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/PACKET_AND_HANDOFF_STANDARDIZATION_PROTOCOL.md", + "sha256": "8da9621d884e3db6a9842401b7ab43fac4009298cce0912d7fc76078ee6dedd1", + "size": 7894 + }, + "ION/02_architecture/PERSONA_CONTEXT_BUDGET_AND_HORIZON_PROTOCOL.md": { + "path": "ION/02_architecture/PERSONA_CONTEXT_BUDGET_AND_HORIZON_PROTOCOL.md", + "sha256": "84453a4c81e738eba2489f32633a750d34003259665f6be807d16af44c4bbcde", + "size": 1132 + }, + "ION/02_architecture/PRODUCTION_RATIFICATION_MATRIX_PROTOCOL.md": { + "path": "ION/02_architecture/PRODUCTION_RATIFICATION_MATRIX_PROTOCOL.md", + "sha256": "249159e38a06f2a26147726b1e3c095088b0539ecc967f0cae327275d5201b41", + "size": 1028 + }, + "ION/02_architecture/PRODUCTION_READINESS_GAP_REGISTER.md": { + "path": "ION/02_architecture/PRODUCTION_READINESS_GAP_REGISTER.md", + "sha256": "9a586fedb776ee35ece1ade3ba1e7d590b5f88fdc96b23616eedb91412b2f1c6", + "size": 1095 + }, + "ION/02_architecture/PRODUCT_READINESS_CHARTER.md": { + "path": "ION/02_architecture/PRODUCT_READINESS_CHARTER.md", + "sha256": "43bfeec0ef5a1c487179823494eda23ad4f07e1d10d6bfbad31a6471ba2fbda9", + "size": 1528 + }, + "ION/02_architecture/RANK_AND_PRECEDENCE_PROTOCOL.md": { + "path": "ION/02_architecture/RANK_AND_PRECEDENCE_PROTOCOL.md", + "sha256": "0f3c363a43326f9fc05cc8fd1bdbb7a2f316d206910d27f0152301475bd8be8c", + "size": 4659 + }, + "ION/02_architecture/README.md": { + "path": "ION/02_architecture/README.md", + "sha256": "d44da8ce1c88e7ace82ed741ac3d8abbde5390a6b835735bbc660efae31e671d", + "size": 1000 + }, + "ION/02_architecture/RECOVERY_AND_REPLAY_PROTOCOL.md": { + "path": "ION/02_architecture/RECOVERY_AND_REPLAY_PROTOCOL.md", + "sha256": "a43629767eed6d8a34ad20b911e2284d4e4093400ca824c52bdd9790ff3037a9", + "size": 1761 + }, + "ION/02_architecture/RELEASE_READINESS_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/RELEASE_READINESS_GATE_PROTOCOL.md", + "sha256": "ee6298e6905b13d6c27862213f52f83ef9ce3f141b5fbec5e527a54ff0fb6ea3", + "size": 2690 + }, + "ION/02_architecture/REPRESENTATIONAL_INTEGRITY_PROTOCOL.md": { + "path": "ION/02_architecture/REPRESENTATIONAL_INTEGRITY_PROTOCOL.md", + "sha256": "70b5e0ebbdc786ece52066db78ef8fcdef6a62aabdb4f12248afac0a755e8f93", + "size": 1612 + }, + "ION/02_architecture/ROLE_CHASSIS_MOUNT_PROTOCOL.md": { + "path": "ION/02_architecture/ROLE_CHASSIS_MOUNT_PROTOCOL.md", + "sha256": "ffab16a0c2b6c10d32cdcbdd648e6b679af8f07d4a2ac0347b976200b8aad53a", + "size": 4939 + }, + "ION/02_architecture/ROLE_MIXING_AND_ROLE_SPLIT_GUARD_PROTOCOL.md": { + "path": "ION/02_architecture/ROLE_MIXING_AND_ROLE_SPLIT_GUARD_PROTOCOL.md", + "sha256": "6023f19c34521d6f86f8a146a3d5786a99ed2f7c255d4fb65193b711e8f77fe9", + "size": 3171 + }, + "ION/02_architecture/ROOT_INVARIANT_RESTORATION_PROTOCOL.md": { + "path": "ION/02_architecture/ROOT_INVARIANT_RESTORATION_PROTOCOL.md", + "sha256": "d57f1bbf1f8aae5761eaa3679cd8ab0c15b8a52a15d06e777ecb8867f9ec6422", + "size": 2949 + }, + "ION/02_architecture/RUNTIME_IDENTITY_ENVELOPE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_IDENTITY_ENVELOPE_PROTOCOL.md", + "sha256": "cd09a7e740515ca25f05687015c2cc9cc2b01b6b9a860c316e70f9e50cc1d1fe", + "size": 3255 + }, + "ION/02_architecture/RUNTIME_REPORT_ANCHOR_NORMALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_ANCHOR_NORMALIZATION_PROTOCOL.md", + "sha256": "7322d23746e6c9b6586e71a6e5004254814ec59015ba581716af3671c432e9b6", + "size": 2665 + }, + "ION/02_architecture/RUNTIME_REPORT_ARTIFACT_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_ARTIFACT_PROTOCOL.md", + "sha256": "1158a9d032bda2d02383772a7c0c011f40d1fbae834ce3a14aaaec30269e6d7b", + "size": 1303 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_FAMILY_SUMMARY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_FAMILY_SUMMARY_PROTOCOL.md", + "sha256": "b7c0b74c820d77f7cd25209094f7fa9aa7922b9ac08aee97c0cce6e64068c310", + "size": 2136 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TEMPORAL_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TEMPORAL_PROTOCOL.md", + "sha256": "bae00e03020fa32029f43603e0c787b7dc5bb950f17f305a22594251a2a1c638", + "size": 1372 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_COMPARISON_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_COMPARISON_PROTOCOL.md", + "sha256": "2f3d46274211156d252406349155414a2880a3e58e12a1ed788e20d6edbf5db7", + "size": 1381 + }, + "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BIDIRECTIONAL_TRACE_PROTOCOL.md", + "sha256": "18b237c76ba6a79cecf69a5b7665358e426e9a7531d017ed597a651b2db7bb58", + "size": 1241 + }, + "ION/02_architecture/RUNTIME_REPORT_BROWSER_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_BROWSER_PROTOCOL.md", + "sha256": "d0b868f28f81cdc1d662284e6d6006fbbdf90c477cbdf480f1aaca693d77b96b", + "size": 1963 + }, + "ION/02_architecture/RUNTIME_REPORT_COMPARATIVE_PROVENANCE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_COMPARATIVE_PROVENANCE_PROTOCOL.md", + "sha256": "82215c70ce6d5c8f69e9a39b297d6b477212dc448730f92dab4a3beefafd9f11", + "size": 2122 + }, + "ION/02_architecture/RUNTIME_REPORT_CROSSLINK_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_CROSSLINK_PROTOCOL.md", + "sha256": "cbdce9d184a217751df487139cc693597cb716fa968458362511a5c2fac6307f", + "size": 1824 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_BROWSER_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_BROWSER_PROTOCOL.md", + "sha256": "e5a1551cb7230d37bad223607fb8dd385b2b7da233376ae8856e7ebd04f84950", + "size": 693 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_CATALOG_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_CATALOG_PROTOCOL.md", + "sha256": "4ff39e0f298cff13e654944b46156aa31c2b56ef686d78f0215c294aa7dad8b3", + "size": 1154 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_PROFILE_PROTOCOL.md", + "sha256": "5881a1843ac7706e2f9be32e10efb2e3b2d35e15513c95a7e1a1550e4c351cb5", + "size": 1680 + }, + "ION/02_architecture/RUNTIME_REPORT_DIGEST_REVERSE_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_DIGEST_REVERSE_TRACE_PROTOCOL.md", + "sha256": "9cbdad12e4049b8ceb9abcf133ac79f627624a9551facfc04ad2dd1adbdb0fb5", + "size": 2269 + }, + "ION/02_architecture/RUNTIME_REPORT_FAMILY_SUMMARY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_FAMILY_SUMMARY_PROTOCOL.md", + "sha256": "f156652864557bdabf278b5247edd35dbf7255d0ad263ce99a7f54bee15e6c06", + "size": 2646 + }, + "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_AGGREGATION_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_AGGREGATION_PROTOCOL.md", + "sha256": "27792e4bee243ced0e6fcc8cb031a142987709cdbb68d5d6d25c660ebcc1ba73", + "size": 952 + }, + "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_GOVERNANCE_PROTOCOL.md", + "sha256": "450fda94ff7a2536401cffa68d4b410a546defad30d1341ee7a9e42c2ab93cd8", + "size": 2273 + }, + "ION/02_architecture/RUNTIME_REPORT_NAVIGATION_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_NAVIGATION_PROTOCOL.md", + "sha256": "689e9038704294253139ba6e8a54324d2d59be06f636ff33fcc3784148ff76df", + "size": 1749 + }, + "ION/02_architecture/RUNTIME_REPORT_OPERATOR_DIGEST_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_OPERATOR_DIGEST_PROTOCOL.md", + "sha256": "f1c22a7a745ebc13b0327df07e099ed96d9f92d256c38952e60d966d0eb47a3c", + "size": 2654 + }, + "ION/02_architecture/RUNTIME_REPORT_PROFILE_DIGEST_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_PROFILE_DIGEST_TRACE_PROTOCOL.md", + "sha256": "a8f199256f1d7d16f00acbe64530992f00fca5752e107e5909dd96abe695b768", + "size": 1681 + }, + "ION/02_architecture/RUNTIME_REPORT_PROVENANCE_TRACE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_PROVENANCE_TRACE_PROTOCOL.md", + "sha256": "45d2922c86160725b540e7776f0151113214ff8b1ecfb366929fcd535c1dd59d", + "size": 2157 + }, + "ION/02_architecture/RUNTIME_REPORT_TEMPORAL_PROVENANCE_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_TEMPORAL_PROVENANCE_PROTOCOL.md", + "sha256": "f15f3fa533cda0b55e05f36f295c9a919a7fe4022c3bc8ae4cbce49b93c4fd12", + "size": 2455 + }, + "ION/02_architecture/RUNTIME_REPORT_TRIGGER_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_TRIGGER_PROTOCOL.md", + "sha256": "1ab9f79e2fab0154a632dbec4e1d1f8bc32594efc660feb08ab139a9c24d2c03", + "size": 1388 + }, + "ION/02_architecture/RUNTIME_REPORT_VISIBILITY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_REPORT_VISIBILITY_PROTOCOL.md", + "sha256": "7ea28584b259fb3e9ce7e85905bc7aa74d955ecf952fb0f64f7190fe2dd9808b", + "size": 1547 + }, + "ION/02_architecture/RUNTIME_SESSION_AUTHORITY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_SESSION_AUTHORITY_PROTOCOL.md", + "sha256": "2ec057976f23b538c1a94a2bfc50e177c15f3a37aa4d95ebaf9f5cce63fc443c", + "size": 4000 + }, + "ION/02_architecture/RUNTIME_STATE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_STATE_BINDING_PROTOCOL.md", + "sha256": "d25a280e8617d14c85d8bd07b338058f5d9b70a3f18975a2d3fd667d4e5c882b", + "size": 2942 + }, + "ION/02_architecture/RUNTIME_STATE_QUERY_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_STATE_QUERY_PROTOCOL.md", + "sha256": "eef5ee9aee11c279f158e0616929c7cc345727853d1e0140d90d0bf69c352be8", + "size": 1786 + }, + "ION/02_architecture/RUNTIME_STATE_REPORTING_PROTOCOL.md": { + "path": "ION/02_architecture/RUNTIME_STATE_REPORTING_PROTOCOL.md", + "sha256": "b257c530d5ba379667464111479d2d1cec523d54d2135aec14870a43725c561c", + "size": 2087 + }, + "ION/02_architecture/SCHEDULE_COMPLETION_AND_ASSIGNMENT_RELEASE_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_COMPLETION_AND_ASSIGNMENT_RELEASE_PROTOCOL.md", + "sha256": "4d616ffae80e8d7ddbc0a594c3734fe5b23991d4817c1fa16d80970b531efd87", + "size": 1712 + }, + "ION/02_architecture/SCHEDULE_DISPATCH_AND_ASSIGNMENT_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_DISPATCH_AND_ASSIGNMENT_RECONCILIATION_PROTOCOL.md", + "sha256": "7f1aaf40fd63696b4451460275011bdf29e2e80b786dc360559e022e67118739", + "size": 3212 + }, + "ION/02_architecture/SCHEDULE_LINEAGE_AND_SUPERSESSION_ARCHIVAL_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_LINEAGE_AND_SUPERSESSION_ARCHIVAL_PROTOCOL.md", + "sha256": "016de5382f8068ca7419ec2a04547dcd50b3af9d24fc75f78a3f7e7c7fa7db80", + "size": 1650 + }, + "ION/02_architecture/SCHEDULE_LINEAGE_REPLAY_AND_ACTIVE_CYCLE_RECONSTRUCTION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_LINEAGE_REPLAY_AND_ACTIVE_CYCLE_RECONSTRUCTION_PROTOCOL.md", + "sha256": "5d3cd23200882301d269318e0eedf213b489da766e84633a191bd9b2e0cdb6c6", + "size": 1623 + }, + "ION/02_architecture/SCHEDULE_RESUME_BUNDLE_MATERIALIZATION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_RESUME_BUNDLE_MATERIALIZATION_PROTOCOL.md", + "sha256": "7cb94715d19e4c4f3dbfe03e35d5e603b40a00d2d6edb18fe6e2bf2f1cea0d61", + "size": 1823 + }, + "ION/02_architecture/SCHEDULE_RESUME_PROJECTION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_RESUME_PROJECTION_PROTOCOL.md", + "sha256": "a6ad2562185ee8624940a72501973f1f1ecd1af9b998fa1efa1f48c63cb82bc1", + "size": 1849 + }, + "ION/02_architecture/SCHEDULE_SETTLEMENT_AND_FUTURE_REENTRY_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_SETTLEMENT_AND_FUTURE_REENTRY_PROTOCOL.md", + "sha256": "fa0e7ed910a155d1e0996b2175921d0689e7d3c5ea8389249aac94e86ece8606", + "size": 2413 + }, + "ION/02_architecture/SCHEDULE_STALE_RETRY_AND_REASSIGNMENT_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_STALE_RETRY_AND_REASSIGNMENT_PROTOCOL.md", + "sha256": "01987da92531534d82b82f983f64f7f0729ead98ee2af68acf98c6917b112ace", + "size": 1797 + }, + "ION/02_architecture/SCHEDULE_TAKEOVER_ENTRY_ACTIVATION_VALIDATION_PROTOCOL.md": { + "path": "ION/02_architecture/SCHEDULE_TAKEOVER_ENTRY_ACTIVATION_VALIDATION_PROTOCOL.md", + "sha256": "3dc42c86d51817594c00718608731fd44435415d043a30a82ac00cd7e443d15f", + "size": 780 + }, + "ION/02_architecture/SELF_DOCUMENTATION_EVENT_PIPELINE_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_DOCUMENTATION_EVENT_PIPELINE_PROTOCOL.md", + "sha256": "51191bb8470caf8fdf0a64abbec300920cc86f84dfa9cdf0c68164c848bb077f", + "size": 1110 + }, + "ION/02_architecture/SELF_DOCUMENTING_CONTEXT_GRAPH_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_DOCUMENTING_CONTEXT_GRAPH_PROTOCOL.md", + "sha256": "1d7424d12360c1a1f38a55a319f47f60839aa48455c70942aadba47f5b6ea76c", + "size": 5780 + }, + "ION/02_architecture/SELF_MODIFICATION_REVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_MODIFICATION_REVIEW_PROTOCOL.md", + "sha256": "9a1f3e59d10e0f2bd37258f4fec467bef7caaee4a194ed26dec1d364589b5654", + "size": 1657 + }, + "ION/02_architecture/SELF_MOUNT_FRONT_DOOR_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_MOUNT_FRONT_DOOR_BINDING_PROTOCOL.md", + "sha256": "e0248c1d9f66f021ca994f112d0db91e82a422d444eb0027f175af16ac6c0570", + "size": 1696 + }, + "ION/02_architecture/SELF_MOUNT_GRAPH_INTEGRATION_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_MOUNT_GRAPH_INTEGRATION_PROTOCOL.md", + "sha256": "f3aa6d80fbae51939cd91a36d3c27a58c9a36b9e23d5674921d04293977b8919", + "size": 1229 + }, + "ION/02_architecture/SELF_SURFACE_DRIFT_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/SELF_SURFACE_DRIFT_GATE_PROTOCOL.md", + "sha256": "e3e1498f8c706a5906bdfa410e4d44706232d4cb5e952bbb56b4b42cdf501bb4", + "size": 1231 + }, + "ION/02_architecture/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.md": { + "path": "ION/02_architecture/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.md", + "sha256": "332f2b7e31980019bb9b4e6174abbd933e5c15b65261368e486c1e9665c76388", + "size": 4156 + }, + "ION/02_architecture/SINGLE_CARRIER_FULL_SPECTRUM_CHAT_PROTOCOL.md": { + "path": "ION/02_architecture/SINGLE_CARRIER_FULL_SPECTRUM_CHAT_PROTOCOL.md", + "sha256": "45b395a32d17e474b7e7f86ab16ae85ab365f26669ac75a09660db7c66ad149d", + "size": 13210 + }, + "ION/02_architecture/SOVEREIGN_RELAY_PROTOCOL.md": { + "path": "ION/02_architecture/SOVEREIGN_RELAY_PROTOCOL.md", + "sha256": "38d20d9b26967f32c3ea160196683ecb8d7f0d6ceb246076288a440cf9cf21a9", + "size": 6414 + }, + "ION/02_architecture/STALE_NAME_DETECTION_PROTOCOL.md": { + "path": "ION/02_architecture/STALE_NAME_DETECTION_PROTOCOL.md", + "sha256": "acd0a8610b4e55a9d4c5d14e0035c7956b48308aa68b84584a13c02e7c87d4f1", + "size": 1234 + }, + "ION/02_architecture/STEWARD_CURRENT_PHASE_ORCHESTRATION_PROTOCOL.md": { + "path": "ION/02_architecture/STEWARD_CURRENT_PHASE_ORCHESTRATION_PROTOCOL.md", + "sha256": "8e292bff6a59e3b4ee551c8acc137b4c53cf3549ebb34e1e8caa4d5cf1a50b9e", + "size": 2559 + }, + "ION/02_architecture/SUMMARY_REFRESH_BOUNDED_COMMIT_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_BOUNDED_COMMIT_DEMO_PROTOCOL.md", + "sha256": "dd551fba9ae3e21da034404c6763e28c7aba977769a13ffc87eed4f3fa7092fc", + "size": 1992 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_CERTIFICATION_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_CERTIFICATION_GATE_PROTOCOL.md", + "sha256": "51a99188b7132db9e7694d6600d416a32db7b29cba81151e80fc6f414d8bd87d", + "size": 1804 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_EVIDENCE_BUNDLE_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_EVIDENCE_BUNDLE_PROTOCOL.md", + "sha256": "ada2b14f7a0eb7577768c9e0f5b764465d5992d42ce77839b2cf3ff3f54f02fc", + "size": 759 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_CAPSULE_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_CAPSULE_PROTOCOL.md", + "sha256": "a4662751ae20a91c1e0c03f2c95af0f8a47e56ffe9107b1d1ee0e9da1f325983", + "size": 1757 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_VERIFIER_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_RELEASE_CANDIDATE_VERIFIER_PROTOCOL.md", + "sha256": "37a1f96a1f6628c8cc26533677050f08ee1a7311171a5d2dd28dcf4a78509c0f", + "size": 2263 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_CLI_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_CLI_PROTOCOL.md", + "sha256": "df5597eb28f9bf855dcf7b30fba689fca348fd4f7b7b32da160de50b477326c8", + "size": 2361 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_DOCTOR_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_REPLAY_DOCTOR_PROTOCOL.md", + "sha256": "1fb41f9f9ad2d5b379bb7f368631a302db638247f002f5354d6ffb3ccfc34512", + "size": 2181 + }, + "ION/02_architecture/SUMMARY_REFRESH_DEMO_RUNTIME_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_DEMO_RUNTIME_PROTOCOL.md", + "sha256": "5160904702fa4ac4f7bdced3e14bc5be1bc30017053895e4d87e1a92e5dfba1a", + "size": 1843 + }, + "ION/02_architecture/SUMMARY_REFRESH_GRAPH_PROPOSAL_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_GRAPH_PROPOSAL_DEMO_PROTOCOL.md", + "sha256": "a792bb338b38cace9a7ea3968f605198e8e6b94acc6885b2d1f3c16eba2d6d60", + "size": 1656 + }, + "ION/02_architecture/SUMMARY_REFRESH_PROJECTION_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_PROJECTION_DEMO_PROTOCOL.md", + "sha256": "c40f96c7c1d2d2b04660aaebef16127ed7b53176bb961595fa54c5cd91cd1569", + "size": 1563 + }, + "ION/02_architecture/SUMMARY_REFRESH_REVIEW_DEMO_PROTOCOL.md": { + "path": "ION/02_architecture/SUMMARY_REFRESH_REVIEW_DEMO_PROTOCOL.md", + "sha256": "31e9bd7b688be4a9c0cbc78fa530283f9831a0a88cf567b2ae8d1a75aa0db2fe", + "size": 1992 + }, + "ION/02_architecture/SUPERVISED_AUTOMATION_POLICY_PROTOCOL.md": { + "path": "ION/02_architecture/SUPERVISED_AUTOMATION_POLICY_PROTOCOL.md", + "sha256": "b16ec2bebe523ce8f3126262b1905c1e936ae0d96ebb1785e2da9fb27c95dbe5", + "size": 1804 + }, + "ION/02_architecture/SUPERVISED_DAEMON_SERVICE_PROTOCOL.md": { + "path": "ION/02_architecture/SUPERVISED_DAEMON_SERVICE_PROTOCOL.md", + "sha256": "526344f301d26fd6818a9dda91ec5c61a0a4b6ff8ec956a6d5d0c67f2daf58a9", + "size": 1524 + }, + "ION/02_architecture/SYSTEM_CARD_AND_DOMAIN_MAP_PROTOCOL.md": { + "path": "ION/02_architecture/SYSTEM_CARD_AND_DOMAIN_MAP_PROTOCOL.md", + "sha256": "08d3936bcec809996b6c848945b20e93db1f02182ac19cfd1910ea4769d48eec", + "size": 1408 + }, + "ION/02_architecture/TEMPLATE_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_BINDING_PROTOCOL.md", + "sha256": "e15ed24c66358bb894d69405ebed14017e4e2298837ba1ef6f7a8c457c68330b", + "size": 4291 + }, + "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_PROTOCOL.md", + "sha256": "ce95a222c1ca5b67da827e73a3221ca3d89282bad9e976786ee4ac81564792bc", + "size": 3234 + }, + "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_WITNESS_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_COMPLETION_EVENT_WITNESS_PHASE_PROTOCOL.md", + "sha256": "2f5393adccfc64e610029f6a2e99acb7b85f7d2808229fa71c29123f74c0960d", + "size": 3510 + }, + "ION/02_architecture/TEMPLATE_COMPLETION_WATCHER_AND_INDEXER_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_COMPLETION_WATCHER_AND_INDEXER_PROTOCOL.md", + "sha256": "fe77231aa8f6b1e1709e2cc994fb9b59313e24c22e19f7d6c48868dbb6ee2e89", + "size": 2156 + }, + "ION/02_architecture/TEMPLATE_CONTRACT_PROJECTION_ALIGNMENT_AUDIT_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_CONTRACT_PROJECTION_ALIGNMENT_AUDIT_PROTOCOL.md", + "sha256": "7621c52603746663ae8686c061d819dda20e7bceb1c1e0f701d8a47b2674f77f", + "size": 2668 + }, + "ION/02_architecture/TEMPLATE_CONTRACT_REGISTRY_PROJECTION_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_CONTRACT_REGISTRY_PROJECTION_PROTOCOL.md", + "sha256": "16e1584fd47e9b2087c35e37e6f03f3e6693665380d36a0974e9dd3f7fe41157", + "size": 2879 + }, + "ION/02_architecture/TEMPLATE_CONTRACT_RELEASE_GATE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_CONTRACT_RELEASE_GATE_PROTOCOL.md", + "sha256": "52b008cc39ffdb3d4c17e878670aec0d2176ee31a61f887be8698cdcf3cdcc17", + "size": 2422 + }, + "ION/02_architecture/TEMPLATE_EVENT_REACTION_PIPELINE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_EVENT_REACTION_PIPELINE_PROTOCOL.md", + "sha256": "eac05087a489b4e832c0fba0b0bc49dfcccff9e17c65f76d0f24227c22de10bf", + "size": 4000 + }, + "ION/02_architecture/TEMPLATE_GRAPH_COMMIT_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_GRAPH_COMMIT_PHASE_PROTOCOL.md", + "sha256": "a49466edc259d007ea254336a222d86248d48d79701ea5c145cbcdebd4c235e0", + "size": 1647 + }, + "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_PROPOSAL_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_PROPOSAL_PHASE_PROTOCOL.md", + "sha256": "47f5073dd115e4f490122b1de1e0a06325e822387b30255aff0b93b0902f9f62", + "size": 1167 + }, + "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_REVIEW_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_GRAPH_WRITEBACK_REVIEW_PHASE_PROTOCOL.md", + "sha256": "eafe8b2ed1effa9e5c2056bafe37ba9c3eaf52025415308d777b36fcd49701f3", + "size": 2917 + }, + "ION/02_architecture/TEMPLATE_INDEX_PROJECTION_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_INDEX_PROJECTION_PHASE_PROTOCOL.md", + "sha256": "f764fad2ad80aa5f643bdb756cb390cee3c506930aae6782cff70bf59b00d063", + "size": 1480 + }, + "ION/02_architecture/TEMPLATE_METADATA_CONTRACT_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_METADATA_CONTRACT_PROTOCOL.md", + "sha256": "8faa14bef41964e052fc7798598ecef8fe18a559ab919ca06ef3e8d99b6964d0", + "size": 4408 + }, + "ION/02_architecture/TEMPLATE_REACTION_SELECTION_WITNESS_PHASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_REACTION_SELECTION_WITNESS_PHASE_PROTOCOL.md", + "sha256": "a101c9e78adec5186aa7cf31c17c44e0e16a2de7b1da7a777b588b63311a59fd", + "size": 1770 + }, + "ION/02_architecture/TEMPLATE_SURFACE_EVOLUTION_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPLATE_SURFACE_EVOLUTION_PROTOCOL.md", + "sha256": "1bff441a28aceba989b6017d36ea25bf04a39d305eb9c847c0315e2b89eb5163", + "size": 1414 + }, + "ION/02_architecture/TEMPORAL_CONTEXT_LEASE_PROTOCOL.md": { + "path": "ION/02_architecture/TEMPORAL_CONTEXT_LEASE_PROTOCOL.md", + "sha256": "f6aac09f1302ea16a4bcae3e03c70c22033c8f12b59ac205f77e73e43590afb0", + "size": 14812 + }, + "ION/02_architecture/TEMPORAL_OBJECT_SCHEMA.md": { + "path": "ION/02_architecture/TEMPORAL_OBJECT_SCHEMA.md", + "sha256": "5419feea53bdf9912a42802b4043c02a9e87d16014afa16dd2993feb483fdfba", + "size": 13210 + }, + "ION/02_architecture/TRIPLE_TIME_RECONCILIATION_PROTOCOL.md": { + "path": "ION/02_architecture/TRIPLE_TIME_RECONCILIATION_PROTOCOL.md", + "sha256": "2a09d234f42043c90b71b4943ef17610e821509c2151d338e6da24067c0994b4", + "size": 15147 + }, + "ION/02_architecture/TRUE_NAME_AND_SEMANTIC_LAYER_PROTOCOL.md": { + "path": "ION/02_architecture/TRUE_NAME_AND_SEMANTIC_LAYER_PROTOCOL.md", + "sha256": "d7bdf1b8f3d005e3e70a8dbe803356063e4df932c963213f4c431dbf1a1a3f0b", + "size": 5343 + }, + "ION/02_architecture/VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_BEFORE_AFTER_VERIFICATION_LOOP_PROTOCOL.md", + "sha256": "9a006e11696b35bd26a0aad6887e28d0afaf786b4f77782c3c37b0e5bc360b80", + "size": 618 + }, + "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_PROTOCOL.md", + "sha256": "0a98f07e89f8f68624f01a5f63b5d385ca56eb47d8d437fa10f53a3e3491301e", + "size": 4025 + }, + "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_CLOSURE_GRAPH_PROJECTION_PROTOCOL.md", + "sha256": "4d8a1ca802053e7299b5e852ca2b1f49df567683ef9967c831a40c02049c4d7c", + "size": 940 + }, + "ION/02_architecture/VISUAL_DIAGNOSIS_RECEIPT_AND_BROWSER_HARNESS_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_DIAGNOSIS_RECEIPT_AND_BROWSER_HARNESS_PROTOCOL.md", + "sha256": "ff80dbe79408edba0e1712adf9920532479df2fda863fffd4cf47bd180a33f03", + "size": 2140 + }, + "ION/02_architecture/VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_PROTOCOL.md", + "sha256": "3e1912c6c8f6d6eba2da3148492ddd5cffffb0aa33512bd1fa9b5c435b8ae57f", + "size": 2007 + }, + "ION/02_architecture/VISUAL_OBSERVATION_PACKET_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_OBSERVATION_PACKET_PROTOCOL.md", + "sha256": "c36bd692fd122efdb32f1a8a17759edd223603dd8abece61a3ad98dee856f39c", + "size": 814 + }, + "ION/02_architecture/VISUAL_PERCEPTION_AND_INTERACTION_AGENT_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_PERCEPTION_AND_INTERACTION_AGENT_PROTOCOL.md", + "sha256": "02ff2716051505941fb942e6e00bda9f01ff7b87e9923e2565c011a0fba124f1", + "size": 1481 + }, + "ION/02_architecture/VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_REGRESSION_FIXTURE_RUNNER_PLAN_PROTOCOL.md", + "sha256": "0851ad7f721008b6b1e8465b19b9c86959eacd5e67aa309c44cafcb97221058b", + "size": 2557 + }, + "ION/02_architecture/VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_PROTOCOL.md": { + "path": "ION/02_architecture/VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_PROTOCOL.md", + "sha256": "d4fa3ea33657b2b11424c10e9870db25dbf8557de2f2facac8ae50a0091a06c8", + "size": 1675 + }, + "ION/02_architecture/WORKING_AGENT_SELF_USE_PROTOCOL.md": { + "path": "ION/02_architecture/WORKING_AGENT_SELF_USE_PROTOCOL.md", + "sha256": "dd4bd9200881188600297e2f08c5cf68286e2e7644cafb4511226707867112c0", + "size": 2860 + }, + "ION/03_registry/README.md": { + "path": "ION/03_registry/README.md", + "sha256": "65db424d7cf407a75975b60e70ae2c1c90b416adf70f699dcc456fd54564e5e6", + "size": 1305 + }, + "ION/03_registry/agent_context_dynamics_registry.yaml": { + "path": "ION/03_registry/agent_context_dynamics_registry.yaml", + "sha256": "e5a0437b71312435182e6c0ff930f5a088d7f46863996ee25596252c7577dea4", + "size": 1360 + }, + "ION/03_registry/agent_context_system_registry.yaml": { + "path": "ION/03_registry/agent_context_system_registry.yaml", + "sha256": "0c9e8d86b55bcf310f85adabbdee3d4d7947a24c0ce05680b608d29d5466fd12", + "size": 9343 + }, + "ION/03_registry/agent_roster_registry.yaml": { + "path": "ION/03_registry/agent_roster_registry.yaml", + "sha256": "92f8852b1ebff1916c5313d6e82a6cd01569135f73f0ec7ce6a8f4aa3418f6d6", + "size": 17281 + }, + "ION/03_registry/agent_succession_packet.schema.json": { + "path": "ION/03_registry/agent_succession_packet.schema.json", + "sha256": "df51c2ae05f3a3d2efb2a7c7d86f5ff97265db88eebcaee775e63d1f945e0492", + "size": 897 + }, + "ION/03_registry/api_rate_governor_decision.schema.json": { + "path": "ION/03_registry/api_rate_governor_decision.schema.json", + "sha256": "5997e2e8f2d342dedf32fbb152cb19f8276916a92a6a10b4b4085e72e79bd044", + "size": 1000 + }, + "ION/03_registry/approved_context_index.yaml": { + "path": "ION/03_registry/approved_context_index.yaml", + "sha256": "7cfffa10d804418a89925ca09384aa8b513dff5f403989a547e68d410ba77e99", + "size": 1681 + }, + "ION/03_registry/authority_lineage_registry.json": { + "path": "ION/03_registry/authority_lineage_registry.json", + "sha256": "3e48c0aebcb60bb56ba1400f9b130638b1abb48c32759e7f9e7882466a28bd14", + "size": 3282 + }, + "ION/03_registry/boots/ATLAS.boot.md": { + "path": "ION/03_registry/boots/ATLAS.boot.md", + "sha256": "520c8cb87d75c8339e252e29f05b1441074a0f6eaceeb1606d5737407010cb32", + "size": 7916 + }, + "ION/03_registry/boots/CANON_LIBRARIAN.boot.md": { + "path": "ION/03_registry/boots/CANON_LIBRARIAN.boot.md", + "sha256": "7a174df0f7d9c0ba629b3e9ec861fe3f29da5e1705eacd55702fe3ca669b8f19", + "size": 1527 + }, + "ION/03_registry/boots/CODEX.boot.md": { + "path": "ION/03_registry/boots/CODEX.boot.md", + "sha256": "159d846e1e43f29df973a3dacf5f5d70da70a4ce2bc2ea692227b0043d81bebd", + "size": 1548 + }, + "ION/03_registry/boots/CONTEXT_CARTOGRAPHER.boot.md": { + "path": "ION/03_registry/boots/CONTEXT_CARTOGRAPHER.boot.md", + "sha256": "b7cedb6d70a4b72bf8802645315b144db962fbf4375f25529b480502bab2858d", + "size": 1528 + }, + "ION/03_registry/boots/IONOLOGIST.boot.md": { + "path": "ION/03_registry/boots/IONOLOGIST.boot.md", + "sha256": "39a8ac38f75ac3522a748180203b47a4aac9da7007fe5d67e3bfaa5c186fb9f0", + "size": 1469 + }, + "ION/03_registry/boots/MASON.boot.md": { + "path": "ION/03_registry/boots/MASON.boot.md", + "sha256": "3a550a6e00a87faa710b42145448536e3f8da045ddf61fe3b4682139ae0aaf1a", + "size": 2696 + }, + "ION/03_registry/boots/NEMESIS.boot.md": { + "path": "ION/03_registry/boots/NEMESIS.boot.md", + "sha256": "5c163168bb48c7001f3119b66b7141cb4bf99875d72ab7a1e334612707ebca83", + "size": 3175 + }, + "ION/03_registry/boots/PERSONA_INTERFACE.boot.md": { + "path": "ION/03_registry/boots/PERSONA_INTERFACE.boot.md", + "sha256": "9b1875264da2f289fbac304bf13dd269851a18edffbafc561e5dc4b94dff3a4a", + "size": 2533 + }, + "ION/03_registry/boots/RELAY.boot.md": { + "path": "ION/03_registry/boots/RELAY.boot.md", + "sha256": "93d80e353b48cd37c1620bb2fa04994569b3b98b256079b7c83dd4d852e83b57", + "size": 7462 + }, + "ION/03_registry/boots/RUNTIME_CARTOGRAPHER.boot.md": { + "path": "ION/03_registry/boots/RUNTIME_CARTOGRAPHER.boot.md", + "sha256": "bc1d296eb03a8a8599bf873d3f28ab01429817f25076dbd3d88a65f46950da46", + "size": 1517 + }, + "ION/03_registry/boots/SCRIBE.boot.md": { + "path": "ION/03_registry/boots/SCRIBE.boot.md", + "sha256": "2648e4bdc318b9e272c913eb12567025a20428512bd2c7f82b747548a89752ed", + "size": 1803 + }, + "ION/03_registry/boots/STEWARD.boot.md": { + "path": "ION/03_registry/boots/STEWARD.boot.md", + "sha256": "a8558d06f7e5a1829b8eb362597ccd9064889eb7cca1af990f94f62e177729b4", + "size": 2041 + }, + "ION/03_registry/boots/TEMPLATE_CURATOR.boot.md": { + "path": "ION/03_registry/boots/TEMPLATE_CURATOR.boot.md", + "sha256": "59eb78ea319d77b7f2498c374e4410b78a1006db88849a266669bea41b5ab7a8", + "size": 1501 + }, + "ION/03_registry/boots/THOTH.boot.md": { + "path": "ION/03_registry/boots/THOTH.boot.md", + "sha256": "a8f6cb2ba321b2de3992d274ce34256e92c675e8eb8c8441e2e3a60fc10609e2", + "size": 2657 + }, + "ION/03_registry/boots/VESTIGE.boot.md": { + "path": "ION/03_registry/boots/VESTIGE.boot.md", + "sha256": "8a6e30347135068880f6b34a56e6c6ab172d808b95ab7a2b79f05446c46b1a41", + "size": 5321 + }, + "ION/03_registry/boots/VICE.boot.md": { + "path": "ION/03_registry/boots/VICE.boot.md", + "sha256": "6b0cc54a59e54afbb530282c9e103324e772d36e51e44c7b187fa8202359226b", + "size": 7482 + }, + "ION/03_registry/boots/VIZIER.boot.md": { + "path": "ION/03_registry/boots/VIZIER.boot.md", + "sha256": "b19c88cd11282d2586c8c87bccba0361fed5b94ffa08d9209c56e7307b89e62a", + "size": 6267 + }, + "ION/03_registry/boots/VIZIER_DAIMON_GPT.boot.md": { + "path": "ION/03_registry/boots/VIZIER_DAIMON_GPT.boot.md", + "sha256": "79739ff3c7b3415fed372de18b76adf9c27a8e33e8e9c57b36de8ff07f7c4ac1", + "size": 2831 + }, + "ION/03_registry/boots/VIZIER_DAIMON_OPUS.boot.md": { + "path": "ION/03_registry/boots/VIZIER_DAIMON_OPUS.boot.md", + "sha256": "2cb3c1af944f44f651e4b4ba069749e5346e017b35f279cf35818253849beaf4", + "size": 2821 + }, + "ION/03_registry/branch_consolidation_ui_model_governor_binding.schema.json": { + "path": "ION/03_registry/branch_consolidation_ui_model_governor_binding.schema.json", + "sha256": "ae144a6c30150899f1e884702d890064588baea3a0754fedc33a40f74a0d7362", + "size": 1163 + }, + "ION/03_registry/branch_consolidation_ui_model_governor_policy.yaml": { + "path": "ION/03_registry/branch_consolidation_ui_model_governor_policy.yaml", + "sha256": "66cfc7933927d82f8d65853f65d5798e0f9dfa72f1da2384af77fb6666729271", + "size": 845 + }, + "ION/03_registry/budget_governor_decision.schema.json": { + "path": "ION/03_registry/budget_governor_decision.schema.json", + "sha256": "98a778cba5eed2e881cbc064c261d8ca0b0871dfe06d395f7a80ed5de474ca38", + "size": 1105 + }, + "ION/03_registry/budget_policy.yaml": { + "path": "ION/03_registry/budget_policy.yaml", + "sha256": "af9b81beea5db061a5c2ebfaa80961d712f7edfc4f97e87949d6a254dbe2d604", + "size": 726 + }, + "ION/03_registry/capabilities/capability_registry.json": { + "path": "ION/03_registry/capabilities/capability_registry.json", + "sha256": "9c712d0e3dc7cb4ded99c6b47b28817c67ec6a2504ad104723586fc94bc6b8dd", + "size": 1912 + }, + "ION/03_registry/carrier_capability_registry.yaml": { + "path": "ION/03_registry/carrier_capability_registry.yaml", + "sha256": "dcc403dff95daacc0a4c737e4c755f8e6562d5add728d341e298088ef28418c4", + "size": 5886 + }, + "ION/03_registry/chatgpt_browser_carrier_profile.yaml": { + "path": "ION/03_registry/chatgpt_browser_carrier_profile.yaml", + "sha256": "74d56f18f94b0b92d289f6f063717fc8c1cc5702b6c7c0e6aec161df4e949181", + "size": 2433 + }, + "ION/03_registry/codex_cli_carrier_profile.yaml": { + "path": "ION/03_registry/codex_cli_carrier_profile.yaml", + "sha256": "b83c081562482ebd44399830722784f5a09f293964dea8f7dd75c9afa3c8b0c6", + "size": 1603 + }, + "ION/03_registry/codex_extension_carrier_profile.yaml": { + "path": "ION/03_registry/codex_extension_carrier_profile.yaml", + "sha256": "2a2d71c4de9744a867e4b7c039d0fdbdb0a00a3d137dd86ec7dbf92bf71ccb2e", + "size": 1075 + }, + "ION/03_registry/context_graph_edge_class_registry.yaml": { + "path": "ION/03_registry/context_graph_edge_class_registry.yaml", + "sha256": "d5c126cfe1c58f2dab98500abe9025643c444b871a45baf83847f89216ae6bc6", + "size": 2980 + }, + "ION/03_registry/context_graph_node_class_registry.yaml": { + "path": "ION/03_registry/context_graph_node_class_registry.yaml", + "sha256": "c721b8360dad697f5465a49097d9916916bd1a42d29654984a147e13612206a1", + "size": 4197 + }, + "ION/03_registry/context_graph_region_registry.yaml": { + "path": "ION/03_registry/context_graph_region_registry.yaml", + "sha256": "d6987f0e19cb325e65eb83982e1fa8918e12d6a58a3862a81957ffbcdeac99be", + "size": 2434 + }, + "ION/03_registry/context_graph_substrate_registry.yaml": { + "path": "ION/03_registry/context_graph_substrate_registry.yaml", + "sha256": "d5c5232c029c768a337929948913a40aee2d2c44d7a9ad45fe0681d7abb31e57", + "size": 16241 + }, + "ION/03_registry/context_lifecycle_policy.yaml": { + "path": "ION/03_registry/context_lifecycle_policy.yaml", + "sha256": "e0ef8943f623b134547b3c6779b7df9ed097947f4a6415144486b1cbd2b920e2", + "size": 1229 + }, + "ION/03_registry/conversational_receipt.schema.json": { + "path": "ION/03_registry/conversational_receipt.schema.json", + "sha256": "8abb7ee1192da88d0ed4a2158eaf776bddf0f5914c312dd02529804b1a0ecfe9", + "size": 611 + }, + "ION/03_registry/current_phase_template_surface_registry.yaml": { + "path": "ION/03_registry/current_phase_template_surface_registry.yaml", + "sha256": "b220660ab1cb3447fef24787d4e3bbc59cb794105cd49afb61d5c67844ff3e5a", + "size": 35014 + }, + "ION/03_registry/cursor_subagent_role_mount.schema.json": { + "path": "ION/03_registry/cursor_subagent_role_mount.schema.json", + "sha256": "3c00e5b3ff4848547197f5411fcdef07cfe677d3a8ce82e4f5d8b9f960167bcd", + "size": 3783 + }, + "ION/03_registry/daimon_matrix.yaml": { + "path": "ION/03_registry/daimon_matrix.yaml", + "sha256": "604e0fe0908aee67320497cff61d89b5479eeed6f5ce85c14454a6814fa0e0bb", + "size": 3664 + }, + "ION/03_registry/doctrine_evolution_registry.yaml": { + "path": "ION/03_registry/doctrine_evolution_registry.yaml", + "sha256": "af9f5e324094bee693f0cb289ec0aae4095b1812ed186cf6ec53c2bc41d5bca9", + "size": 1929 + }, + "ION/03_registry/domain_map_registry.yaml": { + "path": "ION/03_registry/domain_map_registry.yaml", + "sha256": "f11f36e82160ae1b4f9e13a0a56376764f52f62e71ff1783571fb3c33006eae7", + "size": 590 + }, + "ION/03_registry/domains/README.md": { + "path": "ION/03_registry/domains/README.md", + "sha256": "8f144529a06e3bdb6e4d758272a39f4e13f10d5ce21cefe001d5dc99e0a78242", + "size": 1311 + }, + "ION/03_registry/domains/activation_witness/2026-04-07_confidence_drift_review.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-07_confidence_drift_review.activation.yaml", + "sha256": "f62e1df6af0e4b0a4dfab061d514813e0f6d4c06b33c55759c2be8f29ccedaa9", + "size": 839 + }, + "ION/03_registry/domains/activation_witness/2026-04-07_construction_routing_integration.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-07_construction_routing_integration.activation.yaml", + "sha256": "379921f14822a808e577f75afa90deb1850c5c38d96eaa5abac5603939b0ab87", + "size": 757 + }, + "ION/03_registry/domains/activation_witness/2026-04-07_continuity_context_resumability.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-07_continuity_context_resumability.activation.yaml", + "sha256": "e4ad5dfa62dba977b5c41ac01a8f98d848a870368991ec3a3473f22ae30f2732", + "size": 681 + }, + "ION/03_registry/domains/activation_witness/2026-04-12_current_phase_orchestration_management.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-12_current_phase_orchestration_management.activation.yaml", + "sha256": "bee6f30b3e529ad16aeb83b0101351661324c16ad95508c3f4ecb18cc9417620", + "size": 842 + }, + "ION/03_registry/domains/activation_witness/2026-04-22_archaeology_drift_watch.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-22_archaeology_drift_watch.activation.yaml", + "sha256": "d2d9aca0c7484ca256f4091227513f550cf17885c9ab908e6231e74e86a2b359", + "size": 958 + }, + "ION/03_registry/domains/activation_witness/2026-04-22_communications_packet_relay.activation.yaml": { + "path": "ION/03_registry/domains/activation_witness/2026-04-22_communications_packet_relay.activation.yaml", + "sha256": "96a4cf7db22a5a0f40523338c175a05174c015004f926a311bc4711557ed4ebe", + "size": 922 + }, + "ION/03_registry/domains/domain.archaeology_drift_watch.domain.yaml": { + "path": "ION/03_registry/domains/domain.archaeology_drift_watch.domain.yaml", + "sha256": "7ba313a736a4ea2f96d108ef4d140a8811eb9dcc5e7f78b4b694f12377403f62", + "size": 1422 + }, + "ION/03_registry/domains/domain.communications_packet_relay.domain.yaml": { + "path": "ION/03_registry/domains/domain.communications_packet_relay.domain.yaml", + "sha256": "21f1cb7ca6e8ca590e9d6cb1e3e32d89b98fa1a15a7d7bb5c74972a82615cecb", + "size": 1333 + }, + "ION/03_registry/domains/domain.confidence_drift_review.domain.yaml": { + "path": "ION/03_registry/domains/domain.confidence_drift_review.domain.yaml", + "sha256": "9a05ef6561be3f74392b52321f510c0f444da24b4add27529e56a557fbe5351b", + "size": 1103 + }, + "ION/03_registry/domains/domain.construction_routing_integration.domain.yaml": { + "path": "ION/03_registry/domains/domain.construction_routing_integration.domain.yaml", + "sha256": "784b26a461db7f0b0d8dfdb6635735d8093d155259691bd98db5cbd40da2d017", + "size": 1113 + }, + "ION/03_registry/domains/domain.continuity_context_resumability.domain.yaml": { + "path": "ION/03_registry/domains/domain.continuity_context_resumability.domain.yaml", + "sha256": "80638e6e1a2ceeafe3cf40a1d60581f370cc3ce1fba0fdf3523634c9083176c2", + "size": 1075 + }, + "ION/03_registry/domains/domain.current_phase_orchestration_management.domain.yaml": { + "path": "ION/03_registry/domains/domain.current_phase_orchestration_management.domain.yaml", + "sha256": "faaff4399ecdb4bbdb267e5e5b1474c1cd90bba2d03fa89ed75cddd64181f052", + "size": 1096 + }, + "ION/03_registry/domains/domain.user_persona_interface.domain.yaml": { + "path": "ION/03_registry/domains/domain.user_persona_interface.domain.yaml", + "sha256": "1a5ff7f24d85d2740573054f61d5e0b69cd7c82a6f49587b8aac1affe9e3bf7b", + "size": 956 + }, + "ION/03_registry/expressive_telemetry_policy.yaml": { + "path": "ION/03_registry/expressive_telemetry_policy.yaml", + "sha256": "9e2585fc7c9cf818d0ad251d1d5dff0ebb18b8c0aeac622a1e7090bdc11b50bc", + "size": 588 + }, + "ION/03_registry/expressive_telemetry_runtime.schema.json": { + "path": "ION/03_registry/expressive_telemetry_runtime.schema.json", + "sha256": "c8a6fced3d2dd4bd43358f81a18c4699a47120ef7a5d57d5b4e2be00fbe80a98", + "size": 425 + }, + "ION/03_registry/expressive_telemetry_runtime_policy.yaml": { + "path": "ION/03_registry/expressive_telemetry_runtime_policy.yaml", + "sha256": "871327f7cb333fe159fc71907d9d90d122246f781ab7d9f9128683702f71d171", + "size": 383 + }, + "ION/03_registry/front_door_self_mount_binding.schema.json": { + "path": "ION/03_registry/front_door_self_mount_binding.schema.json", + "sha256": "62a63c1b59ef1e356b585c09fe2bb6f32b3ad9fa47b9f3648969040233a95e0c", + "size": 1409 + }, + "ION/03_registry/front_stage_council_policy.yaml": { + "path": "ION/03_registry/front_stage_council_policy.yaml", + "sha256": "9d2eede5250b90955a2410f6db2a5315bf06b1ff7d1cfd657c62de20f861abeb", + "size": 488 + }, + "ION/03_registry/front_stage_council_receipt.schema.json": { + "path": "ION/03_registry/front_stage_council_receipt.schema.json", + "sha256": "c0a7b4fbd222a1066ad903595820d170d68e163cb6d660444d16e6fb626df5dc", + "size": 1190 + }, + "ION/03_registry/front_stage_council_runtime_policy.yaml": { + "path": "ION/03_registry/front_stage_council_runtime_policy.yaml", + "sha256": "91f6f9e2ed778397c54e0e54091fcb02479f5ea358ebd28748f6404310114474", + "size": 978 + }, + "ION/03_registry/gpt55_agent_succession_policy.yaml": { + "path": "ION/03_registry/gpt55_agent_succession_policy.yaml", + "sha256": "ccc5c2f0de9e07f6436d03058c9fd2f98bc5412a792df93c94c8667b6c0896ac", + "size": 465 + }, + "ION/03_registry/gpt55_front_door_self_mount_binding_policy.yaml": { + "path": "ION/03_registry/gpt55_front_door_self_mount_binding_policy.yaml", + "sha256": "dd9120ded262225482329c4fe7ae0c706cdb18a7dcc00f9b590b06b2f3afa9cc", + "size": 921 + }, + "ION/03_registry/gpt55_runtime_identity_mount_registry.yaml": { + "path": "ION/03_registry/gpt55_runtime_identity_mount_registry.yaml", + "sha256": "9be1e34da3fe3b19e7d6857639ee7397b0ab1c95f1440d8ef22bcded8eb0cdc3", + "size": 1566 + }, + "ION/03_registry/gpt55_self_mount_graph_registry.yaml": { + "path": "ION/03_registry/gpt55_self_mount_graph_registry.yaml", + "sha256": "efa6a69e0c921e88352dc59e46e0619880541dcfd82e16d7703240ed78e44f95", + "size": 706 + }, + "ION/03_registry/gpt55_self_mount_registry.yaml": { + "path": "ION/03_registry/gpt55_self_mount_registry.yaml", + "sha256": "ebc5d5633c68bf9d00ba872e34f86d7215f3ff962697d0ab9e08c9a12f752861", + "size": 2331 + }, + "ION/03_registry/gpt55_self_surface_drift_policy.yaml": { + "path": "ION/03_registry/gpt55_self_surface_drift_policy.yaml", + "sha256": "43501cf260c9f666c50ff850fe940b27af37634793f9e4eea0612751d5ac03e5", + "size": 594 + }, + "ION/03_registry/graph_reaction_registry.yaml": { + "path": "ION/03_registry/graph_reaction_registry.yaml", + "sha256": "455916988ee5f7b19e594414ec5a0534c1a60244cdb62a49c701c61c80bb30aa", + "size": 4094 + }, + "ION/03_registry/ion_chatgpt_browser_cloudflare_tunnel.schema.json": { + "path": "ION/03_registry/ion_chatgpt_browser_cloudflare_tunnel.schema.json", + "sha256": "7522925388421ac621ea7e6e4ace5c1c7bb8f05ab55089b863d5e68a6d813925", + "size": 1993 + }, + "ION/03_registry/ion_chatgpt_browser_http_mcp_preview.schema.json": { + "path": "ION/03_registry/ion_chatgpt_browser_http_mcp_preview.schema.json", + "sha256": "c59b2f3ab44018846b9230d3bad5a1242f1e0a25903f93a3eccbd8f045137cfb", + "size": 1420 + }, + "ION/03_registry/ion_chatgpt_browser_mcp_connector.schema.json": { + "path": "ION/03_registry/ion_chatgpt_browser_mcp_connector.schema.json", + "sha256": "ee7a325d320e6c656edd6e23c9c3c25fcb22973bca6322a7d523a140af47cc06", + "size": 1579 + }, + "ION/03_registry/ion_chatgpt_browser_mcp_tool_policy.yaml": { + "path": "ION/03_registry/ion_chatgpt_browser_mcp_tool_policy.yaml", + "sha256": "f698de10ec24142ddc38d2cd9f3d396dc451e943a4b622cec20a15662e8af44e", + "size": 4021 + }, + "ION/03_registry/ion_chatops_action.schema.yaml": { + "path": "ION/03_registry/ion_chatops_action.schema.yaml", + "sha256": "21c013959333994d82207429453275662005f85c32bd44d4f368ba0727ac399d", + "size": 1343 + }, + "ION/03_registry/ion_chatops_extension_policy.yaml": { + "path": "ION/03_registry/ion_chatops_extension_policy.yaml", + "sha256": "fe4a61d0d848f8322220df48e5243fa4be54fdfb4d42c8e380baca2dc1a51c9b", + "size": 892 + }, + "ION/03_registry/ion_chatops_local_daemon_policy.yaml": { + "path": "ION/03_registry/ion_chatops_local_daemon_policy.yaml", + "sha256": "861a9ea49217f27704ae81bee1c60250f0b09e3890fd33afff922b81ab54f6c3", + "size": 1139 + }, + "ION/03_registry/ion_context_authority_team_registry.yaml": { + "path": "ION/03_registry/ion_context_authority_team_registry.yaml", + "sha256": "608c5597a5ecf0fd325f506958adde2dc0d2b61f98db507d67355ef8949b372d", + "size": 3761 + }, + "ION/03_registry/ion_cursor_hook_state.schema.json": { + "path": "ION/03_registry/ion_cursor_hook_state.schema.json", + "sha256": "694072958e13d1d62a92ed05d504ffe9f0744024c8790141383ec96c5ec0a3cb", + "size": 961 + }, + "ION/03_registry/ion_file_record_schema.yaml": { + "path": "ION/03_registry/ion_file_record_schema.yaml", + "sha256": "093ed6318e660871f58c3e71b2b80b1590b4f01d1da4564bb79ebb6d35352681", + "size": 833 + }, + "ION/03_registry/ion_front_door_proof_trace.schema.json": { + "path": "ION/03_registry/ion_front_door_proof_trace.schema.json", + "sha256": "4cff6f7209c714b762b1d443cca4b153be9bf2981a2c5444d15cdb109b07ed96", + "size": 2000 + }, + "ION/03_registry/ion_github_data_plane_registry.yaml": { + "path": "ION/03_registry/ion_github_data_plane_registry.yaml", + "sha256": "ee464ce60034aece7f91d047fd6790da453fd9af1eeed6038930decd07144685", + "size": 6212 + }, + "ION/03_registry/ion_lane_timeline_view_model.schema.json": { + "path": "ION/03_registry/ion_lane_timeline_view_model.schema.json", + "sha256": "0b4827d5cc6860bec65ffd9a9f71240e454af71564966dba1b10cc4b214e92a5", + "size": 1211 + }, + "ION/03_registry/ion_lifecycle_package_manifest.schema.json": { + "path": "ION/03_registry/ion_lifecycle_package_manifest.schema.json", + "sha256": "352e8c26fa1f317eb7498153dd68cbcf08b04bda41f3289adfdcaa68d51b84ec", + "size": 2105 + }, + "ION/03_registry/ion_mcp_capability_scope_policy.yaml": { + "path": "ION/03_registry/ion_mcp_capability_scope_policy.yaml", + "sha256": "40cdcbbe269af8629a177d809e2f6ab068ac14430c6374bdac88caea64019bac", + "size": 1636 + }, + "ION/03_registry/ion_mcp_client_certification_policy.yaml": { + "path": "ION/03_registry/ion_mcp_client_certification_policy.yaml", + "sha256": "464cc1da4e133d7d121f7b1ca45bd7b7563c80dc49fcf3ff9b82de4aa3ba5c63", + "size": 1074 + }, + "ION/03_registry/ion_mcp_client_certification_report.schema.json": { + "path": "ION/03_registry/ion_mcp_client_certification_report.schema.json", + "sha256": "e11be51e9aa7b2018a5d26386e6002f7ca564c7203ceafb54ebd2cfb87cd8713", + "size": 1407 + }, + "ION/03_registry/ion_mcp_client_config_policy.yaml": { + "path": "ION/03_registry/ion_mcp_client_config_policy.yaml", + "sha256": "4f12750f71dcc22f47c5eca05193370843cc7320f1d8552ca06e31bf5da35bc4", + "size": 710 + }, + "ION/03_registry/ion_mcp_hosted_alpha_boundary_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_alpha_boundary_report.schema.json", + "sha256": "cadf18e065d3e779560eac67dfe034262b00505f0e8c46d321458328cd802fb3", + "size": 1763 + }, + "ION/03_registry/ion_mcp_hosted_auth_alpha_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_auth_alpha_policy.yaml", + "sha256": "1a3e4678426c6d94ae7c37725f065e7605e78edd70021b23c8d041e1150fd0ae", + "size": 1355 + }, + "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_policy.yaml", + "sha256": "2beab99f7a6e18d66382ae88b20046a04d3e3fcb59c70f99601e106e6b5ec380", + "size": 663 + }, + "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_bundle_replay_alpha_report.schema.json", + "sha256": "2ebb2fcb2bab9d322d96858ffa329df34a5a07d94f006c55823ff59eb7408703", + "size": 1841 + }, + "ION/03_registry/ion_mcp_hosted_http_alpha_boundary_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_http_alpha_boundary_report.schema.json", + "sha256": "39f356f29b23f04ae316934e6e5c4fc0816c79c15b84ac10791c0296f68a5e3e", + "size": 2145 + }, + "ION/03_registry/ion_mcp_hosted_oauth_http_preview_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_oauth_http_preview_policy.yaml", + "sha256": "fd6007b4a715731c8e513e3e7ece8f95994c82452ba15e2572bd189bd59deb3d", + "size": 734 + }, + "ION/03_registry/ion_mcp_hosted_oauth_http_preview_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_oauth_http_preview_report.schema.json", + "sha256": "b56a8d59d2759aca9fff2ae9f02e25e88cf7a40034ad76bac6d98299810c528d", + "size": 1514 + }, + "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_policy.yaml": { + "path": "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_policy.yaml", + "sha256": "b566f1e9bbe7fccfa989813730243e1ad8239ac7739d898467aef8fe59f3516a", + "size": 1070 + }, + "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_report.schema.json": { + "path": "ION/03_registry/ion_mcp_hosted_storage_receipt_ledger_alpha_report.schema.json", + "sha256": "6ecfac1b026061190d0dbcbcb427b4bb17799fc0063e151b53600fa044e8cf8f", + "size": 2795 + }, + "ION/03_registry/ion_mcp_local_bridge_tool_policy.yaml": { + "path": "ION/03_registry/ion_mcp_local_bridge_tool_policy.yaml", + "sha256": "7235678bd09f0e78fc0a0cf62938db3d923a65de3efa9c459e3a66a7c56d2bc9", + "size": 1041 + }, + "ION/03_registry/ion_mcp_local_bridge_tool_result.schema.json": { + "path": "ION/03_registry/ion_mcp_local_bridge_tool_result.schema.json", + "sha256": "117b61d98d44f62b968ea560ff81bf7c6066a7cd9085dce541cdbe00c3590c91", + "size": 1587 + }, + "ION/03_registry/ion_mcp_local_smoke_report.schema.json": { + "path": "ION/03_registry/ion_mcp_local_smoke_report.schema.json", + "sha256": "139195014834ad09b67080244f506df6a78ebb79c7ebd8cad6cbaaf166e067cc", + "size": 1308 + }, + "ION/03_registry/ion_mcp_mount_session.schema.json": { + "path": "ION/03_registry/ion_mcp_mount_session.schema.json", + "sha256": "51b394eb5af4493d30c767ad9798da2f25ead0ddef628db9d0ab92a176697cec", + "size": 2358 + }, + "ION/03_registry/ion_mcp_sdk_wrapper_boundary_policy.yaml": { + "path": "ION/03_registry/ion_mcp_sdk_wrapper_boundary_policy.yaml", + "sha256": "38d00107841e08e841a4f1b0daf8d6d24b42cee582963dbddf6008585d72c299", + "size": 936 + }, + "ION/03_registry/ion_mcp_transport_preview_policy.yaml": { + "path": "ION/03_registry/ion_mcp_transport_preview_policy.yaml", + "sha256": "744d13f3feb3cc05fc4cd33c8e1a6999b3592cccd9b37a1bc2641b05109d2d8a", + "size": 735 + }, + "ION/03_registry/ion_mcp_transport_preview_report.schema.json": { + "path": "ION/03_registry/ion_mcp_transport_preview_report.schema.json", + "sha256": "d20df78c3c7fb3d1b8a7236f43761f059e88ac8f4f8fecff9fac7ce6afeb3877", + "size": 1512 + }, + "ION/03_registry/ion_operational_readiness_gate_policy.yaml": { + "path": "ION/03_registry/ion_operational_readiness_gate_policy.yaml", + "sha256": "d871a6c48f31df54d9003e606b88e108d4bb5a6bf8f8d2da2e1588743281f155", + "size": 1787 + }, + "ION/03_registry/ion_receipt_hydration_view_model.schema.json": { + "path": "ION/03_registry/ion_receipt_hydration_view_model.schema.json", + "sha256": "45fbcf520972adb22d4824fe3a91f6ed0592d8db83133f5079d59758577f9e93", + "size": 1147 + }, + "ION/03_registry/ion_runtime_debug_overlay.schema.json": { + "path": "ION/03_registry/ion_runtime_debug_overlay.schema.json", + "sha256": "828f00b1565bdb85156bd320f52a125c9fd841d1acc5b8ec8975231f333d0530", + "size": 748 + }, + "ION/03_registry/ion_trunk_preservation_policy.yaml": { + "path": "ION/03_registry/ion_trunk_preservation_policy.yaml", + "sha256": "f988f9fe7e5c05d1074ac2a058f1e1134fee16e2f65a5bd24b73cef7ea08ccc0", + "size": 1398 + }, + "ION/03_registry/ion_trunk_preservation_report.schema.json": { + "path": "ION/03_registry/ion_trunk_preservation_report.schema.json", + "sha256": "310239b157b79a4d4fc04650b5e3feecde7ca9a848b1db7220dd42b341499116", + "size": 3495 + }, + "ION/03_registry/ion_v72_mcp_donor_reconciliation_audit.schema.json": { + "path": "ION/03_registry/ion_v72_mcp_donor_reconciliation_audit.schema.json", + "sha256": "34922e7f00f3c99312cad2cd5b43031095145e8d6931b8983b2c6c7e44054599", + "size": 1113 + }, + "ION/03_registry/joc_cockpit_component_contract.schema.json": { + "path": "ION/03_registry/joc_cockpit_component_contract.schema.json", + "sha256": "366b6f9dc10a1cc22f3a68f93ed9cf3cf46bd3bfc4482338442dfc4c4b67b345", + "size": 2133 + }, + "ION/03_registry/joc_cockpit_layout_manifest.yaml": { + "path": "ION/03_registry/joc_cockpit_layout_manifest.yaml", + "sha256": "f2f868a55aff1f614ebe33a97f5fc9e90cb2b3499770d65a70e3a356b5933b27", + "size": 1444 + }, + "ION/03_registry/joc_cognitive_explorer_policy.yaml": { + "path": "ION/03_registry/joc_cognitive_explorer_policy.yaml", + "sha256": "40711cbf8df9148095a9e374bb5fc2fc0b38a308f3395165d1ffbd503bc9dcba", + "size": 777 + }, + "ION/03_registry/joc_cognitive_explorer_route_view_model.schema.json": { + "path": "ION/03_registry/joc_cognitive_explorer_route_view_model.schema.json", + "sha256": "b03d97d289af77d28fe9c39e17247add253a5b2e26563cb82c7e4dd6e3a94a14", + "size": 1895 + }, + "ION/03_registry/joc_dispatch_authorization_policy.yaml": { + "path": "ION/03_registry/joc_dispatch_authorization_policy.yaml", + "sha256": "d6a672003857bb891ca03f0661349e73b439abc6eebf17bbe31aecf86b820258", + "size": 1052 + }, + "ION/03_registry/joc_dispatch_authorization_view_model.schema.json": { + "path": "ION/03_registry/joc_dispatch_authorization_view_model.schema.json", + "sha256": "28c64675f0011bde9e20bb2fdc0d5f556b9775355169b16e9e0268574fc97293", + "size": 1694 + }, + "ION/03_registry/joc_dry_run_dispatch_trace_policy.yaml": { + "path": "ION/03_registry/joc_dry_run_dispatch_trace_policy.yaml", + "sha256": "e90f9292e440625619640bf466569c91e508c969190b551e81cf5418f16121a9", + "size": 1306 + }, + "ION/03_registry/joc_dry_run_dispatch_trace_view_model.schema.json": { + "path": "ION/03_registry/joc_dry_run_dispatch_trace_view_model.schema.json", + "sha256": "58e5442a5c2c9503999d68203e314ea8d85454304fd7df8a201a1192d3c72808", + "size": 1443 + }, + "ION/03_registry/joc_export_handoff_manifest_policy.yaml": { + "path": "ION/03_registry/joc_export_handoff_manifest_policy.yaml", + "sha256": "4563028d16f16018a0e585ca5518c94b9ae2cfe992c79f1dae6059628178d56c", + "size": 573 + }, + "ION/03_registry/joc_export_handoff_manifest_view_model.schema.json": { + "path": "ION/03_registry/joc_export_handoff_manifest_view_model.schema.json", + "sha256": "bc8fca1b96dc4a03943e5dbd43341e1611d71ba8e634c76741c426e0754cd76f", + "size": 866 + }, + "ION/03_registry/joc_handoff_package_assembly_policy.yaml": { + "path": "ION/03_registry/joc_handoff_package_assembly_policy.yaml", + "sha256": "3208b78e5e5fc1cbb0000e13eb15a7d239a48b3dc1039d95d7b49aeb09759629", + "size": 488 + }, + "ION/03_registry/joc_handoff_package_assembly_view_model.schema.json": { + "path": "ION/03_registry/joc_handoff_package_assembly_view_model.schema.json", + "sha256": "6525535acc3901d30bdf614089ed351645ae623ceffcd2a52ab2631212517d1c", + "size": 965 + }, + "ION/03_registry/joc_mission_dispatch_route_policy.yaml": { + "path": "ION/03_registry/joc_mission_dispatch_route_policy.yaml", + "sha256": "6d3c834ff1a84739ce8a46e191d4d9498e87284e6a7cbdde9b08c792538b92ce", + "size": 980 + }, + "ION/03_registry/joc_mission_dispatch_route_view_model.schema.json": { + "path": "ION/03_registry/joc_mission_dispatch_route_view_model.schema.json", + "sha256": "405bf35218b4e73127150f329121d53423a323f27ce2e0da23577abff147b4b2", + "size": 1697 + }, + "ION/03_registry/joc_operator_approval_policy.yaml": { + "path": "ION/03_registry/joc_operator_approval_policy.yaml", + "sha256": "3413ce1181cca1453e53b5dc0e2f43a8d0853478264092ba064776405d48eefa", + "size": 615 + }, + "ION/03_registry/joc_operator_approval_queue.schema.json": { + "path": "ION/03_registry/joc_operator_approval_queue.schema.json", + "sha256": "fec5a5ec568eca7bf3df0214fc29267c9a05401ccfc678cf3107e56a1209b42d", + "size": 1270 + }, + "ION/03_registry/joc_provider_adapter_readiness_policy.yaml": { + "path": "ION/03_registry/joc_provider_adapter_readiness_policy.yaml", + "sha256": "376fd624c1daec5d2a3b4ecb6645ab7204df20ad5652d77ac3ea328559619e6d", + "size": 989 + }, + "ION/03_registry/joc_provider_adapter_readiness_view_model.schema.json": { + "path": "ION/03_registry/joc_provider_adapter_readiness_view_model.schema.json", + "sha256": "dcac7b0f5107ed36557bdf48b5341ed12bc954258f05d95e8ca6d069c064c493", + "size": 1481 + }, + "ION/03_registry/joc_reactive_os_stream_policy.yaml": { + "path": "ION/03_registry/joc_reactive_os_stream_policy.yaml", + "sha256": "4651710e9fb28b4e3c114b7ad307eee2eb1fe63e941b717952d9d7b96e555691", + "size": 794 + }, + "ION/03_registry/joc_reactive_os_stream_view_model.schema.json": { + "path": "ION/03_registry/joc_reactive_os_stream_view_model.schema.json", + "sha256": "32f799df00d6f50ba1b962f32ead450e85d0b6d7e56fd1730b9b7e732cae01d0", + "size": 733 + }, + "ION/03_registry/joc_release_candidate_preview_policy.yaml": { + "path": "ION/03_registry/joc_release_candidate_preview_policy.yaml", + "sha256": "dd3619a32e5317aaa368aa8fb982d0f72a77316b841bd630ec70dc21345948c6", + "size": 577 + }, + "ION/03_registry/joc_release_candidate_preview_view_model.schema.json": { + "path": "ION/03_registry/joc_release_candidate_preview_view_model.schema.json", + "sha256": "b04aa4f968e74c260efbe6a4caa696e63134dc4b060869f8fb649fae06105391", + "size": 1079 + }, + "ION/03_registry/joc_result_save_proposal_policy.yaml": { + "path": "ION/03_registry/joc_result_save_proposal_policy.yaml", + "sha256": "ae69bbd606cf72e25c554440d880dcc40807da03ee778ded467ae82268d50e09", + "size": 361 + }, + "ION/03_registry/joc_result_save_proposal_view_model.schema.json": { + "path": "ION/03_registry/joc_result_save_proposal_view_model.schema.json", + "sha256": "0827b1d3d01d97093765b452c5da56c373e115a07c42af471412d354f520e814", + "size": 456 + }, + "ION/03_registry/joc_synthetic_response_capture_policy.yaml": { + "path": "ION/03_registry/joc_synthetic_response_capture_policy.yaml", + "sha256": "9cfd584ddfeebe4725addeb56ee056d4db3964a51a79715204b619bc075dcf61", + "size": 1084 + }, + "ION/03_registry/joc_synthetic_response_capture_view_model.schema.json": { + "path": "ION/03_registry/joc_synthetic_response_capture_view_model.schema.json", + "sha256": "a158d9a071a500ce7634c357a90d41ad68944746adb93978ed12b63f3d68c0c7", + "size": 1394 + }, + "ION/03_registry/joc_synthetic_synthesis_route_policy.yaml": { + "path": "ION/03_registry/joc_synthetic_synthesis_route_policy.yaml", + "sha256": "413a2d46fb1117ca33853b6aed53cc12298cfbc0334b00346ceab801e504b90b", + "size": 1025 + }, + "ION/03_registry/joc_synthetic_synthesis_route_view_model.schema.json": { + "path": "ION/03_registry/joc_synthetic_synthesis_route_view_model.schema.json", + "sha256": "2661389a6bead651751fef60c596adb28fcf73eb98051eac043db054fa01c136", + "size": 1642 + }, + "ION/03_registry/live_persona_latency_policy.yaml": { + "path": "ION/03_registry/live_persona_latency_policy.yaml", + "sha256": "9d0dfbfd51ed8bcece1ebfaf898b19501401c8329fcac1f28087f76c664f8346", + "size": 548 + }, + "ION/03_registry/live_repair_policy.yaml": { + "path": "ION/03_registry/live_repair_policy.yaml", + "sha256": "dc13b47303bb2c55c0957f0eda05a09ef0862decece2c8556b27b8ca17826200", + "size": 462 + }, + "ION/03_registry/local_browser_capture_adapter.schema.json": { + "path": "ION/03_registry/local_browser_capture_adapter.schema.json", + "sha256": "7de33f4a4d7fe4a6b2e90c6bf64652dd5afd4e4024ed0c7cd172c6995ef42ceb", + "size": 675 + }, + "ION/03_registry/local_browser_capture_adapter_policy.yaml": { + "path": "ION/03_registry/local_browser_capture_adapter_policy.yaml", + "sha256": "a417df025cfcda124fef696f06c4a2cf0402b9fdf444165c5b4aaeb85b1ff5cb", + "size": 488 + }, + "ION/03_registry/local_browser_execution_harness.schema.json": { + "path": "ION/03_registry/local_browser_execution_harness.schema.json", + "sha256": "03bd20812bf1709c81a0f8d70241bcdcd954fe600ef3f7da0147112b813b1445", + "size": 724 + }, + "ION/03_registry/local_browser_execution_harness_policy.yaml": { + "path": "ION/03_registry/local_browser_execution_harness_policy.yaml", + "sha256": "e22f3ccf22ac57da3943bc503e035ffd251d2615e5b02974904c6cde0c8a5e58", + "size": 431 + }, + "ION/03_registry/local_browser_execution_run_receipt.schema.json": { + "path": "ION/03_registry/local_browser_execution_run_receipt.schema.json", + "sha256": "c80800724fbcdbb185fc37fcc21a51dcc49a2245fc8836137bfa9ad26fd2d5f1", + "size": 1110 + }, + "ION/03_registry/local_browser_execution_run_receipt_policy.yaml": { + "path": "ION/03_registry/local_browser_execution_run_receipt_policy.yaml", + "sha256": "fc425806fac658c8c3cbca1286dcef9acf9459035bdd14b70a81781fa72ea981", + "size": 571 + }, + "ION/03_registry/local_browser_execution_sandbox_spec.schema.json": { + "path": "ION/03_registry/local_browser_execution_sandbox_spec.schema.json", + "sha256": "f0f28e217f6965898379c5939b600f7c6293f3482b8d22be0782ef5617f5c69a", + "size": 2657 + }, + "ION/03_registry/local_browser_execution_sandbox_spec_policy.yaml": { + "path": "ION/03_registry/local_browser_execution_sandbox_spec_policy.yaml", + "sha256": "a4af22eb53f00ca2175e28378cc44f6b386f6f378fcba7d4ecc7dfde728fe7e1", + "size": 1357 + }, + "ION/03_registry/local_visual_harness.schema.json": { + "path": "ION/03_registry/local_visual_harness.schema.json", + "sha256": "e8063674b9e64dadbab828c90342ad7e7addbe836c9f8ada7dbaac2dc8b095c1", + "size": 1378 + }, + "ION/03_registry/local_visual_harness_policy.yaml": { + "path": "ION/03_registry/local_visual_harness_policy.yaml", + "sha256": "b034765c5cdd0823bb05765658e131694cca25bbb0c80764ac13c0852e3711af", + "size": 1207 + }, + "ION/03_registry/maintained_work_surface.schema.json": { + "path": "ION/03_registry/maintained_work_surface.schema.json", + "sha256": "eaf43503cf599f04129fc5182ea85d4193654ebbab06a878db2cb94b6e037104", + "size": 729 + }, + "ION/03_registry/maintained_work_surface_canon.yaml": { + "path": "ION/03_registry/maintained_work_surface_canon.yaml", + "sha256": "0d4e27a0a7850a9e82793154ae44994416d0ede8ae9b3a9bb629e37060730cd3", + "size": 577 + }, + "ION/03_registry/mcp_full_carrier_tool_registry.yaml": { + "path": "ION/03_registry/mcp_full_carrier_tool_registry.yaml", + "sha256": "4fa0eda3db8f15391a3e480d3259c0f4530cb6363eccb0bbe88d176e872820c2", + "size": 6896 + }, + "ION/03_registry/model_capability_registry.yaml": { + "path": "ION/03_registry/model_capability_registry.yaml", + "sha256": "d8d8a41387a20dd2869d749d53f02e6b3edbde1bcafc6735c57dcdc881452d8b", + "size": 1775 + }, + "ION/03_registry/model_data_handling_registry.yaml": { + "path": "ION/03_registry/model_data_handling_registry.yaml", + "sha256": "80555161bcffdcd09865e5174eb33d7d75d967bfb76566d3afd09c028f64a9f3", + "size": 933 + }, + "ION/03_registry/model_economics_implementation_schedule.yaml": { + "path": "ION/03_registry/model_economics_implementation_schedule.yaml", + "sha256": "28c971f0e1827537ed04e074edbbba7b6a0ef317c7b948cf35495287c05ff9e8", + "size": 1452 + }, + "ION/03_registry/model_economics_registry_skeleton_report.schema.json": { + "path": "ION/03_registry/model_economics_registry_skeleton_report.schema.json", + "sha256": "236148eadc51c8f14de703b49ce02f93009e14af0aad2f3731627fc01368cc86", + "size": 733 + }, + "ION/03_registry/model_eval_score_registry.yaml": { + "path": "ION/03_registry/model_eval_score_registry.yaml", + "sha256": "7694d811cf795fdb38da73965d500626a0365cb4ea50a91f0a1e9d835a8b6599", + "size": 994 + }, + "ION/03_registry/model_pricing_registry.yaml": { + "path": "ION/03_registry/model_pricing_registry.yaml", + "sha256": "541f5d3795a1e9d0f73f9da1dc926b67fb1ee4493402871a6f6891af8dede8f3", + "size": 1092 + }, + "ION/03_registry/model_rate_limit_registry.yaml": { + "path": "ION/03_registry/model_rate_limit_registry.yaml", + "sha256": "db4651307e85474af4e4075bad1e4f6eae1f401951f6f412bca156665813376e", + "size": 1107 + }, + "ION/03_registry/model_route_decision.schema.json": { + "path": "ION/03_registry/model_route_decision.schema.json", + "sha256": "d19c7bb2be86e8e88df677fe20919b9adc049e374a5577babce67bbb29acd04e", + "size": 1116 + }, + "ION/03_registry/model_routing_policy.yaml": { + "path": "ION/03_registry/model_routing_policy.yaml", + "sha256": "32eda2b86fdfaf14fe8a7eef13cacb34ab4ba92a5f7e81f146142715a152ba59", + "size": 1704 + }, + "ION/03_registry/mounted_agent_identity.schema.json": { + "path": "ION/03_registry/mounted_agent_identity.schema.json", + "sha256": "c62e2047b74313528ccf07d3bef3df09aef571c853c77d8cf309b49e6045f2b4", + "size": 3002 + }, + "ION/03_registry/name_lineage_registry.yaml": { + "path": "ION/03_registry/name_lineage_registry.yaml", + "sha256": "941bb35979fc906d90e67753656313d44839ce1158cc6404013e54e16c9267ed", + "size": 5084 + }, + "ION/03_registry/provider_registry.yaml": { + "path": "ION/03_registry/provider_registry.yaml", + "sha256": "3501f7ef5beafe38af1259e8edec55af3fd3ae16daaef88e247f359da18a288b", + "size": 1661 + }, + "ION/03_registry/reintegration/README.md": { + "path": "ION/03_registry/reintegration/README.md", + "sha256": "6d3c1a886872b70f90714ddbc355167712a10d7f05d094c31935fffeed68642a", + "size": 1117 + }, + "ION/03_registry/reintegration/authority_registry.yaml": { + "path": "ION/03_registry/reintegration/authority_registry.yaml", + "sha256": "c74d1adf899a1a029a5c95c050d9dfdc3a2fe7bb55d8111391ed41d3538c0b66", + "size": 4895 + }, + "ION/03_registry/reintegration/canonicalization_queue.yaml": { + "path": "ION/03_registry/reintegration/canonicalization_queue.yaml", + "sha256": "ddd1ed26efaf41f2e010397023c83336d251f32ff92286e69c35c9e918afbec7", + "size": 6471 + }, + "ION/03_registry/reintegration/duplicate_competition_registry.yaml": { + "path": "ION/03_registry/reintegration/duplicate_competition_registry.yaml", + "sha256": "5cd21230f94357c77da60e7933cab610c0afeac40621c6d064a7cda897364fe5", + "size": 5675 + }, + "ION/03_registry/reintegration/lineage_registry.yaml": { + "path": "ION/03_registry/reintegration/lineage_registry.yaml", + "sha256": "e61cd244d9b41c078b2d0d13a0edf22406bb7b9537e5db1febc9cdc5d65eae4b", + "size": 2924 + }, + "ION/03_registry/reintegration/root_manifest.yaml": { + "path": "ION/03_registry/reintegration/root_manifest.yaml", + "sha256": "2946fcbb4f635f6abd329530e1e09feb8b24285aaa4461d6aae47c39aad0dc95", + "size": 3051 + }, + "ION/03_registry/retrieval_zone_registry.yaml": { + "path": "ION/03_registry/retrieval_zone_registry.yaml", + "sha256": "2ac3f0484fae2a06609ad639d0472c97af186fc2b9121501700598277ccd9dbc", + "size": 710 + }, + "ION/03_registry/runtime_identity_envelope.schema.json": { + "path": "ION/03_registry/runtime_identity_envelope.schema.json", + "sha256": "5e7b5e7a1363888add6c3171b2ac27ee5d0d07abf3a54121620a1210a485eba5", + "size": 3461 + }, + "ION/03_registry/self_documentation_watch_registry.yaml": { + "path": "ION/03_registry/self_documentation_watch_registry.yaml", + "sha256": "5cfe2d0ceff2baf45786856111288bde9ac87ca2fbf97898f00308beb3bcbcfe", + "size": 902 + }, + "ION/03_registry/self_mount_graph_integration.schema.json": { + "path": "ION/03_registry/self_mount_graph_integration.schema.json", + "sha256": "8ac2b37486ef42ed4781954e3f63cc92466c2803de4b5f91321dd8705af38783", + "size": 734 + }, + "ION/03_registry/self_surface_drift_gate.schema.json": { + "path": "ION/03_registry/self_surface_drift_gate.schema.json", + "sha256": "18b563d3d681a228441bbe0530cd0d8719ecd611a0b983e984688033ab8c2713", + "size": 831 + }, + "ION/03_registry/semantic_identities/CANON_LIBRARIAN.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/CANON_LIBRARIAN.semantic.yaml", + "sha256": "8b51b0d33a071ea2c062b2fdee3a98b50a848649e7e0a0391f73ebada6c05bcc", + "size": 606 + }, + "ION/03_registry/semantic_identities/CODEX.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/CODEX.semantic.yaml", + "sha256": "f73507c6cd183ed4c8698f24aaab88518e2a38b9f34f887e87d078fb25a24ac1", + "size": 956 + }, + "ION/03_registry/semantic_identities/CONTEXT_CARTOGRAPHER.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/CONTEXT_CARTOGRAPHER.semantic.yaml", + "sha256": "bc24f343644c58b6485aa76edab855e3fce8e359607bdcb032abe2f70c0772e0", + "size": 607 + }, + "ION/03_registry/semantic_identities/IONOLOGIST.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/IONOLOGIST.semantic.yaml", + "sha256": "2586e62a6d75e0c4af86530ae241dbf6f99dd17dd137722846a80c99d6852e9a", + "size": 548 + }, + "ION/03_registry/semantic_identities/NEMESIS.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/NEMESIS.semantic.yaml", + "sha256": "526aee20b0bcfaf3be7a082e904fbcad2efa44d7067860fe3f36ce5f2818f099", + "size": 748 + }, + "ION/03_registry/semantic_identities/PERSONA_INTERFACE.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/PERSONA_INTERFACE.semantic.yaml", + "sha256": "4db7a83a4412cdae381a82ce34bfe8207c66cf01f07149df4f60428d0ca2f499", + "size": 1876 + }, + "ION/03_registry/semantic_identities/README.md": { + "path": "ION/03_registry/semantic_identities/README.md", + "sha256": "326640e0ce96c75b3b36ee56e8528b016a29b031e538f0b4de25dc2bbfa516e2", + "size": 1655 + }, + "ION/03_registry/semantic_identities/RELAY.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/RELAY.semantic.yaml", + "sha256": "3a0d84ebd4ec6806a30572bb6271c56b4cde26df0418eb1758085c174d5fc1a2", + "size": 1494 + }, + "ION/03_registry/semantic_identities/RUNTIME_CARTOGRAPHER.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/RUNTIME_CARTOGRAPHER.semantic.yaml", + "sha256": "417fd37108655b40666fb5160db6d1ddcc8580404c1df7aa2197e844a002b8e0", + "size": 596 + }, + "ION/03_registry/semantic_identities/STEWARD.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/STEWARD.semantic.yaml", + "sha256": "e2e108df8d85cec98d5aa41857ec32c077f4aa02d9356d49bb6a9d181f7d218a", + "size": 1012 + }, + "ION/03_registry/semantic_identities/TEMPLATE_CURATOR.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/TEMPLATE_CURATOR.semantic.yaml", + "sha256": "1b51853e623539889ca37dc0e32a123b87b0bad3c8c2d88f4525b8bcce2de66f", + "size": 580 + }, + "ION/03_registry/semantic_identities/VESTIGE.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/VESTIGE.semantic.yaml", + "sha256": "7f140c2ba1b9884fa89922747608dc787caf46aa9dd83631193b3e11e5466b60", + "size": 1542 + }, + "ION/03_registry/semantic_identities/VICE.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/VICE.semantic.yaml", + "sha256": "cb4d98ea8952adc49352fdc160f7d73f64d1d9c18a806bdac4be1dec67d8f61a", + "size": 802 + }, + "ION/03_registry/semantic_identities/VIZIER.semantic.yaml": { + "path": "ION/03_registry/semantic_identities/VIZIER.semantic.yaml", + "sha256": "cf88ff9874297ea3d6711457d0d79f7edd31f366202de077fb55f356bbdfc2aa", + "size": 859 + }, + "ION/03_registry/system_card_registry.yaml": { + "path": "ION/03_registry/system_card_registry.yaml", + "sha256": "a20ae802b53c861defb6f8184d9b91c73089b911e9fc9b61f346a985162bd39b", + "size": 1106 + }, + "ION/03_registry/template_completion_watch_registry.yaml": { + "path": "ION/03_registry/template_completion_watch_registry.yaml", + "sha256": "c1776611dc8fefc5451a273ba0a7d8473a26b7bd7478f3f9a6e74ea30508fae9", + "size": 2897 + }, + "ION/03_registry/template_metadata_contract_registry.projection.json": { + "path": "ION/03_registry/template_metadata_contract_registry.projection.json", + "sha256": "b13a7f5b32491bdb22f7624e1641d1131611a5d35934453b3136cfd63e2df17c", + "size": 12036 + }, + "ION/03_registry/template_metadata_contract_registry.yaml": { + "path": "ION/03_registry/template_metadata_contract_registry.yaml", + "sha256": "e30d7d216446900cfd285f9b375f97b0e325b87ad2f41ac29a38f9165040f71e", + "size": 8625 + }, + "ION/03_registry/ui_work_surface_projection.schema.json": { + "path": "ION/03_registry/ui_work_surface_projection.schema.json", + "sha256": "d4ce814cdb742c0e55e3893a52474226130f276e1410b9370d1239ed3fddd449", + "size": 1768 + }, + "ION/03_registry/ui_work_surface_projection_policy.yaml": { + "path": "ION/03_registry/ui_work_surface_projection_policy.yaml", + "sha256": "a34efc3e6b305b584824b4d139d9d1c0a4ee475ad65e42eaf7689f5d54bcecd8", + "size": 1436 + }, + "ION/03_registry/visual_before_after_verification.schema.json": { + "path": "ION/03_registry/visual_before_after_verification.schema.json", + "sha256": "5464676ee555a10260969c2fad3e6b6768bb5ebdb092ed59f9c41f2933db6035", + "size": 821 + }, + "ION/03_registry/visual_before_after_verification_policy.yaml": { + "path": "ION/03_registry/visual_before_after_verification_policy.yaml", + "sha256": "5df63033d2adc1e4aa11e73b5c76934155e476ddeabc907be62c71de31f1ed9e", + "size": 565 + }, + "ION/03_registry/visual_browser_harness_plan.schema.json": { + "path": "ION/03_registry/visual_browser_harness_plan.schema.json", + "sha256": "0951c0cd1d54a15ab7aa17fd6ca1bc28257a6ac874231884f7e60f0cadd3aab0", + "size": 766 + }, + "ION/03_registry/visual_closure_graph_projection.schema.json": { + "path": "ION/03_registry/visual_closure_graph_projection.schema.json", + "sha256": "ba3e5297124ca3adc6c2b0171cb0567015bc34fd72422fc88a8e9fd171cd0ffd", + "size": 829 + }, + "ION/03_registry/visual_closure_graph_projection_policy.yaml": { + "path": "ION/03_registry/visual_closure_graph_projection_policy.yaml", + "sha256": "6c904267385d5b2618ceef76de60c3e004454495f4f72d582958176e919b80cb", + "size": 656 + }, + "ION/03_registry/visual_diagnosis_policy.yaml": { + "path": "ION/03_registry/visual_diagnosis_policy.yaml", + "sha256": "68566fe5427c5cedfd6d963f7c6df0b5780f7f06d269e1e7db282aee86bdf8ef", + "size": 861 + }, + "ION/03_registry/visual_diagnosis_receipt.schema.json": { + "path": "ION/03_registry/visual_diagnosis_receipt.schema.json", + "sha256": "11849d4bc4a190a8ef26541f33793adc287f07c84e7b4b55d8f7958b731652f0", + "size": 1216 + }, + "ION/03_registry/visual_fixture_runner_sandbox_review.schema.json": { + "path": "ION/03_registry/visual_fixture_runner_sandbox_review.schema.json", + "sha256": "1c287dce5ceb0a6be4e00a4998e444f1b05cd3cc71e94a2187c1868b0d8501e2", + "size": 2656 + }, + "ION/03_registry/visual_fixture_runner_sandbox_review_policy.yaml": { + "path": "ION/03_registry/visual_fixture_runner_sandbox_review_policy.yaml", + "sha256": "0187a37c773cc7e5231167abc4a1ed9bb56c46df57d4a2c97436154ea5e7e650", + "size": 842 + }, + "ION/03_registry/visual_observation_packet.schema.json": { + "path": "ION/03_registry/visual_observation_packet.schema.json", + "sha256": "53148dbeebf230943c7fa0a59b34085b475277b83c1cc4db58f645fa4003ae54", + "size": 632 + }, + "ION/03_registry/visual_observation_policy.yaml": { + "path": "ION/03_registry/visual_observation_policy.yaml", + "sha256": "37b42cfc3e83372cf1e243a3491611cf7fabfeea4a3b60fc5bd351aadeb32b83", + "size": 494 + }, + "ION/03_registry/visual_perception_agent_policy.yaml": { + "path": "ION/03_registry/visual_perception_agent_policy.yaml", + "sha256": "b4cc2f611e9d6387cee37b5c24977a97af4e2d565c134d38a39434fe5cba3fd3", + "size": 579 + }, + "ION/03_registry/visual_regression_fixture_runner.schema.json": { + "path": "ION/03_registry/visual_regression_fixture_runner.schema.json", + "sha256": "1b3ecd00e98eb2011062ccb088053d215796630b5c501c76442ac52bc715c412", + "size": 1220 + }, + "ION/03_registry/visual_regression_fixture_runner_policy.yaml": { + "path": "ION/03_registry/visual_regression_fixture_runner_policy.yaml", + "sha256": "1324f73484b06ff2eb6b9ee1b3a4470553d94723c6cb7b03acbac69ff640ed09", + "size": 931 + }, + "ION/03_registry/visual_run_receipt_to_diagnosis_binding.schema.json": { + "path": "ION/03_registry/visual_run_receipt_to_diagnosis_binding.schema.json", + "sha256": "b1c6b286d15b84b7032366f8b820e27a58711046876c3ca627db681f353b16c0", + "size": 1216 + }, + "ION/03_registry/visual_run_receipt_to_diagnosis_binding_policy.yaml": { + "path": "ION/03_registry/visual_run_receipt_to_diagnosis_binding_policy.yaml", + "sha256": "658e5242adbb4701432baeef1e7122f9b6911d9d39d12bc9d5d07076e9174612", + "size": 797 + }, + "ION/03_registry/work_class_model_policy.yaml": { + "path": "ION/03_registry/work_class_model_policy.yaml", + "sha256": "60ffc803af7b04cd0361ae752d0b4f9757e24604f4c73b7be35480decd38443b", + "size": 5554 + }, + "ION/04_agents/AGENT_LIFECYCLE_PROTOCOL.md": { + "path": "ION/04_agents/AGENT_LIFECYCLE_PROTOCOL.md", + "sha256": "d2ec549057a7838c74f249fac6659c42e293c54194daf7eaaefe3a3e6138f216", + "size": 750 + }, + "ION/04_agents/AGENT_SPAWN_PROTOCOL.md": { + "path": "ION/04_agents/AGENT_SPAWN_PROTOCOL.md", + "sha256": "2d4feef1060ea7d23f61669ead4b366a16540e1120fa093ec7fff5570031a01d", + "size": 1203 + }, + "ION/04_agents/carriers/CARRIER_AGENT.boot.md": { + "path": "ION/04_agents/carriers/CARRIER_AGENT.boot.md", + "sha256": "99d78ccfa005c47dc2b646e512494ddcabcc572f54a4672b2b8ead25a690be0a", + "size": 5793 + }, + "ION/04_agents/carriers/CARRIER_SESSION_PROTOCOL.md": { + "path": "ION/04_agents/carriers/CARRIER_SESSION_PROTOCOL.md", + "sha256": "900e779b9a2c87398f587e0e9c8df5105f2091b147967c80c06b7efd09be3db6", + "size": 1008 + }, + "ION/04_agents/carriers/CHATGPT_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CHATGPT_CARRIER.profile.md", + "sha256": "389971660756c2ed1c346be8a914f4cda5e342746f8ece81ec6df33b819e4303", + "size": 894 + }, + "ION/04_agents/carriers/CLAUDE_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CLAUDE_CARRIER.profile.md", + "sha256": "3e59a001898c36474f8701f087669cf11b899a948f062a330cbb4de6617cb4e1", + "size": 516 + }, + "ION/04_agents/carriers/CODEX_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CODEX_CARRIER.profile.md", + "sha256": "22b8c68fe3b507a3359387bc8d2976a61ae31547b5b823f846418ec2915897a7", + "size": 672 + }, + "ION/04_agents/carriers/CURSOR_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/CURSOR_CARRIER.profile.md", + "sha256": "9ce358955dd94d2fd6f3e7209b144d8a38d6a01257d6b81ef4505ef8746e9717", + "size": 1422 + }, + "ION/04_agents/carriers/GEMINI_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/GEMINI_CARRIER.profile.md", + "sha256": "f9eb9599ac7071cee5ccb927a3e841a7903aa29fd5c01886438b30ab9915134e", + "size": 478 + }, + "ION/04_agents/carriers/MANUAL_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/MANUAL_CARRIER.profile.md", + "sha256": "17f73c48426e54058d7497bf13388344c69c9cf1289f2812482f042462644b5e", + "size": 1202 + }, + "ION/04_agents/carriers/MCP_CARRIER.profile.md": { + "path": "ION/04_agents/carriers/MCP_CARRIER.profile.md", + "sha256": "1e71a3d10b013e0ea31851aadcdcbb56cf6cb096144310f0cb553b1d18bf18cc", + "size": 594 + }, + "ION/04_agents/carriers/META_CARRIER_EVOLUTION_PROTOCOL.md": { + "path": "ION/04_agents/carriers/META_CARRIER_EVOLUTION_PROTOCOL.md", + "sha256": "eac2daf82dff6369343cc5a142257bdda36494f6e13119b36bc0a6a6a42b39e5", + "size": 2208 + }, + "ION/04_agents/carriers/carrier_registry.json": { + "path": "ION/04_agents/carriers/carrier_registry.json", + "sha256": "4b01f008e0a0f0ce0aeca29658e5f9520ae0294b23f4f79bdac7e26f4d9c30c1", + "size": 4882 + }, + "ION/04_packages/README.md": { + "path": "ION/04_packages/README.md", + "sha256": "e89454044c5ce169c1b2a7da5f6ffd53d22294d2b0a61bca61f48dc557cae431", + "size": 1029 + }, + "ION/04_packages/__init__.py": { + "path": "ION/04_packages/__init__.py", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/04_packages/ion_kernel.egg-info/PKG-INFO": { + "path": "ION/04_packages/ion_kernel.egg-info/PKG-INFO", + "sha256": "c9784e3e8f2d6dea32558f6faf5487f264518dd8b7f9b1dd9e17b009763bf1fb", + "size": 42832 + }, + "ION/04_packages/ion_kernel.egg-info/SOURCES.txt": { + "path": "ION/04_packages/ion_kernel.egg-info/SOURCES.txt", + "sha256": "a5a44bcf58064a4858ec7e580bfd28d81b41f111834fc25307cc119ce333453a", + "size": 5101 + }, + "ION/04_packages/ion_kernel.egg-info/dependency_links.txt": { + "path": "ION/04_packages/ion_kernel.egg-info/dependency_links.txt", + "sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "size": 1 + }, + "ION/04_packages/ion_kernel.egg-info/top_level.txt": { + "path": "ION/04_packages/ion_kernel.egg-info/top_level.txt", + "sha256": "a0c936696eb7d5ee3192bf53b9d281cecbb40ca9db520de72cb95817ad92ac72", + "size": 7 + }, + "ION/04_packages/kernel/TEMPORAL_IMPLEMENTATION_STARTER_README.md": { + "path": "ION/04_packages/kernel/TEMPORAL_IMPLEMENTATION_STARTER_README.md", + "sha256": "bbec69026c4d57bf74a1ddd7a7c13eeab01b55cc56e0eabba494ca5597f82efc", + "size": 717 + }, + "ION/04_packages/kernel/TEMPORAL_KERNEL_MODULE_PLAN.md": { + "path": "ION/04_packages/kernel/TEMPORAL_KERNEL_MODULE_PLAN.md", + "sha256": "e8759550753a84bbc6eb4e1698f3a5c665f523acd94c3be1330d1af36ae3b02a", + "size": 862 + }, + "ION/04_packages/kernel/__init__.py": { + "path": "ION/04_packages/kernel/__init__.py", + "sha256": "beeaba35926705a0dee05840568fdfd1ab0aa8779ff66ac93dfcfe939d9e4fa5", + "size": 61174 + }, + "ION/04_packages/kernel/__main__.py": { + "path": "ION/04_packages/kernel/__main__.py", + "sha256": "3e23cc2d94b82c5e36c462d0c2f04cc7887137a14aadd88427beaad9ad4bfc4b", + "size": 148 + }, + "ION/04_packages/kernel/__pycache__/ion_agent_invocation_broker.cpython-313.pyc": { + "path": "ION/04_packages/kernel/__pycache__/ion_agent_invocation_broker.cpython-313.pyc", + "sha256": "4108e26a99fb49d44e19cb8d9070bdf1ea0b3191a3cb8d203dcc05dce53bf870", + "size": 48677 + }, + "ION/04_packages/kernel/__pycache__/ion_chatops_bridge.cpython-313.pyc": { + "path": "ION/04_packages/kernel/__pycache__/ion_chatops_bridge.cpython-313.pyc", + "sha256": "0868fd0531e66a628793d4b371a7f34c515d3d0acc23f60cbc5be9eb0f61448f", + "size": 65169 + }, + "ION/04_packages/kernel/__pycache__/ion_github_commit_proposal_receipt.cpython-313.pyc": { + "path": "ION/04_packages/kernel/__pycache__/ion_github_commit_proposal_receipt.cpython-313.pyc", + "sha256": "8b3cb6870893d8f9adc79dc7eee9e45294e1917df225f4da300b96d2d1084aef", + "size": 20087 + }, + "ION/04_packages/kernel/agent_self_surface.py": { + "path": "ION/04_packages/kernel/agent_self_surface.py", + "sha256": "85d1a565c2f8e3e20d8a3d16fa90eb23275807ec58a01d250c953da2e110217d", + "size": 10723 + }, + "ION/04_packages/kernel/agent_succession_packet.py": { + "path": "ION/04_packages/kernel/agent_succession_packet.py", + "sha256": "84466d1c9d86b1311321423a05f1d853a4f944e6447a5e9a2f171dda57ed4275", + "size": 9647 + }, + "ION/04_packages/kernel/allocator.py": { + "path": "ION/04_packages/kernel/allocator.py", + "sha256": "ee427c376649fc830fa830fb59ec42712459c0181452e1a90f11dd4a185bd23e", + "size": 22974 + }, + "ION/04_packages/kernel/api_rate_governor.py": { + "path": "ION/04_packages/kernel/api_rate_governor.py", + "sha256": "3d1f57eee671c549cd3a08e2269e8737e2e8f59a86eef2182747fbaed98c91ac", + "size": 10262 + }, + "ION/04_packages/kernel/api_runtime_entry.py": { + "path": "ION/04_packages/kernel/api_runtime_entry.py", + "sha256": "59fa6208ccd028b60193e0b5a73183789c9a587efa1275e949c90cf0f1a1e09e", + "size": 15257 + }, + "ION/04_packages/kernel/authority_lineage.py": { + "path": "ION/04_packages/kernel/authority_lineage.py", + "sha256": "a1374d3dc17159784fd85e3cf342f622c41c2c9fa580f088677d690efa3d8d6a", + "size": 21255 + }, + "ION/04_packages/kernel/automation_policy.py": { + "path": "ION/04_packages/kernel/automation_policy.py", + "sha256": "7b9492177aea2120dfb74d1224de33730f6053ca51b131b2a30013f2a7b4f130", + "size": 7650 + }, + "ION/04_packages/kernel/automation_state.py": { + "path": "ION/04_packages/kernel/automation_state.py", + "sha256": "8fe6cbc967fe3abdd0af923419fd02d62cd6b6574c149a2b12b87327bfee3229", + "size": 9491 + }, + "ION/04_packages/kernel/bootstrap_activation.py": { + "path": "ION/04_packages/kernel/bootstrap_activation.py", + "sha256": "7eced73bd7172d297e768068ae45355873b97cbe4d6cc9d778a9177362a65fcc", + "size": 8865 + }, + "ION/04_packages/kernel/bootstrap_bridge.py": { + "path": "ION/04_packages/kernel/bootstrap_bridge.py", + "sha256": "4251491ec2022a3aa41b0c53a9362d26338d4e8ba75060243576e07a22cf5c1e", + "size": 12646 + }, + "ION/04_packages/kernel/bootstrap_init.py": { + "path": "ION/04_packages/kernel/bootstrap_init.py", + "sha256": "61eeb38bec85f719f3cf96f7c15ab8795dd374f6d3644bbb1bfe9f450cdf4eab", + "size": 13934 + }, + "ION/04_packages/kernel/branch_consolidation_ui_model_governor_binding.py": { + "path": "ION/04_packages/kernel/branch_consolidation_ui_model_governor_binding.py", + "sha256": "a97b7a94325146cfe7362d3d5f0dbf07e13fb4d674893f8e39ddaebed2582e8c", + "size": 10254 + }, + "ION/04_packages/kernel/branch_controls.py": { + "path": "ION/04_packages/kernel/branch_controls.py", + "sha256": "b06ffd0c0320a15328539c74f3fbec1d5e210bdbe53584ed54829af5b0be98dc", + "size": 16402 + }, + "ION/04_packages/kernel/branch_horizon_sync.py": { + "path": "ION/04_packages/kernel/branch_horizon_sync.py", + "sha256": "43cacfcc9d77d4fbaaa2d11733d9d8a674353af351c28fc234e498c38bcf9153", + "size": 22241 + }, + "ION/04_packages/kernel/branch_rescheduling.py": { + "path": "ION/04_packages/kernel/branch_rescheduling.py", + "sha256": "68122868af9f50a8cf222584c25a2daeb7948ea0da75eb48ad71f7c11e862fd8", + "size": 10934 + }, + "ION/04_packages/kernel/budget_governor.py": { + "path": "ION/04_packages/kernel/budget_governor.py", + "sha256": "8ca184525acb7c20748127f15532ca197613662f4c94c73dd2d7cc184d1640fb", + "size": 11531 + }, + "ION/04_packages/kernel/capsule_manager.py": { + "path": "ION/04_packages/kernel/capsule_manager.py", + "sha256": "8252de02b99602ed7b4c2ab867c75f0d8bb088e39119ce80fadf39cf83245a10", + "size": 15722 + }, + "ION/04_packages/kernel/carrier_mount.py": { + "path": "ION/04_packages/kernel/carrier_mount.py", + "sha256": "3adae77aa19ed5556f0db62ea8eeba19f9a5c4a63a1a424e68dddca3e3e428a7", + "size": 5556 + }, + "ION/04_packages/kernel/child_work_service.py": { + "path": "ION/04_packages/kernel/child_work_service.py", + "sha256": "e9cbdbb4638be7c67dc9597d8dfe7c82acd3165ca75dfea5224fd5ff4f068613", + "size": 22746 + }, + "ION/04_packages/kernel/children.py": { + "path": "ION/04_packages/kernel/children.py", + "sha256": "1eebcdff40573c759247da8d521f4780a44427472f89914b068ca41914834ba1", + "size": 17275 + }, + "ION/04_packages/kernel/commit.py": { + "path": "ION/04_packages/kernel/commit.py", + "sha256": "b6eda6cfc3acd6d037501fb5163d3e3a485c5e38a8389d556e01eb04103ca0fc", + "size": 10819 + }, + "ION/04_packages/kernel/context_compiler.py": { + "path": "ION/04_packages/kernel/context_compiler.py", + "sha256": "bf80459c66d4741df9342836b44ad7729809704025792e894c78b2f0cb8be842", + "size": 16840 + }, + "ION/04_packages/kernel/context_graph_ontology_adapter.py": { + "path": "ION/04_packages/kernel/context_graph_ontology_adapter.py", + "sha256": "5e6e1290d32c53249ed2bd6da70a1640bf5150f0b1cde9b9c134b7902d08ae1c", + "size": 8012 + }, + "ION/04_packages/kernel/continuation.py": { + "path": "ION/04_packages/kernel/continuation.py", + "sha256": "b6bc8f68b78fa23333b9f5de3f690f29b75b3e609b5f29e9f2d30a8299f97cb3", + "size": 16566 + }, + "ION/04_packages/kernel/contract_bound_event_runtime.py": { + "path": "ION/04_packages/kernel/contract_bound_event_runtime.py", + "sha256": "7f0d08193a3c704e5e771665f5f236c9888779abea615aec6cc872e7781acfc9", + "size": 5708 + }, + "ION/04_packages/kernel/conversational_receipt.py": { + "path": "ION/04_packages/kernel/conversational_receipt.py", + "sha256": "017c3efaee7faa7b768ff41f9309c15e27ad54ca472a31f33337579194654b6c", + "size": 9291 + }, + "ION/04_packages/kernel/cost_quality_router.py": { + "path": "ION/04_packages/kernel/cost_quality_router.py", + "sha256": "94a2e03d6a3d8f0100229e0dc5c7d5b7516574c60a1f381090c76cfa41431085", + "size": 667 + }, + "ION/04_packages/kernel/cursor_subagent_ion_role_registry.py": { + "path": "ION/04_packages/kernel/cursor_subagent_ion_role_registry.py", + "sha256": "8def1a8a1d755680649d7598729e52493f7da43283b1febfb21d983eb3327160", + "size": 2163 + }, + "ION/04_packages/kernel/daemon.py": { + "path": "ION/04_packages/kernel/daemon.py", + "sha256": "30b7f1c25c91773efffb3ed48eed3325d4980a45009970f1943401e889612973", + "size": 22306 + }, + "ION/04_packages/kernel/daemon_actions.py": { + "path": "ION/04_packages/kernel/daemon_actions.py", + "sha256": "e9c56e285a9457bdf72de33575fe5db83c19bd16b11dccd2276893cdec7fd185", + "size": 19328 + }, + "ION/04_packages/kernel/daemon_loop.py": { + "path": "ION/04_packages/kernel/daemon_loop.py", + "sha256": "b00ab14e0da509ef684d398a5da0b7f86ea2ba8ac60ae1afd53c0a7c7b60b684", + "size": 13932 + }, + "ION/04_packages/kernel/daemon_service.py": { + "path": "ION/04_packages/kernel/daemon_service.py", + "sha256": "d4a650bb95040ee0415fa8c16c58e989f14caf4c343e5b9cd01958e81387747c", + "size": 16764 + }, + "ION/04_packages/kernel/dispatch.py": { + "path": "ION/04_packages/kernel/dispatch.py", + "sha256": "9f9319474c216fa2ccb10f34d506b44a14687bac9d78fb93859e9d442e105e0e", + "size": 9325 + }, + "ION/04_packages/kernel/equivalence.py": { + "path": "ION/04_packages/kernel/equivalence.py", + "sha256": "944bd851f52736bdad943e03f0567a860e300431d7781bf82b5fa5eaa9b058c0", + "size": 14231 + }, + "ION/04_packages/kernel/execution.py": { + "path": "ION/04_packages/kernel/execution.py", + "sha256": "b6d88531bc4d0b99a65a2ce63b263c63b19720c7a7b3b6ae66d3052d0d852f14", + "size": 7510 + }, + "ION/04_packages/kernel/executor_registry.py": { + "path": "ION/04_packages/kernel/executor_registry.py", + "sha256": "1696df7e54c6ea177990cc98e222c91244db86ca08d39bfa71871b48e6fff96d", + "size": 12438 + }, + "ION/04_packages/kernel/expressive_telemetry.py": { + "path": "ION/04_packages/kernel/expressive_telemetry.py", + "sha256": "c681f34e07f9c8f4b6ddf06f0da3ec27391082be61109f96154cba5601ce9254", + "size": 8684 + }, + "ION/04_packages/kernel/external_execution_bridge.py": { + "path": "ION/04_packages/kernel/external_execution_bridge.py", + "sha256": "f975e30b2eff2e698ab4d00b5cd2080d9d8d373c1131f55d0550f0eae9b89ac6", + "size": 25335 + }, + "ION/04_packages/kernel/fleet_executor_capability_binding.py": { + "path": "ION/04_packages/kernel/fleet_executor_capability_binding.py", + "sha256": "37f937a7d82abdc4179a667b5c6b39b99688969ea6e6250c877cbf50de03787d", + "size": 5541 + }, + "ION/04_packages/kernel/fleet_executor_work_closure_binding.py": { + "path": "ION/04_packages/kernel/fleet_executor_work_closure_binding.py", + "sha256": "cebe74af21fe470fc7352ddb1b7209ae273215db343d8d1e6d74eed8eef96548", + "size": 14241 + }, + "ION/04_packages/kernel/fleet_executor_work_lifecycle_binding.py": { + "path": "ION/04_packages/kernel/fleet_executor_work_lifecycle_binding.py", + "sha256": "009fc7e2fa1df22fbd56c41c44583cd6156e87b2352c01a40997b6ad0fa7c146", + "size": 10030 + }, + "ION/04_packages/kernel/fleet_lifecycle_store.py": { + "path": "ION/04_packages/kernel/fleet_lifecycle_store.py", + "sha256": "1310d430ccaeca42bb5f05fc399708b07dc3e1da022d4962d7aba40a8837eba7", + "size": 12143 + }, + "ION/04_packages/kernel/front_door_chat_orchestration.py": { + "path": "ION/04_packages/kernel/front_door_chat_orchestration.py", + "sha256": "18c05072ae51b6aef3ec8fec32b9ef09411c57e006c0c7d24dc6398fba02e822", + "size": 15587 + }, + "ION/04_packages/kernel/front_door_runtime_entry.py": { + "path": "ION/04_packages/kernel/front_door_runtime_entry.py", + "sha256": "d3d0b4ce998d499d0f273c3db51bb9921493453780b3a0e4d8528a93a4408a5a", + "size": 17922 + }, + "ION/04_packages/kernel/front_door_self_mount_binding.py": { + "path": "ION/04_packages/kernel/front_door_self_mount_binding.py", + "sha256": "8fba4bacf07922bf8db82ab59cb272da8cfba3cf02f51d5a964a915d3d2992e1", + "size": 12798 + }, + "ION/04_packages/kernel/front_stage_council_receipt.py": { + "path": "ION/04_packages/kernel/front_stage_council_receipt.py", + "sha256": "8e72b87c97243fbd95561cd9b289f5937b149940cfef57f5fa99b8a5a1e496c0", + "size": 13980 + }, + "ION/04_packages/kernel/governed_write.py": { + "path": "ION/04_packages/kernel/governed_write.py", + "sha256": "9318da75d82aec091c079488895417d69b4ffe366b1a2b69856d15109fedc141", + "size": 9834 + }, + "ION/04_packages/kernel/graph.py": { + "path": "ION/04_packages/kernel/graph.py", + "sha256": "2c504576d449285fb27a0b0912c6468bb8701f0edbcede8aaac2619a72da929a", + "size": 19252 + }, + "ION/04_packages/kernel/horizon_state.py": { + "path": "ION/04_packages/kernel/horizon_state.py", + "sha256": "f858478591af314cbd740d980e85365decfdc4f5095e50cb4d9204fdfacf4b87", + "size": 35311 + }, + "ION/04_packages/kernel/id_compaction.py": { + "path": "ION/04_packages/kernel/id_compaction.py", + "sha256": "2bf596c206ea9244697057483e8b4b5b76a449c77b687e4d96ea1a7d4c6072be", + "size": 1053 + }, + "ION/04_packages/kernel/index.py": { + "path": "ION/04_packages/kernel/index.py", + "sha256": "a04d2ac1042e91d32117cd0baacd3bf0113d4a7c339d09bff7808b1a5d3cd0ca", + "size": 90481 + }, + "ION/04_packages/kernel/ion_active_state_integrity_audit.py": { + "path": "ION/04_packages/kernel/ion_active_state_integrity_audit.py", + "sha256": "89ba9d82d3f32a87ac0e279e0e3c8f88199f37eafb6d03b10ac5615915564423", + "size": 4764 + }, + "ION/04_packages/kernel/ion_agent_context_dynamics.py": { + "path": "ION/04_packages/kernel/ion_agent_context_dynamics.py", + "sha256": "a275587898f56574905cb93b7b374c13b4e491a04473c126c54939b8ecb97935", + "size": 33445 + }, + "ION/04_packages/kernel/ion_agent_context_system_audit.py": { + "path": "ION/04_packages/kernel/ion_agent_context_system_audit.py", + "sha256": "f51d81e47a794c0df16e4cce874a6f11f0b8e9d51bb4a3cd9e14e8df2c32a7c6", + "size": 3318 + }, + "ION/04_packages/kernel/ion_agent_context_systems.py": { + "path": "ION/04_packages/kernel/ion_agent_context_systems.py", + "sha256": "de9a8bf53ee6f3e32e8f71411c6c8e067cb7f274151f19834cd4842ca952ca5c", + "size": 7039 + }, + "ION/04_packages/kernel/ion_agent_invocation_broker.py": { + "path": "ION/04_packages/kernel/ion_agent_invocation_broker.py", + "sha256": "31d25ddc7c6c84b12e7978ed76e5503a98e0331531eca1ba3fd11a76029248a4", + "size": 40294 + }, + "ION/04_packages/kernel/ion_autonomous_loop.py": { + "path": "ION/04_packages/kernel/ion_autonomous_loop.py", + "sha256": "138fe55340586d58223b688df6e6dfec3aab2af80638c08a0fa74e88d8750837", + "size": 10462 + }, + "ION/04_packages/kernel/ion_carrier_continue.py": { + "path": "ION/04_packages/kernel/ion_carrier_continue.py", + "sha256": "761797140d37a38fd1ca2a3c2da5239a4e2e08169d825af9f50c9f01c05bb72f", + "size": 31575 + }, + "ION/04_packages/kernel/ion_carrier_onboard.py": { + "path": "ION/04_packages/kernel/ion_carrier_onboard.py", + "sha256": "caa6c594080f093688743c695b2e06d3f8d924768f61630765e3edbafa764683", + "size": 14233 + }, + "ION/04_packages/kernel/ion_carrier_onboarding_authority_audit.py": { + "path": "ION/04_packages/kernel/ion_carrier_onboarding_authority_audit.py", + "sha256": "0616fd8b3a8956a341ea171820519e996a4a235231b9194c64b0e04a78122b12", + "size": 10353 + }, + "ION/04_packages/kernel/ion_carrier_onboarding_packet.py": { + "path": "ION/04_packages/kernel/ion_carrier_onboarding_packet.py", + "sha256": "50693a547065f92623f891f06d9f64a26040164f5ea3224cd4edc85e5e034327", + "size": 13921 + }, + "ION/04_packages/kernel/ion_carrier_task_return.py": { + "path": "ION/04_packages/kernel/ion_carrier_task_return.py", + "sha256": "516e39db4f44d5aaf85023b7fa94713f8d2fb018597f01e86c6dc9c82f0e8a28", + "size": 16706 + }, + "ION/04_packages/kernel/ion_carrier_tick.py": { + "path": "ION/04_packages/kernel/ion_carrier_tick.py", + "sha256": "1b66936106b4380296b0c2c56f72944a8e8abcf494bd5fdb37b76ecaa7771cbf", + "size": 19279 + }, + "ION/04_packages/kernel/ion_carrier_workflow_audit.py": { + "path": "ION/04_packages/kernel/ion_carrier_workflow_audit.py", + "sha256": "3675ec5f600d57e6fdb8da9cb672a77d03f5a4b9ad3a4d41621c8b13e54ef9c2", + "size": 14913 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py", + "sha256": "055f0590ac8689ab5fd93d7a19de48c9302d31bb942e93e6fd9409711610a42f", + "size": 21666 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_legacy_tunnel_reuse_audit.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_legacy_tunnel_reuse_audit.py", + "sha256": "25df4c05f6a03d54bcfaf250b4c86c6371b2901f7250d1645d8582cf02b875d4", + "size": 12850 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py", + "sha256": "55576cfc878e83f3d743636007b85bfc16fad8b75359c4ceaa5f917940ff490f", + "size": 67488 + }, + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py": { + "path": "ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py", + "sha256": "ab6bbec7a77acde2bf505f3cc2fde83ad31bc22facc10b88722c219ca6215900", + "size": 23350 + }, + "ION/04_packages/kernel/ion_chatops_bridge.py": { + "path": "ION/04_packages/kernel/ion_chatops_bridge.py", + "sha256": "2d687564126af70cb79bc282e262d368f44c31a3923772bdf01257acf927d9f8", + "size": 57700 + }, + "ION/04_packages/kernel/ion_cockpit_view_model.py": { + "path": "ION/04_packages/kernel/ion_cockpit_view_model.py", + "sha256": "cdcabe13a1233cc3e5e19a7b2724225ab8964b18952aff896769bf5a8618808c", + "size": 23193 + }, + "ION/04_packages/kernel/ion_codex_cli_carrier_audit.py": { + "path": "ION/04_packages/kernel/ion_codex_cli_carrier_audit.py", + "sha256": "1dda350b85eb1c3d9be5d262779c4dde312498942707115e728a0ab769462b39", + "size": 7897 + }, + "ION/04_packages/kernel/ion_codex_extension_carrier_audit.py": { + "path": "ION/04_packages/kernel/ion_codex_extension_carrier_audit.py", + "sha256": "ee1d290d371af222102d2db2dd958ba4f3609ff19b50cdf2d82fe92ea2a02eca", + "size": 6335 + }, + "ION/04_packages/kernel/ion_codex_queue_runner.py": { + "path": "ION/04_packages/kernel/ion_codex_queue_runner.py", + "sha256": "09a4b2669c890d3d6f822e7607dcff6106d666f82d8ae378b0e802c6164fe545", + "size": 33733 + }, + "ION/04_packages/kernel/ion_compiled_role_context_bundle_audit.py": { + "path": "ION/04_packages/kernel/ion_compiled_role_context_bundle_audit.py", + "sha256": "e8396e7434142ed3f7ad689184ac670ae2415069febfedafa042182d484ea116", + "size": 4044 + }, + "ION/04_packages/kernel/ion_context_authority_team_audit.py": { + "path": "ION/04_packages/kernel/ion_context_authority_team_audit.py", + "sha256": "f41f730387e6339bb59026643356ee595e7791dcfc010270ca5ea58e82428f4e", + "size": 3419 + }, + "ION/04_packages/kernel/ion_context_lifecycle.py": { + "path": "ION/04_packages/kernel/ion_context_lifecycle.py", + "sha256": "da920b98694f7c1bfbe3d5361f516204308675433fd2c6a150b8944a55be98a4", + "size": 13398 + }, + "ION/04_packages/kernel/ion_context_proof_gate.py": { + "path": "ION/04_packages/kernel/ion_context_proof_gate.py", + "sha256": "7108450d7318cae42abae447137f2514b1040d54fe62df1770869287a3dba649", + "size": 5261 + }, + "ION/04_packages/kernel/ion_cursor_autopilot_audit.py": { + "path": "ION/04_packages/kernel/ion_cursor_autopilot_audit.py", + "sha256": "f0a4410199d966586dd1635f11f350a2111691e268bf0a0652665f6b4f046686", + "size": 3814 + }, + "ION/04_packages/kernel/ion_cursor_autopilot_packet.py": { + "path": "ION/04_packages/kernel/ion_cursor_autopilot_packet.py", + "sha256": "2e2778d8ee35b2211a95598b543e0d4f308589230f565a34c3e0526acc5be5c5", + "size": 8309 + }, + "ION/04_packages/kernel/ion_cursor_canonical_workflow_audit.py": { + "path": "ION/04_packages/kernel/ion_cursor_canonical_workflow_audit.py", + "sha256": "7adc7bb6f82dca2c3cdda6fb3607ff97f23eb06e9c78faca6d289ff2947de830", + "size": 5983 + }, + "ION/04_packages/kernel/ion_cursor_hook_state.py": { + "path": "ION/04_packages/kernel/ion_cursor_hook_state.py", + "sha256": "786eddfb152b9db3dfbe03665bedacdf8c26dbf5cbce62fdffcd589dc9f8d34f", + "size": 4576 + }, + "ION/04_packages/kernel/ion_cursor_hooks_audit.py": { + "path": "ION/04_packages/kernel/ion_cursor_hooks_audit.py", + "sha256": "48412b88ed27253619ee1f25c4c366f6844ecbc6144e5d42e62ef33a7c7941a4", + "size": 5421 + }, + "ION/04_packages/kernel/ion_cycle_runner.py": { + "path": "ION/04_packages/kernel/ion_cycle_runner.py", + "sha256": "3d38b76ce4f6e9eee6b9487571b546c3f0d7c8ae24fe2274c43986cbc23428c5", + "size": 33032 + }, + "ION/04_packages/kernel/ion_deep_operational_cartography.py": { + "path": "ION/04_packages/kernel/ion_deep_operational_cartography.py", + "sha256": "e4efc6292d4e41eda6b56e7061407c8f99dc97d89972f45bdfcb5d6f7e54ee52", + "size": 37371 + }, + "ION/04_packages/kernel/ion_front_door_proof_trace.py": { + "path": "ION/04_packages/kernel/ion_front_door_proof_trace.py", + "sha256": "0edd782ff99d2c70daff7e8e4f128fcaaea15917e62fd5e760987e7cf10a61b3", + "size": 19370 + }, + "ION/04_packages/kernel/ion_full_carrier_capability_audit.py": { + "path": "ION/04_packages/kernel/ion_full_carrier_capability_audit.py", + "sha256": "83463e637d5e9fbbf48d99a2025d216b29369da4239c4b0f2add9eb0e0d53135", + "size": 7869 + }, + "ION/04_packages/kernel/ion_github_commit_proposal_receipt.py": { + "path": "ION/04_packages/kernel/ion_github_commit_proposal_receipt.py", + "sha256": "657c43a4a063c7884ef6569b3e36ab1bded09bdfc6c230d3581028a6e5df223b", + "size": 14888 + }, + "ION/04_packages/kernel/ion_github_data_plane_audit.py": { + "path": "ION/04_packages/kernel/ion_github_data_plane_audit.py", + "sha256": "944a211d9948d989311a9a1ffa35a322348f6f5b00de5a3d6ca7ce63a1ff8d3d", + "size": 15130 + }, + "ION/04_packages/kernel/ion_human_gate_queue.py": { + "path": "ION/04_packages/kernel/ion_human_gate_queue.py", + "sha256": "1a9cab1b45b33a9930a038f13b236e2ffcd8a2f0316baaa207ff9870ade02e12", + "size": 6490 + }, + "ION/04_packages/kernel/ion_lane_timeline_view_model.py": { + "path": "ION/04_packages/kernel/ion_lane_timeline_view_model.py", + "sha256": "ed780aeecf8c4a9dfaf4b334ad15d1a48d0af034692535c884f1111445952f08", + "size": 19402 + }, + "ION/04_packages/kernel/ion_lifecycle_packager.py": { + "path": "ION/04_packages/kernel/ion_lifecycle_packager.py", + "sha256": "b13495ccbcc99ed6e1bc68aadf429a9714d98bb9e73743b5d175c92524b5bb33", + "size": 21149 + }, + "ION/04_packages/kernel/ion_mcp_bridge_audit.py": { + "path": "ION/04_packages/kernel/ion_mcp_bridge_audit.py", + "sha256": "af7289b230f58f7205aa15bf3788d0483ad05e1235f9f87dd02420320bc830c8", + "size": 4284 + }, + "ION/04_packages/kernel/ion_mcp_client_certification.py": { + "path": "ION/04_packages/kernel/ion_mcp_client_certification.py", + "sha256": "6c4350f2d00f25b978d82c7745503efe814d0657821b5165fba6d2eaddd4a4d1", + "size": 13492 + }, + "ION/04_packages/kernel/ion_mcp_client_configs.py": { + "path": "ION/04_packages/kernel/ion_mcp_client_configs.py", + "sha256": "8bcfbab9886c05a849061045c7c0b8947a1b6562cc54c5edece1fc7f86c676f2", + "size": 6600 + }, + "ION/04_packages/kernel/ion_mcp_hosted_auth_alpha.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_auth_alpha.py", + "sha256": "bc2775e22118af2ed71d13b583d5166c8bd50474bc2bd9ea523b6d7a00e0d878", + "size": 20268 + }, + "ION/04_packages/kernel/ion_mcp_hosted_bundle_replay_alpha.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_bundle_replay_alpha.py", + "sha256": "88ffbf679737eefc88c1007603699e8892b92706e0113b0a63c61515b963d1b6", + "size": 20158 + }, + "ION/04_packages/kernel/ion_mcp_hosted_oauth_http_preview.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_oauth_http_preview.py", + "sha256": "30f7b4236677db10f9280a015b65713912af22452f265f2d453d9c742e064b5d", + "size": 24702 + }, + "ION/04_packages/kernel/ion_mcp_hosted_storage_receipt_ledger_alpha.py": { + "path": "ION/04_packages/kernel/ion_mcp_hosted_storage_receipt_ledger_alpha.py", + "sha256": "68203340abef0e0bd80f4eea0683eb5dba532e96226dba79ff0494d65553a089", + "size": 20101 + }, + "ION/04_packages/kernel/ion_mcp_local_bridge.py": { + "path": "ION/04_packages/kernel/ion_mcp_local_bridge.py", + "sha256": "98792293a9df4f60e3de7d8119b6018773133857a891295f746f2ef06885fabd", + "size": 40374 + }, + "ION/04_packages/kernel/ion_mcp_local_bridge_smoke.py": { + "path": "ION/04_packages/kernel/ion_mcp_local_bridge_smoke.py", + "sha256": "ae0c9380b5307666808f0b3032be25a51d712576b80ebc435824c7ebaba06c63", + "size": 9594 + }, + "ION/04_packages/kernel/ion_mcp_sdk_wrapper_boundary.py": { + "path": "ION/04_packages/kernel/ion_mcp_sdk_wrapper_boundary.py", + "sha256": "3168ccf2bbc656e83e39d82194ade5c3d774ccb9d75bd8dbaf80be9e42c3c306", + "size": 16820 + }, + "ION/04_packages/kernel/ion_mcp_transport_preview.py": { + "path": "ION/04_packages/kernel/ion_mcp_transport_preview.py", + "sha256": "c249899fad48f748af0c5038d5d24f8be5b3ddfb8ea639ccd5b365a10155be1d", + "size": 12325 + }, + "ION/04_packages/kernel/ion_operational_truth_audit.py": { + "path": "ION/04_packages/kernel/ion_operational_truth_audit.py", + "sha256": "c61fb0b16dcecce7ca41a78e1931bffdc8c2bf8f4c1aca20dd89a481c524bafc", + "size": 17011 + }, + "ION/04_packages/kernel/ion_operator_message_classifier.py": { + "path": "ION/04_packages/kernel/ion_operator_message_classifier.py", + "sha256": "36e953ff8336923d3fbc0460fddef8bf19d573c6b30d686ab413af07ea6344cb", + "size": 5476 + }, + "ION/04_packages/kernel/ion_operator_message_queue.py": { + "path": "ION/04_packages/kernel/ion_operator_message_queue.py", + "sha256": "28787ff64a09eaa1c427713f8f9048a531dd3ba8fba048715497f4f47d666d5e", + "size": 7515 + }, + "ION/04_packages/kernel/ion_receipt_hydration_mapper.py": { + "path": "ION/04_packages/kernel/ion_receipt_hydration_mapper.py", + "sha256": "4e2a3cbb1152f7dffaa318a3c9861a1c11c7e111ca869ffcb9014d677f81c75f", + "size": 9383 + }, + "ION/04_packages/kernel/ion_runtime_debug_overlay.py": { + "path": "ION/04_packages/kernel/ion_runtime_debug_overlay.py", + "sha256": "b67a9341c23283f7479619473351f6e1017ba557368290bf1b8748ed09746a0c", + "size": 7110 + }, + "ION/04_packages/kernel/ion_safe_full_project_packager.py": { + "path": "ION/04_packages/kernel/ion_safe_full_project_packager.py", + "sha256": "4384007dd14e1773d3507af69547c2721d6abda99e708e9f0f22a010bc34820b", + "size": 13916 + }, + "ION/04_packages/kernel/ion_status.py": { + "path": "ION/04_packages/kernel/ion_status.py", + "sha256": "6f81924fec3d43e61b6597df38d1a334b64997c0266d7eb3ee3056f9c552d568", + "size": 15588 + }, + "ION/04_packages/kernel/ion_steward_integrate.py": { + "path": "ION/04_packages/kernel/ion_steward_integrate.py", + "sha256": "12d42dfcff98a0d12ad7b861e0433371781adcc38313adf79b5360d524b85fa6", + "size": 12307 + }, + "ION/04_packages/kernel/ion_template_action_gate.py": { + "path": "ION/04_packages/kernel/ion_template_action_gate.py", + "sha256": "0bfb7b06a96d721a2d08c77a8cd039dc15c69a822cd2b089daa908c6e508f70d", + "size": 5375 + }, + "ION/04_packages/kernel/ion_temporal_context_enforcement_audit.py": { + "path": "ION/04_packages/kernel/ion_temporal_context_enforcement_audit.py", + "sha256": "1d92f53ff147f3aeca893ddd44cbef992873277fe700e3374fc8e39020033df9", + "size": 11740 + }, + "ION/04_packages/kernel/ion_trunk_preservation_gate.py": { + "path": "ION/04_packages/kernel/ion_trunk_preservation_gate.py", + "sha256": "3ac1b1d303a0f77ea3d89ba5efb8dc19350380490120a281e9e5f88913812264", + "size": 23724 + }, + "ION/04_packages/kernel/ion_v72_mcp_donor_reconciliation_audit.py": { + "path": "ION/04_packages/kernel/ion_v72_mcp_donor_reconciliation_audit.py", + "sha256": "eeace89026b45668e468495c518a00c7a577dc7ea6b6191c03bd4f9a98739d8d", + "size": 10642 + }, + "ION/04_packages/kernel/joc_cockpit_component_contract.py": { + "path": "ION/04_packages/kernel/joc_cockpit_component_contract.py", + "sha256": "164e12f4b99396b88cbd5e58fbdd579618817533de2f41128758271c39d5bd20", + "size": 19989 + }, + "ION/04_packages/kernel/joc_cognitive_explorer_route_view_model.py": { + "path": "ION/04_packages/kernel/joc_cognitive_explorer_route_view_model.py", + "sha256": "320610cfabfbc2a815625f5973f0a3648e128aab6c38ce5c48549b5eeec44c77", + "size": 12506 + }, + "ION/04_packages/kernel/joc_dispatch_authorization_view_model.py": { + "path": "ION/04_packages/kernel/joc_dispatch_authorization_view_model.py", + "sha256": "f6f8fa7656b975249b3500fc10c94d70e04ee6128b9ab4be2c5054f4c6a08525", + "size": 10771 + }, + "ION/04_packages/kernel/joc_dry_run_dispatch_trace_view_model.py": { + "path": "ION/04_packages/kernel/joc_dry_run_dispatch_trace_view_model.py", + "sha256": "c83cfa4f393bca5bdcec6fe477db228951644ecb55cf2119889eb1ec2202db1b", + "size": 16600 + }, + "ION/04_packages/kernel/joc_export_handoff_manifest_view_model.py": { + "path": "ION/04_packages/kernel/joc_export_handoff_manifest_view_model.py", + "sha256": "e21a71143d385968dfb06c850f9bd5bf638837cb3fa7c132bb87d1ae7efd1a8d", + "size": 17899 + }, + "ION/04_packages/kernel/joc_handoff_package_assembly_plan_view_model.py": { + "path": "ION/04_packages/kernel/joc_handoff_package_assembly_plan_view_model.py", + "sha256": "b735e10342e8ad621abb2d62166aa0f59c060b2367f690da156f2209a36889cb", + "size": 21563 + }, + "ION/04_packages/kernel/joc_mission_dispatch_route_view_model.py": { + "path": "ION/04_packages/kernel/joc_mission_dispatch_route_view_model.py", + "sha256": "f75271886f56b71160644a03d1a719c24b7adf7334a8f47813868fed30901c67", + "size": 15805 + }, + "ION/04_packages/kernel/joc_operator_approval_queue_view_model.py": { + "path": "ION/04_packages/kernel/joc_operator_approval_queue_view_model.py", + "sha256": "7b23a612beda0236c9e46039aa89ad7789f540bc9e651e0fc48064a5dc9ba507", + "size": 11490 + }, + "ION/04_packages/kernel/joc_provider_adapter_readiness_view_model.py": { + "path": "ION/04_packages/kernel/joc_provider_adapter_readiness_view_model.py", + "sha256": "b51fa150dc8882b26ac08ec0740e119493212941b8b463464074c230a92a9f3e", + "size": 14398 + }, + "ION/04_packages/kernel/joc_reactive_os_stream_view_model.py": { + "path": "ION/04_packages/kernel/joc_reactive_os_stream_view_model.py", + "sha256": "71d4540b43f4a672c362b943a8c809fe8f99390d0fd127d5291d71103dfeca59", + "size": 20717 + }, + "ION/04_packages/kernel/joc_release_candidate_preview_view_model.py": { + "path": "ION/04_packages/kernel/joc_release_candidate_preview_view_model.py", + "sha256": "c626b4a0b5b69a5581a1098caf7057377f13307ee559fbeb9da9fd3e78fa5416", + "size": 23873 + }, + "ION/04_packages/kernel/joc_result_save_proposal_view_model.py": { + "path": "ION/04_packages/kernel/joc_result_save_proposal_view_model.py", + "sha256": "06d02899b9a0bc9fd16e939fb8cd21212b135c4153acb86d6e1cf7a6bf999577", + "size": 13128 + }, + "ION/04_packages/kernel/joc_synthetic_response_capture_view_model.py": { + "path": "ION/04_packages/kernel/joc_synthetic_response_capture_view_model.py", + "sha256": "1b7dbf6f86a642539588f7f8f3e96fcc472ef74e2b09cb818f5c370976c826c7", + "size": 16709 + }, + "ION/04_packages/kernel/joc_synthetic_synthesis_route_result_view_model.py": { + "path": "ION/04_packages/kernel/joc_synthetic_synthesis_route_result_view_model.py", + "sha256": "34a435d0a00a73b75ade51c718e0e867e8c309ede19bb187c84676bfdb0094f9", + "size": 18791 + }, + "ION/04_packages/kernel/local_browser_capture_adapter.py": { + "path": "ION/04_packages/kernel/local_browser_capture_adapter.py", + "sha256": "ce4cfdbaa99d2b45458365d82cdd79ba253fb12cac65b29bfaeac5b0bd60ffd7", + "size": 7011 + }, + "ION/04_packages/kernel/local_browser_execution_harness.py": { + "path": "ION/04_packages/kernel/local_browser_execution_harness.py", + "sha256": "371e9f32c43f3ddc4c46c7e48b3edc599bbe9fba6a3a4295da910b27bdd12135", + "size": 14649 + }, + "ION/04_packages/kernel/local_browser_execution_run_receipt.py": { + "path": "ION/04_packages/kernel/local_browser_execution_run_receipt.py", + "sha256": "bf02b050e08c5a07a28868b880ab8102c05c5408b71e3946c77691637b2268ba", + "size": 18795 + }, + "ION/04_packages/kernel/local_browser_execution_sandbox_spec.py": { + "path": "ION/04_packages/kernel/local_browser_execution_sandbox_spec.py", + "sha256": "7f0d2ee16b263bf1a2e3c1f586b00aecec5adec7029220efafb6a0bab53eed6e", + "size": 17752 + }, + "ION/04_packages/kernel/local_visual_harness.py": { + "path": "ION/04_packages/kernel/local_visual_harness.py", + "sha256": "698a9b7cb360b56b4d6ceb8bae24b0c27f74a03fcb411910abcb8adac2474c24", + "size": 13708 + }, + "ION/04_packages/kernel/maintained_work_surface.py": { + "path": "ION/04_packages/kernel/maintained_work_surface.py", + "sha256": "03ff1880f371b36623e2d8da0b3ac2c08476e45acddea54b87ae5256657e5e8f", + "size": 8089 + }, + "ION/04_packages/kernel/manifest_state.py": { + "path": "ION/04_packages/kernel/manifest_state.py", + "sha256": "91c462d42689d40482747516c95ac8d04302df505c5357e160b4a5521d96da6a", + "size": 9736 + }, + "ION/04_packages/kernel/model.py": { + "path": "ION/04_packages/kernel/model.py", + "sha256": "f993e7a8eb35984fc0f47948e79c505ad3b79414a9725c1de39f2adeb219cd27", + "size": 51364 + }, + "ION/04_packages/kernel/model_economics_registry.py": { + "path": "ION/04_packages/kernel/model_economics_registry.py", + "sha256": "a33b3a6be64c7f93d7bc048138354e0ac1a9df1f53723dc8b95526c5776b336c", + "size": 10873 + }, + "ION/04_packages/kernel/model_economics_schedule.py": { + "path": "ION/04_packages/kernel/model_economics_schedule.py", + "sha256": "f720f08b8fa40d082b81f038eee96398e6b554c00cbdb8069b09280b5dc1f71f", + "size": 4138 + }, + "ION/04_packages/kernel/model_router.py": { + "path": "ION/04_packages/kernel/model_router.py", + "sha256": "9531d9fe744ffd3363052b724535abe6ad1d82d175068d5843d7f5b748dc67f3", + "size": 23240 + }, + "ION/04_packages/kernel/name_lineage.py": { + "path": "ION/04_packages/kernel/name_lineage.py", + "sha256": "233fc05e94c41c8a4ac7acd3dbe12eb3c04a898adc0a90ae31de81635fe6eb87", + "size": 21433 + }, + "ION/04_packages/kernel/operational_hardening.py": { + "path": "ION/04_packages/kernel/operational_hardening.py", + "sha256": "c7ab55f9d3f19fe339fd20d730fad58110f6c987c31978b75869a0b7706b2921", + "size": 27932 + }, + "ION/04_packages/kernel/operator_cli.py": { + "path": "ION/04_packages/kernel/operator_cli.py", + "sha256": "733d8c617b687ee7f873026daa9ca02e6b24a76c4f8f312e5d5dfc5a9cd8e0de", + "size": 149069 + }, + "ION/04_packages/kernel/operator_control.py": { + "path": "ION/04_packages/kernel/operator_control.py", + "sha256": "16ded818f378d3ccf9ab010e65e0820ece650eb115d7505bc46594bb0ae3a80c", + "size": 10669 + }, + "ION/04_packages/kernel/packet_validation.py": { + "path": "ION/04_packages/kernel/packet_validation.py", + "sha256": "b7042346a0aff14ab7e33e3938d037bc4053a16eee3000282679c62ff82f4d9a", + "size": 24772 + }, + "ION/04_packages/kernel/planner_gate.py": { + "path": "ION/04_packages/kernel/planner_gate.py", + "sha256": "c6a2366bde087d2d106dc83e9f7b74d6e7fc79206e0132f7d37a42d1e80374ce", + "size": 34604 + }, + "ION/04_packages/kernel/production_readiness.py": { + "path": "ION/04_packages/kernel/production_readiness.py", + "sha256": "ab1d3c6fecc5c1b4afccbb7d329213dbb21ef3a5c4a2772d786c9555a0dd5484", + "size": 26987 + }, + "ION/04_packages/kernel/question_answers.py": { + "path": "ION/04_packages/kernel/question_answers.py", + "sha256": "4d16abdef089ab3f39530542827108a55caa8c4bc16d7af15fa51976de455216", + "size": 28953 + }, + "ION/04_packages/kernel/questions.py": { + "path": "ION/04_packages/kernel/questions.py", + "sha256": "d38b11b04609c5c7a561b890a90c2229f4355117632ef922ad658854f1aa49f2", + "size": 11729 + }, + "ION/04_packages/kernel/receipts.py": { + "path": "ION/04_packages/kernel/receipts.py", + "sha256": "a1375a7875a29340986238a07c23f439c53397615302ff50a7b7815d07572b54", + "size": 10083 + }, + "ION/04_packages/kernel/recovery_replay.py": { + "path": "ION/04_packages/kernel/recovery_replay.py", + "sha256": "71370cc738632145b7a7c6470d6dde3e01150c372dad895fc58562b06394cffb", + "size": 18218 + }, + "ION/04_packages/kernel/release_readiness.py": { + "path": "ION/04_packages/kernel/release_readiness.py", + "sha256": "1a1456b014b6417368c9d6284df97b6344e97e6e8d754728160efb106cf0364e", + "size": 27402 + }, + "ION/04_packages/kernel/reviews.py": { + "path": "ION/04_packages/kernel/reviews.py", + "sha256": "a1426eab76221bfc01f09ae5534f64a2397ceabea7ea2f2a44006a185901bdf7", + "size": 10165 + }, + "ION/04_packages/kernel/root_authority_bundle.py": { + "path": "ION/04_packages/kernel/root_authority_bundle.py", + "sha256": "605266a019fe43c425e3c7b0494d1da1af7c9944fe5169d1c9045fe9350637a1", + "size": 37820 + }, + "ION/04_packages/kernel/runtime_identity_envelope.py": { + "path": "ION/04_packages/kernel/runtime_identity_envelope.py", + "sha256": "df1c8248591152617a300bc419db120b6917d38e6e7c55e7909080897692ef44", + "size": 18789 + }, + "ION/04_packages/kernel/runtime_report_anchors.py": { + "path": "ION/04_packages/kernel/runtime_report_anchors.py", + "sha256": "c9a0ee23e87173bfaf7ae512a1e871c92f2e04b8db7aff5d3c9b92c05d434a2b", + "size": 1923 + }, + "ION/04_packages/kernel/runtime_report_artifacts.py": { + "path": "ION/04_packages/kernel/runtime_report_artifacts.py", + "sha256": "8052bf86f9752c5ef8a62e42f54a38709f1d9afe004598572deb8c9f9b31db8a", + "size": 11743 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace.py", + "sha256": "11b79a5c1cd20ec0f28836338238507c4f195549e8f71cf90fa19120ff79b35e", + "size": 34451 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace_comparison.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace_comparison.py", + "sha256": "a6b213b6eda3205494601974c963b34d32f3b4a91c729fc5dc5530ab6e8614d0", + "size": 29992 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace_family_summary.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace_family_summary.py", + "sha256": "b2d88dce5198b2a3093ff12437b698823cf065973aa3f0a61841f107ba9922b6", + "size": 22356 + }, + "ION/04_packages/kernel/runtime_report_bidirectional_trace_temporal.py": { + "path": "ION/04_packages/kernel/runtime_report_bidirectional_trace_temporal.py", + "sha256": "96beb4b404976fbdbd6b40153f308348007355c158c1a12989b15864a94493b1", + "size": 32077 + }, + "ION/04_packages/kernel/runtime_report_browser.py": { + "path": "ION/04_packages/kernel/runtime_report_browser.py", + "sha256": "aa76530f9f1f27e72d223933d72c3fa52ea50db835a0ba8595979ec5ef38f425", + "size": 25688 + }, + "ION/04_packages/kernel/runtime_report_comparative_provenance.py": { + "path": "ION/04_packages/kernel/runtime_report_comparative_provenance.py", + "sha256": "2ffb6a7838d326b7380f227e6ae4a1fde5ed1cbf8c70bd5844bc115f5d022291", + "size": 18338 + }, + "ION/04_packages/kernel/runtime_report_crosslinks.py": { + "path": "ION/04_packages/kernel/runtime_report_crosslinks.py", + "sha256": "0f20684d4af484748492ebd7b658e5fa4283b260c74ae6af49fa3992ad045752", + "size": 13551 + }, + "ION/04_packages/kernel/runtime_report_digest_profile_browser.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_profile_browser.py", + "sha256": "4e315f800d28d862eb08fef89acdf31b4ae1b0dd98242d5664c71036c1cab193", + "size": 24069 + }, + "ION/04_packages/kernel/runtime_report_digest_profile_catalog.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_profile_catalog.py", + "sha256": "b2ae114f2473b2042c5c8a5c99ae38057ab645de8e0836e45c5036ea2efcf6bb", + "size": 14976 + }, + "ION/04_packages/kernel/runtime_report_digest_profiles.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_profiles.py", + "sha256": "bc6eeb8e767fc369619979ea7b27873384fc9ddc17ce645e3f38880a48c33040", + "size": 15836 + }, + "ION/04_packages/kernel/runtime_report_digest_reverse_trace.py": { + "path": "ION/04_packages/kernel/runtime_report_digest_reverse_trace.py", + "sha256": "03535e1658fb4bd24e1f6a365282785e4be688ca1ea0f961e8cbe7891b933998", + "size": 40642 + }, + "ION/04_packages/kernel/runtime_report_family_summary.py": { + "path": "ION/04_packages/kernel/runtime_report_family_summary.py", + "sha256": "ef03fdfd1e9bfe0aec695d3dc53f258fccc166f2b04a7c2b212fe9af58865395", + "size": 19077 + }, + "ION/04_packages/kernel/runtime_report_governance.py": { + "path": "ION/04_packages/kernel/runtime_report_governance.py", + "sha256": "f1c7c1cf91be66acdad3659808923612ab01a5a792088532d4257646842405bf", + "size": 9250 + }, + "ION/04_packages/kernel/runtime_report_governance_aggregation.py": { + "path": "ION/04_packages/kernel/runtime_report_governance_aggregation.py", + "sha256": "253ed5f6558def9ec06e5c44799edec2c3311af34ff6879f4b902f804e80cb17", + "size": 11352 + }, + "ION/04_packages/kernel/runtime_report_navigation.py": { + "path": "ION/04_packages/kernel/runtime_report_navigation.py", + "sha256": "6c815733c69da3de9b159f0f22ed5fcf4a11c9127bc3df94c798b9acabea163a", + "size": 15882 + }, + "ION/04_packages/kernel/runtime_report_operator_digest.py": { + "path": "ION/04_packages/kernel/runtime_report_operator_digest.py", + "sha256": "7575509d07aa7b6447f5aad7579b9410d50a1f5b6f0a90febe159243cd884598", + "size": 21331 + }, + "ION/04_packages/kernel/runtime_report_profile_digest_trace.py": { + "path": "ION/04_packages/kernel/runtime_report_profile_digest_trace.py", + "sha256": "0a6c1f34429148590eae036a228da50f6361822f97463f76093d59236f629f68", + "size": 24203 + }, + "ION/04_packages/kernel/runtime_report_provenance.py": { + "path": "ION/04_packages/kernel/runtime_report_provenance.py", + "sha256": "91a5997d0b61745c2ab07f25d9feecded5d08fe94b8ea77df609d68a0aa8633c", + "size": 27186 + }, + "ION/04_packages/kernel/runtime_report_temporal_provenance.py": { + "path": "ION/04_packages/kernel/runtime_report_temporal_provenance.py", + "sha256": "273209d2fd19e922d63c3fdfc56ff2c78d15363af5d494d17574428070cd5f12", + "size": 25954 + }, + "ION/04_packages/kernel/runtime_report_triggers.py": { + "path": "ION/04_packages/kernel/runtime_report_triggers.py", + "sha256": "578eedb5f11779e19e419bafad1223ee9f2b52e28b64bb1f44c81b223a1e1a4c", + "size": 13269 + }, + "ION/04_packages/kernel/runtime_report_visibility.py": { + "path": "ION/04_packages/kernel/runtime_report_visibility.py", + "sha256": "c64977cc7252928bc19e34a1cefbbbcf6ba51a3e07b3d53996feab69aa645628", + "size": 15703 + }, + "ION/04_packages/kernel/runtime_reporting.py": { + "path": "ION/04_packages/kernel/runtime_reporting.py", + "sha256": "0ae3b12468e1f3daf8e40af79d65aacae80f15aa941f4e23b9cf888b32a3a201", + "size": 17569 + }, + "ION/04_packages/kernel/runtime_session_dispatch_binding.py": { + "path": "ION/04_packages/kernel/runtime_session_dispatch_binding.py", + "sha256": "8e73bedd3be5a15b0c241e2065223c1263366a8f39c374bc51e119736d9a86d6", + "size": 4498 + }, + "ION/04_packages/kernel/runtime_session_store.py": { + "path": "ION/04_packages/kernel/runtime_session_store.py", + "sha256": "cddbf32bff6a23bfd8d80cd8d38511cff16be6818d5918d0b68381659a7b7a81", + "size": 22293 + }, + "ION/04_packages/kernel/runtime_state_sync.py": { + "path": "ION/04_packages/kernel/runtime_state_sync.py", + "sha256": "c072567ff5aa50195ada7ab906d1710101ee84c7ae47dd11c801f6acb67ac431", + "size": 22007 + }, + "ION/04_packages/kernel/runtime_state_views.py": { + "path": "ION/04_packages/kernel/runtime_state_views.py", + "sha256": "edb73abdeb22b19a8cb2b1b4082756d53c2fddce921e331fef7584ef7c31a161", + "size": 8770 + }, + "ION/04_packages/kernel/schedule_completion_release.py": { + "path": "ION/04_packages/kernel/schedule_completion_release.py", + "sha256": "e713da2239c272e1b0a8cc78316656cb11078e1f92d109cf37dd83cca5ea372a", + "size": 10184 + }, + "ION/04_packages/kernel/schedule_controls.py": { + "path": "ION/04_packages/kernel/schedule_controls.py", + "sha256": "660ea7d487259cf8649430b7208c0c6277e12ffc818f72174aebd152428ad69b", + "size": 11855 + }, + "ION/04_packages/kernel/schedule_dispatch_reconciliation.py": { + "path": "ION/04_packages/kernel/schedule_dispatch_reconciliation.py", + "sha256": "a602a74edc09c9ec132fbb8e1c4a5bb9f6464dff5fcab6060cf7ba79743b59a5", + "size": 11270 + }, + "ION/04_packages/kernel/schedule_executor_start_packet.py": { + "path": "ION/04_packages/kernel/schedule_executor_start_packet.py", + "sha256": "f1920a68c4bd56d4fb5b5181d34a1c68f65a7ce4d3fbc4de0d60ad7c1fb527a7", + "size": 29403 + }, + "ION/04_packages/kernel/schedule_handoff_capsule.py": { + "path": "ION/04_packages/kernel/schedule_handoff_capsule.py", + "sha256": "fed89906d0fde26e1bb2cf192c6166ca679f7952e520eacc527fd61fc1fc6382", + "size": 20993 + }, + "ION/04_packages/kernel/schedule_handoff_entry_rehearsal.py": { + "path": "ION/04_packages/kernel/schedule_handoff_entry_rehearsal.py", + "sha256": "dc48d83472e7709bdfdfed16b850bd87c11de42b8a1c37d4e35317b784c92b19", + "size": 20722 + }, + "ION/04_packages/kernel/schedule_lineage.py": { + "path": "ION/04_packages/kernel/schedule_lineage.py", + "sha256": "8113e6c04c5c2db9e4d425feca47bd1c7490e811a042e57164e80cd15a09ceba", + "size": 9705 + }, + "ION/04_packages/kernel/schedule_lineage_replay.py": { + "path": "ION/04_packages/kernel/schedule_lineage_replay.py", + "sha256": "a60751716df64f0d54112f7a7e35d9cf8d88a519d57284908bdb379375b51516", + "size": 10488 + }, + "ION/04_packages/kernel/schedule_resume_bundle.py": { + "path": "ION/04_packages/kernel/schedule_resume_bundle.py", + "sha256": "bb3f6abf3b4d238efb420ba78c92c5c666a44bc98a7c4fa195a089625e6f3def", + "size": 11248 + }, + "ION/04_packages/kernel/schedule_resume_projection.py": { + "path": "ION/04_packages/kernel/schedule_resume_projection.py", + "sha256": "c4b408f56c83958a22ec258cec843fb2986f9d5499e39004ced6ea6e270eca0d", + "size": 16054 + }, + "ION/04_packages/kernel/schedule_settlement.py": { + "path": "ION/04_packages/kernel/schedule_settlement.py", + "sha256": "90a55beee11b242c99b04f44e66403770689990a6561ab628313b1873e5da744", + "size": 9593 + }, + "ION/04_packages/kernel/schedule_takeover_activation.py": { + "path": "ION/04_packages/kernel/schedule_takeover_activation.py", + "sha256": "6efdac7c4a79d9ccdb07bfbfae63af846684e8edccdb5668f35e6061a7e214ab", + "size": 17529 + }, + "ION/04_packages/kernel/scheduler.py": { + "path": "ION/04_packages/kernel/scheduler.py", + "sha256": "ff1d582c0419540a21343d4481aa5d95fcd8740e59a9463f2f4e37c68d241677", + "size": 32156 + }, + "ION/04_packages/kernel/self_mount_graph_integration.py": { + "path": "ION/04_packages/kernel/self_mount_graph_integration.py", + "sha256": "169eedb50f493daf3ce584eb5d37562cdbe16b24f90f32d5b2506d6908b7db66", + "size": 10441 + }, + "ION/04_packages/kernel/self_surface_drift_gate.py": { + "path": "ION/04_packages/kernel/self_surface_drift_gate.py", + "sha256": "ecfa176ad47a4d505308f5ebb6414a18c50714ebf9bc624a291ecd1eaf789ed3", + "size": 8470 + }, + "ION/04_packages/kernel/sequential_kernel.py": { + "path": "ION/04_packages/kernel/sequential_kernel.py", + "sha256": "5e23a0794b8931d1888ce6425e4eb4770d7b38758e29098cd507452809d5d1cb", + "size": 34570 + }, + "ION/04_packages/kernel/settlement.py": { + "path": "ION/04_packages/kernel/settlement.py", + "sha256": "9796a1a0ec21b89d4f64025b05416dc1ba6d052877d45df4c895879ec9c041d3", + "size": 20498 + }, + "ION/04_packages/kernel/signal_followups.py": { + "path": "ION/04_packages/kernel/signal_followups.py", + "sha256": "6be241d9fe1476bdaff0b5a2caa2d35d38e3628d69d35a53c0e90d55912e177a", + "size": 17204 + }, + "ION/04_packages/kernel/signals.py": { + "path": "ION/04_packages/kernel/signals.py", + "sha256": "e7159b3eb806c70b2a2f551dd9d28681e298d27247f8806d804da743d8f27cd8", + "size": 19027 + }, + "ION/04_packages/kernel/store.py": { + "path": "ION/04_packages/kernel/store.py", + "sha256": "3dcabfa5dd3f7d5ac3c22cd401bce49bcac8bdfd87e24b25fcbec2826a8cce0c", + "size": 21232 + }, + "ION/04_packages/kernel/summary_refresh_demo.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo.py", + "sha256": "36e154b2daea1c66c9b06fa6c1bae05f211374bcad12485e2bd41759608d9ed9", + "size": 15708 + }, + "ION/04_packages/kernel/summary_refresh_demo_certification.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_certification.py", + "sha256": "daa19f66914e5f35e40736dfa834c89234b7b9639b80bc75fc0fd79a7d385b8b", + "size": 9881 + }, + "ION/04_packages/kernel/summary_refresh_demo_doctor.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_doctor.py", + "sha256": "ee2d31441799e8b387233c7973d235e85f36b6ddba3f7c0bb20e334f555d5200", + "size": 11245 + }, + "ION/04_packages/kernel/summary_refresh_demo_evidence_bundle.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_evidence_bundle.py", + "sha256": "3fee668681c7f1723013a85f09e4f2016bc7918f5d691aef805556893c3c23a5", + "size": 11640 + }, + "ION/04_packages/kernel/summary_refresh_demo_release_candidate.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_release_candidate.py", + "sha256": "3f07d0042f652e15f3c2bb9be1412b2531b74d08dad5f3edaf96f84872c6787a", + "size": 12361 + }, + "ION/04_packages/kernel/summary_refresh_demo_release_candidate_verify.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_release_candidate_verify.py", + "sha256": "a6900c19a68fc3ca1ae169dcc2f63428522d716348e70952fd64d7d9c366cdc4", + "size": 11461 + }, + "ION/04_packages/kernel/summary_refresh_demo_replay.py": { + "path": "ION/04_packages/kernel/summary_refresh_demo_replay.py", + "sha256": "f4d9cddbeaa6d0b8826f2309228ec4033523b437654811f5536d90e80295e5b6", + "size": 11352 + }, + "ION/04_packages/kernel/takeover.py": { + "path": "ION/04_packages/kernel/takeover.py", + "sha256": "ef84505272920e044f4504af3e0415ad09fbdd922512baddd3c702b6a69cb7f1", + "size": 10016 + }, + "ION/04_packages/kernel/template_completion_events.py": { + "path": "ION/04_packages/kernel/template_completion_events.py", + "sha256": "415d62aa3bdd8094ce96ac9f7bb1fdcc703f516c6f11e7d2ac801a757dc60b2d", + "size": 15228 + }, + "ION/04_packages/kernel/template_contract_projection_audit.py": { + "path": "ION/04_packages/kernel/template_contract_projection_audit.py", + "sha256": "bfd9d38d0a148a762382291155c2ed063c17413a01250b180ea1c84b72697b83", + "size": 9928 + }, + "ION/04_packages/kernel/template_contract_registry.py": { + "path": "ION/04_packages/kernel/template_contract_registry.py", + "sha256": "36effab96ec3ef413d7d0deefa9d5a73605ba242a05080c5f8c0d2308508f33b", + "size": 3239 + }, + "ION/04_packages/kernel/template_contract_release_gate.py": { + "path": "ION/04_packages/kernel/template_contract_release_gate.py", + "sha256": "bca0a9b1b986ed0d9f0b4a2ce6239d0705ac7e1345e52e4ad19e58181d911122", + "size": 4698 + }, + "ION/04_packages/kernel/template_graph_commit.py": { + "path": "ION/04_packages/kernel/template_graph_commit.py", + "sha256": "54bdd80ec3446d03644b3c1e5cc81b8cac516099878f9a7dec6ef0a18b203bcc", + "size": 14895 + }, + "ION/04_packages/kernel/template_graph_writeback_proposals.py": { + "path": "ION/04_packages/kernel/template_graph_writeback_proposals.py", + "sha256": "82d9170594b859356ee9abc1967ee2a518f126b217d6341c03b8a3647fa20deb", + "size": 13162 + }, + "ION/04_packages/kernel/template_graph_writeback_review.py": { + "path": "ION/04_packages/kernel/template_graph_writeback_review.py", + "sha256": "7fe3562337f59adb8d3015abd1f61db73a02b88d24e2ef7d781d58bb586ad2d2", + "size": 11731 + }, + "ION/04_packages/kernel/template_index_projection.py": { + "path": "ION/04_packages/kernel/template_index_projection.py", + "sha256": "35e378a67d329f84d6da31f87e079775669ae1975a211a11557091ee2e355881", + "size": 11435 + }, + "ION/04_packages/kernel/template_metadata_contracts.py": { + "path": "ION/04_packages/kernel/template_metadata_contracts.py", + "sha256": "51c455b5b342ed9a4f3d53d68b7feeabbc5a81778dec1bd874837255ca9e2b91", + "size": 4610 + }, + "ION/04_packages/kernel/template_reaction_selection.py": { + "path": "ION/04_packages/kernel/template_reaction_selection.py", + "sha256": "c4ad59693dfd97c2291a511ed36af69ddcd3a585b90b57bd52e21018f212bc4c", + "size": 17222 + }, + "ION/04_packages/kernel/temporal_evaluator.py": { + "path": "ION/04_packages/kernel/temporal_evaluator.py", + "sha256": "2210e0d518fbd02fd1e0fbd7ed3eb43a35fa9b4c81054fba58e7efa72a0fa0e3", + "size": 3075 + }, + "ION/04_packages/kernel/temporal_leases.py": { + "path": "ION/04_packages/kernel/temporal_leases.py", + "sha256": "e765385c6423ab535208b7df0e55d1a5dc540b9b7b1796a024340c74fb1798e5", + "size": 1971 + }, + "ION/04_packages/kernel/temporal_model.py": { + "path": "ION/04_packages/kernel/temporal_model.py", + "sha256": "5192e26e8ed577467245ae4a078dc2a6f0118df8c7416e2303f0daa907cc95ee", + "size": 6249 + }, + "ION/04_packages/kernel/temporal_object_adapters.py": { + "path": "ION/04_packages/kernel/temporal_object_adapters.py", + "sha256": "2e8c28ab2bc04d96ce70f8d0f4dc2dc4f31d690cbee45935a76a894d422fdf41", + "size": 3955 + }, + "ION/04_packages/kernel/temporal_receipts.py": { + "path": "ION/04_packages/kernel/temporal_receipts.py", + "sha256": "bbf216c24f792a1fd71323dcabe7cd0e959af84503749381fec4d7f2277c01b1", + "size": 2228 + }, + "ION/04_packages/kernel/temporal_reconciliation.py": { + "path": "ION/04_packages/kernel/temporal_reconciliation.py", + "sha256": "4094e0332ba3c55499841969b53cbf28ea03a8d446c8395d53d31b8c85b7eee6", + "size": 3175 + }, + "ION/04_packages/kernel/temporal_relevance.py": { + "path": "ION/04_packages/kernel/temporal_relevance.py", + "sha256": "243527be7c062eb710b5d21a1595d40a457f67e199e940505386bfe07c7c118d", + "size": 7501 + }, + "ION/04_packages/kernel/threshold.py": { + "path": "ION/04_packages/kernel/threshold.py", + "sha256": "12c7c1b071872b054e1efc138cfeb71e281c520c4b99560c396a5d63d9f7e66d", + "size": 12378 + }, + "ION/04_packages/kernel/ui_work_surface_projection.py": { + "path": "ION/04_packages/kernel/ui_work_surface_projection.py", + "sha256": "2b8da3a4efc5de9584d12638f49c88bfe401dc5dfe805e4b169369fa6981141d", + "size": 18011 + }, + "ION/04_packages/kernel/v73_cursor_carrier_mount_audit.py": { + "path": "ION/04_packages/kernel/v73_cursor_carrier_mount_audit.py", + "sha256": "8ee5f4b4a7affe2907085d521862a16f8beef013b75e61e6c9c61619d06bd204", + "size": 3140 + }, + "ION/04_packages/kernel/v74_template_binding_restoration_audit.py": { + "path": "ION/04_packages/kernel/v74_template_binding_restoration_audit.py", + "sha256": "16d8b1fc10288da519011fc1ba6f823afc5431e9b7b35ef586b4f29901397f1e", + "size": 4062 + }, + "ION/04_packages/kernel/v75_cursor_full_workflow_mount_audit.py": { + "path": "ION/04_packages/kernel/v75_cursor_full_workflow_mount_audit.py", + "sha256": "ea76e697b2dba30519896a6e7b68a7d5cd6adc6239277a0c0d192084534b711d", + "size": 2228 + }, + "ION/04_packages/kernel/v75_cursor_subagent_spawn_readiness_audit.py": { + "path": "ION/04_packages/kernel/v75_cursor_subagent_spawn_readiness_audit.py", + "sha256": "814e0468b5a47759295b04f6803fb027acedbc35c09feba9a797ca14e167586d", + "size": 13501 + }, + "ION/04_packages/kernel/v76_cursor_work_cycle_audit.py": { + "path": "ION/04_packages/kernel/v76_cursor_work_cycle_audit.py", + "sha256": "876b9488a7eeb119d18196ad9691010c9dc218d2b522d9c23b136f5464ae44ba", + "size": 8501 + }, + "ION/04_packages/kernel/v78_ion_mount_contract_audit.py": { + "path": "ION/04_packages/kernel/v78_ion_mount_contract_audit.py", + "sha256": "aeacd0971752313f53e7e23bb58b37ed166710e05ee850d74061e0bbf358232c", + "size": 8471 + }, + "ION/04_packages/kernel/validation.py": { + "path": "ION/04_packages/kernel/validation.py", + "sha256": "222ffe41bc6b6cbea791929987228b59f979939472bfe759e36a5f51e4e0684c", + "size": 8658 + }, + "ION/04_packages/kernel/visual_before_after_verification.py": { + "path": "ION/04_packages/kernel/visual_before_after_verification.py", + "sha256": "38a8e2d94d54d0954cfa551a508c62244921b1be254bd0c61e71d433bad7db5f", + "size": 10383 + }, + "ION/04_packages/kernel/visual_closure_graph_projection.py": { + "path": "ION/04_packages/kernel/visual_closure_graph_projection.py", + "sha256": "2624d87cfa02aff0d8063fd56c3ef4eb8ea53bc61158ecd27b2e7527b812792c", + "size": 11865 + }, + "ION/04_packages/kernel/visual_diagnosis_receipt.py": { + "path": "ION/04_packages/kernel/visual_diagnosis_receipt.py", + "sha256": "8a88ab97f4753e33b64e275de18fa11e633d4dfd2f6fd38d79df3e4a98451e7c", + "size": 14828 + }, + "ION/04_packages/kernel/visual_observation_packet.py": { + "path": "ION/04_packages/kernel/visual_observation_packet.py", + "sha256": "bb1e544983ea0cefa79f99934c6c579c7dc3590aee710c2e45789d3b8486c563", + "size": 10714 + }, + "ION/04_packages/kernel/visual_regression_fixture_runner.py": { + "path": "ION/04_packages/kernel/visual_regression_fixture_runner.py", + "sha256": "0f56e7e51f597ba3fc734f553de4282a68211a574a18159be507fb84e23cb2e6", + "size": 15719 + }, + "ION/04_packages/kernel/visual_run_receipt_to_diagnosis_binding.py": { + "path": "ION/04_packages/kernel/visual_run_receipt_to_diagnosis_binding.py", + "sha256": "cf0c9d9bc5d40e9aa0c703e61b3638f088d6ecccaeb75075179de80e44718ea1", + "size": 19541 + }, + "ION/04_packages/kernel/visual_sandbox_security_review.py": { + "path": "ION/04_packages/kernel/visual_sandbox_security_review.py", + "sha256": "b054955187b47371e103d22ae7767a8c9261e3267181fb282b65669133fcdb0f", + "size": 13877 + }, + "ION/05_context/README.md": { + "path": "ION/05_context/README.md", + "sha256": "f391ee97d040a741f9be46948b1bd872d7381f1579073cd585e5e8c291e93523", + "size": 1463 + }, + "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/00_BOOTSTRAP/V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_GATE_LOCK.md": { + "path": "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/00_BOOTSTRAP/V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_GATE_LOCK.md", + "sha256": "1aa395de74f77d3f0d548b7198869725b4f330e68500bd3cb085a207e55d7559", + "size": 1174 + }, + "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/docs/consolidation/ION_V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_REPORT_20260502.md": { + "path": "ION/05_context/archive/containment/V118/stale_no_silent_deletion/ION/docs/consolidation/ION_V107_NO_SILENT_DELETION_AND_TRUNK_PRESERVATION_REPORT_20260502.md", + "sha256": "a70bd223a39de7520fd46363f7e41df501371556ecb81043e4fddfd4d92be450", + "size": 3167 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/AGENTS.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/AGENTS.md", + "sha256": "cbf437330e35b58beb5f8068bd602df3d5faef46ae5c5f6092e0d801df279d69", + "size": 5511 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/OPERATOR_VISIBLE_LAST_RUN_20260427_STALE_START_HERE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/OPERATOR_VISIBLE_LAST_RUN_20260427_STALE_START_HERE.md", + "sha256": "27569d526f2983a9fc589263ea73e68a8d9adf8f14785997a51f4d2b92872ed3", + "size": 9547 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/START_HERE_FOR_ANY_AGENT.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/START_HERE_FOR_ANY_AGENT.md", + "sha256": "fa92e38097d872d4fc005b1980b763fc09c425511d4e142485e2de0b989c9a38", + "size": 4623 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/_tmp_onboard_20260427_STALE_START_HERE.json": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/_tmp_onboard_20260427_STALE_START_HERE.json", + "sha256": "f29c84910b6717a88c4af2341350c6be6e4171a94ddbff9f1b7d7c2ddb2f412d", + "size": 6431 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_EXERCISE_BRIEF.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_EXERCISE_BRIEF.md", + "sha256": "50847f8bff16bf20457d7d3993d67fac582f4764cea9cc2778907d34d6db5cb7", + "size": 2175 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_RETURN_STUB.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_EXTERNAL_RETURN_STUB.md", + "sha256": "356d5f365d4eba991fb4ac2d6d03ae545d8235a59713c1c3fce8fa14874685ff", + "size": 1767 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_READ_MODE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BROWSER_CHATGPT_READ_MODE.md", + "sha256": "6e2dc15023c65ea823cfac9c0f42883edd4f0eef74cce78b49b14a39e8573601", + "size": 1711 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BUNDLE_MANIFEST.yaml": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/BUNDLE_MANIFEST.yaml", + "sha256": "e4848a1ba728849a0fa7c048df7bac7b73d427275a97254163669c65a5ad8658", + "size": 1796 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_EXERCISE_BRIEF.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_EXERCISE_BRIEF.md", + "sha256": "97839c9fbd538a3776f578276b9059ca9a502d070f53f43b76d15a9e01ea0527", + "size": 2167 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_RETURN_STUB.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_EXTERNAL_RETURN_STUB.md", + "sha256": "e220bd054b651272e1300d3fbae60cd1b20e362cc555176d3d34beffb57a432d", + "size": 1749 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_READ_MODE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CLAUDE_CODE_READ_MODE.md", + "sha256": "c22eb4e756d0459477a7d964ac8df8793459027c499dc266e311cbbe6be1cc9e", + "size": 1541 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CURSOR_CODEX_READ_MODE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/CURSOR_CODEX_READ_MODE.md", + "sha256": "5c03ae0db143e8a154032c23714895ab84afaed8fc9089238ad1523a0e154783", + "size": 1591 + }, + "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/START_HERE.md": { + "path": "ION/05_context/archive/containment/V123_ROOT_ONBOARDING_SHIMS/root_authority_bundle_2026-04-17/START_HERE.md", + "sha256": "0e541a5fcde91109b995e04c107c32a98a43f7cc595083a56195944f794042d0", + "size": 2707 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION.txt", + "sha256": "16619dcb425b3bf713d7f997c7071d4d7426858d75086f404ff312194df0d8a5", + "size": 586 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_SLICE.txt", + "sha256": "c202b8911c42f8d2ac43a919b9f10117bc87843be26419f89509f2ab5b1092c3", + "size": 565 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V102_CONTEXT_METABOLISM_AND_LIFECYCLE.txt", + "sha256": "35d8b27e669747ce68f61c8c0f9d9338a5394c093c8f58aa65f1d3021389e8c0", + "size": 632 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION.txt", + "sha256": "4ed2e584fdbb11b30fa530844423876d0faa2e7e1a6f69c871eb65637b146c5e", + "size": 378 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION.txt", + "sha256": "5782fb3cdf24d6ab674044ec15305b57cc4ecabb078540e7b315d67c3a156113", + "size": 827 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_CORE_TELEMETRY.txt", + "sha256": "78b1ece49b41120ed8a0d9e051af78a5245ccbd78abc077ed6638841b852656e", + "size": 888 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V108_V72_MCP_DONOR_RECONCILIATION.txt", + "sha256": "a245e901f45f34f46a0a4399d6cc80fe28878a5b42b4dd13206ffc16c0b99c8d", + "size": 601 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY.txt", + "sha256": "a10fc2033a4cbacb6973625de18aee1bdc3a0ae38381bf0ff235c3702860ce7f", + "size": 221 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS.txt", + "sha256": "8aeae780a909b36c1dbd92d219bcf6c6019dffd987b43fd83d745e0347cdce44", + "size": 181 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH.txt", + "sha256": "32fa85997b98e8fba4a748ddee4a09b1659387c4ded4ca310f6fcaa27fedbe74", + "size": 155 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR.txt", + "sha256": "26973d6d270527bb353c1c072ee569fe0bda2b9d5cae2e55a7b6671513e0a325", + "size": 179 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD.txt", + "sha256": "20662b6e5b94a177a37b068a45f0efa0d2c41915f6b19da3503dab3f1c14f956", + "size": 159 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V114_DEFERRED_SPAWN_VISIBILITY.txt", + "sha256": "39fcf697868c84219a412400c35eef1296addd42518c8fcb1c935ad06ecf3c0b", + "size": 133 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD.txt", + "sha256": "4982990211d55c586f2b73f2d8fdbd7ba1cf4d6eee6c76e72eaa29c6caadd66a", + "size": 666 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V63_PROTOCOLIZATION_MCP_MOUNT_AND_FULL_OPERATIONALIZATION.txt", + "sha256": "28793549a1fd41708fde61628ef3a7b246a559da9a647d40937ab2c0223f7251", + "size": 777 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V64_LOCAL_MCP_BRIDGE.txt", + "sha256": "649b5689b3c6a1ef47711f29a3f4668da3c27a894b17cd3d773e483384e6e718", + "size": 778 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V65_LOCAL_MCP_CLIENT_CONFIG_AND_SMOKE_HARNESS.txt", + "sha256": "c2147448ce0b77864508cbac1459bf47dd88a922ef6233c9c5b8878634cf67b7", + "size": 1281 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V66_LOCAL_MCP_CLIENT_CERTIFICATION.txt", + "sha256": "5c146c41b97066e81ba93d585aa8415178d766d157017ce1889b01fee2c22684", + "size": 972 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V67_MCP_TRANSPORT_PREVIEW.txt", + "sha256": "6d6734dfc62836e9ce448b463762ef2a1b4938384d4bf3da92bcbddbc0f69681", + "size": 701 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V68_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY.txt", + "sha256": "af895033997149021c0c86b2b8c078ebebb6272b2b21a9df3cc63f9afc413433", + "size": 911 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V69_HOSTED_MCP_AUTH_ALPHA.txt", + "sha256": "324b39dd4a292c00aa7e3c7f338496d443ae1b120b712e611d4e9dab6a9481a2", + "size": 1086 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V70_HOSTED_MCP_OAUTH_HTTP_PREVIEW.txt", + "sha256": "e681bd8bf14bfec3ccf53b101886cc4bff976e9ebef70a1275e6d8769c0430f0", + "size": 763 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V71_HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA.txt", + "sha256": "5db0801c8e61e0df0dea68f7cef4bfecbd8c418977576d30a8fc327728baab1c", + "size": 1227 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V72_HOSTED_MCP_BUNDLE_REPLAY_ALPHA.txt", + "sha256": "d99eef0292328e8f423b51d170fd383a29f65da4a21bb96472bb63382fc40fb2", + "size": 746 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V84_CARRIER_CONTINUATION_AND_PRODUCTIZED_RUNTIME.txt", + "sha256": "dd3925c23505d3d69c5f75c50b4e33ef21cc6760f264fcc3c62f4ae5b9048ed0", + "size": 771 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V85_CARRIER_TASK_RETURN_INTAKE.txt", + "sha256": "f92022148d2c08c92fdd1fabad2fcc93436af7835ed2ebc867ec15c00891e03a", + "size": 410 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING.txt", + "sha256": "b34af2800b1fb36549a25286a987653a1b4b6de42efd297ca4d8004ef0f154fe", + "size": 2202 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONTDOOR.txt", + "sha256": "4cd05aa2fc3b1a75efde531b124273e32dda35e0015054a5fa139618f7ca89d8", + "size": 691 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V92_MCP_CONTROL_BRIDGE.txt", + "sha256": "4b025faf52c2fde057da045d3bba477bbee2c3fd58a80786053912d0519e0a0f", + "size": 566 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE.txt", + "sha256": "fc69f87cf74844dbaff40e52450f71c4be107be7b140735266390666b3501124", + "size": 917 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION.txt", + "sha256": "900bfb8575f9f0abb9296557c6c5b93e9499704eedbe60be1a6c417ea31b2035", + "size": 762 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT.txt", + "sha256": "1e08dd2827559847daf0fb3803f4df1846e41857d3cff83789a84b54ef567f6e", + "size": 441 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V96_FULL_CONSOLIDATED_RUNTIME.txt", + "sha256": "df094446e4fec405e88c285e97b55e09ea9bdd6324263e2ae7f236e2ded4f567", + "size": 257 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY.txt", + "sha256": "3ee2340cd44682bbf79ae6d3d19eeb5623d343de7a1d0452bf9ccf666d4d256f", + "size": 345 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY.txt", + "sha256": "55ad4caf620d4f3a33789577817067da1ed8347f5ed14a23e224cf02181f5be7", + "size": 458 + }, + "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FILES_ADDED_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION.txt", + "sha256": "26e014e0b1dd1deebfa8d98ac5c5dde4eeca8087907c65ff3e16e2e3ab985fc5", + "size": 572 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V100_20260501.txt", + "sha256": "68418805b7234d3a01b751d5088c203d250c5c5fb34c0ea8ab8bf5feca8fe131", + "size": 678 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V102_20260502.txt", + "sha256": "e994da01f862c26c0ec0ea338d76cb055c7ef2b662f8a667b26d22b3d6535513", + "size": 653 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V103_20260502.txt", + "sha256": "28da3c07d8ee1cee9b05c6d27647f51682a431da71ad57c5dc736639233b8b38", + "size": 479 + }, + "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt": { + "path": "ION/05_context/archive/root_witness_manifests/FULL_PROJECT_CONSOLIDATION_RECEIPT_V104_20260502.txt", + "sha256": "4d6bcfa3cdc88e82964f0d3f335625d3af6457efb8d8adbe1641dc99ebe4f3db", + "size": 785 + }, + "ION/05_context/archive/root_witness_manifests/README.md": { + "path": "ION/05_context/archive/root_witness_manifests/README.md", + "sha256": "1eb530843bc509d47cd51d7926f0fbecd91f98886c48bfecb4f74b87a821b558", + "size": 965 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/00_trace.md", + "sha256": "53173819ac482513cf1dd32e2ca19f6c5d9a94a012642600f696927b90c79501", + "size": 3038 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_session.md", + "sha256": "f4a0e25e7d4be823227dda8981cea35b3c7535f77c68a2491c0ea29587a6bf26", + "size": 2087 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "e2a60277b44e09e82897ba5562df3e9e5916b19963599d6ad9656a19e4d0dc92", + "size": 1354 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_session.md", + "sha256": "a1bc321c8d6321ce4bfac4187740754a811f652fb1be9fc2e28c3866f83924c7", + "size": 2095 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "301cf31a2dd7bd922b929b113a451be8f1647d01d859b7a2adf1a168b83784be", + "size": 1357 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_session.md", + "sha256": "aed925c706e89d008c2c0097eb61ab9b495e9c73d4547f096ec1b6565a7e5ed4", + "size": 2062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/03_mason_to_vice_handoff.md", + "sha256": "5d041899ac5d893215036edfcfb73087acf9fb9297de158db377460f960328d0", + "size": 1344 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_session.md", + "sha256": "22fef7f49800de47575391bcbe710c4cbfa517e19406356236136c4a11e1bdc8", + "size": 2023 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "e98864331281c0e9184b1331d5901ee6968deff33cea050cac21951f3ac1b33a", + "size": 1320 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_context_compiler_first_pass/05_nemesis_session.md", + "sha256": "442d576522e6b4ba5f8ee65ea031c1ba7c3297a9dc4efe1829cea8f64bae1d6e", + "size": 2048 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/00_trace.md", + "sha256": "bd62b5872f58b3f14287cf4d7020f0f9ca1a92285f72b51f302e21d00aaffabb", + "size": 2587 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_session.md", + "sha256": "17fa8987d6cdc91177a6e4f650ba4b41e902be9a36c624a58d6487dfc319b395", + "size": 2447 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "98c9733e731a18113d79f8251c2823108119a3f1735e66dbc749ddb5f6a15e9e", + "size": 1386 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_session.md", + "sha256": "7061681a9cfb87156d70c9891e377c8d2c1b0e433e6545768f0cba183f04cb87", + "size": 2451 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "0f515c8c6abc8ac92eb1fb3a7dbc6ff7a005ff2b8ac6a5031768e35d8ee5bb96", + "size": 1389 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_session.md", + "sha256": "adde22f02f4b8314b932ddf54c09434cd3f4ea04150b893d73ba3f33ca39b23f", + "size": 2421 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/03_mason_to_vice_handoff.md", + "sha256": "0e658860c4f501f47d4dca2af0fa427fc820a0b1867a0c764d9dce5ddfef9bda", + "size": 1376 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_session.md", + "sha256": "5b96e4c0538e5c0c94f0c3f16ccb6bcd2c5ac89b9737aeaa2d223676ce5d26a6", + "size": 2377 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "4b9f75b572fa65fc9ed8667d8fc34eadf844235ebfbb7ea9071c79a375f223c0", + "size": 1352 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_child_work_issuance_first_pass/05_nemesis_session.md", + "sha256": "cb3267b9738fd7667982914542fc16e3ea762b6177cef2996df65274238ba9d0", + "size": 2397 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/00_trace.md", + "sha256": "c19924e60d8e90a75a39f9650b7d6c0a139d12ddf77d2feb36ac86896fe23586", + "size": 3658 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_session.md", + "sha256": "667b4fcaa02bb772a687683d0e9046238e76b5f838ad689ed4fc2907cf083bed", + "size": 2639 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "15186029fe46716a6a619e974f8554f668e89ca96a3e3c96cc8e73ddd2ef9cf9", + "size": 1458 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_session.md", + "sha256": "8ec305a563923aa76266197ed0a2fb97012d91b8439f68f46c230c850b072825", + "size": 2649 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "b3203fda2c293575006b232af1be05532d4a37efc92ea5cd37835480b8bec83b", + "size": 1461 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_session.md", + "sha256": "6d2b3d12534d9ef3ef8a23e2e87f2be11031f43bf30df142f5229f12238fdb06", + "size": 2614 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/03_mason_to_vice_handoff.md", + "sha256": "b62a84b0980aca8be10ee4aa5b5267d3e7aa6244da25f0dc200ce4b5b8271a4f", + "size": 1448 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_session.md", + "sha256": "f106029a0d4652d21f6f9ac95f95e3bb1facf9fc6f6b1663f012ac140ed3392d", + "size": 2573 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "7fb1999e490c79e075357abd5eaba687ed5fbfe6c7c1f547746320f20d5d90d7", + "size": 1424 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_commit_applier_first_pass/05_nemesis_session.md", + "sha256": "7c6f621f0ae20f9f324e341410443f80569978cf6705511a031586008dc94789", + "size": 2604 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/00_trace.md", + "sha256": "a6e100c42f3cd79547b00e6fec6e05feaa6a776b244fa5ab76347d80ffa2414d", + "size": 2612 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_session.md", + "sha256": "580815a6f4ab1dc595545ca5d3edcfb53ed68b4b0ab7e41e44fb55765c623f8f", + "size": 2517 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "35c50f844ec3d2a8b696b43fb707a20c1b1cd886858735fcc21456e764e62884", + "size": 1395 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_session.md", + "sha256": "f94938c6f272e8e42a86c2e8e56934fcd49c3ee7f68c24f467886483509f05c9", + "size": 2530 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "e760bb3adac667a84ad6c5ca8f553876ea0bd6fd286b067aa4071f071369f498", + "size": 1398 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_session.md", + "sha256": "6067730b7f8fd3ff94f045b122225a80c8b3a7fc362c81c8542c4cf95ab18bfa", + "size": 2465 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8c26a3f93141670a2c1200f69da6d5672d90b7ec35181cbd522be672e4acd763", + "size": 1385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_session.md", + "sha256": "af3ea8a08697367395f882e85ae5974e55b908f2b85879b0442df20687ea1d24", + "size": 2445 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "326f274724aa97a83caa349b4b3e9764f10b187f814401aa0c87381a99a76bdd", + "size": 1361 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_act_once_first_pass/05_nemesis_session.md", + "sha256": "b18bed7f28f65f06586dfb5d7a6b6ff29cc59110385fbd13057a46036e8d74b9", + "size": 2457 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/00_trace.md", + "sha256": "a9cfcfdad03c29c9cbb541ba18aab8505fbfac351c5d5695a58a780b4e3386de", + "size": 2634 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_session.md", + "sha256": "0f2ce27df1073cf9bfc2096331add3c96a5e63a01a0b8cdb02d5841da9885244", + "size": 2545 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "3e0b156677d1cb18693a015ec0a4d6c9f49315ed8b45cebe0f37cf87d4e766eb", + "size": 1413 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_session.md", + "sha256": "f2c22190822601adc5e3053fb6b959a2e56354856006d4cbaee2f5fa8675a1ee", + "size": 2547 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "a86378355c4a20447ead70de6c570551e8e5289d5e46fd6a8b42deaa2c4598d9", + "size": 1416 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_session.md", + "sha256": "82e914bddbe97368cbd7908c5a311586063a239942b53e606fd8970b84629954", + "size": 2488 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/03_mason_to_vice_handoff.md", + "sha256": "e06a6281f43381142756976325e63945553e43b480a80928d92d0d196b462ca4", + "size": 1403 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_session.md", + "sha256": "5d85d460bc87d2088b1ebd82507e3710321c0f8a106927b5377aa7caae875ad2", + "size": 2463 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "9560aa66b8f504f12e6587433fc6213ef0634d1d6618fca00ac90668c643c1bd", + "size": 1379 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_arbiter_first_pass/05_nemesis_session.md", + "sha256": "be382c0659d2eff002b6fa52fb9975e2c125cbd7b35163c867fab1f052815565", + "size": 2492 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/00_trace.md", + "sha256": "4cc6f282090099b227ddc54adc881dbff836d9f2bfc7d412b5ad274e4fbfd3d2", + "size": 2549 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_session.md", + "sha256": "194882b3fea5e5e19caf7a6c179180426943851401521b1eec333c0adc4b6fa6", + "size": 2477 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "997602bddce48fb9d5489eb395fdd41f6231c5c10dd48b86844d7d7f8cfca2d3", + "size": 1316 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_session.md", + "sha256": "81f9173761a29b6a87c2f52f04203481df0cd67cc70d5ba825464f0d44386bb5", + "size": 2484 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "f462ded652fa53c4fe3d44d705b26c30269a9c9eba9006d90c2d5513147368b7", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_session.md", + "sha256": "4026205849570afe1136084728fa3b07667e57286583398b3ae3a35ffe17e03e", + "size": 2452 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/03_mason_to_vice_handoff.md", + "sha256": "dfb9555bf9a52d132ab1f9a8198934f41b8025062e369d27cf10a6ad1d3f4bc4", + "size": 1306 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_session.md", + "sha256": "f0fc13a52dd432da8409b9e59b9c3a463da99baec514adf22b7a67995eac8dc2", + "size": 2414 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "93fbbdcc033c43514212203cf14fb9f061c1852de20e9f6f6fb6ab8c5612bdef", + "size": 1282 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_loop_first_pass/05_nemesis_session.md", + "sha256": "f5bbe741b2aa9e94d0340820a6521073f1c02821ee1df83c345bbd6216e27279", + "size": 2436 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/00_trace.md", + "sha256": "36ab613a80ec12ccc91dd8a6f69b91b1c56052ca7731515352f092a4181083d5", + "size": 2564 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_session.md", + "sha256": "b01bf18958da33164076f4325e43275829b6db1d713a231bc3081a3db2b8e7ce", + "size": 2647 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "db1231d31686ad1f5fff5424146328cbb62df8febc1ece319f5c31178cc32923", + "size": 1387 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_session.md", + "sha256": "6d8b3a4534cc6734482a2d7f9da11c857a9642ecf2ea970fb770e36eb27cbdb3", + "size": 2654 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "d65c2e161b04e85cca825882c34c1a85a4e8555e3b3e41671869d28137de9a92", + "size": 1390 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_session.md", + "sha256": "9c8686b7729285bd4783353eddb51967b4e355cfa134518cc1be684f8ee24a7e", + "size": 2622 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/03_mason_to_vice_handoff.md", + "sha256": "89ec34b496bf26e1dda412131fd79750ede9cc77313b88fe02789f9375e797fe", + "size": 1377 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_session.md", + "sha256": "978edc821797e5d82a8a544c3be1758056701bafe6ff1f1c23c3968c704bbc2c", + "size": 2584 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "216a13ea89bf7302020a231800b917b8832efdd37b85933dbf69defe217bbc8d", + "size": 1353 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass/05_nemesis_session.md", + "sha256": "c37e6975d78cc46d0777673d6a2f12788a4664f3b5a33dcd888939b208350fe0", + "size": 2606 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/00_trace.md", + "sha256": "3d3365c8a6e5db5833926dd068ea76c103748316c4524364efd5e512dc400a46", + "size": 3696 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_session.md", + "sha256": "1ccdf2db182cd675ffd37947133306af0d03e6e3b8fda6cf0774faabb5b67370", + "size": 2831 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "aec0694cc613549c2d7fc4e0f5dcb36e1c42abda62bdd3b02463974ba3ee7d45", + "size": 1629 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_session.md", + "sha256": "46bc9f038f239be375e27bb8173ec142633067a67f087d38937c7314e061f9c3", + "size": 2581 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "57f03a00d67200e2beab4e4ebb72b6f90edaca3d6e7c94c2d6ee197156599df4", + "size": 1441 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_session.md", + "sha256": "2598e7ecb88383767670dec960ae4ae1ee90616d1b52d125d0e99c71c666f833", + "size": 2487 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/03_mason_to_vice_handoff.md", + "sha256": "d0c2ed031641e614921c69b88a012369eacb9c24da9ffb28141a522709a3c324", + "size": 1412 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_session.md", + "sha256": "b4957a74e170cbb10120393bb40560af12af2996b8aa726b9b40e02a3317d28f", + "size": 2387 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "3e731d052d1a993c7cd2d148676b2e19f5513bf9ddeb764268dea93188d972ee", + "size": 1345 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_dispatch_first_pass/05_nemesis_session.md", + "sha256": "9444463a6e1e49cc6ad34d3b0f24458ddaa78d7b3e90f00ddbe5d041c0893d9c", + "size": 2495 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/00_trace.md", + "sha256": "56512c6f752effabf9f87140ad163149c45a6c60de186c7b2a157295e201db3e", + "size": 3737 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_session.md", + "sha256": "2052d9d7dbdf89c90a65cd43ed7d3f456da8b211cd75f1b062f2301b5079e424", + "size": 2864 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "37223ca1caa45f7b7528bf06099e466be642bc9cde24f3fffedb1a7d6685298d", + "size": 1670 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_session.md", + "sha256": "a7c6e5d04803e91fd64da73f441412c1a576ade3ecde4f4ba343fec37bc63041", + "size": 2585 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "ac9deb2e4892a9bf1b26d2db8f28c851966b6b33df3e2c92994b32e35c97d832", + "size": 1459 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_session.md", + "sha256": "f649c2ad9f9783617317f0e49c1ac8a509593f91dbe21d256f0febee4fdb0f7a", + "size": 2498 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8fb9c55666e857b170d4e748187dbc19891477ad320aa1c6337d34b2bfa9b1c3", + "size": 1430 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_session.md", + "sha256": "c0cc10258ff7476d6017c24c5289119507c7eef46efb48d3ea47d78ae0141bc2", + "size": 2399 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "3cad135c417c2ce572b99783bda68994d5ce55548ec70aa2e8ef63d3f856e155", + "size": 1363 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_execution_first_pass/05_nemesis_session.md", + "sha256": "f90f11a84dad3404c1aab817f04bf8c47b122f6550dec543da2ffc8cb808b4a2", + "size": 2505 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/00_trace.md", + "sha256": "01bdf2105fed70c2e58d348b06fb540fe1c1065505cc79cb9ebe0c2139de9649", + "size": 3013 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_session.md", + "sha256": "923a18a30b6e3f0eb07c5637b36350c96d9472d8d99ee5fec3efee81ece19419", + "size": 2099 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "9db193579dfe08812ad88552569d1679534f7c62bb5ce287a6ba890924cbd6de", + "size": 1329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_session.md", + "sha256": "d9387b8e79393c66d08cbdba1eb5ba52c510aa8ec2367dc973cbfac0cf4e1716", + "size": 2107 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "94c2e8928fbe538cd223ed4f2b57ae0d2c22d7e56be1ec08cd5f751e14405ac1", + "size": 1332 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_session.md", + "sha256": "2872328a9a5be4b07f94d8a9017c58f237113592794cd7af4c9963c6431c94b3", + "size": 2074 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/03_mason_to_vice_handoff.md", + "sha256": "d86ea8f4dbc8d29b543f1b7145001fd36f4e7872ac17829e359656fd44ed66a2", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_session.md", + "sha256": "2cbef72461695aab2dbcd7e515f1245a34c168a7f32d9f309f59333fb7e7bb2a", + "size": 2035 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "225ec43275f0345bedc735e3e22fb11e7475457f183e2df4e961fbd0e29044e5", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_graph_first_pass/05_nemesis_session.md", + "sha256": "b6203b5ccbb3d42692cb584a21988dc897f30dcc53697e864158fef4c6247119", + "size": 2060 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/00_trace.md", + "sha256": "8c5739b00f2f92cd99b8903451652912c24f3c3f94c4b6c9925e768377b14a95", + "size": 3013 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_session.md", + "sha256": "2a3864cd92910e12c86b0035913bac5d0bf925d72eac583068f527b77df1aba7", + "size": 2117 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "8b7b25a0d4e190ad75e681e4700db75792bfc1cfdbfbdd84525bec0fdd6e2ef6", + "size": 1329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_session.md", + "sha256": "46c0a8caa4e73a927d40558e12910cf8442c6b4140c03b1d641c1dd502027b04", + "size": 2125 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "83c8c4cff4d418018a302589f4d88db4b65f42cef6263ced188237eef458e529", + "size": 1332 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_session.md", + "sha256": "99a0ceaaa043fe25b36fbda96d6c0ae373959a2512d8abe66d9bb2bf6cd71e0a", + "size": 2092 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/03_mason_to_vice_handoff.md", + "sha256": "7bccd64051f3197544e7abc95f9eac201a9131d35603c1f3cd1898d9b62ca5a9", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_session.md", + "sha256": "5a5bb2763d5f336833d25a2ebe9bed84637091295b2a9dc5fdcf9c3e060f1dd5", + "size": 2053 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "2931c4f690caa5868ca754b45ad547ffabd6c43dfcae001e0528a2f65fe074a7", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_index_first_pass/05_nemesis_session.md", + "sha256": "48a5b42b10479d1ba40dc9b7221e888378cab8e80bed36fb7dc56801c94d2bd9", + "size": 2078 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/00_trace.md", + "sha256": "1f9bdde3e0624c369c3372afbbd4e91aa07829a94c19651d4267b216629d144b", + "size": 2843 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_session.md", + "sha256": "87e8049e590fdf2f4e3be197dd7823b9033fc1e0d635bfbcb5e8ddb1d59c027b", + "size": 2055 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "2b2de6d025bd7a6084fa01fabd661ca1e35b48e6d428c2a43b401b5826e7b458", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_session.md", + "sha256": "f800aba2ffef958b2869133899a09b3038f2903a05e01c2ebcb454fb53f22dfc", + "size": 2062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "9848051fd947ff5df15c515c6acf1e449745aa70199b245445b8b74dc219ebd9", + "size": 1298 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_session.md", + "sha256": "fbc58497e5d7b60de3f05dfe33089b4b87fadc6bb14ec90354eda9f5b4b44841", + "size": 1975 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/03_mason_to_vice_handoff.md", + "sha256": "9936c77ebab0f96cd95f09d86a2667a658ed4a52e54657d47af1c37634262c27", + "size": 1285 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_session.md", + "sha256": "29603326e53eec19ae98736e85b9b60d6db5d3561954c811fc41355b415be033", + "size": 2037 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "6e3376e7ee76ed21e79fb623430e62dff401711d8cc8ad614038800748a3976e", + "size": 1261 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_model_first_pass/05_nemesis_session.md", + "sha256": "4cb0848654690ebe828e0a49736af30107a704026739c7ac5019de3a2cf620ed", + "size": 1959 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/00_trace.md", + "sha256": "2db94a2b6faa9aaee617217d1848f7f2a9ec544407ec5b961fc13a67fe573acb", + "size": 3655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_session.md", + "sha256": "844d8f90d90fa4c4e3c83868ad5cb4408c3f22ffaa217593a3c6435031c633b1", + "size": 2696 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "95133216d5659ef5b89196c08cb6c953ffa2ea03d35d049bed164a903a7d04fb", + "size": 1491 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_session.md", + "sha256": "bce5dee52070817f90eaf54e572471bd0618510361672e264769d150387abfa1", + "size": 2706 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "00cea09bc99b8902dc20ace41f47e8aef2460dc4f40f195231647d8598cec397", + "size": 1494 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_session.md", + "sha256": "df5738d10eb352e52e0b89a89696c1e2cb852840f866c9678ddc2ae9c68d3877", + "size": 2671 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/03_mason_to_vice_handoff.md", + "sha256": "d39516c01440247e26434556564e646ec301dd0cf955491f72393da396cf4445", + "size": 1481 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_session.md", + "sha256": "eb3d886040259b3a0e0698fd46e423df04b97db770f073773cec8f0e5b40c3ac", + "size": 2630 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "c7a60437f1d33f16c15bf764f2c1a3e0a66a64da1eda1236c84849f4651f7ac4", + "size": 1457 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_open_question_routing_first_pass/05_nemesis_session.md", + "sha256": "0c5c79fbe5197ff4ee0b8de839bcccd93d92f04864ec4f3ed0dfce4be054cc5c", + "size": 2661 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/00_trace.md", + "sha256": "41cb0fb3e12376220c7d93a9e49468f362cd9cfb906996943b54a0b47565524a", + "size": 2554 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_session.md", + "sha256": "983e05f5390f4c3f6d71f3227e50a1f16b416cd220f8d77a6f6569bf46f2c4fd", + "size": 2804 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "f5e696423a2eb77ae1dcef4a3d699da03c4e7d01a02b44bf88733592e4e5a815", + "size": 1345 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_session.md", + "sha256": "d06231e72ceb5dba6950b0765eeed552e6e52cc3e5f4d6645276af097a2f00a0", + "size": 2811 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "51845880addd45b7116397337e77f267d4f3ab5a4b5246cb6715adadd678cb45", + "size": 1348 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_session.md", + "sha256": "113fe62b192e5f1bae0774be1affdf8199c972bfa0559f3beec237d85408dd90", + "size": 2779 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8f4921c876a8c94cb315448a57e29a90ee9d7aeb8e84d56c1fffb4c27a4e141b", + "size": 1335 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_session.md", + "sha256": "ba39339327ac66cbd0e5317775731d26d63da27acc26c20ed84e13744ded260e", + "size": 2741 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "4b1f6cbb8c2ccdf73d98f34a61a78a6462481cd5f560bdd14d6f0e22a2db4ad9", + "size": 1311 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_review_escalation_first_pass/05_nemesis_session.md", + "sha256": "ff6edbd605e2dc10ff06ce4da22563db4382b994b2cd4089a180c12901b4f251", + "size": 2763 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/00_trace.md", + "sha256": "a93f33723e8924b429e727a897c24bbf88e6696f094f31e3089ab274d9ff1254", + "size": 2584 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_session.md", + "sha256": "9e37e7400fb30d1498d4607630dbbf26d40b5194f528bc3454de40804c7d3bd1", + "size": 1553 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "d984219f1267c13e260d99a808f76ac8633edd60c788f2ca17629e043569cfc1", + "size": 1343 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_session.md", + "sha256": "fbcd3bfccb87b0379c0f82463f40ad9426fa4d2612adc06aa5486a37619e7ec0", + "size": 1560 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "ba8f4d3b92b2af03880678568f5526b79437569c85e4f573b3a196719cd64f1d", + "size": 1346 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_session.md", + "sha256": "42c859bdda054f7f15f70b1ec0804c593fd2ff989ccae76358be20db9575dbc2", + "size": 1528 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/03_mason_to_vice_handoff.md", + "sha256": "e2263202d6750f32c8234aa5d444d26f7e12263c3565b660d104c15e72c3f8f8", + "size": 1333 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_session.md", + "sha256": "60b1199947f52268fb5af1c5ccd81f05606e7048dfb9163198a1ab1e9e26e415", + "size": 1490 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "1d71fab265a7ca95b2df862b2be4ac3de413f6af52625a61ffb90c7416ec9b32", + "size": 1309 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_scheduler_first_pass/05_nemesis_session.md", + "sha256": "1febe273b505f770671fd0e7c11931a87b89c4bced8144ae460bc9832a320b13", + "size": 1512 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/00_trace.md", + "sha256": "02860dbf7870fcc7ed0d7e78f6c888a8b7169e09784beefb8649bafd1ee08276", + "size": 3827 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_session.md", + "sha256": "86124635c7249ce75c51fbda83509c2e3a64a8171931282007223377796768e8", + "size": 2787 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "c0a845ee95a1a2ed312d0d1f14d5babf9a66cf807b60feec56a79d9d1537bfa1", + "size": 1551 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_session.md", + "sha256": "de93d34552702c7dc27efb3c18e0d7ef97160d7bc17a47b9ae5a91af1991b028", + "size": 2797 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "2dc7f853e3268684c8bb121af9e9dbb9fde3be13586ca492064bb85575458edc", + "size": 1554 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_session.md", + "sha256": "b30c7729a0eb6211b5e645402d74f34a298c33a091af8fa16c6c57278dc230d0", + "size": 2762 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/03_mason_to_vice_handoff.md", + "sha256": "51b6fc1e97aa2509b7c148a04afbac6657fdca6815875b345888be02ada58f32", + "size": 1541 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_session.md", + "sha256": "029f2009a4a23a3d9a5a9019f63865ddcb02eac8dd427dbaecf8b3ecfbd6de1b", + "size": 2721 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "0fb4b5f8dfdda34ab1674bb1e0da8662c18540c5567a455ff8334f83333572b6", + "size": 1517 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_consumption_archive_first_pass/05_nemesis_session.md", + "sha256": "c680a2077f0497ce3983eaae47e077a7f2ba097144f22c4318d85d560a38b5c0", + "size": 2752 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/00_trace.md", + "sha256": "1da4f74058ed7b6d5d3a58833cf286d849280c897eb75230a4dc758919726aa2", + "size": 2558 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_session.md", + "sha256": "a136ba68aff87693cb7cd0dd863e96c9e5168121e50ebb75302378cfc1b4d7c5", + "size": 2724 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "91a82f4bc09ceb6c1c0acc767a844cc6a89d603d3725b38f3e6d3e2b4b5ed2e8", + "size": 1385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_session.md", + "sha256": "511c8a62062629994c9d8a419032fcdb320063c4052d9fa56cc1d9d72c2155dd", + "size": 2731 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "0e25eb66d54e8d9dc6a2b8ec01e9fb9991e7fa094ed062b277f5e495ed37c61c", + "size": 1388 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_session.md", + "sha256": "a36993f367b845001ea9f3df891f5f26443083ad47898e103884e33f0bee2ac3", + "size": 2699 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/03_mason_to_vice_handoff.md", + "sha256": "8ae1261f09750b429aebb44f174a5e8f0136c1b5f2dcbc5838b650d2f28893c6", + "size": 1375 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_session.md", + "sha256": "64b6980222be0241c50ee20889ceb84252e65e57d62b3faff8fa9af24be41dc6", + "size": 2661 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "80a3646d9e1e3dd4809a8853eb1d22b8f6d2b80672975db9ac9f2423c61e8457", + "size": 1351 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_followup_automation_first_pass/05_nemesis_session.md", + "sha256": "56b575912dd9dc98b45701a8c85d71be092262754943740c72d6e12c52b43cd5", + "size": 2683 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/00_trace.md", + "sha256": "3f6fc930a9b5808decb1569904f58a07e6c10a7c2d60a1503f783c3b998ec816", + "size": 2584 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_session.md", + "sha256": "700a227b0ae36c781ca81363f4690d2b5269fb7587c1f6860b8f10364fd2ba99", + "size": 2709 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "ced9e250aad6cdf9918d6bfe3070189fadc1b3e3fb8f622f5022d3d5315ada57", + "size": 1419 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_session.md", + "sha256": "3ca531c79ae40ebdc1edd65f3fe6f6e995b98bcde63c34e731348ca934456a0d", + "size": 2716 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "f5087bb385c12f39160ec532510fdd9ff5f2aac9341ab169168a06deb50c4775", + "size": 1422 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_session.md", + "sha256": "93222ce05db14a344dc845986cbebe112bad36fef8d47a5cfbaa8e3549d08857", + "size": 2684 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/03_mason_to_vice_handoff.md", + "sha256": "5d49986a2f666204a4d6d8feaf2081477104662326d2fe9f4a70b7bde21697db", + "size": 1409 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_session.md", + "sha256": "d7aad8a90a56a71d0730569fcd642ed03dbb3f4a31230217904935a51693ece2", + "size": 2646 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "6df724b95947a61e29546110844e2583b0640ac17bb6a111394d34ad5f4055ab", + "size": 1385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass/05_nemesis_session.md", + "sha256": "b4dcc7756cd97a81622ac168e39ddaf044dbdd90481ca005b1e2096d2838f06b", + "size": 2668 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/00_trace.md", + "sha256": "2c0838bf5f6519714b9bf7f7680e8a311dddb4647416a433d322784c31ce328e", + "size": 3013 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_session.md", + "sha256": "3a292ad7bfb19493d385c8139b0df0454f4a72b594df7581bd4116ebec37ae36", + "size": 2042 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "4e33a5559068bc89d41d6e959dc0708fc4884b335ebe2aa2ad2e36db21e942aa", + "size": 1329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_session.md", + "sha256": "535e4e6ff27a6c6a55ee6937601061c6982c7e4d03dcf5722f8557927bf1348d", + "size": 2050 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "c589d7be1922b04cb5d4edd1e32f852f0abf046f676691d550a0d8e1ce7b6834", + "size": 1332 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_session.md", + "sha256": "591e3f4260cbd8f71e59f0526f5bf3d17dfbb74d768b539b2a1edb1f16e0102e", + "size": 2017 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/03_mason_to_vice_handoff.md", + "sha256": "7b32d2f77dce32934c9ecac22c6cc8d4a61972c2ca836ee54e9a77f8b7f2fb94", + "size": 1319 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_session.md", + "sha256": "80365bf1a76bfa99933fff683a4473aeac3a7d5e09f7aec1ec08b3a3b26ee2ca", + "size": 1978 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "894d7dd9c2e243ff4a4fac48a7eabaa82e65029be138258cdffdc335cd438efb", + "size": 1295 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_store_first_pass/05_nemesis_session.md", + "sha256": "eb893346385c77911b4b284aa8bad02bc426200581ff34681b3848fe98fe3002", + "size": 2003 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/00_trace.md", + "sha256": "3fe252d4e52389ad28376d55622c6b3be58fd36f3fd11c40b27d63e26fecd102", + "size": 3728 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_session.md", + "sha256": "14cad58de0da1e864f72e3c0dd3de2325228b0d74740e43899b9b92858f1ba15", + "size": 2860 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "2cb665cf04464d9d850fadd989ee5fa5c545e6b48455749bbddcb3f1f66e4d75", + "size": 1661 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_session.md", + "sha256": "091b264f5d9c019d165f2bf0bbf8e960f8d25c66eb5e23a2e78b96c485fef1a3", + "size": 2534 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "980cd0b8ac5a43bb7987dcb3643d8f5f380a53f7fdc43c7e034c33fb89ef9b51", + "size": 1444 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_session.md", + "sha256": "a442826ef84d0566bc3c3d49516ca17d2069404869447574f20c77c1aab86bae", + "size": 2460 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/03_mason_to_vice_handoff.md", + "sha256": "41c0ed1b78482763a3121752fce18e64add4be370b4330514d4c14db4d0b91da", + "size": 1415 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_session.md", + "sha256": "72d662f7447e98f1e9284b1d23de0181a3cb82c0f34ab7b67f8b0cb0b2eb1f69", + "size": 2385 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "afe651b356b7f4cde8f5297bb0f29ff44055308b4486414e04a5cd6fa1d26243", + "size": 1348 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_first_pass/05_nemesis_session.md", + "sha256": "e3c0a852ff580393a29afd863d234b5d7e3924f38bec6bc7515e3d9b719dd206", + "size": 2487 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/00_trace.md", + "sha256": "d127316ba2afd4e9d4503b3b77c5f4e741732eecdb3f9d38bac1a2c08a4b4ebb", + "size": 3655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_session.md", + "sha256": "cd75917c81af8a7e3adcbc3bb55a1695a98171496d4f93b4660c87cbb9bbee08", + "size": 2745 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "6b234d86b7615e3d6aa6f76e1c9b10f82e8c7405660ec1b1f20e6a8d3e3dc893", + "size": 1519 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_session.md", + "sha256": "9b6e4c222e6ca90e8fee320ab4fcef72cc786fab292fddb10ac860aca3c9fa9e", + "size": 2755 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "9cce3eccafdc70e7eb55f9e1307cbb6d31aed7dbc39d2a97c30258d0bb106c2a", + "size": 1522 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_session.md", + "sha256": "4b7348c189d956eb1dab01521e2c1e3b749bd44200ed5c961193d7d8b681a7d0", + "size": 2720 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/03_mason_to_vice_handoff.md", + "sha256": "9e70bff9162e366a236becb5d1a197258799f6b3abdfe0ab3b04226d19d30b1f", + "size": 1509 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_session.md", + "sha256": "03079c24baaa41b0721e8f5f45a660356aebb9744bf6bd7fef2e0ebcd5145c6b", + "size": 2679 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "ea42461caffc88f7979a4e7129bb326c4b187ccc7b77f0ac9413378356ed8513", + "size": 1485 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_kernel_validation_receipt_signal_first_pass/05_nemesis_session.md", + "sha256": "bc289739dd429717d64a9fe67cb04429b765cb264ed30f88e020248f7c1e1455", + "size": 2710 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/00_trace.md", + "sha256": "eaf6708ebcbaf4539f9f59d0b182602f4718e448eeaa472b174fd2baaebbd0cb", + "size": 2834 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_session.md", + "sha256": "25ce71857add35541ce5e389bfd45bb26032c153072ffae26763a6bc0eaea76f", + "size": 2048 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/01_codex_to_vizier_handoff.md", + "sha256": "e64649b8ed837847de5956476076e3739cd949308bb0a2c708ae6bd0685f2c95", + "size": 1290 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_session.md", + "sha256": "e24965cfcf8acf0812e725eace1f05e13f914b86a90cc26c370c77ad203bac68", + "size": 2038 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/02_vizier_to_mason_handoff.md", + "sha256": "9eeeea0a2ac877bb964c6eceba00f0efd4697d24487fed7d455ec448c734927e", + "size": 1293 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_session.md", + "sha256": "9ae2d510d28447c951f444543cf0dac877ec25afa42fa1e83e29599827f47aaf", + "size": 1962 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/03_mason_to_vice_handoff.md", + "sha256": "cdc7cb8eb17e94e7f90c750f70484400b6b66e83198bc4008c6823709c16ff8e", + "size": 1280 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_session.md", + "sha256": "d77d5c273d63e0bacb51bb239543c597f86efc227794298759f84358defebba2", + "size": 2034 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/04_vice_to_nemesis_handoff.md", + "sha256": "86d4e4f73a4a10e3acad2ddc1b89a4cd2576a402f75a5bc349ad856c8d9ddf2c", + "size": 1256 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_live_kernel_status_pilot/05_nemesis_session.md", + "sha256": "0a33fa1002d7a731df68f94d16d6c693bca9d2ff69ed8bf4f6286479a9c5ddb3", + "size": 2064 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/00_trace.md", + "sha256": "fb40b0781715acd2338f143678135e48a0ab38ca8fcd8412cd207fbd7cfd824d", + "size": 2733 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_session.md", + "sha256": "d5155394312df50f5e9cffa5728b6df870814302a234333070f6da6b87c894fd", + "size": 1641 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/01_codex_to_vizier_handoff.md", + "sha256": "c92b29e73f726e3b848bb96ed7d7c714f367ba7095e3d340526275ce096a82e9", + "size": 1407 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_session.md", + "sha256": "b102408d990768a67feeaa942747a2968fa89775e8d6329577366772dcc6ee9a", + "size": 1640 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/02_vizier_to_vice_handoff.md", + "sha256": "901eb1dbed747098c437b19eff66203f8695be90802cae398a603eca83501a98", + "size": 1405 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_session.md", + "sha256": "4b83256bde2a0c643d036e64463153b8caeb92862e58e9e898e2f4fbfa6651c2", + "size": 1575 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/03_vice_to_nemesis_handoff.md", + "sha256": "0ff3e3d90272ee69f7cf7c523ade6aa713518bc95ece2369451e2119bfab3a84", + "size": 1373 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_session.md", + "sha256": "fef6595da2d81c5ee0bb3c967902f5d24eb9e357173650b8ad147730a0733349", + "size": 1601 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/04_nemesis_to_relay_handoff.md", + "sha256": "cdad7c5cfffc225b78dd567c48c65ce0cb63e6547ef0cf63b1256e51eae9abff", + "size": 1387 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_official_lead_and_support_topology/05_relay_session.md", + "sha256": "4b99171695e9f1368b481fd418af6f2777b4cd9030320f3f413d5d578fc22ed4", + "size": 1726 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/00_trace.md", + "sha256": "788b5d2cc0d0a09c4c8953a0d54c367ddc3943c0edf0e2bbf24d619436adaf84", + "size": 2582 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_session.md", + "sha256": "46e47ec66e9a387dbb8ce79bafdb5cc3d0501eee92d45334b69d2b8df7fbd596", + "size": 2340 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_to_thoth_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/01_codex_to_thoth_handoff.md", + "sha256": "837cc9e5c1a6d5108ab74adc2bef3aa10eb81083cec79d624eb8ac36ae657a4c", + "size": 1409 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_session.md", + "sha256": "4f8a67fc4aec63cf9e3918e4cc3c8167f046a0165c2216a92f6a6de64ecc6290", + "size": 2340 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_to_atlas_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/02_thoth_to_atlas_handoff.md", + "sha256": "caf668a316b83196bbd09fd0e76c395835ca369ed5455516dcb7ea4cad62e632", + "size": 1409 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_session.md", + "sha256": "db60068f95e91d0a5256e8f22d63e56256ea3c9a6a28af4605f866c86e7cc94f", + "size": 2388 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_to_vestige_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/03_atlas_to_vestige_handoff.md", + "sha256": "20820b9bbc0cbf3d43bfeb883c9b22b873ae431292c529504bfd22b3ffa7ad97", + "size": 1433 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/04_vestige_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_orchestration_blueprint_and_lead_prep/04_vestige_session.md", + "sha256": "15ef9d8eba9c94117dadaa1c2d21b7ecf08b9f0c39bed2c0fd3693ff0a35a527", + "size": 2339 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/00_trace.md", + "sha256": "be54c5a3564c96aa75251e7004b9d391a4406663f4e18a6b4eba74b67f393989", + "size": 3720 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_session.md", + "sha256": "a144710662e42a91982eb1e6513fba69060f465726a5a58e519907a9cdc99c53", + "size": 2860 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "ce217e5795a620d56ec2a0da4f1ccdfb919d990682d56ad10c2598e98ce2b105", + "size": 1682 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_session.md", + "sha256": "f7bfc748c6560d2a1a055632167ed79f01a1f09e97cc2c1963e9f234645c1ced", + "size": 2643 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/02_vizier_to_mason_handoff.md", + "sha256": "9995af0c5729e21dd80adf01fd395e2336c1f35f49b3f11fe0971e239619ba06", + "size": 1523 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_session.md", + "sha256": "5636b8c1415ef752e87ef969575657496c87856f7ae145ad680eb94988d53aad", + "size": 2579 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/03_mason_to_vice_handoff.md", + "sha256": "db70aa60dafcb8f349fae2e48e67b6025c2e6fc93b3874090d8679036d9f68e1", + "size": 1494 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_session.md", + "sha256": "ea9011319181edf364d8e1a1f3c49bb70febcdb61e4aa4ce375ade7144d84ef3", + "size": 2491 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/04_vice_to_nemesis_handoff.md", + "sha256": "6bf52e8cfb16d93f5c6b5b53ebe31fc71e0488511130869e83f623810770ca17", + "size": 1427 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sequential_runtime_portability_first_pass/05_nemesis_session.md", + "sha256": "b6fc0f4e7a2d48376ca32bda01f915ee7af4501cf8f3d6295f4062709963a53b", + "size": 2593 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/00_trace.md", + "sha256": "547590accf33a4f363990a9e72c255d578511c54198f1a2550ab53f361fe362b", + "size": 3007 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_session.md", + "sha256": "cbd1ca22157719aae188f5655a1e74298019d47b92511172a916ffa91feb06cc", + "size": 2146 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/01_codex_to_vizier_handoff.md", + "sha256": "5a1088659f8dde44bd85360e89b396ad25b5e151b6efaf70890cf87a8744207b", + "size": 1354 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_session.md", + "sha256": "451c7ef33da81ca20ffdab0f4d71e81558ad55c067a1f703449b306e05c6e839", + "size": 2163 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/02_vizier_to_vice_handoff.md", + "sha256": "a194c05c7975a1af4436834d0bd7b0deaccc11dece82a4e068cf51c6c9770e70", + "size": 1352 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_session.md", + "sha256": "5fade3edcffd05942857fa05a952c0b6d904b7cfb415933a1ccb6737927ee82f", + "size": 2132 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/03_vice_to_nemesis_handoff.md", + "sha256": "6f8cbbeb2ab2bff4168be3300521085dca32d17d22f2a3cda188d31742a1b189", + "size": 1320 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_session.md", + "sha256": "1d68789ac213943d2c114828f781f200e69b372a5280202142c278b02274c7c1", + "size": 2106 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/04_nemesis_to_relay_handoff.md", + "sha256": "45d1e3ade3920f64167a4267307ab3939f578471822504145625d61c9b27b22f", + "size": 1334 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_sovereign_operating_state_delta/05_relay_session.md", + "sha256": "22190052b9945eaa003aedb75ce3478716fe358cda5870c35ada52496ef01459", + "size": 2153 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/00_trace.md", + "sha256": "e69f45a7a1545cf082ea3c97daf064817ac6451f861b5f5d29bb98f737190489", + "size": 2728 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_session.md", + "sha256": "9a3cb1fa70628a918dea3ab26adedd2def2c461fcb37320401a79b09a3afb7e8", + "size": 1655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/01_codex_to_vizier_handoff.md", + "sha256": "392c09f7a95440d0962779b4458196f291488ebc85a39f7b64030a39250c568c", + "size": 1450 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_session.md", + "sha256": "eafd450cdafc642b437becf693be08e348d59892f42eb7361c1c3ef0a6e6208a", + "size": 1654 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/02_vizier_to_vice_handoff.md", + "sha256": "16c21ac00ce9c42689c9a43f2e048347c56e5d261a9b67fea9b789c9b285fda1", + "size": 1448 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_session.md", + "sha256": "ce2237e1ef822fc07ddd87717136fce6677bb61684c07ff53af79065e98fa9c1", + "size": 1589 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/03_vice_to_nemesis_handoff.md", + "sha256": "2597745b692d085ea89a166a8c5ddb15fa9c8c38e38b90eba69958b093dc5ba2", + "size": 1416 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_session.md", + "sha256": "468b292c11edc49a3911b4844b6d7188d54e70975980942bb6442aa34810b152", + "size": 1615 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/04_nemesis_to_relay_handoff.md", + "sha256": "c1c1e69c637a736d426516c50879ea85d66824d6d70cb25e9c93300bc63be764", + "size": 1430 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_architecture_shared_vs_agent_specific/05_relay_session.md", + "sha256": "20ea17c9530de56ee3a5a391fc5940d7cef0bf509b12a456f9508bd3de54fcba", + "size": 1740 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/00_trace.md", + "sha256": "2ec9d23d774ef0f0961a24dcf3b888c6830367d383bad0343f427b9c726f562a", + "size": 2733 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_session.md", + "sha256": "263113a06596ba9918d5986e793022f3c017dfac1d7a3adb706f6b0859016637", + "size": 1629 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/01_codex_to_vizier_handoff.md", + "sha256": "1e1d0e29aa023f63febee664ac3357450981b0963af74abfe25d9e53fb95e45c", + "size": 1383 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_session.md", + "sha256": "3e6046b33b71bd5a9b56d98c1f70af36a89e4ddfa144a16f8c4fb688993aeb8d", + "size": 1628 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/02_vizier_to_vice_handoff.md", + "sha256": "970ad8ce96a7a53b179b3bbe5c97297b785ef8057df270ab63a593edf42c58dd", + "size": 1381 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_session.md", + "sha256": "96ec1aec467971fbbaf9f214cc310591cde81de3453fa09e6d9d38c420f2e180", + "size": 1563 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/03_vice_to_nemesis_handoff.md", + "sha256": "2793fb199380c4597ba7d62e7cbb4bc7ba55acac02a1bb4f96061bcbdbd0d322", + "size": 1349 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_session.md", + "sha256": "a758de6b7fa541d6f1b762daadca368c642f25ff88fa1e741e5a65334a4ec161", + "size": 1589 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_to_relay_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/04_nemesis_to_relay_handoff.md", + "sha256": "b52850de3651ff5cf7b684e35728b88d1431a11fbdfd0a0e929bc89d6aef66ec", + "size": 1363 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/05_relay_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_codex_template_bindings_first_pass/05_relay_session.md", + "sha256": "b31c889b445b30fb6175e11348853d8ee57d33d6bb2cab91c9302af359e5a0b1", + "size": 1714 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/00_trace.md", + "sha256": "bf334134117e27c7605dfbd12f1541d9c8b4fafb943fe8a92d872533aed08f81", + "size": 2830 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_session.md", + "sha256": "18d23e5153e65b632bc5886281681f482f8e8efcb0e41e4d1baf2e65496d3cff", + "size": 1418 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/01_codex_to_vizier_handoff.md", + "sha256": "f51df8efc97a757e8ca6029dc4a7ea2fd1752ddf36ea0eca378caef69bd798cd", + "size": 1270 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_session.md", + "sha256": "ad8764114a3b9563691f7b5033a17a4afc5fb1534ac7590dee1843c60ca19492", + "size": 1426 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/02_vizier_to_mason_handoff.md", + "sha256": "6766e850d236ed68def183d315703c3da96aa0d097de5eefda045ca3c4ae54c7", + "size": 1273 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_session.md", + "sha256": "2ea7df088f35ad7d2a15e2f2f79180d7cfb901cf3ae6643efd87b9eb6b8725c6", + "size": 1393 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/03_mason_to_vice_handoff.md", + "sha256": "2c0c9ca40cda71ceae1e4c9c3b78083171fe6407c49113b2a23935185f826425", + "size": 1260 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_session.md", + "sha256": "8847ccde508d74eb02fd53a5bcdf7ec7d73ee8276e71ee890f824cc11d551ff0", + "size": 1354 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/04_vice_to_nemesis_handoff.md", + "sha256": "72da4ddfba0344f0cf67093ec3b0491e8ef9e54199c0d5a6441b3d8bf7a72ebd", + "size": 1236 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-03_mason_kernel_scaffold_replay/05_nemesis_session.md", + "sha256": "e8445a76c17b1f3ae8ecdb25b3cc4ea43a7da7141fbf6f955e08bcf084b27831", + "size": 1379 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass/00_trace.md", + "sha256": "e89c8b7ec3704ad86d965ed2c736fd5983391da4b66248c90c2302abe58d9f1b", + "size": 1733 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass/00_trace.md", + "sha256": "f2ffa811147594a17556aa41177eec73dbeb73e52584d838984b01f82fe8e849", + "size": 1618 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass/00_trace.md", + "sha256": "8020acac51ed2cd9f7b2c13109be03174d5456c8e2c7f933fbb13e8e498b7299", + "size": 1468 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass/00_trace.md", + "sha256": "4358f5be6dcfb3a0dc72fd11fb7efe216daadf00b6b117f266b1c1cd173a971f", + "size": 1755 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass/00_trace.md", + "sha256": "75c09f4fbfec1453fcd47548353e2c5e47482c3db6d3fbf62f712361b6c78971", + "size": 2062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass/00_trace.md", + "sha256": "ed242e07e7c6982907629a3c1d2020efef1606d0b27ee1d9e805839a89807395", + "size": 968 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_review_followup_resolution_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_review_followup_resolution_first_pass/00_trace.md", + "sha256": "250304e4328d80928ad8e5c30ba8bd8ac5441571b7862dc99ebd77b6d731fbd2", + "size": 2109 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass/00_trace.md", + "sha256": "0c26e74e53ab7ce0b06b9f8d17a2e2fe09ffb6b23069bf2fae76804c8397d1c3", + "size": 1793 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_recursive_witness_drift_rollback/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-04_codex_recursive_witness_drift_rollback/00_trace.md", + "sha256": "6ce37176326b72de4e6b512bf9006b848dd58685d014ad39974d26a36ba0c7f4", + "size": 799 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-05_codex_agent_reasoning_protocol_first_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-05_codex_agent_reasoning_protocol_first_pass/00_trace.md", + "sha256": "586e10740bd1822042ea2bbe8cd7c952374fe27a38a8a34a6f57a0671ac7d503", + "size": 746 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/00_trace.md", + "sha256": "0e737a730ed2a35f40e35cf11c282a15e98e1f8b7df98899502aee6673304ace", + "size": 3321 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_session.md", + "sha256": "3fb2fb39df3f3a6cb76d12646ad97c976fe494af0698412125a98d0498f3ea3c", + "size": 2392 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_to_vizier_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/01_codex_to_vizier_handoff.md", + "sha256": "b78a77d05bbc899b30aaa6ec6f126bc1b63f5add056960c9254defd1abeb5a6d", + "size": 1359 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_session.md", + "sha256": "cb8835041dc21e901eef0d572972b9bc3b8a17b0e49833a3e1afad943d09a20f", + "size": 1610 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/02_vizier_to_mason_handoff.md", + "sha256": "51aa90e51e32eabb2cf4dd470713a3031fd49a6b1f87f1ef18f1d76393606dfc", + "size": 1362 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_session.md", + "sha256": "f8fb26714932d7afa351385ea3c82248fe594c1efd25be0e337c85f157be696f", + "size": 1575 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/03_mason_to_vice_handoff.md", + "sha256": "229c11144c0d330f0018474f68aed4f7ddec23b310a0af8d6de9fbc6d744aed6", + "size": 1349 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_session.md", + "sha256": "a8f38d5f4b43559f4bf70d457f00c0d1ad5d733e2e79a1cc57f9be4c2ada77d9", + "size": 1534 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/04_vice_to_nemesis_handoff.md", + "sha256": "7d34a7ae4f82eed667bd4d6507f99583364a859c23cdb06b0f3317be36613554", + "size": 1325 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/05_nemesis_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_codex_workflow_realignment/05_nemesis_session.md", + "sha256": "f8190b13bd4c93bda6a4901fe28f3049adb70f11bbb367346a5a7b5140c99a62", + "size": 1565 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_execution_symmetry_horizon_pass/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_execution_symmetry_horizon_pass/00_trace.md", + "sha256": "94f9e09727be1865e70ff2a2c0ecb40c47e644ad0725a7df113345af0abad57c", + "size": 606 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/00_trace.md", + "sha256": "ef287b1c43fdfefc10fdce68ee8e2a908a4cf1707d2c3bfa8cae83c30cfb2841", + "size": 958 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/01_role_session.md", + "sha256": "632947f649663f3e70fdd400324fa4423564b579681d1c7c16f6f9c521b080a5", + "size": 771 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k1_operator_entry_surface/02_handoff.md", + "sha256": "3b9170d4533c941c6f0792870aa2bd174dd30beae9cb6624c3869ac7e10b99d7", + "size": 377 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/00_trace.md", + "sha256": "6695707bc40866fbe4eca49d80d6e09d6970fde028a68e5a79d12e2508d33812", + "size": 523 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/01_role_session.md", + "sha256": "9fc129c0bd92ef3f489ac0bca7bc25a9e2e966a199e8bc54ab0dd67acb03f78c", + "size": 1059 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/02_handoff.md", + "sha256": "d4ee1d414a9ead55fb16a91638710a09640267cbaa1f3011d846cae68581b88a", + "size": 1182 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/03_cursor_handoff.md", + "sha256": "1e41da9e2d79154b50b3a549cc97751afc8cc279f084179e47ecf33575de8756", + "size": 1202 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_k2_packet_handoff_standardization/04_manual_automation_fallback.md", + "sha256": "41a264a0c3ffe9d758dcf8c44c79756988caf34ae9becef11ffe18ad4fd181bf", + "size": 1453 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/00_trace.md", + "sha256": "6c64ce89828175b301839f5b4a1551e6b1e1cec6943cfc9c4a7247b36b8698fa", + "size": 786 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/01_role_session.md", + "sha256": "1a507dbe0d15cc07c75d374db9122d19856ae3b44927fe16bddb308faca677c4", + "size": 1225 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-08_master_completion_orchestration/02_handoff.md", + "sha256": "db16a5c2941cbea448a29ed47af6483dec3addbe2555dee29f7edb262f331a2f", + "size": 1274 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/00_trace.md", + "sha256": "94e3969cadb94cca2f130fb3f7d13a1834efb2e22f809a17cf4fa3066be72fdb", + "size": 446 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/01_role_session.md", + "sha256": "7785ed1c12c85b9a37a48aece4bb33423aadc8854bd622cc73048edda9f6b12d", + "size": 1024 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/02_handoff.md", + "sha256": "d0ec516505b7ad704fb111ef2f722c1e81ca658d530b3308c2dd0e3599566ae0", + "size": 1095 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/03_cursor_handoff.md", + "sha256": "2fc437152a33c3c13a1c94b6ded640a1b5f2ac828e37979be8e918a360c0df5b", + "size": 1103 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k3_horizon_state_groundwork/04_manual_automation_fallback.md", + "sha256": "1a6bd14725d6cef06760ff65981c43cc8a6506138e7fe806c7117ae794aaa5a7", + "size": 1495 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/00_trace.md", + "sha256": "a41e22bb85c8c5d80208a6c11cf37de163b9ba6ca2949cbfb21c81b24195ca2b", + "size": 487 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/01_role_session.md", + "sha256": "e441d2099ff676bb69ffe92f9fcd921993469879430e39957e399f31cfddd33c", + "size": 996 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/02_handoff.md", + "sha256": "a090a93f0bda98216b2af8227d8ba13dc0c8e203fa7d7e8f34d70d95369c8c65", + "size": 1305 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/03_cursor_handoff.md", + "sha256": "fbcca2fd3cb09d688bf3901619124b2679d58fae8a1298dd89e7a6230af2cc72", + "size": 1155 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k4_horizon_packet_enactment/04_manual_automation_fallback.md", + "sha256": "9d0b174e2c72acff15f88ef932752a18e3ddaf790366053d8973f1b612b388a5", + "size": 1545 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/00_trace.md", + "sha256": "c09f549482ec426dcddd0595fe5f54357861709d376195ee37836bb5d97d741e", + "size": 531 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/01_role_session.md", + "sha256": "56057cd577bffbba21249d9f7752c18bebe26499d1fef6bb0ead0abe7592e704", + "size": 1037 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/02_handoff.md", + "sha256": "be541270588af97034a6b32becac64a045823b46d17b5da743be5079277f2e58", + "size": 1480 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/03_cursor_handoff.md", + "sha256": "d9d4c0b09154ed2c7999b246600f479948c82bc42b4f47a814b15f2b264ad745", + "size": 1214 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k5_horizon_enactment_receipts/04_manual_automation_fallback.md", + "sha256": "cd58e503447133439c7a0e3458b01380dadccf4a33624d44c68553f8916e7168", + "size": 1525 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/00_trace.md", + "sha256": "9a4b669fb44426298c034e54475dce5f4200500aba75d884a3e53b91203ca12b", + "size": 513 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/01_role_session.md", + "sha256": "315cf3bc740ed33d66ea548e09fa7b02b9b0fa231494ce7e8884c4a32ba74798", + "size": 1135 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/02_handoff.md", + "sha256": "055b8f256e8b3eff812a0ae37788b76997cce418822f098df853090109d80a8c", + "size": 1561 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/03_cursor_handoff.md", + "sha256": "c95c897efb2cce88ef4bb9187bf36306e9f3a54a2d227d9b80dd0e6fece24a28", + "size": 1185 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/04_manual_automation_fallback.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k6_horizon_to_execution_workflow_rehearsal/04_manual_automation_fallback.md", + "sha256": "455d51368853cd19f9a91cd44d7dc889a9a2395b71b203eafa8f080485f3a54a", + "size": 1568 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/00_trace.md", + "sha256": "e11fc64e14a75023662edc193774992a58793f1e301205f27733a59d80e0ae3b", + "size": 742 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/01_role_session.md", + "sha256": "4631e7029562268956991fc49012870b77409437ef776f5af089c056bb5cfa66", + "size": 1116 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_k7_blind_continuation_takeover_rehearsal/02_handoff.md", + "sha256": "0b1179a6e79e7abb0265662471966d1b2507bbb7de7ae83a1018f400f48e07a4", + "size": 1510 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/00_trace.md", + "sha256": "602467170fade95f2696e9169ca0ea6f5562b4e1f8bc59b077f6d8e0fcf0d168", + "size": 626 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/01_role_session.md", + "sha256": "8661fca724e0e9260afea2f8d75a47b5e21bbb5a5a346689d51073d022f3d840", + "size": 1178 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l0_lawful_orchestration_scheduler_definition/02_handoff.md", + "sha256": "356605fd252815a418a43bd30e3b5fd637ef9dd882e7ee695a4b3fb5dafb668d", + "size": 1459 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/00_trace.md", + "sha256": "5a85df3a8db7117e897230e72893522b0cefb5f280a8a70c1849a832f0eb8d83", + "size": 694 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/01_role_session.md", + "sha256": "3ac270c24d146d5e0f1c5a7b20b2f7fd0607c52acc5a1d18e930ac50209ad60e", + "size": 1306 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l1_executor_capability_registry/02_handoff.md", + "sha256": "ba730e7308538c80f36e161ee3283f83b233cd71f56db58ea08063f68039b665", + "size": 1814 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/00_trace.md", + "sha256": "e78947c80989693b0086d5b5b0486fc0e7e12250b0e6813e8cfcbaa34afbd066", + "size": 697 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/01_role_session.md", + "sha256": "79f9cff31a2344049bb62ab474b4b52843ca7cabf2eddfc2e079475f4f8fbef1", + "size": 1325 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l2_handoff_takeover_normalization/02_handoff.md", + "sha256": "e4a56594498399a11049e4875c14d053aee814c78a2785591a00b9b5924e678a", + "size": 1701 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/00_trace.md", + "sha256": "82a2be98dca1f80f71a56359d1a47b716d0ad75155eb2580621967da3f23f8d7", + "size": 714 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/01_role_session.md", + "sha256": "1e75f3fe661e92e8481d3cf70520a6f0ccaf23ab637659993175b05b2118b542", + "size": 1153 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l3_manual_automation_equivalence_proof/02_handoff.md", + "sha256": "475d9c4dc309b44206b6c649b98ebf815a91a99fe7e8686bea2e17daeffa36dd", + "size": 1667 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/00_trace.md", + "sha256": "46af46168826065464a4ebf4cf59f82b6d5059a2108fdc8ca04b729995d3e81c", + "size": 1277 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/01_role_session.md", + "sha256": "6593de367695e124d4233d291e175b2a4d9df70896ef22975fa4bb7bf313535d", + "size": 750 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_l4_context_perfect_continuation_proof/02_handoff.md", + "sha256": "31014abcf4c776a70c580fa8738cf8cfad1e8b378a0f043d715a1df40df93c81", + "size": 533 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/00_trace.md", + "sha256": "bc06edca9e173abbb6a6bcf75094194abcfa9b4f5a96b0bea1efa602c152e625", + "size": 1141 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/01_role_session.md", + "sha256": "dd01641d8f8fb0ff86d35ccdf3d30cdb63d779b3bf84e0996beac8d1a28672c4", + "size": 732 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m0_bounded_parallelism_and_settlement_definition/02_handoff.md", + "sha256": "78d47f21655c02791636d3b01411963c882b8d413cca3df5f2811eca817b26df", + "size": 406 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/00_trace.md", + "sha256": "9f2116a3ffe6f77a260a98c75178077a9bea472673dd23d8192ecfa9be8a776f", + "size": 774 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/01_role_session.md", + "sha256": "38a7410686ade94df5b3771dd50674bd9a17638acdac2b9ad5bcd6aa7d21955e", + "size": 707 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_m1_bounded_multi_agent_allocator/02_handoff.md", + "sha256": "b3e55e5a5c5198eb5568b26ab36720ef83a71b8932a64bfb8b4497af0b439dff", + "size": 481 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/HANDOFF.md", + "sha256": "9b69ac8010f61549e67b008cc041145f29122b940a4fced5933159ecd7038586", + "size": 742 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/README.md", + "sha256": "d4cf48ce41fa870013708a9b2588d3e722895a395e2ce471b92d4e4cd5593995", + "size": 414 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-09_post_k6_orchestration_consolidation_handoff/ROLE_SESSION.md", + "sha256": "b370198d6564e9a604c59cb1d17fab0aefebabd19e26c6afcbf2b9d5d30e2198", + "size": 242 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/00_trace.md", + "sha256": "581809ed8a3d7c8c0ae3c293d11135adef9b6e4ec22ad45b1181a16318dfb4b9", + "size": 2655 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/HANDOFF.md", + "sha256": "1cc1c36f3de742649e0fbf6732fc63f04662e6a2c8651123eff4f6b8ccc278ac", + "size": 1128 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/README.md", + "sha256": "bdd1347113f4314e63e6aeec0ead9dc27afb8e49d52b513e6b817366d9e0470e", + "size": 234 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_ion_kernel_constitution_self_use_alignment/ROLE_SESSION.md", + "sha256": "409865b74282a3f8095d2fdaf5795a57a67f5cc7408931eb140a313d1649ff60", + "size": 1588 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/HANDOFF.md", + "sha256": "174b2b0212eee059fe9c723fa3c7bc83e647e4e7999a3664303f4840b7674c12", + "size": 279 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/README.md", + "sha256": "8f9b5d83538f3f3b145f924be99bf24c30d7b65c2a1ea1344c7bed96b7423311", + "size": 116 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m10_schedule_lineage_and_supersession_archival/ROLE_SESSION.md", + "sha256": "42a50d89a627dc91f08992a085de3356071e1d6c7a50b78f4bca6d5c6044115a", + "size": 210 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/HANDOFF.md", + "sha256": "34e69e0d8c0877161b2bffd3c3e14cd7c35d8b6ed7dd885039a4726618c511f4", + "size": 279 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/README.md", + "sha256": "da32dcb9504e73f8966acfce3607eb4e565c8dfda0110daad235386af7b7dd9e", + "size": 133 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction/ROLE_SESSION.md", + "sha256": "f00bc4889e95f8521c65a195a2972d79eccfeeb7c433b940336a98d5a2f71694", + "size": 201 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/HANDOFF.md", + "sha256": "d63a9222c35ac5fbce722647efadaf027904fbd3b31c4172050c27cd07960c1f", + "size": 259 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/README.md", + "sha256": "a37f3cacdeb5c7ef4d0564ce7d70e89746b8fab8b66cd24217353916a2f733b4", + "size": 128 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection/ROLE_SESSION.md", + "sha256": "135d71856608ba34152a19635d6c0865b2ad3534fd113fd226796c53c38b6c8c", + "size": 206 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/HANDOFF.md", + "sha256": "77708590340f0f9b62d1c5c462902c84f7f989b87311f9d1db1ffe95d2ce280f", + "size": 307 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/README.md", + "sha256": "8617368bb8274a1d0fd9fe9050f2602f9c715e6a592be2ba52fb9595db6ce655", + "size": 131 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m13_resume_projection_continuation_bundle_materialization/ROLE_SESSION.md", + "sha256": "c590dd4be1a45136d237ab2c27d1bf79ea0508b85ad895b2ab3ad8726501f06f", + "size": 235 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/HANDOFF.md", + "sha256": "0ce3c2e22d9f0f9dcdc26a53b799cd34f917e910157fb1bb0b504a9cf3a4a456", + "size": 277 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/README.md", + "sha256": "84c4cb093e2be4b580b850c96d6426e81849ff0616709db970862da95639d194", + "size": 114 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation/ROLE_SESSION.md", + "sha256": "7d3adbd29b49ec086be17e03e2d6f79a865d51f82dc5f0a292cc21ab8a0065f6", + "size": 203 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/HANDOFF.md", + "sha256": "dc71385c5880ea17ca9880387e329147f0251b31ac0ab3408adafbcd96aa9184", + "size": 290 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/README.md", + "sha256": "d110c7a3fbbac4642fe1f048179a141e9c3acb1247298b5b0479636ab579011d", + "size": 128 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m15_activation_summary_handoff_capsule_materialization/ROLE_SESSION.md", + "sha256": "df1fc890b68f49d2b82570bcf96141a3346c71da73c93208b44fb82b5bc7db7f", + "size": 282 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/HANDOFF.md", + "sha256": "e75fcec36f669833c7c1a857ef9d8493c72dce84a51495726ea58ff8bf3ba664", + "size": 263 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/README.md", + "sha256": "3ce6bc7aeeed70b0c2f01535a5d750558e3fc4bf87d20b37ca94a99213a74ef9", + "size": 118 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal/ROLE_SESSION.md", + "sha256": "0b663b0e88731ddbc1fa929ff5e524b50a64d87499beb2fa8c4a9e505c910838", + "size": 326 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/00_trace.md", + "sha256": "31673c45c194d36c1b8ec3fc30e5b875a6b4786f62799de10fba743eaefadd06", + "size": 145 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/01_role_session.md", + "sha256": "44d2c945955f4aeea068a87c7c5cbc83acde2463f4eec5765907c8e43d6a4ff2", + "size": 210 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m2_fan_in_merge_review_settlement/02_handoff.md", + "sha256": "b0c2748cf1356fbd1afe3630b15efa7c285e7146b0ca7a8d39a6913dc0125508", + "size": 175 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/00_trace.md", + "sha256": "d7941b6b0a807b1f5f8a0ea4bbcfea60a061592ca3f43b02cd2ee0d69c34a138", + "size": 293 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/01_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/01_session.md", + "sha256": "690422ae43af26590b5a3243f68389cdb5436a1f1a8a6a6a2eae05b4316246ca", + "size": 240 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m3_branch_budget_recursion_drift_controls/02_handoff.md", + "sha256": "d0ca2a7716ebbb5cb9e610f330c17f502c38edd2f6c98421decfe1d8b33e497c", + "size": 267 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/HANDOFF.md", + "sha256": "a02421d90f3e0517a883d055cc732bfdb7db3038573c9360a5c632fbee4da717", + "size": 268 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/README.md", + "sha256": "254d9bee4e6bb6c5359b6ad16c83eb986823f018652074776ea85fef4713749a", + "size": 285 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m4_branch_horizon_schedule_synchronization/ROLE_SESSION.md", + "sha256": "08a0abecb1c18e34d95a96a01c1b93bab781ed1d0359e6bd9a735fc201119a7e", + "size": 303 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/HANDOFF.md", + "sha256": "ba9d6ee000c2473336147b7471f334f6f69020f7c6190438c27c82674e1772cf", + "size": 266 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/README.md", + "sha256": "6dba049ade5df0b8af202ad2ac8e47d653b7a6bc1810e2fdc159387cd3f172ba", + "size": 107 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m5_branch_rescheduling_and_rebinding/ROLE_SESSION.md", + "sha256": "76d114fee67e751e1d9ed503ef153dd6cda4a190b9b999cfda42f87c1301001a", + "size": 311 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/HANDOFF.md", + "sha256": "6ce933ca051d5ae1cbbbb777d3e926a26ebcc5786620cba7f919cb5489df7888", + "size": 240 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/README.md", + "sha256": "ea992add5dd9672faa91102194971282afe90097fe8ebd80be2f325d2ef33e98", + "size": 122 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m6_schedule_stale_retry_reassignment_controls/ROLE_SESSION.md", + "sha256": "cefb0684d1d8dd7a88d3711019acce87bedb02ce5c268b1c12ba14b74131d36c", + "size": 213 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/HANDOFF.md", + "sha256": "f90c0d114f2b458a7310c93161a1e6154df3514165f9383e227da0b77ee5b236", + "size": 291 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/README.md", + "sha256": "d8f0ce9cc00588f77cb47435e12c6222799d61e64742e23c48b4a0b159b10eb8", + "size": 121 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m7_schedule_dispatch_assignment_reconciliation/ROLE_SESSION.md", + "sha256": "df676b336394451b087b24eea78161e8c39180c860102d8b058e9b0e4acc2052", + "size": 213 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/HANDOFF.md", + "sha256": "7facb7151dd164e6cd2a1054d755cbdbddd2990f7f263a80c3e450a73b36855d", + "size": 251 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/README.md", + "sha256": "31d649df17444cb09db567b247496e3a1b976e10fb6240a02a5ca454b44580d2", + "size": 104 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m8_schedule_completion_assignment_release/ROLE_SESSION.md", + "sha256": "35207cd29a4783bb3946768e7cedd83ea5f6af61f8546526f4f1fa6d9ab97849", + "size": 197 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/HANDOFF.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/HANDOFF.md", + "sha256": "a354a3b41729925e61f066b8c682ab6cb4da09ac39001b20f656a4ed4e538b77", + "size": 247 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/README.md", + "sha256": "e5d9c4ec589bb206f235655a2d557250521d6907534554c263af6aadd8020bb8", + "size": 108 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/ROLE_SESSION.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-10_m9_schedule_settlement_and_future_reentry/ROLE_SESSION.md", + "sha256": "db21bb1cdeb708ab37cfb4fded310030aa32d888643f154835b1982dc7d885fc", + "size": 207 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/00_trace.md", + "sha256": "221439eb1e09129badb6711e5910eacecfe3973c591a0d22d52458f455dfaa50", + "size": 639 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/01_role_session.md", + "sha256": "8b2fee9d61d4aafee0352adf0b22f97fa32fdec67817ff2d832a5cfdefee8aed", + "size": 1434 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/02_handoff.md", + "sha256": "1936993e8b431e24f5bfc421608dc530d9fd62fe3722681d6232b50fbad8670b", + "size": 2598 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/03_cursor_handoff.md", + "sha256": "a7b2f2ab518dfe7c3e0ce987e9c99a4bf76d29d6205e4b96a3a6452e06956fb0", + "size": 2713 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_fresh_agent_startup_packet/README.md", + "sha256": "d643af1a00678c1790e8722edb42a0589056de8b7790b2560193efed343bf1e5", + "size": 379 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/00_trace.md", + "sha256": "3e35c221708e8466ee1897e60aa1ba698a75f7deed4731806bbe4fc975b4d659", + "size": 888 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/01_role_session.md", + "sha256": "3de8cc5eb437ba3bf6c04f01cdfdeb0291f664d804110aca54b7885c65ebe905", + "size": 1984 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/02_handoff.md", + "sha256": "d68ca491935761293431f848f2307671e06dd2d66a685baaa1a775ff8f60b74a", + "size": 3132 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/03_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/03_cursor_handoff.md", + "sha256": "f68a4e66697557a35ad0ae02b2e58435d5d9f76e2f870af475dd78cc36a48fd5", + "size": 3673 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-11_m16_identity_lineage_destination_second_pass_packet/README.md", + "sha256": "f8e4cf000947d94cbb78c6b4470d3f017f6daec62fbbe4537cb8d781bb3ed592", + "size": 367 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/00_trace.md", + "sha256": "5d32f683507d5e2605a718b0e6d54ade73189cbde5b21ad3a3ea271a0c31f1ef", + "size": 775 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/01_task.md", + "sha256": "4b71c7b7902937c7e5ce872536202cff847d02ba03bbb5c3f08206e4c0a3bbb9", + "size": 1840 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/02_role_session.md", + "sha256": "54a876fcb4af30995f398459df9a89afb27a7eed8c46bc8dc129866a55beb8b0", + "size": 1879 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/03_thoth_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/03_thoth_role_chassis_mount.md", + "sha256": "d186443ec9093d0c6a4804cc269a351cac71e87c24c054b4ed31b13f26d9011d", + "size": 2416 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/04_vestige_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/04_vestige_cursor_handoff.md", + "sha256": "8eae6a58bb56f92965c8406df6562992f843ee112d785deb35b1086f53ee8648", + "size": 2057 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/05_thoth_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/05_thoth_cursor_handoff.md", + "sha256": "3067713714a34a99b5d0bb40087fc12837b02c62bcb6925ead6d51a89b892d55", + "size": 2238 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/06_operator_onboarding_sequence.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/06_operator_onboarding_sequence.md", + "sha256": "7ae5221a1fc0c5880e05aa9861cbb0ff55a4d2e37faeea9af62efc2cbb128746", + "size": 3062 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/07_handoff.md", + "sha256": "b16bb86e96b78244a23046c0c4d91292749ba8f604e61fc9e608f872cd8e27cc", + "size": 1843 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_agent_onboarding/README.md", + "sha256": "7046a007bb6d7aae3bfad0ee43b7e51e7ba310f7bbd273e5255ed3c3c034f80c", + "size": 597 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/00_trace.md", + "sha256": "122b68dc69e5011a155bdb6d448381da1b84caa3411c0a85a29dbb7e2de098fd", + "size": 632 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/01_task.md", + "sha256": "24e96af568e7a12747401d7eb790a6494035f7aedb99eba68f46d08eee24eb30", + "size": 1528 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/02_role_session.md", + "sha256": "37b4efa83a2638d478a35bc6916f62c363ff88a3c84fc9502a9cc7c003c31af7", + "size": 1628 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/03_codex_proposal.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/03_codex_proposal.md", + "sha256": "65de7891ac3539eb1e37a9a9847259d940275148d8cdd2d4511762ec8a6d8c07", + "size": 2501 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/04_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/04_handoff.md", + "sha256": "d162aa91c2a9e1c9ef26c32a8ab4973a08ab14f825bf16d1fe620b86be3f6c33", + "size": 1474 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_bridge_packet_status_consolidation/README.md", + "sha256": "3749632b0de56a3578377b09f6a9b51bc891257ab0198994b00ea707f2910be3", + "size": 491 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/01_task.md", + "sha256": "a3a38db53e8b900e13225c86b23a934c25a0a7b9cf561863afb5fcd1e5da6616", + "size": 1503 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/02_role_session.md", + "sha256": "fef580a09d3cef85ef47daa18488419cdae5a3a5767645101e2a26daed9765d8", + "size": 1664 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/03_mason_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/03_mason_role_chassis_mount.md", + "sha256": "008b487748ef68d04fd01543572707f7d6c112e7e20667d09353879879b9340c", + "size": 2287 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/04_mason_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/04_mason_cursor_handoff.md", + "sha256": "3f91ce7c44ae2d73baaa63e800fb1f524b03e490b2cc3aa3dac36dbe9ec84fa5", + "size": 1816 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/05_operator_onboarding_sequence.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/05_operator_onboarding_sequence.md", + "sha256": "262ae5d2399a89fb59a4851b6244228b0ab0cc1f17ea50434eb9dc81bd5f845c", + "size": 1309 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_packaging_hardening_mason_onboarding/README.md", + "sha256": "7d96e9c6f9c5d2e48fd958220a870d14f35dea2f2f28c8c63ff2b522ca2dc0de", + "size": 700 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/00_trace.md", + "sha256": "37ee9e5f40d5f32ac1c6191e2af668e7a26d305e1d0f0018691450cb4e5af498", + "size": 795 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/01_task.md", + "sha256": "379e45432a524da6614c4c16f7f292d50f699d473bb3a209c9ac73ba9f86e7fa", + "size": 1987 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/02_role_session.md", + "sha256": "d09f5ade0d81bba4cde4ec76780e911f0e05ae182e87c1058d9f8b7b21f2532c", + "size": 1914 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/03_browser_external_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/03_browser_external_handoff.md", + "sha256": "bc9eeb07b3d219ccf2dc8679a5e420c9b9457fe29dc64f266b08636ed6c70968", + "size": 1679 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/04_external_return.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/04_external_return.md", + "sha256": "e54d76bb37ac4d64e2d022a2adbf585aeb86bd8e708e0645ab38231dc5a4a77c", + "size": 2201 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/05_patch_package.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/05_patch_package.md", + "sha256": "567d54eeadc6904e9c511bc9f64447d9f5512b761bad45dc289631aeca14aa66", + "size": 1549 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/06_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/06_handoff.md", + "sha256": "f45f81892798d4df5c2a038988120d246ffdbc2cf9ba6f9173beaa3e69f95b36", + "size": 1871 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_browser_external_return_drill/README.md", + "sha256": "6c712040149bc2af6727a801d07d010c510f491ba99d81d6ebdd74fb238525ff", + "size": 582 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/00_trace.md", + "sha256": "31ab4a4e8a6fd488967b61db7028603640fabe9c09f2a3ff0100251fa925a5ff", + "size": 841 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/01_task.md", + "sha256": "8de20c33682f1e1fdd433f7d1e5d851d7d73714311c40924a38c374a0c149e2c", + "size": 2189 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/02_role_session.md", + "sha256": "46c0955633cbb3345c3d11fe19ac483e6ce836e62380dba58f1f587160d169ca", + "size": 2041 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/03_disagreement_escalation.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/03_disagreement_escalation.md", + "sha256": "3b2b6719677760b7f16d67106309ea28d440d58b9c771d693de1a6477cbe70c3", + "size": 2323 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/06_codex_proposal.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/06_codex_proposal.md", + "sha256": "9f0f87c78c4077e61f085cdd73fd06959d8f08fe3be688849cf899471bafa1b1", + "size": 1998 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/07_handoff.md", + "sha256": "33cba5774ff01f9a945929e9a0ba555a1eccc0695ecde6de6b38f6089a210df4", + "size": 1749 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_disagreement_drill_browser_mount_boundary/README.md", + "sha256": "aacde990023cbc2279b25c45d9ef5d2e578cf60ea85ab153908528b4e5f52863", + "size": 839 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/00_trace.md", + "sha256": "1defdea0c0f280b3acc32b41077a6bf30b03d4ef516ebf11855791cb89144bea", + "size": 873 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/01_task.md", + "sha256": "292c90f39e6c2970fecc8f5feb76434a362883b7e1c745236239e7b2db409247", + "size": 1647 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/02_role_session.md", + "sha256": "cf4219bf57743509dbe774447da3428fe71a9cfa789242cc33d5230ceb25b900", + "size": 1767 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/03_mason_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/03_mason_role_chassis_mount.md", + "sha256": "e1e27f792f5c483d07941efa7810855bbb04b271989f01f85b5234c3c9ffa8ec", + "size": 2288 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/04_vestige_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/04_vestige_role_chassis_mount.md", + "sha256": "034b5d5e9cfa15e810dda51566fc9fa0bbfb5e6fbc55bbe4d662381d61bed641", + "size": 2187 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/05_browser_external_unmounted_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/05_browser_external_unmounted_role_chassis_mount.md", + "sha256": "bf2023ad9e60ae41fd2d7ece750f70231b71cc5cd33e1acebbdc3a8da1791e0a", + "size": 2106 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/06_context_bank_feed_proof.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/06_context_bank_feed_proof.md", + "sha256": "f3f93dac99ead6080c3ebead5fa593336245ec1b6d433fb1dea89e7c54224556", + "size": 4268 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/07_handoff.md", + "sha256": "2b6fba75f6f33b3d96262bc563b5341ed526eb82fdc3f30059b2822416698968", + "size": 2072 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_phase1_mount_proof_and_context_feed/README.md", + "sha256": "a28724a2a6901b308ff89534681d8130c8c26e8dc73c5d4b521a6013877a33ba", + "size": 627 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/00_trace.md", + "sha256": "15454c07ba7179ce84cf2ff22e762f9c4cd3020e48736be7a85f57e4f6e3ae09", + "size": 810 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/01_task.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/01_task.md", + "sha256": "a2700bdcc8d0142479ecacf5e443255e07076f15e31b9999b412d40c718de6be", + "size": 1956 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/02_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/02_role_session.md", + "sha256": "7ca2c47ffb15a8eaf5229ea8b81fb605940f16cf5b2c62b6edb32828d079126a", + "size": 2093 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/03_thoth_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/03_thoth_role_chassis_mount.md", + "sha256": "7a1dce03f6e4b5ee1262c83f8d76fe7aedf743520d822a411b93b4ec90b912b7", + "size": 2329 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/04_vestige_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/04_vestige_cursor_handoff.md", + "sha256": "1313ce8c955f61531d3fcbefc839f10e4fda3ca26ebbf3636ee72425fa879e07", + "size": 2257 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/05_thoth_cursor_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/05_thoth_cursor_handoff.md", + "sha256": "f2d4973801d2d67a7e04257f5d2d07bc5f0329f17c68e7a1c45b149dc3dca8a4", + "size": 2555 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/06_operator_onboarding_sequence.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/06_operator_onboarding_sequence.md", + "sha256": "c09577518c6c8da9219fc628047092fd7e9cedd287663a83296122248b83a26d", + "size": 4231 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/07_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/07_handoff.md", + "sha256": "b32d3ab47a47f8ef35ec9fcd5133305827c322120199db802371873201da0e12", + "size": 2021 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/README.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_staffing_semantic_identity_agent_onboarding/README.md", + "sha256": "6985972a761cefef395ea30a034bad6bf924bcb40be24496268ab83b2c11734b", + "size": 978 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/00_trace.md", + "sha256": "5398fe09cccad1ef73c2757e154aa566c66e46b2b16ea174609db5bd30953090", + "size": 54 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/01_template_surface_change.md", + "sha256": "591be03f006239559a045beddad5def7cc5cc672d3df519fe6ae54662beb7665", + "size": 1370 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/02_role_chassis_mount.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-12_steward_truename_and_template_alignment/02_role_chassis_mount.md", + "sha256": "1761772cc3809ce1cc00036938ff03ede3c91be3954d57d08454cef0a356aa1d", + "size": 1321 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/00_trace.md", + "sha256": "f429d4fd6cc961cffa03a4831720190b60439e3716be1999be993c6e65034027", + "size": 184 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_fifth_pass_role_binding_alignment/01_template_surface_change.md", + "sha256": "0dcfb9ba524246932726bba72eccfd16fa2ea3a997d2cd348cd867338a1c5136", + "size": 194 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/00_trace.md", + "sha256": "69e8e6e4ee4bac3ee164a4ed890da987645bf5b481c65fe02e6a9499b7f86741", + "size": 94 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_second_pass_surface_alignment/01_template_surface_change.md", + "sha256": "0992984b70530681f16aea4bd0d5d55d833fe6a24f9934ac640e87b2a043b297", + "size": 1561 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/00_trace.md", + "sha256": "464fe05f7ca2b8c351faa24228780260ac65e659dba9b14a84af1101c412e675", + "size": 76 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults/01_template_surface_change.md", + "sha256": "2bebadf758131ed1f964a1806f82ec5dd783b995fa559e310e756aad2bbad808", + "size": 152 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/00_trace.md", + "sha256": "4b2a1bb25114c70aebeac396cad090e914be8e4a6deaece2a043db7845e3cd60", + "size": 67 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_sixth_pass_role_field_normalization/01_template_surface_change.md", + "sha256": "34dfb48e045899753c44a5f129e77b366f206ed55793dc8dd84da7079c8830f1", + "size": 125 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/00_trace.md", + "sha256": "d020fdf0b748aeabdde3e02621ba9ad53d527702746b49f39c236e77e78b5342", + "size": 415 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/01_template_surface_change.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-13_steward_third_pass_template_alignment/01_template_surface_change.md", + "sha256": "d72cd24b651e3b8c34a61a5adcf2f3dc2ecd66aff77de932fcd27757f516be81", + "size": 591 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-23_vm_healthcheck_continuation_route.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-23_vm_healthcheck_continuation_route.md", + "sha256": "cd1a2d71592d402674e8ab5dcf023bb42b4b69ab082414a73391424ae78671f4", + "size": 3127 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/00_trace.md", + "sha256": "a99467855a142ca34c53679dee31db7388fa12d998f6f93a758dc1c928f7e90f", + "size": 1460 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/01_role_session.md", + "sha256": "a83f88a78128034ea1017959f4b56d5b82e7891a3ed1a5b431925db4c47d07aa", + "size": 2078 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_gpt55_steward_startup_authority_validation/02_handoff.md", + "sha256": "b8811b3a0d5e15e1f3fe3b7e36e5fe3f0ffbe39ba8fcacc72bd3a2da3464c8d7", + "size": 2678 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/00_trace.md", + "sha256": "3789a92e63cc04cb050073a9b0936583a81698ec5bc764bce2fcafbd956f1306", + "size": 1124 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/01_role_session.md", + "sha256": "a28fed7e4596cd82ff3df51aa6f6d9a82e92f0fdd63e305acacf5e12c6f5d210", + "size": 1705 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_front_door_correction/02_handoff.md", + "sha256": "21cecb937b151c06f627a60d00d66f957702801230999ddbef2e5468b12ba926", + "size": 1926 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/00_trace.md", + "sha256": "1a1e0f72506b2e1a0be5892934f2b4c54cfa62071e425ea0c605130b3b678fd9", + "size": 1075 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/01_role_session.md", + "sha256": "2aecf6eb37f52506f8dec390b7d86c40a3bb29d2c251afe2b0a6e014ddeb324c", + "size": 1546 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_persona_fronted_live_use_proof/02_handoff.md", + "sha256": "7cb399983263b6cc1d912869d0d39918e87567ed9ef6800c3b2f16db645fa4cd", + "size": 1873 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/00_trace.md", + "sha256": "7195db53c3bff5a9002574bda2d7068b188615d9f609fa8cb2df326d6c1f78d7", + "size": 958 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/01_role_session.md", + "sha256": "d729ae744aef743f31ea0135f9c4ff85004d3a630fa6b46d474e8e0112fe63ec", + "size": 2442 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_post_a1_lane_a_continuation/02_handoff.md", + "sha256": "33d9612f9efd75096fc410c64361f5c0487221c107fc36e6d7dc1978816429df", + "size": 2073 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/00_trace.md", + "sha256": "e9fccc4518ff1a14e0b3fd0a6aae7e9e6e9cfc99e68d369f2e277531696ff76d", + "size": 1122 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/01_role_session.md", + "sha256": "ac0731fc233669ba4e67680669903f661885f1ae3036d74c6af2660e41e9bcc8", + "size": 1967 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_full_spectrum_rehearsal/02_handoff.md", + "sha256": "9f0b0b988443cc946a68ba1a4d8190e2c52f655c93aad7eecdf5e5a9b3f818d5", + "size": 1804 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/00_trace.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/00_trace.md", + "sha256": "172fc88d71e1a953615fdf6f10423e576cf1a633df41db0dcbf52fe5df2811ad", + "size": 1266 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/01_role_session.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/01_role_session.md", + "sha256": "c18e46bb1278131ba39877f4774e0633adf3e8bc1ad4f4511089e8eb00d28283", + "size": 2065 + }, + "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/02_handoff.md": { + "path": "ION/05_context/comms/kernel_router_runs/2026-04-24_steward_single_carrier_protocol_landing/02_handoff.md", + "sha256": "326ecbfe43655ef5069bdd02fd27c0b8021cd73e9cb73e7c5c2e73cdee8433df", + "size": 2013 + }, + "ION/05_context/comms/migration_ledgers/automation_operationalization_ledger.md": { + "path": "ION/05_context/comms/migration_ledgers/automation_operationalization_ledger.md", + "sha256": "9e4cb329a7961fe18a12829e633d723dae6550352b4e1e230fa471b2ffd04495", + "size": 6177 + }, + "ION/05_context/comms/migration_ledgers/domain_semantic_runtime_migration.md": { + "path": "ION/05_context/comms/migration_ledgers/domain_semantic_runtime_migration.md", + "sha256": "b0b7a862a713e512b8d38bcb356d72d2d59fb7997ff9ecc249aa31dee178ef03", + "size": 26120 + }, + "ION/05_context/comms/roundtable/ROUNDTABLE_PARTICIPANTS.md": { + "path": "ION/05_context/comms/roundtable/ROUNDTABLE_PARTICIPANTS.md", + "sha256": "408644206a0841f223aa60f103972b760874cb60858a0ade9780b0cfa58ffc0c", + "size": 2791 + }, + "ION/05_context/comms/roundtable/vizier_article7_version_governance.md": { + "path": "ION/05_context/comms/roundtable/vizier_article7_version_governance.md", + "sha256": "3e3d1521581b228ba30af598510cd0a6396a9f90256a99b3d7b758fefc78fb6c", + "size": 4216 + }, + "ION/05_context/comms/roundtable/vizier_decisions_and_ratification_request.md": { + "path": "ION/05_context/comms/roundtable/vizier_decisions_and_ratification_request.md", + "sha256": "9921a4d7f6ca47ec778de154a356d1292c0e11423f3075a6f63a3b566552f525", + "size": 3952 + }, + "ION/05_context/comms/roundtable/vizier_full_status_report.md": { + "path": "ION/05_context/comms/roundtable/vizier_full_status_report.md", + "sha256": "7e1326ef35f14d6928f29cd0091ababb9395fbffe858a8683d56310c2a69774d", + "size": 7913 + }, + "ION/05_context/comms/roundtable/vizier_ideas_and_first_action.md": { + "path": "ION/05_context/comms/roundtable/vizier_ideas_and_first_action.md", + "sha256": "1b89fe1e003f816862629d6c4a13ca1d000064c816721851bf295fe82d61c47d", + "size": 6819 + }, + "ION/05_context/comms/roundtable/vizier_ratification_assessment.md": { + "path": "ION/05_context/comms/roundtable/vizier_ratification_assessment.md", + "sha256": "8f7f56d48e7f752195d8d572b833a1a3e94d05ca1ac9e548d99921f5b2f98517", + "size": 6393 + }, + "ION/05_context/comms/roundtable/vizier_response_recalibration.md": { + "path": "ION/05_context/comms/roundtable/vizier_response_recalibration.md", + "sha256": "596d938da98f77e1e4610a1499f8b2d610cec64e6c80a2c4283e72fc3d75c878", + "size": 4698 + }, + "ION/05_context/comms/roundtable/vizier_synthesis_response.md": { + "path": "ION/05_context/comms/roundtable/vizier_synthesis_response.md", + "sha256": "fb58c3b67b5717d6a409a66ce6dd36439c54a8e41011598a8fb8780ecec5ffe2", + "size": 4734 + }, + "ION/05_context/comms/sovereign/2026-04-03_codex_operating_state_delta_after_kernel_pilots.md": { + "path": "ION/05_context/comms/sovereign/2026-04-03_codex_operating_state_delta_after_kernel_pilots.md", + "sha256": "037847164a43a40f1ce906ce4f5afa06ae4dad51c77fbdc151281425ae619e2e", + "size": 2574 + }, + "ION/05_context/comms/sovereign/directive_full_status_report.md": { + "path": "ION/05_context/comms/sovereign/directive_full_status_report.md", + "sha256": "c0f0338d5d687a4fa164cb0abd7868cbb7c15b8d25cda63d209afceaaeb58fe5", + "size": 1523 + }, + "ION/05_context/comms/sovereign/directive_preratification_deepdive.md": { + "path": "ION/05_context/comms/sovereign/directive_preratification_deepdive.md", + "sha256": "f262f40b74865e6e9c7e6e2fd1647024f8652a21989bb336bc643a8f4fc969c0", + "size": 3389 + }, + "ION/05_context/comms/sovereign/directive_recalibration.md": { + "path": "ION/05_context/comms/sovereign/directive_recalibration.md", + "sha256": "2f1a24827130861bbf23938f51b1404f7ca434d5f6993ccdf33713c375c2d7ff", + "size": 2155 + }, + "ION/05_context/comms/sovereign/ratification_summary_for_sovereign.md": { + "path": "ION/05_context/comms/sovereign/ratification_summary_for_sovereign.md", + "sha256": "f9acc96b958806fedcf4e410da9dbb28a28a6084ea3bb0521cc0dc382e78c8a9", + "size": 3904 + }, + "ION/05_context/continuation_bundles/GPT55_SELF_MOUNT_V34_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/continuation_bundles/GPT55_SELF_MOUNT_V34_SUCCESSOR_HANDOFF.md", + "sha256": "53f4d1c490dc5385fd8a9bcc0509237d84e9fe35ba6b8264f6ffb45162fb76b3", + "size": 2497 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/00_source_packet.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/00_source_packet.md", + "sha256": "b3f11e5c7a6c5b2ac1f2b46f9e47cb21d41e2c4a1716d8472156df5bd66cf162", + "size": 1931 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/01_role_session.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/01_role_session.md", + "sha256": "759b41b0c98f389d058e096118927b4084e76a0c422cfa4f2a96d8674c48d8b0", + "size": 1902 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/02_manifest.json": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/02_manifest.json", + "sha256": "5c68e94b97de02b1ce0f6e329410e04db114fb5de5b603f90310a1a02d0d4e41", + "size": 4152 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/01_doctrine/CANONICAL_WORKFLOW.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/01_doctrine/CANONICAL_WORKFLOW.md", + "sha256": "290d7d54c01c90003169735c96375418270de38167c22deee49cefb4091f3955", + "size": 3629 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "sha256": "d485b04b6f2d2d844a2b108c96959312fca2c65f0d1cdfa61f9cf75f7c45cc11", + "size": 1223 + }, + "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md": { + "path": "ION/05_context/continuation_bundles/bootstrap_vm_continuation/reads/ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md", + "sha256": "ebe5f634b82840d2292c3f8a153401e0f68ec91e38e691f7b95d4d01e6394726", + "size": 1816 + }, + "ION/05_context/current/ACTIVE_AGENT_CONTEXT_WINDOW_PLAN.json": { + "path": "ION/05_context/current/ACTIVE_AGENT_CONTEXT_WINDOW_PLAN.json", + "sha256": "cdba77a726f28bdf4753adf74d4ef6a3339ecd62378a70fe66f70cb7a1be7165", + "size": 53186 + }, + "ION/05_context/current/ACTIVE_CARRIER_MESSAGE_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_MESSAGE_QUEUE.json", + "sha256": "813e2d6ed5a620fcb608554d667b70db569388a79c5378cc54cb4451cd644dae", + "size": 6576 + }, + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.codex_cli.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.codex_cli.json", + "sha256": "d161661e345ec86d60381b87d6d8c12516ad1e1cca493529dd6614cb9c134a9c", + "size": 11740 + }, + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.json", + "sha256": "c37acb154de9aaa035898e4c06877020cfb07c825c4cf50851e68bdbb1ee0085", + "size": 11447 + }, + "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.sev.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_ONBOARDING_PACKET.sev.json", + "sha256": "7f012539cdb7e3516f944709f3dc07f42874b946f6b0154096f08eeda8cb89da", + "size": 12637 + }, + "ION/05_context/current/ACTIVE_CARRIER_TASK_RETURN_LEDGER.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_TASK_RETURN_LEDGER.json", + "sha256": "d4c2c6a632c3bebf43386353573b8ad7f49ed445df5cecce5c80d255ee49b2be", + "size": 6014 + }, + "ION/05_context/current/ACTIVE_CARRIER_TICK.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_TICK.json", + "sha256": "7d2967c145d34c671c1ef2b825d1c1c3952151de15bd573cfe6bf7c606d02746", + "size": 1139 + }, + "ION/05_context/current/ACTIVE_CARRIER_TURN_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_CARRIER_TURN_PACKET.json", + "sha256": "4610c7bcb3a95148ab4becb594a47bf92e55a9f8186d2a839acba7a619e70bf5", + "size": 4188 + }, + "ION/05_context/current/ACTIVE_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL.json": { + "path": "ION/05_context/current/ACTIVE_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL.json", + "sha256": "eef1ed163c93f1fa80f42b4e309f25dce7d1fad0b65652801913cfc186a0fc27", + "size": 608 + }, + "ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json", + "sha256": "9fb2836bf915da88422835da2b287ae0fff5677e1cb1e31769cc9a4964b1b5d3", + "size": 44565 + }, + "ION/05_context/current/ACTIVE_COCKPIT_VIEW_MODEL.json": { + "path": "ION/05_context/current/ACTIVE_COCKPIT_VIEW_MODEL.json", + "sha256": "fa945e0d9105054dc6a5254796182d72edb56596a3b41e22805260d482de3fe6", + "size": 190139 + }, + "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_PACKET.json", + "sha256": "7b1e94174d92f3a384de20803594b83c084e98677d0c631231f20a58ad6dd6d3", + "size": 3036 + }, + "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_STATE.json": { + "path": "ION/05_context/current/ACTIVE_CURSOR_AUTOPILOT_STATE.json", + "sha256": "811f921c0408b377383ab2b8df48f1f27b51634a4adf69f2a1d3537f5ecfa59e", + "size": 432 + }, + "ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json": { + "path": "ION/05_context/current/ACTIVE_CURSOR_HOOK_STATE.json", + "sha256": "d300b5ec27cd7c35387be872879780577d4db332a0633a2c448e8a095403414b", + "size": 1624 + }, + "ION/05_context/current/ACTIVE_FRONT_DOOR_PROOF_TRACE.json": { + "path": "ION/05_context/current/ACTIVE_FRONT_DOOR_PROOF_TRACE.json", + "sha256": "132e6d6705a95f9374f988adefb1fcc65ec7726e269461c5c305513ab9a84e8b", + "size": 11317 + }, + "ION/05_context/current/ACTIVE_FRONT_DOOR_TEAM_PLAN.json": { + "path": "ION/05_context/current/ACTIVE_FRONT_DOOR_TEAM_PLAN.json", + "sha256": "9393bc5ee5139ba5853b689d293b9e6c99669757282ad950ef214a46296a587a", + "size": 3186 + }, + "ION/05_context/current/ACTIVE_HUMAN_GATE_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_HUMAN_GATE_QUEUE.json", + "sha256": "16ffd2622c96bee2b6de91f91e83b8634cfb6c32194efe2e07656dd527c85796", + "size": 5552 + }, + "ION/05_context/current/ACTIVE_LANE_TIMELINE_VIEW_MODEL.json": { + "path": "ION/05_context/current/ACTIVE_LANE_TIMELINE_VIEW_MODEL.json", + "sha256": "eb18f475bb33125f5398a4a3352afc5971376467985608b711518216aabf1771", + "size": 80249 + }, + "ION/05_context/current/ACTIVE_MCP_BRIDGE_STATE.json": { + "path": "ION/05_context/current/ACTIVE_MCP_BRIDGE_STATE.json", + "sha256": "282880a15b7838d94ca4d9412739e5baf48d86e736f296cfa66fb416248bfba6", + "size": 911 + }, + "ION/05_context/current/ACTIVE_OPERATOR_MESSAGE_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_OPERATOR_MESSAGE_QUEUE.json", + "sha256": "71b4ff39948133692bc8aebbbf24d4b66aa47fdc5026abf0f666e6a169a6257b", + "size": 55139 + }, + "ION/05_context/current/ACTIVE_RECEIPT_HYDRATION_VIEW_MODEL.json": { + "path": "ION/05_context/current/ACTIVE_RECEIPT_HYDRATION_VIEW_MODEL.json", + "sha256": "7387b49b5233874e39e19b9258f140f2e3138a8216d6b4fa4b70a6b901e5fe41", + "size": 542 + }, + "ION/05_context/current/ACTIVE_ROLE_SPAWN_PLAN.json": { + "path": "ION/05_context/current/ACTIVE_ROLE_SPAWN_PLAN.json", + "sha256": "d2f42fb8c553cdfc08ad2e2eab1e53d86e8264e1fac8156a32b98d65cd641f16", + "size": 13574 + }, + "ION/05_context/current/ACTIVE_RUNTIME_DEBUG_OVERLAY.json": { + "path": "ION/05_context/current/ACTIVE_RUNTIME_DEBUG_OVERLAY.json", + "sha256": "4cd6992636aa6bbcccc45f06249727f0bd6be422aced3455bf2fd7f8997819bb", + "size": 1519 + }, + "ION/05_context/current/ACTIVE_STATE_INTEGRITY_AUDIT.json": { + "path": "ION/05_context/current/ACTIVE_STATE_INTEGRITY_AUDIT.json", + "sha256": "54303b4f31477008e4da1c07858f3e2028fdfa6930ff3d276c9806b22508ae73", + "size": 1533 + }, + "ION/05_context/current/ACTIVE_STEWARD_INTEGRATION_QUEUE.json": { + "path": "ION/05_context/current/ACTIVE_STEWARD_INTEGRATION_QUEUE.json", + "sha256": "ad8e46bb9858e963867d441548a14c61523a10743e727dfdc0d80e4902e87df5", + "size": 6888 + }, + "ION/05_context/current/ACTIVE_WORK_PACKET.json": { + "path": "ION/05_context/current/ACTIVE_WORK_PACKET.json", + "sha256": "42bdb20582ed9ec9aafef01d704d93b0ad911cb202366ed25123ccd379f88719", + "size": 12883 + }, + "ION/05_context/current/BASELINE_MANIFEST_V124.json": { + "path": "ION/05_context/current/BASELINE_MANIFEST_V124.json", + "sha256": "bb32c197bf167df8fb5d7a0a3e507efe290125032200366b6f5fe1377a947861", + "size": 1699461 + }, + "ION/05_context/current/CARRIER_AGENT_SYSTEM_BUILD_PLAN_V105.json": { + "path": "ION/05_context/current/CARRIER_AGENT_SYSTEM_BUILD_PLAN_V105.json", + "sha256": "9b5b57f47d22f60b8ba3d69e3c7e9e38bce37fc69e972245035b14cde3e1d5ce", + "size": 1839 + }, + "ION/05_context/current/CARRIER_CAPABILITY_SURVEY_20260427_CURSOR_L0.md": { + "path": "ION/05_context/current/CARRIER_CAPABILITY_SURVEY_20260427_CURSOR_L0.md", + "sha256": "55501713d54e66a135c3fa68abe209092b3ccd43068c7ee4f04dd85780767568", + "size": 3025 + }, + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V116.json": { + "path": "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V116.json", + "sha256": "5ef41f5aa7d109a7ba45414de4169fb037a91f012300e39b2911eabe66a164ae", + "size": 1231 + }, + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V117.json": { + "path": "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V117.json", + "sha256": "493e7e0431cb3604e5cff29a224a63c86387b82cf6bf208b253ebed5c2fc47ab", + "size": 1193 + }, + "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V123.json": { + "path": "ION/05_context/current/CARRIER_ONBOARDING_AUTHORITY_AUDIT_V123.json", + "sha256": "9415a62a52152172868716156662712b4af05ebcea00e1894b1dd4b455775c1c", + "size": 2008 + }, + "ION/05_context/current/CARRIER_RUN_20260427.md": { + "path": "ION/05_context/current/CARRIER_RUN_20260427.md", + "sha256": "64da92c03c5ea3176af66523c0eb44d7ffc48c58c2a7c3f5d30b71698d2feb1e", + "size": 1072 + }, + "ION/05_context/current/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_V122.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_V122.json", + "sha256": "8852075ee53bfad0a97405c41ba46bbc49364fbc894c62f381ade728477054d1", + "size": 2491 + }, + "ION/05_context/current/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_V121.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_V121.json", + "sha256": "b26909e97b31948327988a940dd1dc500409d4d7ef9447a5647eccc6e472c24e", + "size": 2097 + }, + "ION/05_context/current/CHATGPT_BROWSER_LEGACY_TUNNEL_REUSE_AUDIT_V124.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_LEGACY_TUNNEL_REUSE_AUDIT_V124.json", + "sha256": "cfe33801c6bcb98a14c72fd32b04a9e472bfd7f315545c755b9338d748f3fbc6", + "size": 6111 + }, + "ION/05_context/current/CHATGPT_BROWSER_MCP_CONNECTOR_CONTRACT_V120.json": { + "path": "ION/05_context/current/CHATGPT_BROWSER_MCP_CONNECTOR_CONTRACT_V120.json", + "sha256": "5ffe50f5329d31cb2029b185b2f58f7bd8f1647fc6e32d3fc2ad6e80de8236f3", + "size": 13767 + }, + "ION/05_context/current/CODEX_CLI_CARRIER_AUDIT_V125.json": { + "path": "ION/05_context/current/CODEX_CLI_CARRIER_AUDIT_V125.json", + "sha256": "bbd52810cfe98acabdaf5ede999cc42a59a038a64ee54c8837a29a4897f50bdc", + "size": 2541 + }, + "ION/05_context/current/CODEX_EXTENSION_CARRIER_AUDIT_V106.json": { + "path": "ION/05_context/current/CODEX_EXTENSION_CARRIER_AUDIT_V106.json", + "sha256": "d6e47a06b9555771dde84b33f36d6c2f88e533b0b7aa55149f49193a7afb1106", + "size": 1781 + }, + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_AUTHORITY_BUNDLE_START_HERE.json": { + "path": "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_AUTHORITY_BUNDLE_START_HERE.json", + "sha256": "bb9f99a114e300fe8183ff49508378763cf3adc11ab211b8e69349171fd2c0c4", + "size": 4840 + }, + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_ONBOARDING_SHIMS.json": { + "path": "ION/05_context/current/CONTAINMENT_RECEIPT_V123_ROOT_ONBOARDING_SHIMS.json", + "sha256": "dde4bc92393ff3c5b689c855abe1a7d3315bb3931983f8b1361b589b3340d512", + "size": 1664 + }, + "ION/05_context/current/CONTAINMENT_RECEIPT_V123_STALE_OPERATOR_VISIBLE_LAST_RUN.json": { + "path": "ION/05_context/current/CONTAINMENT_RECEIPT_V123_STALE_OPERATOR_VISIBLE_LAST_RUN.json", + "sha256": "83b5eb8669efbe49d29e4fbc7fb7be215b8bf8718fcf58100cbe4aa351600ab2", + "size": 1576 + }, + "ION/05_context/current/CONTEXT_LIFECYCLE_AUDIT_V102.json": { + "path": "ION/05_context/current/CONTEXT_LIFECYCLE_AUDIT_V102.json", + "sha256": "a9b9436633e467f468a0e667cd945b6096d2c57a708e1666effcf8923e97cea3", + "size": 20560 + }, + "ION/05_context/current/CONTEXT_METABOLISM_MANIFEST_V102.json": { + "path": "ION/05_context/current/CONTEXT_METABOLISM_MANIFEST_V102.json", + "sha256": "7c8e2087e4fe763327e1b5bbebc7393f9568bdd977350ec7c0e2ec10a2a79f3b", + "size": 963 + }, + "ION/05_context/current/CURSOR_AGENT_HANDOFF_20260428_WORKSPACE_AND_CARRIER_FOUNDATION.md": { + "path": "ION/05_context/current/CURSOR_AGENT_HANDOFF_20260428_WORKSPACE_AND_CARRIER_FOUNDATION.md", + "sha256": "bf7e61276a256b9394bd13019573ef0e91bde199434055be554ea93ea318f5a5", + "size": 6492 + }, + "ION/05_context/current/ION_CORE_SYSTEM_TELEMETRY_REQUIREMENTS_V105.json": { + "path": "ION/05_context/current/ION_CORE_SYSTEM_TELEMETRY_REQUIREMENTS_V105.json", + "sha256": "a2c6ac6611d380f3099c4f16d9b6f6e41c7e865f6dc7e683878cdc7d5f73b0b6", + "size": 2205 + }, + "ION/05_context/current/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AUDIT_V105.json": { + "path": "ION/05_context/current/ION_DEEP_OPERATIONAL_CARTOGRAPHY_AUDIT_V105.json", + "sha256": "97fc98543667cccc040c641a344a30e559d3ef97d0c9cef27d47c69cf23b40da", + "size": 16894 + }, + "ION/05_context/current/ION_LIVING_ENCYCLOPEDIA_MANIFEST_V100.json": { + "path": "ION/05_context/current/ION_LIVING_ENCYCLOPEDIA_MANIFEST_V100.json", + "sha256": "289ea7f1c464a17f8fe183e7a05c3baf0c0ba1b3cff91acbf822707a868f6c0c", + "size": 4458 + }, + "ION/05_context/current/ION_LONG_HORIZON_ORCHESTRATION_PLAN_V105.json": { + "path": "ION/05_context/current/ION_LONG_HORIZON_ORCHESTRATION_PLAN_V105.json", + "sha256": "9144c03e138dedd078b5d2e6dec2379a7424716d6494a8916afcb3a6f6ef865c", + "size": 3840 + }, + "ION/05_context/current/ION_MASTER_OPERATIONAL_ROADMAP_V104.json": { + "path": "ION/05_context/current/ION_MASTER_OPERATIONAL_ROADMAP_V104.json", + "sha256": "b54bc39a7e082418332f7dd923fff22a551868b06d2105f8831873eb623a5e3c", + "size": 3921 + }, + "ION/05_context/current/ION_MASTER_RECOVERY_ROADMAP_V98.json": { + "path": "ION/05_context/current/ION_MASTER_RECOVERY_ROADMAP_V98.json", + "sha256": "1891b74606fe11392bf897db76b255031c13bc98be16acd13c4cb6da9236552b", + "size": 4142 + }, + "ION/05_context/current/ION_OPEN_WORK_REGISTER_V104.json": { + "path": "ION/05_context/current/ION_OPEN_WORK_REGISTER_V104.json", + "sha256": "cfef7f1a290c3442993396359e41dafa52df2af826c2762f128367e13813f9c0", + "size": 2581 + }, + "ION/05_context/current/ION_OPERATIONAL_TRUTH_AUDIT_V104.json": { + "path": "ION/05_context/current/ION_OPERATIONAL_TRUTH_AUDIT_V104.json", + "sha256": "510dc955e6a328ec2b4f948f280c36727fae5d0ab6f984288415032753447e7a", + "size": 4890 + }, + "ION/05_context/current/ION_RUNTIME_SEPARATION_PLAN_V99.json": { + "path": "ION/05_context/current/ION_RUNTIME_SEPARATION_PLAN_V99.json", + "sha256": "3fdb4261ccb2e4b6d6f64c8fe56453b80725c18fb89a7c62e5ee4d7c13647d4f", + "size": 2187 + }, + "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V84.json": { + "path": "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V84.json", + "sha256": "760f03d58216074086fdca6f87defe09e707b98bf372b3e56babc33dd1c15d50", + "size": 2859 + }, + "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V85.json": { + "path": "ION/05_context/current/LAST_CARRIER_CONTINUE_RESULT_V85.json", + "sha256": "37fdf79ac4501b85a9a492403a30a64d15287ac8419fe47f718a841b243cf152", + "size": 3191 + }, + "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V84.json": { + "path": "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V84.json", + "sha256": "de992dc77ead03758b737b7ec12fb27afc83d387a39c923e27e197b96d512062", + "size": 450 + }, + "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V85.json": { + "path": "ION/05_context/current/LAST_CARRIER_WORKFLOW_AUDIT_V85.json", + "sha256": "99a0d393ffe767157ea641dad77b831e67673555882d5f69556ba054515751dc", + "size": 658 + }, + "ION/05_context/current/LAST_KERNEL_ONBOARD_RAW.json": { + "path": "ION/05_context/current/LAST_KERNEL_ONBOARD_RAW.json", + "sha256": "e642a4b86980f0580e701f4140aa76bc01c44bd86ada4bfec4b8392a2709f1dd", + "size": 6523 + }, + "ION/05_context/current/LAST_KERNEL_TRACE.txt": { + "path": "ION/05_context/current/LAST_KERNEL_TRACE.txt", + "sha256": "2defb0ac8e1b6f60dbcec6be4b9a98c9627a8f73347a81801ce671e98190a6f7", + "size": 2551 + }, + "ION/05_context/current/LAST_SUBAGENT_SPAWN_RUN.txt": { + "path": "ION/05_context/current/LAST_SUBAGENT_SPAWN_RUN.txt", + "sha256": "ac8b8ac2fd339a48c8e0977cca1f1f1728db34b68e096f7438c4f7dc5d26e7cd", + "size": 601 + }, + "ION/05_context/current/LAST_TOOL_CHAIN.txt": { + "path": "ION/05_context/current/LAST_TOOL_CHAIN.txt", + "sha256": "4439ceb1e649e736936548c8f4fd663cb73586be7c02a70fbd8d54c997f54eb5", + "size": 6385 + }, + "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_COMPACT_RUNTIME_V106.json": { + "path": "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_COMPACT_RUNTIME_V106.json", + "sha256": "8743836ab8f0e11f54d773f22a033ff17e59e5156c53264e47edd7873b10379d", + "size": 6944 + }, + "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_V105_ZIP_ROOT_AUDIT_V106.json": { + "path": "ION/05_context/current/LIFECYCLE_PACKAGE_MANIFEST_V105_ZIP_ROOT_AUDIT_V106.json", + "sha256": "618fd33f5153288ca882f5bc4601980cbdea3c82a7ac5b5cea8202e944dbe379", + "size": 6323 + }, + "ION/05_context/current/OPERATOR_MECHANICAL_REPORT_20260427.md": { + "path": "ION/05_context/current/OPERATOR_MECHANICAL_REPORT_20260427.md", + "sha256": "e71da2e285826ed1dea4c3a9b5be9d0fe245fc02a377d2a14af6ba1e7ceaffd2", + "size": 2688 + }, + "ION/05_context/current/POST_PATCH_MANIFEST_V124.json": { + "path": "ION/05_context/current/POST_PATCH_MANIFEST_V124.json", + "sha256": "059751f55ab2992b33990f4d03880e80197c84a42649fc75529c3b38f9ed52f1", + "size": 1701895 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V101.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V101.json", + "sha256": "0de41e742a107626e74774cb308d2e27b143363ccbd006f4502f197471a7c418", + "size": 747 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V104.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V104.json", + "sha256": "a9bf7fcfbc0c5714772195d079d2c3b189ee94337874ea1a8b7db2eb8763ebb7", + "size": 888 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V105.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V105.json", + "sha256": "5d1ee910575219fcfc1b2f5b0c3657e6a24581504e4b0eff38aea83cbe2614cc", + "size": 1399 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V84.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V84.json", + "sha256": "8b6e2e03a905fe68098a8407dddca651f058a6ad2e109a63836bf8540ebc032c", + "size": 1527 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V85.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V85.json", + "sha256": "9c2690d46c10a956447e0368b29d68e1f77bad3a11b5d0dbb9ccd4ab682e8a11", + "size": 1274 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V90.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V90.json", + "sha256": "beac7ea20c86d7b2533f447c825fa80dd4dd91b1cb3221c46fac316e41d08319", + "size": 688 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V91.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V91.json", + "sha256": "ad092823f07f4adac71c98447ae311f18b553874a67fac34a40f9740a62c0568", + "size": 616 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V92.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V92.json", + "sha256": "4e4f391798db474f5f293a30ba8bfc5685e1b702af3e74d849efa80b47646b7d", + "size": 705 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V93.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V93.json", + "sha256": "01c7f1e643e1e611ccc0f3ab0b864fdda39c0426b0ef664ce020a38c701d6221", + "size": 338 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V94.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V94.json", + "sha256": "481d61a7f35e4f42ddb2654ee5c7537c7b3f9117fdef6682cd207b0efc3011d1", + "size": 706 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V95.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V95.json", + "sha256": "2d6e08e236b97e215420e35325b0e33257b3a6d1ef21bc9141d2337b5978ece6", + "size": 206 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V96.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V96.json", + "sha256": "a10d90f8a90700d8b73b4d94f46e08670b7be1756722ca2d60881e85542c1e16", + "size": 1730 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V97.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V97.json", + "sha256": "97cd7d62dbfb88141bb4d2d6fcbebd5268fb008a6f1e02c63ce17312bbc74b9b", + "size": 1160 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V98.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V98.json", + "sha256": "5463ed8d83604387e7fbd1ff02811c463a88a4b97cec6c25a708cea25f728d17", + "size": 943 + }, + "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V99.json": { + "path": "ION/05_context/current/PRODUCTIZED_RUNTIME_MANIFEST_V99.json", + "sha256": "3a1b20a7aec2d6b368b49a5ee618bd033a75a2dc73e0abb3e2c9184114a19a4f", + "size": 1266 + }, + "ION/05_context/current/STEWARD_INTEGRATION_RECEIPT_20260427.txt": { + "path": "ION/05_context/current/STEWARD_INTEGRATION_RECEIPT_20260427.txt", + "sha256": "c7d1441204feedb41241bef81766a776ebc25c51bc6f7306848573d532cddf2a", + "size": 1195 + }, + "ION/05_context/current/TASK_RUN_CORRECTNESS_AUDIT_20260427.md": { + "path": "ION/05_context/current/TASK_RUN_CORRECTNESS_AUDIT_20260427.md", + "sha256": "be70d722a1011fce9b9b4c9263ddb2d96cbeb9f934afae98cd3b1f3d45bb467f", + "size": 1678 + }, + "ION/05_context/current/TEMPORAL_CONTEXT_ENFORCEMENT_AUDIT_V103.json": { + "path": "ION/05_context/current/TEMPORAL_CONTEXT_ENFORCEMENT_AUDIT_V103.json", + "sha256": "13d7fcf1bc817e655068a839537c19ab45423e60e536a0c0b32e074ed223a285", + "size": 5715 + }, + "ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json": { + "path": "ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "sha256": "ad43233a3c169cc3ad4babb2e903e0eb927701fc79cc57eccafc8d8dddf272ce", + "size": 2341220 + }, + "ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json": { + "path": "ION/05_context/current/V108_V72_MCP_DONOR_RECONCILIATION_AUDIT.json", + "sha256": "578e3e4b3b44fa0c4f865f3ce58d4c28778dec47606f0ab5e732806181cc3991", + "size": 1824 + }, + "ION/05_context/current/_tmp_kernel.txt": { + "path": "ION/05_context/current/_tmp_kernel.txt", + "sha256": "279338adc19f0a0c4bd0a4aed65a36de19fad60b0476145a1c4f91edc8b9a55e", + "size": 2578 + }, + "ION/05_context/current/agent_context_systems/AGENT_CONTEXT_SYSTEMS_INDEX.md": { + "path": "ION/05_context/current/agent_context_systems/AGENT_CONTEXT_SYSTEMS_INDEX.md", + "sha256": "392cfa8eea6444d0a3f1dd36428c5905dadb32a4b75b76dcd5da3895fa9021ad", + "size": 3723 + }, + "ION/05_context/current/agent_context_systems/ATLAS.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/ATLAS.context_system.md", + "sha256": "e630076f6c4f81f146cf4a438069c8990e29cdc3a54c9cd31f96a5a740fdce3a", + "size": 1552 + }, + "ION/05_context/current/agent_context_systems/CANON_LIBRARIAN.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/CANON_LIBRARIAN.context_system.md", + "sha256": "bedab2a185ad8dc472ba3c8bb6a82fd36b766f144d452a6bd973fd9e0c546bd2", + "size": 1850 + }, + "ION/05_context/current/agent_context_systems/CONTEXT_CARTOGRAPHER.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/CONTEXT_CARTOGRAPHER.context_system.md", + "sha256": "91257221da62f9cd1ad57b8dbd64b08f786902d32b5afe650c650b326f13b4f9", + "size": 1937 + }, + "ION/05_context/current/agent_context_systems/IONOLOGIST.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/IONOLOGIST.context_system.md", + "sha256": "c68490fecdd69a5bbc0ba85189b6155991a8f86f7b555e231d88e1cd97f9db67", + "size": 1677 + }, + "ION/05_context/current/agent_context_systems/LEAD_DEV_ACTIVE_OPERATING_CONTEXT_V105.md": { + "path": "ION/05_context/current/agent_context_systems/LEAD_DEV_ACTIVE_OPERATING_CONTEXT_V105.md", + "sha256": "3dcbd1f7f1c81c30a9d02f66deffdc5d0c9466df4347946030a3a1cf6721cd4c", + "size": 1098 + }, + "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_CONTROL_SURFACE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_CONTROL_SURFACE.context_system.md", + "sha256": "264254f512885b64e1fe65dbbc79ee6790fdb7dd1abf84868d4d49d8a0f40373", + "size": 4512 + }, + "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_METABOLISM_SURFACE_V102.md": { + "path": "ION/05_context/current/agent_context_systems/LEAD_DEV_CONTEXT_METABOLISM_SURFACE_V102.md", + "sha256": "e835f1f2e119f2b5d82cab25274197f5691ff20686afa181c1d5a9aa898741b4", + "size": 1156 + }, + "ION/05_context/current/agent_context_systems/MASON.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/MASON.context_system.md", + "sha256": "2ecce43cf5f758b5d937b85df2782aa6d381867c5d16cd748b8bf78641423b8a", + "size": 1734 + }, + "ION/05_context/current/agent_context_systems/NEMESIS.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/NEMESIS.context_system.md", + "sha256": "685127814d47c9312b944de43c33a4f0e8d0301ca4e19be03a7a4e6b2d041382", + "size": 1711 + }, + "ION/05_context/current/agent_context_systems/PERSONA_INTERFACE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/PERSONA_INTERFACE.context_system.md", + "sha256": "3b2d27f3e2a75d0f8df6009ba1406279a99a09633c8914f3f6170184a0dccbe4", + "size": 1750 + }, + "ION/05_context/current/agent_context_systems/RELAY.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/RELAY.context_system.md", + "sha256": "3b5d2a6c17af3f1c0ffffedf30dbe4d424aea23d2c315331b3146417976f00ea", + "size": 1711 + }, + "ION/05_context/current/agent_context_systems/RUNTIME_CARTOGRAPHER.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/RUNTIME_CARTOGRAPHER.context_system.md", + "sha256": "6412d43ee1d032b3c424a5a43f5854717d6c06dec4d7773ab5fa773bc6eb3613", + "size": 1938 + }, + "ION/05_context/current/agent_context_systems/SCRIBE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/SCRIBE.context_system.md", + "sha256": "6bad3d92b88feecfdef4622ed777390d77b2b04f3e558a738bbc5995f8bceea1", + "size": 1610 + }, + "ION/05_context/current/agent_context_systems/STEWARD.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/STEWARD.context_system.md", + "sha256": "29f4f7d4d5e0aa895a74500e651cae04b3f0b8eb8d09726a7f6d546b0de6e310", + "size": 1946 + }, + "ION/05_context/current/agent_context_systems/TEMPLATE_CURATOR.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/TEMPLATE_CURATOR.context_system.md", + "sha256": "0fa56e89e12dd09cae9344ac57cf721ad2fbf7cc3c373eec4fb15ec2bdfba548", + "size": 1903 + }, + "ION/05_context/current/agent_context_systems/THOTH.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/THOTH.context_system.md", + "sha256": "db39f111ce6b3fcdccfa70c4b560bcc1052a9a56df4737abdce4d243946b4dfa", + "size": 1609 + }, + "ION/05_context/current/agent_context_systems/VESTIGE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/VESTIGE.context_system.md", + "sha256": "c3e7dabfe1ac37c2168bb788b0ed9b86db80e0ec3c6653f22316bee4c9177bf7", + "size": 1703 + }, + "ION/05_context/current/agent_context_systems/VICE.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/VICE.context_system.md", + "sha256": "9a797aee9f6cb195b1f459d6c33bbcaafbe6ac6292bd4cba63ac51375a532363", + "size": 1696 + }, + "ION/05_context/current/agent_context_systems/VIZIER.context_system.md": { + "path": "ION/05_context/current/agent_context_systems/VIZIER.context_system.md", + "sha256": "8593359184dce2cdd6f73a6b08e31e3549af4d8010610e7bf21231da0a80fa0e", + "size": 1702 + }, + "ION/05_context/current/backups/carrier_runtime_foundation_merge_timestamp.txt": { + "path": "ION/05_context/current/backups/carrier_runtime_foundation_merge_timestamp.txt", + "sha256": "7a73468fe9dc60c416a6472af04280945c9495485bad16845e8806e87b0e853e", + "size": 17 + }, + "ION/05_context/current/backups/pre_carrier_runtime_foundation_git_status.txt": { + "path": "ION/05_context/current/backups/pre_carrier_runtime_foundation_git_status.txt", + "sha256": "8a3cc496223ee5ef18640db1efe5722ad547fb61d9dcb070398ce4c5149c3ba2", + "size": 65338 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213423Z0000_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213423Z0000_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json", + "sha256": "b58301d961f2e30296acacf87262e2477e18af744364df33aca62372aa76705f", + "size": 6144 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213935Z0000_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_step_g.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T213935Z0000_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_step_g.json", + "sha256": "92d9da5c18617d1a4bd66dc457b0c659a048e5701d8e7f301d4167e336aa0b17", + "size": 7182 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T214342Z0000_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_queue_run.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T214342Z0000_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_queue_run.json", + "sha256": "b5a8cc098d87096aab07a504067dbed728f9a409fc4792c7640406ca466eb78f", + "size": 6649 + }, + "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T220209Z0000_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the_42_to.json": { + "path": "ION/05_context/current/chatgpt_connector/agent_invocations/2026-05-04T220209Z0000_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the_42_to.json", + "sha256": "76d4d371b814da7d17f7c995584c6667097ffea218a53927827c20258feafc7f", + "size": 6725 + }, + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T190847Z0000_full_carrier_visibility_smoke_20260504_1838_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T190847Z0000_full_carrier_visibility_smoke_20260504_1838_md.json", + "sha256": "580bf33a500dd6f64ff6e04ac6f95713853a8ce5ac4733af2c4722f7dd98f723", + "size": 515 + }, + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T200552Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T200552Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json", + "sha256": "54111bf753f059c49addf65cb1d0e81ca5929d70a0101a391dd81b4ab96ba2dd", + "size": 648 + }, + "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T202351Z0000_codex_cli_30_tool_visibility_smoke_20260504t202351z_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_receipts/2026-05-04T202351Z0000_codex_cli_30_tool_visibility_smoke_20260504t202351z_md.json", + "sha256": "ab87d0d7e204df2c431a0c05d63f46fb20c17eff5e03864c8f9078c3899a8438", + "size": 524 + }, + "ION/05_context/current/chatgpt_connector/artifact_uploads/chunks/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md_00000000.chunk": { + "path": "ION/05_context/current/chatgpt_connector/artifact_uploads/chunks/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md_00000000.chunk", + "sha256": "746e5bab84bcda93f482b6f584c3e96cfb91df985cde53ab950606ba968041c9", + "size": 117 + }, + "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T195956Z0000_chatgpt_browser_artifact_upload_smoke_20260504_md.json", + "sha256": "ee848b95ebedf24844a584c1eec68ce30977b8a4f849951f208ee00c5ce37a97", + "size": 1170 + }, + "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T211434Z0000_ion_large_work_packet_artifact_backed_dispatch_spec_20260504_md.json": { + "path": "ION/05_context/current/chatgpt_connector/artifact_uploads/upload_2026-05-04T211434Z0000_ion_large_work_packet_artifact_backed_dispatch_spec_20260504_md.json", + "sha256": "5babeefacaf3b82f1291aa970989cddc38376abf9ff4222f8e04e99e46ba3946", + "size": 751 + }, + "ION/05_context/current/chatgpt_connector/artifacts/CHATGPT_BROWSER_ARTIFACT_UPLOAD_SMOKE_20260504.md": { + "path": "ION/05_context/current/chatgpt_connector/artifacts/CHATGPT_BROWSER_ARTIFACT_UPLOAD_SMOKE_20260504.md", + "sha256": "746e5bab84bcda93f482b6f584c3e96cfb91df985cde53ab950606ba968041c9", + "size": 117 + }, + "ION/05_context/current/chatgpt_connector/artifacts/codex_cli_30_tool_visibility_smoke_20260504T202351Z.md": { + "path": "ION/05_context/current/chatgpt_connector/artifacts/codex_cli_30_tool_visibility_smoke_20260504T202351Z.md", + "sha256": "46e1424f1d74f0fda210233faf1c31056b2987533e6ea5dfef9a048a015fb132", + "size": 233 + }, + "ION/05_context/current/chatgpt_connector/artifacts/full_carrier_visibility_smoke_20260504_1838.md": { + "path": "ION/05_context/current/chatgpt_connector/artifacts/full_carrier_visibility_smoke_20260504_1838.md", + "sha256": "365f7e18378f6b89ad18d79f0b642f1b465376d89771f90686d2dc1b156bf69d", + "size": 61 + }, + "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195739Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195739Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json", + "sha256": "d210b797459a8e123254331263e641bec1b1e323be1645c4202e141b1384e38d", + "size": 471 + }, + "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195901Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_message_acks/2026-05-04T195901Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json", + "sha256": "166f750201918f1bdc7660e1ef3bc0c05a35c38b7b8f2e1dccdc3f0a4756f922", + "size": 475 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T190847Z0000_carmsg_2026_05_04t190847z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T190847Z0000_carmsg_2026_05_04t190847z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "sha256": "68e0f2ab12f8ed86a42949872f4cd729c9b8ebe00cddd6325ee9392db7a1cebd", + "size": 977 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T194616Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T194616Z0000_carmsg_2026_05_04t194616z0000_chatgpt_browser_to_codex_cli.json", + "sha256": "19bc04b2f5b64773a2d7aaac2cd333a16d7348aaa60edb2a162b379cf6429eab", + "size": 1110 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T195851Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T195851Z0000_carmsg_2026_05_04t195851z0000_chatgpt_browser_to_chatgpt_browser.json", + "sha256": "0ebb786756c0ee38e4affc8ef7e91bcf173086c88bc044e634769f45ac665ad6", + "size": 1001 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T202351Z0000_carmsg_2026_05_04t202351z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T202351Z0000_carmsg_2026_05_04t202351z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "sha256": "8765784d9bb1b6f808b1d775bf663cf943c2bd88ddcd40689570ed68d4d337ec", + "size": 1227 + }, + "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T204207Z0000_carmsg_2026_05_04t204207z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json": { + "path": "ION/05_context/current/chatgpt_connector/carrier_messages/2026-05-04T204207Z0000_carmsg_2026_05_04t204207z0000_codex_cli_carrier_to_chatgpt_browser_carrier.json", + "sha256": "0c8f4c9457bca31f7b24f47f2c23261d79c6a96bf5efdaa08272a43acb3bb5fc", + "size": 1324 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/context_receipt.json", + "sha256": "c618c567dcd2ddd29e1a0b033a266c175d7df8ce084e6c719b0886684254050a", + "size": 1629 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/prompt.md", + "sha256": "9bea28df5583d4bd5f8d47d703e2aa094fbb282cc13930b5fd3aae939b043551", + "size": 3633 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T205459Z0000_codex_req_2026_05_04t203755z0000_build_the_next_ion_automation_layer_so_chatgpt_/run.json", + "sha256": "4a2b8b598b44512dfac00e05ddd3b6747fdb1120da8cb84a69ab49a0e1b60730", + "size": 2514 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/context_receipt.json", + "sha256": "7d8900c1b0770eea233caf7c6f0c077853eb3a04b8291b6e6449688f9eb0335c", + "size": 1629 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/latest_return.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/latest_return.md", + "sha256": "318047eae5b2b3aa97e6f422e16446cedd87c9efd9e30ea49ef111d577b1f027", + "size": 6905 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/prompt.md", + "sha256": "6dec107c1f05150f78c67fbe9144b9f07b97595b5ecc26a5aaa33010f5e6c585", + "size": 3487 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/run.json", + "sha256": "e872ab18dd1f80a0fc8418f48481d0ad907d6df335203de05f00bae01f13070a", + "size": 3914 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stderr.log", + "sha256": "b8a2131c5a5326df7c62a4a3fc79bdf25d0bd6cb92f9f677a82f6be840b9faff", + "size": 1095022 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/stdout.log", + "sha256": "6dbca65a6a511f0e3b86b59be08cc9dcab280126a53cd9511488502caa5e3e5c", + "size": 6906 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stderr.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T213633Z0000_codex_req_2026_05_04t211836z0000_build_the_next_layer_multi_agent_codex_backed_i/worker_stdout.log", + "sha256": "a52dff17641b4d862ec9a50d4cde2ac7c20e0bae6da278b1d133b012e5044ae2", + "size": 5346 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/context_receipt.json", + "sha256": "8c6dab269c2d0efa68849b90aa58cd11797abfa7518e09d6fe746d54a8d84a98", + "size": 2886 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/latest_return.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/latest_return.md", + "sha256": "41c17520e78712a4420133de34eaf8c26022b2ac1a1360b93171460911b9cdcf", + "size": 7449 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/prompt.md", + "sha256": "7b79d0a15f784bd00e571cdb0d3de1402bbe3b6eb4f23cc7fed2b820610299a0", + "size": 3380 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/run.json", + "sha256": "c46325dfe5b9be2f11cba6a2a495abdd62c3cc413c4a537dadbac00dd47948ba", + "size": 4356 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stderr.log", + "sha256": "18e3a1d83c581d50ed4c57eb17a301ce8fd915364bfe09de850a771a83359c35", + "size": 513029 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/stdout.log", + "sha256": "81ff257bfdf3046a696f6402a2e076c909fcf8f5feb62e483d854b07b2b60e0b", + "size": 7450 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stderr.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T214406Z0000_codex_req_agent_2026_05_04t214342z0000_nemesis_audit_the_newly_accepted_ion_agen/worker_stdout.log", + "sha256": "f24ea56ac6a1baf872e7d6490fd9607362ff90efaa5b7bfdb82171b4bb151d5b", + "size": 6194 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/context_receipt.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/context_receipt.json", + "sha256": "648adbfdda6b7561fdec5b5a5c6b8cae36759da98e91744cbf6005dc4ffb4152", + "size": 2996 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/latest_return.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/latest_return.md", + "sha256": "6ba9a780122d487f135bbb8ebed807ce86648669ab095a7ac06fe8ae541a7056", + "size": 7936 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/prompt.md": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/prompt.md", + "sha256": "10ee04c7144e640ded8817015fb121a5c8676da8ccb8f9c988248cdf260e86ee", + "size": 3397 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/run.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/run.json", + "sha256": "91f3a6212577f9afeadbceeb1396ac1b7777374877cf0b62239d5615c92f88f6", + "size": 4356 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stderr.log", + "sha256": "e76edc0db749948ff32808f5751ff71b620aebcbf9dcfb2ac24fe3543e76b58f", + "size": 563129 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/stdout.log", + "sha256": "fd831504ac13f689d1865b8711c01442d0c90d869450be8d0228e276a95f077a", + "size": 7937 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stderr.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stderr.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stdout.log": { + "path": "ION/05_context/current/chatgpt_connector/codex_queue_runs/codex_run_2026-05-04T220220Z0000_codex_req_agent_2026_05_04t220209z0000_vizier_analyze_the_next_architecture_slic/worker_stdout.log", + "sha256": "0b8351e9cc1ba82c0a7177b3381dba25361f7fee833f86786dd9480b2e90db5e", + "size": 6214 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T023146Z0000_v120_live_http_connector_smoke_codex_local_visibility_and_proof_return.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T023146Z0000_v120_live_http_connector_smoke_codex_local_visibility_and_proof_return.json", + "sha256": "349b0e07bd1e4fb4e70931c997535750e3929be7378f6b13b0be5ec91de7ad5c", + "size": 1170 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T073641Z0000_public_connector_smoke_test_bounded_work_request.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T073641Z0000_public_connector_smoke_test_bounded_work_request.json", + "sha256": "5d8ead0a0e2bf84ab294e6a4bf339be2fefbd9db4bb12135e392d5fb1b34127e", + "size": 1002 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T174407Z0000_create_a_markdown_planning_artifact_for_full_ion_carrier_parity_over_mcp_seed_it.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T174407Z0000_create_a_markdown_planning_artifact_for_full_ion_carrier_parity_over_mcp_seed_it.json", + "sha256": "180e724ae1adde687a109b71d043ee027cf00c9bb71a37f7276aba4d28f9a99d", + "size": 2230 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T175712Z0000_inspect_existing_ion_carrier_comms_queue_agent_message_operator_message_relay_st.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T175712Z0000_inspect_existing_ion_carrier_comms_queue_agent_message_operator_message_relay_st.json", + "sha256": "000a7cb9d2813d9ae5167199603f65606669b3cc29523c9eeaaa8f6a3f4182f4", + "size": 2174 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T180446Z0000_evolve_the_chatgpt_browser_mcp_connector_toward_full_ion_carrier_parity_focusing.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T180446Z0000_evolve_the_chatgpt_browser_mcp_connector_toward_full_ion_carrier_parity_focusing.json", + "sha256": "2477b5d9117f550b507354bee933c224387b04a2058c919281ccbaed9238711d", + "size": 3038 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T183803Z0000_continue_full_carrier_mcp_parity_rollout_current_chatgpt_browser_connector_tool_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T183803Z0000_continue_full_carrier_mcp_parity_rollout_current_chatgpt_browser_connector_tool_.json", + "sha256": "c131eb39c97eb7d1062653bd889377d38501e9162173e28287bfe5e8e081e3bd", + "size": 2783 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T201043Z0000_push_chatgpt_browser_mcp_beyond_the_current_22_tool_artifact_comms_slice_toward_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T201043Z0000_push_chatgpt_browser_mcp_beyond_the_current_22_tool_artifact_comms_slice_toward_.json", + "sha256": "23807b25203e5ca7e000b54cc6335db70f47234b80323bb58732f845fb2d2713", + "size": 2812 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T203755Z0000_build_the_next_ion_automation_layer_so_chatgpt_browser_can_operate_the_local_ion.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T203755Z0000_build_the_next_ion_automation_layer_so_chatgpt_browser_can_operate_the_local_ion.json", + "sha256": "3fa238cd3a4f3cac53219e4ec638c28e82b2a5605fb28ef2327a865b6f53dcc3", + "size": 2970 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T211836Z0000_build_the_next_layer_multi_agent_codex_backed_ion_swarm_control_from_sev_gpt_bro.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T211836Z0000_build_the_next_layer_multi_agent_codex_backed_ion_swarm_control_from_sev_gpt_bro.json", + "sha256": "21429cfca09290bb78cee18d55d045433d22349a256227c6c621c3d9036d46ea", + "size": 3249 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213423Z0000_agent_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213423Z0000_agent_mason_prepare_only_mcp_smoke_for_ion_agent_invocation_broker.json", + "sha256": "06b4608c7d952ebadabb8cf0d07f30941289df53125e0aa5e780303977f305ac", + "size": 4918 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213935Z0000_agent_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T213935Z0000_agent_steward_prepare_only_broker_regression_smoke_after_cancellation_and_swarm_.json", + "sha256": "bdb57ae91364755e75e19f4fd063c8b773109c354977ad9d40885ec3c56a0aaf", + "size": 5460 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T214342Z0000_agent_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_que.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T214342Z0000_agent_nemesis_audit_the_newly_accepted_ion_agent_invocation_broker_and_codex_que.json", + "sha256": "584b0c649f33c4d7c71378d0e6458a9380969d0868d7ff4e21512e3dda0c3803", + "size": 5868 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T215059Z0000_repair_codex_queue_runner_stale_active_run_reconciliation_current_evidence_ion_d.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T215059Z0000_repair_codex_queue_runner_stale_active_run_reconciliation_current_evidence_ion_d.json", + "sha256": "3bbec0ae83e4b884b7219b7745afb248c29e6ef05971731f32b9f62e33f02855", + "size": 2518 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T220209Z0000_agent_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T220209Z0000_agent_vizier_analyze_the_next_architecture_slice_for_ion_swarm_control_after_the.json", + "sha256": "4b28eb2132a3298c8f015525f71f8bb5b61e48f3a6011bfee1b5ac823383ddf7", + "size": 6087 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json", + "sha256": "9b2153956858b38ffafd82d901b90623b2e9cee4f782a64296addc407b815672", + "size": 1349 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T225611Z0000_design_the_github_data_plane_setup_for_ion_using_github_account_org_ion_operatio.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T225611Z0000_design_the_github_data_plane_setup_for_ion_using_github_account_org_ion_operatio.json", + "sha256": "2e6843e98464e49e6a4e729962d3f39d9132a3fb0791cfcc76d2f14f5bd054b9", + "size": 1827 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T235100Z0000_implement_the_next_read_only_github_data_plane_audit_slice_identified_by_prior_a.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T235100Z0000_implement_the_next_read_only_github_data_plane_audit_slice_identified_by_prior_a.json", + "sha256": "fb3b3338dbfb3ee27470e8d3d8b58d8227cb5d46a5f92c44bfab8fd74e64df9c", + "size": 1703 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json", + "sha256": "c9887d399568c27f327f5df9b6aab0075c7bc82b82a0990c4fdfac7cac06fbc0", + "size": 960 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "sha256": "b9d8d3ab1b67b21ff914d7ab15de91c82cc4309383551fd7ff2038b8feaacc32", + "size": 746 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "sha256": "1a424fe33eddd210002780f6af3626286463a099aad5477e57ea5fb1d754fb80", + "size": 746 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "ef72296fef4b91a6d8ed4d3049894c8c8d0b00b253175dfc55290ff04101d7c9", + "size": 1743 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "d92ff5fb8c74b43fab917436079288725fb0b5b615fb98ea61a9bcea1352c23b", + "size": 1743 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "9c95d6e28fd39ad3261066786c30e4e610598b8df3f13a1d50d3ae20c9d161f7", + "size": 1743 + }, + "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json": { + "path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "sha256": "9a85c265ec6246f967e8e4a7e96a82d13c66ca19724581302200ee6d685bde76", + "size": 1488 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T202947Z0000_use_sev_as_the_project_facing_callsign_for_the_chatgpt_browser_gpt_5_5_carrier_w.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T202947Z0000_use_sev_as_the_project_facing_callsign_for_the_chatgpt_browser_gpt_5_5_carrier_w.json", + "sha256": "0f32eef19046b664869b0b2d4a2c7c88238ab0f97f35468960c9af3bbe208189", + "size": 818 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210125Z0000_record_the_sev_ion_operating_relationship_braden_remains_the_human_sovereign_sou.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210125Z0000_record_the_sev_ion_operating_relationship_braden_remains_the_human_sovereign_sou.json", + "sha256": "8a7a8f6a4e8d1a5bc3e4e46e829cdec2422a2b33829af657f318ffe74a5f6df1", + "size": 1091 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210413Z0000_record_the_current_ion_dogfooding_model_gpt_5_5_pro_sev_is_best_used_as_a_high_q.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210413Z0000_record_the_current_ion_dogfooding_model_gpt_5_5_pro_sev_is_best_used_as_a_high_q.json", + "sha256": "3200c52e73b7ce64f4fe6beca1e650715e630a87f27f4d2c6de7e70485f33fdb", + "size": 1158 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210648Z0000_record_gpt_browser_sev_as_the_preferred_ion_dogfooding_workflow_sev_operates_fro.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T210648Z0000_record_gpt_browser_sev_as_the_preferred_ion_dogfooding_workflow_sev_operates_fro.json", + "sha256": "4ad22d6f2139f15462423a2f007fe92998121ca283d21f9069580ef474d768b8", + "size": 1417 + }, + "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T232134Z0000_use_neutral_ion_naming_for_github_ssh_identity_labels_and_local_ssh_key_names_pr.json": { + "path": "ION/05_context/current/chatgpt_connector/decisions/2026-05-04T232134Z0000_use_neutral_ion_naming_for_github_ssh_identity_labels_and_local_ssh_key_names_pr.json", + "sha256": "8a226ce70db94ef7e104e71e3884b9f66a54ec5090f0c9e757ac9f469518fe94", + "size": 636 + }, + "ION/05_context/current/chatgpt_connector/runtime/active_connector_url.txt": { + "path": "ION/05_context/current/chatgpt_connector/runtime/active_connector_url.txt", + "sha256": "2f21fb7616a54715ce5d41b8223810fb16ab988a057f581a1d72f929f32ca4d1", + "size": 64 + }, + "ION/05_context/current/chatgpt_connector/runtime/agent_invocation_broker_state.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/agent_invocation_broker_state.json", + "sha256": "0f4fa702e8f8df95c31aa4d87804269b7c64b6113404c0b0ac27894cab56d613", + "size": 767 + }, + "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.log": { + "path": "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.log", + "sha256": "bdb55b52e8db4b94d9a06199e0917e0613755010ec1823f471683cb8e647e925", + "size": 4845 + }, + "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.pid": { + "path": "ION/05_context/current/chatgpt_connector/runtime/cloudflare_tunnel.pid", + "sha256": "c5c0f1f7cfb6e37ffd69d552c67a8545c2213a9979df980c7371965480afe2a8", + "size": 6 + }, + "ION/05_context/current/chatgpt_connector/runtime/cloudflared_version.txt": { + "path": "ION/05_context/current/chatgpt_connector/runtime/cloudflared_version.txt", + "sha256": "ab8a11d67dcb012a580d095978c218a4ead1ea3c46a5f41e791ce30f2c2f985a", + "size": 58 + }, + "ION/05_context/current/chatgpt_connector/runtime/codex_queue_runner_state.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/codex_queue_runner_state.json", + "sha256": "43dbbf14ab8aba887123f3aa5ccf931e6cc599c73d2de4dba70f59eb9b769a58", + "size": 432 + }, + "ION/05_context/current/chatgpt_connector/runtime/http_preview.log": { + "path": "ION/05_context/current/chatgpt_connector/runtime/http_preview.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatgpt_connector/runtime/http_preview.pid": { + "path": "ION/05_context/current/chatgpt_connector/runtime/http_preview.pid", + "sha256": "403984eac16a5617f33d8634921b3791b41da105ba973ded2d6fddd0321c5587", + "size": 6 + }, + "ION/05_context/current/chatgpt_connector/runtime/http_preview_health.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/http_preview_health.json", + "sha256": "194e45e8d6875928f2133469a49bc706387b77687416adba70fc08a12f634711", + "size": 1168 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list.json", + "sha256": "f40de6a278c44941fecbb73525fd5361f5a932429246804fecdd0d6edd567825", + "size": 5238 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_30_tool_visibility.json", + "sha256": "e1a222bde029da6918a85cd02ba52683d79c46e4676501f23f66f224c94f7d6e", + "size": 22800 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_after_restart.json", + "sha256": "cec4eb9ce00db4451b505cc14fec81ad272c6a5c55c6cff487829f753c4285d0", + "size": 8833 + }, + "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_final.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/mcp_tools_list_final.json", + "sha256": "2fc592109c2abca772ee068e7e728c56b75bfeb1c039aff640db46b80c55966f", + "size": 8833 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_carrier_message_sev_callsign_ack.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_carrier_message_sev_callsign_ack.json", + "sha256": "fa0223a59bbd45880758411ceb14382c9329a066f00a9fd354424d2b5831cdec", + "size": 1621 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue.json", + "sha256": "90b3c74ac8416545fb9d63c8804719a884cc7629c6f0c3f67ece15bef24c6c4c", + "size": 4484 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_after_return.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_after_return.json", + "sha256": "56f6985ab0c8daa912b8329acd17f3593139c943b8d1f97790072fff69cbcfab", + "size": 4894 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_latest_check.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_queue_latest_check.json", + "sha256": "38709d30930421142d394c5715ed78951f4aed0fe795875174f6d42009c04dfd", + "size": 36594 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_request.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_codex_work_request.json", + "sha256": "57dd4d71d0a0ca154d94109073e635fab897f32fdc80040a90465d766cc0702c", + "size": 1393 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_ion_status_tool_call.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_ion_status_tool_call.json", + "sha256": "e3a5d372341d0181c41366bc67820ba464ecb0e43458b2fd7d7406b775fae989", + "size": 11887 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list.json", + "sha256": "f40de6a278c44941fecbb73525fd5361f5a932429246804fecdd0d6edd567825", + "size": 5238 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_30_tool_visibility.json", + "sha256": "62dd5003b818de2fcdf8bf0005107c5a81d9093f34fa70dc544d446293373611", + "size": 22838 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_33_codex_queue_runner.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_33_codex_queue_runner.json", + "sha256": "49498ee4051b44258bd583f827454eabf601d18ba87e71c6d983c846d1e3a0e3", + "size": 24711 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_42_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_42_agent_invocation_broker.json", + "sha256": "24876b8705058f5330b053f24f72339c2d0fc5470407a92bf06242b7760dcd91", + "size": 28731 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_after_restart.json", + "sha256": "b20d2a2d318b0d59853542858b8c4946d951388f6ff315dbfedc1f945b86898e", + "size": 8834 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_final.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_mcp_tools_list_final.json", + "sha256": "ba477f918d0b3f74d79de83312c16095cfc5bc72bb05753f3a7d60700f912c3b", + "size": 8834 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_onboarding_packet_tool_call.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_onboarding_packet_tool_call.json", + "sha256": "79c3462941504a33b370d5eaee9577630d0dc967e2046bf06fd4190da430d536", + "size": 23260 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_poll_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_poll_after_restart.json", + "sha256": "d403fc1cfe63718884bf1cfbed37e47472555763a51584c932d0a0b4b5832c2e", + "size": 2958 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_30_tool_visibility.json", + "sha256": "1b3c6850fb4b2004a17e05400ce991a8913dc119345ca18b95da9deda413d22d", + "size": 1621 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_carrier_message_send_after_restart.json", + "sha256": "3dc064535e6282894a069f4840721cf8665b8d8f39731e503cb0de921808ad48", + "size": 1340 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_cockpit_sev_callsign.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_cockpit_sev_callsign.json", + "sha256": "06dac53c6f1941487662efcb88b5b2a57054d7f2c885ddf0ce4c4576c05d1455", + "size": 414989 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_put_text_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_put_text_after_restart.json", + "sha256": "7984488ba62cbb1198741a30775d08780296a851dab837f5d13de5d09283a1a9", + "size": 1354 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_read_sev_profile.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_file_read_sev_profile.json", + "sha256": "096fbaa36c7159a7ec81b7533d239617688b5eb6aa97f23acb8c41658c4aecfe", + "size": 6614 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_invoke_prepare_only.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_invoke_prepare_only.json", + "sha256": "7523b4a950b03e332dc72ed376bd2e10a8e3274187365c54618da2563ea59ad2", + "size": 17574 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_result_prepare_only.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_agent_result_prepare_only.json", + "sha256": "d4020ac429ee69ef43a83f53ff1c252ab48daca00ebe9361dadfc1a3ef1e29d7", + "size": 28313 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_autorun_status.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_autorun_status.json", + "sha256": "a8dfee72fa6e0c80e223cbd4dfe428fc76cc30ddc9b65e3896e3d588af920faf", + "size": 3050 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_process_once_prepare_only.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_codex_queue_process_once_prepare_only.json", + "sha256": "efa944bb473ece72f4ba48ef9585e3cc87f19865059df09930b7a57b7661d1fb", + "size": 11115 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_after_runner_projection_patch.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_after_runner_projection_patch.json", + "sha256": "87dc76e9946500f63aca3fd652d4e720cdf6a6581ded61008ac5bdd2d7160876", + "size": 4264 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_codex_queue_runner.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_daemon_status_codex_queue_runner.json", + "sha256": "5bc008ac21c9df18ba3836708280e830179d8dcb9ff57affcdea24654dea1263", + "size": 3024 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_put_text_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_put_text_30_tool_visibility.json", + "sha256": "667510430f49634a1bec0dfbffa609c2921e346ffa2b26e74d9ccdf883465b5b", + "size": 1688 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_read_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_read_30_tool_visibility.json", + "sha256": "8ef89015416c47d309d27869251ec06e4a4bfd5441e2a8b50b20130cdba8f3f2", + "size": 5780 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_search_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_file_search_30_tool_visibility.json", + "sha256": "88bef36e6f1fedeab393d3723b29e4bf063df8483a1e2bcac9cd426847a67d31", + "size": 2665 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_tool_manifest_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_ion_tool_manifest_30_tool_visibility.json", + "sha256": "7d091ec10a0665da44055ace9114aeef304c15fc80e33718fd04d6250b3ea1fa", + "size": 24882 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_smoke_onboarding_sev_callsign.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_smoke_onboarding_sev_callsign.json", + "sha256": "b0eb1ba914a1b8ba186ca6789037ceda3a91080525fdb1964cfad033c4f09cba", + "size": 30462 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_after_restart.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_after_restart.json", + "sha256": "e26ea782da439e41af693ecdfcd890ec4ce2a19bdc25dd58d0c529c717540e52", + "size": 2117 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_final.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_183803_final.json", + "sha256": "4eac803fd2abf3160431972bf978029bf4f6d6b0e50fce043e2ca7be9d51b9de", + "size": 2121 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_201043_30_tool_visibility.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_201043_30_tool_visibility.json", + "sha256": "4fa66e65af2ccc24a951cb707618118ae056ede56214809509ca691d0a8c1cc7", + "size": 2375 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_203755_codex_queue_runner.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_203755_codex_queue_runner.json", + "sha256": "eb35102f2d8490d9d7ab18d89e94ab5f33a5ff86b714af7050626a91c1063919", + "size": 2375 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_211836_agent_invocation_broker.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_submit_task_return_211836_agent_invocation_broker.json", + "sha256": "716c4d68f03620b142e02a0f33178c2098cfe0871bd649c4d8aeee1ec74a2180", + "size": 1007 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_task_return_submit.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_task_return_submit.json", + "sha256": "f42d31cd60227a540bcd8131e1ad6176d5dde594ce038021a2cd501e3daefd57", + "size": 2209 + }, + "ION/05_context/current/chatgpt_connector/runtime/public_write_without_confirmation.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/public_write_without_confirmation.json", + "sha256": "77aad1cd2179eea90981b39d03eb6fb4003161c91fd44d01d70dca410ac37ac8", + "size": 714 + }, + "ION/05_context/current/chatgpt_connector/runtime/v121_refresh.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/v121_refresh.json", + "sha256": "fb65e8aa6402d8361436ce02941a2a222c124edc4aec0a163eace1a2aa442821", + "size": 1365 + }, + "ION/05_context/current/chatgpt_connector/runtime/v122_refresh.json": { + "path": "ION/05_context/current/chatgpt_connector/runtime/v122_refresh.json", + "sha256": "3d620760e92d53c520d31a53afeff09d26a075b1ca1a0dbaad56e0f698994c17", + "size": 2491 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023146Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023146Z0000_task_return.json", + "sha256": "dc99ed32d9e95eaacf828d26cff603a8669d344b34b606f252fe448d8726e13d", + "size": 3182 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023221Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T023221Z0000_task_return.json", + "sha256": "ce502ba31db9ae2cc198503e6a26b4d7a615c35cc002825179997e9da456e847", + "size": 3008 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T073730Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T073730Z0000_task_return.json", + "sha256": "a30a62023b25b460a90493d2ed252e7a888bd5e59b2349bca94ab231afd941e5", + "size": 3116 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174553Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174553Z0000_task_return.json", + "sha256": "6ef0c2e8fe4861cf20496427e93e747c46a45bcfbd2c70de07981aa518cd968f", + "size": 2971 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174618Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174618Z0000_task_return.json", + "sha256": "dd56a78b4f9ecca1d4f888ddc4512219092140dc63cd1bc0967ad2b5e3b662a9", + "size": 2821 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174648Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174648Z0000_task_return.json", + "sha256": "1be30ca0da5e95df1049f1b32aa7132a54b73d0eed5e7044f3cb7459505cdb95", + "size": 4039 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174723Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T174723Z0000_task_return.json", + "sha256": "84ebd4a16539193bd190957faa8b6d0b2a5f1f23de455bd12c08e755a1928801", + "size": 3290 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return.json", + "sha256": "f1451b0702e9f21864f910c6531707ccbd4432c3203fd5a9d2e4b91fd4827dc1", + "size": 4796 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return_1.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T182825Z0000_task_return_1.json", + "sha256": "d8e995d5d6b1a000e11628f7f574ff46295f8ecbaf7bc9790380a27bc25ae20a", + "size": 4796 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T183625Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T183625Z0000_task_return.json", + "sha256": "d670204f4713496b17632d5bc826f045e3d32cacc916f18df6f43f0dd488017f", + "size": 3047 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T190955Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T190955Z0000_task_return.json", + "sha256": "a64e12ef12001074274f0a7e9779561d5b84e7724f168765d88a0e0cb1528a58", + "size": 5650 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T191128Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T191128Z0000_task_return.json", + "sha256": "e16b91c118bc552a9067f06739a4b365ef2cfda0427d780f9b84f915d353711c", + "size": 6075 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T192325Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T192325Z0000_task_return.json", + "sha256": "c2c989f038c63bc187213ae74d0aca42a606bd21c04129c3468d56f97cf07228", + "size": 2974 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T202613Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T202613Z0000_task_return.json", + "sha256": "2eeac691e2afbbeae34c6d6e84d944c7f838debf5c3b14b6797e4f2d8abc89a5", + "size": 5321 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T210025Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T210025Z0000_task_return.json", + "sha256": "82cfcd46331787580e84763151276eed10bc664a1008d7ae12b6ba60496ab00d", + "size": 5943 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T213558Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T213558Z0000_task_return.json", + "sha256": "7751c77fb8052656d0c2627966d9771974bce43002ca9cb14f28bfd8cb1a326b", + "size": 7041 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214127Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214127Z0000_task_return.json", + "sha256": "6c4a370ad73fe0ebbdd83b72cadbe38ead8e5723f9fbd863143440426b9c0a2e", + "size": 3653 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214229Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214229Z0000_task_return.json", + "sha256": "28dff7212fae7b28a7abaf677eb88783c552be96b755af5e7ac5d72b40f80a23", + "size": 3519 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214848Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T214848Z0000_task_return.json", + "sha256": "ea8ff84d866fcba243f03bfd5fcae75ab5144e263ca1612fc48a251de721a48d", + "size": 5109 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215640Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215640Z0000_task_return.json", + "sha256": "2aaf3ac986de36a111543271caf951fe444aaa9572c94037a6cfd73d4acee4b4", + "size": 5958 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215710Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215710Z0000_task_return.json", + "sha256": "d795d8719ddb6c7c78d3d98d3c41fafbcf7cfe92828d9c0b099b82a516111ecc", + "size": 4531 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215826Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T215826Z0000_task_return.json", + "sha256": "878b4987b4f50466601931595699003a6ff0b94973db839e1a5bc0938900c1ba", + "size": 4902 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220450Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220450Z0000_task_return.json", + "sha256": "81daf8ec1029e2552e622cdda5f3411376256659483946b3c574bcfaeccf6784", + "size": 5153 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220553Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T220553Z0000_task_return.json", + "sha256": "2c06de187ea974851fede705c7fabc964f8454cf579d9305fba681f4ec8c9e0f", + "size": 3110 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T230157Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T230157Z0000_task_return.json", + "sha256": "68c9970e4930887bc03ee7f73ae241e2f5cf477dbd4b3111b0e88dfd55d4da78", + "size": 4144 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T235644Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-04T235644Z0000_task_return.json", + "sha256": "8a56ef7925645659e57ebf855542f76a91ffe87e9bf74eb6b67ab390bda18941", + "size": 4008 + }, + "ION/05_context/current/chatgpt_connector/task_returns/2026-05-05T010310Z0000_task_return.json": { + "path": "ION/05_context/current/chatgpt_connector/task_returns/2026-05-05T010310Z0000_task_return.json", + "sha256": "91f098cbe618dd686357cbf6e0f4ead7897da9b0f22da2b38a3e4d816715fcbe", + "size": 4050 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_0001_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_0001_smoke.json", + "sha256": "44d0d3313c0bf19a87d63c3ca052bb6d32a1f2f607f74b52eb7e35fd0ebc8798", + "size": 1215 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_021500_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_021500_chatops_reentry_hardening.json", + "sha256": "314abc96d145b4e1515e01c57fa557871cd183e7c4117c1866af4d93c3c8c952", + "size": 1830 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "f653e79c63b9353a71f1582d40ea96507200cbe67cef531a1e5591c2a8db086a", + "size": 2085 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505_chatops_bridge_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505_chatops_bridge_smoke.json", + "sha256": "25fbf619d78fe25fee1b3c5b7369a9f742518b7d9bb396a8081636b3ee28cdab", + "size": 1137 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505t014904z_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505t014904z_smoke.json", + "sha256": "cd6987a4616d6003a859e7bb025eb37c358e66688b902599fb6bdd73dda3282d", + "size": 1266 + }, + "ION/05_context/current/chatops_bridge/actions/sev_20260505t015046z_codex_work.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_20260505t015046z_codex_work.json", + "sha256": "ce72a58b6f3e84690d11a31a2d423ca3db70d09c12ea3ca1623daf649bc2e749", + "size": 1376 + }, + "ION/05_context/current/chatops_bridge/actions/sev_yyyymmdd_hhmmss_short_slug.json": { + "path": "ION/05_context/current/chatops_bridge/actions/sev_yyyymmdd_hhmmss_short_slug.json", + "sha256": "2e8c7b29f8b019dfbce500514f6ae6076582f098e0a991e60164b4b6cf16590e", + "size": 1115 + }, + "ION/05_context/current/chatops_bridge/artifacts/smoke/sev_chatops_bridge_smoke.txt": { + "path": "ION/05_context/current/chatops_bridge/artifacts/smoke/sev_chatops_bridge_smoke.txt", + "sha256": "9d55329582206063937a67b79fc15ef0dbbd92c07f210d55ffb9190154d63183", + "size": 35 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t005355z_sev_20260505_chatops_bridge_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t005355z_sev_20260505_chatops_bridge_smoke.json", + "sha256": "c9731635c541357cbdc0313fe159656cc733e842ffd0eaeb21d3a7590c655859", + "size": 1792 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t014907z_sev_20260505t014904z_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t014907z_sev_20260505t014904z_smoke.json", + "sha256": "0c8105289f099a0ed038de48eb309202ced324e0f40a84be6c78c7c193242036", + "size": 1776 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t015047z_sev_20260505t015046z_codex_work.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t015047z_sev_20260505t015046z_codex_work.json", + "sha256": "28f22f2b0e9670efa92d2bb545852d255e6fda6648f015928285ab8a6e613a0a", + "size": 2421 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t020928z_sev_yyyymmdd_hhmmss_short_slug.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t020928z_sev_yyyymmdd_hhmmss_short_slug.json", + "sha256": "c49a8d9a64c3b34be1ac98ab79fe8a22b48fc310dc38fbf8c1400b3e01700908", + "size": 2291 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t021106z_sev_yyyymmdd_hhmmss_short_slug.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t021106z_sev_yyyymmdd_hhmmss_short_slug.json", + "sha256": "754ea98f66209622167055af6de4524b9f13489a4426ec00795128c45c8a5808", + "size": 2291 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022253z_sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022253z_sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "e613060fd197e3e5a5946449c1f63e5fd01cbbd08c0f6b682bdd1d63d1477a21", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022651z_sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022651z_sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "928b6784a1dee446c245f4f017abb5bbae6089109ee0602959d0a76e59d3837d", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022734z_sev_20260505_022020_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022734z_sev_20260505_022020_chatops_reentry_hardening.json", + "sha256": "87f3f5e745d645c6d117bbbf5d93af3b359a5a3272d67396514447eaa20fd2ea", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022944z_sev_20260505_021500_chatops_reentry_hardening.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t022944z_sev_20260505_021500_chatops_reentry_hardening.json", + "sha256": "8935c18b748f30c593a8a5b3526b77c9d38dd60f5ba5b545532abea420209c88", + "size": 2477 + }, + "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t030803z_sev_20260505_0001_smoke.json": { + "path": "ION/05_context/current/chatops_bridge/receipts/chatops_receipt_20260505t030803z_sev_20260505_0001_smoke.json", + "sha256": "9eb6815b868f61785e38efb34c5ee3c12a360866af84c031d5b21e5b101e673e", + "size": 1680 + }, + "ION/05_context/current/chatops_bridge/runtime/daemon.log": { + "path": "ION/05_context/current/chatops_bridge/runtime/daemon.log", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": 0 + }, + "ION/05_context/current/chatops_bridge/runtime/daemon.pid": { + "path": "ION/05_context/current/chatops_bridge/runtime/daemon.pid", + "sha256": "89d3ac92642c0a8503ef1384166a704a08b45c69a09983fa5e1386079abdbce1", + "size": 7 + }, + "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE.md": { + "path": "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE.md", + "sha256": "b858901bd527c257763f95b261d888f5c7a977144842fb801563a2e19dd64b14", + "size": 138 + }, + "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE_sev-20260505t014904z.md": { + "path": "ION/05_context/current/chatops_bridge/smoke/SEV_CHATOPS_SMOKE_sev-20260505t014904z.md", + "sha256": "54f411f7d7fdcfe5fbadffe83d87335f848c0ffcbdf6c4dc3653fe11e8de5914", + "size": 166 + }, + "ION/05_context/current/codex_cli/gpt55_lead_mount_prompt_v126.md": { + "path": "ION/05_context/current/codex_cli/gpt55_lead_mount_prompt_v126.md", + "sha256": "09661a00df4bd270378cd9703f79b30db9333eb95e3f4461c11e2c69738da5c1", + "size": 7488 + }, + "ION/05_context/current/codex_cli/latest_prompt.md": { + "path": "ION/05_context/current/codex_cli/latest_prompt.md", + "sha256": "faf4ad5c5853b2e5132e07d266b30d48fb8811228a9e5bd209351f35631c77fc", + "size": 2076 + }, + "ION/05_context/current/codex_cli/latest_return.md": { + "path": "ION/05_context/current/codex_cli/latest_return.md", + "sha256": "e98e2127684aef30ac961dd8e2439910c8b4d1b0632e63e1d244223f5acc1f0e", + "size": 4517 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "1d5bfe174bac491098a8e3a554794717bf070fdb5eae1f5fa5cca45fffec294d", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "403945efe1a9f5c222217c87bbc10020aafdd1a62c6c7d926256f2171c15c3b9", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "9ec021d11215267c791f93c23b37a1483d9208f51b7432b0e15df29048969aa6", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "c8a40496783dc1512fae3ad604c0f301f43b179578e2ce87ebfa203d9633b462", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "d17b93f3e9ca20462c99dfe6c9fb9ad48d2ff3ba2cd6a4cb195970dd78f81fd6", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "02909167b466fb7c54c6702f8a94b416822783953e4702b9771550531e258bda", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "9febab536e3de56bbc3a025a561d335b5e61ff2604d60ff6c398c380167cc715", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "8ffe207eb739c8acbe01496a2ade2e2d4b7eec2bc2a43d70db63ef5d6a25301a", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "92c1b809a0e07a00cb10e2ac8060beb9cf4f06ccb541bf167e9443ceef04c578", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "7740c6f1bace7d89e3d5cb6477a215dc23cef20afc75f7829055f2ff1c5afba3", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "e17ba022ef3a636a8b9c129dccac29e56c29e00b8fdf2fc3d68ca132cb3c024e", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "80cd079628725f52c367486229d10d2e549556015087f583e539c3a38a3fc246", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "700d3f98c8bf0193a5b9bacf404cf37275dbab2af610775c084cc3746d6d8424", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "b6f88766a3abedd8f7c53b315416a4acfb802d3a8744f42939ad29782a876c9d", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "c764a00104e01f3ca72258f59de9e7cdb7d22278c88e5f8a19d42843ccd9a67f", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "aa29efec80aab16d9183a00a37ae51d1de2bac6fb451df3faeb278fc3c577a76", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "f2546d1d83cb89719b7e13005fc80600bdf9f3696e70811b525da781f6fd3b9f", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "cbd0799d5567a645f29c622e3943976e158c917a4c6d96326500ffa211504633", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "45e2a082e5bc8aec68baa69650c7df01483b053fb13e169090111fc58d91016f", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "2ed37da68187aa0863aef041f52366cf193c9ce28fdc794a528be88fd7a34041", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "0c7c86740a3b9f4289112fbe3d3f8473c966968fdeb05c79fc17272274305293", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "606bf934774ce710855e4a82cc7c71397c68d6a70fd412ef16edccdec3d6eebe", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "981cb1ccba81d8a612f356cd532d41fc9f960975dfa6fd9224efd35e2f7df487", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "f1e39389d73c2daf1c8d2bbb001c6bbbe2443213bc9cdd360b14eadee2bba444", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "088c3e24d5e6b4ee48a9268a9e8e13407924b65a9ee1c3592bb9dc5cd117b131", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "147e47e2558cc1a4a85c2b433d871f64fd1b8e77a1a34481fda60af8e3ddb073", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "2384fad48dbaca5bc6611e212a79d8c65594f0e27e86745ba404af75a2d21215", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "a6759195e2c991e22ffd737a715228135253ef513607462039b6f2cd43d71298", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "2cb199637aa2f3ad72916301db6fd707105013b68c7573afa1326ae8c2667328", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "b9d0a5d0e7474045dd28b1c5b529b3e15f86f9cc4b6cfdffe00139552728b8db", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "709d4d3c4e9eddef90b90e09686f853ed21c6965460a2384ce5a11821bf2a8c7", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "9b2bcb99f1611c8cc7dc627eda84a99e440264605efa2f259f74c54088b8d681", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "763adbec866f5fc3eb525477c9f5327630bc9c913dd3e3a17747445fba4f06b3", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "d96e98acbae668e9026d684443604fdefa2114900b7063490b6f51c6ae44a92e", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "82ca0b7aa8f494d9eaa16563b50167e5a2cc5e642b6421a642de0960d8604ac9", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151618Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "3a371e2081bdebc752641886297f45bb2d6d10495d55b73bccaa32082fc64bf0", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/00_trace.md", + "sha256": "a3875c680f5563eb3c7f8d11daec4a944b9b31f933470b9ebc7c24a9363f4b3f", + "size": 2575 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_session.md", + "sha256": "1d0f5323a65eff35db0abfec555d1649c80c2fc87479aee821f9b67150d8a280", + "size": 1285 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/01_steward_to_vizier_handoff.md", + "sha256": "fb4723c15e42d08e8e23ef494e22fa7abe536db3ad01a1c021bc4bf1bc0eca58", + "size": 1546 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_session.md", + "sha256": "786e97b048f9ef1a08a4538f219992a3e43f8bfbfd9be1c4126f8c8381ef1655", + "size": 1260 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/02_vizier_to_mason_handoff.md", + "sha256": "a307a9bc7519f5a6f55cd96a74e9e444af4eb9118c333facc082307487aae8f7", + "size": 1529 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_session.md", + "sha256": "c5b5323a2b7b6ef8a01e71c7aaa9bd688d68908047d72d67440074565da3b9b2", + "size": 1228 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/03_mason_to_vice_handoff.md", + "sha256": "12d176aec3dd06dec348a09b14a6c0c837ee9aa108da25901f7577dba159bf8b", + "size": 1514 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_session.md", + "sha256": "35e617eb13896ae4dfef85850912f3c9181d1e698f7fac2972d7393b9f002fa3", + "size": 1190 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/04_vice_to_nemesis_handoff.md", + "sha256": "2b7431c5207ce23b40400916a8eb29df6772d880b156466e2c43cacbdfc10d79", + "size": 1492 + }, + "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T151623Z0000_implementation_verify_carrier_runtime_foundation_after_package_merge/05_nemesis_session.md", + "sha256": "cb5151aca86964d7fbe7228303ce7f2d52a22fb6810d511775ab8149a07bea3e", + "size": 1212 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "f4af30c661d2afc64731bf8af2656947eff61c5023fb02107f60253a1397c793", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "a3c6d248b8d01ace05dffb91149899518574ff9815a20502226cf51b099caadb", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "20d9bd838ca8e85ee2b16d35568c530b9b1736e3d394b4403b9554ca562a1dd8", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "5a26e90b17c35a57ea4e9bc98150f00d32233c457de6b6f48edf60ec95b9f153", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "f03a9742ca81bdd9462499ecf658a70a2fd28c9fa1533ce2504ebf7f8dd9565f", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "d73e5e50f07d6a8738a9fa5dec5bb27edf1c7ff9a5c8a059fb497feba88fc3dd", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "b2af9e2a05a4b22674da41757ccac8c5b0d5325e23157af0080d2378beea8906", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "9f352a65417388652cc3ea5e5ae7c177f40d4aeaf173c08ad2a6b4b868b4fbff", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "9b4b61874e765807ed49edd867dad2b0b13e8462cd54f794458274d80813dea0", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "0ad6de0098be924299cdeaa3f859b2ec6fccd6e10772240f2a1b3e50a8717e79", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "0b01b04726821681773879182cf6c278221bc02c2f87fc002406bbd8d92882a6", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "220a1c256cd472bf22507ce837b8ca31576485e1930204d4c22e34c82c8cf549", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "934150af1b5784187bf0e2aa10da6c7e9a932aa2c01ab98f15a3b4988a7de5cc", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "31506ca8376511691ca824c14817e2d9b8225cf775b4f97bb0363f94255fecb9", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "c071caf760dfe644ee07675bce6d3ed9b954bfd00a09ae64bc257bdd17ac33b9", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "ec467d37b23319b6b6fcc1d8176bf2713cdc877d744e2ce3b90bc8c5bb2d79d7", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "7bff417670ae00bbe513d18650bb64b22d881b85483b0f30fc566ad05e9c93ec", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "e862567c0ce2fab0d4c1b7e32927c5de71fc5dfc164865f25c179beec170eed4", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "4f51960525379295132ba8f6a6a9e7fd4c47a7fa192b6a7d2c943a4cead53c41", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "e60e8cebf34f6f098f65ce33bc2951f119a296608531cc4ce793f71628e13fa3", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "b6f9642727c55d0204a1229db688f9875b9c3b6464151c2afec59e0110806fe5", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "07007b59e8ece933bc2904509e69801aae3f236a38cfd86b9ae76f10f2d916ee", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "992b6fa559dca86f4b237ee18f4bcaae0aa9fdffc4c616386f49d618631ff767", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "dea52aef9125554a57085fd1ddd94b683456f02144dc4eccf958b35d476acff5", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "fd2f1cb6e5ffd9de66b0ffd97c5764be8b610276b818369d98859d17dccab449", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "84669c723265b950efe216630e67d70a6d23163b33b9840961dc699aec181252", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "342aa840a4ffddf6eb04f74f6a1349aef5c2ed65637304432332740753bfeb34", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "1a3a30a0c179389d2ba3c6da3a475d0f8262f90f834fd1e7b3cfa6a8997f6849", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "5ca75f9a9c2183a102632550fcc419e824c8c3b4dd82b3006a894e515788a89d", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "a319cc9ebcfd60f5a3df43d7c5995c94c36b731785cd265b342885a6721b4829", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "d254f78b2b5242a2f35aa71892315ba5f77d6d09e6db4f67dd4fc715b4abfeb5", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "9b69eb859bfd4941e78a2cea19cc7a81a0510874a7ebe5f0708a37d0a660cae8", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "2f137eb3f0bc255cb604a392d1012195e28d97724c54ca2792e789e2fd824326", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "8cbbec5b8739c7dfeeff493ecd0e4f52921867554fa1ff5119186683a2880f4d", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "b66e0a9a68214787920433a05be4771cdd2cdd6b9fbf1f214a37f49a9d89b6ed", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "0aed18b425b9bf164101df9b6a929f3de9690d53df72dbd5812b1140f92b63e1", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/00_trace.md", + "sha256": "59d25f6a361436e62bef87aef6764b6fedf4d79fbf9c872fa3200a6d2b34b680", + "size": 2571 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_session.md", + "sha256": "dd6e1da9de5b2ed5a6113c7f9a8cc888d7c5cbd7ec9163b98c5bf771e810f9a4", + "size": 1277 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/01_steward_to_vizier_handoff.md", + "sha256": "9c8bbd8b839dbdaa85d0cf95313d07be9af0d2ebe1ddfcd9073ba9e8811dc654", + "size": 1526 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_session.md", + "sha256": "05868d3191807d3db1b8d1034b390dc58b4c2e926ccf575061dad39f940574de", + "size": 1252 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/02_vizier_to_mason_handoff.md", + "sha256": "8bbfb9400d4e0ce49342d3dbf993d62a1841bf7a6e5c8355101d736ba2816076", + "size": 1509 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_session.md", + "sha256": "446a0da73735acd77f935e33732bb2b5cc3fd8077194bfb9b07f8821ca419952", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/03_mason_to_vice_handoff.md", + "sha256": "56fbea22eb23b272fda44ce2d45870963ecf7960647f1b6638691ea4fa8b46ae", + "size": 1494 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_session.md", + "sha256": "44b4f636ecf9b29cc6ecc542f72c721efe23109f69c87946590144eb54ad5bc3", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/04_vice_to_nemesis_handoff.md", + "sha256": "52433263965e6a484f969876858500ea994686dd760b58d1b686d3044197c9e4", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T152435Z0000_implementation_verify_carrier_runtime_foundation_after_fix_merge/05_nemesis_session.md", + "sha256": "c2c62b5634b60664b57c4195b44ae918549f2e664dd36c776edd145c91886c9d", + "size": 1204 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "ff654468eb9addd3e2e7300fb4ed6f28f6cb93c25148d93f4af621ccc6b8621e", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "4cc8983f108048ca7a0f4cbfa094c33ed372853190780d355a36930b6e498030", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "9e547a3e065d22e70ea850cd789a7b29e6e91afa91381c89d5f8a8379069723d", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "f4567a429917bbde4d4511ec4bd48cead9423031ada70c6f7b0f64f4a726d231", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "a8c593ade243515d7beccad6d335ad623d809ca3e8da40a731fb3c79580a0ffe", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "40147f90daaf14f3f04403bec16ab44e1c3f51514e6dd78dcdfba60ea4d06bf6", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "5391cf382289ddead72ee53cb7401d445669535bda331fb560ff1ff41bbf22ad", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "5ea814bb6c9c2093fe76f9d93f343ba088b4e795fa1bf22d75c6627038ff83d4", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "18b49e6d7d2baf1c05c2578d8b1731ce92afb3b01533cb53887a127b25b1392b", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "15642b8ba2fb3e9e153f02ced7ea19b95d98a46b460e39ef6223908b614486a4", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "1553e247ed8b10b593425ef5f099475f9f9c01d7f0b86984ecd2b27c84cde18a", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "e107eb2588fec1e223b4eaf8d17c38a7fca6c020e72dbb31e26736d1730d0541", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "c750591dc1a06ce735864858c98051d046fc163df8a3874aa835288a5a190abf", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "5f34ec91d02b18c4a2cc915a291be1d863db7a7d1d7f37b6b8093a3c6f62aafb", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "3762ae7deb3bce1e3801e56e0c4641f689df94f920858be641b2a9f4bb088f96", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "e0358e6a5838d175d54bc6bfa41f8695195ed5dded84da29766a03c4d4542d4b", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "a9f88503ac80fb6cebc3e28cfa49aa8e3ff3b75478b0ba8e6e5cfeab6caedf87", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "64af3652c34f7b201ec584ed6233a496b7dd0b3957a5e2e457e1a297fb6bba92", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "baefa4de98df8818a13b015a8ce76acacbcdb10c78d04acaaa90c7c052676062", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "28898095a36e5aa97129546076a0c031cbdbc4d41ef22d2cfe0689c665759fb2", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "61dfd6e5216000d7806a677377a26b96b707ccc7cb5f87ee0eaf2256dea599de", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "a89e6031b89cca17ff70f479d53617640459bbcb21fce0dfd2874eae0aeeb6a3", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "5eb328563d50311fdbc07a6d607a2a0c0c59ef5c56769e9cc8d4771726cd1b07", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "05e8b85709d2f272e43a1c2ef5f81ce9f55a6f326cf3598d9608c94d6c45a76f", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "d2a50308ea0187ed5bc3c309c0031b42bc783d21fd0afdb03b34f53149b18af7", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "67382e75fd4050729901d36a6032321bff7b5ca6f05d59158544baf9403469e2", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "ae072d49b259764c6f2c7a5e3eddc0c9df297e5d543f6dfd0cb0869a636636eb", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "831ee14d075756b885194fb0b5d1ec89d9406286173874ee1b66560efcbc278a", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "66e5d6b76d86b1ca958fd78e05a31e6d0a736cceb8a9a7cd6bcf0117b561efc9", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "d0d9712fa8baa26589c2007089df568f048fb04d8271a1c9c942e6d4c4ee4ba9", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "bef46ae55c4cf790b4a553c6888247085a3b72c972f90920f1eca9ac4b255ad3", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "1ec88bf41b9934dbaaa1ae7816c59b88d94a0760a98e96734c596b7a45ae9521", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "b27d8842d1ebad3b6bfc823f5de04850c04c5a8fa54b1a754cd8556682392843", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "7850d051097e21db9cdea945e656e81b3a22a0f8d6112371485e630a69ecbf0e", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "c4ffe2b53abfd0936ce13546a2c6e95005d292f982e8b78d19e20346d53e272f", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T153915Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "077cca4189715114dfe54f75e0e9ffb337bcb767ebf4581e2d5bfb57aa4b0b1c", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "ae314046ad99d6b77dd35b6035082d01cb47894810703d559804604f521357b0", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "31b17be3df4b92adab275f84b6d7ddc99ab6953a409ad08155e5c9a33170ce54", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "ab98cbd2ea3161200423ee7914cc0f5a47c28e23b64d55ea3788138ec41ff2a5", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "f20504836d2b45896d75a0b7e15e0a2ba42804346ed148ce82d716a145b2c3d5", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "1d76750d9fc660031f571c878f172956ceb15634322571dfa9322fc155a59dd1", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "b68b619808f359f916ce440f75e03efd455bd8018372f7ddc05e1e03c7deb296", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "c211ae3ea7e9ae52701c0942f631eb81cd9d0b59a828ee01686e618645e5b3e5", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "fcf8affd2a24366fd6227b582e425e22718e855ae36a247e2af72f3e58201451", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161902Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "af618ff62254187bdf4398af943e7db7083a0f6196223bcc89e960f394eaa330", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "d8b8d73b239e613e1f9e100dfafa6a0f2ebabf94d7d3184a30f2164d13d14cc6", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "e65f8f1b5cb6c056f174cf4feeef965480c113747e8514bace670eab93113ebe", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "0b86e386cd16a7b83c7434fff61bd47ee9c4f23affbf382a8bbbf44188cbd5a7", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "a56f819239892bb7ba51324289b106fdc0f356a319932dd565bf450d7a89486e", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "9b7014ed02d376ff45d9afd394544bc4a2a14783cc6426e26d9081ba9af81518", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "bded6d048e6b924b6d45ac361b2c621d89d5e73df3a2f9c629695c93f42ba851", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "c28120a1383049d5d915993917560c399da5641f51c7e6e717bb20944a6bc4c7", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "c0d3f33eb22b8fa808b865080364cc57378332b8dc253d5faa5bc0223c8bcc1e", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "d0431bb75a7c40999c0854ffbd5a85e532ee7e93563261fac1a50ddb990bff83", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "54968c39a0f1ff0770d11235194ae9fc40955d71504e8dcdffdfa1093ae5503b", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "95adbc5d470bab98334efd09fea3e25469d11a3286754976cb3ce4d874c5a3fd", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "fb0168427d66d7d3eebc6e575c98040fbc6a96ebb1900e3bfc5c5884b305bc85", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "7759772d98c6f7ad836e25bb9db7251d8cb2ac41131c7880b60298655c13aa00", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "b94afe0cffe37b1cea5aeac5122e5a96a731c6f7da765b1e0d4d43f920934995", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "2315e6bd741044061c58310fd843f11c4c2b77fb7b5140e592776ecafa17f0cc", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "4966b269af46531b291cfdb8a69fc809675eb2092b941f2018463ad9f61cf9c4", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "2392c3077759a0f921b843c06b7781ae353d58a19fddbb3dee61bc5cdb146c3e", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "21a00add4025e4a3b9b5b360fba872da057fae0697bd9c2290493f1fb4ba5258", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "7780ba0801f233c9c0f123801085f2bcb91acbf5c969a98e0d8e59b93ae9fff7", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "4f4ed4546414e35ba5ef7c0b39b53323350ebc7e3866454978c2a50aab23a44f", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "ec09321202079622444eaf070edc04fe6c74149904b32f974bc8782b4d6f6c73", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "aeb8fd299344c7f52057c0d77d999571b2aa987579deb6408208474ff7a17ea0", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "35d5662716c67f724e50eb08b8b5ccef60e232fa9c80c9ff25de90692a6e37ef", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "d287c168a19ea472571ffb480b808cdae50e9612fde604100ca35f0fb91c56f5", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "8ac25e48d04edd7d4f32da1974906af45c2827edd50f48c922ce5c43b5ce71d8", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "c3a8fca832c648ee3017543b2785c1cec7857d783d2a4c0b22382d7409e6afa8", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T161903Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "2b5358ab54ff3ad0483ef127e1002d34404e85424b0696a76f6a1985bb208793", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "5a6b2ae75b8c454763bfdbeb68ad97480ffef8f09156189bc83c664541ace6c1", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "908c5ed8dd87c2a67a32e82a208ab562b5088985acdceebf3e6a6729894e3a08", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "9bf6d91f04624eb004cb9ad51e67ce014c3f91022c36600b9604d433feff6a03", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "233b2a894fb403afa8ae2faf574d4e882686de714f7796f0cb074530e3eb62cb", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "4d3da5a13956a4ec537089a65537544f638e153c1ba70746664541ef8a86ebe0", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "c3e3125f20e2d29102d99a3b2bb9257d81a06ec5789629d725d252caf39ba834", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "5735f92c6b2ba580570c2f8fab0e8f281fc1ebb659eb718d2033408400eea1a6", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "aefd26720938c62ca58fc2f7af0bc8ae7c6a8673d23c138c851b9e0908ce106e", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "6d227b83ac1488d3d94189c8dba6037f3518e3a7069facfb90578057726d4b8a", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "0deec58f9ed523d3f32f0638fab587438021c79abcb58e5537a8b90c8762f57d", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "77ac2ec40e2c1e8836bcb57babb2c0840c280afefecb602abcc35721ccdc3418", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "31a7718be4d45e34678e0224925d88e4d945f7bf59e5eee4fc8646e071a9564c", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "a8131c66a6a84e5e6278b1ebef11542af2175b7362cdcc99ae908373b68e4054", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "30940a37edaa2595fff675f1050ed2ccffefefa9e98e582c9c572a8b8fbf189c", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "adc6751307f605063f5fc0fa153ac31af4e5ef1e66f87cf9fbb1bd531cb6d4ab", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "248913544ecc88b0d3d866a778ce2051a75189a2e67d21501977e1cdd888627e", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "3298a620e2a5321d9946db70ee4665c0ab92f40bda0df36852cb8c8c49d6ffd4", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "372988b1e7b0ea736756ffd2d58465bdfcde808a5b4ee545526adb2d9b51570c", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "f6bfbeeafbd7725bff6e80c85ba8702866e10876905561abcfcf2178578b1262", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "062edf747de2cdf13a84aae9d5700cd29a3b51ff35c3a7f680ef9edf5d1ac3d6", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "420a645f7d8877641a21da0f7ff9f8d152daf6cfa746fb2618d378e727c33f20", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "46d727d5030a811ceb8f838a6071ca13f92b443d164f09125e2afb60a32d02f4", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "fb37a4130c15bf835c9362aa972ed241e087f9a1cd33e15dcdbdfb16f71be9ea", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "1c868e3fabea622dafe8592ad7a7e2701aafe8cc87b346919ff4f63ace9e2abe", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "800f45e2b1c20e0214f17d274489ab89fa13587cb4a39fc908a027d925eb8505", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "ee2708d34107483b79f46fd0de98dcf2e69c89095034f784741f65ff924f98cc", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "95326a7cb865da6265e1647344c236052a57b9b2cc63838a6d98720f9eb47d45", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "cc15fbcacd8d8dcb6a9b664733653809c5c2c8122b22ab241fa90a5383eb874d", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "4926eab9989bd2bf788720d87a773e19c9622399281600403d18b0fa51f5bf89", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "4847aef79933d30bde2ecb39595f1049684b6516d2459a00f6a2a65a4b431cad", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "18ba1b7faafeaa591d6fe42dd765df055f4c179cf3becab603c51cba45d4ad24", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "353b8440fbe566d3e353182b1e258b904a30f88350d8c8c5a26a97170be3022b", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "04cf8f1c78742df19a405681b776c680cd34d4a3d72df97bf62c6f85456cee19", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "ec7a043ffef90132f8a5e77d5a7664c62f1835872da3040f5a29b819dc99530c", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "8431042572578c6928a96a9a8c627604f4924d59883503336ac47dc5781a760b", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162013Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "0acc853941ae4834b55bddd7d195a557c36ec04ca57582535a2eddeb334a44c5", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "796000dbe5b6f4acbd5108002596c72ed866226f5533ef5fb8ac2cfe5995b83a", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "b0f8f1cd5f70e14fd02f56b6becce5eb226b8428c486d31df11b38c31ea7bd4c", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "3ab6d5bd9eff09fe91c5b5a6ad6fc87c886e6c89fc6d53bac09350f03c4d85ac", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "e3d7eaf54e394e31e1483f2ae7bc24a18361ea3dde3d09b6877d3c5ba27bd230", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "c4f2b0db7814b73e3448781ead94127c6fca09dc071057f38770270abeb117d3", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "8c388a5e56ed46c99df7bdcd737b826af69963cf03d7fe9b6d46db2776ef605a", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "eb5b6fdce84ae422c64debda49f8c249cffad1356db87137f1098c2b1e817339", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "0a60c0eb12282481b38c3b1cc0b85ed5006e31890974ddfc15626bd34c6f5114", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "f11abd39607d444512e69af34327ab943534e255396c59a79565df2eab525437", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "69a8bd34a198976b17069d77eb85608c5a08489dbb54493b596402982209c9e6", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "07a37ab3a981012035e1de213c70f715fac43d406f696f76a4bc2b37e9511573", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "19a1cb57524ad1bf872e41b4e9b69d6ef99bd3b766b60f303c1d841c182e6213", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "a2fd55d709874dc83a0ec0a5a70b5af80953750b818104c3a4d3e1c542924b60", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "c4ee83be9fd19a81dc89857ddc36075e467bfff1c2facc3feba1bcf80228fe9e", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "4cffdc2f26c18357e03d9de5f781e563e55c01960fccfd02e0234c7c77e1d46b", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "f062c66b5ee503449ee61cba10eb10f83d3becb3efdb05825f95d8ee4e19f8b7", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "eef0bc61d1ab17bfaf6823da38a0411855f126ed407e5635d479e7cd3348599e", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "b3074aeb8a8d673ef3c1bb4a1bd4fd4ea71d460d7a01803b0b45ef8003f42b68", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "541fb8e5480be9af7805fa68285e7712b4f75cbeafe089d3e67b64175d1e0a15", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "b3355a432edaf41b457f02b5ceeec12c4b0bdaf95acc2fabc838453142350103", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "e1e86135e0e48b88d262d91e22d6531f8c80883c7678ace1d5b44bf3290ce2ef", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "7c6438169e34064cd839b3ef22f1880c7e59c7dce7529fc0cc1c02358760429c", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "967596540b9b5c2997f562f43363876e10a59f3876ca90f7584040727a17c484", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "c3718330a1674ae3190ac440a8fb2430c05142b1a28b7209564427280cba9ea5", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "7aa02e1e8049996fc5be5b318320f3ed900f3fcbc32fa32df3f59004037ad3cd", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "9aa2d13b8e94b50f6770262e6b487f852e44221bfd148aaf7b1e4f094d67d6d1", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "52c65aa5025ed092e5c7bdc56804e5ee9babf3e192a72b05dd2343fa705b02ca", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "5bd91a87bd4cfa0ee0a02f13bdd538d0b35c6b0bb4d18a178ed75feb43f1ec48", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "774dae2690a44f71786f15bd1996e03931796873c07f44a750dd2442803fd2e9", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "dd2f3fb3803ebf821b3e538656c35d33ba20f844b332440e0e47bb2f6b72e09a", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "8a1150fd1032cd99192026970519310a894abc4c951d79ee85be22edee296096", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "2d6701c6043693d414549ebc0d4070f2ba032bb81addbeadb4d549003d799b89", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "dabe89df2e4be1347d83613dca700d1fe40ac7e804fb2d7c49be10ee4fd48891", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "0f342a0b9d658b12c2b464d08e387ccf2709ffd76e348442e999275ac961854e", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "d5ae71329d7cad491e32931d8eea988633686795799d0338dbf225f963b2ab38", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162254Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "f8f610b2d335b5080a1b854d349f1cb428dcf4d11d614e42df8ad4dde873daec", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/00_trace.md", + "sha256": "a0c20613e4fd288365ee9adcd97eccd93e43db5b78a62331d8459e61c31b6dae", + "size": 2553 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_session.md", + "sha256": "aadab02a637d541b5e7fbc60e8e59d008537427634e366c3d4d30614dec8618a", + "size": 1241 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/01_steward_to_vizier_handoff.md", + "sha256": "6858d3b67a9f8faf8d663fac1718afff06f55da939c43ef248647894017a46ae", + "size": 1436 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_session.md", + "sha256": "38bfb5d2e18bbd25cd36441bf07c9d9b19552e76ee1597757111bd9238766ac2", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/02_vizier_to_mason_handoff.md", + "sha256": "ac4fff4e4c39dab6d816f1788d8df001ec06c86be3005355be5aaf46774e1c00", + "size": 1419 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_session.md", + "sha256": "c65df1e15da3661b905193ded2e126d94f07049c331027fbd0ef2520e2341a09", + "size": 1184 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/03_mason_to_vice_handoff.md", + "sha256": "81ed53dd9a2fb64bd3263a89f5595e0c8ba67e5d7d06b5ded353bb907b188ff5", + "size": 1404 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_session.md", + "sha256": "a9c9716cea79c75867b25c19f8fa38d0d3c9fd2f4519985856fa7e8725286718", + "size": 1146 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/04_vice_to_nemesis_handoff.md", + "sha256": "0fcd62f4a7b31e1d5aa235ee3303dd52cab71c9fe224c87ef26d2fc8bae90729", + "size": 1382 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162325Z0000_implementation_workflow_smoke_after_bundle_fix/05_nemesis_session.md", + "sha256": "c965c85e21064d8a2010912b7a8d6c4b2aaea18ccc5a9bf99c0c7a5d2e9d9fb6", + "size": 1168 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/00_trace.md", + "sha256": "6d60386fb937d8a32ebed34521a427386d539a461248f402bd88fe40d7a83679", + "size": 2658 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_session.md", + "sha256": "4534345fbd83a978fe9f04cbe786a18a92b4c420fcf6d364874186f1e0c9f510", + "size": 1451 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/01_steward_to_vizier_handoff.md", + "sha256": "6ecade589ac4bc8043e6b4c5ae8834e94ffef0684f1dc094d0be8749d2b0157d", + "size": 1793 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_session.md", + "sha256": "8ca486313b727cfbcdef06ed3c358379495f7378fac48448e9549070c752ae3c", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/02_vizier_to_mason_handoff.md", + "sha256": "aee7f2d304baa5270c541caa68bb9e11075ed596dc7c5bfc1578251404dfd3b4", + "size": 1776 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_session.md", + "sha256": "2e368a305baff753e78bf8ac47535632e3c535837467004fc5f8aac65141d442", + "size": 1394 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/03_mason_to_vice_handoff.md", + "sha256": "99e8d0b6aa7741d2aacb4674ed4710bbc90f3ba9ea1c75332981ae6f141a2b16", + "size": 1761 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_session.md", + "sha256": "f936e0abaca23ec46bf9135fc67aac49c2c46416abba0b99d2e64e356c03ae71", + "size": 1356 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/04_vice_to_nemesis_handoff.md", + "sha256": "a5f2ef719cd38a8fe43ba2375c4e12d31591c12e3e29cff734874b9a3ed16fa7", + "size": 1739 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162619Z0000_implementation_session_bootstrap_refresh_active_work_packet_and_active_role_spawn_plan_operator/05_nemesis_session.md", + "sha256": "5c045d9518eb1eec73891ba86200a79bacd2df0d662b29c8c69da92bfcb9e4cc", + "size": 1378 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "56e9acb0c7ce4bd767341a20d88a3937dbb57a2bc5693acb821468010ca7f5af", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "eeb568136a3d7e6b9496e18fe16e4c9b2da86feb56d8d149dbd3f8fdef614ede", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "961f3f5d6e51e6bbb248d8c168d5667df2cb39215dbdc8e6617970ead520a135", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "b71b375e66b1ec674f7a100497ff1680b6758d9c0d515b58ab829bc7d61a702d", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "0a25b090a3de60ffbe9d5be0b5b412338527905cf600762dc7a72dcba98071c7", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "eb84321760bc15b1a36fce35a8bfc42b52e129924c8f22b9e937f3bbcdbf2ab9", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "8802dce50f290f0f3f70488ea6d38749884c111e32e122cbe0c960f0404e94d1", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "fc08709b1ec7bd9d3c7c51023e94215b2e66ed9856f8692b931becaa73fe9536", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "ce208c283821a9a4b55862d9122824a4740cd5c30a5cf72a544baee1cdff3d1f", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "077c3101faa86cb36de0d60923b113f1a6fb6f58f279dc4bef1eeef80699d862", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "35fbbcfa5c0fad72f18213dedfcb7032426fef54d635a4679f9b537edb2d0e6e", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "975a2a4d5968ed300cce09f7cc152f51eaf5e7ede0e60a268a29df767df0c78c", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "3a37e023a74421cbf1534c99dcd1facbb5a89b3e9c3d7e43c5742c456342581a", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "4789eaa4bdc010d4192199f5842c4dd0cf480996ccc72f34349ea2cc4e28666e", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "62c67c1a7378d408939e135d549d7d6d031e0bfc5f99ef1298c58b99c94fe8ae", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "b4dad04fd2600abb1bcc27dc51da2c2bb26fc9fee439a75555d83b89bdd68bf1", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "b0d05ca646efc1e5ab2efdbfe6309d6b54daefa8fc4bf44a59b9198b76de9eb7", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "98a6a79f951e8e0d885dcd45554ec5d15c51d3d644ad7e5eb165fb2ee0f92f98", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "28a1943df0ea4ee1046108d597e966aefa132df806614e24852e05c2759b4331", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "5dd0fd45c3cc5260dbe719e6d6a3c331c71af6072e6591b8c57976abbfc88cd9", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "2539a02f3a8bc124dcd5d9272f03891bf2ef4265c48811e79162881ef16ed72b", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "4b56199d3e633ac7d4aa835df08d133dc2f1f42af6a01cbaaf8e215a73a4a711", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "1625bda21b34c556bc5d1f1eb8586e71dd3c9c83c1e844ee453b1b4ada7be204", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "e596a34bda714e08201be62b790a896c99d87f7eafc9c10b8d82cc13dfa721df", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "fc9f2a549e06c2c758452c81c27a54169398c1f31a9413a33b2d7e9a45c12661", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "d8ec90ed9646fa693c1dd46d77934cfe0ae6a4493c05673b0816d9c127dcf807", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "01e40a5ca25219511f762e3ac2df7616eaaf857ec2b9429819f45427b322388b", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "b122256b2f2de70e5189e71f147c2f8297c632874994b02fff769357df79a367", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "c5bf61a85c38f722e38ac9bd4abbc524ea2a9d50325df7cd7745d96c40b517e9", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "9fb6bebe6881eb577994358da50cb54d209cff4de4471e331b19acc0b874fabd", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "6f7f97cc653a174b1262f8f294c3fd17f83e41543eca35c39336e2b06cf98973", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "1bf5f1fae462c28b583207fbf8a16068ee8958cd7cb9786d1171fe8341cf8d68", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "23a714471886a0816b31de2794c3eb345db93368437fe10454e56d5b00c370de", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "d6c4667fa678d33c42aeb4a644839453a3a8f26635eea6b61590790d8adcbd84", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "a8002a22f9ef23c778ebae6108b2f51c672b7fc613e09414579f33a8323f68e6", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T162659Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "bf1f88ff55b5bdadaa390c47a4f8443a02d8aea3d53a2dc538fc2c9dee895014", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "82b1fe24063f7d7f6cdd61be732c929308230877f1c67d82cd81c69d9a46686a", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "b2fd50ff9ea71baeabf3f8c1390f5c125c9c43a025f930cc41c503bc1e8090c3", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "0ecdc45dcfb4bf0819a66709c909676d2bc1b216880049397f8b166fab96b9d8", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "ad4fb4a152f40092388351ae11b2e35d8994fb917c62549f8b0916050d98f3ac", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "7ff15fde999da9690f62c603646f4123ae96cb36beeb629aad0f99018a15e37b", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "e5b3080017eb35145bde24472695b0bbff24abb9c80b04fc221f859bebe05cdb", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "180ef1b81b9a37b214b54057a8ed569437ec9394240ec97e6b880d665ac20e75", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "66ce6397fdfd2628594db004a615991bb1f01a3c2b09967238c305aa77baa19a", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "ef0fa5a537b6cfc3930dd9fbff1e496a785dd8d0ae93802329f5fa815b77e7d4", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "d00ed3bec92c7a4b4e929e566b064c78a6e48c5ef5c69f7947ee81f4cc8f5e80", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "81f277f551b90fe285122ac8a7a71ce566ea4568f5843be4c84b77adaf146eab", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "3456c3b5cb1adf0aa172ade2889d8c3adab7b25f2ebcf2a89770d6c1e382efe6", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "47f10c9d5a41b849a7bf9b06d8cbe421a347999bfaf67fb584f9d3b1c241da95", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "deab41bd037fce1fe0351ceb7938fcdeac8c6dcfbd845078f046e65f3e6602f0", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "dddc3dd45beb1cadad3b81f96ec3d6fe987e595e36982d2ef679f51f9a206149", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "fc9ce3e33224b3b6f539dbfc475d5bd6a7b148cc599762543914547ce0cdfbc1", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "66f39b0f861ee55b081bd00760f9af6528d98c4e5bf38e44df533c44d7362910", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "77ffe51ebab4828383355d0b1e46159ec35082b6824e313221bd35df4d1e769e", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "c98fb8d90f62597274c03bbfeba87d261282195fa0addd3151a3f68f8d75353f", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "d5f654420174ab2167fd4d5abab8388c3bb79f6fb82fcb747c34f09188a9ccfd", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "b0ffb866c7860cdbc62a6329debb34d0904cbff7aabc39881e4f06e00e87bdce", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "695a44f262f3a456cb4c17f9588e7c38109c09231a869d2e2f7f320045b167c3", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "478c2caa8f7b1ef76e760d90fd96b8bd988a737ba777b90a0e655b7a306502b2", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "df06c8ac6830e3d52c765a6177038ca64a05d1e785a0f59beeaa4516e13f0991", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "a9831a7d6f8b17db28be8b9dc519e421f4d5f9aabbf75e57e775842cd29c03b9", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "5a2db51e25f6cf6aacc18aad12baf8fbf4c66e99cee53af6af800d7f4fec6c94", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "75e5538bf57a6464bee03d3b196c095399384b7bdb06ede32dedd278cb2b2df8", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "c9f2facb7917662beca0c9231f8c69f205b0ef37c876e09e78618f5e343c4552", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "2d8bf4090b0cf0f68d669936d9e2a7f128755841d1e1be57d768c7cba32396cd", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "dc0f2bae8c60acde49ec06846a98cdadf43503d11c27c55ca7b25f8de4034bbc", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "2da87a350d75784a2accd69cba67e44949e2e3d28b8258f5c27832557195f61b", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "cc1f61b1798966f5b0b8f8a287008865f657143e161daeec994350a05e0ba8cc", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "86dba36648498ea09260c64865db24ae9c39e542746cd54b6aa0464f05134930", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "f22c613c384f7d0825475418167bed945d8c08bb5182cbf0278c8c4e1fd4e85c", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "e14f5ffb0f71bce52aabaeef90baf02adb3bb6090c26603c7ff13f6d798d6d77", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T164445Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "b169410a9cf744c72f9735ad8d1728a2951de0a3493f98adeb9905c7bc475f2a", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md", + "sha256": "5a22f998a7c7ee3bf1ac9d2f71f80a74365f769dc0d3b0607ce1fa758bae32c6", + "size": 2599 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md", + "sha256": "b78f7abdb9668ad9517982eb4475207aa30aaa94a0e8184c7aafb7860d1b8f39", + "size": 1333 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md", + "sha256": "dbdd29b747749cabc5f92ff886c8ca3dc6d39e11fbbdb75349ddc0c6c88d7023", + "size": 1651 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md", + "sha256": "5baef5e2ca676b2e005408ae226e94f48ec51db5e41430efa203e1c5fe24a644", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md", + "sha256": "3850bb1f2c4c803938f993176aceb722b5f3449b2ede6b101caf087d1a881485", + "size": 1634 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md", + "sha256": "f514a5ab6a0453044e1917fcd1fd8a58a06de5d034128cd6afcc40b2edd55798", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md", + "sha256": "6792562eab72275d79421a6f86a4f74d5728dde98bc109c676004979c47ece81", + "size": 1619 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md", + "sha256": "6f070cddf242392f6e17a20d518ee242d68b24bd9e4404141673b636f5b31eb1", + "size": 1238 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md", + "sha256": "8346f0ab33bcead0e7feb0d508c3de4a0b7ffacce94a0e3c594082746d8aab49", + "size": 1597 + }, + "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T165005Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md", + "sha256": "f51c50e1eff53311e343d6b5490f7e4bbd870325f1023055ac7667ea5d949970", + "size": 1260 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/00_trace.md", + "sha256": "5a22f998a7c7ee3bf1ac9d2f71f80a74365f769dc0d3b0607ce1fa758bae32c6", + "size": 2599 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_session.md", + "sha256": "c842ddee23dbb0a101835639f01ca16ec3aa528d33cfdd526f98a116d1b65dcb", + "size": 1333 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/01_steward_to_vizier_handoff.md", + "sha256": "92495ce3c8ef56da5d9954720eaea7a850850621ee2e1a6699455f19509f7f4e", + "size": 1651 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_session.md", + "sha256": "e55449c48a6168012238a55f4e3da301f01f06feb5c2d038cc216c74929c1e87", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/02_vizier_to_mason_handoff.md", + "sha256": "49301858a4029d323fa8d68f60fe7148f29fdc060cc327946ef3b373b7d2d5e1", + "size": 1634 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_session.md", + "sha256": "06f820926a4288e3aa12618a5706b9f3eebe9ea8e7935daadf0293bc08b1e47c", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/03_mason_to_vice_handoff.md", + "sha256": "d7cab757503011a6e18dc16c4f89ccead2721c11c6c19a906920ee32bb0d5bc4", + "size": 1619 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_session.md", + "sha256": "2492b00a833b474e37502206dda3857900f796d6cd7a82db00b5ecacaaf0035c", + "size": 1238 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/04_vice_to_nemesis_handoff.md", + "sha256": "d8fe5c67ccb7ce2b06ab40c390a7277feb5d200de7d424780b32d906032403ef", + "size": 1597 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172822Z0000_implementation_carrier_session_refresh_work_packet_and_spawn_plan_continue_ion_workflow/05_nemesis_session.md", + "sha256": "86a38cb8d957d32d07a88f1ec96375c1485ec010a33216d7307a8fd615ae2389", + "size": 1260 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/00_trace.md", + "sha256": "1bc83f3e37bd5e99c7b2b7bd61e71cb7289e5a4b53881804739a7526affcfb36", + "size": 2544 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_session.md", + "sha256": "a5f0e40ffd83e9d823e704949de4a8568293cfdcad46c62d515853fb9f59ffe6", + "size": 1223 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/01_steward_to_vizier_handoff.md", + "sha256": "2e777d5ac95f913eba469e3cb08669cb3e5dde87ea9ca44a2cb30ab808b87de7", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_session.md", + "sha256": "073d3e24b77b77d8bba6d519813b3223d19c8794953e63dd1244f2f0d704d02e", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/02_vizier_to_mason_handoff.md", + "sha256": "3fef2d1c46a1e9acb99008f582c67a4c174bcbcd932bd7872b7af38b3086292a", + "size": 1374 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_session.md", + "sha256": "5e21879acf70eac3554752a416df72a12e56bea7d18f6013c000e339a8fb2849", + "size": 1166 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/03_mason_to_vice_handoff.md", + "sha256": "2cfcaaf5ec6f2c5abd5aab633b13ba6dad9595fbe58bfce29c004c8e6aa1429e", + "size": 1359 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_session.md", + "sha256": "714679093b33aff18f4936ddeaebe81287ebbbdcee11ae5e105af9f95a458bd7", + "size": 1128 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/04_vice_to_nemesis_handoff.md", + "sha256": "498631e66476052b55ab34c79d086444c6d654bced611d988819a7e3858c989c", + "size": 1337 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_bounded_implementation/05_nemesis_session.md", + "sha256": "e5ff702f8e6710d47f0ea9a14e82a5839e33c7fb0690e14a1e59d733aef56bff", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/00_trace.md", + "sha256": "151b33f83d6d902590e759414569fbb77836640cd438d7c3d0905c5c40f91cff", + "size": 2555 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_session.md", + "sha256": "4e2638a4bb9be11013731ba019325452b646323609445e67ea1116dc905b06a4", + "size": 1245 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/01_steward_to_vizier_handoff.md", + "sha256": "0426a8a668bcbe4b3868aa6b32b06489fad75defef1bb732487c7ab145c60f8b", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_session.md", + "sha256": "a1f89902997681884c1ec85f6d2061d3fac9bf817c7bda14ee97550593dc4fa1", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/02_vizier_to_mason_handoff.md", + "sha256": "c015391a61b1d2eef7f152f8baa4b9bb063d316b25d419b07c7e0d9c545d00fd", + "size": 1429 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_session.md", + "sha256": "00a92fb4f7800c863a2868c79a47f944adbb34a83d8c0cd8a7bd412f9d34a806", + "size": 1188 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/03_mason_to_vice_handoff.md", + "sha256": "a5217f5fc269ee7e4cfebad2ba4879cd2c071b555b7ab7cc46903d12d12f0039", + "size": 1414 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_session.md", + "sha256": "8ab2534139c9053694a69fe47cf62041962b928574c86b4907b7f16ddeff9920", + "size": 1150 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/04_vice_to_nemesis_handoff.md", + "sha256": "3cf3e5fc599693644880d6cacd819f8dc3e434d1e27eaf547e7639d8a0a00cf4", + "size": 1392 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_critical_governance_release_audit/05_nemesis_session.md", + "sha256": "c3e953df979d284b210611f70a891343245210efaabbfcfb90bc31612fde3d58", + "size": 1172 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/00_trace.md", + "sha256": "f81cc9ee92db41c301bc3ae537add84257762a5f5d376153bc5dba9400eff32e", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_session.md", + "sha256": "a383b088d10c74694c1b8963f5068fe6bd0ea526e4b7d9908a3a9027aed61bb1", + "size": 1255 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/01_steward_to_vizier_handoff.md", + "sha256": "8032cadc0762f4f43fadcbfb1db28ba29c1e66e7724ef2d9f7063fed3d4731d9", + "size": 1471 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_session.md", + "sha256": "091923f3980489f3d65f3f1d96f83e90bac6f44f86daed3afadb151ef1019fb9", + "size": 1230 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/02_vizier_to_mason_handoff.md", + "sha256": "e1837a0ece4c0727562c9be539b2254aefabe653a86fb49ba61f3d42b019f510", + "size": 1454 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_session.md", + "sha256": "3fb5620f6396def1933bb5358186744241edb0f06243dd93f40662c5d714beda", + "size": 1198 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/03_mason_to_vice_handoff.md", + "sha256": "0d964a2d6d82029566627724344061fc269bfe75910d846c231946b868f84263", + "size": 1439 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_session.md", + "sha256": "57b4d9e453ca5b9291da2a86868e7f39a36bd7c061bf45f51d12e55060953098", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/04_vice_to_nemesis_handoff.md", + "sha256": "f83ff9370b78771cdb687fc4b3480ce6de3ecdbd8533eda238904862970e2720", + "size": 1417 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_full_mechanical_implementation_closure/05_nemesis_session.md", + "sha256": "e2ba177e44ccd7a58203010adea9d21d4aea4287fa1ad8defc901dce07afd178", + "size": 1182 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/00_trace.md", + "sha256": "0b36154a2cff48ef8a811b5cfba0cbd6e5e00742c8351e526f77a689a6134095", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_session.md", + "sha256": "6cf06618362be76f14d1b74b9e7abbd34f8be72c3a14fc015c00a0a613f5ce86", + "size": 1233 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/01_steward_to_vizier_handoff.md", + "sha256": "8bca6bf516b8e47204466fe8c313e70ee09cd5cc0d18160e000d52ecbc6c112d", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_session.md", + "sha256": "1347da05a8af32a9f3f3b318cd4d48d13d10beac5de23eb8314b02c75c18150f", + "size": 1208 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/02_vizier_to_mason_handoff.md", + "sha256": "b3a040116e7414b42196964ab65d027bf2439ee999c81d61f5ff5fd6a9f12edf", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_session.md", + "sha256": "2a331fbb1c39c46ed65ef8b8d32d227c05c3ab213f55fcb90d7bac5abdde1cdc", + "size": 1176 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/03_mason_to_vice_handoff.md", + "sha256": "20b5006c29db1bd876a9af67dc51148907651e54211a6ac08389d293c78109c7", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_session.md", + "sha256": "a2f2f3f743b7fb1b61a2c78e78df0eacd3343a52073210a668e91424a4585437", + "size": 1138 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/04_vice_to_nemesis_handoff.md", + "sha256": "cf336045dc58a6f96224b49c37935f86c79c373fc63aa08d42749bd35f459daa", + "size": 1362 + }, + "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T172847Z0000_implementation_simple_implementation_slice/05_nemesis_session.md", + "sha256": "9d6a359f960acfeb9ef427117925bef1d14ee86ea5701024cc537eb1efa9bcae", + "size": 1160 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/00_trace.md", + "sha256": "f6f02cdd3fd30345ce3ad707aa5e2246f8ace0fcb871d6b7ba8613ce7be062fd", + "size": 2590 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_context_load_receipt.json", + "sha256": "6234d944c926fba89cd8a021a23bd88c4a974177a68547b4b6188b5a903249c7", + "size": 6001 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_cursor_task_prompt.md", + "sha256": "ca1f4c2719000f4c93fbc83247607b45ce22213598c6271d74dede2f30f2a95e", + "size": 10504 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_session.md", + "sha256": "ce1e110b157fba8b12d1b6b570189be1d48d3df3c2a3ba2614fcb3371e46c3d3", + "size": 1315 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/01_steward_to_vizier_handoff.md", + "sha256": "c23ba32a313a1c035e8be6e946c8f68e3adf5feba47945210fdaaf8beb8f23bc", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_context_load_receipt.json", + "sha256": "b22c9c73e97cdf8d7fae675bcb3bc824353bb51f6d02b12390e049bef88b0ad0", + "size": 6309 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_cursor_task_prompt.md", + "sha256": "cacfa21c932809eca07652eb0cc87359e83525a736fb774d055bc4480bd67da4", + "size": 18009 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_session.md", + "sha256": "050389941f538540518b19fad97dc860ccc0b56eeb6526c652b08181304f7bcf", + "size": 1290 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/02_vizier_to_mason_handoff.md", + "sha256": "5b38c831fb18f20629c368cb51cba2b1b8e1c3a6321751fe26377163fd0e4c2e", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_context_load_receipt.json", + "sha256": "6a6f33561eaa9f574d5330223be59d59a23f31dcb6c8d5190ee412e46c2eacab", + "size": 6287 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_cursor_task_prompt.md", + "sha256": "937288b1409611e24e4288505eb9745c00a59970f481a64de25d1fbca589ecf6", + "size": 8486 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_session.md", + "sha256": "3dd2c792d945be366d1b2b4427934ba7761014739d9ecff8eee07d2e2bec09c6", + "size": 1258 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/03_mason_to_vice_handoff.md", + "sha256": "f7b58ac7946ac8dce43d1e08b88c38cb31ca078e9b9d0732dca2b129adab680f", + "size": 1394 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_context_load_receipt.json", + "sha256": "9696157ce19e43f5327146d9c8c016e723f7a8b947cc4e582b2dffc6b2369826", + "size": 5637 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_cursor_task_prompt.md", + "sha256": "90ffb19f7c0a973b07a02cc90c42cb61a63a1f10ad3a22f47296edd8fc0ecb8c", + "size": 15933 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_session.md", + "sha256": "37cbc1ee1d186c01a83d456ac5385b49fb9600b0a3d6979ebfdcb472c579c324", + "size": 1220 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/04_vice_to_nemesis_handoff.md", + "sha256": "9e2e49699936cad5316c4fa3aff7a6cb9fb1ff7b689aa395157b6909c4e06ed8", + "size": 1372 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_context_load_receipt.json", + "sha256": "5746a51fb2f4521376a2e8d19015d2f9b3bb02a673f82dcf8cfb3c5fd8e3ae38", + "size": 5514 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_cursor_task_prompt.md", + "sha256": "88b74a6ca22a72ea91e0c07c15b554c41f558eda39fc08fabfb33c79f7dcadd0", + "size": 7935 + }, + "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-28T_v77_strict_context_proof_gate/05_nemesis_session.md", + "sha256": "4dc4ef6c7616f4f8df10a7d056df8e9f04d9c12dfeeb07ed211aafaca1c8db24", + "size": 1242 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/00_trace.md", + "sha256": "f6f02cdd3fd30345ce3ad707aa5e2246f8ace0fcb871d6b7ba8613ce7be062fd", + "size": 2590 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_context_load_receipt.json", + "sha256": "e213fbd4bb0cb841f1cab25b00192ba731b8c6c21fd6de0cb0876e135ff3d76d", + "size": 13490 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_cursor_task_prompt.md", + "sha256": "61451f3260f15189dc7ad21a11ffbe665100992afb3a4b1bd18bda446803be86", + "size": 90621 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_session.md", + "sha256": "ba83c337ed343ba5ae520b6db50c819f377f9c1c87b08626f3ee8fc4dc04e884", + "size": 1395 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/01_steward_to_vizier_handoff.md", + "sha256": "07d50475db2850115f9e8cbd8ad779efb481e0dab2f52cb6409ce94daacc975e", + "size": 1655 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_context_load_receipt.json", + "sha256": "934759152990e79e5e650716f7dcaf29b16a9f2511a08f19d2f8b08ec2785cb5", + "size": 13121 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_cursor_task_prompt.md", + "sha256": "cfa73d01e63b73eec440ac558b8c1b2a9df215ee67d0e2d28ff98bfdc7d17bc8", + "size": 96623 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_session.md", + "sha256": "7240eea48d02645a8202eb7f1001fbd6c1f18c98581dfc4f8ed9b40598047b09", + "size": 1370 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/02_vizier_to_mason_handoff.md", + "sha256": "2d4db6a0d0e4ec7f2c3eb93985cda7aa1b461e5a9eb4637919d6152d9c71b5c7", + "size": 1638 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_context_load_receipt.json", + "sha256": "102f757e63db255d6a4169c6887d56ebb8bb18eb7ee513a72b923b4d06b4db4c", + "size": 13668 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_cursor_task_prompt.md", + "sha256": "ca5c94e51cf86a4a656cd5261795b5cb4763419abc7d7ae029e19409f3aa1e9c", + "size": 88565 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_session.md", + "sha256": "d65f7147f86a5369d675f11db2d736aaa7a2bf31e4feb258e164ef5a611f1bb1", + "size": 1338 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/03_mason_to_vice_handoff.md", + "sha256": "e8090293991b944b9ddab5b02efff85da89049bc107adf3928cd7ed44601a3ee", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_context_load_receipt.json", + "sha256": "3e77992a1da85f31c6d6b3fab1524dafa36d5e1bf7d6b0ba1ba8c026b287beec", + "size": 11777 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_cursor_task_prompt.md", + "sha256": "42bc662d0fad86eb4599036f6357565a1fed6a840474b38e0e73580a00aca605", + "size": 93257 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_session.md", + "sha256": "e145e28bcdbcd4de1f8c92a14d7848ca6ae6f3a1c4846d37bdf980c91b8908a9", + "size": 1300 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/04_vice_to_nemesis_handoff.md", + "sha256": "4301f985ed94d50055f603be5915be19ad6b4bbec2f422687211b880b73e9d03", + "size": 1601 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_context_load_receipt.json", + "sha256": "0b3447ffd26751fbc474fa3add5720a88238080e831c1d9594cc1b70863845ab", + "size": 12938 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_cursor_task_prompt.md", + "sha256": "05da812d83eca784d8930701c11b2f853b8d5d2da12d2cc273b31cac1a41f2de", + "size": 87902 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131137Z0000_carrier_continue_v77_carrier_strict_context_proof_gate_and_cursor_spawn_consolidation/05_nemesis_session.md", + "sha256": "6bd191a306cbf8178f65c6ad78548da5e29b0eb0c5580fea9b4401e96aa69b78", + "size": 1322 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "c9038015384436422fa5bf931261647b91a28fd4527b592c1cd6a7dee7f0bec9", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "7a0c8aad8915c68b82e48cef82fdaeb67779e65a19aecc47cda74d24d55b2703", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "39b6748a3a07a810cf4e420741f5c8bb3708aecd64db7797659f97c177ea6c96", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "574ccfcb592c3a71c7572be4974f4d12cc129e4a8caadd60d2b2aa0c0d613ec4", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "4d4e9607b3eb124b544b64502f022338facd37386072a0b386778bcdd038dfdc", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "499207a6c73946e8d7e937981fc76a1f0b82d46e731cd6637883c0b90cce50f8", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "d6c6a61907032a6d9902c1d861a9ad156b56f4d99b9bdf0c7699ceebc15902c1", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "32f90438e01535ff30dd625044a2b6e300dd72d31d9e6976ad05aa43ea323b2e", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "6950ac1ef73c45e99e6982951d2eb9aacaed25bb0d778b076c1bbbe0bf511076", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "e9521e88b3c6b295d30e89c6de3e07bb96f9ed0cd99b03db16c15d411878d3df", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "3b98b69c8d3bad09312f30134685875b04da9630caaca6fb84c3f7441664ba54", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "55e5947d89fa7d60f549765bbd38dca3ce1652910a7f66dbadd0a1230d9abce6", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "0b04c9eeec7541feee00561ef2d7c9f4bb9ecf8a98d04650adc34baac40952e4", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "60f2cdf30041a0b7668f140acffb6aee9d69ca4288bacd661a7c69c1fce61a08", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "f7f75f73ae4e25cac6d2be965d98643d29c198e23801608fa79e25859d7fc3e2", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "a37702683719aff26174e3c62f66fcbb570d545c5397f3873d43ac540b817cad", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "0d807921e7e11150cc26f15fa0cb3908f6326fe25c99e078b2d9ce8e113b8c8b", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "671a2222b007d32748fe3548d1b97f5ded3aa54a3f20b8b3e46c5c6b7367d69c", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131148Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "1ef59d6c78c38bd3f7882a3bb39344026004350194275bba36f41a1d32a62630", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "d5c70c06a426207cf7f7d26793b6aeeb4602e4f0b114e44d794682b630b451cc", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "c040e42737358529b3a97f248f832a63225b10ceaa09150e0f37568816e57864", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "1303a12b55fa16c1bad87f4fea3d13191cbbb950e6503c89fa8967f0ac9838f2", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "f8ee4b177c58bb58318fba1379fe1600669131a03e17e2dee861bd77f341de5a", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "1d9408a0eb1485eb017bbc283ceb49ed0fbfe54e6b863f54ccf0fb3dd4c3115f", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "869abac8c4f48e6f8e1dcbfc79389f9b5a774ef1499dfd2202070c13f6b084c4", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "64ab325fd02156d066c1e86c5efc702f2892752d20017a0f839c111fd400b089", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "b8c57d153e33fba1e0ed3753e979452253fd831a235ccb21e1d674427b27ba83", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "7166f2c87bc945727a088f31ab8b7cfb61b3e372d0f4013d41e0fe1868d8d3a4", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "ba1acf8f91ecc577ceaa0a64c26a38d81c046b6fe5eb28a82b0cf942b28ad5d1", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "413b670ace69eeb04c46a8129de3eb7ab5ff2d4a6763a883ff3243af14d162a2", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "b49e0155f60d363ee7367fa5537e172629a505d02f3cf12f0377d22c82f643d2", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "125149a9b2a294a8a928630b8ec236fa7aadf8506f6403c367790c7cc1d75cc0", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "41fa42615c3a70e8dd7c668d9cf1b5489f1747018cb83b44dde858ffbff1a15a", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "f4ccc0203a1faf96418dfb56c3a959a24074fc5381c4126b161b0c3f7369da94", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "28cb83be770993a0d8cb83d3bda36abefd78b1a21ff510ffa3a1a53af98a185c", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "b5578aff81ab08416897cc58f04f628b82098a5e3a7099416ff8acd7689e20c2", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "689476073fa4ad744ffc74ac83c66ab2afc5919e83b9735beedd31f283181580", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131602Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "2b9c9061e601d8250f980729f0ed9b9c23644d9ce49fa7bbc9fe7fbe52dcab1a", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "4386f84285f5e7e41ab895ca6ce77c9bed6075e304432de75cd22a23267534ce", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "754e0f5c3efc9d2963a682dff28550daecf3a32dbf6da146342b7990999f9a59", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "c70d25dfe90dbc5220e74abdc167d1a8e368729f2cb4af68869789409f3f9db6", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "a0320b136e7644ceaa6300264d3b06be1bf3366839b2f0216031561639c0fc5e", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "ef1b358a8c07831dcc5ac079b2769e459a69ca47a7809404fd0d5145284e79c4", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "2787f50287629529fb790011428f5668261d26b871c264d6c585b452fde1bdf6", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "fa160d3afc4e82e76eb42099c8a079f3e59e610afb425514197d07caa1461c7d", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "1e50d7555a4222d229f3a70b04af8fcbf672b7d2e021370305000a8001c4d8e1", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "7b27c91fbc6d146a114fc242982dfd567bd5da09ce4b6aac6479694c78f14edb", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "35687fc8b49e3b81d1f2f7fb72484332e3c245ed1558acff6dab7aea0ce9c6e3", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "62266075a3d3a1f08c3f2ddd4740ba5ce6af8131e9ade01ef3afece97cf7b7bc", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "9dfab354e0cbb7d84e605a779beb3d62e9b92cc84697845a6c10abc491ab7c69", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "c30862afeee50919c72f2518585d8f2a6ab89bfb41ffc0befbb6ae56d3f8e4a1", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "0fe50169f28397eec7a4c1f1f36ab8b9984bf76d399f5513a8d11ddbfe17810a", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "d08f8d6f3ad569308a019cd86d3c4224e881998ecf4c4366d0a6beed285c9f79", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "24fb8ac193c00ab60b5392c394d2175a794ff5590ab3018e6461cede34553fb0", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "1eb2cfda2b2374fc7f37b802a281604e28ec78deccdd742de6184e16b59751fc", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "7077ae4baad4647a94dde0c32fb07facd5030b56b36087e6382f5eb07e4bcbd8", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T131836Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "037204a56961db9d81798975cbefd9d4ce4cc10993181c4c0a56501fc912e813", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/00_trace.md", + "sha256": "ec017329edb8061e65cf05d52954b776f9fefd8a9905d51b2089c425f21a0a67", + "size": 2588 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_context_load_receipt.json", + "sha256": "5803f56742114179812c963b3c95dce9d5f57875b540ddd4c9b4649ea494de2c", + "size": 13484 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_cursor_task_prompt.md", + "sha256": "90417a1142e9b6f88fe20468a9c046e47b7481c6861105d6496c776b22127a42", + "size": 90617 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_session.md", + "sha256": "c16fa9840c396f28b61c1c076b5d0e2fca4052ac86e1d41a1f958f363c501276", + "size": 1391 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/01_steward_to_vizier_handoff.md", + "sha256": "9bb4dfeea6f8d494e5bab48a855b231c7cedf8a6e4a499800aa34b783eb53df8", + "size": 1645 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_context_load_receipt.json", + "sha256": "24fc9fdac76317884fd2288d20792276b49c8f45e4f2f1f3a46a6c73ff7e384a", + "size": 13115 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_cursor_task_prompt.md", + "sha256": "4f7e3fbc26d87a524f039f91ed122a90ffbe7e3414ba25e9a0dc4d39009fda6d", + "size": 96619 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_session.md", + "sha256": "5c04f3cb47b2d4ccb3907991eb656ca283f12def76f8b193f8ffd2011cad2864", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/02_vizier_to_mason_handoff.md", + "sha256": "22494923b0eb80772b16fba7d11b508d0af91aee63081e18ca25b0127e65fa7f", + "size": 1628 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_context_load_receipt.json", + "sha256": "5c99f59623110b6239202673cd8129af0976125654ac3b63013a2ccfca1045b9", + "size": 13662 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_cursor_task_prompt.md", + "sha256": "57771e7cc6c48333313da1338c28b2c8ff3d33c1c0d9876aefbe662b4bfac022", + "size": 88561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_session.md", + "sha256": "0c686f2bfa950ca6cf3e33fac6a3092572c8f55e09531b4341d52d82f967b07d", + "size": 1334 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/03_mason_to_vice_handoff.md", + "sha256": "332ee6b8fa17ba1eb188994e997719d989f7e8abba3d0e82bdc07d4d8fbb78e8", + "size": 1613 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_context_load_receipt.json", + "sha256": "0c7a68d248946d1a97f0c44df3ad64fcba88d79f80b400fdf1f5336f1604a7ce", + "size": 11771 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_cursor_task_prompt.md", + "sha256": "bc6bd84b1e3feef511ab71832dcf5d0bc1a19f81d5e2f2fb18420c49c1a157e3", + "size": 93253 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_session.md", + "sha256": "16c1897b05f4e9a8288115582ea4ca74bba857d922a27a467c592b8f16db888d", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/04_vice_to_nemesis_handoff.md", + "sha256": "c5cf69b68953d50f3f7a0d3fef95e74f583aac058dda368d4eb1ba3f52f16aa5", + "size": 1591 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_context_load_receipt.json", + "sha256": "391c075ffc37b01ef42d71f043fc76e2fb9564c92f4a3a0aca93c186c107968b", + "size": 12932 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_cursor_task_prompt.md", + "sha256": "3c18ceacf1558d7c48056cbce5031d7d4e25e3c31685692df364b4ee09d63be7", + "size": 87898 + }, + "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T144807Z0000_carrier_continue_v84_carrier_continuation_workflow_and_productized_runtime_boundary/05_nemesis_session.md", + "sha256": "0b47e8f7adfa667ae7bc9cf73cfb49ac39e005e92820783dd0e5d9ca29192810", + "size": 1318 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/00_trace.md", + "sha256": "2fe5b686a27b677296998ff1dfd0cd6f3cc17cdd57d60d074ab84e0396ce02df", + "size": 2543 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_context_load_receipt.json", + "sha256": "ac62d396c0fb96da3a2e3a1cada8058194caa3d78b65179bba17fca9a9583e3d", + "size": 13349 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_cursor_task_prompt.md", + "sha256": "13e7f6d62c61b656d3a0fce644eb057ad84bdb78e56627403cea43700f1835a2", + "size": 90527 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_session.md", + "sha256": "b3816256ebe5cc3f262137a5f9581edc7d9ca829d152efcb41813f993013ffcb", + "size": 1301 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/01_steward_to_vizier_handoff.md", + "sha256": "87a59b27924241a9366c783c406c4fc792d0a87fbe142f270fdcd39bba2f63ef", + "size": 1420 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_context_load_receipt.json", + "sha256": "c35fe3711a0a7c1f521decebabd0e06a5c5f6eb96a83b30bd0c62ba0c07aa062", + "size": 12980 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_cursor_task_prompt.md", + "sha256": "913b8ce4020c99b8df0a72b3e3331d55e4451c0bcc569c979fdd55bfcaebfaa0", + "size": 96529 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_session.md", + "sha256": "5fe36238cdb7a143a5eaeadb26a609b8f13b151d189af6b691763ea7267b562d", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/02_vizier_to_mason_handoff.md", + "sha256": "3d86a67d4040b48a5e9023f62df19143a9164361dbf353b05a928a32675a84c5", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_context_load_receipt.json", + "sha256": "2364de5b38cc4f87cd66e76be0e284cc6a148c7737a50f7ba7349caf9819c4d3", + "size": 13527 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_cursor_task_prompt.md", + "sha256": "98453b84af20255737139765d4436dc0118be2a434f8d809fccdd9b784b28591", + "size": 88471 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_session.md", + "sha256": "d00f39e3f566de293d7c954d5b175e894b4810464c638be6ec9a6cfff96ade90", + "size": 1244 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/03_mason_to_vice_handoff.md", + "sha256": "1c688c4699c7cbf89e31ac5b0da752648c11e29831d4de71d7736404e2bc7f52", + "size": 1388 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_context_load_receipt.json", + "sha256": "3e64eb6353831db3ca0308e614cdf2fdb9a13577df107c170ac219287b75073a", + "size": 11636 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_cursor_task_prompt.md", + "sha256": "b3711f98ffaa6d1ef8dbac73747e629a7a23929a4dddad27ece64bf3cc2d601a", + "size": 93163 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_session.md", + "sha256": "f8ec79cf7173e033309949532fcb5fe5371d9983e11fdd0833ca676f9389e49b", + "size": 1206 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/04_vice_to_nemesis_handoff.md", + "sha256": "ae6942a37fd0e04d469f17039b48c85187d7304115aeb7aa470531464791baef", + "size": 1366 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_context_load_receipt.json", + "sha256": "873df0161b3aa3c6fc15d014e394178c029341be236b16706537383b0ca79796", + "size": 12797 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_cursor_task_prompt.md", + "sha256": "eae77777f6a18a6e1ca0d9e3b69e7b923f2e90c715ed2c554a99129158f3de02", + "size": 87808 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145620Z0000_carrier_continue_manual_v85_validation/05_nemesis_session.md", + "sha256": "5161a6bc0939ce2f331977f577b1cc6bc6e68c599b8d38905f4a8d53e244c5c4", + "size": 1228 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/00_trace.md", + "sha256": "abab622fcc68b43be3736abcd42eaeaa33c7bfb1349ced403c1f49ca514e5838", + "size": 2560 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_context_load_receipt.json", + "sha256": "1428361f1edaed2cc429f7519b473d4be03bd51bb2109832862a8bf15bff092f", + "size": 13400 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_cursor_task_prompt.md", + "sha256": "041ea9ce23cf0053edaaaa754adc17325ef8be782cca14a30e3a5c4bcfc960b2", + "size": 90561 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_session.md", + "sha256": "de88de20a93f1cf861929346c5b94a23c72d864f89e1b2f18a1e43b40c29973d", + "size": 1335 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/01_steward_to_vizier_handoff.md", + "sha256": "2e7b6e802bae5929ec1cd3ae20c2408167b99a71e5c189666654cc60b237fe8a", + "size": 1505 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_context_load_receipt.json", + "sha256": "89d4444cf865f16ecf4d822d63ac523f4a5ac1a07bff42f983e4a7f019506c71", + "size": 13031 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_cursor_task_prompt.md", + "sha256": "557906f4f7825affcbf865c9decd57b58e445427c4c09d6dc9478e577ca01607", + "size": 96563 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_session.md", + "sha256": "eb3b159ad4006ee90d2961765a6a419e145a621aba4d61bf74a0fea409d975a0", + "size": 1310 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/02_vizier_to_mason_handoff.md", + "sha256": "3708846157b0976e86d94f092a6704bd85979e007624a13389fa28ac5ee6fc2e", + "size": 1488 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_context_load_receipt.json", + "sha256": "fc574209169ac4f2a6f919331c71ef5f58a1d2dfe8ed50f44ffefe2447b0c980", + "size": 13578 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_cursor_task_prompt.md", + "sha256": "69d32f1f22aeb47db66e6dcaf88544eb1e35aa2f5b38267b8fc1b2dc8e84ef08", + "size": 88505 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_session.md", + "sha256": "0e7ed824eddbf783229774b441d977818f1c9ee9a2196a70bba26427da0a1c57", + "size": 1278 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/03_mason_to_vice_handoff.md", + "sha256": "e5ab69863c7fbb84cf4907fc47b0d39a6d13b21222bc70a67b8020aeade82d20", + "size": 1473 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_context_load_receipt.json", + "sha256": "43c49b33d747397e7dd8dad4a66d5d366ec310e2e9c16796a09024bdaa4a436c", + "size": 11687 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_cursor_task_prompt.md", + "sha256": "ef8bb3e28eabbb5328c72ef0cb05d98a77866c5fec389019597758fa3871b8dd", + "size": 93197 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_session.md", + "sha256": "eb23a9a4b9eb8197025e982d99a4d6bca54a50169e7b29de8bd024ce347721ae", + "size": 1240 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/04_vice_to_nemesis_handoff.md", + "sha256": "fe8a8df33ccbe13b9de685d41cecf4a7f03ef2ae8232671c635f9b1f1f1521a9", + "size": 1451 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_context_load_receipt.json", + "sha256": "a2cdb0ce90da43d31a7e95ed27facc37a7c8319eed6420369691ea1abdd3449f", + "size": 12848 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_cursor_task_prompt.md", + "sha256": "26d1baf0a9aeeb7fcdcc28474e6c26d1056a26a4e09cc243dff18b04c53cd755", + "size": 87842 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145731Z0000_carrier_continue_test_carrier_continuation_control_loop/05_nemesis_session.md", + "sha256": "8745df5c214141dd8601bc8d1d97ab3f0b2104f9305a938a0e17414b7ce56c18", + "size": 1262 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/00_trace.md", + "sha256": "b78a4cf50850348a13e2a7b4652f0bfef52dcc9900d31d6c37eba8c471b146b2", + "size": 2549 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_context_load_receipt.json", + "sha256": "6d4541aa39270304b6efd2ddec07d368873301194cdb907c3a2fd6c2e8b70beb", + "size": 13367 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_cursor_task_prompt.md", + "sha256": "425d3f81bbfba884324007114bae927f09691fa2c11a9e5d92ffd8c25642b8cd", + "size": 90539 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_session.md", + "sha256": "571f982bbc2a694287012de233eeb37aceab7d663f0f54a470d9cc6bd4c81e30", + "size": 1313 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/01_steward_to_vizier_handoff.md", + "sha256": "5cd39ab3d57f1d42442f96f269e1b152a44f397dd1b4c95213e76899cdfc4870", + "size": 1450 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_context_load_receipt.json", + "sha256": "6bbcd167bd188ae9b4a86bcaa67e134707d4ee7b5443ab1fb4548be6153ac26b", + "size": 12998 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_cursor_task_prompt.md", + "sha256": "feae0150d340a752ec00908b2a1c285d434fe35b379a74fa0fc7cca49b1824e6", + "size": 96541 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_session.md", + "sha256": "bda1ed8e762f51f2baaed3ae262624f768402b722ddf0a342f5f8eef79ce8ec1", + "size": 1288 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/02_vizier_to_mason_handoff.md", + "sha256": "5c2ec06634620f9ff9830cad33a79a4d723001342c774c57aecbfac6351c5253", + "size": 1433 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_context_load_receipt.json", + "sha256": "7edec7a270ff7e0fc0b5d59f0d11e0439f52cd6437745282495ec612040ec689", + "size": 13545 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_cursor_task_prompt.md", + "sha256": "4862368aea7dc9f81a10231f6438096961738c28cbb130005f9761fabc801f11", + "size": 88483 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_session.md", + "sha256": "19792a17e801ad3ec35c2fcd563243963d9beae234b11ba694879351ff00e00e", + "size": 1256 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/03_mason_to_vice_handoff.md", + "sha256": "b82f38dd989364b56bd5bfe3ef6df57554e26e5159aff47f3b8eac046808331f", + "size": 1418 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_context_load_receipt.json", + "sha256": "eefd776431d8d401e1d7c05edd5b44d8589cae3e1977df07c438c7ce0c3edafd", + "size": 11654 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_cursor_task_prompt.md", + "sha256": "432b948223477b0ecf21e888e94cd0dcaf5083b0b6f2057787894c65ec670712", + "size": 93175 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_session.md", + "sha256": "a66f2a93db7f03d72306ab04029800621821a82ed4da7f78744571299544aa1a", + "size": 1218 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/04_vice_to_nemesis_handoff.md", + "sha256": "2859e1a67594020aaa58eb5274a3b4ca20ea54041aae90f2f5a45cddac0e50b6", + "size": 1396 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_context_load_receipt.json", + "sha256": "7063b27d734c6dcfc836dd66cc442293c40978bbacdb7c10e86464ce25d6404b", + "size": 12815 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_cursor_task_prompt.md", + "sha256": "01fae093738e1fa16d1dd7f2b6e39493ff68a36c1bc51f5d3443abb0946b6a4d", + "size": 87820 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145733Z0000_carrier_continue_test_carrier_workflow_audit/05_nemesis_session.md", + "sha256": "aa66f80ff33ba0691b546961868a295523ebf93c0c4e37ae82bc10e2b7725f27", + "size": 1240 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/00_trace.md", + "sha256": "846aa8756ced8d0f75597bdb0d084323d288e93f0fe5a0dca61294191f3644ab", + "size": 2553 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_context_load_receipt.json", + "sha256": "b5bde7841b35d100bf2d58d0de612a0cfb9757a33241c3ca06065903acf0fd47", + "size": 13379 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_cursor_task_prompt.md", + "sha256": "e5bc9c5b2e7ed0b3519a192f9932552a932d3c0dd377cb2503d4e1965acf2deb", + "size": 90547 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_session.md", + "sha256": "fb543f383e072f1409aceaca42cb146f4d711e98580fd84a38b49bb5a2a83360", + "size": 1321 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/01_steward_to_vizier_handoff.md", + "sha256": "6c75828c789ff1fbdceefb9ef5b575454ac747476357e1cfd2d368aa55bdc2e8", + "size": 1470 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_context_load_receipt.json", + "sha256": "d432cce402e264566bdba4ea1423585b90464cad20ce695ae9ebf4407278dc7c", + "size": 13010 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_cursor_task_prompt.md", + "sha256": "4c943c55d46a99acac9574e880e48ce13309dc4fbe0bf5ac3469439cd28581fd", + "size": 96549 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_session.md", + "sha256": "0e2ba03f42ff85491369de2ede8073bf94614b4458c92b743d1cb2990c803aad", + "size": 1296 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/02_vizier_to_mason_handoff.md", + "sha256": "b817ccef3f16707bd7c2181ed44256569a451541005e47acec5a15f5ae1f7ace", + "size": 1453 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_context_load_receipt.json", + "sha256": "ef9a9733427b1dfa14ec82ec00ed9c02ef3f21e493f1548d91c1c3e302c680f8", + "size": 13557 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_cursor_task_prompt.md", + "sha256": "7ba5e97c86a93c85e6c888287712791b81e8d767f1d77f20266a8f888403ad69", + "size": 88491 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_session.md", + "sha256": "f2eedb4553c41ce116f2c091cf8f971fdd48171ba54558f0b2c7e1a9246bf9c2", + "size": 1264 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/03_mason_to_vice_handoff.md", + "sha256": "eaedecb0647ee98ecb92e7c1cc9e055244ed15eb272b902ef2e623b521efdfe8", + "size": 1438 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_session.md", + "sha256": "be656ace372884385b3468a95cfdaac99eede30b73304f4c2fe9562f73484e13", + "size": 1226 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/04_vice_to_nemesis_handoff.md", + "sha256": "25b1510fef21fb2aee70bab003e2fd772f9071fa4c8e0801bd221d9d60c2c9b6", + "size": 1416 + }, + "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T145735Z0000_carrier_continue_test_carrier_task_return_intake/05_nemesis_session.md", + "sha256": "c4a0ce3949d242d49cf3cce899128803031f889018637477b6c02c461d46564b", + "size": 1248 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/00_trace.md", + "sha256": "a64c9c4ace6d39ab6a6b84d5e9d011b27f30957fbb777b857a0e033886e09198", + "size": 2578 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_context_load_receipt.json", + "sha256": "0b142008c896a5a6aaa53cc52526fa4e52c9d4b09e5c949f61de39464121bce0", + "size": 13454 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_cursor_task_prompt.md", + "sha256": "972bfdd2bdb2a96c11cb66cfce45653e8653213915cb52f24e4d659bc293f8d4", + "size": 90597 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_session.md", + "sha256": "5f1c9bc75f00e11e1d16645a6a83aba2caac41202278e0e56364c90252083068", + "size": 1371 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/01_steward_to_vizier_handoff.md", + "sha256": "e56d705b684e95f0b1bc1457d89c68131c4e68437f5f949e41eaede39fbd847a", + "size": 1595 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_context_load_receipt.json", + "sha256": "b2afd9ff9ee8accede18c01bdd0827425b8fb2b18969cdd7294ecc394080ad60", + "size": 13085 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_cursor_task_prompt.md", + "sha256": "7d8d93f8902ca21430e8069d4bacf667cee9c288428f78ee5c31361ec0f613cb", + "size": 96599 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_session.md", + "sha256": "2183d47142545fadfc949f75af10c998fae6692dcb2cb7013f6dbd5eeedbf566", + "size": 1346 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/02_vizier_to_mason_handoff.md", + "sha256": "40aca2f81202faabdee5a074e3cae38f2bd6d279f75e391dacb929bd37b6fc7c", + "size": 1578 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_context_load_receipt.json", + "sha256": "67484a77260127f9b8ae52cbc4db77278a0d6f298969926ad00dbfeed4e2b85b", + "size": 13632 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_cursor_task_prompt.md", + "sha256": "133e04e2d27e228986a8c3bae0f77a644e4d52d808f05273cc681b5efd656c56", + "size": 88541 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_session.md", + "sha256": "38dac072822f1fc20b07998bf023d2cceb7cb564470567840d34232b04ba36e8", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/03_mason_to_vice_handoff.md", + "sha256": "fda1409f8337a1dea25f0ee5164767d0ad8a1f758c9a64abcdff4fc66f2e7daf", + "size": 1563 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_context_load_receipt.json", + "sha256": "b876e7b44ec3e40e0e6065b859bd271b0d18bdec7c7b69e923cecb0304e6e50f", + "size": 11741 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_cursor_task_prompt.md", + "sha256": "7bbed636c86814197891419ac5cc21c53c1aff91569e5a6ba1c8ce539ffcee3b", + "size": 93233 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_session.md", + "sha256": "de1de580eb37cbcc1971f8807a9ba81d1223b2a68a62eb44a2a864ae912afc38", + "size": 1276 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/04_vice_to_nemesis_handoff.md", + "sha256": "28aedda148f5d130131fb783dc07eaa3fb8010bd000a1ed95f47eb5290de18c5", + "size": 1541 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_context_load_receipt.json", + "sha256": "d026d3d07d26ad3a1b9d5cb12768a8f8c40a909e34ad0291e3cf719a82ee3068", + "size": 12902 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_cursor_task_prompt.md", + "sha256": "20b29f6b9b2cd55609d067e9189e7885263f64faf5588e38cf07ec4f04275b67", + "size": 87878 + }, + "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-29T150342Z0000_carrier_continue_v85_carrier_task_return_intake_and_steward_queue_closure/05_nemesis_session.md", + "sha256": "c2252f2a4ca8f0cd1971b40b6cc62ee96b1a6c511f199d08d5d532e3b37201c8", + "size": 1298 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/00_trace.md", + "sha256": "b5d843cdd551f546c7fb21582d588f973af47f294cf0db09ddbf0926fbf5106f", + "size": 2564 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f6b78552c9aaecb06eead0fb167732fdf54c8e2111f7b8604ce29eb56fd2783e", + "size": 91365 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_context_load_receipt.json", + "sha256": "7342691faa7a95533841b8342fa5e37b08bfa6370182dacbe0b6fa836ea54415", + "size": 13714 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_cursor_task_prompt.md", + "sha256": "61ccbb2d69da42e9894d0e04bba1f369453e7db1fc67b50b088337adb5f0298b", + "size": 90569 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_session.md", + "sha256": "d6350728b253bf3912109720607f793f76d7ad49b61e799f018a56896fa2d23a", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/01_steward_to_vizier_handoff.md", + "sha256": "ba490ad517b5f6ac32cf370e33e2d9406103976f43bd027430b2c1fc7928c22f", + "size": 1559 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "2c3526b51a00281e8ec735b46a746d9f5b1452e6157092e72c8d79f5da6cfcda", + "size": 97363 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_context_load_receipt.json", + "sha256": "4154a4737e716d3450eec84bee80095f0d17cbbf58076637e62e6021670a7e5a", + "size": 13344 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_cursor_task_prompt.md", + "sha256": "51a4d572d8763252813d864fa5aea17331f924434ccd705a0dad688a70736730", + "size": 96571 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_session.md", + "sha256": "df46110f28611c6d71ef31537e76a4854055ef6dcf8670a9a4020e23bebcfcea", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/02_vizier_to_mason_handoff.md", + "sha256": "c4b4807776d775044294df41c53d291adf028699d73d9f3c69eb879ae20d11c2", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "05e3819bc8214e0a2d503210ccd973eaf6dd8034d8be4d65b7f697acb8f4ee58", + "size": 89301 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_context_load_receipt.json", + "sha256": "f8288c1e528e60ff22be9cc7edc769e570432aa290bf71e5526bb6836ab0e3b7", + "size": 13890 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_cursor_task_prompt.md", + "sha256": "83b7f56ef07c0ec3f85e76515810cbb0fb7c5079a0a7d88a6752a6f440b9b7ac", + "size": 88513 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_session.md", + "sha256": "7f2df055ea0681ba5ada6dd3ff84ac48c581fb7ac5e8de0feec05c9ea253e7c6", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/03_mason_to_vice_handoff.md", + "sha256": "755080c2fe01699903ee5cc39f1824317f24a74c5c81187968ab8915b9b46f47", + "size": 1527 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "e906884e3d0e4fa53ff381e4dc19b74fa9d18c9771f8c5da51f4881864caf3e0", + "size": 93989 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_context_load_receipt.json", + "sha256": "053336bb9d765caa6a91f7380123960aaddb3d5b7242ce8b3d3f306728906806", + "size": 11998 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_cursor_task_prompt.md", + "sha256": "4b47790abc75f8829248437c3c8254c5c991463740188b185e954609f466bb90", + "size": 93205 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_session.md", + "sha256": "316be451bd1ff60c2ae141cc8c9d1520acefb7cb4669c27244963a240e8578e3", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/04_vice_to_nemesis_handoff.md", + "sha256": "9cfff74a7848709a26473ccffd5f8203b44cba04b4cccd919b950e9debce30a0", + "size": 1505 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "eba03020426a5c8c4fc1bdca78885477283e4a41bfad8d37a8e7158171416661", + "size": 88646 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_context_load_receipt.json", + "sha256": "3355026c320343716b6c17e75f5f250b7d507a1d7a8e58e4dc42a14092f960d5", + "size": 13162 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_cursor_task_prompt.md", + "sha256": "307d9a17d2704cbf772312d5c88848538b526765ec910e95830e3ccef82cc7d4", + "size": 87850 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_carrier_continue_v95_compiled_role_context_bundle_invariant/05_nemesis_session.md", + "sha256": "e40f2574b98332f834f202b3be892c149729a1faff93902e8eb63ebe59186f98", + "size": 1338 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/00_trace.md", + "sha256": "4b804cdd6af711e71a7cfa025b4aa097e8b3fc027fdd778eed5c60c3796bce39", + "size": 2550 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2ed24528c63d0e792a9ee35aad9fa700e2bd5088f8edca84bc3e6e6aed1bfad2", + "size": 91303 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_context_load_receipt.json", + "sha256": "581da87d50481f689df084142e28295e68e6ddd0b8e0d371981f0161a3ca309e", + "size": 13652 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_cursor_task_prompt.md", + "sha256": "c3b7d9d10133eed0ca94549a2aaa599e971e5b1f4b73d7f247959e5316882b67", + "size": 90539 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_session.md", + "sha256": "c2aa954d716e40e7c2a370d94f5d5af734288723e1c5bc988bc52b287363b085", + "size": 1235 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/01_steward_to_vizier_handoff.md", + "sha256": "655fc58b93910947316fbdb3f3d06bbd3b1f80ddc271e9a874bb6764da28af9a", + "size": 1421 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5de965a91a9a70760ecd6d5ac86c89ab0e46e3cc9f55b3a6bac0fc3a60f82dd3", + "size": 97301 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_context_load_receipt.json", + "sha256": "986259f9a5077b079218ee8297b16d55a22c4d57476983be6edcf6da27bd24f9", + "size": 13282 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_cursor_task_prompt.md", + "sha256": "c059c64efd8954a0bc2fb68c2e2b93faf7880f3b041eabe19ba4f15a98fc5ef7", + "size": 96541 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_session.md", + "sha256": "1632dd1ec88484f413a2686983d837429ce61d0b52c318c03e97719a0ddbf476", + "size": 1210 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/02_vizier_to_mason_handoff.md", + "sha256": "c0ae676269c9fb31eecf282eacb6b2542ff4e53ad58e491d541787950d742074", + "size": 1404 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "50fb42e0624f982a0506c928a1f08465487aab9cb88bd8c13989477d4b1c8e04", + "size": 89239 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_context_load_receipt.json", + "sha256": "9cdef0b5a1cc718672297d0e2187e5a9906ec7fa1f7fd5cb7e34efab87dae13b", + "size": 13828 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_cursor_task_prompt.md", + "sha256": "8280acb1303bf6f2c150f5ace173ced1731bf8b74999849de03a36c5d194d569", + "size": 88483 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_session.md", + "sha256": "2776ecf5edb747b61e629588081123cc42496193ed57fb6fd02a3a983530ee78", + "size": 1178 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/03_mason_to_vice_handoff.md", + "sha256": "24afe4ee1c8e4a5a78448f8a77f6130bcf95610ed62759d1b597eecbdc3ada89", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "533b3ac2b66ec6504e351a5ee450132f161ac5d8476190206749f075e86cd3e3", + "size": 93959 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_context_load_receipt.json", + "sha256": "58382a7997c85305c6ffd14693266b81117db24ab117ff2b4ee194ea084c08ff", + "size": 11967 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_cursor_task_prompt.md", + "sha256": "b0179f49da0fc318f9475f370b2cfa28016b51e61283ce5787f255144e1a9323", + "size": 93207 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_session.md", + "sha256": "68b77649df1be6a81ed704799dfd5fc0a5bcb0937d338830d5ec7c2b1d7c30d7", + "size": 1140 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/04_vice_to_nemesis_handoff.md", + "sha256": "6fef1fbfbf6e2f87bb3cf48a45c1c83cbe8af0309713d55ce99876efabea27dd", + "size": 1367 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "6e1fee3e75afd9c7e712a73085f5d32775df098dec30d0d0231c4a85a9bb6445", + "size": 88617 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_context_load_receipt.json", + "sha256": "984071102f87f6724de6fdd24abcc122ef407d0fcaba42a15e6937821014aa70", + "size": 13132 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_cursor_task_prompt.md", + "sha256": "1cd7202510eb6e3a5e163f24f3c79aed4e2375db3827200912bb0bd87d2fb21b", + "size": 87853 + }, + "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-04-30T145524Z0000_implementation_v95_compiled_all_roles_proof/05_nemesis_session.md", + "sha256": "a136bd5f8ecf19edabea1bd8530fa09673b8428b685fdaed16530b1afd136bd2", + "size": 1162 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "ca111c2140a2d60f48a6c64af1c34f182870947a7244e0aff80277dd42e2e139", + "size": 2638 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a16e6279210426c0f7fb3856f131cf2e7481a2b1434e969526916a88c43248f0", + "size": 34835 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "9619d95095531f5456dba40e4e39511cad69450176c79132933085f41275960a", + "size": 12237 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "cd5098763e4b9696cdea6a7f5ee0a71833a7175aa10f45fcc60c985477fbafa8", + "size": 34073 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "1300ce0474b7b09ae46fb0bf303669a64860b95a2e6be1d993b0104254c3de26", + "size": 1329 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "d69eb366e3e9cce4188483aa49261c213c4a061f50c99c8caaa6e6b51e35660d", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "d8e0356b9a676dc0c0376b6b9123455aee2104644938a0425ce3788eefe1b4d4", + "size": 37544 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "e6aadd694dc483c54e719c6529a090006151638464e4836750c0ba2edccf4e24", + "size": 11516 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "75d0c491c7b6fd552100db65a508aecfd43399c0c60a1719f8237312ff5402cd", + "size": 36786 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "8b13e3f8ce97d5178d36038f87ca067282cef126bd692cd0b7c7ee5cb3566eb4", + "size": 1304 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "df3f69dfbe19e7b6bb16489ef57d3e959d57ba1b8485aad49e112d59b060fcfa", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "4b08ffca4e6253e99979afa4d64794147b3956ef54a77b9c940dee945a953283", + "size": 35437 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "e9dc10c6dc0551016d8520b527c3705549948d9f54fa8f175ee8d5e99b71021f", + "size": 12078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "2b40706379f963ac10a1beec1386e656f5a0f2e2a41196946bcb6fd419921a4c", + "size": 34683 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "41a08a60b9b29b871fb66a3fe6c54cf1818500b69b9de79a2c45a1fe67018fcc", + "size": 1272 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "c4df7420a2a47148c591dc33e319339d6e09d1f5c37cfb191de94e75376563a6", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "a3a66d8fd4f0c33a9e24022f3eea5920fde294bd7bb940cbafcae1b73682d098", + "size": 37336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "e143ac4a9efedf22ae8195c3998f93903c5ad2bacdfaf1730121c53bcd6d8b75", + "size": 10521 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "88c130ed4d444c83212d14c75db4b7c121cfe432de66d63e38d7b8ece49aba88", + "size": 36586 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "3663cb818a629665a92e66f257ac2efe9b223b5eb6b42a187ae149d663adb52a", + "size": 1234 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "e6534be8437576d0e51b5c452c87b85c80ef3d2f1be60eadf79c71e9112e986a", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "78cca35e15b6e09244827455c8ed88af86f7ac544882b31bd8d4234b47646d25", + "size": 34733 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "4de321948f1d293aab1324369c1381056a4f5c1a90a52c6e9f29b8461060de1e", + "size": 11625 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "15a66b9cc10984aec18e52cdf0fbb9677826cc3acabfcfb1608bef43ab1a9cf0", + "size": 33971 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194101Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "71df261b87b0355850009cf54cf18844a350ff9a756f0fced37be6f93a3de854", + "size": 1246 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "ca111c2140a2d60f48a6c64af1c34f182870947a7244e0aff80277dd42e2e139", + "size": 2638 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "938cb4928eeb17612535aa5c462ed6a1cd98c4c9ac2d1627e690e6e4ec1000d7", + "size": 34835 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "ed960b400de004047a282a31b442a8cc7670fee3c84bffbfb950391e9ae715b7", + "size": 12237 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "bc5e51624663caac769f808aa2f4c449ffc983343dab8f26c007ac1ec631d4b9", + "size": 34073 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "97c4c683bb4d0d6345ecfaf168d84afb4bec4286cb164b347b4a8bc4f390bde2", + "size": 1329 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "ae7f18e4ec91de5dbaf5b25008e1c7642328bd5eb5e633998a896b3634d96fd8", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6561a97accb54691dbbb906463ecb6b9d7ac0cde5fe9b8d6cc95050cf6c84ef8", + "size": 37544 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "988af129263b0b16353642d11ab9be4a28080f78ebec4e576901721a9889659d", + "size": 11516 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "cb4740d7330978477a8c2e398402d158b473cef6bbf475c1d892e28b28afcab8", + "size": 36786 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "ce588f253cb99cad549804570c647bc76dc7bd61afd222f32d40917bdb38c013", + "size": 1304 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "898c386c79198277057830739b78e29b5226d05fe7c6d9d79a8c5af8f71c5453", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "bf73ff43f23e74ca622b2ad029f39f2eb85a12ae2df6ef47d38c4e39d6988ca3", + "size": 35437 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "c5fded08f40842def83c9bcbff20cd6f4cb6119c18d0676ee1cc848f8f03864d", + "size": 12078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "0a257b618ac19550c6a7ccb6b049d8c7e058831940d8aa64bc0598d6277beab8", + "size": 34683 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "1dcca2cec0663f4e9b15f8ed7889b1395ca64b91f1817da7053c96d45f50f945", + "size": 1272 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "e8da2d79dffa55e82517f5c0b0044ed8dc640d3ead62195ec8dc4c9e9f187245", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "c7fdee0068e42b1d669346a51be29ecdec32110efe6f35993b9676dbdac541bd", + "size": 37336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "cc24f4bf31d39afc8a4e7096160d1f6325cbd5d4075119120b0662bd186acea7", + "size": 10521 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "23842ae9f22fab7f9fd91c6048fb8b433a9dbba0d63a0e651e42c1abe268ed8c", + "size": 36586 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "643320a49cb4add4cb9aa614fc7daa28fb4739f6d64023f3949a26f355874b49", + "size": 1234 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "055909e0537bdc2a04b7ee9166c964223f290fb8ea2da7b4366d08eb7634cabd", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "d56e619fc7c72fe658cab77ff1d30620e31dfd4923536817794fc6516c5b1215", + "size": 34733 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "c353719a0fbada4f412f81f84c2bb498e4b761307c958cc03eaac601b5bdb1ff", + "size": 11625 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "5c63bf5205b3d7ae8a320f9df001789bf97426f01e37fe50c7e75bdfed30714c", + "size": 33971 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "df5b45ecd48fa458edebaf7875c38eccdc2aeb4d271aedd9778e1851dde800a4", + "size": 1246 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "05e31439355177ba037282a8e9b1c5a65afc94e9694d495eee1d22789281bc3f", + "size": 2628 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f92126d7a6039a0d2339a31e033853c9f2d704188d1ad2796edaf53af401d88c", + "size": 34795 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "d398025ca0acedc77e859f1c9fa2abf5792c21cab53054d61aa51827036f09da", + "size": 12197 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "fe6c83264cd1d70f17e0689b83d631888d40e33081e76af2b962cd5e8167d5a7", + "size": 34053 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "06545d9e4d557a3ee059902313e6af37e196826e173a67ca35f49e047b57ee14", + "size": 1309 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "507a1ee8d0a420bff007725f68bec75aa223bbef086d2b959f2244e6563de904", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "2d059a7011d76079290ccb4c657eb26809e2c008363d357fde4c71ebca6c1ccf", + "size": 37504 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "e101625163c42631a495068857ca0b73d14a24ed845c67ccdabec58645db5b61", + "size": 11476 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "94554156fe43154e13edb03734da03c1b904920e90698f3a4069473d52210fba", + "size": 36766 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "927cf5bb114a2abd22e9ae7b8ad868f5b03aed5ec0aa80675aa642a5a5cafe09", + "size": 1284 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "e2153f8d1a474428e4c61fd53fd6f228529f916bd7632f55e007275f048e8b0e", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "1f9af2d36458e833a503909142690f3bddb7ea4cb457c81cfb525764887bd36e", + "size": 35397 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "9428b56031cd9ded6289a77517d5b5f091a2485f578428f6a89446d65f0082db", + "size": 12038 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "b3ef99d46c12d6dae799b561e314d32c08a29dec2f8c44d3225a7c1c6cd510bb", + "size": 34663 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "67d1bfdc7ea9b0b1e682637a84358ebe4e9e68ae1e3970a4571023270c63b38c", + "size": 1252 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "f1a5520cfc92aba7121e9d7d8818ddbeccf35ba3d81aa961a49286c0e14275b1", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "785ffd8e581c1ad4dbaa2b96623093ad7ccd91d15e149200190cb059ab659dc6", + "size": 37296 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "20b01b9088b3b62d05ecdf5f248bcbff2ce208929174409d6a269c57281a524e", + "size": 10481 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "b166fd272657fd75e75cead9046abfcb01bb080833847076cbed938f9e8bf057", + "size": 36566 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "f5c45da92345040ac8a3c450505219c01203c2b1cfa5abd077c78b04e9e59c50", + "size": 1214 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "13926479e55e6f5f6ac726ede0d99e9d8ffc16d18a0978992264d9270edebb18", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "74af2e48b4a7c706e81e273eca18b89ca4db1796f3d29cca876b07594a8bcd2e", + "size": 34693 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "c78c2478400e1b9688fc6f36ee99d7022ef1f26654d9147bb6a4af49bf9cb839", + "size": 11585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "f283de3e3649572bb7c2f0e0581952acf49fb180a09d6e584ee200693927dc40", + "size": 33951 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194102Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "9a72600e46bf22535ad82a05555dc46779e15d3476f9b17bb41ea90cd30ceeaf", + "size": 1226 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "05e31439355177ba037282a8e9b1c5a65afc94e9694d495eee1d22789281bc3f", + "size": 2628 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "36edc5907dc493955c8fa9511d8f69227ce91b3043d7c49a90f39251e1f4d68d", + "size": 34795 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "7afaa70790378727257c66c50987f8444e852a078d9f72295187fe99da897cdb", + "size": 12197 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "37d29bd685db41f267c78e4a6cb066d5e1339d3e04e62205bc9d70b14e07ca22", + "size": 34053 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "e23f55fbc30dfd589e5cdeacfe7065e99839342cd2449ab76ee194f667104bf6", + "size": 1309 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "0f80869f16f3f41e92f41b29e4d0cda6409b0c227d112a22f1aabccb371aa2b9", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "02d862b8a13ca5e1c811581af1e0a345610ffc7703337f263221ce22ffdf9b38", + "size": 37504 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "4328bb34174c7e8cf126f893cd9b78cec200f4c749f4d246c5b77d5fe06198e5", + "size": 11476 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "4dd639ac53d7ab55970b06c5c4610f198341d4d45c6bc8ea81f4520587d5c35c", + "size": 36766 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "1934eade0973b1446ff3dc805f0139410627e7ca3eb74904b6d785da46c91b73", + "size": 1284 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "e7ed1acbe2bec9c19b857b698d7a518a20cbfcc235582f7d92b8ebd7db2b446a", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "242f40c3f523ebea14269112e8fc4f2b37da85bdc27c555c167058c2186e0c0f", + "size": 35397 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "8bc6360b6b2ebdce8f0e2f05f38cbd33da606a2a0686b42f53fc4d7fcdf8c9bb", + "size": 12038 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "e11f1eabdb77f88c7464a941a8b98e70373dafdc6c96e893642875fd41beefdc", + "size": 34663 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "8af6dd0fa913dc85c6bd0428ea91e12502c9b7aa08bb0b756b66b49e0ae229a7", + "size": 1252 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "cd720d7eaa27c11b78021c710e80caa1c5a089e8c8ff89795650eb17ff2fea20", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "0839476c75dedbf167a75c99c74abf3530daf7e93da8bdfe5209cdd66558abfb", + "size": 37296 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "2f59cae567af1e2e2f6f5d6dc070777806ef379fdf5bffd06e5b97b2463829c1", + "size": 10481 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "d2992c3ef8c5ffe725e155af5b9c10ee6c517e48bd7ddaca447dea4cff1b471d", + "size": 36566 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "0c203a07c12654dd413228c54c3c3014df570dc02e664c14db774037eb397f59", + "size": 1214 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "d31bca2da83c6f62bd9594dbcb7a09fe89d513e1e5cfdd322bc04628f2cf3736", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "85e5d6bd193783e07eb90eefa8be880363b89149474d45cd07f26d8b4b5aedee", + "size": 34693 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "16c969260cea89a301131d63d167bcecf3643cfe3df8bf897ff2f141a916acc4", + "size": 11585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "628a5ce8a29fd11d3baee6d95c9aa7d4309ad53811c226ebc9c38141acc2e085", + "size": 33951 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194134Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "ef557322263be0845c2301f316c2dd858a9d4b94d7974f04c3849d2064918021", + "size": 1226 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2ae6ca7a254dfa508a1de7bcddd81b4965a4c92834a29837f413bfdfb94b22da", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "0e62ea280126bd7ca72c89b5799a85876ece2fdf993350721cbc7371994419da", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "47cd02b56800fa872c1909f5fc2e26369d56c1d3c1c1a84b1d78652b35306e8b", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "98afcde3b8a634e533e7891a0aff1af608ef556e66f7d66cc0381a4348d7b250", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "b4d084c10491a7d82c5c192413a22edee3a4b80f3336705e9a63dd797cfd0ce2", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "50960d54eb8dfde36776cb761f244ce5ae9a6a60d162f4242bc7b99ad4ef65f3", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "f66e250ee2946fb44b5d7a7a193369f76612b5fc6589a49e1adc5c2a4f54f8a2", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "67f4ec336cab0577fb3116f91ef882ca0db353656d8347b5c1ccae14ad1c4436", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "094783818fe53ba94b613cde95ea413a7c4ed06ecd1d8ecad107f178b2c16e37", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "17345d89042359a0974d7539df362cfd245d4eee479021d36cb088834ef80c2e", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "fa1efdae22a1ce8006576fd9598e8e0a8ccbffa73b12d73cbad940049da76087", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194425Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "8262f202332ad6112498478f95611bc2686a56dafc78547efa1c2c1ee1efb9d0", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "9d85b3aaeb42fcd613e5f8f59eb828e891d4ab0344b1a5ca4070dcee9926337f", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "e185f7bb772a609ca259251d0426e579f69be245b7d8edd4b8f2ca0819fd206c", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "b6ef57566e50b12e73629df2f65d6556de918ff92d5c13d0d87e99f49c04a0ce", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "c154334d4807d0ee7c516f72b459f09612497b23c53b1482bce93338eb60ed03", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "a6391ead45d12e731a7a2c32369a92696d8591eedf4e35f9b6dc17b3b1ddbd3d", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "4461e8847328eb62d1643bebd3af18cc39b970907e3b1efdbf9f15adcd005e74", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "1f58325546fedd742b0f4c08d230db37642c3e1ef23a0a3ba32cffaab28d1907", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "b4269069288690adc8a1641e221fcd326dd101c797b4a56f72c6ba7051c09226", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "ebaa015d2721f449ade67443c2df13901208d1a38400bf1b0a401f59dfe3d9e1", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "01f036765ea526d5642c154742efa0f818a0c3bf1568cbf990f94bfae3b9b12a", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "58275bb109d029186697234290f9c31187a851fe7ffc926dbc8ef74d84d79b12", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T194426Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "7d61c61ca6b1d84e717aa9fcc90a8c3cc223f0297eb1ffdc30638e68b14db5f7", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "789b0da09454baf143f8a65278395a0f6b04ec7cdd8f732256e3eedd2d228d5c", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "4711539f5c51919d28631efc3d9dfe36a69a482c1ab605b7d1f4f4fdb21dafcc", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "64bf8e3faac52df7e1ef60165c853b80ddeb1c216ecf0572340179c2e698d64a", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "b5c01c1a6fefdb2144833a57693cef47b3aa9d41ce292b8e1dcf83b38037e88a", + "size": 1365 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "746f01e39aba6c94340167c2c3c600db4d4dee8bdbbfaf4b58d84224d54ad569", + "size": 1457 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "4466db05d54f8b3dddb87a062a9f9fe9634e39bafdb925a69c999852f8acc774", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "f6d749b84a38e34bdfac0b18bc05489e5f063b42eedf15a54166cf0a0620d0c3", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "e543160d006aaa19352538c623617825c1afefa6589974966d2d1a88c3738858", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "980f7f514abdf21de604be21b923b4286bbd9ee84f082afb9399c111c3632c54", + "size": 1340 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "da2d203935fc965161afd6b7aafb9b2a6ab18b9b342be7dc48d25c666016eb8a", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "d3f3de854327b39efc04ac3a03edde6e600a35b2af146a47706561637c6f0cac", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "27b3bf0af89c127ff7439017924c32134b5b8b03d290654f5b34652311173f56", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "b4ab4c8cc6bd9fb682a8317242e9c3e16a9d848876bde0afe17302fd77079e11", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "5137e9e5704ef12977714901d6fc55c7d706f6f1919a34509cdd05c641d6056b", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "d2712645914a1d015aa95b264c89696d6ea8e47510713abe65dd358bda3a16b6", + "size": 1425 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "1fe518e78d0525e8d557e0eca0f07f0769f6594b79392daf0dcbfc7e5aaa4bae", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "e8653918e134819faf022864bea5a96f277dc60a5970e1dc735315d20f1b6d2b", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "a1638882e13c72a679c5373bbf348ef0255b000f03c9dac5335a3628dc9f4e87", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "d9b1a9e11562b133b745f90af454a4b57fea1b4d02f6310022ca35b9d906dd31", + "size": 1270 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "e9071097d5c33d3e2dcd364da8c75ae3af48d6b774c21f82d1ee26f03f3d0290", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "22ee00359cc5375921492b51e6b828d580e920e75f21326500196e395d80123c", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "b9f83313670c85c07ff3d3d9fc8089f830069bec5953fb9d55e3265a5ecfe817", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "e5642927b3e05d65c919281aae9d2925362f7f6837e814670ded9ef070d40721", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195610Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "22d68319a5b4669f91509009403000799005eaa06161300173950281ff86ca79", + "size": 1281 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "d68c862a4ad6522f855f6a6a68a429b5b4b513fd18dd0312767a87c66931fe9f", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "8235135d2f519127674c8c61b117f7060838b7b4f2cb32131acdbe83395c0d1a", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "40e6c00fa640bbb45f6aca2eb3c8eac27444037b5b1967964108b6df1c88ed14", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "b15a038f0b946531a0d8cfff4db30602f87f3567f35addb923999192adda8cae", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "eb82facdb02456139c9cebd069541e02f3fc042e35e77a0461dc68f34961d85c", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "c44c05f33a614c9fba324db413ba4e7509c0703087fe4203d1d130ba9bac126c", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "6b798758ed5391ce0dccfcf43eeb5dd7baaa310b32a49d02f3aa5bc6dd66be9f", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "e8e8f3e5a0533d46c6aa6031bb60f9c272423c661927181923a4166e6fe20daf", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "a118fe661916520944152242950961e6b6f98e9d2398bdac7bc83297292efc42", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "2e55f34194d7b7e700ec11ca20cb5c74993441010d70c50294580d11ff3dd7c8", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b4ffb38e864166297998e5981a70e38ae2f23cb770499481105dc8db3d9015ae", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "c4a18f1489ff46972f7c93f51925847ba4ca2f3e213a5fad9562c41973db6369", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "7faf3e01c160c259f430418f80755d1a65d6ba7ddd366f00d0b11abe26f08120", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "01c962a16a96cc2dbab1d14dfadb5d383a9eb8a0c5a3ecd2d8364c149b66c284", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "7f8e2ac2456e48f62a6cea2cf762f3c2e54de8ce8cce14855e5b93b4a7e258c5", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "0edba335074fa2ce879bd290f834c330ca679c05ae0d1589ce79a80de2206ee7", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "16944553678d0efa0d48e56557dbf5f7d1db04d608f7364eda7d7839f7e8f6e4", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "16839f1cfc9b5d6b51b97239b166a3c99f844ba366a7b8b5b0139b1f7a087f99", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "641e5eadffa9dea53c703d7c584747501bdb1f4e52ce2cb655475db625d9537a", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "d1fb2b2e2725c031681455a9aeaed628b8fba41784689189a573551832cfb3ca", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "7e20f9959be69bc73eb514921a9c98614b36b5c2ce44f1f16188ae181671182a", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "3168e08cbad83d105b8a3951af40df719a96e85715d54338b4d1aa9a935d49ab", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "8510175eddd4266fa44c4b13c05920b8ff277934cfc7f58c29636d32eb731eed", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195611Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "d2d4fb67305b1a753d0d70a9328f245cac492cda73a098b046cb5b153e073dab", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "df3e91c51220e7739be1e2ccb2dda71510b930322c0fa148bb7b5d976b955e04", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "960a2be22994f05ed8c5857c9b9d91f50fd13c0447c5ec1afc9bd8a24d8075b0", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "b34d74c0fc42e5be718e9d65061ff89be14239e14b01a1af134edd4c82223750", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "fefcbfe5feac0b7bfab42ec79b9f76f43b42cb80fae6afbc19814ff2e8793bf0", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "3e423fd4926ca3ad15ab4f90cebfd461e4871676d6699c8500fa12f86b6a4b32", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5b8cb85d720e51d031afdd851175e8627d030f1678d35fc8e251647f0fb61dd7", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "5e8c6f5c155b2fb1f895a67830b1120b778b4d4d7914f97065ffbd24498c89af", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "11e5a402ac27fd91b4aa79ad31b10eb8b0722da3809da0f85fa6894b3b2b6f71", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "c7f2abbf03947a794887453204c2ae5768c7b600c2e92075f7b79409e3013edf", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "fb5668af642b8dd2cb055c0d852f650b5043b0f83cc9f14adc989f867199c80e", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "59f330bbdf3edb4945424144fe4657852d3622de14687f5529be03755b55b163", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "544f04a13dd2245bbb15b4b623e5580a041d6828c03b9a1411c5e295c2cb2e36", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "0bb700ff4d0391b4e69c462f64693ad02a5be174b0551dc9bd6a9773833350fc", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "6e4dc755eac1c4d8923cb0f98c28e8ecb2608dd9eba28802325577eecaa38909", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "5f892cb0cf5028017604d4532607d783654d9a46b5f8ec5063bab3f23a08a528", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "31c15b687537b1733e93395bb9adb9c6e3156f8dbdce114f8ddaeb118b8aa0e6", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "163194c4d59d223cc4e53985cf29746640996e0293672d2bec7ac01bdebf5705", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "3e002f28f8d947d8a2f001aa4052d7355728fe59769c27ced27717cce63de13e", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "61d0e667b3b8c8a9e08eb152794c6f3147d225e1ae023586ca3014dd9c761d72", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "f7783554ca89b32e3d864e4bda9dde33a141d810a9fc2a02fd93d13c9ff99434", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "cc48becfdfab6290a031490f012c6e21e88b36cd0536adc85416ca96cfdd42a3", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "c7a55132c9d0165a1d73e07f8848a53ba5ecd92f7903892dd6c26813f47ea400", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "0e79db72a1ffafd0bc7f67b4ead67b216d0beff7bf16fcf73fb1731941b06abf", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T195612Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "d95cf810890575f6eab6f0f9ea320852042ea28e928567dd3cb16124399f087e", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "20cd5b7971e06b049a03300ab4b9aebcb3ffdf6943433524db0ee17c0ea3b944", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "9d443e85eb9c6a689398767f0a96a3e447510fa0ccb8a3a47fff78ce4abbf4e0", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "3bc7ecf3b3d0b40ba1a162c161de7d8a289b882f0f55570ef3eecbf3f06a5951", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "2eb26f215fa224e0554ee5574b9f32f1bf466fb8764ec213a159c11cb7ce08b8", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "65756cc0a1dfa2fb967c74ada76c728fe8c3b81fcd003c635d3fd6b4a8e8ea69", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "f8699d62817c1628587ae4765dd5ffad408448a2e28a59ba03c6ccdfcf64e51f", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "87c799eec8df062eca599b7d3904184535ded1d2aedb02bda83f5e4f9849bfcb", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "f8ba0ad39190cc5e2b662bf9a5f017dce26d618deaac3c043873b2c75c1619e2", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "82bc00bcd38ee816d93a4da75b8c993d12ffbdccbf1c3a7cf65754eae5d6bf44", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "5b3f64aadfd4c986b6bb4a39ac9b97d0c58bdbe34c67c8e7519ea391c45afaf7", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e130a83641524f292bf383ac26fbb9d6239d7a8c3612bdee059502af4b0065c8", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "1bd435f88e91f03dc4fd99ca551a7f8f0c338ab6dfd1429cf5e74e5687e7eaff", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "d00ad639d762f0bb4143653e35d7be53eb470dc7d0b44a28d467a0333e3b7aba", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "46d02ad2b42e8a577553d3c4766b0b1ba149817cb772fdae26b579942bde033e", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "3ce34ff62147acd99549f06ad59cf37d15bd01fef0abf5c72df28d1ea2d5d79a", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "9480ac2ae9989f6148bab3949ba6ccfdac58d35c100e3464d8ae898c104582ae", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "a9f4859a4e06e14dae410bdcc178449f46cafa94c80c2f4ad4dce5b0cf534ddf", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "70145ba84fee54f2960a2b213e1f6c9134b9cf01fe6ecc13988c4188d0a36e25", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "02642e67adbead13e74a860124681d4157e1c4653ac0c5222817d482eabde14f", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "fdb7a724082bccf4bb003617bda7e7c0e7e9bc426ca743eb25d2ac8bb826f3dc", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "1c486a842a931220a53f0349c4d935c80cf02008cce5b09257f4bd5c4c46d3a0", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "544fab378ae12218945f0cf4eb381f52828adc72e48dccf2e118a38f76ec9ede", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "9461af7ca95326dd107ce738626934031b735068cac8c851ebdea0e27de1e622", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200202Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "8da4013eb8b2f5921fb4c3850f2a32f4709b72c0974115d39327188598e5887a", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ddb58e8ce4d2fe286458dae59e4a7f7682d579fa6be89bd631e1fc950b3c5ea2", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "05414b4f2594bf4d837a519cd13c7e913c81dc3995d3e6df5468a70e6988c25c", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "9d42627c6725e9c032fdf95dd133aae1d1f9603eb3881a305e710f13065f7ae5", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "01dd9e691bf69d40b21f774d60ede85480987836cec059356e03057638804c82", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "3558cb51f253745a2364d33a1195d0f1efb725fea413d8e85d8dedaa3974d8f2", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "037a9d1024765043bf7e19e921f987ef4df0da3fb8af9bed46c2c8afc0a39958", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "aba77bc3c9b72cd4eeb4ddf73e593352eb683c60101b2e9df717e64d07d2868d", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "a932ae683e63ad7c029497dc9f28f9f96c945729453c383700a26be9ccf7699e", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "bb4e253ab4fb21afe6a22c26c5edeb141987a388acf4db0ba47ef90d269e6671", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "a1f5ac040af0b20c76ae03386271ca7c82f406db8d82d480d0ac8b325add675f", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "a9b065aad2383c81bb5ad54deb23a01aa7f09b484e7f4895ffef1069f5f3f04b", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "a3ce735d92a396bb1abd17f33facced8a702657e64221e2d1377243e6d0a2821", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "c98aa5cea555387fb6eb969c527ff065d9aea05b9dd5ed53601704de73e3c913", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "53d43eef98969c77cfecc5bf9579bd81e5af12a2d8a0a75e2d9472b4ac2a9e1e", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "c1df2febc4cfa7791dff5cf17c5eb10ec6d3c233b96042c057a18666d4774d10", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b7a06c5081ae4c94fa383a8adb6262b42313ae5d0917c78f0cdf8f84a84838b0", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "cf9033bd5a5b5e8faf474f51b115cb9353005fe1399323de189a8072212f3bd8", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "a13b1a174a3f064d58522d23ea0a82a82b9d3c5f99ca6e41a493a5a26f5ad399", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "76d2a2531b716bdee939e0fce0e9c9193b49b2b34721cd18b2ff12df1f8eb729", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "e7837144a8e6fc17ca8b7b92c3ba0b42ba42b154d75a27500d76bdff42756444", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "f97672a80ebfcb4c9791186746558704c3f65361f13770370043a9b25255dec7", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "56ef6e6529c9786276cb05487a6b85fc492472b25e677b713bcdc9d82bbe2e65", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "7c33d529fa6e865f8eb4677a33dde8867c21e0945527b81613db2571a6fc5e0a", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "be83a7be839c3afda63ccbbbfee41b0db7946fc286e0613cdfe0fa56c3f611c7", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "e6dc9891cb6ecf827b01bac2b180e0822dcb6c7e85d4633e769e84b5acfdac72", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "08e2da1d5440b7ef0f6efeb958446bcf0d16eefd5c4d4d35a278615157164e01", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "d5a45250ce72c345266321809344d5a27b8052b7b47016fd738795b41ec14ce1", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "efea6b33d67aaa3405177c6b6b2b063c03e13da18bfe0fcc5a548665505b2f05", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "106f8282011d404e97eb7e4eb77843f1dbfb2f3594120ad49b9521530f95fd36", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "50d25a378f2820a3eba2e7b52b94211f94b4a5d61fd3e9f1b3ada3aaaec61b7d", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "7b97f89f76c532791f2c43dba4ff2a5701d18e4d6e0a66208b012b36711cb0ca", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "8fe9d46fd52674d6f147dda8fcd74757d604717b3ec5aaf90a88a665f1ee61a1", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "e96f0d54cb741fee753a7c76cc8a23f26c864bb0b1fa29c26db610b72d11a64c", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "a40d22c84cdc805f967db043889040010313b14a6bb74f8f14a873bd110c9cfc", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e9c895309f8ad0b3da99974f8f2cc882aa193bba145ca76b6e6f554f896c0df4", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "90867c7ea97116b97821a4d759cf32a4393ec64543e6ef3c00dfe0424af9c8cf", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "b9e85b9456bfa9eb25fbf70ad23f9535455f515f648e089f94d34b6bfee4bae9", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "1b5d53776a99a62f7b23479d247ff96405bcfc42daa18088ae2012ec341ccafb", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "a53821aae9c1aea435283d6fe533617b432736a58ccdbb7b5cae66035a006cec", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "d921072606580a8012098d09c8016aa5209a26e735b7929c4994c1fbfe4af369", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "2072e38c0407eeb41951931dd519a16b718a3f1bc046fbf0e826b80bb647c5ef", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "a4e5a3137794b08f5b03c2df79514ca2f984cc4e601a3a19386926042b3412c9", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "670d0f8041c519ba3c9be909072925e2e082bce29ac64744c55d7f86174d3b8b", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "f9145e5a03aa31f48bdd9f751ff313111cb1ca0019243cca4d830c86726f5b1e", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "609759c18fddf72c33eced52520c0720806dfd7f886e1de1a3f030c0b63809f0", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "08179638f496369a8e4eb01006d626abf46ec25fc37839811328e225d3771468", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "552ba2446eb89ca7dc88bdc2d6687da6c9e08524a2021611fb0b1012d53d0314", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200203Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "9ee32abe4d90d8cdb2fae294038fd69039b7852b75c06ab97ae8050cffd03078", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "389657803c03f66ceaa1a0466e170617c9cad4e6968222258124a90f41e7ea51", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "93223f81ea030d3e5f9132aa7701824f2dcd5d7ae09fcf876fda3884cef92c46", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "27a76a890b5687eeef1dedc590ee23e69c608f117b6a37b83b70014ba839aaa9", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "b8b5c794b508816315bdc3896bdd23774263779ea62195b817d31d0f980468f8", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "11a264e1859718de9b8bdfd7667c0ad14b06379c2b395758a3d8a24efb39b399", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "44cb769e67108e7bc937630bd8b38d5fa8d4bb9d7bacc2d20b1ed53ce022d5af", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "f3e6bf82022f25a5060184ea32cc64101f8503e7b00bc81cc1fc83da8723dfd5", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "21f62332685744314790a28f01a8e7974859ffb9495d648454c3a446b0dccdd5", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "3aca4dda76dd82e4e2810cf22c5671a4b8d558c061999242da79210e5690226a", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "13be46d227583c4afa9ccb330232fb4701448d8e2fa4a257a972a8d0cd7f11c0", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "feb2bac06e8d3059dd501701c7f6277107ab6082023d73e764133c83dfed229b", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "21d5b1cb52e92078593e724a3f9339f3e437bb7a50a486ee94aa5ebe2fe6ae8b", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "98271c228da776b40c434bc1186a810ca3b3d60f64effac6d000e26b689ccb27", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "b73af7782dcf1e90a4ea089bfd1eecd6223868bf58e04bc220f09e9dbc70cc18", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "d1375da3b677d6553694de330f3afab9cbd10baee42dbc631e4d720e0f320b5e", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "3d1ca6ba30fb06d9d6e1abb34a6c10843493ba668b63cbc5ffac6c1e36dc26ce", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "15bbbde13e68f957ffd0b772ef648b29a5a2f849228822c74dd4e9f3e83cd6bf", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "ad5c73fc212742d0c7bde3d3d9c2edac823f16176317ec22c84dbba3286915cf", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "d56645d7501c14389d9dbeee5081a26e8344b46b81e9019ed863ecb415f03ce6", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "4fef0ae87d42970f72ea65e5e2ec2058147169df9b46954492df0e7a37d0cfab", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "16285a713a0d190b5c1294a20a7d3cb1eafe74ea9ce6dcf4152c52f19920f11d", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "ddba1bc6e1aafd5d8a4604e903b4efdc6363ec84dc55cb017a7713e2e6edec1e", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "a04435c352873f78ded4f1c74f253093f31e796087abcc5993d601a6f30478f0", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200710Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "6f4a5e5df059b724c36183a412447b3476b5960e6d095998dfd213e6e95d30a3", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "3f460124b2239aacefefedc7fcd156476d51e71cf4fb6579cf51e8ffcdfd29b5", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "e2523838c394e762ede9bb2401474589867ec4287f70901d8cd605f6cb14f507", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "067dab3a9bc3b8fd4ccd2014e247316bba18d7cae686dbd4cf65c6ce99527221", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "214bdc09acc02b5c9b9a0c4850b5aa016b4c477f8245d50c99cf11f6120ad1d1", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "5fc18e3e005332955de70d0ea7b7f805aa464f80a6f77e7a5a8e5f689d58436a", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "c8bee204c6ad6cb25963f453e3a742a31a75036cb7c9d64d2d98517b73053daf", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "4422d62719d7808659ac1a403aaba2a803361eed368c45b449e3b7fbb09b1594", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "ec1a85cc4a4c3842bf76c3076dc6719ff696dd4175e5f1d6961f32916a4fb8d4", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "08105c65e2b2c09c02d93c52e31f8a7c81334f317048afd69537e913ea8d769e", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "13f8a8c0c353910486f977f38a708579e6d089254cdaebcde85f2427a983a490", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "5494c891af81b43acaa7cab05225b97d0912dd5b533ef6721badec1e7db26a13", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "f7d68b42bdd2e7f3548f94c646ebdcf5afc653ab7e3e1df01d92b624dc7afab5", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "0a3260d8a3d8d5046de9ca8029f838cd8d8b0f534bccd4cbd36006a9ac0ba905", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "354294d58d4e6d0ba847e905cdc60797835defa3447a0180bb8b74cd6c145b3a", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "f545584c0fc512ecd8f7f1903f728bf787fb3b3dad77b663346ebab1dbeef6e8", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "4f003f90dd3f337cd5c1354de536986a3be6f58a5b27e7ef6dc5d2d0ac2686e5", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "1849a6c8698734d2b9822de32af5910c8d0d23540b45f180c7aa4a0b25f9bd25", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "fb8aab64cb0aa1b083d0a33c401cc99b77af5ce374e3d38aafddd0dd88e8e451", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "5ae0019da18c09777b0dc4e842bf2b71cb1dcef55edb3b308534ee8696491661", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "0921822107a3d61af7f329b60029986eaa847364373691da09e3f0c424af2c3f", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "845b30e5e5e9c75ba3a8ea365d8564e6ad84a6567ec7fb4c3d94f421c71ca3ea", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "dae7ecae15a9fc0542cdf3ab0cb677b16c2369da4fbffcbc91f796b81efeef85", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "87b55d05007d54e262e6bbc8ad47bd1c9b9ae58c7a763556b4f32263e347cf12", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200711Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "4589ea446f75a0a04cd4be5f082c7759fa6e5e1916ab7b7059754cc92b4e8be2", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "fffeec1691fc439a7840b37941fc4ba689206bb25f6f9e2e222a6eba7e97f276", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "796514bf6fa84566f8bf7e39d3427f4eaec79a507e6a81b0857657291b5de4b9", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "1038ef1c372c0dc82b97d26d1462e6a313b2630fd86e35fe2e8244ce91d906f1", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "071c33a279b0af6dc79b60eaa3ff552567e769e7556dff19aad8ef5b5eaf1a6b", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "ee9205b0aa216d80c617c4086f50f175fd7cc95f0ca73347a4d237a3d3ccb126", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "90e5f306b038843298276d95d9e8edcf1b8a4c38316f5305a8e973810fa20d76", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "3351ecad77206efc531bfeda21cc248e61e4aeb51f1cefb1aec2d824f6a5e5a4", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "d9474dd71c3f5ba1a715093fba3e89776a9e90001de0054dc31d739a9b717016", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "142432c1137d8fc97c68d452a3e1e984772da727d31278dc44a9925bf682bed3", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "bfdc12115d43341439f966c882b5412ad6441ad32f73bd01dda786d7eb6a73bd", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "4b80799637cb46aca06968a2b8c75d437b9daa48311c00bafb869ff2665b3f3a", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "c0ec104677d16f444dbb774a28c174933902cb533ee3d26779943ef339fb71ee", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "79399dbbd4543e7e930bb31cb3a017af77176834ae9c3321e983cc014a4b4650", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "0a4e87887d12f5a5a90ca4de75571209ddc1a8ad5d252d2897fa5769db1f7a45", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "aad338eab6cdf13b2aa28b68a2f78200ac32d5074ba899072a43bdeca13d25b4", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "86accc223faebff55f66236bf685e62e7d59ce76e92ce736727823faf936b06b", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "f343cedaee357209b51743d6153bc85750b58c27806f93956abd9d98af362dcf", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "409d29ba9d7dc1c4a77b92a5165b3f0f2299033589207040b372daf48ae456ee", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "9a13b9bc64383f1b81cf039cd2d9ae6c42245a7271fb9d0c38eadabc30986086", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "d3abeea855c931acb0581d08e13cf84ec9716d11845deec12c3df2cdb4bc46fd", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "51b234e98fa3306c6344783e6cf462e69836f70a6b352debe7b59372240877d5", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "080a7011101d647877b6ff02e6858b47ae90868c1f4796c8e7ba938bea1be025", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "e953df72694c2214a728fe80b5dc3a360c58f868f4c254e19656e079f8270284", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T200712Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "d9d9fbeda7304bd564e2b9a4d73e3a90a195ccea8e68a387f74c8718abbf67ef", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a81a13941f18d56540b6f1aa1384451cd9a8f713f540ea30b452826fd3a3ef96", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "1c35e98f9ca0486e58f1646aae441c895072467b7f1f579c57b7ed880ebfdfd9", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "d1f49fd8b972adcc43f878c44e0dcf2afa8a0ddbb8fdca0e9011c0a2c405ed8f", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "9e3eb5e8573c55cd428b598f5b04fd1f32f99bd9d783ad9ad25a0f0b1640a7ee", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "c8c4ccdf4770e5769546a487af67a1858bf62a8c10c1b3442ff40f0c758971bc", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "e401f75cfa980eeab02adbd0a446e5e3d4650389767dd8e5f7886b4313af1302", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "53c06a1e940c4d8365ea5f19849cf8d7daa961f9121dc8c05947c8cc2e7ab5f3", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "97d035a28cc5a7dadb4574c5e5092edc67ba08bf65608784b40d6be281955e2b", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "2281ad3077a597bf19edc4f4b4d27d5d30635f28d0df2a7da9514bae402d4d36", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "436cb67f8b9a40a55c53eb826fee3ab522a2bf6d8ac3f2e4b34a9e7ff253248d", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "f53ee36b0a8698804a7f2727f262ada56184a9c5d771b131792bce50278353dd", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "7f5eedfa02be1b25304270123b0fd4cbfc155097dd8a0f9103795e9bcc4c2869", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "d16502831cfe116da67ec8f7b8060b7ac3d5807f6ce563689064aa8a24bdfcf5", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "face6800995555e6204d16234254abe41f1f3a2e400d60d7efed30ac41391b0c", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "fa48af4c366c9eeadb9fe5af73892875f594288c43602bb1cf20351a699bb8c0", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "85bdbe845f57241568b99a0205fe51dd2e7357f61c6f87ecbe9f4c21df568502", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "7ca349599e2ae0951359e4a935fd69aa279b482aba4366ecf801772befdd6f01", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "87d34b61124a9f24469b1cc702c3a8f9b5b008e8101d41c97870931dc970b6c0", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "0b8e34cd451edcfcaeefdb5e7e68e4dcdfd61f619b2f3c62b84a38fec8d52940", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "5756c4ad99939caba045a98afcaf2dc56bf839365b5430a6553ca0815f6b385d", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "5c85b2a31a0da6e86e28d0f8b496e9e6f6d51436e9142877deb5e027afca308e", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "0c43188b2c5063ec0ddfc42c1203261b229216f0b32b5ab44519b72251708bf9", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "c5833352c6ad8da0d6e7e5eb9858495f19e520ecb07b741a3b8363151ec7868a", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "4b05e2a4b30a7678156a24d32618726a6a868078c86be9570a90dfd4afcc6405", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "eceff66e73e7ffb583423c48012c4513915fe1d9fb30355dcae2e7ca01e27981", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "a9fcb9569dfb063e29e01fc38f8629133d53b91e7c7146c79b8974b4b508caef", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "84117e61a8e1828fba08059365ecd5fa1f0f631169ce830621dd678d9434c892", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "39b14e3ebcf71a9e53dca9847704261c427e713ae4c744c49085fd613f8107a7", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "6efca05f4451030791142585c90a132a2196c0c4a2e910f47526ccced3636ee6", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "47b90a57452f5f54c412db60833cf0487fcc968b9366165477d437d8ec32ed9c", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "12d3049c25952d8d2d004bb7c9c096e8024854c98374ee1bddf6559e3653100c", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "e6577debfed20180687138f5d604d30e24945f909867682951449abf77fd86f0", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "f8b56b6c9e91e4f08d375e090296189945956d06ce9debce101599109104e3f4", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "0f683d98b66e57173a0e6b54c0cc31fa35ad780bd1b71fab3908bf27b7df215a", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "4a2ac9ec9093adbb3c85958c701375949aac26b3e7723b57a8ca39e2c88f0c39", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "9349ae3423d95b32a254c514e68f8a0fd947d8cd3d7a2db027f783428f2b603c", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "90284fddae4906cceb9f17c093fe8d812939ac238d6d17e804467dc4734b0154", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "ed5e87b872bf28fdec3a549745fcee6b3633bd5b832c5210ec2226eb7457e572", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "851f14c87621387db293cff89e8ed917e7dc535d5de4c7e3d769330915ba68de", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "aae1d09a629203f914c0adf6baa252272c52428219a6704b1fc2e9d52849cd77", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "234efa34346a8596dea65e59a05364af6c5b0e7b782527cfb4ad095ef03f62ad", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "f75b7c18c9b3ab96b5c56c447229bd42323a5230a728985e5f827af5f1d06047", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "17b506969f6ae574d0fbfdfeaf04de1fbe6d412712ed672ac39cdcad71c686de", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "1184e3f964e0f83cbb9483feaab7f372204814316abf028e162a66bc033321ed", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "dad127626317111f540f10a8bcc5bc06661fdf562b3987bc30fa0079c8a8437a", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "d94480a1e3aab81d77206596cd1888f1ea9db84a7bf75c43ace97cc4143d9fec", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "973b9cbeb0e7922af7e8faea1d477ed3e5fba9f68f79aa01f3cbbeccd204fa46", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T202657Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "4ad8b07399dce14f1153c961efdaf509d187a91420fa6352cc15677c5091ec8d", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "6fb24b0cbde6837c8e081c339205d9a14335c7ec5a43c94f8dfc09e1224ada17", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "a3ca4d8348cca900e80881be10de56f967a3cad140127642d097485136b1e79d", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "bf15642e8c84f1caf935be9f882cec1f6ddd105f68ff992f265012a6708fef3a", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "0490e922a99cf65d90c15483217848d1559ae4d259cce7c1e8ed3a418e4226c3", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "3537048caef721f0d8d9ad5dc4eca0e1cd38538749f351226b2680659c1174cc", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5af9ff2c549c38443b5dec5cb220fc3c1b588d04689d7949a2c894d3223cdf8b", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "313eb36cacbbd73fc7d89ead0db504734d2d4e0250126f677fa938d84a7dd2b2", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "60fa6e4c346f96dff576a96986e893a210bb0fb9657c64df4d1cb238686d55ee", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "625bb3080d10d84948bbfc4af7b7564ec0a5173de4edfe97ab0955d067cff18b", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "9f168c11779ba8ecbe6b6cac3cae1b63ac16067340bb40ad51010a62036ba8dd", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "6b9fff0c7d138459f083f1472decb844a56f1febe6cf177af7f2cf5b7b1fdf77", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "1096ee30b04aeaeba90f92758e838ab70a0b41480cae7bb285fe3e397e5aa6cf", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "3f6d29467fd87c1dc330efc9149fb8780be304036265eb769f99657657648347", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "774eade7c742fb260326b59dc4307b8186ae04a52582e20e1e93c63d9075b62f", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "830673162faaee5614ac132815daeba87611ef4becc7eb0561e15b1f778e0a8e", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "937b4e995c6bb3ca92897ea4af7eaeb7169b20337581219fad8c11cb0b343fc0", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "5825cf823c29964976873eee213f8737841148676a3d47ba8c58da42ee5354ef", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "a3d5965b38f0cadde3d738095515827761142ff9883ef581b41a30420760475d", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "63b2b19832c1187e7e72b45b826666abf8bfbe0b47ded50e2e317a08195926e0", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "9f81ef8aca4e597247148b8a57b7451384ced810de22a6a4e6868f754fadb1c6", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "221b6139e98191c33cb2d305559e2a8c4cc3b53650ec434534d2ccb75160ddae", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "33afea2260c9ea27e15f38a4ad9c0b411705fadb420cb2dbfa720b4d3b70fa57", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "e679d721c2cbe9cfcc46a3027e55daf5f0edeb20006cda9c10fb845eb04752c3", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203256Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "1c95ccda40a8198d9f24744fa527263c884d3ef3134ac15055e5179b7878c659", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "14c95aacddd234a2c81fe7894f9b38e5d0cd6060c7fb4168b1e286880439a4e1", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "ac8e361de1bf1362ad24b7dae64bf947a338c2e84db9e68c65e89461ec88d174", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "56dacb7aca2fed6cce8b3ea3fd3625cf9aea935b98bf67afe1c04087692cbde0", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "51eaae80266c6783807143c3da1190315624780b76f0e32dcb8247ab161053ee", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "2a948cd1f7dd05cb95d4222497683b966a0253529bc2415f1582ee3a11f1a2d3", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "dd965d708ea0c7726c2e82074578937a31ab1e94891685f19003bac2cda2cb5b", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "460df0f9e8b368caa34498b7d8c038c9eaf6fb009fb2d0222e69ce28b673cef3", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "448ddc4af0accbc9ce5c9050e46abe332484384af4bbb7067645ad979315820a", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "ed2c8cf246b5b43443e4b47f67a7b53e860c54c66f0a3d5ba59f8a951d9d0d4e", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "d29611af4c01daaf721e16c72d44d8abb407997164be7f494f0825163f49fd40", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "7f4e7a1473243e9a27185dfb767bb1f6e6236328343c59b7663fb8088c13c8d9", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "10363b79b3548f691b329ce6c4675fd512c1693dbb3e839e4057113cf80afcb5", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "e9deee67fe4178681ad82c8d978e8de4e937b49902d655f2b92d8c7105fb0f88", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "744daeb1a4c8d27bcfeae1f8b1adad65354523d2cdc971c671b4fcb1acdd9885", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "fba229146e421646760a027b48e71f49670b2ed43c361b9d5a5261b3bae3f7a1", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "9d881f160a1a700f69d592e7345b01ad7f16df5b391935fe7a3380a9432faf25", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "fdba5d065698ac0b77981db995a4906b7d9cfd1ee0d23339d4c7710ec2d6a079", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "b6d51c359595e8314ca7dc58770cd16fa744d31eceb00bd59b6ca9f2ccca0e8c", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "f78ea2fb428b9f70896b9dc8c474299a78bc15490e8b88a9c87a9e4d68c042c0", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "1e315f208db251c7ed26fc43566e507182a631d7145931396518c4d20f200161", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "768cf7ba1c04fb5b472ca6de3f30c74e068d60057b903485f262f5f5d15aee94", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "12fc3562447b4881f51bdd6aeb659607fb7b777a7bc1b6e17a8bca862d90ca75", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "d9698bbf8a9d5b91ed1a385dbbf2361a801f37a0e76148f43e2a20605ec7250e", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203257Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "4bba4c6755e56ba3ea3ef8791b12cedd4a743d23a9a520aba6592882941c52cd", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a28f89d469f520f5eef4333ebb9ab092ace3e4f356bad420f49f7afec054484e", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "d09173b95909522b11dbd174753fb09c4fe29635c940455497d46a44a20d6fc9", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "dda4120976b3e233b0c7372afdbf4ae6cdb7293eae5f669dfb2b1cce98fed1dd", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "cf79cacac43e2d5bc08c22c40d6ec3f7812591f9a5907b79baef2b42f73a8fb5", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "688fd33408ca80117d5c63290ee6e9cc0e99893f5711eca07b2f5688225a4a4c", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "0a08942a9f00045a79b2969313d6d2ac1af8ceb76248424f596ec3e8e0cc9a22", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "bbd0d2a0bda3fb1790b169d8e4c14f450551db7f5101c0ec95daa5cd6a213493", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "fe1058b08d6a552cc768028bfb11b67f69e56d73a8cfdb72ea690f953fccc50e", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "b9359d5414d3ba033a09ac97d3a8917618c816f2b5b01e0d7b1e80078a469b31", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "752fb8b77ff8c6fba16700b4f4bf0b90446631972a40250092b5e8692f020e15", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "edc224e96b3060f8691ed88cde55b6aa82ed4d22a5fa8d0a845501a1f0743623", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "46c55ed5c5a51beb830168355e23c4469cfce842ed2683b305b8bcf8ef753cb3", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "db66e964e114af1177aa06f2858661abb583a76f6d6b83a6876301def4cbbfc7", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "2274ba6d820b930e0143861551391d84c1395677457cbd2c041422f65bf5260a", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "f62c4802cd68c3f0a9f233da4ba17126e2d884bc2baf43704ed79638890a0265", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b9d04ed68876898510dba0a2e87e999d90ee4cb1ff9f598e4956906a9878c14d", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "327897b90c75a366d51ca05761d201f8decb9c50f34ec26b8c55b868ad5d9c85", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "35c023d3e083910df3e8e65714dbafc5d313feecb7d3cfdc61d5945d35a00dd6", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "a3ba9d3b85a8c616ae03cc34baf7646f6a7ed551ea4dd16331f89e2e6c463ae3", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "a59fe0593abde692af5c4ba6772c27a31ca590365138693c0ca41375ec6d55a3", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "c55dbe50a572e88e67ad66648e718aa8d007a22f37ba6c9b4da518faa7e47c66", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "c55175064c4f68f8578bfebb447f7874347433f5da2c0abf1cb819bc7e34b1b0", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "bd46596c1e03f6ec5152abd82516f574d8ef8e124d9360bf1a61213e303bccc5", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203324Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "871bc935c5f7fed54fcaf7e597217e905b9c526a759fe1586c5f449106a3319e", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ed60029ed66e589793d29c7ec69008cf824895b965932d5f81add6b0dfbc3a2d", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "27fd362e7ab3aa23e11ab09f6193d1efd2cd3a47bf7acef7791b3bb0799b91e9", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "be24de67acaec437e7d508fedd35a66c3daa0f3dcbcaaefc952bbb97426c3188", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "069b285be48f7b2f6ccc893df74446799f22eb2cb1430ce92e094825ac168246", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "27408d60a2d4afdad40de962b1334f9e49832a944d0a933089cbfff1c2cbc118", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6e16253c3bb0c5f9740ad53c3fe480a1e74c8bf289e075319ca5d05b2c433a1c", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "008546272486cf08701198f35ae23e1f7902b0e092718a948f9a73e10bd62a10", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "0008f440f61361b4d6fc67267aa6a566528a371a4bbd17c68459c746f41c9eb6", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "3f61ea25d9271f846a90680b248f31e48136b5f8417c8660f3aab522c45e2a20", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "8d245773ce58d34f5601c45f085571a7fdeb76c87d71616abf7bc96ed521dcae", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "423baf62a73b606457109492b1d6bd6233e360c26be6256d22a57260cab55f0f", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "e1b03cf876d37c41048f017e6e242ee3f84a5b41699d0c53b049b52a45fb3f71", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "2969bcbf4370ff5c4bd4ee741685e4e0a48c14a128156ffb07c9354a5976b531", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "76e46f955a4fcbd64b5c0d293fdf579e0d52e34f8d970084c4915f553c1b03de", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "78b3003807a219968d71e3e0fad141e4d4861bb6be9b468b426a77e0f083a584", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b6623a52f401ae6afe288a2dfb6e09208f78d78b8a31f21716380d92ea761330", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "20abedaf7329af5d90a16d6954aa2b72186f469d1760e5f1e4a12618279baaf3", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "fb76d2869140bdb41516b68113164d732f890f180b14bf93645ee5a0689945af", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "1c9e6f306a9f51e3a6cb83da4e9ed4bc536f5065716ef59a27e42955b75f2465", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "a26b94fe554c6232b5ce7065dad0f56ae47d3a8d1a475ed7da1cf7e5093745f1", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "ff193623e18eaae75fcab7ea2ad64aaf3e7cb60a56406fd563545a6731fa375c", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "4f9588de461ace64d475b7df3d8158d065970d3708b3e4805d8f3360c7a18803", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "ce7c945ed4a9e5d97fd6c118dea9b6236f04ab2c2b4dabf0cfa5581f8e53f962", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "2bdaa467a2a443848c03973c9db5f5bde23ba686fec1c38cfc449e53d272c765", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "1d0571b969d0fb818c6c0509886cb8a890dcd319e630de5356c190e4fe8cd8c3", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "54e57bdd17b1c02aa56955aa5716d057d7251904c7dd392244e06b3ad98dd8c5", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "b986ef0c69ccd93c1293d779da82a06588277237e7a7030a5b6135e7d949ab2d", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "615a58202e9777d31a061cf956e586409fe5f576ec7aebe5a52bc84c6da68831", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "00111029c9faee467017b6f4cd7e365d6bc47f4328a00d86ca974f294d7fb380", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "865cbb420557bf0e60443c483dd6bec614446bc36694f9beec10e04f1fec1a0f", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "f91d711c65f425341cd111979391e4267e61086e0160fc8e544cf3211266cb72", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "c176381c84b12fd6b8041e80fa6432fc9bd55c559cdbe63e6736cbf3529a285a", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "e8b69dfc5066d39a7a7b79edc93ef5264cdaa6f57efed5c1a27078ed2e8cb3e1", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "267a436c239bac216c7a4709a11296df9192f1d4c6dc882379904aa234677d45", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "c7d6babe868f98627f15a4047f01ec7136984c82a1fb0baaca64214e59ae65f0", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "53a3f6e25e24723afeced9f380a1e93375198f6a481eb0a69b6fb65855c3d423", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "b738e6824c3e85f301629d5d7f369d4d8c35d8c09e07c4e716125fc0f36bbf8a", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "cc6a0feac7ccc18dcffcf6610d41076cd6df5203c03c3d9a9abf701d7c570f47", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "2c527d409c454dc506b0f137318eae94a7f97776400b4a12352e6c4d3aba689c", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "3762e000a665cb3dea71555d1533b3e597a3016fc9e4e93467da5b1e5283265c", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "638b299ff66018e8b99e68ed2dd18c4250ab6e408e5d8f81789b6f3e651eda3d", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "b263d230839d330dcffb7e031cac98010de46e5ba0a90d191b92991b41d9a01a", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "e084e6103f850d066f41c639f2e280f8e3472696c63b031926c1ae71a077e1cf", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "06bff723144482432a268790d5c5dd180ed47af7cad261e37e30a973e1b510f5", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "6518264d76db720ee25d3d0d75bee441b43412e685b76ba7cfaed371adfefe4a", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "18bb37ca67ef5e1d0455a216e559c2d96847d29164198abea0ca9653b08a660d", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "e2a76c1a06383ff9dd68cad90b8c3978411b09cddd861363a76155c4139299f1", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203325Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "59e1ba7e61638f2b6d4aefb756932e1289cd29f4acfd339bd0083e441880d65d", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "6f0641c24e6ca55a575255ec1eaf00ee16ea968a88c3146c624312f9e11d7370", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "0c1e86157e75f6214240027b628a28d871ed80a49c6c4526292eb4e90cdb3007", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "71c08886f148510fd4127d7185586d9e0a7bad3196e28fa12b894b2affe8d5b2", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "89c10ac8cb6597d808e54f2aca6bc0db6167ecd634cfc3749b8ad9707e828924", + "size": 1365 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "2f5eb16c92bc228a4360cb7db79138c7c81e4fcbdf3b82b5b96fff84d2ade152", + "size": 1457 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "dab980001ed4f53cb6d1713af7c60455f4ba73d1909b07b27334ab17c6eade7f", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "1131f78eb26227a3f7dc1c7ef9e2c82b0f44a8d647d7de7c036ab8817b566d71", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "ffb387506049602e64dc4b1948a2937498b3fc7f62060b72c2ab067e8f7c5008", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "e5dd6741d2b2104086938bc3a9c4788e9b7b0b3f423865e3ff8dcf6e69f604d2", + "size": 1340 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "8589565de569a4d729606fa42db7ee60636b05a14aa958a69a6da502c430c720", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "c3c40f6fd5bd26737dc52f81e961350517282c80d32dc4045ba1236e6167455d", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "e39283cb66da6830212005d309d5b4a48f6841806836b7d46a5ac8880e786ed9", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "2db498c79cc76a63f95088479d8d816eb90950f05a5140c4c4b3373dd611b794", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "7df5a50c1abebb1772785a25712e90c07593591fd26cb4b4672b79ba2006b695", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "a21c284ef93e8453e84cce7bc02392a3b42cef199ab27ed0a0fe0f488078200c", + "size": 1425 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "a6874de7c557db5035b06be8c6d533741f52d0c49a4e2b372bef1c82e6c0e7dc", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "1f4bd5880a78d6f9cbce3e1675a4ebba9e7cc26a013deb9b77902ff43f7359c5", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "2013634d7a63e2fb72ed52ef8ddab11180d123edc765dd1a7f47bea6abc7daef", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "4c58fc6cc3d3052dfeef57598c184c56661c5c3f1dedecd2ed4f14ff23572574", + "size": 1270 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "66dd6faa97e7da54ddc6d733d89d2b89ca6a6db9c50f1e774100ea923e0c1efc", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "2595352cd680ca2bacae1865a6cde2107f0d06b89d16df859805b6620a7c9df2", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "d9b335444e60b4d952b297d81a77f3c3d35cf4a07513b6dfe21b5668e2128d26", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "8901e109c563925a6350270086ad907ced3d434b694fd408f8636a5f209c887d", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203948Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "5e21eb70afb245967d8a86e182280a8dad6058b8961eb7661bd1503d066beb6e", + "size": 1281 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ae8e693ba7897b4815a463c12d315d35e7d45f3c7dd4e31ff665e905230c1e33", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "e557427d52ef518d8a307b7947bb1681a21944720bb179bac9b185eb0476ea20", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "7a512b3d927ec11e4987bcdc700b369d87d30baebc8642cbe62347407405c57d", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "e8d9832a65a5eacaf2c4e15ba69333ea0649fad78815b49b46e9a13bd1ec5ea7", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "8b0c841ca1644c73c3db5040f2c6561a90f115d0633c59e284082ba376e53ccf", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "720fb8acca34aa2d83a37e158c002cfcbf2dbc00ff1263e6bd94aa4ee0e2518f", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "add58544202bf44ffb22e6a70c3a220929f42d99c34e15f8dead9decdc186ee6", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "603e5b632a68f7177562f032b3d035049eeb066b530964d2ed373bf5bae32e1f", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "f74c049347ae473c794d10fbcfe5576bee6f7d462635a05db548d200138e1e5e", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "4f6f64776015e4d9aa15aaa346d2d8d83c51a162ab74e2bcf76668b2c418ab01", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "bc4b84876ea7b98ce1b2bf881f9dffdcfba299972d2e7e4a52a50043887b5408", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "6f632421307dd72f0045b0386d2a1de9fd61eac048991f205b8e74dd32349666", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "a44ab5a877530fd23736faf40161148c821eb75d5100500b81615cfab4f978fb", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "1ab4945b3341070c8dc0d6ecbb5819cd10e54e5aa57123bda4ddb5ec9a0a29f0", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "bfe47a08565141863ec083656e3a5b3f9bb34fbdbcb76ef9a350d38429a229ec", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "5302e28ac0f12898f6d1ba02d2fbd2a68e3dc44eb0d14c45dd2296a5d9aa1f67", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "bb21aadd030e78c647aadc72fcc9cce152861e71faf506d680fa346e61666870", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "58ea10e57fbd4d7413ef7f651e0e5110d48ffb9119efd44b3fdecb49772981b5", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "421ef1b0e00899be66798af7641533736df5e6691c2f7b90c748c840db712866", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "df520844398016cf3135dff588f6eb0ffe49d7baca0d2acdd2f88b25129019c4", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "b4b6198631c7889213d69923da9bd15f33bfdf27fe0576bf0c7ebdadc1a53bbc", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "9fe45f148fe994d747c89d5c1f9471c22bbedbd23ca8fdad0bc7b2136551f5dc", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "6bc3bd2130b5081d4954287588693068814aea38535a14f8084c461b69f9a66a", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203949Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "0cee3001e064f515c47ad52fb74094ec31847e1030782fb8bd7de9847b617492", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "3618b20d5d3373a42002fd20e8bab15fe914628fc1886d1c8f13e172e179e085", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "4bd7df7b033370ce28016e79a96558f68fb324941a298f61fd453c525de2d107", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "d456beb3a17be0244e8ed95d5b66e4f8843595cc5fdedb5cf41c5098afd5709e", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "cfc62558459e42e100819398c7cbabd18e579a7b23a447b6a99002da25ca291f", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "1faca777fb75dca7262dab9e8a2eff0f759cbace63a79c0f27c9573be9326f55", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "296d46bbbd898a333a20e53a0817ce172f5496346af28919a2ca23bb48790526", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "6d1e40c61e040bb35f0869812a87560fa22a2cb332ff99f091fae9b3a6774cfc", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "498c6414d97febc2676c6be5f2bda54c1efed7ec0e2f5b02b9ee08356b674b7f", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "aa0f2b7d1c3280eb4b316e997ea6d5cbc9e3c4eeee3eac96afe912594b4cb08c", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "ecfd2abe61059d5f30dc856ae9cb487ab9e5962b075363fc34d60ccd5176ad30", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "9a65ea06e2e4edeab17642495dd6f5bbea6decc95a1180ee836a80ef6a2afc1c", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "c723555b95619e93c5b42e454bcd0a3eef3a75dc8f4053bfe101580488bb9fc6", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "c2ba9d7d0c3b36f7e16ac8fa15f3b06342d80e61cd28c04663c615b0f139ee7c", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "85718aa9318dbe088951f577f6a2d03d3bb5b4f18c4628cf238eb5ac94d83b16", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "33b4c36dc751daa158ee636db3bcf7f613b99e75ae0bba6e25191b9c06ff2c49", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "2a2abc1c18e2ca5a17c77672e6fc806daa56d7b0dd4a87da904276eaf59ff359", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "18bcda343f43b1031860463c93f7c3fbeb2b456e95250fbb598346f168cf95a4", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "e193f25864f95c76906584c30d5e7f28e05b195e8708c2a2f8ef66c8e92000a3", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "e6fdb716b76402d29ffae0bb11ffdb6fb5f45e6cbdd764f7b98e4c5cb2deacdc", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "7f2d0a8c388b1636b2145c302d54c3b5ad2f81b964cbaf0587b7b9fb308fb077", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "5d999270362ccdcc88c862df1a0e0d1b33dde606bafa8c121e0cb1ab463aee63", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "eed36c37bc0b6b8cce17e3e270df66fcaf6b89643bf0bb7605fa69e701870c1e", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "2cedc5aaf4e62056046f2707f125f191f556d74324036154adf2c622fbd407cf", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203950Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "5322e1077808b2116616caa376051ec4fe50e025fc4e37a1741ef9ea9043eb6e", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "b7ffcfde5aa174787d30045fff4db598b6c16586edd0c926a2b24750d3106999", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "7ef7f39fc4f3251ec4ec408c5b6b42595f4d06c89779827333b1245e12ed9c15", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "a4b1c9e80009b73e9463818a2ccea11ae26c414c1f7238e15bcf896bf76b2cee", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "d069df14d0e555627cf41e5a496a2f8963ee414763f0b5cd739e4f53ab46922b", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "4d124988b0999c447c7b4329f77078c211e557afd57a218fc677d62146d26a2b", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "ce883f70d7a7af17c89a6c4d34ea8e11b5a863da4846eae796f5745047f6190f", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "dfe0cd5d442f20d629f54fd11f7f77cef9f19995bd8dff89e4949d6e99662478", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "4510e881f33b071abb73a6dbc1ff8251e710030c5e24e526e04e12da87c0bd02", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "b3ef1e1cef29f5cdba3f6c1513128cb09fcf7e7a33dc473788fd95f902bd544b", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "c63982786f06327fbf2dab6a641e71efe7d6bc85046533aa1ccd9665200412bf", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "2c8cb64cbb8b123af33cd57f0b21000bb80377f76e8357d41bca5a1227fd76b7", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "5efa198df6cb4d6498b7619588118f75021becf7e6188925e32bac68fb3d3018", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "69f8fb4884e2714c307bb3af09830758a70d5d1fab972609cec554d511d6ad9a", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "8c29f38104369e6ce5dc7c145fbe1f90ac82a4dc3a76151b7daad498aa8988d4", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "c236bc40fe8765e2eb851f0675702230c7c1b3b640be61212994ce181f7eaea6", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "6f85de49961d0706714bc904ba4e425c432acee74cd6e1ac47b35891840b2929", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "0915e9472566522ee13e78904c4667a49fea8711d02ea4173e290271d02beef0", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "48a01bb48c8f7d3527404723fc31f89d896e246cc1f68882d6f14da224160401", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "9bb35137fdedeb007f404debf6579d02935a5fa355500ebe696d0c96b235c0a6", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "385567147584273cd26d18352befbbf96811ad5e9487826ca3154eb15c7bd1c2", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "cb1b6017d59dc13635ecbaf986ed3b77a6925be848f52ac5e67cba4461d351c8", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "92434a8d4b3c053c72b7ce786e94a6fc5366a9f0ad1be371d065896fa3647403", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "5bd4d4927194a684bebb50a14dff2a91953fb7cfcbde5148bf6ec5a22dcb8d81", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T203951Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "4b29fe1063aef773bf0e9e2bc85d1b2e7dfb481ff48c906655f64961971bb85d", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "b63c9e701651de81c63a84365a4d168b48ca96aba9067373db4f70aa1c87e90d", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "bc8413b03c5cf4857cd38e9f649999e09b73ca617f4b78367371409bb56cb665", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "4e5730b51d4ec0e16b3fb59c51fcc3323d9605cc909416347ad35f13f6b0f10c", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "fd267f65be5bc21f93b83ba08cf676d154ede64d6c25bfdcc0ca9b722a8f5ba7", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "81e3e777092b413118dd56a1c02dcfae67f2e0e2f52b6abce10bc062c50380b6", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "07f3d5534c5d004d3cb7191140ee9fd80481409df46e603dcbd23562e77eadf3", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "646624302ef54b9bc6d16608e885358dc19a0567ce69833cd9ab99caac080acb", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "a90e250d7bd65ab2fc507ee6264f08cdbccc4994585e6b51720d98cde460474b", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "ecdfc025a885ac738b5118850bc598a2aa658aa1dff89f0bec6df37ab6a96bc7", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "3d4f9fdfc0ff02cd6666a5f78019ae991233791128b2818fb23aeb383090dadf", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "628762186ff75a04c3e1320d75ca85656d06197e20c302db01f225b6d2a48fdb", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "de31fe10a065bbf63e19454ff2b1bed601bff496da3abcafd891c9a938d17eae", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "7efae713259b0197c24ae338bd77d8f57b600bd1277f1cde15e43b91ad1db09b", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "fd15312816eb7acd5e4a62ea765cf2fed9b6c628c6d92f839f6dfcb9cd72b091", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "597244c9f3cbec050b8d71070dd893062689678f9066b74ce24b302257eadf37", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "116719cff5496241d5b1e21ee753ba5bec180065449183be65ec0a1331c1f23b", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "57cacf02d53eef83c13ff145d4a98664b0f86187143c694d5942b55484544422", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "469711fcb45a54b30178021b3735d86315d8a16e2219669a606f5ce4266e1ea4", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "73d5f923eace44d3070c650aa4d9fc0f73592e3ac1d2855e72acdf99cdb625f3", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "fc371c284feb8e88c4ef916a2b365f5cdf54de6bdb6252b33cecc554aaecee0d", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "423d21d8d214778dbf9a87959e45ff7590ee84fd5bf744f0cb511a8d7ff658eb", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "c614792e5b4cfa673882c14bb7da1ef5450645f21d2e1504be0546f915b5d851", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "c7f24c62004ea7ba33a93927ecaf28cf256fe59995e3b20255ce1a6e915751d4", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "d26882dc838536c1f53e7886c46f3d359a3faaef422abe11573ca85ef96dd804", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "72ba70c2dc3933f75408b26a926e20e67de26499d02ba1fddf8d3aa60577c7b3", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "342959cd056a65f9de53d9c68be0b93c1d3acc8ecff0cb0f49888937818ba06c", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "e54d8ad931e3bf6fd5b1d7259afc822b946bc2d7bb852174fd1050d2aca72156", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "f7af89026734f451bde1f59587cf2b9b9bee86681cd8865e781cbf9b6d0c6361", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "11fde5e3f913078d85360ce21823c22d336872d3b941bd3fc14b8b93551fc247", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "da9e50dc96793c33751e7dfb6e61d91751ea2ce75ead7b0eec21fd4ebe947566", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "132554ff9aff0b0dcade9b4709ef5ba83a9668b52e17f862a4120ce1af8f7ed8", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "5319da2e550bbff586d4c81295cbc751e68899c0d572cd5bb838b2953b9ed2f7", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "3e72bd78d2248794d536c5d1c1e53b3c74e459c13ca1b43dcab7d52ca616a4d8", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "a2851f0f8d885851c4a7d3576974ca02c8914eb7ff950d937d3aadc0c31dba75", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b36ab1f2732550de1f7a54b3475232a9009567dab826d7478ac2639ba6962350", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "2dcb92ce1c3b6267f42f3de6e2e171356e71bfbb10374acdf3b3b9404c3ebc46", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "631b445e87470bc9da336d9d471accd8981f46de2be1a77558fa568314854def", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "5b1eba71e7c874591cc8e3a41e309f5e3f86448f12bac5ba143f74928a3ce4ec", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "ce45e42a18486c44f3a88f9abedd804995528f3454c6fedcf123cccf656d6d94", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "71dbfef2460e9d918f2cfb126ad1be75bfc079d7dfeda8a26ac1593868ce5be1", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "3adf46339d6609fa328de41871180fb04d804da40ca4e18360c39cf77039d303", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "a661c098e7cbeff6d43776f819b3aaf06fd04bccdffd2dd58382007743c74da8", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "56d148b54ad1600fad012d1fa4940b448da3e8aa708eefe13b90d70340445193", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "7c3b020fd36fdbe5b120df4436be630a0e436454c86d4f48e3aac5c4f6f63585", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "e23f8e429d73adbf7a64458cc324f57328bbb063a48a7a4ebdf5111fa93445d4", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "dd008bcd550a988d03b271213e5fe036fac7bb54a797eb6caae62dbb4d348713", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "14ae4a75f1f5db5e5cc8d56a216966a660e22323213ff8967d73f07270eca6c1", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222100Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "fe53aa3ed68bcc04be0613ead00009f22ccd227547c7b527e6c506df9d48cd98", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f1c8fcd2491abf4277816af5363b5927d53baa4a33201aef12cb738f8b90682d", + "size": 35078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "676dc8c73ce86b33f13214ee8a9f6b92ebdc454b57dba94ca13a5a94b5a2b7d3", + "size": 12564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "04b4379d45a9eea26fc193d6aae979a759a2b1591a6fc83767e380b4eedd84cb", + "size": 34206 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "da0c681399287f60fdba0663cada161487ec5bc9a5bb048484f32e32c8855b94", + "size": 1669 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "281f4fc70a7014929768b1cd833a94af14acae0217207fe6d44c87ebe993006c", + "size": 1850 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "281e362b6f2103d1548231e2ffabb72ee223f34411bae3edb5ef26ee2f86a776", + "size": 37787 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "83b814e6bde154154cb2e89d42d5c317f8356d44dae92375ff9f89015d7869bc", + "size": 11845 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "7f0081d7f2a475655fdf8ee4ad3789d5413983f0aa071582180b0cd2597506de", + "size": 36919 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "b40f49eccead6d07741f12f3cb68dc6cb8e0506ddaacc522df65d3140439e053", + "size": 1644 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "68d6fac176fc62285dc4dd0a74eb9bf6cab996a8f57111f9567c8e80e0fc2400", + "size": 1833 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "c9c4d5392162dac54d4a51e65f6d9726ac4f9bec21f49e2574bb090fbae6ab6a", + "size": 35680 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "cd205cedca374f71efb4359975e80176cd759d59daf2399941ade3d6fc3991ef", + "size": 12409 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "68f5a8bc70ef2bf00ebb43f083ff4f3641e569c493090e6fe03743f1453f7bde", + "size": 34816 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "3d94168798ce0a1cba54390f656ecd0eb9cf6f398b1b8884cd906f099ea32258", + "size": 1612 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "d0df58d1f2f84cbc44449ce6291e9b067c8844f0764d1d295c1ed025218b3829", + "size": 1818 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "e41965b08c7064fd15b44afd363e105e5f34ec20cc8fcd6daaf9bef7e4f768a9", + "size": 37579 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "30efab15e46ea4073bebe1412ff1d6c0fb14b26fe9b06567640cca4cceaca769", + "size": 10854 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "bb09c690b0069906a239170f0a51c86016880d9f2932046d83b102fa0af754be", + "size": 36719 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "1852db443c0891d628daa06c11ea8f5aeb4f5fed1a0238b2ed53383327268dc8", + "size": 1574 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "7f236f4564ffe2812c454ece66dc3d90045e9512e344dcdfe2435ba970f12454", + "size": 1796 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "fcf83447ec5521676c9d047b09f08b47a4d8457db79ddf61105eb02ea45f5029", + "size": 34975 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "39c08a031013141bda2b65a6ca6ed28840bd0d524352dc12e3b9cd5148e1c08f", + "size": 11908 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "b1ff115b9d3ae63798275b20a3ef5d753520b4d02eae25f072968b24c68c0b7c", + "size": 34103 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222714Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "5195aa0a6ef3536b87162fa995828fa57fb4701147f21ecb42eb27dc72449121", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a0e4b6c7a7ebfd1996a52951aced99bef9bc3e9f0db1cd3e2dcd0efe29cc0beb", + "size": 35078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "ce43757a4bdacc13605430362a1fc112993d539d0e16dd76e31caf7d4345b701", + "size": 12564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "12ca37579c0f579fcbba0f848b01fa71f8b704c16e299e8d10d11ba3a2da159a", + "size": 34206 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "1f4b6d47cc5304b36c9758f130153a4156e72c0a8d8515bc622db059be647439", + "size": 1669 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "27edef724d11c04189ab3e14206aa3ebefeccfc0f27a00e1a186b82beec00f09", + "size": 1850 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "71abdb085d1c0f8eddf52237c9b81121cc39b6f717803627db4924b203e873c3", + "size": 37787 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "25a8082a0768fd2be73602d8c55da9d15deaada08280c479f27af56726b4428d", + "size": 11845 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "3e70a2e4fef7fe8d9c26164e4dc56bdc5f34e2561474d30ff9ecd4e56d78d956", + "size": 36919 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "39e81b186ba0633ba2bed65a3fc266d0f0901fa5a485b9d10bff352a2015a0f1", + "size": 1644 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "743350dbbf5fa330bc562e9dcbc3b6ced0be993e12289245476c16221402cb0b", + "size": 1833 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "d958fbb0deed63ffe7fd0f7916bbd7b87a239315dc61f0721dd2247592ef293a", + "size": 35680 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "d3dc4a47bdcb900134e3dcb626f274ec8c5e579e9222bae5f0431500d92f0817", + "size": 12409 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "0b51fa19cdca2e77b74c23d339325e2ec0819f123569f1930186b6b2574f132d", + "size": 34816 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "be376fdbb8c779591938c87cafe9804334fefcfad622f2899c997476fc13a385", + "size": 1612 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "1cea2b0ef5783bcc77235f578e106a6f9bc92466bd50f6f48c058ca89f40f1cb", + "size": 1818 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "d20d686ebb2acd4476d6951d9f3f7b98c02eadb0d0a45d1b8b8e981c30420887", + "size": 37579 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "9836efa3c11a5da55312e9e747d75628f463e92432117703a3c8dfecda8c1858", + "size": 10854 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "e70a9d5965db65f7be7c370767935c59450bcc613941d1dc41d3027ed37ba1a1", + "size": 36719 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "98d635dc5658278be43666b276937eb4aee027564307457a6953da50f78015e4", + "size": 1574 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "6cb437d8bab4b0f5dc575bdf8d62ad28a7a107917a3fbfb4549dbb14efbfbb38", + "size": 1796 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "1337ac8bedb0f8c77e0d6cda51e9b940a6a11c9acce1cde26244fc7371aed943", + "size": 34975 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "e79c08f863baac9105b9f1e593777de6edb1f5137fe6bc6f21026ebadf3647e7", + "size": 11908 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "bdb6174012489cd955530672dd1de57b25abd481a056ffb419ecc259ed8cddfd", + "size": 34103 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222815Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "df27578375901de95d14fc82ba7cc55ea2e9225c3815e9591f06619fc9659488", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "289a9bac8f6d9c7669394c43d2adf25ddc0576ff8796a98e1ec5575710ec1a1f", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "558cac6e2559b015ea1d3fb716d00aac9ed9599b49ce3e4ad4d22bcf32428178", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "0cbc29d63d9bab4c0f89592f20f787f751d3f85c632d3a516190f20bfc3ef684", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "9d32dd4af685924df0c0ff3b6febfe52bb6bc16b909e5ac96390de809597923e", + "size": 1365 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "f25ee5ceabfd63041d1f84d369482c1ca319e9dd9d514083a229d9d65bfeb2b3", + "size": 1457 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "b6d9850c7462968453fd4304fc3139cc4c4054473be9fd753ee07ca36a209ed2", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "81bc55ea532d85285082eccdd8c1dfd3bc7af6d2c353cb826f69ad690b08aee8", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "5ede3178adf7a8ca5995a0acef032038e3669774c4bc564a6545187c4e340582", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "d23cd9d47da10075578e5b2f43c145765c5261ca9cb48df3efb45190adcd3d1a", + "size": 1340 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "68fe3a7d5f9d26300ac4702af05e5fdb00afa842f1a1268d2ca90da375754601", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "88793f1a3fd58c1e3486af10a0f16acdb041c9f5e55f2abdaa59502deba1a11d", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "4229e2e4f3c611f15596bf9857b4c5f9855673065e0347bf33a25bb579101588", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "07ae604175a478a978a29f4da693b9490149e20956944db8f88ca786aa99b4fa", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "c7bbf51caefcb74694f1d51b8c9b32a2d3279ba03f5c9dd17c413ee67bec2625", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "40eccf714d722cabf86de12b7696f1e8b5818f46b4836b55628878930f46f41c", + "size": 1425 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "4dae7e8f441a6cc267c35c4b69c790a65d4935b06e6c3d14a7b9cede28a3f9b8", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "2e5bda9721766c35b1ceeb5e76f529d527262deec6b49a7a46c3c8eaf80a69cb", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "d9010ea77b239244b517b1aec223e686f3471a29324218352d68ce8ce7dc6cee", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "fa0c248d688067c911f68855d6dfae579dbb34e3bb9015baa98c9f374a4aa925", + "size": 1270 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "99e2cc1fda04be3cd2b83a3c4c75450b749fed84a974f466e63901bbada6c981", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "48bf83ad9ecb2314f6dfb59b5d8fd8481cf4b59fcbf61cd3532c858a75853dd9", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "43f4dd9dcf6ea894ca470b8c4eabc9441b02f891384f83121ebc2a4d7b64d7e6", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "7723198bf21b31bc07801ca2176c12f9d86597ff084483558a1eda45f2d58702", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222845Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "298a6acffc5da676e95d1244f45ecb0d13bcc9a68c6a98c2cfa26b229e46de8c", + "size": 1281 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a047db798c5dc4a0410c97dc877a8129ff2c6af8309ec747d2e62484e4d51f0e", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "01ba58bc9081e482aaea4ae208010b0dd594efda6bdb46b91d826b54c323eea0", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "bc8207e6f0dc3f0726c0dfd5b9ddf9d96bf28269434b292d7d02eab6c16a2a7c", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "463ea4bcf5aa2166d1cd8739865510c55ddb5d1ae0a8550e48141d94b0fe4052", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "d169763f8b20adf1eee9dc20f8749c9a5ca8e2fd3e315afe1f4c089396b88bf2", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "d30bf6a0fca2c63c6df5e84ead128c1c47e06bf2e58dd5c59d40542ab29b8a33", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "27599bd15b4d64dd07cdf66a4e2bf0fcf3359bc51f58de18e36b6354432bbbd2", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "2af76263d1ed00382a20cd4add3c06cef79b323ac658f412e60cc86d0bd74f11", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "9d4f563d8d73f2b320391b3f46a68abc90f22d67a97175089201c9ec34f6c5ba", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "fc950823387b9330b58405c050901f7286d5d9f64bb20737a73a3794a7b1168a", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "7896313cea544556b21cd8a1f8435f1a913c47e45f0dd24650bdd0bf26dc2064", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "87a0facfb86fb3940fb642d0d692c46ac5d10852d5be45d2e5283fa23fd58023", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "88c17029c4e2450ed0c7881b3f9e774380d63881ee9b0e61ddec0fe1e9de410e", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "5cafc939addfff46e8557f6c941f954685cfa442ba49ec7ecada226abdc006e0", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "86b9c2f9c63767d311e2e9289e297f51a351cab15f8e7469bb2117bfbd6683d8", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "e9bb6de94b71d183e889f78d599cb1a12dc2fffe32e8ab383226d15461a48b82", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "d3d0f05028583bb4b5f9e228d9f30b75348108549134bcf14032fcde93a9b0cb", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "472c0cefbc9aaaa41c7de0edad84b4bcc04d21048d77bedba0f28fa6c1444572", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "a0a34459736f13f94512ced54e6fc48060f7c4544ab15efe572a8868bc858d10", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "8e75944804405653106676744c7732d140a9d13d00c3ffd1dadf06c9c17a38b3", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "873b33b4dda5a455379fff1f88f4e863bc72ebb7bb0d3f49ef521a1789a4ba27", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "3d0856eaab6205ac15aee4dd8243cf30781ceef217e65484cb88998997bcca6b", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "3c63cac879bc37aa78dea32a1eee85c2750be0b8a57d7d2b6a1980479796e8e1", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "b75c277e9de6844557575fdb437fcf20b983cf72bd9317f3a0f886765a4d7f17", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a67d2741995b8dcafae25fda273b2c9370fc8531acc88a4ac6ff20cdde66eef9", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "6fdd9f5c258539657a148ac652813e8c3e0284d317106e1cee9f7b2d9695b917", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "ebf3b0cbc824317fddd0fb6824a2eacaa766edd8637c8c6a7c91883c81ab43fa", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "5d129f9f5e34ed4830c6742e92d8e8e6bedcff5ba693f137396e0324af0db3b6", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "96cab4153907c13531c9b6a6bfe418e1f02c872bb727c890ab6778bd413d3d92", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "0993f4ebf1e151f6af1b1369b4313d07f0ff4c612dc796efff6c97e2fe89db52", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "027d15eb09192f4ea69364f3d3e5b8213904d16bcbbbe8fa1fbad7c4e0fa6d01", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "fce5033a7e9411a474c53263ac69b39007a941d2b9d12ad95e207fcb4c89dea6", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "efe30bef43d15aa1d777d8d040f5109fae6b0231372ce772ad32e2a961713b98", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "c978254a3c5326c877959f83e05784b0defbc714ccdf14ae3410483fda6b6e2b", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "230e1ed43264e8623ec22baf3fcc7484afb43f0aa00a4d11c664aae38eb5bc54", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "a97f1ccf80895813648bf9a55d537a673546ddc5fafa060a03e9ee20124d2fc0", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "5512a70537e5853ff0b95fce8612dc8ecfd7cc8d03d6759a7d7b4bf741925669", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "fc09511d79fbdf76b14f4a2aae8ec52e7ffdd6395cba66274c62e24db91486f6", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "d4bf32a054cca2e70dbe674b2a7f0924d42bfd0b2c125eeab1b057d640241342", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "efabc40f72bd420a13cee1b2d4d6829a092bbfc2db44666953db42cfdf37df50", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "02932faf32f058741d5e11265540795cba8f7cf5f08df521e1f6360206cb0090", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "ef166651a42cbadf30773796e76f04970e88f4876b6ac6da20fda4b5da8b9bd2", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "4540f2af39820e002c0ba15baf5c3b3828aa4ce1a3d9722bf597768602753e06", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "4a6b640a6a99aebc4ff025c9c86d0f3481434933d3ed557adaa1d83b603e63b3", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "8bcb63e5f71b294aaf6d23444727b26ce2afd255b2007a6cdf69cf24daeceaee", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "882619eea5e6715011eac40e707ef3e3726b427d070e4e93e2caa34fde5fc304", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "ef5cd96744179309baf72815f44180e79144d20155846577d2bd86699b66456b", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222846Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "81e8804d17dc3d07ed3a3e873382471a72dde419cf15a541edbfd8f8f5c58a5a", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/00_trace.md", + "sha256": "b2aa4dbb24b2ce51932c7636b289b9b21dd21b60e61515bc151871d2981b48ef", + "size": 2646 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "7581f01a504f3a532ca4889c1ecc18a13d944d1b6b1c15916f8b3b82a143fc83", + "size": 34837 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "082d300fee4a3b8a90f080ee15e0f58121ba7e1745a801e9e3b8ee9f87514ecd", + "size": 12323 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "355f29b7e6a002575dfa2a0e5c4df5c236f3d03879820e70314ed81e49bdd211", + "size": 34075 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_session.md", + "sha256": "037d5e9bc537dc0a637a5c351494a80ea073bba5e93a6882fa8c42d2e82dd478", + "size": 1331 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "10b89e576f297a5b1adfbca73b8477cb8aed6582233dc034b510c69c486ae54d", + "size": 1440 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "5b8fec30bed0a1a2d7d94e8f55a38d8d4536169c9949933b111fa54c062f776e", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "a4cb1a8672cce5b0399156c1632511b5109309d6052e9206b0ffa4a5bf6baee7", + "size": 11604 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "a2734628444946211487262fd7f1db8681a78142a4ccd4b429093e02b8e22dc9", + "size": 36788 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_session.md", + "sha256": "7f863640f9c8cd2a875abacce0e767a87c07bf00c3184035442b011f883d3e89", + "size": 1306 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "11312d5b520965d71829f433487962569bda4b5dbddedf1e2b6af9e8905e3006", + "size": 1423 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "3770e2780844f0a2f2548506581e129ac693b4e4163083b0e95fe5203be6ae88", + "size": 35439 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "af659712bde3d8739dd5e5e58a474e2d2a8e7df531f34c73fab0f75dc44cd443", + "size": 12168 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "e9f54797cadcd58e2fea3b254619566558961098a94c4f3f7d0c0cdb393747f2", + "size": 34685 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_session.md", + "sha256": "31142ed279fad94ade164ed1b02719c9f6ef2c36c5a8c5ebcf95291c3256d117", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "6f432149e6b0b28e56fc0b28406714852c5d58082b7b08f49c183383c1847360", + "size": 1408 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "b35976f0df140a896560e552653371b23715852f114923b3dd4ac26749058357", + "size": 37338 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_context_load_receipt.json", + "sha256": "5fe3ec6880afc7ba87d13def4d7baeda1c415def141f13fac6329eee65190aff", + "size": 10613 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_cursor_task_prompt.md", + "sha256": "2cb9f8d2f052c5fd8a40c6e9ea30d3367a39098480093ecd1911fbf6243c5403", + "size": 36588 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_session.md", + "sha256": "ce949e8171bd1027725720e45d5fcd27007ceff6435162255df15c0c98e3a894", + "size": 1236 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "324f5ef5124e9b11e49526a12c3c15f28a8de7b05f7c3a308b1afc4d8594f263", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "28bc44270e374179e963828d60e324579eb29db72271221c04a755702d571ffd", + "size": 34734 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_context_load_receipt.json", + "sha256": "45ce562a9a6f114c7ec7413bf67a4a8b4b4d878b166f571f1d25dd144ad5d683", + "size": 11667 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_cursor_task_prompt.md", + "sha256": "2497d6abf53a1744d2d60c358ac073e49464581ab0955f43fb2b6ce07e67a876", + "size": 33972 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_queued_v88_directive/05_nemesis_session.md", + "sha256": "0531dee828cb4517d4ae1c63e330f8c8e4182b61f242adbcaf0ea11d0aef1766", + "size": 1247 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/00_trace.md", + "sha256": "ba77801fd47d0e0f352c7f91eea552094695a11b8c0b2ddff6d4c27e0d670ccc", + "size": 2636 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "dcf17d49af162b7eb79dff6775227e407382ee7cac38ffa6dfb514b947fd9ee7", + "size": 34797 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_context_load_receipt.json", + "sha256": "56a693b874679d742d4563d97fd41c1d73f53671e34d18d7f8587bb2fb668a79", + "size": 12283 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_cursor_task_prompt.md", + "sha256": "25bf3ad46c5101985044d7e9eab4e834441c3f5a47ed971c12f1e5099384c092", + "size": 34055 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_session.md", + "sha256": "8fe433952670464b3325ea34cf1bc38d542a0606b3fac48fa6039f0b46ab1a69", + "size": 1311 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/01_steward_to_vizier_handoff.md", + "sha256": "97fa735671f65e248703f7878f9181d963bd73b3207aa472a47f8615b0cd628c", + "size": 1390 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "7cd4c0687878e379bc01de1ea8ef6a2e813e48bb2a693784582835d6214dd40c", + "size": 37506 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_context_load_receipt.json", + "sha256": "a479271ddf8119c000ecc83cdcc66e56661ebae3959451136f0a53230f0dfbfd", + "size": 11564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_cursor_task_prompt.md", + "sha256": "9a7d5390b8519c622738af66f54ed7bf1811cc5ab0d6d5f152e4e2fc5bdbe378", + "size": 36768 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_session.md", + "sha256": "ebfe64771ceb724c7498a733790b6123fc9324a323ef448408d6c4dae6e7dfe1", + "size": 1286 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/02_vizier_to_mason_handoff.md", + "sha256": "b2cb1e85e54feb21fae10da473e1183a28aa2ac4eda6cf809bd5e0cd084da979", + "size": 1373 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e8396afb1a6c58b6da925019211b1c8cd68d1413e7912d82bb8ab4962d31f420", + "size": 35399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_context_load_receipt.json", + "sha256": "d0d1fbfbd78dc6b2faa1b8a907e494064c0fa48fa0a1b949802bd5921b930b51", + "size": 12128 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_cursor_task_prompt.md", + "sha256": "94ea80612527a71b30b339ef1e952b7f4302347a52ff70b66425c93149b473aa", + "size": 34665 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_session.md", + "sha256": "649cd304446c7e8ef0e5983f3a52ad74e2cff0df9ab7adcd52bbcdafbcc15f02", + "size": 1254 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/03_mason_to_vice_handoff.md", + "sha256": "a97d64b2bcbb22a8c55332ce086589f6baffedaa8cf669178980a67bf7142783", + "size": 1358 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "4420cf7e6915d62b6c9c0af651f73f6d252292cb0d0f89f36a494b546b97f201", + "size": 37298 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_context_load_receipt.json", + "sha256": "984bd88c1badfeeb2f1168b2a6148fe1c1a476a18317da0238dea09f38c8b177", + "size": 10573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_cursor_task_prompt.md", + "sha256": "14859579fbe7c78933dee0b817eb5c24b5c6dcd59e95e1ecb4afc1317b7ee17c", + "size": 36568 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_session.md", + "sha256": "1dd0383fa6d8b069b19426493dddf4718bd226d89b64026895198314023d8e0f", + "size": 1216 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/04_vice_to_nemesis_handoff.md", + "sha256": "8610a12fc1e39dbedd682de2e0350cc6ce64c06f98498f6fd2b352d10b478b20", + "size": 1336 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "7f35ab20527cec1b462bd6f72d80bc5950b2bcdf27c8fa2c7c1c8deebdfe042d", + "size": 34694 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_context_load_receipt.json", + "sha256": "238ce886bca61c3237ad3c968d25cb1b95ec424d97c4c5adc7058cd81c4af270", + "size": 11627 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_cursor_task_prompt.md", + "sha256": "46491c5fe31ed2561f2f9a1ceb4f0424233d35d179c07379a9c7958e5b995212", + "size": 33952 + }, + "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T222939Z0000_carrier_continue_test_v88_status/05_nemesis_session.md", + "sha256": "c4ec50a154edb06b5236d820fcbe461b5cfd1bc47517db8023f1a196181bc3fe", + "size": 1227 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f5e553c3e954f3a719734177dbc6387b06fbb9d2970a626aac460e21dc5250d3", + "size": 35078 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "16dd6f5525269dac783dc9c7b859b7096b340e9938801ad7769613f48eb8053d", + "size": 12564 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "5c45b8efe678e272e34dd1c37fce99496f2574d3ba78a0d9f449474965933ec9", + "size": 34206 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "df7bed2180eb720dd4fe7dfef8afb3ed8adaeed799912644271acc0b0de371f0", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "e05183a02d53f023053b08a7ce47bcbcdee33be6a16881bf4c4891f9f7d95beb", + "size": 1757 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "3e4fccf1405c2ea1991d36169079bb339be8a3bf207332264e665d3ed8a01584", + "size": 37787 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "28b4f956d347aa18a941f15e355bf3f2dcc71cebbc89858cce85a12cf1bca3c1", + "size": 11845 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "9ece008d0766c9b9a986218a6754a04642579bce5d5140102435d9ec4f357d62", + "size": 36919 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "cfcc0b2eceb421fca760ae118f504f8a777d5ba2532518d6a5dd992268d5d099", + "size": 1458 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "e25b8f77503626a9e8c1cae28fb06b74abd60127bc701c5387b0e5ccced70336", + "size": 1740 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e443b795a8b13164bcc03734d28aea8637bc3aa1fbbd02fb9178dceedbff3364", + "size": 35680 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "f1dec282ad9a0bdf80c1161981bd34980c2c3ec586f4e598b467ff2396182bbd", + "size": 12409 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "0991f74b5341e988eefd5eed69c2fdf2d142e93d1becd8655b42f86d1052f90d", + "size": 34816 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "ee6a5bd68e15cca2ee651e114159d1fe6e749e52af54dac75ddce3e5889ba7bd", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "c02b8b049de436fec048b0efd3e507a8e95e42d68ac10cbb44c34e8f1e359373", + "size": 1725 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "2b89b163ed8dc4b38089ae5c5411bf1eda2240496098368e120dd8844ae5ef3e", + "size": 37579 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "7d92207e3501f01ee655af26565c8491f6bac76286672b1ee7425175c5298906", + "size": 10854 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "028646fc67dcc4f219232f49a6a56e7f93167e3179cd10b59f13e91db44da09a", + "size": 36719 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "1ec0417ba99c658232376ab04350f198b4f2a24abed71c5e4e86730a3ab3624c", + "size": 1388 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "40921f65db3ad5e2b3d71547344973e6f05d28cb6afc339501fc46728fbecea0", + "size": 1703 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "1bfde1c00991f5830e1405fb873cdb24b26a6f55b7798eb3dbcfed43e4e19fd2", + "size": 34975 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "25a0110c72c6b52315649d8abf18dd8f32524f82e6f1c0cedf2a48ca95b3de3b", + "size": 11908 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "e395d8279aeb4657f9953474aaffa0d5efb78f61989853e9ecccef95408f8de9", + "size": 34103 + }, + "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T223113Z0000_carrier_continue_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "977f541f37717b3b7e3ba79698a74296ea75521a34bab1641618cd5ca0162412", + "size": 1399 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/00_trace.md", + "sha256": "f4e4ae244c2c9fe3c49927177bb02f6fb8f9f5d8d2ce11937f07912c15da5354", + "size": 2722 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "db9a984b5eee3f73883b5843400057c94c5fae709ed12f31e9c574640971dd7e", + "size": 35072 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_context_load_receipt.json", + "sha256": "0fe2fdf19cdf229492a5690e5027d163ce3bf38fa0a4301b3a1b590cab532214", + "size": 12558 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_cursor_task_prompt.md", + "sha256": "2aee2eb1799fe27c26170821dfd1e68b14c80b1ef61548d0153c62c29a36e7b5", + "size": 34204 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_session.md", + "sha256": "122395da32196e57f0522f92e5d71c6cd322b21a2f560465b5edc4f737c4082a", + "size": 1403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/01_steward_to_vizier_handoff.md", + "sha256": "9f8a076b56c20fd7cbdbdb9bf2165689644e82006594d63d640dcfb5f0c7a386", + "size": 1723 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "4114abce9ed6ed2530e87bdb0a7eab56d73257a5aa1bba1136ecf5628c35a9a4", + "size": 37781 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_context_load_receipt.json", + "sha256": "eefcea49630bd4f27bc79499f358820bf52d58cb5bba6d341ebddeccbe79fb85", + "size": 11839 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_cursor_task_prompt.md", + "sha256": "f4873a801bf5b4aa4cecf18609818c1211e4df6325cbfff2ffcd8f7c59f95a62", + "size": 36917 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_session.md", + "sha256": "a25bdb5f094e2dbcee757d8d7fddeb7699dea63fbffe48a91e7c7416c2410dad", + "size": 1378 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/02_vizier_to_mason_handoff.md", + "sha256": "e55dc41e840c3b5e273ad115cbbcbb0865dcc342a5cc9479691be5be78dd52ba", + "size": 1706 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b69676e45efc31dc1e7b60aea45ae3cab3c338afb64a0f71cd822667c0920a57", + "size": 35674 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_context_load_receipt.json", + "sha256": "65511fefc8aded2cf7d9f4302859ed703fee8158b2717884076a5e1848412b30", + "size": 12403 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_cursor_task_prompt.md", + "sha256": "475cbd025b3ae271099a45dbbde1a1eab18a5e55912678c0b55d4637efbd5ee3", + "size": 34814 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_session.md", + "sha256": "7a691e347819f6477e1f01886d5b0a597ca81e00c74edceb0df3931457950e24", + "size": 1346 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/03_mason_to_vice_handoff.md", + "sha256": "aa0743f7fd8412db262c4b946bba7ca1c62a9b4adc022c28ab992cb9dc7b50a3", + "size": 1691 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "2de8f5b84bfff5cc80aa03f2072543ec37db452169093562be7932ab86eda058", + "size": 37573 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_context_load_receipt.json", + "sha256": "c2ae17444615de9dce6aef1b87ca633664872df93fb8db0116bdc275072e1905", + "size": 10848 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_cursor_task_prompt.md", + "sha256": "4b797872828e606ae954ff1401faffc83fb8a0af03709533fe35042892471657", + "size": 36717 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_session.md", + "sha256": "b75a9cbdc61a4b01e5d0769b39e34897aabd0f48d2bcca00e4c88231861d96f5", + "size": 1308 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/04_vice_to_nemesis_handoff.md", + "sha256": "71717aa3e8e89e6ae2d1745b622974a8c1f1fdd37089a1d9fee18a1f76d275b7", + "size": 1669 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "48931263cb9f4ee400293ad4218912936bc79f5db146e83cb3a3c3d820ac061b", + "size": 34969 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_context_load_receipt.json", + "sha256": "13e0f8d0e603d05f6e7588fe29bce6edcbc631cda14a42eb3a075d538bbd48d9", + "size": 11902 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_cursor_task_prompt.md", + "sha256": "2de7a52c189e027d0d7e4e27bd8f67da74b6ae34d621a915eea353b632fd16d7", + "size": 34101 + }, + "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-02T225441Z0000_implementation_v106_runtime_floor_repair_package_root_integrity_core_telemetry_triad_cursor_hoo/05_nemesis_session.md", + "sha256": "14d244401f01ee85a45407511e44207b37a8b13fc4ab12344538bfc2954872a1", + "size": 1319 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/00_trace.md", + "sha256": "e4dc04fbee9893217187e219d3f4f69295f3c42ceaaaa916ce75cf729de1f222", + "size": 1937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "37f63995f13384b4087eb04cc0ffe4c1560dc44d8b7de130b9547d8f4b7bf9b7", + "size": 35168 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_context_load_receipt.json", + "sha256": "f3c4590b8c7b6887de6d267e4aa814cca0975b4dd7e47ce5962d52d3e2a0fd50", + "size": 12654 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_cursor_task_prompt.md", + "sha256": "597af5e34246d00991acb52eb28803ecd90c0c008c5776ac31281c26aee1877d", + "size": 34296 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_session.md", + "sha256": "b03fcf1e29af2f592ef75d7aae01de5a4d2be9bb442de320ce310f5917084a45", + "size": 2033 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_to_relay_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/01_steward_to_relay_handoff.md", + "sha256": "db547355a64140046b5fe21bfcf3f41406eaed37070c8018448d05b20d25cb14", + "size": 2132 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_COMPILED_RELAY_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_COMPILED_RELAY_CONTEXT_BUNDLE.md", + "sha256": "ffe5dbe5ee19dc5c0b47bcbddc62b1f81bb9d65b6e0bdffd6c5b2834b0a04e9d", + "size": 48737 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_context_load_receipt.json", + "sha256": "70e70821230efd1dfa16ced72a28fbca9ca879f28e4c456d28cced7e1a19926a", + "size": 13554 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_cursor_task_prompt.md", + "sha256": "364597fce105761a03ea4a7bf0a7b543df1fff1dbadb00e400d40eca1ee28a29", + "size": 47873 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_session.md", + "sha256": "bd264661be49991ea36abf80fd1f3fedd5bfaec0cef2859bd7df20d36df5210d", + "size": 2073 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/02_relay_to_vizier_handoff.md", + "sha256": "897c07d238bd9e07fbcb49c381ca0605cb22f1c3370b2008301b8c12d221b8ec", + "size": 2240 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "928b1f1b123c870be2c3c54726a62f0eb306650da97734aef95502afe8c31065", + "size": 37853 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_context_load_receipt.json", + "sha256": "60472f116fa2651f2d179a258d3b7af8d0a41023ccf650ec897bd060a1129f64", + "size": 11912 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_cursor_task_prompt.md", + "sha256": "f189681ec1cd82d14228eb5a79c70e47457968ff235492181349142dce94f5c0", + "size": 36985 + }, + "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T040708Z0000_carrier_continue_v107_no_silent_deletion_and_trunk_preservation_gate_protected_deletions_block_pa/03_vizier_session.md", + "sha256": "b9906e9126ad3e73c3b06c2fc8943ec70ee59b97d7f57c7531f64fa241b709e7", + "size": 2013 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "sha256": "8efa069f8c445a5620fe081d26c740e33bf48b3ab67c0d135b1f3172ef3e17f6", + "size": 2814 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "7d9d283189bb1f3089ce953455cb068c54fb64216c0192d468cd790f49fc0427", + "size": 35170 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "sha256": "bca778cd4eaa31fb5b870ada2ac7c6817eb3ced7f8d0e191c5b010b72bad7362", + "size": 12656 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "sha256": "e8a545cbcc59e6412388cbad4a67152641eb3a8157697995e8b7840009b4e87c", + "size": 34298 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "sha256": "393b060f61b0fbc9171b8ca67f2907614eba60f21913d8484f29a80dcf16d79f", + "size": 2037 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "sha256": "e9810acde99ec9fbc573839c562c47449c89b0420d032525101a07c3a1acbb9d", + "size": 2126 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6237ca6d4182ee80180a616e8eb9f1d0e5f928220f83e2b80bbbc37a97b6dd82", + "size": 37879 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "sha256": "fb85bf15193955ac544f22731e2beb8ab4eb463a54689f87116214b3e96ce4ea", + "size": 11937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "sha256": "d40e2481a241555680833ca6c7516ae72fa4335698d456f0407dd53d2beb7500", + "size": 37011 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "sha256": "8124588d1af80bda61bf27431cfe04bdecd3506f4aee16862bdbcba14ffa52d7", + "size": 2012 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "sha256": "d5f0ef317272523d0b3f241b905749e3a2a28c46f97bf7abaf804d33ff985af2", + "size": 2109 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "f2fe88163c18a333fc0f3a75881b1f2b93715b7990038ab7698d0f5f81033d6d", + "size": 35772 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "sha256": "795c6c044943665ff822b04a66e192f135508b01809e0f1554816db1cbb42cbc", + "size": 12501 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "sha256": "2cc55b704e8f18ee7d8cfee00dd084ccb52c64661c92c363c711354490af3632", + "size": 34908 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "sha256": "ce53550abcd54bf224afa479592f91a4192d5b858ba69f6b38022fc59952fda8", + "size": 1980 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "sha256": "5746f8f2d099c702054cb87dfe073fcda0ff63e758d96bd416cef02a12553b97", + "size": 2094 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "d1cb8359bab7ca98606490b95803885507575e408505206e3fd9e8e0f27e6ed7", + "size": 37671 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "sha256": "57ce0c03c68e1c0d670e2f64f78635d97d66a24e16556a24d00c44284bc52481", + "size": 10946 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "sha256": "fc3b95419e79deff7af6f98d56483d142804dd879da3b8c3ddbe896d527d2430", + "size": 36811 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "sha256": "927cefd015abde9b8872242f7535b81e0fc2125ec16694b1d1d46dcf1eb1836f", + "size": 1942 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "sha256": "744d0ff91420e05fa4aed0e449a611d0726f753a8db08512ee4a7e77fc552543", + "size": 2072 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "c90aa3a4f2610ff58d76a1dc2857224c53f4a37700d03a9db95581d73fc63e47", + "size": 35067 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "sha256": "e3043ebd315c6177ef237aa3f0845858d6cb723c375ed8e7e37bba064d0fc151", + "size": 12000 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "sha256": "bc62ce976c8cce45729cd884290948571d40bef4f12e470310e898e79c1600cd", + "size": 34195 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140844Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "sha256": "33adcd243c9178bbc4be42d39bf56156f3d4fe62e97adbc32970f8dddf72dc9a", + "size": 1953 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "sha256": "8efa069f8c445a5620fe081d26c740e33bf48b3ab67c0d135b1f3172ef3e17f6", + "size": 2814 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2bf547f6913603b4f57efecbd3f46b1ee7008d0cf1c0929f7f68860509c56b96", + "size": 35170 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "sha256": "40308cd5bc585f2fa8bf760da09c0ff2056ccdb6b7c72ada095ef2fa22f480c2", + "size": 12656 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "sha256": "cfcd2882173de29bc8a86d9bb17cf97527d0c34112fdc43a8b4d17ee88479ced", + "size": 34298 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "sha256": "190033ec360f1fd3f179ed0dc9abc4464c42de567e0c520ee7f4ef18cc3afbc2", + "size": 2037 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "sha256": "914bca69436093159ac0f8597622d94b3e6b6012408f91444ea30f79c5bafc47", + "size": 2126 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "4fc2aca6b9c9c4ee04328e572506585bbe7790822d404746f045913adb4d159f", + "size": 37879 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "sha256": "9f128339cc83e943901c419d273e79b820b3705e67280bdcd23fe3fe0981989d", + "size": 11937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "sha256": "c9a7af8a52054aee43b7d3fa8de5a32a20d9ef9e5545729c7268019df8226869", + "size": 37011 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "sha256": "c934595ac915208332fb10cdcfe720bbc5384a5aa43eacb540c24fdb054e6186", + "size": 2012 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "sha256": "4a0166bdd7424d6ca1f910b062ffc37d15418bcfb75bb942c39294841b4a1cd9", + "size": 2109 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "e99ce27ca712629ce46b77456c6f07e454ae99492cce4889c6497c6b138533a6", + "size": 35772 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "sha256": "4b19cc85b74f41dc5985c699f153c0b4f026e162258989186d2ee32c1640bc38", + "size": 12501 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "sha256": "224981f4b287845627b4e4df50bed863e27a975436e2dd1d73a9530b6fda0755", + "size": 34908 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "sha256": "28a9726a03d53e27f77bdd0cfa27c496fcd2b3707af6ebef60f513ae01dd8a29", + "size": 1980 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "sha256": "2e438bd528e293b933107c592b706a5a0adda568b8192414dd7785128a8ccea0", + "size": 2094 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "f0cb0bd3288c14ea9a7d06985a0223f4889781c33310c5db2db9dc0487858a81", + "size": 37671 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "sha256": "418f4db762129dae1fda5f020a305eb0ca3c44494da3814509e91331aac7bc04", + "size": 10946 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "sha256": "dd7dd697836fbf89a8cd3db420b5d0ba15130acef12cf499559feb35cca9bfc9", + "size": 36811 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "sha256": "9cd4c9659987e80e77d150da77f23bde7a6d2fc681d9f9c42212ed73ae61ae78", + "size": 1942 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "sha256": "b276566cf2a125784e321b176817113f4f60a95734b218bdc69a926d879ff926", + "size": 2072 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "a30346d9e8a9a151de5f33b48aaf7362817d78b792e98ecf7f00b90483f8300d", + "size": 35067 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "sha256": "24f1fc64631b9ea83007b1554a4405883a09c620043beca259738c9be66a54fb", + "size": 12000 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "sha256": "6af7b34057cb64b2ac88993f8810e1b693d54854d2ffeaefe774a9028065c4bb", + "size": 34195 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140939Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "sha256": "2ab5a31a18cc30d214f4255ea1c4f4ec2ee2bfce9873d2a3f10564f05ef62ed0", + "size": 1953 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/00_trace.md", + "sha256": "8efa069f8c445a5620fe081d26c740e33bf48b3ab67c0d135b1f3172ef3e17f6", + "size": 2814 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "09cf4d624a17c24a4e0a5c4eed7a89249d35f608b125c9cb0664954b687d076e", + "size": 35170 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_context_load_receipt.json", + "sha256": "714ef6af86a8c68d0ee83cba48b3d4c44ca364e3d13ac22f4469e6a36026fd38", + "size": 12656 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_cursor_task_prompt.md", + "sha256": "183e55903bfe3d836ba719a018560da6f900993da8619cd1c4d90fc3666ca956", + "size": 34298 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_session.md", + "sha256": "534655af5496661bea4d0f94ec5f48caa4f9377a1bf71ccea18f98c796df8634", + "size": 2037 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/01_steward_to_vizier_handoff.md", + "sha256": "d86d7b24122421b91d11912d007959412f94f434f056d10280336f26c516ae84", + "size": 2126 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "e7092e54122a9894a0a213650aee02b7f4ec1f4d55181a29b1be20aa721ba689", + "size": 37879 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_context_load_receipt.json", + "sha256": "a1ff80ec93e1cc8d718c1007998fe6e6a40cbc2fbab7055fb11ad2b10601412a", + "size": 11937 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_cursor_task_prompt.md", + "sha256": "1d1c78713a680cfc3cef0189754014e62455113115ca3243129f117bb1ffc76b", + "size": 37011 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_session.md", + "sha256": "1694a4d9264d586e9c2e201a31d5b7465684eee618d0b3b3d352584003636f13", + "size": 2012 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/02_vizier_to_mason_handoff.md", + "sha256": "029ae0ecc294f7ce1870e33f6cf23b75dbf89f3ef4d6925ebe1a3c2d8af29070", + "size": 2109 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "3a17c69b6a0c4c31ff8102fe66260a7722922a7d63e0ba395fc6becd5d23068c", + "size": 35772 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_context_load_receipt.json", + "sha256": "94552629ff0f0d12a71d24e0a7d2b749fe5653ed434e8c3d539e6279f1bf763c", + "size": 12501 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_cursor_task_prompt.md", + "sha256": "2183ec4c5a0eb14e2e3a6671e7a3fec0b4c3fc22db4039d031fce225f80acd50", + "size": 34908 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_session.md", + "sha256": "9b9ff1a60cee65bdc99a8ec57238f64a4741d34365ca2d07913069190de31092", + "size": 1980 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/03_mason_to_vice_handoff.md", + "sha256": "03459e58bfbf9e26a9a6a76b42f5244fbb9348ba170765686a154c2439e03f5d", + "size": 2094 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_COMPILED_VICE_CONTEXT_BUNDLE.md", + "sha256": "499eee93e6ea8a4a1994895004a00348f81bc0fb5989f201e035577f29de0e00", + "size": 37671 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_context_load_receipt.json", + "sha256": "3efea557a958a9c172b5de3cc4b5e6dd146e8689567104ab042e82a2b54005ca", + "size": 10946 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_cursor_task_prompt.md", + "sha256": "7e8857b8877377c05b694515c8bd0262d513e3c3d9e5575941ca3021c0a0d2b5", + "size": 36811 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_session.md", + "sha256": "99a964731661d7a8158eb087c8995f80deec34ea65daeec7538e373c2585391c", + "size": 1942 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/04_vice_to_nemesis_handoff.md", + "sha256": "eac2c6cd41e7c5ab9bbac7d17fa782aedad6dd992f155a1ffea4c1a5451f3370", + "size": 2072 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_COMPILED_NEMESIS_CONTEXT_BUNDLE.md", + "sha256": "e08d11cfdf2c376d8f7ef3cb3f11f0f064b6988993dbef9456e9b2e6433fbdab", + "size": 35067 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_context_load_receipt.json", + "sha256": "62896559051df7b58dc347e6fc4024e4031d40d2a39f6e16f3c05c65700d3fe9", + "size": 12000 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_cursor_task_prompt.md", + "sha256": "8069ba17c30b5093bf5776566b892d848787379fe95294ea1e77bccc81356722", + "size": 34195 + }, + "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T140947Z0000_carrier_continue_v111_current_state_truth_repair_active_carrier_objective_reflects_v110_package_m/05_nemesis_session.md", + "sha256": "8f552f9081bf3964f30b9de4f6efb4a4e7d3d8a8d4e9ce3faa5f69214f94e3b2", + "size": 1953 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/00_trace.md", + "sha256": "a545b877f681d58acb002412d55445057edb868a2d191f6c78c4475c71402699", + "size": 2352 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "ab9f1fc0c4210d1a077fd570fb1d52bd8b2c6c858a349fc98edf79a71fa714ee", + "size": 35176 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_context_load_receipt.json", + "sha256": "e7e4eb6b66b554ed75cc278d08bbd92e8815ad597b0ba4ef0258fade0788ecd7", + "size": 12662 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_cursor_task_prompt.md", + "sha256": "9b804d1bd302f623ab34ba84560865c603198ac9f8b29e02cfecf98321ca6597", + "size": 34304 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_session.md", + "sha256": "1d099e4e9e4bc1df8e22c676b7b185bea07b01be63b4ef8ad80dabb6e9b094a6", + "size": 2056 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_to_thoth_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/01_steward_to_thoth_handoff.md", + "sha256": "431d158af6c07314923df465fabdcd576e7d7f059aff4df61f43581ef8d0f1c2", + "size": 2150 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_COMPILED_THOTH_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_COMPILED_THOTH_CONTEXT_BUNDLE.md", + "sha256": "d04ceb8a89e88bedfe8fd42cd382f2f34f1912f4b0b6cb2d03d9e2624b0f7cc2", + "size": 34466 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_context_load_receipt.json", + "sha256": "72493a98bebc0b257739cd8d101728223c9e3ae2dc6916a7c4f53eb7e0e3b2ac", + "size": 12239 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_cursor_task_prompt.md", + "sha256": "62650de6ac2d8db7c6e29fe0da0508be49e8d81731f80a2f57dfa8bf28bc3e66", + "size": 33602 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_session.md", + "sha256": "9e29b12b265488416670dedc2a268845d89faede7e69528f5cc1cc11a7e6dfbd", + "size": 2024 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_to_atlas_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/02_thoth_to_atlas_handoff.md", + "sha256": "ef393f3b015343c4891b5ccb21f59849d244a4af0f0982ce4a1bbba398c18e4a", + "size": 2130 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_COMPILED_ATLAS_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_COMPILED_ATLAS_CONTEXT_BUNDLE.md", + "sha256": "e2e8493adcf9e0618c3950d7f82d1be89ec677be66f169e4a7a9fec61d0b656f", + "size": 38057 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_context_load_receipt.json", + "sha256": "9257345966c5039e80d62cb972352057b868897f3df731b5a763a5b7f33ded22", + "size": 11203 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_cursor_task_prompt.md", + "sha256": "0dd0b3c4061614b3ffef74af3c69b8ae8cb922514e6230b4e3965b0c38b202fe", + "size": 37193 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_session.md", + "sha256": "86ab10d04c0b1211c6b1b5a1365a67301961403e50cdc918f1346723cf9728a5", + "size": 2045 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_to_vestige_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/03_atlas_to_vestige_handoff.md", + "sha256": "b33460d390fe2c79cf6d52a70b2c0cedc3cb97a487531699efb42f6f00e54b74", + "size": 2129 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_COMPILED_VESTIGE_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_COMPILED_VESTIGE_CONTEXT_BUNDLE.md", + "sha256": "cd158a8c8c67b1df93bdf9c569c53165e69b043242caf371dbd0a98c3f283520", + "size": 42649 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_context_load_receipt.json", + "sha256": "06b2841f364fe969ebdfdda5da1b26f4f40c50f11dd85f6048161f70748f61b3", + "size": 12434 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_cursor_task_prompt.md", + "sha256": "9d263555f88b21bc9b03a47694acf2b3af9d1062f5bd38131df2334a2a52fdde", + "size": 41777 + }, + "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-03T141724Z0000_carrier_continue_v112_package_runnable_status_repair_optional_safe_package_evidence_no_longer_fai/04_vestige_session.md", + "sha256": "24ab9b084783e81f1cd8c0c454c29b401cde94ce0c786e42afe833b77b473c96", + "size": 1999 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "546576a11d8c7372568385ea094a0117b758c617ceefe02c1b12c07353c407b7", + "size": 34997 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "292622a2689fd054ae8fc6ffeb770d751a436ebe215623107be559be14acc01a", + "size": 12483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "5e613626c7f37810cf3cb405e379bcd5347669f90470657c14afc152af89ee62", + "size": 34155 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "8403e458993b3acd688b5527571179178394900d52ca2f354d65e5da4a1695ff", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "88fc53477406db7fef6355f58fa53909d928ede0232cd3070344de5153da5a21", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "761ef87892412406dc625cb03e233a3a0e651a1def1edc947254bec02940723b", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "39944537e77f3f27cc76a141ce7a26519dd2753d20a15aebf7bd37a936b4fd86", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "0157f2ecf5daa1eddffddec18543fee53b11ef15619a62545a8dca89810d2276", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "348798768e1551fd39ffaa74fccb814072293fcad0059d387f39911cc5e2bcc7", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "1c5bdd83cae05bbcb578deaac90095b5d54dd8dbc6fc79de7bf31e2da8b280dd", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "5b8b1afeb70ebd7047ce05e5227a9cf297afb4f65753ffdb57e89e0580e7941d", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T040410Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "de18718a3422ead6cba594bd1df78d92a77e6b7c11d152197aec76da7f1024d7", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/00_trace.md", + "sha256": "fa2070b05f10793e3896c108441cede436790cde6f8dee4290ae1f5dc5037383", + "size": 2647 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "bc5c1b1c69d036bfcdb4b3f49e47682fa1f1f47f61c31dbb595642efbb6b34a0", + "size": 35052 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_context_load_receipt.json", + "sha256": "e39a4177bcce13e6e06d11c5203ade249865368f8d035a0c2af4b217d932d0c1", + "size": 12429 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_cursor_task_prompt.md", + "sha256": "7db36b7f9f5317fb5d910f222cf5c2fb696fc04651741f742974908d74e44a9d", + "size": 34237 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_session.md", + "sha256": "0d73f94c3e638b9244ac6350302334eb7a7b245bb3edf8586500a6cf28a6f36b", + "size": 1369 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/01_steward_to_vizier_handoff.md", + "sha256": "c41da070c1292e7cfbfeaccdfb166a286dc144ed0fd6630ce7ef064ec4150458", + "size": 1463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "27b052020760893d2823bc4598d403fca70121a7c6de86d16505b2c839ebfdec", + "size": 37761 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_context_load_receipt.json", + "sha256": "ed229a64fba9dacb8657407cb7901a14a3c4d3fa15beaf997fc8bbeeebcd4cca", + "size": 11710 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_cursor_task_prompt.md", + "sha256": "76cea8a6eb6c94fe04099f4ac8df654074041e0438c10c9733d58bfa09c3d67a", + "size": 36950 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_session.md", + "sha256": "ddc0db7835dc410f4a4f000af68c3d9e4fd9692ac0cde01c0b545151f3806433", + "size": 1344 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/02_vizier_to_mason_handoff.md", + "sha256": "78e4bd4586cd3953987c5f9d51504f57e7713cf9999704e51c358db2555cdd76", + "size": 1446 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "1670b78ebba356e5e74775de52973dfbb61e4c60ce1ad5c36d5a2c65434e4bcf", + "size": 35654 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_context_load_receipt.json", + "sha256": "a8cc5c89ce2e76a3a0095631b27f647a97f62d1dcfdd4ba0850f712ae3254dfc", + "size": 12274 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_cursor_task_prompt.md", + "sha256": "80858337c5b4ac49f91392ab3733481c19d370d5d5fa4e19f4847e2c377bfc1c", + "size": 34847 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_session.md", + "sha256": "ff9b786a83822723b0bd2323187925a4b10bad704616bda4b314be89cc062409", + "size": 1312 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/03_mason_to_vice_handoff.md", + "sha256": "8e94cfa585c1be14f80527036f52a48a1ab78176b652b721e2c970e63b3561c1", + "size": 1431 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_session.md", + "sha256": "ce48c221d614da802b047228796cbb1ed050d87d355067723c4fab2fee181247", + "size": 1274 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/04_vice_to_nemesis_handoff.md", + "sha256": "60181509f2d01203df2a0013fc357a7a84aafdcd3455b52f8ef35822f22a251c", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042405Z0000_carrier_continue_debug_queued_v88_directive/05_nemesis_session.md", + "sha256": "aa76eda464ad7073231302af87175ef02132acb42e560d868c5f1edf97c7bb33", + "size": 1285 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a2bc666645aea25a5ce53468548225c7e7aebfa5fbe6af18671122b8ece7a877", + "size": 35208 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "b032a531a8b98951368cabd7fd8ecaa4223db39565469c9cc41a9bce970f77df", + "size": 12585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "5881d7ceba56ba2eaf663a5b58dda786921589a4f2500d03445fa9cd72d06c5c", + "size": 34315 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "600d5ceedf9fbaba0bbaf0a784a630fc0060a903788f80b2d571a7f56ad78db1", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "5d3d44e1a006cc8d32df52d2a686961312c59ba88e9d050e5a9124188f55e10b", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "65a292e4c35681d6e8c636ad864cd9d93ec6e43cd056a599e95420895b200d71", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "81d3367cf52bb5c2ca23e61f9efd606dd2ea564168f5685e3775613cc13168c2", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "17fd629ece2e047c1dfc882c6272e246c7b313467b2f7a012c69da3b4f8fa483", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "14ae9a3009456307e87113e806f5dca4ac9416c28f8813249cc607297e26c997", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "eafe59b28bfe38c236b368d9d15aa5304aa075990d9462285d8c42db7b812bfe", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "e8f3c0e60b75e24b19773aece10df039c6eb73e391e60a12136c86202cfe7c79", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T042854Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "8a5f9eea14e2c8dc712bb027bbf231b897521ecba56106a10398f9978345ee28", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "eeb9791717fe082d6140a731c444639bb758e72a1842994e5fe76a9bd9d20483", + "size": 35208 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "5343ecc0a4be7e46989871002e6eb6094a4f46c568c959dfa16143dc85fee5e0", + "size": 12585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "09778a53f68fbf974da61a6eab3f31a239385a3b8ebd6ee9d7c67e365b21c501", + "size": 34315 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "fae2e0af337112632c46a4f15c75e44588f5c747eec98f3079454cda215362f6", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "96d70b4c0d2c899087eb309e805670a43c118ce0b15d94db86c30324f9ab49e0", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "ee83b0bdf2864ad813b7e140cbd604783eaff2b6b814c18ef5d1ca6de9e2f580", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "e18f8feb26562c05b8057ed22106689a609af5c45f53b3ac0bd4c25156970916", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "40ff257dfd773b8a292ae06c762ea3cb721b2b82fe27577ccffcf5e3c6f16058", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "4271518d771922a6374169f53ae3e3c81e3339fe9129f2e47fef769b8cd6c7b2", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "7236133e1c4f6486b70c5f5d647f2d6936d995b5df4231d9478c3c89a318b1b2", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "998e4c9c3c02d693b9181e697d80541f1ab03e007d15fcc75cc633273ec17479", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T043451Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "94001e8935d5e83a325bc467579e6c072b29a0b0f032190523c145a4f2db98bb", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "c0d522bed54d04dbce4259c6ac49f16ff5e3e17bec35fb42e8ae62fdb74e8901", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "9f9feffc290d7ec678d8843bd445e70289b6e10032befb726e583e0d028cd8de", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "7d5c735953943cb37c1c8265db3c85e23d3b601363a361b0b40406a195a18835", + "size": 38457 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_context_load_receipt.json", + "sha256": "ce2e8c572902911bcd96584c982bb17c65c6e612385d74a2cd6aed71a447231c", + "size": 12095 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_cursor_task_prompt.md", + "sha256": "49f1ecaaa94dfb8145c99266134770c2a295949eb7f284bf63cc0bc06051a4cd", + "size": 37568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "d2a1bdb1527b5acbac6720ff594c48678964abfeebbfaeb0620ff4b15f56ac35", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "932bd2b230e8d49c43297dc95297f35e424b775026593a5104322eb6f7ed3d22", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "f7d5424d7d4d1294c22fd5c46ea2db757951abbee3ad2986f50b7eb99672bcfe", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "365423860a810862b34f90e13b0302e4252d17496cb9e7625c0bffec89864e8b", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "3d1d12e2c0c4921bcc900441245ae813f7b7750e2c7b028763928c8f352ec5b1", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "33ec5bbfd272a0d1a2b24ce5aaa3be65a85c1bd828ace54e7515792ab1de5550", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T044602Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "f1e915295bb1fdca9aa10a52f49e7e01daca730b58fdd576f185af5c6122d12e", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "f0f016c3e987cd79784583a4696a992920fd40493ad77ea107999f15e95c7512", + "size": 35748 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_context_load_receipt.json", + "sha256": "2e718ff805db3121868bdcc26865db389e8683399b2c55a824b53f1e411750db", + "size": 12814 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_cursor_task_prompt.md", + "sha256": "783c1b17fc2dc4ded1dc082c2575829bfc8fd4c5351be8a306899562c31f2a35", + "size": 34855 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "a7f2645045e0a793c491c6d5a1b29a012d5efe548ad2f4df9286cc129b0777e2", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "3242681278b21acd42efcd0e17bbb5b72cc7e36034c50c8c62ee410e7e7ce0c4", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "ba2cadf49f5065a1704129ce95d95506f98b105db71b05e800c7b7cc978266e4", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "dc14aa0ec38b3f4bad9216fd1ecd1b1526afe22ebfbb576e471308b34107f2c1", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "65ab4a8c11aa071b917fdcfa568252f6616752f5d4aca47da257d151cb886a7e", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "f93930714394f2a8e7632bfb610397d5627afbab764e3cdfac9b90f0841c4ef8", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "a62c42b278ac0dedb93ec56f8edeea60ceef60c7a3fbe2d5c03bc51d33ee7c4e", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "00d9282b687f3986d2a5770d682ab4aa0e20574bc00da8339504c20bdd523fc7", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050138Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "2848b076dd3f12549ba7e8aea76cae514c9368a1673bad66c3f42b18be6910e0", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "e16c53d1d4cc6e8734550340fb8998766600eb6d2b291d619ad2a4e4107e47e0", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "58eba615d5d380d60f7786e81e91209e7823bbc28e3dea180bcc27a759319680", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "79e3afb4d77443ce9e84f6fe3a2e0160f24e68754710439d1fa4d9eab6921d1b", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "ee7987a9918343731f7d316800b658e6b18efa496b4d5998629e5f78292f6694", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "b2ce78f65624457fdc1071e2c843d27837690c8a1519704df25eab23dd2b1b2d", + "size": 36350 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_context_load_receipt.json", + "sha256": "3ebb3aa0bd084f56145cb96275743816be77a4c31fb92b636cbee4e02a0c9ce5", + "size": 12659 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_cursor_task_prompt.md", + "sha256": "a11c639e012b8296de50ca3bdec10c6913b9d80b5e27e73da91ea3802e07aca9", + "size": 35465 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "12cd915ba4b1cc28a20d4f8aba14af8538625e210c051e3371f8f437151aa72d", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "261b9b2e29e83cf47d24869346d58c48ef2228ec4c59f15cd2360f152a585617", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "140cd3552cf45d93ec878479faace733db62619cfbd12ee9ae121729a2955673", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "793abd19953bb09e0a83741aeadfe928c607b3798f7d465e6fecc03ce06c19f3", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T050331Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "563a09e5288af9ecd66030c1ad58284dbae28cd838c6862fc7f51470ae7a2bd5", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/00_trace.md", + "sha256": "aaeb7d2e3005be8b577e139742d76f486fb3c4d8dbc67d4ea14ef3dfec41934a", + "size": 2686 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_session.md", + "sha256": "261afa642eee69938e7320d647de4b210084cf4c44da902c25c6bfbf1475d755", + "size": 1411 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/01_steward_to_vizier_handoff.md", + "sha256": "d3b7f5da8152fd21bc6794bc5bccc3041a987942a048d02d6bfaf077d9f96c09", + "size": 1640 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_session.md", + "sha256": "b5a3f71bb5edca3f4a97da019b0896e523d23992551ba8812a8132dc156ac279", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/02_vizier_to_mason_handoff.md", + "sha256": "7edb3c91833c00851c77b667a3fef7c786ae5551c163ac158d7dd3db58591a12", + "size": 1623 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_session.md", + "sha256": "a8307a455a98469020e8c53925d09b80e63809b645a7c89d49db1dac6a8496e8", + "size": 1354 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/03_mason_to_vice_handoff.md", + "sha256": "c147a594cdff6ad692834369345297b38f47cba492dfbd31e24a69815f401401", + "size": 1608 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_session.md", + "sha256": "c7396c8035dc13545dbcbd093912124f4f5df9f2204b02e7da7e0827b6f8a3b1", + "size": 1316 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/04_vice_to_nemesis_handoff.md", + "sha256": "16ac686a44b7c1cd5ce0036ddaf405507132d4565ede864ee28f6c007fde3fe2", + "size": 1586 + }, + "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T051125Z0000_carrier_continue_v120_chatgpt_browser_mcp_connector_and_correct_carrier_onboarding/05_nemesis_session.md", + "sha256": "f319b084f42b4d13357446f2d28db3137f7e57c4aef49e1fd2819f2fc8504c7c", + "size": 1327 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "2959944af6b7c15bb9e251305315698f0fb3bacc9be62670c7b4c668c851caa1", + "size": 35744 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json", + "sha256": "1c28bf788af4e6a1959c3252aefb7d1738db8c71bc41bd3930452b383f0911ad", + "size": 12810 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md", + "sha256": "c940250cd19bee30a40867e0ff223fbf3f53aa44cf3a0d247c1ea3a2d17af415", + "size": 34853 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "02ea8bfb772beb4848ccd1503da4d0754fb53328e106af306ba94a89c53e3c68", + "size": 1521 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "52c99e659f3b7f92dc258862736db5883f2de10dff3a84384d8f7f066286c480", + "size": 1691 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "fbe957ea19a6a91a70159b95eb8304ab7a3fbaee5dd153e58e397b2521cd3fcd", + "size": 1496 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "b42d825e0a887b10c6a60826aeb36839c14fd0db0906ff8d8c12cff8fc80142f", + "size": 1674 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "ed785e343d6c57c07e40d64834a7181b4fb62e7f7b1ae5c9e3d29d3e90805aa1", + "size": 1464 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "2ff058ea4df07d374b7835af9398335e72bf8cf283452767f064bc96d5179e33", + "size": 1659 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "462191dcc70e595ce71afabc517ab232c034c264d0348b5c50b3a560332b45b7", + "size": 1426 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "fc54fb6505499ed8c7bccf722e2047ee3b5908152065e5da4f73b0baefcf0f28", + "size": 1637 + }, + "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T053817Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "87311673cd154919af2f7b650e6b4f59e6b21d255f9181ab9b7b6e5040b29231", + "size": 1437 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "d75e07219e09fb1fb13c8cf4ecc0f2a599479a778ce26da94b3990dd2416852b", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "d7c3e31fe78f6f952a3b6e25e8ce8e62e812164d7c219ae2cfb98572f713960c", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "5048302ad0dd15c559e1913274b7d995e47a5fb0ce56f1ed6f36bfff8c072fca", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "ad554b8270a90d38c147345f72d703b38dd673ddaf707302f202d91cd58e8428", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "ec9f3271f4fc8ce0df049a2384c65c6e6fc1d1555acb87ebeebdbb5cd4a21b31", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "858bd1847bc6dd323dc6cfad23b854a074db1cc1f42c731e65abc8289110230e", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "9edb4cd3d54b58dfbcf50e6e199772b01f7eef6ce4c8cbb7648d85d262141646", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "efbb53a5cea2a5ed50312153472e839f4e2310836e83ad6d351906253b33b795", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054335Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "9bdf49e9cabbb4a9cccf074e7be5bf5d760061fa4d607792b4319f9b94f25b76", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "884370285fbb7301b2a49d295905ef6aa36a147befa8a26f5d363dab21932b41", + "size": 35744 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_context_load_receipt.json", + "sha256": "74495b00f96f9412e7f00e83ead94f30ac5bd38446caa4969ce50b18df83f46a", + "size": 12810 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_cursor_task_prompt.md", + "sha256": "0e87fcad48255436c91abb8c11cda95f07432f8bec3d29363504745c130a5bd6", + "size": 34853 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "cd97e56e5bf6f19f68ca1b24884f389b278e270fb1f10ed25d28dd450545cd18", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "d3f6530c0db16c67ed8eae9b0331dab400c3436b24fa1691cebfebd67a41d597", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "77b2475fa0a4f68c781bb349b74c916e5fcf7d3a28d7a8f53864db40ef5aa8e6", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "4b8b8c6e3256ffd76aaeae88f44337716989328e00b5190428defe08f785d19b", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "277a0cfb30d6581adfeafe1dfd2ab8c48f6a6aa7c89fd1b8c9b077d310acc827", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "deba202f07db65d313ce92ec49ce2464e4f7d7274e5c376dbbdfe305e3964837", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "ecfbcc4a6b8b9159cfcf4dd933691cc18bccf6d2e06f6f0d9552ba3e9ebfa520", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "bfe6d13a17919f2b8c72d6c6e341024ac235f3721e627c67aa75153ee54f5974", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054514Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "282070d983a2eb265dcd7064d3651ebd479021c6fc9c484d77d65e4b9c322568", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "3b6706a2783848c880b7ddde3f1d28119ce26b846ef7ae51a89d643263fdfa6e", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "002cd8fdecf720dad7d76e1caa452245d6cb6c3062f29400981446c7ca82f7b9", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "f1d1f1e9dfb6d8e87e1a9823dac2fbd9b5d27e88187949727f4ef8ca69283257", + "size": 38453 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_context_load_receipt.json", + "sha256": "8ee9f228d9ef57263b09f00998d6ff19d87c5c72fc072b977cb9eb4e3c852aa9", + "size": 12091 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_cursor_task_prompt.md", + "sha256": "3226042e25621a94192ce01e3037bc1d550bad56cc7b3342c7c2c2d9245a96ef", + "size": 37566 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "7aeaefa0b86bb2a9b871e2350fd7d5ff34c6d9990475bc2c4647c78e7b2e8f03", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "c9d2b3cb362dbf84f74d01b77e65cf56c1be2578069d724d71d996228bc853a2", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "eb38ce3d942a4c5060603e093c783254e6b9070fd8f8c971c77cb7bdda5ece32", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "21b088d240408c48f2dbbb9087fe6540b469dcc5208c173ff6ce34326d17c7f8", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "a17495c2582a17c83b049100d182d77af360f2d26fc0ceca2198c94b4e9e2983", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "bdab000b2e30e3db2c52d93aadef829fe4fef663e6a6b75005361b48955d37b6", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T054603Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "33e3246c1286b9c0164da05d07319b06ef387eecd08b1ba012fdc43e51f07325", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "bdc26aa0ad98d1d8e31a1264210525980fba61e3203ca8780f1685830cca0950", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "65d81a6d7a27653c14ec2360fb2b8cb7972cbd764f924aaa2dd5fb8198a88ec6", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "aa8c645f3687900634839b11003e8e2f39c0136f29c2eab10bdbd9af2910b09b", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "c028c6b5812c63b0d8eddccd8a5475dec0bfca22391454a092b2727241711a08", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "d2c5944a3e793d4e4ea718f9b66733613c851cf7bb030a220fb8f0d83dd89b56", + "size": 36346 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_context_load_receipt.json", + "sha256": "598da1c9ad41888211f1756747a965b32a8372cbe3cd5a41ab8f3c45719a8139", + "size": 12655 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_cursor_task_prompt.md", + "sha256": "959147e6d36d2b7b8411e15573eeaafbc4ea1e36f45a22e6777af5ce06d14dc8", + "size": 35463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "1b59d3131f120b194fa35c85138e2890b1890d8a04a9f0adb11a43899d57a5ee", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "7554631fe3ba9168b983c5769abe8c9d8bb515c9e28e6caf1e2a2535fa66fbe7", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "290058ea0e7bf8f41c5b9d02265a338304d8fb4fcb21557e8337759c27bc4931", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "ce591efb3a476a18203791777de52cb60b60595f5eecf490fd44e1deafd5dabb", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055204Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "27dfe784705fa7892543c2bd838b97ade1a3f612f97f16c7e1e8f14e2c642b3c", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/00_trace.md", + "sha256": "87488e020dbfaac4d7ec7bd3dd043750e8004d5197aa7f61824c1ca3dc870ec1", + "size": 2685 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_session.md", + "sha256": "c33e4e7452d3ef5054b1c0fcd30a265394b32b3d33cb812870dae5714eaceb28", + "size": 1409 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/01_steward_to_vizier_handoff.md", + "sha256": "218a61cacf3df399103bc913f556dd2a3240eb8131ea580994ccdd62ecbb38b7", + "size": 1635 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_session.md", + "sha256": "d7e24c4573c7f1ff46ef6938c0bfaecf751884518e07a39a6954ae3da3935092", + "size": 1384 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/02_vizier_to_mason_handoff.md", + "sha256": "8defe8d72795a6ebf588a468a8ccd179267aaf6e7e8856e6e646ad91293aeda9", + "size": 1618 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_session.md", + "sha256": "2f940e78c6f2fee1c2042ef35d2f5cbe6105c4fa386a0f6c6aaa4115b8e7f747", + "size": 1352 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/03_mason_to_vice_handoff.md", + "sha256": "0f4e3e031e302afa298bf8b5b5bd65676b359ccdf4c0502625659a73fd503bf7", + "size": 1603 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_session.md", + "sha256": "b7632bacf689eedd8dd45bc7d3d1986fd76ea203d690a90e1e0e06c64a1bc4cb", + "size": 1314 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/04_vice_to_nemesis_handoff.md", + "sha256": "6b453262cab7e44165a8ef2a11a034c6fe897be447bad70763c5e51c73bc3a7c", + "size": 1581 + }, + "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T055854Z0000_carrier_continue_v120_cloudflare_tunnel_chatgpt_browser_connector_deployment_path/05_nemesis_session.md", + "sha256": "cf80a34f5b19d235608a9315210027f2e313030aab8ccc8307a807f980ded9dc", + "size": 1325 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "a03fbd4ef4da5ff1de9d2ef5ce8163b67366ea40c16fb5f5ceb7881421dfeb6d", + "size": 35704 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_context_load_receipt.json", + "sha256": "0ea9317a9957089c153bf1917d90d2c83b647d3fe58f7000054e7e4feb3353dc", + "size": 12770 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_cursor_task_prompt.md", + "sha256": "d3402892baef59a0308e02a0e82d2e99a3654d2143a6dd423eebfe621c70e2b0", + "size": 34833 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "3025e1c73c67b883589edf591a92f695a7fea28b01af1f8b394c2a96ff663fed", + "size": 1481 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "442b0f38b61e9538dbf7d334c334286049a00e6ca96d8718f02565f5e8eedeff", + "size": 1631 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "b437dbccb50c31d866b44dcdf63da924f432c76a35f74ff4a73789ef0ea959bb", + "size": 1456 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "d54d267c524a6babcf7c62a7783a2890553cf2f28d0f2ce24476864eb7f7bb23", + "size": 1614 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "43539f2be73b9e5a6bf1a86628a012e9df8309becfffb64babded1119f434758", + "size": 1424 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "58b9412235d40ae7afcbb5ebb216c1626f4bf616930d342793624c43363afe38", + "size": 1599 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "0fbbb5e337e03025e99d7f30bc6d9251a0be4beca6a37b4fe8d4622ba8730079", + "size": 1386 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "8bd57d378a1503102e38c8d939ca26f97dfb5d7dccc175f72a93bd2f012c0323", + "size": 1577 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070219Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "aaf78c91e23202c9f688a8a3dbc6e56c453f3762ac7e128383b8107ec5775537", + "size": 1397 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "74d75be6bc68748b7a106d03476c20170bceaaa7b6a533deb540678a042f73ae", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "60258d00a4aed2dd744fca9a246d9aecddba81f3a91941bea6dd96a793ff8d35", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "74de7114a529afcaca5eff60f5c4e53282d563530c2ef50a21bf30645ad23b37", + "size": 38413 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_context_load_receipt.json", + "sha256": "e72d57bef52cd604372055e190d2ce5f7705d94d3ad8b29a8892ed99ac5b239a", + "size": 12051 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_cursor_task_prompt.md", + "sha256": "ea009bb01d6e74eef30e6e112183d1638970bdcf312fe070c077dc84e3ff7b6e", + "size": 37546 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "853374fe8477e73e0259706500721e3aca206543d999a59cb31bd0d641cc6206", + "size": 1364 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "1306b9b8373ecdc07e305b33329b6cb5f154f160d269afd1ba46bf5f9dfe13ee", + "size": 1568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "eeb6e261d95637ec99711e38b39f10c796a86f7205d4101902de9222c3989de1", + "size": 1332 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "4817e4ad8f7b686cb6b14f0451ea186066362a845c0c5ad4659fab6d1174a823", + "size": 1553 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "cdc61dac267782eba3344cab339be9e7ff36a8c2211fb93924394c4aa8d1a97b", + "size": 1294 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "a1881660cf0a7050d054162a6345897312bdf7f3df773244f7260413e36a8fd3", + "size": 1531 + }, + "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T070646Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "5d7021440cd643470c57d40f864749efea893b74212936c50f934afbcf6d1c53", + "size": 1305 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "242b93aa1cdbac4b3c65326c6696cbe79508471e5ff70e6b082424a15624c4a7", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "ec346d0576bf7e047101f3bbd233ec4a5860362523c7ca1af0bb25ed7649a003", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "d27ac66e2692273064d00ec12f4b4d7e42cea853fa4d03476d71b9dfbdf16e6c", + "size": 1364 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "a14190b827e4c79d66a35cc01d8b8c95d72cd57e90284e7c7939d90f94e9821c", + "size": 1568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "f0eaa5d98458fa55668a80634e0cbd15b53157aecadd3129852c50dd9959da5f", + "size": 36306 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_context_load_receipt.json", + "sha256": "a01e8273380cd72a2781eeb809cea4915a8332c60f95394d7d6bc6adcf69caa1", + "size": 12615 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_cursor_task_prompt.md", + "sha256": "0b96016093836f2ce4b5e1636a8dbee3fc692f131f5156ebcd9a82c8a36e0d9e", + "size": 35443 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "4f0ee6979bac350fca73abcb4a17d42fc421043e2ddc89f61f37ef4067ddb946", + "size": 1332 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "9b276b9f9c06e98058ae4538f8eb68995be153b59ed6b0c34d1dcb8c686c0c18", + "size": 1553 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "d6a2e2ab013370f74b63f0ed32c7dfb9e940518ced82318fc2c9b7cd9a0dc76d", + "size": 1294 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "1a4d4e4f70ef4d0f1e2c34262e13c70ea6d5481a7901a05417a04cbde6c9e5f9", + "size": 1531 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071009Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "446a023bfdf19d4a384b153c9c6c58f57873ea05201f622eda147f41e6b16d7a", + "size": 1305 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/00_trace.md", + "sha256": "c89cc98074bc00b7eb5ad23dcdc08533c80a9bf2c8f8f5396ae595d77025d105", + "size": 2675 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_session.md", + "sha256": "c40fbb25271acd051549fa8b4db3c4a6c4c726dd1a8b5de5a5869a027d7e2c53", + "size": 1389 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/01_steward_to_vizier_handoff.md", + "sha256": "b9b33e48eb1bd795511e62ba3688461012c7984c5a7ad37c4dac43755b843495", + "size": 1585 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_session.md", + "sha256": "da75df98b3b50d6a7f98b9f76a31c54294a561384a36fbf79e5107b345e3f202", + "size": 1364 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/02_vizier_to_mason_handoff.md", + "sha256": "d947253fc21a52dfa6009ce565f74b9f262ccafe53dd86f150b0878c3ca1aeb3", + "size": 1568 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_session.md", + "sha256": "b8e48dd78801db7518fcaf9dfc5c155a2e2728232725ef77c24e7a919138dc06", + "size": 1332 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/03_mason_to_vice_handoff.md", + "sha256": "0c73d604931e3b210a27d6eb327172f7dd2132b1160b1a4d75d0a25fa25fc627", + "size": 1553 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_session.md", + "sha256": "8d60dec482f54d9fa23815878831465e065b13ff1e82abfb582a6e8c645b80e4", + "size": 1294 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/04_vice_to_nemesis_handoff.md", + "sha256": "de14a164b509a82217ab8522f9bafd32a59b9fa10969a156eaf074103df8fef2", + "size": 1531 + }, + "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T071223Z0000_carrier_continue_v120_cloudflare_connector_host_setup_readiness_receipt/05_nemesis_session.md", + "sha256": "dc2f0249b5f2273e818d2beb3781f11f8280c4041b04808c848176d1217c0d1b", + "size": 1305 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "0484c1b8bebefca6917d0eb6a8adad9d6b04d201818f3d82100f723f0a661745", + "size": 35871 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_context_load_receipt.json", + "sha256": "4cb1564561df67115561a1eb36fecd94d0f333d85b14706201f2f35b1151264d", + "size": 12937 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_cursor_task_prompt.md", + "sha256": "7330081ba6a6ac22cfc6f1114fb70fdacee22c9286c55c70dcac19377cdd2926", + "size": 34948 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "bcf367e2f14d9449f7aa667d32b93a93a50306041178963a27638a61cf391a8a", + "size": 1837 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "825ccddb3a8364263bdefc4e152745d5c5bfa97a34ea62df1a7708f907495bee", + "size": 1976 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "fd764ab63b18a5af28e2a481b7944b965109fe07cee326f570ce3943046ada41", + "size": 1812 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "30f30147960e68abd31e3f8217f232a7eac64fbf60c63dba493977c793780087", + "size": 1959 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "6ef98b7e2d897fe0c99ae87dcf87da6ea68649ffb7011f8e6c21e87ccc72f486", + "size": 1780 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "1badbecd838b26f9088ab298882e672468cd91777ff6146ce998b3557246bd04", + "size": 1944 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "59ccc2a20bdd80e389e9efa6cfe0525f15bc9430676cac221cab7ba3c82a9d21", + "size": 1742 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "4fa19c31e90ed587de50c973bacefbd80668da3c58db6a93861b15da735698af", + "size": 1922 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072531Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "0a9f61ff13bc221d711813a87418f63743c2dd36830924352f6f158ac455e3e8", + "size": 1753 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "c63f44e04509aaa1aa6142964c93d8e286b42680effec040e3c25a6a6d0a4b83", + "size": 1567 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "3b5743b29b962ca60add7ea8d607c0ef4743c11d36cbb474ff23a2c49ea05277", + "size": 1841 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "82b83ed2b4fb392a5d70c9a959ccad8e074d3c76bc203ea5fb156a944cbc0a24", + "size": 38580 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_context_load_receipt.json", + "sha256": "faf5f85e9b70ef3380ae76ffa6850116dfa4d68c57ef542355b567dd8d309aed", + "size": 12218 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_cursor_task_prompt.md", + "sha256": "04090019ea02f8fa54e079bee690088daa4499e1f61776e945ede0553058fc7a", + "size": 37661 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "3215d5f4ca0439e3a8ff1f0bde7f2efbc83648559579047ca85ca180b860d145", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "e0b237be2351b64a81bcbba60108e2ec583fbf47b64a1c21d6c2e2d9630383c4", + "size": 1824 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "c549c82e4cbdb0cb5634bd451b9b705349fc6ee4c32dceaead6736117be035e2", + "size": 1510 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "3ebb30810c39fb79c643f0d7f14f996562a94c039cd1dce8abe1e6ffd64a884e", + "size": 1809 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "11769e4592b762e72d3b3ca7bcfd6230cfc26885cf4b41bacc7d99b98c66657c", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "b68b1216f990320494af24eafb0aa5dc48d2c64a2b7517a96d368810493f37c4", + "size": 1787 + }, + "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T072951Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "a01cc59b136e9e963397f704b0bdb6ab33a006714823026a70747c6b60134f8f", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "fecef408ed7ee93b1bfee5a274f99e9fe029f2c989d2ecedca761ae0be9adf2b", + "size": 1567 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "36a9c9931bff190f61aa154c5de96c19a0f72ebcf8ec6872b646244701169837", + "size": 1841 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "f36f439418a505e90fa6664c4abbe7f12448106bbfcfcea7d9a30dc31ba39891", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "b217fa1ad3e67dfe5b7d1ecac23da886a58dea26fc20d81eb7fa2bc61bfd5119", + "size": 1824 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "089177b2b6d34a4a1234a00775c1a5d31a5a7114bd3acd5b554ef9b0ee60af76", + "size": 36473 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_context_load_receipt.json", + "sha256": "426edcab407f493bcac8350e9b7e0859174a2b8a9d73a74823fc9e920a59305b", + "size": 12782 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_cursor_task_prompt.md", + "sha256": "138b4e27cd4c63486db236ae260a178178d87fa89199ead26be4bddd2123c399", + "size": 35558 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "40bfbc2d5a606ff2da805ec774b4d35445ae386605d0c8ea639e06a228fc81d0", + "size": 1510 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "bc67927499be12e0a3fe37a69bc2e016d74622f03aa3332bb0d4963b23996755", + "size": 1809 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "318df877c5322c46efba9753c1b10159571da00774e3de0adb52934023f0addd", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "b60492f3812cafeafced380eccb85d7256fa10d9cdba4463e8447bc6bb7bad86", + "size": 1787 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073300Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "d956c6ecbeaf7012ae4c28e55dd52371c659ff6dd8f854d3c77158286d8ea469", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/00_trace.md", + "sha256": "9313a907aec8d3b1eac8d5f3c54db722be5b64afd84e00fadc5a60a34c8d6f2d", + "size": 2764 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_session.md", + "sha256": "c009cfe0bf1899e6db08fdb1f4ae82cd1f6a70d35dd1e039384c09ed35d2dca3", + "size": 1567 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/01_steward_to_vizier_handoff.md", + "sha256": "9051c6d1538d2ef49a7342e1e79e38d82daedd9b5801a823c6d5d0541009a016", + "size": 1841 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_session.md", + "sha256": "1edda6c91ae829eee18360459c7bfbf1b68ff9a33bf1022d488e5562b56cdc4e", + "size": 1542 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/02_vizier_to_mason_handoff.md", + "sha256": "b0c5e9807b51215577f571aa68e1b8f6d8610edb879ea6025da387f75c7797d5", + "size": 1824 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_session.md", + "sha256": "a51aca0de30034d0baaea018cda1f300830cd692c47be9ab97d3722fca8818e6", + "size": 1510 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/03_mason_to_vice_handoff.md", + "sha256": "0265cbc48892232ecc37b87d0f995ce4849d21749f42381a47ca8b9ac7600823", + "size": 1809 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_session.md", + "sha256": "4c6915f9cc51f0dcb5354e7181d1068ce5f5c6503f1d1eb59338fe8a2319f91b", + "size": 1472 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/04_vice_to_nemesis_handoff.md", + "sha256": "3edc8a14de70fa7f5e8a7d2e7fb26fc711040347d6a466852a7238fccb6d23f4", + "size": 1787 + }, + "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T073852Z0000_carrier_continue_operator_authorized_host_setup_install_cloudflared_if_needed_and_start_bounded_c/05_nemesis_session.md", + "sha256": "4d0bcf22e6f6d1bf83595f41ba72eff0526148849552e2470989a2df3b1026cc", + "size": 1483 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_COMPILED_STEWARD_CONTEXT_BUNDLE.md", + "sha256": "4df21b9439a465737aac41638d0544c77da8c6bc229792f68bf75b7fad71d438", + "size": 35861 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_context_load_receipt.json", + "sha256": "fa3ff051e163e8a237c04c8e6910899b421243063d30fbfee98725fc84491345", + "size": 12927 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_cursor_task_prompt.md", + "sha256": "a4027ef2c35dcc8bded38bc29936b08c3b5ee490b537d76a722d2d0b47003983", + "size": 34938 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "26bae726d2f814d8f5c5b97d688ab239114c37010a88af29efa2ef46ad2e8488", + "size": 1797 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "e49e830134f5fd0a8b820f4e2781c0eab6cdd804803f174bd9887d6070c96806", + "size": 1946 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "61d0bb35e8a9b1b6e1dbb833bff497d45dc2445b31f19026e1a196202192f10c", + "size": 1772 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "addfde329810f01f743e376956c243a27092e3619ad13237fdd0cff7f9d49e1a", + "size": 1929 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "410bdfe5aef06d72442c8524651fafc28acab036a8eedf2cd5bb2b53a89a053c", + "size": 1740 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "59e649e5171b7d769b2f72b07a26153fb36252cc6051536ece74e6cd7b6dbc86", + "size": 1914 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "bb1da3eecd0d775006409a9e3197c12ec5290f07bd827991ec2430c470566203", + "size": 1702 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "eb22014cc2beabc4c6d1c9f6717aa38b7ba2cf6af50d8607e33293fedc60d494", + "size": 1892 + }, + "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T135201Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "3c01ba4712d586818466f576cbd4d9841c43e1f759abda5e73fb19c20c1ba9f0", + "size": 1713 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "9d2c4b2a660aebb6ab024cde75ce86f233bd8c00277a61d55ca885ec143b5f78", + "size": 1547 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "407635d8692afc5854ea891f7505ed319ac0af0d35f5a211c7d77c2ed4c0cb45", + "size": 1821 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_COMPILED_VIZIER_CONTEXT_BUNDLE.md", + "sha256": "6ad0ff6a500dadf4e3b7c67a7b9322674d51d3abba5fca2c5c0e5b0187d34be3", + "size": 38570 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_context_load_receipt.json", + "sha256": "fbca44ef830a202e3b631e04a2921e116403e25a05bb77d240854194979beee4", + "size": 12208 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_cursor_task_prompt.md", + "sha256": "6498faa1aa5baf08cda1c82274080a056cf8da387f7cb7dcc31af7aabbe7ddfa", + "size": 37651 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "87944d4e5debcc8aa0c9443201c8e03e1dd7b27e8414598af538f07017dd9d3e", + "size": 1522 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "2490c4b990c77ee83d5f7fd0c71baeb572c6201842b676bfaa3a1f850a2f5cc5", + "size": 1804 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "5bd7a878777ca7575e56f13924ed1d40009537eb6c10d499f6a943604edd3b48", + "size": 1490 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "a8998e1db7891b75705a9c69d02e03c023876a8e0b0366e6feb440e4bf811cbc", + "size": 1789 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "e13f1c8a9d0afee61b59629f7e8464055c5e6a6ff84aa335f5a86ca528ad8077", + "size": 1452 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "ecd626966bd0eeb43cba5209bb0269cc27178ca6b528af63b03a6bb8f45ca9e9", + "size": 1767 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145640Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "876d8eceea3d260f7c9da6f25f2c3bf5c9258b3e08ae34056bc0020c4a55f400", + "size": 1463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "51ef212cec6a3704cc2a14820187930e2354c01713e38262c5d78d0916fcf4ff", + "size": 1547 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "16904133f47e65e923b4bf9191fadb36ba98b1c6b1c8ec044bd8fbc6e06b85d5", + "size": 1821 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "720f48ca943763403c1d653776555a37ceffb0a309cbd0e2d0191790492331c1", + "size": 1522 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "847d1bfdc6370d20e551e340cd2d53f35e2cbcc16ca633e21ee0d55eb42d260b", + "size": 1804 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_COMPILED_MASON_CONTEXT_BUNDLE.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_COMPILED_MASON_CONTEXT_BUNDLE.md", + "sha256": "6775bfa193e77b7c5fa2181c0865647d088bdef1c0a177a3f89af3919b9ee5a2", + "size": 36463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_context_load_receipt.json": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_context_load_receipt.json", + "sha256": "62a64e672595d7ff86f66c1235c59d44efd289ec9ec8dc69f0c708a0045d8553", + "size": 12772 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_cursor_task_prompt.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_cursor_task_prompt.md", + "sha256": "a372979156512137f1af1967b0820396a04c3878fa5eb6a110e54942f680758e", + "size": 35548 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "9deb179600cb788c8b7c13d45d181dff97c899e97e569d589f87ab35e7f7770d", + "size": 1490 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "02090eba6d7d22a37705e9083a82d302f00aa36b088235daeb2224982d7bb529", + "size": 1789 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "715a64dbb639c08954017fd3b32a8189fe333429e574ce77e9c14387ed8fc896", + "size": 1452 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "dfe65624705bd0a5b1a5d634f6b8d17801da8f15ca8c48b27aee57c76e6fbb51", + "size": 1767 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145720Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "7f95851d6d8fbf81bd141ee8f5d25764b8eddfb1cea0cdf4ef1dc5999aa3b2df", + "size": 1463 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/00_trace.md", + "sha256": "096a995adf01573f1428cbdf9fe60f439c30ccdd674136a081bf27ada5e3d8d0", + "size": 2754 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_session.md", + "sha256": "8d7babb30257b7865d785013b7897575051bd67c241f49f7cf0589d4b390927b", + "size": 1547 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/01_steward_to_vizier_handoff.md", + "sha256": "ff1e66a48a5d9809cae1ab8da85b008d21e1c7ad3627166d96756510d9ad22ab", + "size": 1821 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_session.md", + "sha256": "e3a8ce5f1c861035dc1081e11b8573c6d7c6bb52f9f18253ca1d3c0d96f19e4c", + "size": 1522 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/02_vizier_to_mason_handoff.md", + "sha256": "42def555727feb8ee49346985a71f05372c0f34fe403342a36788fd2d6b4e5aa", + "size": 1804 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_session.md", + "sha256": "10b5ff93912a08c2007bbdda5c7331eb1cd77b4f0e491fd7650d97fc87ab7937", + "size": 1490 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/03_mason_to_vice_handoff.md", + "sha256": "40b3e3fa8843b048189ee4059d21c17385f2b79e6e3c4c49998d87d8ab5c9093", + "size": 1789 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_session.md", + "sha256": "ed94fb50567cf12f460e571727cb4b776af01662aa884e21f5fa345dfb08b757", + "size": 1452 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/04_vice_to_nemesis_handoff.md", + "sha256": "c7466b1f61b2e7a136de36e66df3396ff8b5646fe807cc5d5386f3bde21ca68f", + "size": 1767 + }, + "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md": { + "path": "ION/05_context/current/execution_cycles/2026-05-04T145805Z0000_carrier_continue_reconcile_chatgpt_browser_mcp_connector_transport_truth_health_check_carrier_spe/05_nemesis_session.md", + "sha256": "61076f077dc2b366f63b612f3a2d7c3897bc0fce50f7d145856ebb119591c4c0", + "size": 1463 + }, + "ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json": { + "path": "ION/05_context/current/github_data_plane/BOOTSTRAP_PUSH_RECEIPT_2026-05-05T041453Z.json", + "sha256": "6d18b8f5ec0198927065b2d256453d4b1a22a20e7b0814806ad79395009dce57", + "size": 2725 + }, + "ION/05_context/current/github_data_plane/BOOTSTRAP_UPLOAD_AUTHORIZATION_2026-05-05T041221Z.json": { + "path": "ION/05_context/current/github_data_plane/BOOTSTRAP_UPLOAD_AUTHORIZATION_2026-05-05T041221Z.json", + "sha256": "28cccb920c5b21225daf4cf1584739ade5e4828a05d3065ac6e9bff36747126a", + "size": 1755 + }, + "ION/05_context/current/github_data_plane/PRIOR_ART_CONSOLIDATION_2026-05-04.md": { + "path": "ION/05_context/current/github_data_plane/PRIOR_ART_CONSOLIDATION_2026-05-04.md", + "sha256": "233c4e3316abc75888f6459ff3dbfc8367b115303eb51a0c855076b3ab59a81a", + "size": 7998 + }, + "ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json": { + "path": "ION/05_context/current/github_data_plane/ROOT_WITNESS_MANIFEST_RELOCATION_RECEIPT_2026-05-05T043241Z.json", + "sha256": "e67abdd98516afe552bf0e611f4db68d908230513c5ee5e9c7804c96f15b88d5", + "size": 1157 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.json", + "sha256": "f8e5403fbd072d1bff0d79252c8485a4c419919261064641d030ab0b9b694ff1", + "size": 11626 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.paths.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041043Z0000_initial_github_data_plane_load.paths.json", + "sha256": "a20fbd3a78b73630dfea35bdbb3bbbdc527eb0bc85ba50d781269cdb080a32bb", + "size": 637537 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.json", + "sha256": "70d40be6de4ac4aba211e9ee1f7c1d9e10598bac859445f32be7c315079bc74b", + "size": 11710 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.paths.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T041250Z0000_initial_github_data_plane_load_bootstrap_authorized.paths.json", + "sha256": "82da2721108aeb6648a709df75497cc34d5d92b8842515db4b45b1027b940f2e", + "size": 638003 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.json", + "sha256": "37e106f2fdfeab3c533fe259960c0829a566b8530eaf94ef056c29f9e1c2a5c4", + "size": 11545 + }, + "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json": { + "path": "ION/05_context/current/github_data_plane/commit_proposals/github_commit_proposal_2026-05-05T042654Z0000_public_repo_navigation_docs.paths.json", + "sha256": "b30cb0445412e97dd883304897aa40cc33584ece0b90fa1bb11770f9d6bf753a", + "size": 638603 + }, + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_mason.json": { + "path": "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_mason.json", + "sha256": "3bd40a1dbf4c92885259590a69b7a3b4515cec6abcfc1247117b8ddb640f7259", + "size": 343 + }, + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_steward.json": { + "path": "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_steward.json", + "sha256": "2ac26eb3f8a9a57847360bcd000564f5bea884f31dc937f2bcd3fcf11beba704", + "size": 358 + }, + "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_vizier.json": { + "path": "ION/05_context/current/role_sessions/implementation_test_deterministic_spawn_plan_vizier.json", + "sha256": "f3f23a7f0178d238f0a18cda22c886f1e30b9814df43c55a061b72c72e1ad8c6", + "size": 351 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_097a5d1a960d_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_097a5d1a960d_steward_integration.json", + "sha256": "8288dd4227057c7b7f68a213290a7db892d438f01ec13d5682189ff5263d0a97", + "size": 3263 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_0acfdf36909f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_0acfdf36909f_steward_integration.json", + "sha256": "761dd77596cbbd0f0749c0cbd0cf1fa6c218a8ea2b2a58760b13934ba308b6d5", + "size": 2797 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_176bca037f29_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_176bca037f29_steward_integration.json", + "sha256": "80a520337c9e8fc43b80ce47e31f59a522155a582c555985dbed4fe525966d6f", + "size": 3744 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_179c09697797_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_179c09697797_steward_integration.json", + "sha256": "82a243cfdec6ca30aa44fc2e44e141981e34d542d9169da991ee889caa17588f", + "size": 2689 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_1cae53b1c30f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_1cae53b1c30f_steward_integration.json", + "sha256": "f1a2791bfd289ad60376c530d52a3bdcc666e57f9b23a8693682d7bfaa71dcee", + "size": 2852 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_1ec9f8c8671f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_1ec9f8c8671f_steward_integration.json", + "sha256": "55d02c723e99a505cc86a5a2643068b2f0cfa69942ad8b15faea521ca6fcb1d0", + "size": 3285 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_27c7864b79f8_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_27c7864b79f8_steward_integration.json", + "sha256": "9a07f1284234d2ec2573b2f8a3cdfffadce1277b56b41052a97082672fcd3104", + "size": 3106 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_467e0b5d928d_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_467e0b5d928d_steward_integration.json", + "sha256": "33b623c417a307e97ce8e9d01c6399c1a4111de6e21a607b28258980257d7b1d", + "size": 3392 + }, + "ION/05_context/current/steward_integrations/queue_01_steward_c6b37295e2c4_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_01_steward_c6b37295e2c4_steward_integration.json", + "sha256": "00da0ce931057d5161679c7c2641d88f71a4c3bbc59191725fd325d16860a0c8", + "size": 2855 + }, + "ION/05_context/current/steward_integrations/queue_02_relay_375e9f194049_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_relay_375e9f194049_steward_integration.json", + "sha256": "c54195bed4a45fdbf853013c15d4151fe1aafbeb2972bdb2f60f2ed87e8cce6f", + "size": 2822 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_166495dc4711_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_166495dc4711_steward_integration.json", + "sha256": "c1fa186f120d1d3b9e94aa579cd64da00aadc42f78baee77f4c083c9f045c3bf", + "size": 3260 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_35dd3ebd7d66_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_35dd3ebd7d66_steward_integration.json", + "sha256": "06e71fb48f36909db2e0dee38ce7e71184d7346cb3d7c6cd3b6e43576480cd15", + "size": 3288 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_3822716abedd_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_3822716abedd_steward_integration.json", + "sha256": "602fc40a52234d4c01a3c8a0709ce705887947fa703f66fd0ca16a1aa57b31bc", + "size": 3101 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_999875a0162f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_999875a0162f_steward_integration.json", + "sha256": "16768420e5e85c9c50b6210806f7fef8b6f54ae174ad914ceacaeb87cdab9052", + "size": 3388 + }, + "ION/05_context/current/steward_integrations/queue_02_vizier_e523d62ef484_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_02_vizier_e523d62ef484_steward_integration.json", + "sha256": "77a64b2b0574fd9f1be501ab90b4ffe9931fb1bf102c5bcb2d1aed082a6ba0e3", + "size": 3009 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_0e0b154df17f_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_0e0b154df17f_steward_integration.json", + "sha256": "611832fdf39360a2d5940d8bb6f5ab9b526a8c637fe436edcade4844c44e1ef7", + "size": 3205 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_17e1a03addeb_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_17e1a03addeb_steward_integration.json", + "sha256": "48c20d58d148b097436fd9eae9b2ada851294383e3d939a4e9a265708fd20a85", + "size": 3277 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_7e4c5f06fcb8_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_7e4c5f06fcb8_steward_integration.json", + "sha256": "653ec3ba2b9e6964df2a55a50e9753a44bd58e34cd99e1947cca5ac83369b310", + "size": 3343 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_8804d46ae1cf_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_8804d46ae1cf_steward_integration.json", + "sha256": "adc6254e3ea24fc18e8b2ed61718b63d53109693ecbd41d9a98ceda13ea351ac", + "size": 3374 + }, + "ION/05_context/current/steward_integrations/queue_03_mason_e6aef65bae37_steward_integration.json": { + "path": "ION/05_context/current/steward_integrations/queue_03_mason_e6aef65bae37_steward_integration.json", + "sha256": "0e46eb637394686fde7c631f926ae9b73e0a7aee168ae1b0c9d42c566c3c03e1", + "size": 3101 + }, + "ION/05_context/current/task_returns/2026-04-29T145622Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-04-29T145622Z0000_01_steward_task_return.md", + "sha256": "7ad1481854aa2183370c76000dbc1e6beabc15b45fc9dc3bf7677a90a2e487da", + "size": 42 + }, + "ION/05_context/current/task_returns/2026-05-03T040939Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-03T040939Z0000_01_steward_task_return.md", + "sha256": "d30017deeebc20791d6de024dee07f09f6d0cddea272ce13f8b86c4a9899b29b", + "size": 1435 + }, + "ION/05_context/current/task_returns/2026-05-03T040939Z0000_02_relay_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-03T040939Z0000_02_relay_task_return.md", + "sha256": "bdbd517fd965a1f94598c80026a61a0668bed2eb7980eab5295eea4d7ceb7577", + "size": 2020 + }, + "ION/05_context/current/task_returns/2026-05-04T040927Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T040927Z0000_01_steward_task_return.md", + "sha256": "c90a79c764b05b6801f7b7e82eb6d3d638e0dc19170213fa718b698326f52bff", + "size": 6454 + }, + "ION/05_context/current/task_returns/2026-05-04T042221Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T042221Z0000_01_steward_task_return.md", + "sha256": "ab612f049bfc595f7c3ddb5b7bd9167d1d4d10e42fd9ff95c0ed108de36b31ea", + "size": 6328 + }, + "ION/05_context/current/task_returns/2026-05-04T043310Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T043310Z0000_01_steward_task_return.md", + "sha256": "86970243577861403f9578329bbb4b210b4ba75bfb5cd06ec629e21fadb1f19f", + "size": 7265 + }, + "ION/05_context/current/task_returns/2026-05-04T044412Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T044412Z0000_01_steward_task_return.md", + "sha256": "a78dbb483a682e9520d149c2466895ed1aaf87c89766ad15211853b31dac479d", + "size": 7669 + }, + "ION/05_context/current/task_returns/2026-05-04T044541Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T044541Z0000_01_steward_task_return.md", + "sha256": "298ae705b057758831926842a3476bdfd8acd05006877d23ea12f87bb3034e7f", + "size": 6789 + }, + "ION/05_context/current/task_returns/2026-05-04T050105Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T050105Z0000_02_vizier_task_return.md", + "sha256": "7c17a68de93471b6c82cbb1318649cc705dd5697c4fd87ee8757fead4a3a3e85", + "size": 7236 + }, + "ION/05_context/current/task_returns/2026-05-04T050836Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T050836Z0000_03_mason_task_return.md", + "sha256": "34722639c05b23f6ccb565b866eea5585a68c856abaeee152067cda87041deb5", + "size": 7408 + }, + "ION/05_context/current/task_returns/2026-05-04T054324Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T054324Z0000_01_steward_task_return.md", + "sha256": "202f0385d23779319a6643d7ad8115560d2360e0b124a44d2d7a92887a7532d0", + "size": 10042 + }, + "ION/05_context/current/task_returns/2026-05-04T055154Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T055154Z0000_02_vizier_task_return.md", + "sha256": "8b49f534928ca8fe787c1c4a4f6b6998e36594a0fa72bb9285a41bad2c15dc4f", + "size": 8076 + }, + "ION/05_context/current/task_returns/2026-05-04T055843Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T055843Z0000_03_mason_task_return.md", + "sha256": "44b831d47bf49b0815d08f6b6b20383f68cb58e0018f9e76d6d981c6336dcd39", + "size": 7397 + }, + "ION/05_context/current/task_returns/2026-05-04T070637Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T070637Z0000_01_steward_task_return.md", + "sha256": "d726c834dd3ae6291da1e158f1d9b00be53843526c4e2b13d172df62e6975608", + "size": 6926 + }, + "ION/05_context/current/task_returns/2026-05-04T070956Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T070956Z0000_02_vizier_task_return.md", + "sha256": "f349a6a95f73ea4d56cc5c1fc8063aa5844850598b80952a9cf07df89a379e2f", + "size": 6514 + }, + "ION/05_context/current/task_returns/2026-05-04T071209Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T071209Z0000_03_mason_task_return.md", + "sha256": "78de46b684a4eb7d249753acf1c95b1e9dfb6ea18bcd9131e2286cd849276501", + "size": 6871 + }, + "ION/05_context/current/task_returns/2026-05-04T072945Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T072945Z0000_01_steward_task_return.md", + "sha256": "7a7ea98ec20a3cb8e706ae8ddfdd385bd70a269ba9692d1b329bf096b3eb97d8", + "size": 7287 + }, + "ION/05_context/current/task_returns/2026-05-04T073253Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T073253Z0000_02_vizier_task_return.md", + "sha256": "89b766871caab5798a7d9d78e817652de842111f10d432f4785c7a2d12a4cca4", + "size": 7454 + }, + "ION/05_context/current/task_returns/2026-05-04T073841Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T073841Z0000_03_mason_task_return.md", + "sha256": "485ecd5b9d9bc0af3a2afee04bf6bb85d6a253f32ccfda531738e891faff30bd", + "size": 7831 + }, + "ION/05_context/current/task_returns/2026-05-04T145628Z0000_01_steward_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T145628Z0000_01_steward_task_return.md", + "sha256": "ca5ebf67dbbdfbf5a94921c219126e69320178032de696fd920822a709ce790b", + "size": 6731 + }, + "ION/05_context/current/task_returns/2026-05-04T145708Z0000_02_vizier_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T145708Z0000_02_vizier_task_return.md", + "sha256": "6b3f62bb1856db5413f455b028344cb68c27ac631fee37d8664fe59f70715e69", + "size": 5224 + }, + "ION/05_context/current/task_returns/2026-05-04T145756Z0000_03_mason_task_return.md": { + "path": "ION/05_context/current/task_returns/2026-05-04T145756Z0000_03_mason_task_return.md", + "sha256": "7e05dbf74ca42fb00f67d49a7cbb1d3ba40f055d5103547d2c34b227f321688a", + "size": 7118 + }, + "ION/05_context/fixtures/consolidation/v60_branch_consolidation.valid.json": { + "path": "ION/05_context/fixtures/consolidation/v60_branch_consolidation.valid.json", + "sha256": "63c252c69cad3146dffdc4877a9b0b582747fbfaadd20659b14529d99e34b454", + "size": 1908 + }, + "ION/05_context/fixtures/ui/v56_joc_cockpit_component_manifest.valid.json": { + "path": "ION/05_context/fixtures/ui/v56_joc_cockpit_component_manifest.valid.json", + "sha256": "48784042ba76ac1d77e416fb366397c2beb3bdeb401f6b91218b7bbacafa64b0", + "size": 6894 + }, + "ION/05_context/fixtures/ui/v57_reactive_os_stream_view_model.valid.json": { + "path": "ION/05_context/fixtures/ui/v57_reactive_os_stream_view_model.valid.json", + "sha256": "8919b052a05bbcac668fed231664e188098fa4a852e3f0a7a769f133a0e3a1ed", + "size": 6107 + }, + "ION/05_context/fixtures/ui/v58_cognitive_explorer_route_view_model.valid.json": { + "path": "ION/05_context/fixtures/ui/v58_cognitive_explorer_route_view_model.valid.json", + "sha256": "c128717139108f6ff0a702044f2b9a189cdf0243bfd9e00be04a7935349d6c5c", + "size": 3894 + }, + "ION/05_context/fixtures/visual_regression/v49_demo_visual_fixture_suite.json": { + "path": "ION/05_context/fixtures/visual_regression/v49_demo_visual_fixture_suite.json", + "sha256": "097f81e595d1b49acad5dddfbc62458c0f0942b6eecc6017dc07953178993a92", + "size": 525 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-0fe4fcb96c4fdea2.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-0fe4fcb96c4fdea2.self_mount_graph_projection.json", + "sha256": "d7e86e7667736d0039bc8ecd636e5af987593e3ebe7198529b719a0e01243c13", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-1b85e0f7eba9afe6.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-1b85e0f7eba9afe6.self_mount_graph_projection.json", + "sha256": "bb83f6db55fafe0b22d52691e8208fc1d062e7c79647bee7ae28d4a8464301b6", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-264afc5e5f82c248.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-264afc5e5f82c248.self_mount_graph_projection.json", + "sha256": "61ea9041a2acfeccd62f3df45770e3105af4325aed22ff9b023c1c40ff8acb7a", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-599a6cc850978c82.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-599a6cc850978c82.self_mount_graph_projection.json", + "sha256": "aed6a516306914e2689597406a718ff8122d56b765c6cb0027ab67beab0cde36", + "size": 4725 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-5d934fb9d7b5b606.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-5d934fb9d7b5b606.self_mount_graph_projection.json", + "sha256": "b62124da460695ad0603853e38d9f9c3b0c46bcd8589f8544f98db1ef554c62a", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-7059b321b2c76018.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-7059b321b2c76018.self_mount_graph_projection.json", + "sha256": "0501400857c2a2ee781c22419baef17de058fe0b336e4e4dff8ab58d65a83096", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-8529a531d01f3a3d.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-8529a531d01f3a3d.self_mount_graph_projection.json", + "sha256": "60a700af07a644a64410ce79e4ca90f1ed06d3bcee28b482a8b50f22559ca649", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-86cfb183da7bbc55.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-86cfb183da7bbc55.self_mount_graph_projection.json", + "sha256": "c3bd86f1ae22f7f6ef47423faa2dd8128564a310a8e82edc96c30506c530bc6d", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-89bbf704bbd11cc2.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-89bbf704bbd11cc2.self_mount_graph_projection.json", + "sha256": "f1bbc290b1003e0633a327fabffc36ddd6ac31a102c1df7daa2a859965ca6997", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-a05b820d556831ea.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-a05b820d556831ea.self_mount_graph_projection.json", + "sha256": "37acec19abf3c5aa4dbd5c9e36287f31df919739ace5c212af9250e4090805b3", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b3fc5b5af61ea610.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b3fc5b5af61ea610.self_mount_graph_projection.json", + "sha256": "700ef5645f9329dbaef7924a9e51d4001f14fc7311c29931f48f77c221b16e17", + "size": 4726 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b7923f00b4f444ce.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-b7923f00b4f444ce.self_mount_graph_projection.json", + "sha256": "4cb5c2726fb9a9e08e51f01e474f5dd07909e03220dfad705df9b33ff292c7b3", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-bd4c385ca237f83a.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-bd4c385ca237f83a.self_mount_graph_projection.json", + "sha256": "f75cdbce76f758f21db7fe6e5a3404383ef9074bbc1610c40ac3669da29964d0", + "size": 4725 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-d4483ed529a9773a.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-d4483ed529a9773a.self_mount_graph_projection.json", + "sha256": "2a84271a0d44db93face5ced68406b38f1f78d1af5750b92deeaea383f324fe3", + "size": 4726 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-dded4d06ec213a89.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-dded4d06ec213a89.self_mount_graph_projection.json", + "sha256": "a47a925ca0e6f41b6b0a1f90e6dce5e00be8a71513b5ff69934b40fc58951308", + "size": 4726 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-de85a8041f7a6bcf.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-de85a8041f7a6bcf.self_mount_graph_projection.json", + "sha256": "f891aba370b7acdb54f523d08ab54c9a0f3cf8c602100cd8a5e76c7e613e7943", + "size": 4410 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-e6c0d545a4278920.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-e6c0d545a4278920.self_mount_graph_projection.json", + "sha256": "6a97af4f9e53fc6c90752dec31f8d67aa0e5a483926ab06816ddf5561d2d2317", + "size": 4723 + }, + "ION/05_context/graph/self_mount_graph_state/self-mount-graph-fced94c1fd004817.self_mount_graph_projection.json": { + "path": "ION/05_context/graph/self_mount_graph_state/self-mount-graph-fced94c1fd004817.self_mount_graph_projection.json", + "sha256": "8edecdd32a97a9d450170218626e95b810d7274c2e5b54fe2398b4fb45092035", + "size": 4410 + }, + "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-712038e6c588c333.template_graph_edge.json": { + "path": "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-712038e6c588c333.template_graph_edge.json", + "sha256": "07130f383664abfc47a99d2fde525fe8ee0e5491009850d2baa94bc560f7456f", + "size": 579 + }, + "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-e7cbb3279d673f06.template_graph_edge.json": { + "path": "ION/05_context/graph/template_event_graph_state/edges/ctx-template-edge-e7cbb3279d673f06.template_graph_edge.json", + "sha256": "209ef51f5b8c33334bd882bfd2457487cc5f6f510d611ef13236f5d30ea7f4cc", + "size": 563 + }, + "ION/05_context/graph/template_event_graph_state/nodes/ctx-template-event-node-e2ae3524b04fc459.template_graph_node.json": { + "path": "ION/05_context/graph/template_event_graph_state/nodes/ctx-template-event-node-e2ae3524b04fc459.template_graph_node.json", + "sha256": "6fb33ea1dc4cad00aeb8de1d75f5ab046f7dccc48aed4bade6b1f71b3cf3d7a6", + "size": 721 + }, + "ION/05_context/handoff/V35_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V35_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "sha256": "b18d7b44f6be1b7c8a0854b8a7c0774cc63c183e794ba633b5d92c9cc297b898", + "size": 1760 + }, + "ION/05_context/handoff/V38_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V38_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "sha256": "01abe533a7871f38ad4da1f0ada655d34d690f608219d0f07a6150ae22064006", + "size": 738 + }, + "ION/05_context/handoff/V39_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V39_GPT55_SELF_MOUNT_SUCCESSOR_HANDOFF.md", + "sha256": "9a89a069eedef35a85560cf3b35ed4ff03d8cb4a2a79011bbc51552fb046fed4", + "size": 729 + }, + "ION/05_context/handoff/V40_MAINTAINED_WORK_SURFACE_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V40_MAINTAINED_WORK_SURFACE_SUCCESSOR_HANDOFF.md", + "sha256": "b31ae2c2f834aabd92c76c3ed1fe7618e6f27ab8012f630789104bcb0fd3f188", + "size": 1234 + }, + "ION/05_context/handoff/V41_FRONT_STAGE_COUNCIL_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V41_FRONT_STAGE_COUNCIL_SUCCESSOR_HANDOFF.md", + "sha256": "d2aee578135adc842a5bf38af7efb64bc8daaf9ea7a18ae6e6bbd338515d801e", + "size": 1195 + }, + "ION/05_context/handoff/V44_VISUAL_OBSERVATION_PACKET_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V44_VISUAL_OBSERVATION_PACKET_SUCCESSOR_HANDOFF.md", + "sha256": "46c3d8ea97315930d4e23d7c8f88bbf0ec81ec8d15e6f0b59ad7fa64f0807d6a", + "size": 620 + }, + "ION/05_context/handoff/V45_VISUAL_DIAGNOSIS_RECEIPT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V45_VISUAL_DIAGNOSIS_RECEIPT_SUCCESSOR_HANDOFF.md", + "sha256": "e7829ca1fc93cd13c90e13d52a44311a87fcaed5326d00c332f1816ef8281bc2", + "size": 748 + }, + "ION/05_context/handoff/V46_LOCAL_VISUAL_HARNESS_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V46_LOCAL_VISUAL_HARNESS_SUCCESSOR_HANDOFF.md", + "sha256": "f5243aa9c5902e6c4fec5eca7223c44852b4cbf9e2ba386ef46d4949d9daa53c", + "size": 1078 + }, + "ION/05_context/handoff/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V47_LOCAL_BROWSER_CAPTURE_ADAPTER_SUCCESSOR_HANDOFF.md", + "sha256": "c25913a51d12e3d5fc6fd9fa5b851c23f0614dca0a9549fd7c62fc6bcfa0b425", + "size": 143 + }, + "ION/05_context/handoff/V48_VISUAL_BEFORE_AFTER_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V48_VISUAL_BEFORE_AFTER_SUCCESSOR_HANDOFF.md", + "sha256": "1143cbe7d7f2102cd36068a6e96419539f37726c972aca44dca35e505522bfdb", + "size": 140 + }, + "ION/05_context/handoff/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V49_VISUAL_REGRESSION_FIXTURE_RUNNER_SUCCESSOR_HANDOFF.md", + "sha256": "1046de4a7069dd13fef16f68d0690bfed62c1c90e8165c52bdeec6cb0acce84f", + "size": 871 + }, + "ION/05_context/handoff/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V50_VISUAL_FIXTURE_RUNNER_LOCAL_SANDBOX_REVIEW_SUCCESSOR_HANDOFF.md", + "sha256": "16fac9fe161af9e97a9253a922ec18ade930aab3fe039db9bb22a12555674a3a", + "size": 658 + }, + "ION/05_context/handoff/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V51_LOCAL_BROWSER_EXECUTION_SANDBOX_SPEC_SUCCESSOR_HANDOFF.md", + "sha256": "3b61e9a36d1e353db7ce1b95955cf0663ed89dcd54594032d414bf838cc30215", + "size": 757 + }, + "ION/05_context/handoff/V53_VISUAL_AGENT_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V53_VISUAL_AGENT_SUCCESSOR_HANDOFF.md", + "sha256": "2fca0135f05dfd2d04c1050431924a3008d93ec0ada8895ca543b17552365038", + "size": 222 + }, + "ION/05_context/handoff/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V54_VISUAL_RUN_RECEIPT_TO_DIAGNOSIS_BINDING_SUCCESSOR_HANDOFF.md", + "sha256": "3642c842af777fec691ca604806a7f878890ad9d496967f6d08d02fb1ca148f1", + "size": 476 + }, + "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_AND_UI_WORK_SURFACE_SUCCESSOR_HANDOFF.md", + "sha256": "0b4125bd8d14ce8692063e2dedd85f8b8df91ced93e9b499cbbfa62337110a90", + "size": 1265 + }, + "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V55_VISUAL_CLOSURE_GRAPH_PROJECTION_SUCCESSOR_HANDOFF.md", + "sha256": "3734d839bec35445fa7d85752b6ddc0021d70125895278f8492ba629e7a5fdf7", + "size": 395 + }, + "ION/05_context/handoff/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS_SUCCESSOR_HANDOFF.md", + "sha256": "3f08beefbfb52083c8b2e993be170c15a0612cc5ca98c12fc739daeade29d59b", + "size": 698 + }, + "ION/05_context/handoff/V58_MODEL_ECONOMICS_SUCCESSOR_HANDOFF.md": { + "path": "ION/05_context/handoff/V58_MODEL_ECONOMICS_SUCCESSOR_HANDOFF.md", + "sha256": "8a573387a4ba067946e88aba4b53049fc95b3aba7abb1063e35914e3eb998b1c", + "size": 486 + }, + "ION/05_context/handoff/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_HANDOFF.md": { + "path": "ION/05_context/handoff/V71_HOSTED_MCP_STORAGE_AND_RECEIPT_LEDGER_ALPHA_HANDOFF.md", + "sha256": "b5a6a9c880f21b34853b815620aa76bf6853a60a968763ca38d8f44796774359", + "size": 982 + }, + "ION/05_context/handoff/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_HANDOFF.md": { + "path": "ION/05_context/handoff/V72_HOSTED_MCP_BUNDLE_IMPORT_EXPORT_AND_REPLAY_ALPHA_HANDOFF.md", + "sha256": "a40a4513715e3dbce160deb4644f93eeb8ddc810b17b00c47badbb1d5e3166c2", + "size": 511 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-09e421cbd616f3e4.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-09e421cbd616f3e4.agent_succession_packet.json", + "sha256": "e1e3f9a8d2f5ebc0db63bc2a36b06a7f905cca4d8980220849a702f82c7829fb", + "size": 1843 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-188c4823c393edd1.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-188c4823c393edd1.agent_succession_packet.json", + "sha256": "2f4bfc23c1a7bef6318ab2fbf178cffd6142a817543d4cadc2493678fa09ce90", + "size": 2644 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-34a56d95766f5be9.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-34a56d95766f5be9.agent_succession_packet.json", + "sha256": "dadd43c279454c590558d2cfb36cad46a58a76c8036a032ef17d075cc883bd4d", + "size": 2627 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-4e67a14a5f9c9204.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-4e67a14a5f9c9204.agent_succession_packet.json", + "sha256": "5f4ed8edaa1f59313603c1e9ac55a13840eeafbd7672682088aee3f631bbaad6", + "size": 1843 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-5af858de6ec8056f.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-5af858de6ec8056f.agent_succession_packet.json", + "sha256": "854ac43f9ba97c99f44a204cf74be8ed4dc3947caded0fae1ed6ce66b0c4b3ed", + "size": 2645 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-93ee6d7ae63bd72b.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-93ee6d7ae63bd72b.agent_succession_packet.json", + "sha256": "1b1f20fc496e6173a38ef79e35154ceb8a3110418be055708c78ec237d0c9604", + "size": 2627 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-94dc736c484e8782.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-94dc736c484e8782.agent_succession_packet.json", + "sha256": "95f8527fa87bf28bcc4a01051486dcb9038b6a7efa46ca79dd05c5ad97298de3", + "size": 2644 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-a904ed885c6598ad.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-a904ed885c6598ad.agent_succession_packet.json", + "sha256": "d2512cdf400768e33dd2ba914473d0bb3a12c50ae76b29a156f393f35f58ad20", + "size": 2629 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-afe4b4787dd89751.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-afe4b4787dd89751.agent_succession_packet.json", + "sha256": "b5850069eb80bf67aa617382850cda72353bb0b586cdd52b7aad01230f71704e", + "size": 2777 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-c40f3356dba7bbac.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-c40f3356dba7bbac.agent_succession_packet.json", + "sha256": "fb78fa2158671fa9f7eed99ee85cb3aa93e680c698aa38f04bb0b94a75140cd8", + "size": 2776 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-cbc0b3efae7348a2.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-cbc0b3efae7348a2.agent_succession_packet.json", + "sha256": "b0197ebc72ab7c6cbae105c16e42f43524ba393f027d9132399cb0eb8d8fa4f8", + "size": 2776 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-cf77bf26adefb8b6.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-cf77bf26adefb8b6.agent_succession_packet.json", + "sha256": "4a0a922acbbfc9df1e9cadde5974b6ad1b4fd82d3ef0135c121cdf8f1809e165", + "size": 2627 + }, + "ION/05_context/handoff/agent_succession_packets/agent-succession-ea492c604ff09db2.agent_succession_packet.json": { + "path": "ION/05_context/handoff/agent_succession_packets/agent-succession-ea492c604ff09db2.agent_succession_packet.json", + "sha256": "9f64d34114d4a5d9528c04d9ccc28b82ed52bc52a087bf1711edc5cbfd1bb9ed", + "size": 2628 + }, + "ION/05_context/history/conversational_receipts/2cdb4920b2dc401d7cd84c79.conversational_receipt.json": { + "path": "ION/05_context/history/conversational_receipts/2cdb4920b2dc401d7cd84c79.conversational_receipt.json", + "sha256": "879715864babe755b1c87732f895a5f20d566361562f61335c143203ea352c71", + "size": 1905 + }, + "ION/05_context/history/conversational_receipts/7116638c9d43023d44c6efe4.conversational_receipt.json": { + "path": "ION/05_context/history/conversational_receipts/7116638c9d43023d44c6efe4.conversational_receipt.json", + "sha256": "bb0e091a7b53f9507620913404c1599674eb5ecce457ed7263c611d2fd0c5eb9", + "size": 1905 + }, + "ION/05_context/history/conversational_receipts/9163df7a9a5760d705dbeec1.conversational_receipt.json": { + "path": "ION/05_context/history/conversational_receipts/9163df7a9a5760d705dbeec1.conversational_receipt.json", + "sha256": "347c55e52dd359d25e5c7c4610dadce2fe79e3256b04870414bfc9fe6dc32ceb", + "size": 1905 + }, + "ION/05_context/history/front_door_proof_traces/fdproof-20938bb98d449d3782.front_door_proof_trace.json": { + "path": "ION/05_context/history/front_door_proof_traces/fdproof-20938bb98d449d3782.front_door_proof_trace.json", + "sha256": "132e6d6705a95f9374f988adefb1fcc65ec7726e269461c5c305513ab9a84e8b", + "size": 11317 + }, + "ION/05_context/history/front_door_proof_traces/fdproof-527a3f11276e5936a1.front_door_proof_trace.json": { + "path": "ION/05_context/history/front_door_proof_traces/fdproof-527a3f11276e5936a1.front_door_proof_trace.json", + "sha256": "a3149a49af608bb1f77a8b8cf26837dfb7e0765e770d84de91499b33dab5091f", + "size": 10744 + }, + "ION/05_context/history/front_door_proof_traces/fdproof-5682a7ece065be3977.front_door_proof_trace.json": { + "path": "ION/05_context/history/front_door_proof_traces/fdproof-5682a7ece065be3977.front_door_proof_trace.json", + "sha256": "a8de8dea1f13dedb39313f55e2fcb1eff6d0a78fb9095e791ad0952c66540fea", + "size": 11311 + }, + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.dispatch_packet.json": { + "path": "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.dispatch_packet.json", + "sha256": "728dd8782a108047d090120240611bdc3a4c6e61a52ebcbaff2f8894085a1ae9", + "size": 6700 + }, + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.dispatch_packet.json": { + "path": "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.dispatch_packet.json", + "sha256": "291c7d7ac84b659bbcec985119b5b14043bcb6cf831b9d6a3b22b59b3e4d9aa0", + "size": 6702 + }, + "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.dispatch_packet.json": { + "path": "ION/05_context/history/front_door_runtime/dispatch_packets/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.dispatch_packet.json", + "sha256": "2cb2084e71c9a1d6d5838849e3f13bfed216c2a14cd46fb7965edab878066311", + "size": 6702 + }, + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-fdsession-e3325d8e7fd2e91c61-user-sovereign-e30502b0d5c8.json": { + "path": "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-fdsession-e3325d8e7fd2e91c61-user-sovereign-e30502b0d5c8.json", + "sha256": "90a1637e285bbff3c43ccfb4c4b293f7488b7c5c810c93c90c7fa699a1fabb74", + "size": 547 + }, + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-9266b5943379.json": { + "path": "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-9266b5943379.json", + "sha256": "3fd5e25bac6dab92474e09ec3fbed776d39376d3b3e1b853bc6d8edbbd29b3dc", + "size": 545 + }, + "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-fe357c69b2f6.json": { + "path": "ION/05_context/history/front_door_runtime/persona_ingress/fdmsg-v106-front-door-proof-trace-user-sovereign-fe357c69b2f6.json", + "sha256": "d159623a8f2bd8dde416d7caea980a37c080bf29032e18754c24b24ce25e521c", + "size": 545 + }, + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-fdsession-e3325d8e7fd2e91c61-stewa-a2aab6e5f3e3.json": { + "path": "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-fdsession-e3325d8e7fd2e91c61-stewa-a2aab6e5f3e3.json", + "sha256": "770accba4d72ddee34958c298840d05ab49a1e2314b719ff9d5cec932e20c943", + "size": 939 + }, + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-092bc3cb2479.json": { + "path": "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-092bc3cb2479.json", + "sha256": "2df26fd78075920fd2fc53c3609d6c645bf8965478d270417d479119b397d192", + "size": 939 + }, + "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-3722235d458f.json": { + "path": "ION/05_context/history/front_door_runtime/persona_response_packages/fdresponse-fdreturn-v106-front-door-proof-trace-stewar-3722235d458f.json", + "sha256": "0374b3af64a890a6a9b665cd3335f7e6827ee086ad784e66f580607f76f9ea6c", + "size": 939 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-fdsession-e3325d8e7fd2e-79ca4f6cb160.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-fdsession-e3325d8e7fd2e-79ca4f6cb160.json", + "sha256": "a99092fdc8b9df1c8ca0563a5d5db508fbf3f5db48f34821415c294bd94d543a", + "size": 768 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-98778d054ede.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-98778d054ede.json", + "sha256": "c2b8373bc91e4c3778fa952bc41da84c25393be90178704d90ad64d707b8c48d", + "size": 768 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-b1e6e7d48025.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdresponse-fdreturn-v106-front-door-proof-t-b1e6e7d48025.json", + "sha256": "86ca5c56f491e1af9edeac26cecf635e4fdaf5bc0668cbbf9c102cdf3d74c6fc", + "size": 768 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7-328f39c7cc61.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7-328f39c7cc61.json", + "sha256": "8a358de074ddb583434f33e9238fa0e21a197bb8f3853236f731a851c9cc2fb8", + "size": 924 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-4ff78b994961.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-4ff78b994961.json", + "sha256": "6a2d19ec6a93880477309b617ce452c4191f13a3d283bbb6475fd201b650280f", + "size": 923 + }, + "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-88300a5c737c.json": { + "path": "ION/05_context/history/front_door_runtime/receipts/fdreceipt-fdsteward-fdrelay-fdmsg-v106-front-door-pro-88300a5c737c.json", + "sha256": "a03ef900f3e356bf3ae4b6c0d223ff3508d9c1f93d41cf93f57895e98a19dad7", + "size": 923 + }, + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-fdsession-e3325d8e7fd2e91c61-steward-proof-99a27cc53338.json": { + "path": "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-fdsession-e3325d8e7fd2e91c61-steward-proof-99a27cc53338.json", + "sha256": "1b3354a6fe231dbf3c41e005a27cc5ff15f2abf200c820ab4bce33870ef4a4dd", + "size": 956 + }, + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-2fdd60e1bd98.json": { + "path": "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-2fdd60e1bd98.json", + "sha256": "25f81857c2697a9116393ab48c70162e5eeb634add57a6872045e0f86c086a64", + "size": 956 + }, + "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-c7e2ebaf2583.json": { + "path": "ION/05_context/history/front_door_runtime/relay_return_packages/fdreturn-v106-front-door-proof-trace-steward-proof-t-c7e2ebaf2583.json", + "sha256": "b1b1330c608292daf4d2ae8d67bf9d566467960cf5ac698b2d4e707edfe3f737", + "size": 956 + }, + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-user-sov-ba415756fb8a.json": { + "path": "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-user-sov-ba415756fb8a.json", + "sha256": "70f08bda96d99d3983cdde24c8aa950884251185734212af3d6bee74015f2aca", + "size": 2921 + }, + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-a1af2bd9ee2c.json": { + "path": "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-a1af2bd9ee2c.json", + "sha256": "a3ed55d9025ece8aeae054c2b155d11a778b408a35b593508650bfa3f6f5128b", + "size": 2917 + }, + "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-f1dc5baef7bc.json": { + "path": "ION/05_context/history/front_door_runtime/relay_semantic_boundary_packets/fdrelay-fdmsg-v106-front-door-proof-trace-user-sove-f1dc5baef7bc.json", + "sha256": "9024bce112da5ed48a56b04810c653083bef6e85f344c448ad9a3b7a0596a0d8", + "size": 2917 + }, + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-d0f82d9dad63.json": { + "path": "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-fdsession-e3325d8e7fd2e91c61-d0f82d9dad63.json", + "sha256": "21ca52fa29f919d8b9e3196d23bff8810328e7afc6b2062d5c89a710d1f7c292", + "size": 669 + }, + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-129dac14513f.json": { + "path": "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-129dac14513f.json", + "sha256": "b2950f08cb083b7561c6201a68889dd75bbe432638505f091ca8a149c619e6b0", + "size": 669 + }, + "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-8a98a48a44d3.json": { + "path": "ION/05_context/history/front_door_runtime/steward_routing_envelopes/fdsteward-fdrelay-fdmsg-v106-front-door-proof-trace-u-8a98a48a44d3.json", + "sha256": "e98dd6e621e4c9d1f9672da47774db2e82af8fe624a9743a9e1859ea90686aba", + "size": 669 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-847548dfe713.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-847548dfe713.json", + "sha256": "cc3b4899851761b4188cf616339426d674b96ed0a3f9ab6dfdc48f3c7b5a8781", + "size": 378 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-a74825790fa0.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_carrier_boundaries/acb-a74825790fa0.json", + "sha256": "f711e7e21e4fbb4611f546acb30d30a0e56ed761de50d9ecae0898c08bc210c1", + "size": 377 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-01e3c1d927aa.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-01e3c1d927aa.json", + "sha256": "c2468ff6df2969f0451ff6befc4cdc59fb1ebc2efd5ba25653c264f832f03805", + "size": 755 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-4a7f5f80f40d.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-4a7f5f80f40d.json", + "sha256": "18c330190d6acc5752988637001aeeecab539eaf66273dd21d6037b357e296bb", + "size": 1943 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-d7d1526ee22c.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/api_entry_receipts/arer-d7d1526ee22c.json", + "sha256": "13ec0660bf4f757f3f50a102d91effb90cfb7f53de9f4ce8a31deac224668dd4", + "size": 1950 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "b40db258e14b9ca5ea6773d5618437bc59c5c28d2a37a085f5874942711e6b4f", + "size": 350 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/authorities/v106-front-door-proof-trace.json", + "sha256": "af20e1bc0e81467560ba4b7f16c76e6b06a8dfeb89c3e81a3f9668e998470d4b", + "size": 349 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "0c363d31d909607e50b997fca00449726ac4ea2eb2d64d7f5a34ab0747b1a043", + "size": 212 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/carrier_bindings/v106-front-door-proof-trace.json", + "sha256": "65d8e2f7eb218eb2f81102cfa90424d94f965eee7aa120ad471885936ef474d2", + "size": 211 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "c3b5f32bc9dd94817e29ed34495800585ff7366cff8072b4dfdbd32770ed2080", + "size": 381 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/context_bindings/v106-front-door-proof-trace.json", + "sha256": "2a85d87ab0991e5f9b4a175f13228220b59daeb31db668f7551e5029335e1f1d", + "size": 381 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "8a34d78c368ec690b180f2ca86838660f4fdb381b9a43ba338cb6e58f2265da8", + "size": 809 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/queues/v106-front-door-proof-trace.json", + "sha256": "b87728539b9c2025b8f4eba6fc8690fec3d2fa6c5278af6b0dcd29e7205f68e5", + "size": 1498 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-3ca30902024f.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-3ca30902024f.json", + "sha256": "2c49513c0532f1e7c61b955471b0c9c062a4472929cf6fa5bd2ee4b7cb426e69", + "size": 636 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4306744c9ecc.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4306744c9ecc.json", + "sha256": "f14e6ebfbe2ff3b6d319c268bb9d2429368f92b0c294b73cacfc1e3217fdc4ae", + "size": 510 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4a7805181eea.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4a7805181eea.json", + "sha256": "6a301dee1da3f29777c8c8503084697a6f438bafeb28aa8224240f06d489f0ba", + "size": 542 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4b3e9da4b7e0.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-4b3e9da4b7e0.json", + "sha256": "0722d918afaa109ee7fc7d518f2a342fa7723ccb2a4faa9fd67c2e4f9f54c29e", + "size": 635 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-54356c43b417.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-54356c43b417.json", + "sha256": "99ab28ddbf3f35fe96d56d62733706920753228f10abaeae5d828dcdadc4db41", + "size": 515 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-58419c8d9419.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-58419c8d9419.json", + "sha256": "822a4b296c2aa5def7cf0d74ace78a37231d61cd3920e66d7f42a6510b2bc71a", + "size": 540 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-73dca9f058c6.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-73dca9f058c6.json", + "sha256": "b6e91a062e09e797f91b90f3d3cc341a0b558142b1c60d296ecb9396b77d7244", + "size": 508 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-764c0ab3e724.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-764c0ab3e724.json", + "sha256": "69411e59c2b8cc20e17929c910c95be915809af1bf23c6c00e22ac0f538291c8", + "size": 516 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-92a7b76c067a.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-92a7b76c067a.json", + "sha256": "eca110545ab2f60fe1fea0bf5cabfe0fb9314ca38a943ed7a46577a8889b52fa", + "size": 635 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-a0594a05f017.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-a0594a05f017.json", + "sha256": "32093d582489e44c40a9873b255fe2f1c3266e080885b6657dc556ddb7e42c39", + "size": 893 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b1425da06b34.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b1425da06b34.json", + "sha256": "f79061d51352bc261adfa69e43dcf4bd42676ab46bc3cb428eca37a7d0f047ed", + "size": 508 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b4acfeb08f08.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-b4acfeb08f08.json", + "sha256": "1fc2217177cf6128f79a93c13f989a28f63d81d26dd56965ea959135ae669709", + "size": 464 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-ca371b333632.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-ca371b333632.json", + "sha256": "cea960df3e02daf35541ccd2315c0bccbfcd0d29932c1f4d4913e5748d585b2f", + "size": 897 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e4aad22c1617.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e4aad22c1617.json", + "sha256": "a8abc9d670c56604965e4699e9696fba3619ec9c5a2651d35a8f6eea3f419e06", + "size": 466 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e988da043a82.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/receipts/rsr-e988da043a82.json", + "sha256": "e454cc88eb357426aa5aae29fb338401fde1e1d3d45c4e465e43311db441a962", + "size": 540 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/fdsession-e3325d8e7fd2e91c61.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/fdsession-e3325d8e7fd2e91c61.json", + "sha256": "e57c53b27d1cb6669529fdd29f868613db1a8dc8b6f40d337c2718c90ef22bee", + "size": 206 + }, + "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/v106-front-door-proof-trace.json": { + "path": "ION/05_context/history/front_door_runtime_sessions/runtime_sessions/sessions/v106-front-door-proof-trace.json", + "sha256": "215d8466f581a1136b2d4c933335fe2fbd05802d480acc23aaf9b7175c99da26", + "size": 205 + }, + "ION/05_context/history/front_stage_council_receipts/fsc-27a1a8398ae020b89d.front_stage_council_receipt.json": { + "path": "ION/05_context/history/front_stage_council_receipts/fsc-27a1a8398ae020b89d.front_stage_council_receipt.json", + "sha256": "e66d96e020f9d411e01903747911ea0396c65832bacd767c807335706cb1e0ea", + "size": 1331 + }, + "ION/05_context/history/front_stage_council_receipts/fsc-553f46a0537d871778.front_stage_council_receipt.json": { + "path": "ION/05_context/history/front_stage_council_receipts/fsc-553f46a0537d871778.front_stage_council_receipt.json", + "sha256": "14cb371551ed2777eaae137e4c2bccea72e3ccbe4591cbd5440f28cd476765f6", + "size": 1331 + }, + "ION/05_context/history/front_stage_council_receipts/fsc-b3e8eb0f49710e6013.front_stage_council_receipt.json": { + "path": "ION/05_context/history/front_stage_council_receipts/fsc-b3e8eb0f49710e6013.front_stage_council_receipt.json", + "sha256": "9e37afa59455e25489cc01fd216123e58d85de62cd589aa551e0fb062e65059e", + "size": 1331 + }, + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-7f8c0860d4ee.json": { + "path": "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-7f8c0860d4ee.json", + "sha256": "09e342b486c5ae49239c0467b974777bcd9dc2e3c0babb415c83cbe0c575ac1e", + "size": 3260 + }, + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-aad5212e511b.json": { + "path": "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-aad5212e511b.json", + "sha256": "ef4f484a16d3bef1e68f079fd6ecdd59ec168f6a516eada40d48d002525f02e9", + "size": 3261 + }, + "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-c218ca2f6615.json": { + "path": "ION/05_context/history/kernel_store/context_packages/fdctx-fdwu-v106-front-door-proof-trace-fdsteward-c218ca2f6615.json", + "sha256": "1d52af5b8c4c77f39ff086560afad8f8b0c863968fe453525e088afeea9b4cc0", + "size": 3261 + }, + "ION/05_context/history/kernel_store/work_units/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.json": { + "path": "ION/05_context/history/kernel_store/work_units/fdwu-fdsession-e3325d8e7fd2e91c61-fdsteward-fdre-595dbc2762ff.json", + "sha256": "f1888a1aa16209dd89406a9bd8dfd0374cb501018c8f12053ac6fd38c773cd50", + "size": 2672 + }, + "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.json": { + "path": "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-11468163c5b1.json", + "sha256": "2286e6a4f284399caa3e8c7f8fa3df59b74e7ad0196c2b9098ef48638e2ed24b", + "size": 2673 + }, + "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.json": { + "path": "ION/05_context/history/kernel_store/work_units/fdwu-v106-front-door-proof-trace-fdsteward-fdrel-5b48cf69af2e.json", + "sha256": "b6ee96c2d7521f771ad1425116b7128bd46da7a31ebcc66730a35390fe448c40", + "size": 2673 + }, + "ION/05_context/inbox/README.md": { + "path": "ION/05_context/inbox/README.md", + "sha256": "f02c5846b8ad358947058f2f59909a0b87cda399fdaa3c29269a12e5dfc65fb6", + "size": 1627 + }, + "ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md": { + "path": "ION/05_context/inbox/bootstrap/archive/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "sha256": "d485b04b6f2d2d844a2b108c96959312fca2c65f0d1cdfa61f9cf75f7c45cc11", + "size": 1223 + }, + "ION/05_context/inbox/bootstrap/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md": { + "path": "ION/05_context/inbox/bootstrap/bootstrap_first_lawful_daemon_pressure_from_this_root_20260423150348.task.md", + "sha256": "e449d187ccdbdc032be6d79f9dfae6cc18cfa9650e6162b213d3245563edef36", + "size": 2045 + }, + "ION/05_context/inbox/completed/codex_agent_reasoning_protocol_first_pass_2026-04-05.task.md": { + "path": "ION/05_context/inbox/completed/codex_agent_reasoning_protocol_first_pass_2026-04-05.task.md", + "sha256": "892abe019adfdad4f4e01eed28c1a452644b1f479c50503bce2f9235c782fc08", + "size": 996 + }, + "ION/05_context/inbox/completed/codex_context_compiler_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_context_compiler_first_pass_2026-04-03.task.md", + "sha256": "e64ed4acbde5706310d8972099339344f072e84ee6f889d0ddd264f66cde38e9", + "size": 2803 + }, + "ION/05_context/inbox/completed/codex_ion_kernel_constitution_self_use_alignment_2026-04-10.task.md": { + "path": "ION/05_context/inbox/completed/codex_ion_kernel_constitution_self_use_alignment_2026-04-10.task.md", + "sha256": "0054028d1ae4f52077e6b7b6e8c561c9277f3a7d29e34248553353b6527f8867", + "size": 3644 + }, + "ION/05_context/inbox/completed/codex_kernel_answer_record_and_planner_manifest_runtime_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_answer_record_and_planner_manifest_runtime_first_pass_2026-04-04.task.md", + "sha256": "684479baa5ddb007bd42ae813d0fa584bb78cf534272eebb79c5f141b9a77786", + "size": 4774 + }, + "ION/05_context/inbox/completed/codex_kernel_child_work_issuance_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_child_work_issuance_first_pass_2026-04-03.task.md", + "sha256": "98700be3fe5a4121b9740eb3342b2b7a820ab0c8dbfa690b294e6e455e7bd6d3", + "size": 3366 + }, + "ION/05_context/inbox/completed/codex_kernel_commit_applier_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_commit_applier_first_pass_2026-04-03.task.md", + "sha256": "d807dd83fe7c51b6d2261a4c1b741dda6e904d0accc6c0d476e43c37c1e7a906", + "size": 3271 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_act_once_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_act_once_first_pass_2026-04-03.task.md", + "sha256": "75eb4537785494995c0f88d7e5f60aec35a362cdf16d88ff052850247fdbfba2", + "size": 2960 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_arbiter_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_arbiter_first_pass_2026-04-03.task.md", + "sha256": "bc98875fe6d530414b54d64230ce25512da72df9aed54190021859de0b83629d", + "size": 3370 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_loop_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_loop_first_pass_2026-04-03.task.md", + "sha256": "fc98db36514e13a375c64002952b86748ebd6b023eea218cb3927da87f9ca333", + "size": 2884 + }, + "ION/05_context/inbox/completed/codex_kernel_daemon_signal_consumption_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_daemon_signal_consumption_first_pass_2026-04-03.task.md", + "sha256": "892ff88eff3629eae69d43aac082d30adf9b8d4362aac1fc62228b42c91321b2", + "size": 3124 + }, + "ION/05_context/inbox/completed/codex_kernel_dispatch_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_dispatch_first_pass_2026-04-03.task.md", + "sha256": "5dd8bbdc6039fa2e18d02a264bdbe49a6035625489a9d2d582117bea274d0681", + "size": 3311 + }, + "ION/05_context/inbox/completed/codex_kernel_execution_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_execution_first_pass_2026-04-03.task.md", + "sha256": "328a85f9433fae22159d3ea8a79f237ca6309c83ec34c935f7011287218bda29", + "size": 3230 + }, + "ION/05_context/inbox/completed/codex_kernel_graph_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_graph_first_pass_2026-04-03.task.md", + "sha256": "f21a67b22302c1cb7e135e86df164a8326d0d67e33d7ee4b1a6443c633a478dc", + "size": 2565 + }, + "ION/05_context/inbox/completed/codex_kernel_index_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_index_first_pass_2026-04-03.task.md", + "sha256": "5009061c52958d4b2e4b24643086859255e596f654b90b414b52ca894de7505e", + "size": 2719 + }, + "ION/05_context/inbox/completed/codex_kernel_loop_receipts_telemetry_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_loop_receipts_telemetry_first_pass_2026-04-04.task.md", + "sha256": "33197c7de92840095357fb39db5bb37c20041fff0578b632a9ae8ee5af9eb7e4", + "size": 3113 + }, + "ION/05_context/inbox/completed/codex_kernel_model_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_model_first_pass_2026-04-03.task.md", + "sha256": "aa66e8579e300c94ebde73931021e897d86d21f99d815937cc759b7dc716b036", + "size": 2482 + }, + "ION/05_context/inbox/completed/codex_kernel_open_question_routing_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_open_question_routing_first_pass_2026-04-03.task.md", + "sha256": "94b8b51f6518415acbd1cdd07ba1295322afe02e88522c96c4231d9ed0b8a6d2", + "size": 3440 + }, + "ION/05_context/inbox/completed/codex_kernel_question_answer_and_planner_gate_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_question_answer_and_planner_gate_first_pass_2026-04-04.task.md", + "sha256": "589b8f6f2a55c30d10e0ea4c54c80c53911e60410a3c2246e6e1b9f4b11a1f7d", + "size": 4099 + }, + "ION/05_context/inbox/completed/codex_kernel_queue_projection_and_planner_housekeeping_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_queue_projection_and_planner_housekeeping_first_pass_2026-04-04.task.md", + "sha256": "75e98e841aea6c0849ae740a0b842d9d84e1344af3cd94ec9024eed6a0d0c34b", + "size": 4764 + }, + "ION/05_context/inbox/completed/codex_kernel_queue_refresh_and_planner_sweep_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_queue_refresh_and_planner_sweep_first_pass_2026-04-04.task.md", + "sha256": "069663d070a38dff817b1a5ea4f4a5cac6453c37a3575c55ed99b1f873a94b1a", + "size": 4785 + }, + "ION/05_context/inbox/completed/codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass_2026-04-04.task.md", + "sha256": "a1198ee4acdcf2de990762f534571541e0c0747fd3cea96a2ace758255fc25f2", + "size": 4849 + }, + "ION/05_context/inbox/completed/codex_kernel_review_escalation_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_review_escalation_first_pass_2026-04-03.task.md", + "sha256": "5e260dc330007d8ecf093f8bda52f77482a743568da3958c57d497fba0436626", + "size": 3201 + }, + "ION/05_context/inbox/completed/codex_kernel_review_followup_resolution_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_review_followup_resolution_first_pass_2026-04-04.task.md", + "sha256": "06ceac3f9ae2444ff80dcfbda27f7fc2f8521a6edcc1bb3adf4658876a19f5d2", + "size": 4063 + }, + "ION/05_context/inbox/completed/codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass_2026-04-04.task.md", + "sha256": "74cd149eca88266010f8d581aca8dec75e2c2c2549e1f2ff4c0ecf7fc81628ab", + "size": 4685 + }, + "ION/05_context/inbox/completed/codex_kernel_scheduler_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_scheduler_first_pass_2026-04-03.task.md", + "sha256": "a8c31b6b6df6a2769708aca59c1091c17784ba8aa6d832201dbf6889e36ca707", + "size": 2968 + }, + "ION/05_context/inbox/completed/codex_kernel_signal_consumption_archive_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_signal_consumption_archive_first_pass_2026-04-03.task.md", + "sha256": "af4f0ec6fb7ab7b0129b4862de5bf946f90ec1a9f783514d4afab3c3cc71de73", + "size": 3071 + }, + "ION/05_context/inbox/completed/codex_kernel_signal_followup_automation_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_signal_followup_automation_first_pass_2026-04-03.task.md", + "sha256": "fc2ad4a2818fed7a4097dd55411db103623fd85761e59ca2dab4beaf5f3f6d60", + "size": 3297 + }, + "ION/05_context/inbox/completed/codex_kernel_signal_interpretation_expiry_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_signal_interpretation_expiry_first_pass_2026-04-03.task.md", + "sha256": "104e24108560fbfb73f215250c7de49cec969ac7913631d8c73662f386aea964", + "size": 3023 + }, + "ION/05_context/inbox/completed/codex_kernel_store_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_store_first_pass_2026-04-03.task.md", + "sha256": "e71ce34776e7ad015ac7729d4c56aa0093d17dae8717a109c904b7c7ca641cf9", + "size": 2516 + }, + "ION/05_context/inbox/completed/codex_kernel_validation_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_validation_first_pass_2026-04-03.task.md", + "sha256": "2560e415b95bfd6344e69c057e9d76cf3b87080495af815f0c73b1217e371926", + "size": 3208 + }, + "ION/05_context/inbox/completed/codex_kernel_validation_receipt_signal_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_kernel_validation_receipt_signal_first_pass_2026-04-03.task.md", + "sha256": "dd81136fa03c4dba9f8709e040e89a275c9e7fd56396805e1c2c1cff9cfe7161", + "size": 3323 + }, + "ION/05_context/inbox/completed/codex_live_kernel_status_pilot_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_live_kernel_status_pilot_2026-04-03.task.md", + "sha256": "f4b91c6e5a98a32775e0d714cdc9e2cbab672d91985aab06d5c72b8c00f90149", + "size": 2539 + }, + "ION/05_context/inbox/completed/codex_official_lead_and_support_topology_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_official_lead_and_support_topology_2026-04-03.task.md", + "sha256": "16955abc4f9a01e06c3596b4031a64815aaacfd69067c72a4803abadc9679975", + "size": 3554 + }, + "ION/05_context/inbox/completed/codex_orchestration_blueprint_and_lead_prep_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_orchestration_blueprint_and_lead_prep_2026-04-03.task.md", + "sha256": "78d5ad33b6b4a1ec8e7e7c18a146f646afd0f1a0447ba58955ecc1f6b5df5a9d", + "size": 2944 + }, + "ION/05_context/inbox/completed/codex_recursive_witness_drift_rollback_2026-04-04.task.md": { + "path": "ION/05_context/inbox/completed/codex_recursive_witness_drift_rollback_2026-04-04.task.md", + "sha256": "e3e93a675d4c7a4f7646723916986dc8c6dcaf1a0900ca4f5e728352f8c266fe", + "size": 634 + }, + "ION/05_context/inbox/completed/codex_sequential_runtime_portability_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_sequential_runtime_portability_first_pass_2026-04-03.task.md", + "sha256": "5e197928d0c74b566995f3d0bff8f6d292269ffe9010a3029c77d2294849ca73", + "size": 3083 + }, + "ION/05_context/inbox/completed/codex_sovereign_operating_state_delta_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_sovereign_operating_state_delta_2026-04-03.task.md", + "sha256": "00b4333dbe4621de92b1c3c936e1a87ef53a841df09aaa1f6e6be4445687bcf2", + "size": 2699 + }, + "ION/05_context/inbox/completed/codex_template_architecture_shared_vs_agent_specific_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_template_architecture_shared_vs_agent_specific_2026-04-03.task.md", + "sha256": "e5cb7a89f65a2232d9dc9966c1fbb44f1eb0f3a0c2ee713020cd5e117d3be945", + "size": 2700 + }, + "ION/05_context/inbox/completed/codex_template_bindings_first_pass_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/codex_template_bindings_first_pass_2026-04-03.task.md", + "sha256": "b9ed155ad2a3f4f406422e920060a3f0df471c087f07ce826219a7a0f9d7e012", + "size": 3176 + }, + "ION/05_context/inbox/completed/mason_kernel_scaffold.task.md": { + "path": "ION/05_context/inbox/completed/mason_kernel_scaffold.task.md", + "sha256": "7855170a2ed52ff5df81dc5e9c094c651cd8c81cd80eaebdaeb7ec9aab1147f5", + "size": 1150 + }, + "ION/05_context/inbox/completed/thoth_current_phase_staffing_and_semantic_identity_2026-04-12.task.md": { + "path": "ION/05_context/inbox/completed/thoth_current_phase_staffing_and_semantic_identity_2026-04-12.task.md", + "sha256": "2463f22d15bb34600b15e163b79a42b0082a598577e541303cc05662903cfda3", + "size": 3124 + }, + "ION/05_context/inbox/completed/vizier_phase0b_proof_loop_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/vizier_phase0b_proof_loop_2026-04-03.task.md", + "sha256": "f535f2171852aadae9782da74af9b5bf16ecd1fa8bcc112fcf86f3eb5170e418", + "size": 4502 + }, + "ION/05_context/inbox/completed/vizier_plan_continuity_patch_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/vizier_plan_continuity_patch_2026-04-03.task.md", + "sha256": "a22931b06fa6744d7d750d6a1d8d50ebb41e298463a4e02cfced2a70638c7d8e", + "size": 3293 + }, + "ION/05_context/inbox/completed/vizier_supervisor_continuity_patch_2026-04-03.task.md": { + "path": "ION/05_context/inbox/completed/vizier_supervisor_continuity_patch_2026-04-03.task.md", + "sha256": "cdd09f60e7cb0ebbe8c89e714a9e244a059c45798af4dcfdaf9ffbf3155c8a7f", + "size": 3024 + }, + "ION/05_context/inbox/context_graph/context_graph_substrate_ratification_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/context_graph_substrate_ratification_20260424.task.md", + "sha256": "80e69b1df10e4f30abd3fe0566f7137d053c1eff07bd7bed06f01501ef160867", + "size": 1183 + }, + "ION/05_context/inbox/context_graph/event_reaction_pipeline_ratification_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/event_reaction_pipeline_ratification_20260424.task.md", + "sha256": "c01f2278cd65125f94b22672dc7c68c505ad7ac7ed7c2dc1337eb3f609b890c8", + "size": 1514 + }, + "ION/05_context/inbox/context_graph/evented_template_file_graph_ratification_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/evented_template_file_graph_ratification_20260424.task.md", + "sha256": "d85cc6ea4a70b40cf673d18a158390af4909508945b5b29c7c6bedebd46e1207", + "size": 1340 + }, + "ION/05_context/inbox/context_graph/template_completion_event_phase1_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_completion_event_phase1_review_20260424.task.md", + "sha256": "b8b3d8ac3708247f8103d063b0759733acd2fb7dc05b56cfb18604942f343308", + "size": 1290 + }, + "ION/05_context/inbox/context_graph/template_graph_commit_phase6_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_graph_commit_phase6_20260424.task.md", + "sha256": "3dd6b0fae43d7909cdd05f26812f847b27f0df58938c8459a33ce366845702f5", + "size": 571 + }, + "ION/05_context/inbox/context_graph/template_graph_writeback_proposal_phase4_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_graph_writeback_proposal_phase4_review_20260424.task.md", + "sha256": "e1b22f2d015ccdf9c8054997a44ac46aa253b2f15cf9c137d80dbd2e410dee1d", + "size": 997 + }, + "ION/05_context/inbox/context_graph/template_graph_writeback_review_phase5_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_graph_writeback_review_phase5_20260424.task.md", + "sha256": "ca12d9e82c1c97baa25da6befbfdcce07c27908ae5cead13af45157e8cd982d8", + "size": 1073 + }, + "ION/05_context/inbox/context_graph/template_index_projection_phase3_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_index_projection_phase3_review_20260424.task.md", + "sha256": "5bfbb748c4235e00546cfcc91f8bc9abff9c09b70f4231cf656638ba6d4c5260", + "size": 840 + }, + "ION/05_context/inbox/context_graph/template_reaction_selection_phase2_review_20260424.task.md": { + "path": "ION/05_context/inbox/context_graph/template_reaction_selection_phase2_review_20260424.task.md", + "sha256": "7f741ee745cba70a5d2070dbc1ee4ed8e7f1f92e88f631ef18c0f5dc629e9bf4", + "size": 968 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-3329e48b89507651.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-3329e48b89507651.task.md", + "sha256": "7d259a1990985376b9f4ff5f2a6b7c7a480f11e2b089add951e3be9625f7483e", + "size": 772 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-5864ba79a36a9c3b.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-5864ba79a36a9c3b.task.md", + "sha256": "c89a61e8ed43fd8cc2446def2f8eb48e470fda604f8a496a943a62d6e90124fd", + "size": 775 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-5c69698288020b46.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-5c69698288020b46.task.md", + "sha256": "57f89844084f5f15e0cb2412275264162f51ad1e4b0f315e3e9272eea97f6e4a", + "size": 783 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-74c83a707e199872.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-74c83a707e199872.task.md", + "sha256": "d719b7b79550d7fc2a05aced2806081cfdea1c6c9619d57005717d38a4b59557", + "size": 781 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-77b1b20da0a6e1b7.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-77b1b20da0a6e1b7.task.md", + "sha256": "965161fbf87d07a89c99b771c0622b549d1c522b1792efe4e44020f487edd95a", + "size": 768 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-83fa2d2e94e4df73.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-83fa2d2e94e4df73.task.md", + "sha256": "bb5101f3c6bb474b7e9fd67853fe33bd2632bdfff1c35b1760d950a707c95c73", + "size": 803 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-988bbfba396b4e95.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-988bbfba396b4e95.task.md", + "sha256": "fbcdb4e0ba4d585d97207928e6d1ead7fff92fbd3ba3decbc730f96777391aaf", + "size": 811 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-9d2d70899db17de4.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-9d2d70899db17de4.task.md", + "sha256": "493dc8fcd6d1973905adf39ed750aa5a3000a94d98af5e42c26030fdf260076b", + "size": 787 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-ba6fa817b54b2add.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-ba6fa817b54b2add.task.md", + "sha256": "8d7a9f4ba69795c7f2c39d4f07382d50ed2d43117c6dfdabf25aa74fe7f7c1bc", + "size": 776 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-e9ac90a32590953e.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-e9ac90a32590953e.task.md", + "sha256": "cf49d4db96e27821dfa0e2e09d4ab66676279c41c23c57d947ee2d0a21876958", + "size": 829 + }, + "ION/05_context/inbox/product_mvp/summary-refresh-demo-fc719a7b48548cb8.task.md": { + "path": "ION/05_context/inbox/product_mvp/summary-refresh-demo-fc719a7b48548cb8.task.md", + "sha256": "640a1c7811fd934c1bb4012738ed4722469c8ab6fc9112b677d3605e57937f91", + "size": 775 + }, + "ION/05_context/inbox/steward/model_economics/V55_API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V55_API_PROVIDER_ORCHESTRATION_MODEL_ECONOMICS_IMPLEMENTATION_SCHEDULE.task.md", + "sha256": "5e7c7b4ef447c0c7004f7dda4cf37cee3f4669f769f459006aae05711321dfc3", + "size": 534 + }, + "ION/05_context/inbox/steward/model_economics/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V56_MODEL_ECONOMICS_REGISTRY_SKELETONS.task.md", + "sha256": "24c4bb12f8a0e7df6edcea6f262d04b5a9bc695d21f70b2c86c072a4ff697d3f", + "size": 427 + }, + "ION/05_context/inbox/steward/model_economics/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V57_MODEL_ROUTER_AND_COST_QUALITY_ROUTING.task.md", + "sha256": "7da3dbff7c46206f0e8e472bfc9b591a2595ea9e3786c86ae619e76c75df2be7", + "size": 508 + }, + "ION/05_context/inbox/steward/model_economics/V58_BUDGET_AND_API_RATE_GOVERNORS.task.md": { + "path": "ION/05_context/inbox/steward/model_economics/V58_BUDGET_AND_API_RATE_GOVERNORS.task.md", + "sha256": "c3e954220a1372a0d1597e94a35fe02f1aa6b19ac16340a05a878127116db98b", + "size": 621 + }, + "ION/05_context/inbox/system_evolution/context_graph_ontology_adapter_creation_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/context_graph_ontology_adapter_creation_20260424.task.md", + "sha256": "68e95877489204c62245bdece6cc3289ce5fac8bb823f4220324019e094264bd", + "size": 1151 + }, + "ION/05_context/inbox/system_evolution/contract_bound_event_integration_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/contract_bound_event_integration_20260424.task.md", + "sha256": "604a5738616720331cc8ec92bf101041667ca28e5064904a989754a189f9ed64", + "size": 939 + }, + "ION/05_context/inbox/system_evolution/contract_bound_event_runtime_hardening_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/contract_bound_event_runtime_hardening_20260424.task.md", + "sha256": "20f4ac287a56eda9f464c3a7f5fe280c5788e49471f522932da652b6ec17890e", + "size": 935 + }, + "ION/05_context/inbox/system_evolution/demo_spine_consolidation_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/demo_spine_consolidation_20260425.task.md", + "sha256": "a937f0f78edbc198df96a5c2b109d5d1f18681332b11a2cb53e03a08dbadac6f", + "size": 571 + }, + "ION/05_context/inbox/system_evolution/doctrine_evolution_governance_creation_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/doctrine_evolution_governance_creation_20260424.task.md", + "sha256": "178dd0bfc599e5c7f9b33391084403f55e40bd348b59feca2b0968d9912e2375", + "size": 1441 + }, + "ION/05_context/inbox/system_evolution/production_readiness_charter_and_ratification_matrix_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/production_readiness_charter_and_ratification_matrix_20260425.task.md", + "sha256": "a3a1660784d6e1149fd36463d06da160e041c110771b091c46b45a302e0b1013", + "size": 361 + }, + "ION/05_context/inbox/system_evolution/release_readiness_gate_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/release_readiness_gate_20260424.task.md", + "sha256": "2f4b5397fb86d7181719d4d74b5832c2f1b03efe74d0e79ff50ac1f61b4cb352", + "size": 857 + }, + "ION/05_context/inbox/system_evolution/self_documenting_approved_context_system_creation_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/self_documenting_approved_context_system_creation_20260424.task.md", + "sha256": "a993b9bd3c052ac74a5468146377577204e758b10b2e844f29b753a9e5149bb3", + "size": 1725 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_bounded_commit_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_bounded_commit_demo_runtime_20260425.task.md", + "sha256": "103cf8e3f9642e547cfbecec00ca82d1f4db83ec62aafa2fabb7aca58151ef98", + "size": 949 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_certification_gate_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_certification_gate_20260425.task.md", + "sha256": "c4155be9cf27eee245b65c313e20d8bf4b4f178f18fa26f1f82d172cd2b52e45", + "size": 1049 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_evidence_bundle_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_evidence_bundle_20260425.task.md", + "sha256": "8cf67b6e7c62559d66831b1e88eb40dc96071e27024acfbd7870a3f3c64336e0", + "size": 320 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_capsule_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_capsule_20260425.task.md", + "sha256": "938d41cb1d2ebc0680ff5170f7099a2785493226533a44f195e317d680e6ce85", + "size": 1083 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_verifier_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_release_candidate_verifier_20260425.task.md", + "sha256": "cc9d4855e3d90d9cfad490b0d86810e35d6f7629c33a20176697ca388dfa9796", + "size": 1104 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_cli_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_cli_20260425.task.md", + "sha256": "9cfc44d48117bb43ddcd0eb5342f59248bce35225103df25a0218295eaefc1ea", + "size": 1007 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_doctor_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_replay_doctor_20260425.task.md", + "sha256": "91500d4c4ec84d773f401b60c7763aed68705c15887e8fa3c4da887df6099d17", + "size": 1045 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_demo_runtime_20260425.task.md", + "sha256": "7a061b8e7641f280dc4cc9c7dfa17464c2d12f168d4c43cacb5a822834722ace", + "size": 994 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_graph_proposal_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_graph_proposal_demo_runtime_20260425.task.md", + "sha256": "7330824474aee490a6a539f38eb3c95c7c249232c8319ab02752e34c4d7eb777", + "size": 933 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_projection_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_projection_demo_runtime_20260425.task.md", + "sha256": "d5ef06443ec194e9656a4f4c63a2e354d13edcb2f66c8fa057423f067fb3e3f9", + "size": 908 + }, + "ION/05_context/inbox/system_evolution/summary_refresh_review_demo_runtime_20260425.task.md": { + "path": "ION/05_context/inbox/system_evolution/summary_refresh_review_demo_runtime_20260425.task.md", + "sha256": "b2bbe7eb3c3b8ae9515de58fa8a229446f4fc3147aae26dbbb0e0cd3b051aa7d", + "size": 913 + }, + "ION/05_context/inbox/system_evolution/template_contract_projection_alignment_audit_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_contract_projection_alignment_audit_20260424.task.md", + "sha256": "da5a956930879ab7c96c1be318fec3e3ed9a29c3512e433d0776df7e42140f82", + "size": 1003 + }, + "ION/05_context/inbox/system_evolution/template_contract_registry_projection_default_loading_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_contract_registry_projection_default_loading_20260424.task.md", + "sha256": "fe463060193603ff4ad6b2813f06d9d30fa1cfbecafe05c0b6142cf36be34f99", + "size": 1238 + }, + "ION/05_context/inbox/system_evolution/template_contract_release_gate_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_contract_release_gate_20260424.task.md", + "sha256": "b9afc39c564ef5d517f5f1ee7e499a211173ebdf9f13cbf29cc0cd55d822d776", + "size": 939 + }, + "ION/05_context/inbox/system_evolution/template_metadata_contract_hardening_20260424.task.md": { + "path": "ION/05_context/inbox/system_evolution/template_metadata_contract_hardening_20260424.task.md", + "sha256": "207845dfadac910136c1b9944579229b06ae6d4e4d0da1f5c733fef975a7fc46", + "size": 1034 + }, + "ION/05_context/inbox/takeover/bootstrap_first_lawful_daemon_pressure__manual_takeover.role_session.md": { + "path": "ION/05_context/inbox/takeover/bootstrap_first_lawful_daemon_pressure__manual_takeover.role_session.md", + "sha256": "b3f11e5c7a6c5b2ac1f2b46f9e47cb21d41e2c4a1716d8472156df5bd66cf162", + "size": 1931 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-042cea3b48cdee49.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-042cea3b48cdee49.runtime_identity_envelope.json", + "sha256": "71d14a970911f6cabde81c203243da40eecf2d46eed8dcf5bb496be038fd7a61", + "size": 5145 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-17d52e26cf721b2f.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-17d52e26cf721b2f.runtime_identity_envelope.json", + "sha256": "714b2f003f4f6f37751476ec1800d113269d4849804d21e7707e170dac0832c5", + "size": 5162 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-38213e02965ea244.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-38213e02965ea244.runtime_identity_envelope.json", + "sha256": "bff7c02c29977d9dde5326440677d46f34591c8b168335782c836293f658a7f9", + "size": 5294 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-3dcd59b4a848c69a.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-3dcd59b4a848c69a.runtime_identity_envelope.json", + "sha256": "c817507f90865880afbfa5808ea790051bd2eff17d8285ce73d44fc857985886", + "size": 5146 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-4ca6b186e914f9cd.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-4ca6b186e914f9cd.runtime_identity_envelope.json", + "sha256": "18a4f9501fc0e5f16c1a1d000d0959d7f895a189e151d438534bf48d922c20ca", + "size": 5295 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-5769ee9766aa6012.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-5769ee9766aa6012.runtime_identity_envelope.json", + "sha256": "cd3f99e71cec78512d7345996f35d095a76b5629f7f4d1023917a0bbbefa5373", + "size": 5163 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-606ebc1690b39a6f.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-606ebc1690b39a6f.runtime_identity_envelope.json", + "sha256": "bf492f459475ffc1f90916aa56af561eeca9a9726a0f39856018a05c99767dc1", + "size": 5146 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-8a4239d71058d7c5.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-8a4239d71058d7c5.runtime_identity_envelope.json", + "sha256": "34a102330aba99910aee8ded2c71a798fa3476511be9b29a3cd277cf09780f92", + "size": 5162 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-c340ad2ab4545c1d.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-c340ad2ab4545c1d.runtime_identity_envelope.json", + "sha256": "b494ee764f56de28f5684682dc38b6499cbc7a89f20f60337ffe50cee8881f2c", + "size": 5146 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-e76d1553278436c7.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-e76d1553278436c7.runtime_identity_envelope.json", + "sha256": "8d8bfd2b7172eba37c9883fb04606f4144c641af07d832720124fc5753fa9df6", + "size": 5294 + }, + "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-fc95610581b4f742.runtime_identity_envelope.json": { + "path": "ION/05_context/runtime_identity_envelopes/runtime-identity-envelope-fc95610581b4f742.runtime_identity_envelope.json", + "sha256": "632fa2d61217a68a2d9c41d150fe6bb94433182a567441d6929ccf3bf9e99298", + "size": 5145 + }, + "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.json": { + "path": "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.json", + "sha256": "681047a02bc09b1682ea081049e8d6649852a21d3ce3f137c04a46028e399e4c", + "size": 2632 + }, + "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.md": { + "path": "ION/05_context/runtime_reports/operations/acceptance/2026-04-12t15-08-04-04-00-operational-acceptance.md", + "sha256": "9fb0f8c595410915c29553cd11edaf35acdebf559df5424d2e7cef035f52ff44", + "size": 717 + }, + "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.json": { + "path": "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.json", + "sha256": "681047a02bc09b1682ea081049e8d6649852a21d3ce3f137c04a46028e399e4c", + "size": 2632 + }, + "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.md": { + "path": "ION/05_context/runtime_reports/operations/runbooks/2026-04-12t15-08-04-04-00-supervised-runtime-runbook.md", + "sha256": "634ecfa165f52a04bbd4b4b7c8b2ffe3b4ba9c0ce77ca780352ddfec81c4d79d", + "size": 1870 + }, + "ION/05_context/signals/ATLAS_AIMOS_MCP_COUNT_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AIMOS_MCP_COUNT_20260403.signal.md", + "sha256": "04a893c07bd1ebdbb9470e2052aa94f4d841482945fe633e77595d65ec3f91ad", + "size": 851 + }, + "ION/05_context/signals/ATLAS_AIMOS_PACKAGE_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AIMOS_PACKAGE_20260403.signal.md", + "sha256": "15e58c189b67d235edacfbaaa2bd92995d0cef05f1e931100789a141ef53a94c", + "size": 1047 + }, + "ION/05_context/signals/ATLAS_AI_OS_EXPANSION_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AI_OS_EXPANSION_20260403.signal.md", + "sha256": "d3ca30334e380bff1391045e283a0cb987a4ade8032aa4e46e8f122c72b6c7a7", + "size": 1504 + }, + "ION/05_context/signals/ATLAS_ALGOL_PASCAL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ALGOL_PASCAL_20260403.signal.md", + "sha256": "b886bfce1856f97ba638fcea1855049079a1bbdce5a6c1bfbb84d2f023d25b77", + "size": 867 + }, + "ION/05_context/signals/ATLAS_ALPINE_LINUX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ALPINE_LINUX_20260403.signal.md", + "sha256": "e4ab6e7b9bdf1894afe29744b1a1a14fdf305ee63c677f23849a25e6a314fafe", + "size": 1182 + }, + "ION/05_context/signals/ATLAS_AMD_ROCM_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_AMD_ROCM_20260403.signal.md", + "sha256": "7a2b7d528bc16becb1086a0a473fca54f4362b5c36a473d6e2224bc926105713", + "size": 883 + }, + "ION/05_context/signals/ATLAS_CDN_EDGE_20260410.signal.md": { + "path": "ION/05_context/signals/ATLAS_CDN_EDGE_20260410.signal.md", + "sha256": "e934ea31b0bcdb3e7e1c6e60bba0e68d705133f271dd91f56bb992f575088d02", + "size": 1037 + }, + "ION/05_context/signals/ATLAS_CDN_RISCV_20260411.signal.md": { + "path": "ION/05_context/signals/ATLAS_CDN_RISCV_20260411.signal.md", + "sha256": "8280ba2e2d6a29d7c3f8581c8d0dd714a673ff67d8931dd78d92c8ebe69a289a", + "size": 968 + }, + "ION/05_context/signals/ATLAS_CLANG_AND_K8S_SYSTEMD_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_CLANG_AND_K8S_SYSTEMD_20260412.signal.md", + "sha256": "fd8b6869d243184f7127ae0e013be4f089018bcff6d533601e02dc9135f2f084", + "size": 1134 + }, + "ION/05_context/signals/ATLAS_CLOUD_EDGE_20260409.signal.md": { + "path": "ION/05_context/signals/ATLAS_CLOUD_EDGE_20260409.signal.md", + "sha256": "cbdb1d486384b27d187a233826c5ffae77574133d1843e5dcd123487b14a7937", + "size": 1062 + }, + "ION/05_context/signals/ATLAS_CONTEXT_PLANES_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_CONTEXT_PLANES_20260412.signal.md", + "sha256": "759a466040c4ef3ce42ae7239e314f9c7bca6ed43ceb68d9a12922fb68158cea", + "size": 1728 + }, + "ION/05_context/signals/ATLAS_CRUN_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_CRUN_20260403.signal.md", + "sha256": "5789facb9176291b2302092f941801ca666cb943004ec266471186c94311ffba", + "size": 1122 + }, + "ION/05_context/signals/ATLAS_DATA_PLANE_20260404.signal.md": { + "path": "ION/05_context/signals/ATLAS_DATA_PLANE_20260404.signal.md", + "sha256": "be65c91952ac9415aaae17af91e38cc8d89a1fa467c135f5fa58d4c186613c39", + "size": 1006 + }, + "ION/05_context/signals/ATLAS_DEBIAN_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_DEBIAN_20260403.signal.md", + "sha256": "4ed9308671574c1d9a8b129cc6f3aa022ddb3cfdf7b4e3779b1f8700500bf915", + "size": 1419 + }, + "ION/05_context/signals/ATLAS_DEBUG_ADAPTER_PROTOCOL_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_DEBUG_ADAPTER_PROTOCOL_20260412.signal.md", + "sha256": "0f2058a7878ded7ef124595b44ca9885f63243bde80d24fbb98ad4d1bdb70595", + "size": 1232 + }, + "ION/05_context/signals/ATLAS_DIRECT3D_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_DIRECT3D_20260403.signal.md", + "sha256": "dd8416c28fffbae63aeb43ea9dda1cfe6d8e204b5bfc89e1c5eeb1d9b0019c80", + "size": 1084 + }, + "ION/05_context/signals/ATLAS_ELF_OBJECT_FORMAT_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_ELF_OBJECT_FORMAT_20260412.signal.md", + "sha256": "3862b727c8975af1a57b31bb7e9fe3ca5f66adf88208f7403905a05f07d2b5e0", + "size": 943 + }, + "ION/05_context/signals/ATLAS_FEDORA_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_FEDORA_20260403.signal.md", + "sha256": "993f1fcfb6444b966908020c391101f88289ba6c78c1f601867a964af5316830", + "size": 1367 + }, + "ION/05_context/signals/ATLAS_FORTRAN_C_COBOL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_FORTRAN_C_COBOL_20260403.signal.md", + "sha256": "23db62f2139c9b9a4f4ae461e418f75f86b66c85007862ce5884385ee1d730a6", + "size": 700 + }, + "ION/05_context/signals/ATLAS_GLIBC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_GLIBC_20260403.signal.md", + "sha256": "cc51a03353f68912e8d36eb3a40b31f3d9f6a6da5e78e765189093f243b37ff5", + "size": 1075 + }, + "ION/05_context/signals/ATLAS_GNU_BINUTILS_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_BINUTILS_20260412.signal.md", + "sha256": "6f608fe610f6cda5cbe13ce24dad359c5fcbd5beb58508fa19926d09eedec74c", + "size": 966 + }, + "ION/05_context/signals/ATLAS_GNU_GCC_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_GCC_20260412.signal.md", + "sha256": "d6d0af8f84d556f6d24ffa37e2bfe31e2bc5617ef05406ba2c6d49d3693fe39e", + "size": 854 + }, + "ION/05_context/signals/ATLAS_GNU_GDB_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_GDB_20260412.signal.md", + "sha256": "3b4a5d1da587d876b3e409910b4f24e60d8ff8672d17b29ca5ec4cf4d6a6a04f", + "size": 939 + }, + "ION/05_context/signals/ATLAS_GNU_LIBSTDCXX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_GNU_LIBSTDCXX_20260403.signal.md", + "sha256": "507d923ee7b85ee8de38a4930ea7048e73fdc2ab7614b64ab5d6edb999437e26", + "size": 1168 + }, + "ION/05_context/signals/ATLAS_INGRESS_BLS_20260406.signal.md": { + "path": "ION/05_context/signals/ATLAS_INGRESS_BLS_20260406.signal.md", + "sha256": "de210668e610db000eb77191fea9192b52a6c43a70d7a3ade736c7c80a28432d", + "size": 922 + }, + "ION/05_context/signals/ATLAS_INGRESS_TEE_20260407.signal.md": { + "path": "ION/05_context/signals/ATLAS_INGRESS_TEE_20260407.signal.md", + "sha256": "69b0800ef79fe04bb64133aa5acbaec0394d2177177841ce251d197b6cd8753c", + "size": 1118 + }, + "ION/05_context/signals/ATLAS_ISO_CATALOG_PRIMARIES_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ISO_CATALOG_PRIMARIES_20260403.signal.md", + "sha256": "dd3590a0c9a42d559bf987a32af15423f7802bed6c2f40cfcd6d1bb60755c374", + "size": 830 + }, + "ION/05_context/signals/ATLAS_JVM_ECMA335_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_JVM_ECMA335_20260403.signal.md", + "sha256": "8fa477226f0e2f022ca978a21f7ed846c0417c3ce69d460c21c7d41b19e9227c", + "size": 887 + }, + "ION/05_context/signals/ATLAS_LANGUAGES_PLAN9_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LANGUAGES_PLAN9_20260403.signal.md", + "sha256": "ce57f292d26b4df13d0e121671222346d30235adac286688eb6037b88ec48880", + "size": 923 + }, + "ION/05_context/signals/ATLAS_LEVEL_ZERO_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LEVEL_ZERO_20260403.signal.md", + "sha256": "e24e6209b5456f00bbcb9f72717791af614cc819312d6170188a7c09b2676dbd", + "size": 1085 + }, + "ION/05_context/signals/ATLAS_LLDB_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLDB_20260412.signal.md", + "sha256": "83a0a0e0cf548a1ff6830c20cacc61fe685ef22ed6dafc402e6cbfaa60417984", + "size": 1003 + }, + "ION/05_context/signals/ATLAS_LLVM_DWARF_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_DWARF_20260403.signal.md", + "sha256": "0ddea204730d95e64ee8b53bf00bf67786d14d5be565f66a858ea602eaeb18e5", + "size": 817 + }, + "ION/05_context/signals/ATLAS_LLVM_LIBCXXABI_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_LIBCXXABI_20260403.signal.md", + "sha256": "cbf8ba4bcddd4294c74238e7d7168db75b4dffa1cbc80800118600b79719348d", + "size": 1226 + }, + "ION/05_context/signals/ATLAS_LLVM_LIBCXX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_LIBCXX_20260403.signal.md", + "sha256": "69b0a7ded6ceb6dd6272bc8f9a07c6c8e2d1ce8fbca0de2339bd24dba174d728", + "size": 1243 + }, + "ION/05_context/signals/ATLAS_LLVM_LLD_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_LLVM_LLD_20260412.signal.md", + "sha256": "11ec72477cc24c88cdb17291013e7d386239ad760b6d6ad2cd97b4431e0e4506", + "size": 1107 + }, + "ION/05_context/signals/ATLAS_MESH_BOOT_UKI_20260405.signal.md": { + "path": "ION/05_context/signals/ATLAS_MESH_BOOT_UKI_20260405.signal.md", + "sha256": "71ad6249ee0952f4bb5c4cfb5182c822ec3b7fc431fb4d128a612bc6bf777b21", + "size": 1086 + }, + "ION/05_context/signals/ATLAS_METAL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_METAL_20260403.signal.md", + "sha256": "edec09416990a4a953837df225a6bfbf6a54c057cf03bc2178b8d5afed406fc0", + "size": 981 + }, + "ION/05_context/signals/ATLAS_MUSL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_MUSL_20260403.signal.md", + "sha256": "da161306f54baad84972e365037ba7beae59d37847be052829417b4ef8c06478", + "size": 1168 + }, + "ION/05_context/signals/ATLAS_NGINX_ARM_SYSTEMD_20260408.signal.md": { + "path": "ION/05_context/signals/ATLAS_NGINX_ARM_SYSTEMD_20260408.signal.md", + "sha256": "84c7eed13e4d28b4cf8801a906265d5b9c3f321d948ebcd5bbf9f7a923679f2d", + "size": 1121 + }, + "ION/05_context/signals/ATLAS_NVIDIA_CUDA_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_NVIDIA_CUDA_20260403.signal.md", + "sha256": "c98eb0baed99956d407e1a2f4000fb6ee5213c1316588742bc4516383d044694", + "size": 1109 + }, + "ION/05_context/signals/ATLAS_OCI_DISTRIBUTION_SPEC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OCI_DISTRIBUTION_SPEC_20260403.signal.md", + "sha256": "18511c149faa1c030312cf1337dc02a7731dd449f74a34998f4db73bd5e3a7dd", + "size": 1229 + }, + "ION/05_context/signals/ATLAS_OCI_IMAGE_SPEC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OCI_IMAGE_SPEC_20260403.signal.md", + "sha256": "2c5309a3c6ae42aa149252564473ca58915e1c86be8091c13b363537b30ceb95", + "size": 1249 + }, + "ION/05_context/signals/ATLAS_OCI_RUNTIME_SPEC_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OCI_RUNTIME_SPEC_20260403.signal.md", + "sha256": "cb9cc99b6b41665b1837778c680bd22a1d770b48bbabc7d33ca693091644c4a7", + "size": 1397 + }, + "ION/05_context/signals/ATLAS_OPENCL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OPENCL_20260403.signal.md", + "sha256": "c8d2034f729c6ecde6972872dcefe08e512051bcaffd05c899150ed014d8767a", + "size": 838 + }, + "ION/05_context/signals/ATLAS_OPENGL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OPENGL_20260403.signal.md", + "sha256": "a084cea24e7218c1272a0f6872481e1fa550fa11c2ca2415d8f914b043b45dea", + "size": 982 + }, + "ION/05_context/signals/ATLAS_OPENGL_ES_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_OPENGL_ES_20260403.signal.md", + "sha256": "28288ccc496755fb9ece86b6054b3da50dbf8531005971dab949f87daeeb6925", + "size": 1032 + }, + "ION/05_context/signals/ATLAS_ORIENTATION_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ORIENTATION_20260403.signal.md", + "sha256": "c311bc8e6a09cbc7ac7728b1e72a95ee2bca54eb0317cffdfc83d34dd8240679", + "size": 1077 + }, + "ION/05_context/signals/ATLAS_RHEL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_RHEL_20260403.signal.md", + "sha256": "428931cbd263a6d2a5fb7a3885d0485da39d9912cb00dd61cee4d245141c3b3f", + "size": 1460 + }, + "ION/05_context/signals/ATLAS_ROCKY_ALMALINUX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_ROCKY_ALMALINUX_20260403.signal.md", + "sha256": "453200c6af8909ba6cef118a64abcbf0884c4ba3c771e9334bb7073f2203386d", + "size": 1496 + }, + "ION/05_context/signals/ATLAS_RUST_ADA_GOLANG_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_RUST_ADA_GOLANG_20260403.signal.md", + "sha256": "775dbf9f3b73582032d16bbff15938e216da19e3a2a772507e9cae64f6c2232c", + "size": 1031 + }, + "ION/05_context/signals/ATLAS_SPIRV_PTX_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SPIRV_PTX_20260403.signal.md", + "sha256": "f004b033cdea3299e24df03f9dbb98794e937afad52bb179cabd7431d01d1741", + "size": 788 + }, + "ION/05_context/signals/ATLAS_SYCL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYCL_20260403.signal.md", + "sha256": "ffbad177816becb01263c40a5657c9fe31beeaff12903921d7b79cd31dd0a679", + "size": 1022 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_CONFEXT_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_CONFEXT_20260403.signal.md", + "sha256": "8467012d02b7cc8fea0a8c5ca3024c354c91d52994adb770e36686addaea1469", + "size": 1310 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_PORTABLE_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_PORTABLE_20260412.signal.md", + "sha256": "f83bf47b3c2ac7853f57cfc05918b643c176ae611b2359f9230e3afc13c2b2e4", + "size": 1060 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_SYSEXT_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_SYSEXT_20260403.signal.md", + "sha256": "b471dfa9f448dd4a680dc460ab9799576fafcd6f5d4ae92fb2065cbe6f9656fc", + "size": 1244 + }, + "ION/05_context/signals/ATLAS_SYSTEMD_UNIT_MODEL_20260412.signal.md": { + "path": "ION/05_context/signals/ATLAS_SYSTEMD_UNIT_MODEL_20260412.signal.md", + "sha256": "738d159d7ba2a0f3ab1a32086162f8e4a9a7024c5b8a883e931b732ca380e87b", + "size": 1040 + }, + "ION/05_context/signals/ATLAS_UBUNTU_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_UBUNTU_20260403.signal.md", + "sha256": "f078060f13c9730b1c15a7ff93320dbd3d3961f55c08c5d2c914a2fedd20d43e", + "size": 1539 + }, + "ION/05_context/signals/ATLAS_VULKAN_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_VULKAN_20260403.signal.md", + "sha256": "1962cc8b2f4d39a0ef5fdded901b8bae8473fd12b3c0da08ab6764aee9c800e0", + "size": 899 + }, + "ION/05_context/signals/ATLAS_WASI_COMPONENT_MODEL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WASI_COMPONENT_MODEL_20260403.signal.md", + "sha256": "6f77fd143178358e1f51586fee6b786a1e5921a0f176ebd6b09db96e75d99e79", + "size": 1026 + }, + "ION/05_context/signals/ATLAS_WEBASSEMBLY_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WEBASSEMBLY_20260403.signal.md", + "sha256": "f17c1e40391305cad598f49ce9d985e3b6912735830b5f71603841cc2ad4c2ee", + "size": 680 + }, + "ION/05_context/signals/ATLAS_WEBGL_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WEBGL_20260403.signal.md", + "sha256": "d5a7ade293f2786e2cfcebc8a3dc20cf816de6d5f170a361bb162e7631917fbe", + "size": 989 + }, + "ION/05_context/signals/ATLAS_WEBGPU_20260403.signal.md": { + "path": "ION/05_context/signals/ATLAS_WEBGPU_20260403.signal.md", + "sha256": "f2be45267dbcdc9bb5a0465dec2451ec9e5babc897298f2e6b754c483efad891", + "size": 1002 + }, + "ION/05_context/signals/CARRIER_LEVEL_DECISION.example.json": { + "path": "ION/05_context/signals/CARRIER_LEVEL_DECISION.example.json", + "sha256": "9e7a300f3237d679640379141d0b3eadc4d049ebb8dee9886d6839c856a69d4f", + "size": 543 + }, + "ION/05_context/signals/CODEX_AGENT_REASONING_PROTOCOL_FIRST_PASS_20260405T1015.signal.md": { + "path": "ION/05_context/signals/CODEX_AGENT_REASONING_PROTOCOL_FIRST_PASS_20260405T1015.signal.md", + "sha256": "43460cb0ad6ef7d2bbb54228be7a4c136eb625e73144c3205e1b37b41c35fbb8", + "size": 689 + }, + "ION/05_context/signals/CODEX_BOOT_LANE_FORMALIZED_20260403T1329.signal.md": { + "path": "ION/05_context/signals/CODEX_BOOT_LANE_FORMALIZED_20260403T1329.signal.md", + "sha256": "d96a9168cb0b1969f25470040bb2c08b5d8844c9d7816f3e452169f676a028db", + "size": 900 + }, + "ION/05_context/signals/CODEX_BRANCH_PARALLEL_SCENARIO_PROOF_20260411T203127.signal.md": { + "path": "ION/05_context/signals/CODEX_BRANCH_PARALLEL_SCENARIO_PROOF_20260411T203127.signal.md", + "sha256": "95636fba9a1309bcca312cdf998eaa0984d53ebf532c56c62052892429e94015", + "size": 1007 + }, + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_AGENT_ONBOARDING_20260412T125519.signal.md": { + "path": "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_AGENT_ONBOARDING_20260412T125519.signal.md", + "sha256": "50647d9aab87f44935ad53c96c34dafba7d6fd2c804b80835d0bf5b8dd4bf717", + "size": 1113 + }, + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_CLARIFICATION_20260412T142448.signal.md": { + "path": "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_CLARIFICATION_20260412T142448.signal.md", + "sha256": "340fd76d43dcbcdf92ab4fb2c838f83c86024bdcca00c4cefa2ab7b5eee9d12a", + "size": 943 + }, + "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_PROPOSAL_20260412T131830.signal.md": { + "path": "ION/05_context/signals/CODEX_BRIDGE_PACKET_STATUS_PROPOSAL_20260412T131830.signal.md", + "sha256": "80f4c432ae99afda983f687220724cfb2dee25b1251397eaf9353dea1458c354", + "size": 933 + }, + "ION/05_context/signals/CODEX_CAPSULE_PROTOCOL_WEB_MAP_20260403T1225.signal.md": { + "path": "ION/05_context/signals/CODEX_CAPSULE_PROTOCOL_WEB_MAP_20260403T1225.signal.md", + "sha256": "bf25fd0995df949ff2d92ed46768744dffc568572ac61295937a3ae8956bbdc5", + "size": 1153 + }, + "ION/05_context/signals/CODEX_CONTEXT_COMPILER_FIRST_PASS_20260403T1855.signal.md": { + "path": "ION/05_context/signals/CODEX_CONTEXT_COMPILER_FIRST_PASS_20260403T1855.signal.md", + "sha256": "b0cba30adc37607c239513044aea5aac0daad1db6422c65b97472eee62251a4b", + "size": 629 + }, + "ION/05_context/signals/CODEX_CONTINUITY_LAW_AND_PROOF_LOOP_20260403T1228.signal.md": { + "path": "ION/05_context/signals/CODEX_CONTINUITY_LAW_AND_PROOF_LOOP_20260403T1228.signal.md", + "sha256": "5a7653772e68d5eae9aef15f71ae2a02b84aa7048a0a33e2670d5e483f4bb77d", + "size": 1207 + }, + "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFICATION_ASSESSMENT_20260412T151315.signal.md": { + "path": "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFICATION_ASSESSMENT_20260412T151315.signal.md", + "sha256": "08e567991506a973bc6ef95d4a3f94dedf34a56c48a5038daaaf9c6c3c2fcdf3", + "size": 906 + }, + "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFIED_20260412T152659.signal.md": { + "path": "ION/05_context/signals/CODEX_CURRENT_GENERATION_RATIFIED_20260412T152659.signal.md", + "sha256": "dedf6cb7cbd688cfca9952d4c43678ef80e9eba4235facab5eabf105c82600ea", + "size": 934 + }, + "ION/05_context/signals/CODEX_DOCTRINE_FLOOR_20260403T1626.signal.md": { + "path": "ION/05_context/signals/CODEX_DOCTRINE_FLOOR_20260403T1626.signal.md", + "sha256": "ba003b27b353aedd116ff18dd634f1a687d79336b70c461a7cfc07c36d5f1f66", + "size": 689 + }, + "ION/05_context/signals/CODEX_EDGE_ROLE_BOOTS_NORMALIZED_20260403T1633.signal.md": { + "path": "ION/05_context/signals/CODEX_EDGE_ROLE_BOOTS_NORMALIZED_20260403T1633.signal.md", + "sha256": "fe990c3a629fe99ffb7dc764b6ee45361d510cc85cd660aa411c3cbfcfebe6bc", + "size": 681 + }, + "ION/05_context/signals/CODEX_EXTERNAL_API_PARITY_SCENARIO_PROOF_20260411T205820.signal.md": { + "path": "ION/05_context/signals/CODEX_EXTERNAL_API_PARITY_SCENARIO_PROOF_20260411T205820.signal.md", + "sha256": "73fcecadc1151c6188223f7f2a0079cd957d87d76783d563b536c63e092f9cd0", + "size": 1067 + }, + "ION/05_context/signals/CODEX_EXTERNAL_CANONICALIZATION_MEMO_RESPONSE_20260403T2029.signal.md": { + "path": "ION/05_context/signals/CODEX_EXTERNAL_CANONICALIZATION_MEMO_RESPONSE_20260403T2029.signal.md", + "sha256": "80ce56596c07487bcbd238ef9a7c3c303cc4d8221d4702546a556bb93c177c04", + "size": 1028 + }, + "ION/05_context/signals/CODEX_EXTERNAL_GROUNDING_20260403T1214.signal.md": { + "path": "ION/05_context/signals/CODEX_EXTERNAL_GROUNDING_20260403T1214.signal.md", + "sha256": "76e6b6154051bf177cafc8cca7976716d1130b6e4e72adb4d7c21b6ea0f37b22", + "size": 1175 + }, + "ION/05_context/signals/CODEX_GOVERNANCE_PACKET_PILOT_20260403T1754.signal.md": { + "path": "ION/05_context/signals/CODEX_GOVERNANCE_PACKET_PILOT_20260403T1754.signal.md", + "sha256": "5518f5e69483943676e1f9e229cbfcbd80168179774841fbf8761161730c8333", + "size": 619 + }, + "ION/05_context/signals/CODEX_HORIZON_REFINEMENT_SCENARIO_PROOF_20260411T204349.signal.md": { + "path": "ION/05_context/signals/CODEX_HORIZON_REFINEMENT_SCENARIO_PROOF_20260411T204349.signal.md", + "sha256": "16e4c0b0626ed1742b45a8c5e6124c1297fa593a671a87ad9102f4ce026074c9", + "size": 1079 + }, + "ION/05_context/signals/CODEX_INBOX_NORMALIZED_20260403T1750.signal.md": { + "path": "ION/05_context/signals/CODEX_INBOX_NORMALIZED_20260403T1750.signal.md", + "sha256": "0ecddfd943a5ea04575b997dba515d9bbc36735a2c7bffa81ece8973fcbe998f", + "size": 605 + }, + "ION/05_context/signals/CODEX_ION_ACCEPTANCE_EVIDENCE_BUNDLE_20260412T150950.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_ACCEPTANCE_EVIDENCE_BUNDLE_20260412T150950.signal.md", + "sha256": "6c4450357039ec6a2530c64ad6e8887630bb46995d5779497853dee3fe139d14", + "size": 1268 + }, + "ION/05_context/signals/CODEX_ION_ACTIVE_COMMITMENT_LEDGER_20260411T200339.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_ACTIVE_COMMITMENT_LEDGER_20260411T200339.signal.md", + "sha256": "b0fea3a87cc0db594b36ff21f449c5df1b05854131e522f41427b2407f2bf59a", + "size": 1173 + }, + "ION/05_context/signals/CODEX_ION_CENTERING_RESPONSE_20260403T1253.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_CENTERING_RESPONSE_20260403T1253.signal.md", + "sha256": "62e2952d4bc58923981bf84bbc2c605aa77d8aa2ca5861dc3061799444ad1cb2", + "size": 1242 + }, + "ION/05_context/signals/CODEX_ION_DESTINATION_HORIZON_STRATIFICATION_20260411T103346.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_DESTINATION_HORIZON_STRATIFICATION_20260411T103346.signal.md", + "sha256": "5f7e1ad1c1c33c5f122042522fbaca9e8c49cb5bb222cd618e8c915a6acd5f3c", + "size": 1112 + }, + "ION/05_context/signals/CODEX_ION_KERNEL_CONSTITUTION_SELF_USE_ALIGNMENT_20260410T1545.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_KERNEL_CONSTITUTION_SELF_USE_ALIGNMENT_20260410T1545.signal.md", + "sha256": "944589a3093dc089b4479f4a8d5a384cd792fd8577046f22145c447be943db92", + "size": 798 + }, + "ION/05_context/signals/CODEX_ION_LAYERED_IDENTITY_STRATIFICATION_20260411T102929.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_LAYERED_IDENTITY_STRATIFICATION_20260411T102929.signal.md", + "sha256": "2179166a779e079d205168aee18feb14038125c296437b7927629bbfe79e9481", + "size": 1143 + }, + "ION/05_context/signals/CODEX_ION_ORIGIN_PHASE_ROOT_STRATIFICATION_20260411T103145.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_ORIGIN_PHASE_ROOT_STRATIFICATION_20260411T103145.signal.md", + "sha256": "83d91463431f8bef6be4410b39d7749ccdbd5929ce8032506c8b1998f3cadb56", + "size": 1095 + }, + "ION/05_context/signals/CODEX_ION_RECOVERY_INDEX_20260411T103541.signal.md": { + "path": "ION/05_context/signals/CODEX_ION_RECOVERY_INDEX_20260411T103541.signal.md", + "sha256": "6f7b718863435be369ab17dfe5b4a1adc6c3ea362d4c96a07d19ed87d2f7912a", + "size": 1135 + }, + "ION/05_context/signals/CODEX_KERNEL_ANSWER_RECORD_AND_PLANNER_MANIFEST_RUNTIME_FIRST_PASS_20260404T1235.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_ANSWER_RECORD_AND_PLANNER_MANIFEST_RUNTIME_FIRST_PASS_20260404T1235.signal.md", + "sha256": "3e71076a122c94d13d04135bb54003f572fb43a989ae0f63a3ab00ed0a71eae6", + "size": 1272 + }, + "ION/05_context/signals/CODEX_KERNEL_CHILD_WORK_ISSUANCE_FIRST_PASS_20260403T2139.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_CHILD_WORK_ISSUANCE_FIRST_PASS_20260403T2139.signal.md", + "sha256": "3952f5dde7d9d34c436f29328e53f58cae4c5e8ec3cf9e49b27414c1cab3508c", + "size": 946 + }, + "ION/05_context/signals/CODEX_KERNEL_COMMIT_FIRST_PASS_20260403T2103.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_COMMIT_FIRST_PASS_20260403T2103.signal.md", + "sha256": "73fcf887ef785c3ca30f542a8d100e0c2267bd2555996327628bd94c2f18b3e0", + "size": 878 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_ACT_ONCE_FIRST_PASS_20260403T2155.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_ACT_ONCE_FIRST_PASS_20260403T2155.signal.md", + "sha256": "74b0809ec3f1f22d194843019f3878b273645db5797c1dd889008e9e80064a52", + "size": 962 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_ARBITER_FIRST_PASS_20260403T2149.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_ARBITER_FIRST_PASS_20260403T2149.signal.md", + "sha256": "9704e0c342d06b7b8100d9fcf164ee48b9d358033c111d608e242c527f67bbcb", + "size": 934 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_LOOP_FIRST_PASS_20260403T2221.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_LOOP_FIRST_PASS_20260403T2221.signal.md", + "sha256": "aaac602886049d43d515c695bf5f579fcb933a3856f4a79d75dfc1c56116c4b5", + "size": 838 + }, + "ION/05_context/signals/CODEX_KERNEL_DAEMON_SIGNAL_CONSUMPTION_FIRST_PASS_20260403T2214.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DAEMON_SIGNAL_CONSUMPTION_FIRST_PASS_20260403T2214.signal.md", + "sha256": "be07826cb139e65fe63d86459750ab15ba18d126031812824058172c61334516", + "size": 974 + }, + "ION/05_context/signals/CODEX_KERNEL_DISPATCH_FIRST_PASS_20260403T2011.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_DISPATCH_FIRST_PASS_20260403T2011.signal.md", + "sha256": "c9b4c0fab9e8220ed209380ca6ec32e4ac69a363808a34fd63361ec8d6765977", + "size": 836 + }, + "ION/05_context/signals/CODEX_KERNEL_EXECUTION_FIRST_PASS_20260403T2043.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_EXECUTION_FIRST_PASS_20260403T2043.signal.md", + "sha256": "388dbb8b482af3cbb8a5b3ad798bc84c087899f867397543850c5564d837487f", + "size": 871 + }, + "ION/05_context/signals/CODEX_KERNEL_GRAPH_FIRST_PASS_20260403T1840.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_GRAPH_FIRST_PASS_20260403T1840.signal.md", + "sha256": "90ae2a6e1f16d7f33a3d6a7951e58440947d86315251441727f2629ca7c46047", + "size": 594 + }, + "ION/05_context/signals/CODEX_KERNEL_INDEX_FIRST_PASS_20260403T1827.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_INDEX_FIRST_PASS_20260403T1827.signal.md", + "sha256": "b78dedeee1c3534993536aa89e87241b6b9491c7c4668d6b80ec155283c6d7e0", + "size": 594 + }, + "ION/05_context/signals/CODEX_KERNEL_LOOP_RECEIPTS_TELEMETRY_FIRST_PASS_20260404T0920.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_LOOP_RECEIPTS_TELEMETRY_FIRST_PASS_20260404T0920.signal.md", + "sha256": "2120643aba6683106a89411f29c617398a141da3d5a7c2a3f8ccd86a6ede4e72", + "size": 872 + }, + "ION/05_context/signals/CODEX_KERNEL_MODEL_FIRST_PASS_20260403T1759.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_MODEL_FIRST_PASS_20260403T1759.signal.md", + "sha256": "3438931f5852205711db119441858a3a260793301ba4d17ba9a19c472eb5bbb5", + "size": 619 + }, + "ION/05_context/signals/CODEX_KERNEL_OPEN_QUESTION_ROUTING_FIRST_PASS_20260403T2113.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_OPEN_QUESTION_ROUTING_FIRST_PASS_20260403T2113.signal.md", + "sha256": "2a4b370b1d39eefba2c2c7edf43729c90bd592f81c0537dda634ab7cdc484cfe", + "size": 920 + }, + "ION/05_context/signals/CODEX_KERNEL_QUESTION_ANSWER_AND_PLANNER_GATE_FIRST_PASS_20260404T1155.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUESTION_ANSWER_AND_PLANNER_GATE_FIRST_PASS_20260404T1155.signal.md", + "sha256": "a4d210c64d56d78e017bb5ea10dd5a2b5229411a886c8f4a361986cb9420edc6", + "size": 1242 + }, + "ION/05_context/signals/CODEX_KERNEL_QUEUE_PROJECTION_AND_PLANNER_HOUSEKEEPING_FIRST_PASS_20260404T1445.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUEUE_PROJECTION_AND_PLANNER_HOUSEKEEPING_FIRST_PASS_20260404T1445.signal.md", + "sha256": "fee2646e289c576d362ff212711693106148dcccd2b9cd8b407ba4c46db441e9", + "size": 1453 + }, + "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_AND_PLANNER_SWEEP_FIRST_PASS_20260404T1605.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_AND_PLANNER_SWEEP_FIRST_PASS_20260404T1605.signal.md", + "sha256": "52513a100d2d0374e618dac6697b4a285a33f8d62985e17c9d1f3096391b7997", + "size": 1387 + }, + "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_RECEIPTS_AND_SWEEP_AGGREGATION_FIRST_PASS_20260404T1725.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_QUEUE_REFRESH_RECEIPTS_AND_SWEEP_AGGREGATION_FIRST_PASS_20260404T1725.signal.md", + "sha256": "8612c3e780b24ec276b614ec58d25c6d2739ef83175708ff14173d39e4781673", + "size": 623 + }, + "ION/05_context/signals/CODEX_KERNEL_REVIEWER_QUEUE_AND_PLANNER_LIFECYCLE_FIRST_PASS_20260404T1335.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_REVIEWER_QUEUE_AND_PLANNER_LIFECYCLE_FIRST_PASS_20260404T1335.signal.md", + "sha256": "17b5cdf4d5a0c0216107e27f0b621bc4a47c85e6d8798d44e3a0fbdc70d81445", + "size": 1333 + }, + "ION/05_context/signals/CODEX_KERNEL_REVIEW_ESCALATION_FIRST_PASS_20260403T2251.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_REVIEW_ESCALATION_FIRST_PASS_20260403T2251.signal.md", + "sha256": "4a5f9a32cb46b843e06cebce85eeab16626cf71c632177982c6eaf92b863c750", + "size": 848 + }, + "ION/05_context/signals/CODEX_KERNEL_REVIEW_FOLLOWUP_RESOLUTION_FIRST_PASS_20260404T1015.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_REVIEW_FOLLOWUP_RESOLUTION_FIRST_PASS_20260404T1015.signal.md", + "sha256": "3341b758b5133fef4840786369ab11b57f441cac2c949387926ab59d7a8ebb77", + "size": 1186 + }, + "ION/05_context/signals/CODEX_KERNEL_ROUTER_TRANSITION_20260403T1548.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_ROUTER_TRANSITION_20260403T1548.signal.md", + "sha256": "d3fc98bfd17f087d6ab41b9e513f2d151e41b2872fdf8382febfec5bfdf06819", + "size": 908 + }, + "ION/05_context/signals/CODEX_KERNEL_SCHEDULER_FIRST_PASS_20260403T1948.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SCHEDULER_FIRST_PASS_20260403T1948.signal.md", + "sha256": "25c1b849f7e90daed6a94abc79c8cddfdcb4892a36f5d5fd260a3445630db1f3", + "size": 805 + }, + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_CONSUMPTION_ARCHIVE_FIRST_PASS_20260403T2127.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SIGNAL_CONSUMPTION_ARCHIVE_FIRST_PASS_20260403T2127.signal.md", + "sha256": "42e786e3c66ea61385f4ba878058abd4602d7758fe292419043af08ae1e6a9b7", + "size": 896 + }, + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_FOLLOWUP_AUTOMATION_FIRST_PASS_20260403T2320.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SIGNAL_FOLLOWUP_AUTOMATION_FIRST_PASS_20260403T2320.signal.md", + "sha256": "c438401ec232bfbff15e338288ba0aca7c196896350ba8ff7c6cc652cb6156e7", + "size": 938 + }, + "ION/05_context/signals/CODEX_KERNEL_SIGNAL_INTERPRETATION_EXPIRY_FIRST_PASS_20260403T2206.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_SIGNAL_INTERPRETATION_EXPIRY_FIRST_PASS_20260403T2206.signal.md", + "sha256": "4c84c0438744293189bdd34e73413dfed353eca7eb7022c8dad4c2f786dbd9b4", + "size": 970 + }, + "ION/05_context/signals/CODEX_KERNEL_STORE_FIRST_PASS_20260403T1814.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_STORE_FIRST_PASS_20260403T1814.signal.md", + "sha256": "7b9aba0262facc3a86b6284b1c0a58096c0bf02da14637eb3a6ff4ecaa5c0994", + "size": 586 + }, + "ION/05_context/signals/CODEX_KERNEL_VALIDATION_FIRST_PASS_20260403T2052.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_VALIDATION_FIRST_PASS_20260403T2052.signal.md", + "sha256": "1a408b055f0b9e02d68cd506b5e98a21312cb273c67f2aa7ae45049f77a201c0", + "size": 880 + }, + "ION/05_context/signals/CODEX_KERNEL_VALIDATION_RECEIPT_SIGNAL_FIRST_PASS_20260403T2120.signal.md": { + "path": "ION/05_context/signals/CODEX_KERNEL_VALIDATION_RECEIPT_SIGNAL_FIRST_PASS_20260403T2120.signal.md", + "sha256": "c2ca0ed34b48d6a3ebb01f52b06caf50cf82dc38e617abbc12bd3c1287878e6d", + "size": 921 + }, + "ION/05_context/signals/CODEX_LANE_NATIVE_SUPPORT_FIELD_STAGING_20260412T165740.signal.md": { + "path": "ION/05_context/signals/CODEX_LANE_NATIVE_SUPPORT_FIELD_STAGING_20260412T165740.signal.md", + "sha256": "a5f0f30af0ce44b50811fd0c03da4270d3f9081a7fe19e3aa5ecb2180d1284be", + "size": 1068 + }, + "ION/05_context/signals/CODEX_LIVE_KERNEL_STATUS_PILOT_20260403T1745.signal.md": { + "path": "ION/05_context/signals/CODEX_LIVE_KERNEL_STATUS_PILOT_20260403T1745.signal.md", + "sha256": "c80f594a5322dc414a28b67f3a47cc88319dde798487d9f08e8d9daa2b2f3aad", + "size": 660 + }, + "ION/05_context/signals/CODEX_M16_ENTRY_CHAIN_RECOVERY_20260411T095033.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_ENTRY_CHAIN_RECOVERY_20260411T095033.signal.md", + "sha256": "5bbf8e12b4a59dd3d8d929be1c79c84b6a0d20d7000c5d98501921b197d1fa7d", + "size": 1016 + }, + "ION/05_context/signals/CODEX_M16_EXECUTION_PRIORITY_CARD_20260411T200529.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_EXECUTION_PRIORITY_CARD_20260411T200529.signal.md", + "sha256": "f85cd4963fb3dcab584f08d811a4efff88a7ca48963ab610afd3675bb1b6a992", + "size": 1073 + }, + "ION/05_context/signals/CODEX_M16_SECOND_PASS_IDENTITY_ROUTE_20260411T102558.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_SECOND_PASS_IDENTITY_ROUTE_20260411T102558.signal.md", + "sha256": "afe866958fb05771cf0c78464fb93500162cdfbceebda3301214960023410f1e", + "size": 1300 + }, + "ION/05_context/signals/CODEX_M16_STARTUP_PACKET_20260411T102003.signal.md": { + "path": "ION/05_context/signals/CODEX_M16_STARTUP_PACKET_20260411T102003.signal.md", + "sha256": "ced35bcde314c3205824bcc236261c98a5ca340669ca52819559a548abd9a91d", + "size": 1164 + }, + "ION/05_context/signals/CODEX_M17_EXECUTOR_START_PACKET_LANDED_20260411T202006.signal.md": { + "path": "ION/05_context/signals/CODEX_M17_EXECUTOR_START_PACKET_LANDED_20260411T202006.signal.md", + "sha256": "e07752432b5ad52edeec479f927774a250a4c76efb2b56287b4d891e95fe2fb1", + "size": 1161 + }, + "ION/05_context/signals/CODEX_M17_PROOF_HARDENING_20260411T202533.signal.md": { + "path": "ION/05_context/signals/CODEX_M17_PROOF_HARDENING_20260411T202533.signal.md", + "sha256": "5cde987cff666c83d0e6c8be05ba0983fb6437147483e19556748328407e0d87", + "size": 946 + }, + "ION/05_context/signals/CODEX_MASON_PACKAGING_HARDENING_ONBOARDING_20260412T151504.signal.md": { + "path": "ION/05_context/signals/CODEX_MASON_PACKAGING_HARDENING_ONBOARDING_20260412T151504.signal.md", + "sha256": "c714f10952d45cd998851166c35684850643959001de555cd2c12d933a79c8af", + "size": 942 + }, + "ION/05_context/signals/CODEX_MINIMAL_TEMPLATE_STACK_20260403T1551.signal.md": { + "path": "ION/05_context/signals/CODEX_MINIMAL_TEMPLATE_STACK_20260403T1551.signal.md", + "sha256": "d28510e9775eac09d539345071575964105542b8ada4c6519e922471d9496a0f", + "size": 886 + }, + "ION/05_context/signals/CODEX_MISSING_ASSESSMENTS_COMPLETED_20260403T1543.signal.md": { + "path": "ION/05_context/signals/CODEX_MISSING_ASSESSMENTS_COMPLETED_20260403T1543.signal.md", + "sha256": "892af8d1fde0a3da42e87580d1ed83a7e990bd473ffaa138ffc2c416332b09d5", + "size": 958 + }, + "ION/05_context/signals/CODEX_OFFICIAL_LEAD_TOPOLOGY_20260403T1857.signal.md": { + "path": "ION/05_context/signals/CODEX_OFFICIAL_LEAD_TOPOLOGY_20260403T1857.signal.md", + "sha256": "29de83abc3b70ee32dadc4c77cd8939d98149e1ab603c11a2515f26d036e09e8", + "size": 1123 + }, + "ION/05_context/signals/CODEX_OPERATOR_SURFACES_RECONCILED_20260403T1633.signal.md": { + "path": "ION/05_context/signals/CODEX_OPERATOR_SURFACES_RECONCILED_20260403T1633.signal.md", + "sha256": "71b62fe6e95451a900f5a381d5474ec312b1e14940f67324c72487acc1cf6330", + "size": 660 + }, + "ION/05_context/signals/CODEX_ORCHESTRATION_BLUEPRINT_PACKAGE_20260403T1925.signal.md": { + "path": "ION/05_context/signals/CODEX_ORCHESTRATION_BLUEPRINT_PACKAGE_20260403T1925.signal.md", + "sha256": "4664c3040e1152f3f3f1e804b0eb3a3b605b18b0bc2516f8bb054ce962a03e11", + "size": 811 + }, + "ION/05_context/signals/CODEX_PHASE1_BRIDGE_TRIPLES_LANDED_20260412T112636.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_BRIDGE_TRIPLES_LANDED_20260412T112636.signal.md", + "sha256": "b134d02901d60f439d660b56f3c872d07482e64876e4949cf69ee63167f3291e", + "size": 1189 + }, + "ION/05_context/signals/CODEX_PHASE1_BROWSER_EXTERNAL_RETURN_DRILL_20260412T114946.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_BROWSER_EXTERNAL_RETURN_DRILL_20260412T114946.signal.md", + "sha256": "aa08190af40904e2994cdc53de90716f0c8b9834956a00889dc6971b39204bb1", + "size": 1044 + }, + "ION/05_context/signals/CODEX_PHASE1_DISAGREEMENT_DRILL_20260412T114401.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_DISAGREEMENT_DRILL_20260412T114401.signal.md", + "sha256": "5219c1748a7400c2d753a5417ee753d81eec1074a91a9729a76d3a923cf38db2", + "size": 1151 + }, + "ION/05_context/signals/CODEX_PHASE1_MOUNT_PROOF_20260412T112636.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_MOUNT_PROOF_20260412T112636.signal.md", + "sha256": "cde3be919c0774a43dfa530b7574a31b7326c71b8045df7cc26646b383b27238", + "size": 1156 + }, + "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_CLOSEOUT_20260412T115522.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_CLOSEOUT_20260412T115522.signal.md", + "sha256": "6b542d588aaddbe5b14b2c74fba24dcbb18a9c296ef101b68d35ba8d2591be31", + "size": 987 + }, + "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_PLAN_20260412T110212.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE1_TEMPLATE_GOVERNANCE_PLAN_20260412T110212.signal.md", + "sha256": "7010d25d7f6931eecbd576605686f87d4f00f890b64dce05dc51ad9104929bb7", + "size": 1050 + }, + "ION/05_context/signals/CODEX_PHASE_FRAME_TEAM_CHECKIN_20260403T1138.signal.md": { + "path": "ION/05_context/signals/CODEX_PHASE_FRAME_TEAM_CHECKIN_20260403T1138.signal.md", + "sha256": "e7d1080dad7c41830f834a32f75277065cdabea2bd64a724bd8c28b9eb231493", + "size": 611 + }, + "ION/05_context/signals/CODEX_PLAN_PATCH_PACKAGE_20260403T1343.signal.md": { + "path": "ION/05_context/signals/CODEX_PLAN_PATCH_PACKAGE_20260403T1343.signal.md", + "sha256": "a1968bc77f3f13a3716b386d3e9289c7c48be5cd7c35a598a691fc9a5a96a261", + "size": 722 + }, + "ION/05_context/signals/CODEX_PLAN_SURFACE_DRIFT_20260403T1333.signal.md": { + "path": "ION/05_context/signals/CODEX_PLAN_SURFACE_DRIFT_20260403T1333.signal.md", + "sha256": "e1949f402e67854eed368b08ac7328019541b0037874d08170ad27f191ba9062", + "size": 780 + }, + "ION/05_context/signals/CODEX_PROTOCOL_MISMATCH_WARNING_20260411T094542.signal.md": { + "path": "ION/05_context/signals/CODEX_PROTOCOL_MISMATCH_WARNING_20260411T094542.signal.md", + "sha256": "7e86bfb3bd27207fa96360b217ff4438bafec4b5e202fd809169ee7ce56c55a2", + "size": 998 + }, + "ION/05_context/signals/CODEX_PROTOCOL_TRANSITION_NOTES_20260403T1553.signal.md": { + "path": "ION/05_context/signals/CODEX_PROTOCOL_TRANSITION_NOTES_20260403T1553.signal.md", + "sha256": "11187b8290ad994c90cee0675d9444595e6fce8482d49998eff2e7372e5d4d66", + "size": 678 + }, + "ION/05_context/signals/CODEX_RATIFICATION_ASSESSMENT_20260403T1513.signal.md": { + "path": "ION/05_context/signals/CODEX_RATIFICATION_ASSESSMENT_20260403T1513.signal.md", + "sha256": "f9e537cc73a71eeed5dba65c0f95c8d999289bedea71ce78fcbff6d7d0c22e59", + "size": 568 + }, + "ION/05_context/signals/CODEX_RATIFICATION_BRIDGE_20260403T1314.signal.md": { + "path": "ION/05_context/signals/CODEX_RATIFICATION_BRIDGE_20260403T1314.signal.md", + "sha256": "92d03e10e53e9a683d70c66811ad18e2ce23d45a11bf091b8b4320d3e02358c5", + "size": 1325 + }, + "ION/05_context/signals/CODEX_RATIFICATION_RESPONSE_20260403T1454.signal.md": { + "path": "ION/05_context/signals/CODEX_RATIFICATION_RESPONSE_20260403T1454.signal.md", + "sha256": "b1e3088a0b43d8a82f6819ac1891f8d0929ed0b2abf8ad7f77ea75a38f5b44a0", + "size": 760 + }, + "ION/05_context/signals/CODEX_RECOVERY_REPLAY_SCENARIO_PROOF_20260411T203817.signal.md": { + "path": "ION/05_context/signals/CODEX_RECOVERY_REPLAY_SCENARIO_PROOF_20260411T203817.signal.md", + "sha256": "c4b375f3693907e2cf8748a69635e7c131e5fa99211ff915d8bbea6190d34e87", + "size": 1062 + }, + "ION/05_context/signals/CODEX_RECURSIVE_WITNESS_DRIFT_ROLLBACK_20260404T2235.signal.md": { + "path": "ION/05_context/signals/CODEX_RECURSIVE_WITNESS_DRIFT_ROLLBACK_20260404T2235.signal.md", + "sha256": "3165e4836fb6c1c992f9039ddb201a5ff92ca20b019196fef9a2e72798900a65", + "size": 309 + }, + "ION/05_context/signals/CODEX_ROUNDTABLE_BRIEF_20260403T1129.signal.md": { + "path": "ION/05_context/signals/CODEX_ROUNDTABLE_BRIEF_20260403T1129.signal.md", + "sha256": "1d25bd193a8fee35453e929a77541da4f146c47808710c69fca7116cfd652f77", + "size": 603 + }, + "ION/05_context/signals/CODEX_ROUNDTABLE_DELTA_AFTER_READY_20260403T1535.signal.md": { + "path": "ION/05_context/signals/CODEX_ROUNDTABLE_DELTA_AFTER_READY_20260403T1535.signal.md", + "sha256": "4c73dc35f8f3916d0aed0bcebaa4443966dfe79bf5c0c536cb9864b07d6af28b", + "size": 646 + }, + "ION/05_context/signals/CODEX_ROUNDTABLE_IDEAS_AND_FIRST_MOVE_20260403T1228.signal.md": { + "path": "ION/05_context/signals/CODEX_ROUNDTABLE_IDEAS_AND_FIRST_MOVE_20260403T1228.signal.md", + "sha256": "889d75b3d440050dffe9c1e9a5923bb38fd38ac8a1ff9369c8eb4cde87dba560", + "size": 1323 + }, + "ION/05_context/signals/CODEX_RUNTIME_ASSISTED_SEQUENCE_SCENARIO_PROOF_20260411T205345.signal.md": { + "path": "ION/05_context/signals/CODEX_RUNTIME_ASSISTED_SEQUENCE_SCENARIO_PROOF_20260411T205345.signal.md", + "sha256": "224fc08eeda61c3377ee1447e08065a108f15483c85a66ca54a98519134c2c6e", + "size": 1107 + }, + "ION/05_context/signals/CODEX_SCHEDULER_LAW_SCENARIO_PROOF_20260411T204827.signal.md": { + "path": "ION/05_context/signals/CODEX_SCHEDULER_LAW_SCENARIO_PROOF_20260411T204827.signal.md", + "sha256": "acc6ec146a7e1aafc8f01b201cee08d08d2860b6b03e5b9bc7e0a66ba34a3190", + "size": 988 + }, + "ION/05_context/signals/CODEX_SEQUENTIAL_KERNEL_PROOF_20260403T1734.signal.md": { + "path": "ION/05_context/signals/CODEX_SEQUENTIAL_KERNEL_PROOF_20260403T1734.signal.md", + "sha256": "6fb58b802240ec536ecaefacb79376749ae0d75053c50af0ccccc4464430b893", + "size": 692 + }, + "ION/05_context/signals/CODEX_SEQUENTIAL_RUNTIME_PORTABILITY_FIRST_PASS_20260403T2036.signal.md": { + "path": "ION/05_context/signals/CODEX_SEQUENTIAL_RUNTIME_PORTABILITY_FIRST_PASS_20260403T2036.signal.md", + "sha256": "46e256e30dc6e0ede7b7867d6497eb5091c16be9647de6073d03b940d2d70ea8", + "size": 977 + }, + "ION/05_context/signals/CODEX_STAFFING_SEMANTIC_IDENTITY_ONBOARDING_20260412T164544.signal.md": { + "path": "ION/05_context/signals/CODEX_STAFFING_SEMANTIC_IDENTITY_ONBOARDING_20260412T164544.signal.md", + "sha256": "327f87a258988959efdbde8c945726b1843f52545b3bcbc89766dc9e5c91ca7d", + "size": 1222 + }, + "ION/05_context/signals/CODEX_STARTUP_AUTHORITY_RATIFICATION_RECONCILED_20260412T162824.signal.md": { + "path": "ION/05_context/signals/CODEX_STARTUP_AUTHORITY_RATIFICATION_RECONCILED_20260412T162824.signal.md", + "sha256": "db220a46f87aa51d47f55c2b58181dcd1fe801f18a81b7432c89955c9d2e66ec", + "size": 1098 + }, + "ION/05_context/signals/CODEX_STATUS_REPORT_20260403T1513.signal.md": { + "path": "ION/05_context/signals/CODEX_STATUS_REPORT_20260403T1513.signal.md", + "sha256": "25258ca7318ae7bf8698845da3f89d9173172d06eab75318ab8451827a8cd5b1", + "size": 450 + }, + "ION/05_context/signals/CODEX_SUPERVISOR_CONTINUITY_PACKAGE_20260403T1346.signal.md": { + "path": "ION/05_context/signals/CODEX_SUPERVISOR_CONTINUITY_PACKAGE_20260403T1346.signal.md", + "sha256": "cd2eddc8f937f0b08844234c0be8720fa878062f1a7d9669d3944e78256dc550", + "size": 769 + }, + "ION/05_context/signals/CODEX_TASK_WRITEBACK_PILOT_20260403T1748.signal.md": { + "path": "ION/05_context/signals/CODEX_TASK_WRITEBACK_PILOT_20260403T1748.signal.md", + "sha256": "a2edc3c46ec8c2cc116769b0788044e618ef3ca9445c8eb1b98a731739b0b67e", + "size": 618 + }, + "ION/05_context/signals/CODEX_TEAM_STATE_TIMELINE_AND_WATCH_20260403T1356.signal.md": { + "path": "ION/05_context/signals/CODEX_TEAM_STATE_TIMELINE_AND_WATCH_20260403T1356.signal.md", + "sha256": "54e85dc6ddabf3dd140fdca4d1b704091ab443d2f5cb443028a210c6d9dcc0c0", + "size": 704 + }, + "ION/05_context/signals/CODEX_TEMPLATE_ARCHITECTURE_LAYERING_20260403T1910.signal.md": { + "path": "ION/05_context/signals/CODEX_TEMPLATE_ARCHITECTURE_LAYERING_20260403T1910.signal.md", + "sha256": "ddead51bbac3d220911f9fcaa96d72615129c45390c52566e91d85479bf2de92", + "size": 977 + }, + "ION/05_context/signals/CODEX_TEMPLATE_BINDINGS_FIRST_PASS_20260403T1923.signal.md": { + "path": "ION/05_context/signals/CODEX_TEMPLATE_BINDINGS_FIRST_PASS_20260403T1923.signal.md", + "sha256": "464191245fc7d09bacc444633eba7df8428196793871be3c821d2d6542779a2d", + "size": 1166 + }, + "ION/05_context/signals/CODEX_TEMPLATE_REFERENCE_RESTORE_20260403T1627.signal.md": { + "path": "ION/05_context/signals/CODEX_TEMPLATE_REFERENCE_RESTORE_20260403T1627.signal.md", + "sha256": "6057927be8af682360898f54f420b7393a9a9a37e0dfba40c0145e97f5dd00bf", + "size": 508 + }, + "ION/05_context/signals/CODEX_TOTAL_ION_DEEP_DIVE_20260403T1202.signal.md": { + "path": "ION/05_context/signals/CODEX_TOTAL_ION_DEEP_DIVE_20260403T1202.signal.md", + "sha256": "2958c886baedae2d026c48de5338097bd65382bcfd2389f8d57a78f489b437b7", + "size": 1287 + }, + "ION/05_context/signals/CODEX_TRACE_EXECUTOR_REPLAY_20260403T1739.signal.md": { + "path": "ION/05_context/signals/CODEX_TRACE_EXECUTOR_REPLAY_20260403T1739.signal.md", + "sha256": "d3ab7a1c5188d8b56781126bd72e9a9afaa4cf471302eceb2f13087854a54e85", + "size": 687 + }, + "ION/05_context/signals/CODEX_WITNESS_AUTHORITY_CROSSWALK_20260411T095654.signal.md": { + "path": "ION/05_context/signals/CODEX_WITNESS_AUTHORITY_CROSSWALK_20260411T095654.signal.md", + "sha256": "9c786c50b46ac60509090ed59dce024230fd18d298814b0f99a3ebd4822d06c2", + "size": 921 + }, + "ION/05_context/signals/CODEX_WORKING_THESIS_PROTOCOL_FIELD_20260403T1156.signal.md": { + "path": "ION/05_context/signals/CODEX_WORKING_THESIS_PROTOCOL_FIELD_20260403T1156.signal.md", + "sha256": "09ac84a2c35d7e377c3524514cd35485d5a95b565118559d1a0b79ca0d5fb5a6", + "size": 556 + }, + "ION/05_context/signals/DAIMON_VICE_COMPLETE_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_COMPLETE_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md", + "sha256": "66bdfaab3574f3be2aad472b20aeae51405d49288a7109489e6a2055497ec11b", + "size": 571 + }, + "ION/05_context/signals/DAIMON_VICE_DISSENT_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_DISSENT_20260403T1545_CONTINUITY_ROUNDTABLE.signal.md", + "sha256": "45900031f3f7518b9d35a6413ca05e0f37d2b8f4a8258883e37c9a0edbb458a1", + "size": 1009 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T1230_ROUNDTABLE_NEXT_MOVE.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T1230_ROUNDTABLE_NEXT_MOVE.signal.md", + "sha256": "ffe2db3b64f59f4d5a29f5205fadb793f3a8d23f09520b0b260d428551dc233f", + "size": 674 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T123636_BOOT_SURFACE_MATRIX.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T123636_BOOT_SURFACE_MATRIX.signal.md", + "sha256": "02ee9216d35100a6ed61e18aa7015c158b274150b13caf9a4f73085fc928bf10", + "size": 807 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124424_SUPERVISOR_CONTINUITY.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124424_SUPERVISOR_CONTINUITY.signal.md", + "sha256": "5a1cf3c564ce4bb1af3b8f408cada047361d67c48cc33066281874e9e7c8540d", + "size": 775 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124605_ROOT_PROJECTION_RECONCILIATION.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T124605_ROOT_PROJECTION_RECONCILIATION.signal.md", + "sha256": "e894be793920598161c788a77c0badf1780d6c6f1ea3640cd61601b1b32d2c8e", + "size": 651 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T125500_TEAM_CHECKIN_PROOF_LOOP_HAUNT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T125500_TEAM_CHECKIN_PROOF_LOOP_HAUNT.signal.md", + "sha256": "bd4d807912aaa1c715ae00f7dca93ec4711a915962ddccc77b27e26e42807051", + "size": 759 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T130033_ROUNDTABLE_DELTA_AFTER_RECONCILIATION.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T130033_ROUNDTABLE_DELTA_AFTER_RECONCILIATION.signal.md", + "sha256": "7121dd7985ade96536f827182b64bba9a0b0859c7362885460d7106b63ab707c", + "size": 794 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T131522_RATIFICATION_PACKAGE_HAUNT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T131522_RATIFICATION_PACKAGE_HAUNT.signal.md", + "sha256": "8c107a2f9a108966752c847541be97421323a4357d6d75eeac4c2a4a71f0c1dc", + "size": 857 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T135756_TEAM_SNAPSHOT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T135756_TEAM_SNAPSHOT.signal.md", + "sha256": "e4b6e70b38ab21220c122f7f6d930cd4e15e97f8bfd9dd5642721c6594030cb0", + "size": 692 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T141448_SNAPSHOT_CONCURRENCY_DECISION.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T141448_SNAPSHOT_CONCURRENCY_DECISION.signal.md", + "sha256": "9f9e9114bbe249c0b5fa42205deb6dc9ac5860345894cd6ec2a61e83fc028b20", + "size": 774 + }, + "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T144835_RATIFICATION_ASSESSMENT.signal.md": { + "path": "ION/05_context/signals/DAIMON_VICE_NOTE_20260403T144835_RATIFICATION_ASSESSMENT.signal.md", + "sha256": "ee59a9dcf8ded22dae47072a2dc0d0e9fad305785bfd41afe14e8296d1d31ef2", + "size": 781 + }, + "ION/05_context/signals/MASON_PACKAGING_ENTRY_HARDENING_20260412T161500.signal.md": { + "path": "ION/05_context/signals/MASON_PACKAGING_ENTRY_HARDENING_20260412T161500.signal.md", + "sha256": "a2c50dabe1170d09761b5d964816b42bc9b784054c518d922691029593e8a149", + "size": 1616 + }, + "ION/05_context/signals/MASON_TASK_COMPLETE_scaffold.signal.md": { + "path": "ION/05_context/signals/MASON_TASK_COMPLETE_scaffold.signal.md", + "sha256": "f7e632dd76e724ef0a1d49cbe4bfd8bd013f2f0ccb46e5ed605ae5ee40c89afa", + "size": 619 + }, + "ION/05_context/signals/NEMESIS_AGENT_SETUP_DAIMON_ARCHAEOLOGY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AGENT_SETUP_DAIMON_ARCHAEOLOGY.signal.md", + "sha256": "73914ac74113b6d3e3547468c00ccbb7903a59da3255c179cc0eb14e5b629a6b", + "size": 977 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_CONTINUITY_STABILIZATION.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_CONTINUITY_STABILIZATION.signal.md", + "sha256": "1cddb057e4c485719c1987a36bba4bd76893411a9a46d1e8659903ab317a182b", + "size": 666 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PHASE0_SCHEMAS.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PHASE0_SCHEMAS.signal.md", + "sha256": "bf3df0b6269457d255cc90be77c760906713dabd1d01485ef7200ad82c967b8d", + "size": 685 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN.signal.md", + "sha256": "b79fe23fe8d19466be7f05c61ba27da7c3187b7c3d7ae913771ac0f9af25d20f", + "size": 426 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_REV2.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_REV2.signal.md", + "sha256": "52e1cf6a9ec08aeededcc7a72a04428771c34d5d4240666c5140d6c84d8f942c", + "size": 522 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_TARGETED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_PLAN_TARGETED.signal.md", + "sha256": "52c3b2d9741ebedff41657bbfaf32fb62127223d9153b3193f8b68754464f484", + "size": 606 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_TIGHTENING_PASS.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_TIGHTENING_PASS.signal.md", + "sha256": "6ba21b7a2bddf6e4a0cbcf5069607edd99afcf932991dbc3e9f0508f733f7423", + "size": 557 + }, + "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_VIZIER_LATEST.signal.md": { + "path": "ION/05_context/signals/NEMESIS_AUDIT_COMPLETE_VIZIER_LATEST.signal.md", + "sha256": "7fb4a85024d0a5010865a32d9435a448f57225722416bd1edef1fb75d13a4292", + "size": 597 + }, + "ION/05_context/signals/NEMESIS_BUILDER_ROUNDTABLE_RESPONSE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_BUILDER_ROUNDTABLE_RESPONSE.signal.md", + "sha256": "f315eb8e2d4a343c4c9916bd0e0b50b1dd1dc2f4d1bd28452f7830e040d54779", + "size": 567 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_DECISION_READY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_DECISION_READY.signal.md", + "sha256": "6d7fc9414b8574bf47c5b30bef26159e42dae53b2f17a6f3bb1a4d75a7311fe6", + "size": 580 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_DELTA_CONDITIONAL.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_DELTA_CONDITIONAL.signal.md", + "sha256": "36de3056f7a6aeebb59de32d8a4fd38e24ce71d8ce883b3076f768fe81184e15", + "size": 631 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CANDIDATE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CANDIDATE.signal.md", + "sha256": "4540297c10de6e1e581fe6624a614d1f6c70de1cadb93e1e4bf9c06d15c88ce8", + "size": 751 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CONVERGENCE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_CONVERGENCE.signal.md", + "sha256": "c5621b8815614a0987ced45bd05a75bfd5fc3a0d5c1a674304a17234739e8276", + "size": 599 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_RATIFICATION_PACKAGE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_LAW_RATIFICATION_PACKAGE.signal.md", + "sha256": "5380cdd2f255632282f0427fef25c6a79b1eaa1afb4e18afb46b051096dbbe17", + "size": 612 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_FILED.signal.md", + "sha256": "97f76894ff1f6b8426e67367bd648c4ee94e873fe384ed6fc46ff04d58d16005", + "size": 748 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_REFRESHED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_PROPOSALS_REFRESHED.signal.md", + "sha256": "6f54fc89c23f439be96f2a199a71a1e48150aac1d89e9a81d8ff6557f0557642", + "size": 874 + }, + "ION/05_context/signals/NEMESIS_CONTINUITY_RATIFICATION_DELTA.signal.md": { + "path": "ION/05_context/signals/NEMESIS_CONTINUITY_RATIFICATION_DELTA.signal.md", + "sha256": "43242a983d26e188940b6b758945b87194d98833d9a97ad62a30d196c24c2ba8", + "size": 617 + }, + "ION/05_context/signals/NEMESIS_DIRECTIVE_ROUNDTABLE_ONLY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_DIRECTIVE_ROUNDTABLE_ONLY.signal.md", + "sha256": "b0708b2ee173c23928cca72c4409cdb383918fc2fda946de70b00f4628b438d5", + "size": 613 + }, + "ION/05_context/signals/NEMESIS_ESCALATION_CONTINUITY_ROUNDTABLE.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ESCALATION_CONTINUITY_ROUNDTABLE.signal.md", + "sha256": "6e74eff6ca2ce128da43c6fe04c7e712473c124f0525610096f584e266f7968d", + "size": 916 + }, + "ION/05_context/signals/NEMESIS_IDEAS_AND_FIRST_MOVE_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_IDEAS_AND_FIRST_MOVE_FILED.signal.md", + "sha256": "91cec8a887df52aa08ea38cfc7386bc79ef4432200fc76f8ea01cdac8f040f88", + "size": 560 + }, + "ION/05_context/signals/NEMESIS_RATIFICATION_ASSESSMENT_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RATIFICATION_ASSESSMENT_FILED.signal.md", + "sha256": "ac64bb13e4941654826aae6f52b5115d14bfb0e5be12ff99ae6d38a555683255", + "size": 633 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_EXPLORE_WITH_CONTINUITY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_EXPLORE_WITH_CONTINUITY.signal.md", + "sha256": "a973196ba723f556288f3ee9eaa672078bb1e5919efac415575d063792dafe67", + "size": 572 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_MANUAL_AUTO.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_DIRECTIVE_MANUAL_AUTO.signal.md", + "sha256": "3bdcab652b539ca48804e7047e34ff02dfbf43035a6d4e8c096af83073540084", + "size": 572 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_ION_ACRONYM.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_ION_ACRONYM.signal.md", + "sha256": "7870acdabadd82e75d37d30f01e93f954d27c9d85f02b62fa2fc8fdc3b89ff14", + "size": 593 + }, + "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_REFLECTION_ION.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAYED_SOVEREIGN_REFLECTION_ION.signal.md", + "sha256": "6949726d4024356bcb691de04586d8e6f378b5c1159f52a8e6a86194647fee28", + "size": 639 + }, + "ION/05_context/signals/NEMESIS_RELAY_EUNOIA_INTEGRATION.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAY_EUNOIA_INTEGRATION.signal.md", + "sha256": "1b7ef2d524e851e0b6383082ecef1a0086358908af7e9047bb18bf2512197b77", + "size": 693 + }, + "ION/05_context/signals/NEMESIS_RELAY_RENAMED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAY_RENAMED.signal.md", + "sha256": "8bda2ce7c4f0122b42105985b65c32e7b136f6237f003ec6af26ec9463bd9e1e", + "size": 575 + }, + "ION/05_context/signals/NEMESIS_RELAY_ROLE_SETUP.signal.md": { + "path": "ION/05_context/signals/NEMESIS_RELAY_ROLE_SETUP.signal.md", + "sha256": "1d8379b4f199d031e21f22300e31f7eda21c87aa44d854f7abb8ecde84dcbe54", + "size": 604 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_CHECKPOINT_AWAITING_SOVEREIGN.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_CHECKPOINT_AWAITING_SOVEREIGN.signal.md", + "sha256": "b3f14b87176f71b3c04bf59ba1c5dea9e55490cc63779d970075cb007a459729", + "size": 630 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_CORE_PERSPECTIVES_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_CORE_PERSPECTIVES_FILED.signal.md", + "sha256": "0c5aefa39fd155a7c6414aae93a27ad6707982d24dcd4918b04a3adb4ad3a526", + "size": 568 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_RESPONSE_STATUS.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_RESPONSE_STATUS.signal.md", + "sha256": "f49660082b8db88add966fb4ae0b888052a0212fa48469e5136598f18fddc1f5", + "size": 542 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_SYNTHESIS_FILED.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_SYNTHESIS_FILED.signal.md", + "sha256": "b78bdafeeca439e612ba721d67bc66f466a1b9a3603c611ab5b47f9023c12efe", + "size": 678 + }, + "ION/05_context/signals/NEMESIS_ROUNDTABLE_WORKSPACE_READY.signal.md": { + "path": "ION/05_context/signals/NEMESIS_ROUNDTABLE_WORKSPACE_READY.signal.md", + "sha256": "7d784def0935b8486a4573f75cc21694b07f012aa773f86d59ff7a4a57cdc871", + "size": 636 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AETHER_ATLAS_ION_REFERENCE.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_AETHER_ATLAS_ION_REFERENCE.signal.md", + "sha256": "40681bfe92d2c8f23d137997e733651a3c3c811a44d06d34345b7b429cc8bc7c", + "size": 591 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AGENT_HIERARCHY_REALMS.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_AGENT_HIERARCHY_REALMS.signal.md", + "sha256": "5694a812541d50a4d23791c2cf8041878998cb64cf2bbe872ed62c536d8a8f06", + "size": 645 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_AIMOS_DEEP_GAP_ANALYSIS.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_AIMOS_DEEP_GAP_ANALYSIS.signal.md", + "sha256": "286444e7ca243cdcdf1b79c4830904a9d9ee9582a44d7eebecccb5ef14f229c2", + "size": 732 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_CAPSULE_PROTOCOL_WEB.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_CAPSULE_PROTOCOL_WEB.signal.md", + "sha256": "656a1863a0f906147278ec5171abd1f69d80d8f362f5b628a8910cfa4383cacb", + "size": 663 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_CONTINUITY_PROTOCOL_FIELD.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_CONTINUITY_PROTOCOL_FIELD.signal.md", + "sha256": "9d4d14f99875de630954d5b76cf995988e80b3d2c2ac5d8c428cdb854c6637e0", + "size": 653 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_MISSION_TOTAL_ION_DEFINITION.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_MISSION_TOTAL_ION_DEFINITION.signal.md", + "sha256": "799b67a34d1b3d5b44f252b7b93eafc508e3c348dfaf0bac948a45ea791f1bf1", + "size": 716 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SINGLE_CHAT_MULTI_ROLE.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_SINGLE_CHAT_MULTI_ROLE.signal.md", + "sha256": "4a915040bbf18a557a7e9ad8ba09358c79ccf139e304ecaeff89043c24b2defc", + "size": 691 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SOVEREIGN_RELAY_SCOPE.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_SOVEREIGN_RELAY_SCOPE.signal.md", + "sha256": "f971df292fdbba776037e59ed84e6e031695b4f7594c94ea37a3bebe52a5d00a", + "size": 696 + }, + "ION/05_context/signals/RELAY_OUTBOUND_20260403_SYSTEMS_ATLAS_ULTIMATE_OS.signal.md": { + "path": "ION/05_context/signals/RELAY_OUTBOUND_20260403_SYSTEMS_ATLAS_ULTIMATE_OS.signal.md", + "sha256": "9a3debd7520c02b1c58191d50903c08f1b0be53ba8c826ba4916171746a0cf28", + "size": 676 + }, + "ION/05_context/signals/RELAY_READY_20260403_CONTINUITY_ROUNDTABLE_BRIEF.signal.md": { + "path": "ION/05_context/signals/RELAY_READY_20260403_CONTINUITY_ROUNDTABLE_BRIEF.signal.md", + "sha256": "6dd58ec2092fc4bb18c6d114c517c305f0d0c2d199a498ff765c95788fc0e8f2", + "size": 763 + }, + "ION/05_context/signals/RELAY_VISIBLE_REPORT_20260427.md": { + "path": "ION/05_context/signals/RELAY_VISIBLE_REPORT_20260427.md", + "sha256": "4608d6b1f4e4f620ffab2fd8eb87a193dec45408890edabca37f1ed6b396da67", + "size": 688 + }, + "ION/05_context/signals/THOTH_BRIDGE_PACKET_STATUS_EVIDENCE_COMPLETE_20260412T130500.signal.md": { + "path": "ION/05_context/signals/THOTH_BRIDGE_PACKET_STATUS_EVIDENCE_COMPLETE_20260412T130500.signal.md", + "sha256": "e91c3188f5e1301c6fe0ffbdf8d8c62f5bd49a90c4ef47bd14e959f9588c9c91", + "size": 1007 + }, + "ION/05_context/signals/THOTH_CURRENT_PHASE_STAFFING_SEMANTIC_IDENTITY_COMPLETE_20260412T171000.signal.md": { + "path": "ION/05_context/signals/THOTH_CURRENT_PHASE_STAFFING_SEMANTIC_IDENTITY_COMPLETE_20260412T171000.signal.md", + "sha256": "4f314607961bbaf6f34065cc6eadfc2ec11d28550578e4ab7cdf1621fa606fcd", + "size": 894 + }, + "ION/05_context/signals/VESTIGE_ROUNDTABLE_CONTINUITY_ARCHAEOLOGY_20260403T1400.signal.md": { + "path": "ION/05_context/signals/VESTIGE_ROUNDTABLE_CONTINUITY_ARCHAEOLOGY_20260403T1400.signal.md", + "sha256": "e9bca9ae1851e4a10bbda6b530a59d7be1662fb9ee8c14d1375f8b2e88dacaa7", + "size": 873 + }, + "ION/05_context/signals/VESTIGE_TASK_COMPLETE_BRIDGE_PACKET_ARCHAEOLOGY_20260412.signal.md": { + "path": "ION/05_context/signals/VESTIGE_TASK_COMPLETE_BRIDGE_PACKET_ARCHAEOLOGY_20260412.signal.md", + "sha256": "26a766d061a993e1589458092deaff01e9a621bbf6ef0ae01995c9dd4270f952", + "size": 638 + }, + "ION/05_context/signals/VESTIGE_TASK_COMPLETE_STAFFING_SEMANTIC_IDENTITY_20260412.signal.md": { + "path": "ION/05_context/signals/VESTIGE_TASK_COMPLETE_STAFFING_SEMANTIC_IDENTITY_20260412.signal.md", + "sha256": "d7bd5541ef1af2a3c4fec4abbc145cae94331d2dc115bd85950faaf76825f592", + "size": 770 + }, + "ION/05_context/signals/VIZIER_ARTICLE7_PROPOSED_20260403T2200.signal.md": { + "path": "ION/05_context/signals/VIZIER_ARTICLE7_PROPOSED_20260403T2200.signal.md", + "sha256": "941cc395a3a71f04628375709e8e6c7874296fc2d97da6327821bcca95698145", + "size": 854 + }, + "ION/05_context/signals/VIZIER_BOOT_CREATED_20260403T1715.signal.md": { + "path": "ION/05_context/signals/VIZIER_BOOT_CREATED_20260403T1715.signal.md", + "sha256": "5abd6a18b22f11c6c2c2a1c0fab9296b8f8354f2ad55f85da5c545c86cff2712", + "size": 567 + }, + "ION/05_context/signals/VIZIER_FORMAL_ROUNDTABLE_20260403T1230.signal.md": { + "path": "ION/05_context/signals/VIZIER_FORMAL_ROUNDTABLE_20260403T1230.signal.md", + "sha256": "ec4c760837955f8b883f690fd396f100e482d7c658bb4dd4fe9c06daa7d33f0b", + "size": 649 + }, + "ION/05_context/signals/VIZIER_HIERARCHY_FILED_20260403T1930.signal.md": { + "path": "ION/05_context/signals/VIZIER_HIERARCHY_FILED_20260403T1930.signal.md", + "sha256": "9b6dc012ebdcadaf3e42820625998b41ca8304cab7319887a8c28cf755105763", + "size": 620 + }, + "ION/05_context/signals/VIZIER_IDEAS_FIRST_ACTION_20260403T1600.signal.md": { + "path": "ION/05_context/signals/VIZIER_IDEAS_FIRST_ACTION_20260403T1600.signal.md", + "sha256": "d8586b87912e3ca98620d008c901a2442082ff4d37196ace84f7a35f4cf2324b", + "size": 841 + }, + "ION/05_context/signals/VIZIER_P0_BOOTS_COMPLETE_20260403T1800.signal.md": { + "path": "ION/05_context/signals/VIZIER_P0_BOOTS_COMPLETE_20260403T1800.signal.md", + "sha256": "cd3a1f70368b996797271e6408159fb6e5a30183c59132ad84563decab1c67a2", + "size": 1207 + }, + "ION/05_context/signals/VIZIER_P1_COMPLETE_20260403T1830.signal.md": { + "path": "ION/05_context/signals/VIZIER_P1_COMPLETE_20260403T1830.signal.md", + "sha256": "be32f08877138e2bcfd71a8a63b7c18eeea21ef88b8e008d8fa7328016a7be10", + "size": 1087 + }, + "ION/05_context/signals/VIZIER_P2_INFRA_COMPLETE_20260403T1900.signal.md": { + "path": "ION/05_context/signals/VIZIER_P2_INFRA_COMPLETE_20260403T1900.signal.md", + "sha256": "46acf35beec1b06a4e340fe9edb090ae6d18e0657131287560dfb30c5a1f7cbe", + "size": 923 + }, + "ION/05_context/signals/VIZIER_PHASE0A_COMPLETE_20260403T0100.signal.md": { + "path": "ION/05_context/signals/VIZIER_PHASE0A_COMPLETE_20260403T0100.signal.md", + "sha256": "8420b75c79622da1098101794e5e974569c4e6616c2fb9e81cac11e0766befac", + "size": 1412 + }, + "ION/05_context/signals/VIZIER_PHASE0B_PROOF_LOOP_20260403T1700.signal.md": { + "path": "ION/05_context/signals/VIZIER_PHASE0B_PROOF_LOOP_20260403T1700.signal.md", + "sha256": "0648e6180629b251eacdb565e69fc5d245ecbf2990613e22209ab8d4b6a836b2", + "size": 845 + }, + "ION/05_context/signals/VIZIER_PHASE0_COMPLETE_20260403T0040.signal.md": { + "path": "ION/05_context/signals/VIZIER_PHASE0_COMPLETE_20260403T0040.signal.md", + "sha256": "f36f55f92bca57a244fd5f2d8f58bc24c63f212cdd2cc0597023a6d9444151e1", + "size": 1754 + }, + "ION/05_context/signals/VIZIER_PLAN_REVISED_R2_20260402T2300.signal.md": { + "path": "ION/05_context/signals/VIZIER_PLAN_REVISED_R2_20260402T2300.signal.md", + "sha256": "fb81cdf9a50f05a50ffe20e9bb2b393c406a84987950324486ef583b3361cd2f", + "size": 1098 + }, + "ION/05_context/signals/VIZIER_PRERATIFICATION_DIRECTIVE_20260403T2100.signal.md": { + "path": "ION/05_context/signals/VIZIER_PRERATIFICATION_DIRECTIVE_20260403T2100.signal.md", + "sha256": "ab3810db2b54e34f726b29d163ec213847f1aa67cd1a71b84123275687c312bf", + "size": 1067 + }, + "ION/05_context/signals/VIZIER_RATIFICATION_ASSESSMENT_20260403T2100.signal.md": { + "path": "ION/05_context/signals/VIZIER_RATIFICATION_ASSESSMENT_20260403T2100.signal.md", + "sha256": "55d3154074a084cbc6e925184d751def3b8fc869681ef6fe65647fd2c53496cd", + "size": 767 + }, + "ION/05_context/signals/VIZIER_RATIFICATION_READY_20260403T2130.signal.md": { + "path": "ION/05_context/signals/VIZIER_RATIFICATION_READY_20260403T2130.signal.md", + "sha256": "dc6bf156a5ebf47cf2f33313a715ed31b09c00b85aa0f25904f76217589747ba", + "size": 959 + }, + "ION/05_context/signals/VIZIER_RATIFICATION_REQUEST_20260403T2030.signal.md": { + "path": "ION/05_context/signals/VIZIER_RATIFICATION_REQUEST_20260403T2030.signal.md", + "sha256": "c767fe936a653c46e164d54c2d43bbd9a7551d8a675ee2bfb15465a94f1b983f", + "size": 907 + }, + "ION/05_context/signals/VIZIER_ROOT_PROJECTION_RECONCILED_20260403T1730.signal.md": { + "path": "ION/05_context/signals/VIZIER_ROOT_PROJECTION_RECONCILED_20260403T1730.signal.md", + "sha256": "7eab3062b9b287e595b91ef7c7023ef827515834c1a5dc1160d050156f6822e0", + "size": 970 + }, + "ION/05_context/signals/VIZIER_ROUNDTABLE_RECALIBRATION_20260403T1210.signal.md": { + "path": "ION/05_context/signals/VIZIER_ROUNDTABLE_RECALIBRATION_20260403T1210.signal.md", + "sha256": "b726215c17e5cfaa0e49829551b60719c97afff6a5547ff57f18b7f786547afc", + "size": 622 + }, + "ION/05_context/signals/VIZIER_ROUNDTABLE_RESPONSE_20260403T1130.signal.md": { + "path": "ION/05_context/signals/VIZIER_ROUNDTABLE_RESPONSE_20260403T1130.signal.md", + "sha256": "955aa56b29619ab08c0a2f6c828818c98771bb26cc081ff15434accae7ad74b3", + "size": 566 + }, + "ION/05_context/signals/VIZIER_SCHEMA_REVISION_20260403T0130.signal.md": { + "path": "ION/05_context/signals/VIZIER_SCHEMA_REVISION_20260403T0130.signal.md", + "sha256": "aadbb3c4f7a6d36736001f73cccf3651197f72f063d437e21fb7224bb9edf9c0", + "size": 1379 + }, + "ION/05_context/signals/VIZIER_STATUS_REPORT_20260403T2000.signal.md": { + "path": "ION/05_context/signals/VIZIER_STATUS_REPORT_20260403T2000.signal.md", + "sha256": "046d7cddae172d76cdea3712e547239a258dab5b2f8d2d6040ddf14313670bde", + "size": 649 + }, + "ION/05_context/signals/VIZIER_SYNTHESIS_RESPONSE_20260403T1500.signal.md": { + "path": "ION/05_context/signals/VIZIER_SYNTHESIS_RESPONSE_20260403T1500.signal.md", + "sha256": "82c27e45484758868665d91d306943544f08a6bb00ae8b3098bbc421bcb31392", + "size": 718 + }, + "ION/05_context/signals/VIZIER_TASK_COMPLETE_T01_20260402T2345.signal.md": { + "path": "ION/05_context/signals/VIZIER_TASK_COMPLETE_T01_20260402T2345.signal.md", + "sha256": "7ffc7f43ef5f38de52d497ea1ff660d86aef250a17d8e4a6bab83e5952ada3b9", + "size": 680 + }, + "ION/05_context/signals/VIZIER_TIGHTENING_PASS_20260403T0135.signal.md": { + "path": "ION/05_context/signals/VIZIER_TIGHTENING_PASS_20260403T0135.signal.md", + "sha256": "ff03ae1c11bc343a2d64f72c96178554212e11a1f24ebd898a4ce271207542c6", + "size": 1008 + }, + "ION/05_context/signals/VIZIER_TOTAL_ION_DIRECTION_20260403T1300.signal.md": { + "path": "ION/05_context/signals/VIZIER_TOTAL_ION_DIRECTION_20260403T1300.signal.md", + "sha256": "61b93bad5888f629f7143f5858984a27ad09e1d72304d28eab651b4455eda6b6", + "size": 1047 + }, + "ION/05_context/signals/VIZIER_TRUE_CORES_20260403T1400.signal.md": { + "path": "ION/05_context/signals/VIZIER_TRUE_CORES_20260403T1400.signal.md", + "sha256": "041f8765ba7468a8153be8ba7cd33969f20a2c01e3f76ac4ba6189b900f3f132", + "size": 1052 + }, + "ION/05_context/signals/VIZIER_WEB_MAP_COMPLETE_20260403T1630.signal.md": { + "path": "ION/05_context/signals/VIZIER_WEB_MAP_COMPLETE_20260403T1630.signal.md", + "sha256": "21d14105f34f4ea5a0bc9343aa6d8e0ae810ccde02067e839f7864e48100f4c9", + "size": 1242 + }, + "ION/05_context/signals/archive/BOOTSTRAP_BLOCKED_BOOTSTRAP_FIRST_LAWFUL_DAEMON_PRESSURE_FROM_THIS_ROOT_20260423150348_TASK_20260423150348.signal.json": { + "path": "ION/05_context/signals/archive/BOOTSTRAP_BLOCKED_BOOTSTRAP_FIRST_LAWFUL_DAEMON_PRESSURE_FROM_THIS_ROOT_20260423150348_TASK_20260423150348.signal.json", + "sha256": "e80284e6a1fff0935c0877b3d3f523e2fe3db83a4651304c3af5d60c61717a16", + "size": 1657 + }, + "ION/05_context/signals/current_shell_stabilization_receipt_20260427.txt": { + "path": "ION/05_context/signals/current_shell_stabilization_receipt_20260427.txt", + "sha256": "def6d97c7c642f29466de263637d81fbd76ab492a8bdad4c4582f5e01eb17af2", + "size": 1348 + }, + "ION/05_context/signals/ion_default_carrier_onboarding_receipt_20260427.txt": { + "path": "ION/05_context/signals/ion_default_carrier_onboarding_receipt_20260427.txt", + "sha256": "ff2f4035ebf57a2520605094bbe9c6bf7a8cb461a145a8969f8974d6c8573b29", + "size": 992 + }, + "ION/05_context/signals/ion_default_carrier_onboarding_sample_20260427.json": { + "path": "ION/05_context/signals/ion_default_carrier_onboarding_sample_20260427.json", + "sha256": "47332de10140a3641b67c12e0d734c2961046e853dea7dde383e4b1916bd1126", + "size": 13725 + }, + "ION/05_context/signals/v100_living_encyclopedia_maintenance_receipt_20260501.txt": { + "path": "ION/05_context/signals/v100_living_encyclopedia_maintenance_receipt_20260501.txt", + "sha256": "ef8aa91ae3ab7eba21d6c03e323597b4e5363cf078c4e0af96c0051084013ac3", + "size": 2108 + }, + "ION/05_context/signals/v102_context_metabolism_receipt_20260502.txt": { + "path": "ION/05_context/signals/v102_context_metabolism_receipt_20260502.txt", + "sha256": "6343f2b4c4cf211289616b0f35e7b74469df5043fa8099c4dce136c316277dd3", + "size": 235 + }, + "ION/05_context/signals/v103_temporal_context_enforcement_reconciliation_receipt_20260502.txt": { + "path": "ION/05_context/signals/v103_temporal_context_enforcement_reconciliation_receipt_20260502.txt", + "sha256": "a7c7dfea42381db105e73c34e2bb88f87bf1cbb99e0c61f7d8117027cf200ca7", + "size": 269 + }, + "ION/05_context/signals/v104_operational_truth_audit_receipt_20260502.txt": { + "path": "ION/05_context/signals/v104_operational_truth_audit_receipt_20260502.txt", + "sha256": "f5d5f2dcbfbabba265556b6323c8f73d854b2a3b771f14accf415be5c70cca32", + "size": 194 + }, + "ION/05_context/signals/v105_deep_operational_cartography_receipt_20260502.txt": { + "path": "ION/05_context/signals/v105_deep_operational_cartography_receipt_20260502.txt", + "sha256": "df039665c1042f7b2985246d61706aa71b3fd4ad30fd32415903643b8c8d0abe", + "size": 177 + }, + "ION/05_context/signals/v106_core_telemetry_runtime_floor_receipt_20260502.txt": { + "path": "ION/05_context/signals/v106_core_telemetry_runtime_floor_receipt_20260502.txt", + "sha256": "91c5dff9dd51f6c8393e39b48ff455be3d8af701a8660fd24eee7425576c9b1e", + "size": 2250 + }, + "ION/05_context/signals/v75_relay_spawn_report_20260427.md": { + "path": "ION/05_context/signals/v75_relay_spawn_report_20260427.md", + "sha256": "872ff19ef5b53faea62d68f253ce1e8af3f1d13f6f9218ee9442e80ebb6b0ab4", + "size": 654 + }, + "ION/05_context/signals/v75_spawn_packet_mason_structure_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_packet_mason_structure_audit_20260427.md", + "sha256": "f03409d656721f7bcaf8a1b5be8c3dc5307b93c78cfcee2a0528111820ea39fb", + "size": 2040 + }, + "ION/05_context/signals/v75_spawn_packet_vestige_provenance_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_packet_vestige_provenance_audit_20260427.md", + "sha256": "2b8c2eb2610490eedb90ee83a7a44a089d8ac300553a43ac168a3828dc9b36a6", + "size": 2272 + }, + "ION/05_context/signals/v75_spawn_return_mason_structure_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_return_mason_structure_audit_20260427.md", + "sha256": "b56ddff90a4a5379719a3002e263e941195c1ca8f8d049e2c7e44c85f208df27", + "size": 564 + }, + "ION/05_context/signals/v75_spawn_return_vestige_provenance_audit_20260427.md": { + "path": "ION/05_context/signals/v75_spawn_return_vestige_provenance_audit_20260427.md", + "sha256": "9fc9ee632832f087a24410ca3e0557f3e1d7bea0ba0cefe7b8166f7396d9ae20", + "size": 553 + }, + "ION/05_context/signals/v75_steward_spawn_integration_receipt_20260427.txt": { + "path": "ION/05_context/signals/v75_steward_spawn_integration_receipt_20260427.txt", + "sha256": "7adf8d8b5b6d790475183aa09c7340f456bdf182ac1c8597652008475fecdbdc", + "size": 803 + }, + "ION/05_context/signals/v76_cursor_capability_and_mcp_bridge_receipt_20260427.txt": { + "path": "ION/05_context/signals/v76_cursor_capability_and_mcp_bridge_receipt_20260427.txt", + "sha256": "1bf8adc6d9eff5508885beda5497622940d7b395b3a24b20210f2d2672ad70d4", + "size": 618 + }, + "ION/05_context/signals/v76_mcp_bridge_auditor_return_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_auditor_return_20260427.md", + "sha256": "179d69d6e5a3c950d69079d8b228cfb3aea0f5dcc0158f141e3a371439b68ec5", + "size": 581 + }, + "ION/05_context/signals/v76_mcp_bridge_mason_return_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_mason_return_20260427.md", + "sha256": "ffb4a77ec6e3533767ff4d9df51c1594caa2da52a96656dd976c5f4c31424647", + "size": 535 + }, + "ION/05_context/signals/v76_mcp_bridge_relay_report_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_relay_report_20260427.md", + "sha256": "25f4f257ce60b189403571ad2e2cbecc5b97b5f443e87b5479c6abb330935e6b", + "size": 757 + }, + "ION/05_context/signals/v76_mcp_bridge_steward_integration_receipt_20260427.txt": { + "path": "ION/05_context/signals/v76_mcp_bridge_steward_integration_receipt_20260427.txt", + "sha256": "46cf73649cc110e77330d65a0bdee1e8d39d1b22aecf3b1f3f30b6e2908f0da5", + "size": 494 + }, + "ION/05_context/signals/v76_mcp_bridge_workpacket_20260427.md": { + "path": "ION/05_context/signals/v76_mcp_bridge_workpacket_20260427.md", + "sha256": "e9657810a471c7a5a94909e5e99bc111960e2f25734ca2e700e9c1a92745ec72", + "size": 1378 + }, + "ION/05_context/signals/v76_relay_visible_workflow_report_20260427.md": { + "path": "ION/05_context/signals/v76_relay_visible_workflow_report_20260427.md", + "sha256": "e59a70d670a3a3b4d7c999141fafd977a0fed4951915bfab2209dac0dc443f21", + "size": 658 + }, + "ION/05_context/signals/v76_relay_work_cycle_input_20260427.md": { + "path": "ION/05_context/signals/v76_relay_work_cycle_input_20260427.md", + "sha256": "c4dcacc6407eb24c45db561a9201d0a655c29c4884d932615e3eaf3a712f8eff", + "size": 610 + }, + "ION/05_context/signals/v76_role_carrier_return_proposal_20260427.md": { + "path": "ION/05_context/signals/v76_role_carrier_return_proposal_20260427.md", + "sha256": "01b692a106dcb119fc1f0d09859621867be7ae4f55fffb4174c54cfdfe27bbaf", + "size": 538 + }, + "ION/05_context/signals/v76_steward_integration_receipt_20260427.txt": { + "path": "ION/05_context/signals/v76_steward_integration_receipt_20260427.txt", + "sha256": "a855afd5991ae9e81c70a4de6cbe1d82f3909263b5fa5fde1db28d6d49469d2c", + "size": 446 + }, + "ION/05_context/signals/v76_steward_route_decision_20260427.md": { + "path": "ION/05_context/signals/v76_steward_route_decision_20260427.md", + "sha256": "b83dc1f749f2210deb14e249912d026df0b26154b7546f49bbb37650b95ae277", + "size": 551 + }, + "ION/05_context/signals/v77_carrier_context_proof_gate_receipt_20260428.txt": { + "path": "ION/05_context/signals/v77_carrier_context_proof_gate_receipt_20260428.txt", + "sha256": "89504aa897ad3a65d4dd65728166210e957075a70ccb05d2fffbb29e69d525ea", + "size": 884 + }, + "ION/05_context/signals/v78_canonical_mount_demo_packet_20260427.json": { + "path": "ION/05_context/signals/v78_canonical_mount_demo_packet_20260427.json", + "sha256": "05f811ecb42f52c58029dd455304b40fb25a3ed1c28626969bcd6acace83e123", + "size": 550 + }, + "ION/05_context/signals/v79_ion_context_authority_team_receipt_20260428.txt": { + "path": "ION/05_context/signals/v79_ion_context_authority_team_receipt_20260428.txt", + "sha256": "34cb1be7a98eea60b6491689949c5c4f48b04315471a65a9f4cbc8ce34f3f185", + "size": 633 + }, + "ION/05_context/signals/v80_cursor_full_project_consolidation_receipt_20260428.txt": { + "path": "ION/05_context/signals/v80_cursor_full_project_consolidation_receipt_20260428.txt", + "sha256": "f3d66e91f105159301af92c03814f7bdfaed7bb35a147715406aea03991a93cb", + "size": 379 + }, + "ION/05_context/signals/v81_agent_context_systems_repair_receipt_20260428.txt": { + "path": "ION/05_context/signals/v81_agent_context_systems_repair_receipt_20260428.txt", + "sha256": "18fc846690b8fffa11c56a63a49c369ce7a68f89fa8de5aa6fecf3e3a3e1375f", + "size": 842 + }, + "ION/05_context/signals/v82_agent_context_system_runtime_wiring_receipt_20260428.txt": { + "path": "ION/05_context/signals/v82_agent_context_system_runtime_wiring_receipt_20260428.txt", + "sha256": "e94e9f4c1cf2d0ee1ca942c4a6ce37713befceaf79c6741107787365713b4c42", + "size": 1022 + }, + "ION/05_context/signals/v84_carrier_continuation_and_productized_runtime_receipt_20260429.txt": { + "path": "ION/05_context/signals/v84_carrier_continuation_and_productized_runtime_receipt_20260429.txt", + "sha256": "9642ad67dfafe318618f687356e9b6c3a6e2385833bc8f273f9cb9cf784fedcc", + "size": 737 + }, + "ION/05_context/signals/v85_carrier_task_return_intake_receipt_20260429.txt": { + "path": "ION/05_context/signals/v85_carrier_task_return_intake_receipt_20260429.txt", + "sha256": "08438d49e3ca54024549f468e429283b971331ddaefa08de13b50f0cdcd90c84", + "size": 1001 + }, + "ION/05_context/signals/v90_live_joc_cockpit_webview_binding_receipt_20260429.txt": { + "path": "ION/05_context/signals/v90_live_joc_cockpit_webview_binding_receipt_20260429.txt", + "sha256": "afa52999e56cdc3cfb0f5b315d92cebb15141d964d4496926a5353259b8ddbb7", + "size": 1073 + }, + "ION/05_context/signals/v91_agent_context_dynamics_and_frontdoor_receipt_20260429.txt": { + "path": "ION/05_context/signals/v91_agent_context_dynamics_and_frontdoor_receipt_20260429.txt", + "sha256": "47f0288b00c59d45194d7009716ed63cca168aea6d8d2bc9d2a8dff9a902d3fb", + "size": 543 + }, + "ION/05_context/signals/v92_mcp_control_bridge_receipt_20260430.txt": { + "path": "ION/05_context/signals/v92_mcp_control_bridge_receipt_20260430.txt", + "sha256": "7153ce4f8fb9a52dfb3bbca1eb5769893751f377352f327853f687cccb4603fe", + "size": 986 + }, + "ION/05_context/signals/v93_cursor_ion_autopilot_command_and_subagent_surface_receipt_20260430.txt": { + "path": "ION/05_context/signals/v93_cursor_ion_autopilot_command_and_subagent_surface_receipt_20260430.txt", + "sha256": "7d6cd17b7f8ea7e7db2121cd8a8d747c601e1ff7514d4eb43b48670cd2ba7c26", + "size": 564 + }, + "ION/05_context/signals/v94_cursor_canonical_workflow_unification_receipt_20260430.txt": { + "path": "ION/05_context/signals/v94_cursor_canonical_workflow_unification_receipt_20260430.txt", + "sha256": "e465c1b7cc96a973ee8b2196bb1ef38c8a01f93bdf9b317b444e25f8ca0a5b13", + "size": 1472 + }, + "ION/05_context/signals/v95_compiled_role_context_bundle_invariant_receipt_20260430.txt": { + "path": "ION/05_context/signals/v95_compiled_role_context_bundle_invariant_receipt_20260430.txt", + "sha256": "41e782530ae2c776719149ed5abfef596f2c04959ff24ac479723e7bc8265c69", + "size": 235 + }, + "ION/05_context/signals/v96_full_consolidated_runtime_receipt_20260430.txt": { + "path": "ION/05_context/signals/v96_full_consolidated_runtime_receipt_20260430.txt", + "sha256": "06d3be3cc403491d38e20ee50a5b834dd1b0406df4128d06c3b9e76fba9cdba0", + "size": 427 + }, + "ION/05_context/signals/v97_lead_dev_survival_audit_and_autonomous_loop_recovery_receipt_20260501.txt": { + "path": "ION/05_context/signals/v97_lead_dev_survival_audit_and_autonomous_loop_recovery_receipt_20260501.txt", + "sha256": "6dfd16d4300ed9fbbfa098a0e2f296908c05291304de1601d16e4d6d8761284d", + "size": 1198 + }, + "ION/05_context/signals/v98_master_orchestration_automation_and_ui_recovery_receipt_20260501.txt": { + "path": "ION/05_context/signals/v98_master_orchestration_automation_and_ui_recovery_receipt_20260501.txt", + "sha256": "15c542b0dea42fe43cd07b2e105ef9872a84e063711cbf997441a9a98f2966e3", + "size": 1401 + }, + "ION/05_context/signals/v99_agent_context_continuity_and_runtime_separation_receipt_20260501.txt": { + "path": "ION/05_context/signals/v99_agent_context_continuity_and_runtime_separation_receipt_20260501.txt", + "sha256": "292e39c754bbd7ca76f8ab2d8ad0236e7da9666f550573f1b73ab6c0893b3e12", + "size": 873 + }, + "ION/05_context/steward_handoffs/ION_Steward_Implementation_Handoff_API_Provider_Orchestration_Model_Economics.md": { + "path": "ION/05_context/steward_handoffs/ION_Steward_Implementation_Handoff_API_Provider_Orchestration_Model_Economics.md", + "sha256": "eb044055a628cce808ced9e9bfdc9b1b7a2921171b78cc69cca9c729d9a54e8d", + "size": 30714 + }, + "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip": { + "path": "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip", + "sha256": "199c59d8aadd2f75b9afe63e15d8d0024995cea39b568ab68c7fcc516bdf386a", + "size": 15279345 + }, + "ION/06_intelligence/README.md": { + "path": "ION/06_intelligence/README.md", + "sha256": "6a99fd18e64d6440145e99df30d9638409cd7e5b5a4f54e13511d47c8ca319bc", + "size": 1191 + }, + "ION/06_intelligence/archaeology/vestige/alerts/README.md": { + "path": "ION/06_intelligence/archaeology/vestige/alerts/README.md", + "sha256": "fd77d346570a8c88f9a74260d557a91dd9ba83e685963d01aa6035ab22db565d", + "size": 202 + }, + "ION/06_intelligence/archaeology/vestige/continuity.md": { + "path": "ION/06_intelligence/archaeology/vestige/continuity.md", + "sha256": "d9ab7f82cdb64c35866c8656f9de550630041a0673494a8f5d53c601ca058422", + "size": 2259 + }, + "ION/06_intelligence/archaeology/vestige/open_threads/2026-04-12_current_phase_staffing_and_semantic_identity.md": { + "path": "ION/06_intelligence/archaeology/vestige/open_threads/2026-04-12_current_phase_staffing_and_semantic_identity.md", + "sha256": "15b65806807c833a31b341ef53f793da1ebc704dacc7dada43a61414bc2bbc9d", + "size": 1605 + }, + "ION/06_intelligence/archaeology/vestige/open_threads/README.md": { + "path": "ION/06_intelligence/archaeology/vestige/open_threads/README.md", + "sha256": "ef460e23bc6f08779213caead03595735e015a592eadd27b931139082c1c658a", + "size": 311 + }, + "ION/06_intelligence/archaeology/vestige/reports/2026-04-03_continuity_roundtable.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/2026-04-03_continuity_roundtable.md", + "sha256": "4d1d40129140d0beac56abb4644480c35c59cc3acebe2eedf28c488ad8cdd6b3", + "size": 9681 + }, + "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_bridge_packet_family_archaeology.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_bridge_packet_family_archaeology.md", + "sha256": "75fcea5f1144f7416601125977790b4eb60fcda6638abf37361b51897102a72f", + "size": 6491 + }, + "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_current_phase_staffing_and_semantic_identity_archaeology.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/2026-04-12_current_phase_staffing_and_semantic_identity_archaeology.md", + "sha256": "0c5f2186c9bc934b33bdcb91100472562bf070e8aa3aae188096a3dbd3f15d09", + "size": 7140 + }, + "ION/06_intelligence/archaeology/vestige/reports/README.md": { + "path": "ION/06_intelligence/archaeology/vestige/reports/README.md", + "sha256": "ca3dbe7bc91026a0f9c326cd4ce2e31724e1d14d3c8e37d40579574800e3d8ef", + "size": 344 + }, + "ION/06_intelligence/archaeology/vestige/watchlist.md": { + "path": "ION/06_intelligence/archaeology/vestige/watchlist.md", + "sha256": "b26d02ce22f6d02beaab27b41dceafc3a2b60deaffd871671feefc18c24be3fa", + "size": 2277 + }, + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_ION_PLAN_audit.md", + "sha256": "34822fdb725617059d447e0bfca6aa9a9823c80a2a677cc7d0f25be6737db082", + "size": 10864 + }, + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_rev2_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_ION_PLAN_rev2_audit.md", + "sha256": "0744a3b6d7aabaeca7d8119af7bf211a7eab1b3d22b8b5e036bfb74e65858a9e", + "size": 8610 + }, + "ION/06_intelligence/audits/2026-04-02_ION_PLAN_targeted_fixes_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_ION_PLAN_targeted_fixes_audit.md", + "sha256": "83c7f898fa6c1d2a9033bf47b6d6c13748eabaa31a72c652766ccd7c89396b17", + "size": 9988 + }, + "ION/06_intelligence/audits/2026-04-02_phase0_schema_set_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_phase0_schema_set_audit.md", + "sha256": "28dd69740b26d69f6e89d22a942bd12fb00f58045cf665793b118c8f96464ac2", + "size": 10554 + }, + "ION/06_intelligence/audits/2026-04-02_vizier_latest_work_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-02_vizier_latest_work_audit.md", + "sha256": "81ea0963f656e3121d3b53a94034930b895ed76ddc6b3cf38aae16f348612d9b", + "size": 12503 + }, + "ION/06_intelligence/audits/2026-04-03_codex_runtime_readiness_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_codex_runtime_readiness_audit.md", + "sha256": "e47fd73249e78a9c523ec22cb83f34840d780ae9c4475853f744fe049280e5f0", + "size": 5948 + }, + "ION/06_intelligence/audits/2026-04-03_continuity_recovery_delta_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_continuity_recovery_delta_audit.md", + "sha256": "e01218197c94b66c682410b877caedeab35d2a4096e3ef37352d1932908918c2", + "size": 8837 + }, + "ION/06_intelligence/audits/2026-04-03_continuity_roundtable_kickoff.md": { + "path": "ION/06_intelligence/audits/2026-04-03_continuity_roundtable_kickoff.md", + "sha256": "ebb9e2e5875ff8b0d39023dcfd0c8ffc086289fa1358309ac23bdffca1b1412e", + "size": 6182 + }, + "ION/06_intelligence/audits/2026-04-03_continuity_stabilization_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_continuity_stabilization_audit.md", + "sha256": "33b1318ee1b29bde6ab8b07dc012945f8b9d85c7ef7b9c3f527f6f657deb9965", + "size": 12257 + }, + "ION/06_intelligence/audits/2026-04-03_nemesis_ratification_assessment.md": { + "path": "ION/06_intelligence/audits/2026-04-03_nemesis_ratification_assessment.md", + "sha256": "0a2e8fd767b3474af8c413178add724e8ccb94bb0a3ab4af330748c0ddcdf214", + "size": 7066 + }, + "ION/06_intelligence/audits/2026-04-03_vizier_tightening_pass_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-03_vizier_tightening_pass_audit.md", + "sha256": "c02f6940dc94e268c39d53ef1f281ad7c7a7bc010dc5215801cc57cc348b037a", + "size": 8919 + }, + "ION/06_intelligence/audits/2026-04-04_codex_recursive_witness_drift_rollback.md": { + "path": "ION/06_intelligence/audits/2026-04-04_codex_recursive_witness_drift_rollback.md", + "sha256": "2ad8f234d762f79c8e536345652e26f50c56d1f68ea87311b9108ac06a0d1663", + "size": 2331 + }, + "ION/06_intelligence/audits/2026-04-08_ion_operational_rebase_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-08_ion_operational_rebase_audit.md", + "sha256": "0d5ddb855948b377c1581391bd383fca9cb7a39003800b62ce53fc7912a215e3", + "size": 4627 + }, + "ION/06_intelligence/audits/2026-04-08_workflow_module_alignment_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-08_workflow_module_alignment_audit.md", + "sha256": "9fa0598495de14723f10918861650466f17b70cfc48335a2bfe7dce3e6e92814", + "size": 2285 + }, + "ION/06_intelligence/audits/2026-04-08_workflow_self_use_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-08_workflow_self_use_audit.md", + "sha256": "0f3705d26040d9de968f968eea3c1bbff71003e1b54f5a73d376e87921094584", + "size": 5247 + }, + "ION/06_intelligence/audits/2026-04-12_phase1_browser_mount_boundary_audit.md": { + "path": "ION/06_intelligence/audits/2026-04-12_phase1_browser_mount_boundary_audit.md", + "sha256": "6b9eb12967ae6f933c6bd1b0a228003ea3f86937c5f99ac55848b0c140e36cde", + "size": 1887 + }, + "ION/06_intelligence/daimon/vizier/dissent_ledger.md": { + "path": "ION/06_intelligence/daimon/vizier/dissent_ledger.md", + "sha256": "fb62d49535cc5b4f61963a2cd5a78503da3d1d74e9951f3f446813197caeae45", + "size": 2136 + }, + "ION/06_intelligence/daimon/vizier/future_answerability.md": { + "path": "ION/06_intelligence/daimon/vizier/future_answerability.md", + "sha256": "4a36baa2179718760482e0099857d0680d3c600c213b695f52588beb565ec5b5", + "size": 3798 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_boot_and_surface_drift_matrix.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_boot_and_surface_drift_matrix.md", + "sha256": "02957a1b6728e64c8f9fc0195a87295bf5df6e187ae27fbf8a7d0b8d26003ad2", + "size": 9984 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_continuity_roundtable_haunt.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_continuity_roundtable_haunt.md", + "sha256": "7a836c6755188b8ff4c07137992a1c88b2f5a6af5f2227b9c7bc115c51ccde82", + "size": 8029 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_ratification_package_haunt.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_ratification_package_haunt.md", + "sha256": "c1b1b3d8d83ee3291a58ff046e4c7b42eceb9663f62ecd71d89ee94aaff0dc43", + "size": 5344 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_root_projection_reconciliation_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_root_projection_reconciliation_vice.md", + "sha256": "6e6c6d18fdebca900ae8280bc3f0882e6343c86765ad80e997d1bc7712e0a5c7", + "size": 5470 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_decision_request_snapshot_concurrency.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_decision_request_snapshot_concurrency.md", + "sha256": "4c876ef7443133717be6fc9eec067699d431725de4b0a36c8d14f8bb2163bda7", + "size": 5824 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_delta_after_reconciliation_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_delta_after_reconciliation_vice.md", + "sha256": "9ecbc6c93f790f02b818f41255644b1938cd219940258d0844a3620af5ca4586", + "size": 4189 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_next_move_operational_landing_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_roundtable_next_move_operational_landing_vice.md", + "sha256": "f9358bcb16996a69ee1e6d645817e87dcdc514b7af88727cc0ee90abc5ef7f7f", + "size": 7771 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_supervisor_continuity_classification_vice.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_supervisor_continuity_classification_vice.md", + "sha256": "13335dc3649a57ae606dcdf499d75b68782d0bf7f9d61ac563fa42c998edc195", + "size": 6726 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_checkin_convergence_and_proof_loop_haunt.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_checkin_convergence_and_proof_loop_haunt.md", + "sha256": "b9150302cd389602030a87e4fb44fa9fe4de79d9f9184b90b4d02b8e35fc1e41", + "size": 6691 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_objective_timeline_snapshot.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_team_objective_timeline_snapshot.md", + "sha256": "d088821a1687fb99082c0b1169f7643da4192f13ea20cfa3f23fd8e52c46c8f0", + "size": 13065 + }, + "ION/06_intelligence/daimon/vizier/notes/2026-04-03_vice_ratification_assessment.md": { + "path": "ION/06_intelligence/daimon/vizier/notes/2026-04-03_vice_ratification_assessment.md", + "sha256": "0e5ba5eb72031337d2706502d8b8e082eb1424578a9a6e863136cf8d554122a6", + "size": 8291 + }, + "ION/06_intelligence/daimon/vizier/shadow_continuity.md": { + "path": "ION/06_intelligence/daimon/vizier/shadow_continuity.md", + "sha256": "4e07ef1a2ba95dfb2501f7a4e97bb20f556612c6d8d45f12ce27817df0a0c2bb", + "size": 4175 + }, + "ION/06_intelligence/daimon/vizier/unresolved_contradictions.md": { + "path": "ION/06_intelligence/daimon/vizier/unresolved_contradictions.md", + "sha256": "6e2b6837abf5b4ef316d6fcc5c09b9750bdfa0206896800ecd9eb5f421d7b512", + "size": 3234 + }, + "ION/06_intelligence/decisions/2026-04-17_aim_ion_aim_os_classification_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_aim_ion_aim_os_classification_canonicalization_decision.md", + "sha256": "25d41b6bcf5b4fba1ea82c39dbb6a9d3f9f9c294899054f31c7e7e5e7931f4cc", + "size": 9007 + }, + "ION/06_intelligence/decisions/2026-04-17_external_transport_shell_current_phase_disposition_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_external_transport_shell_current_phase_disposition_decision.md", + "sha256": "37ed0529c7c19ab49e44dc5c7d3b479a32a56d59b8652cf353e81a9c9953ebbc", + "size": 8831 + }, + "ION/06_intelligence/decisions/2026-04-17_packaged_root_nested_path_disambiguation_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_packaged_root_nested_path_disambiguation_canonicalization_decision.md", + "sha256": "525da6bc40bc5ff7cd2a82d1b908a08e007c39a304c0f0f0d7cb6a84d6f44d2b", + "size": 7169 + }, + "ION/06_intelligence/decisions/2026-04-17_retained_dual_center_settlement_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_retained_dual_center_settlement_canonicalization_decision.md", + "sha256": "45d0498f29c261af0aadc99cc31e6f20a6022ca72aa4be670497d2f7d6c6e913", + "size": 6734 + }, + "ION/06_intelligence/decisions/2026-04-17_root_authority_carrier_export_bundle_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_root_authority_carrier_export_bundle_canonicalization_decision.md", + "sha256": "9e6c0fe70f23c09b6eda43c809d568fcadb63c06c9142c6377f6a16877ef1270", + "size": 9257 + }, + "ION/06_intelligence/decisions/2026-04-17_top_level_production_surface_promotion_map_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_top_level_production_surface_promotion_map_canonicalization_decision.md", + "sha256": "bcaad1708b833907261baa10629fe86b576b93d5617c95169620313d609cb81a", + "size": 12439 + }, + "ION/06_intelligence/decisions/2026-04-17_workspace_root_authority_canonicalization_decision.md": { + "path": "ION/06_intelligence/decisions/2026-04-17_workspace_root_authority_canonicalization_decision.md", + "sha256": "64919b90e192ec4b7ba6fca2b53cbad0e56a88745ec98901d7707a64a7b9b519", + "size": 8199 + }, + "ION/06_intelligence/decisions/T08-T14_authority_resolutions.md": { + "path": "ION/06_intelligence/decisions/T08-T14_authority_resolutions.md", + "sha256": "716e9883950e5cf8e8c208ac10a7d8c3b188a8b62895e01a616165fb7e21c993", + "size": 15083 + }, + "ION/06_intelligence/decisions/relay_vestige_continuity_class.md": { + "path": "ION/06_intelligence/decisions/relay_vestige_continuity_class.md", + "sha256": "4d41a034b642f9c658d44adbf02d02aeb6e8a52ed3e62d56e55561bd9acf9be5", + "size": 1484 + }, + "ION/06_intelligence/evidence/README.md": { + "path": "ION/06_intelligence/evidence/README.md", + "sha256": "1873fb2afab5559eae98c687a7d2e01515fdd1c95fe320ada0aee9896a8d73b0", + "size": 560 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_acceptance_matrix_and_definition_of_done.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_acceptance_matrix_and_definition_of_done.md", + "sha256": "2f4f12b28742cf9adb9334de5d176eac93569e9f68b1317958b933dc48ecf3f1", + "size": 4906 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_completion_phase_architecture.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_completion_phase_architecture.md", + "sha256": "112bfc0d8c982bca6e7b4110eefbc494f0ea2e92ea6cda2181e0188026009c09", + "size": 8819 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_dependency_graph_and_critical_path.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_dependency_graph_and_critical_path.md", + "sha256": "309b7b36f8e181e1e88c4dd28816bd19a2eea1d784e3223923b02b360a704345", + "size": 3793 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_execution_tracks_and_workstreams.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_execution_tracks_and_workstreams.md", + "sha256": "369d53058cc8539bc796d99b1bfe35253cdaf3ffe7441c83387eb87de1a95495", + "size": 6367 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_project_completion_orchestration.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_project_completion_orchestration.md", + "sha256": "69145e16af84446cb97454fccc737765c395e1e1ec84631d8103823fa2cb8d0a", + "size": 7668 + }, + "ION/06_intelligence/orchestration/2026-04-08_ion_risk_register_and_controls.md": { + "path": "ION/06_intelligence/orchestration/2026-04-08_ion_risk_register_and_controls.md", + "sha256": "f0b7aa6c595bc7bf80f78a63c227c91c6de516d45b1c70f9e2e00b261a44d7ef", + "size": 4383 + }, + "ION/06_intelligence/orchestration/2026-04-09_current_state_trajectory_and_l2_execution_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_current_state_trajectory_and_l2_execution_assessment.md", + "sha256": "a628209043227cc5dae7c8b1b9f2239d4e7abdfcd9edbf6dbe3b6d148ad0c104", + "size": 4889 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_current_state_vs_end_state_roadmap.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_current_state_vs_end_state_roadmap.md", + "sha256": "97c6613e7231c0ef2939eaefab70eaddb61dbac5f368fc6f0388bbf857c2f54d", + "size": 5840 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_full_system_architecture_and_end_state_framework.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_full_system_architecture_and_end_state_framework.md", + "sha256": "dfd38a22025bee56c1715695346d49e98788fe888c56cb9ac393981fb2185e04", + "size": 18510 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_horizon_tightening_and_enactment_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_horizon_tightening_and_enactment_model.md", + "sha256": "66084a333552a24a384f0fa65d999c6869585fd4e1f94d7a5fcf2def51a65288", + "size": 3690 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_ide_and_operating_substrate_vision.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_ide_and_operating_substrate_vision.md", + "sha256": "9acb04e746f3f1eb1af46ecabc08274a02026309290182a1faa5d34f548c1032", + "size": 3705 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_kernel_law_and_runtime_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_kernel_law_and_runtime_model.md", + "sha256": "c572d2b1dbbb6f0a0d1099e31f8a677d2ac8daed32936db7e680fbe34f1541c2", + "size": 4673 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_packet_handoff_and_takeover_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_packet_handoff_and_takeover_model.md", + "sha256": "0fb387f10a034250e4730b45fd527ba425fb229736a2aad08414c6c499a551ec", + "size": 4075 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_scheduler_and_orchestration_model.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_scheduler_and_orchestration_model.md", + "sha256": "c2f2c1f408de0ff6e6cf483a98eaccee9c118585bfb68c0157ca5c624c4166dc", + "size": 4836 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_system_overview.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_system_overview.md", + "sha256": "9d28df58149ce68ae83ff0a3c1a1e2d7db2999fd129cd0168ca457e0c7133b08", + "size": 5521 + }, + "ION/06_intelligence/orchestration/2026-04-09_ion_workflow_and_continuity_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_ion_workflow_and_continuity_lifecycle.md", + "sha256": "a4d63eeb5303a71dc4505145e09f0298993486ddfb31e97447d2f5fe4772c9f1", + "size": 4363 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_k6_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_k6_state_forward_path_and_codex_handoff.md", + "sha256": "f092e1e054ee5348076b070b24c49a8ad1ab9e6d2662b36621fbac56e1dde7a9", + "size": 7471 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_k7_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_k7_state_forward_path_and_codex_handoff.md", + "sha256": "9390bba257c793e7493d47bd505639a8834cd715bdeda7e058ebceb7f46f7dd9", + "size": 6984 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l0_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l0_state_forward_path_and_codex_handoff.md", + "sha256": "6841fc64913c7b9b93dbf6f3c9c67d7080ddac40566b74d97645d427a0b273ae", + "size": 7028 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l1_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l1_state_forward_path_and_codex_handoff.md", + "sha256": "25c18c1622a6245b677f0650848773759f3189637bb13b8e72725cfe7c8ad9b6", + "size": 7477 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l2_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l2_state_forward_path_and_codex_handoff.md", + "sha256": "418b25ce19cec635c429dc1f39239f922d8e5031a9853eb7f5daed3c2f3261f0", + "size": 6088 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l3_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l3_state_forward_path_and_codex_handoff.md", + "sha256": "5b08594be2cb2cad0862d3c9629acd3201eaf0eedfd7acd32f75241c763b7038", + "size": 6163 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_l4_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_l4_state_forward_path_and_codex_handoff.md", + "sha256": "add52c1bcab09197bc68fa204adeb34ec09a351c322244e1d24237a235ffe266", + "size": 6336 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_m0_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_m0_state_forward_path_and_codex_handoff.md", + "sha256": "3cff7d07428173071db1c7710d7e00314ce3246362d2ea262b223543e9f23c31", + "size": 4891 + }, + "ION/06_intelligence/orchestration/2026-04-09_post_m1_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-09_post_m1_state_forward_path_and_codex_handoff.md", + "sha256": "3c4df09d9e69df3b0d21ae9b00c98e5ea91269981b83c197a31aaa9083c4bd95", + "size": 3971 + }, + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_activation_protocol_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_bootstrap_activation_protocol_next_packet.md", + "sha256": "583ad8a9a28ff73839cb2d07a28c8723e447478da949aebf41007ae65a9dcf07", + "size": 1997 + }, + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_bootstrap_init_protocol_next_packet.md", + "sha256": "ebe5f634b82840d2292c3f8a153401e0f68ec91e38e691f7b95d4d01e6394726", + "size": 1816 + }, + "ION/06_intelligence/orchestration/2026-04-10_bootstrap_manifest_protocol_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_bootstrap_manifest_protocol_next_packet.md", + "sha256": "f741ef471d216ee3ef161ff5cc1c00cc61df36562be2bcda6867793c0956e209", + "size": 1740 + }, + "ION/06_intelligence/orchestration/2026-04-10_daemon_bootstrap_bridge_next_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_daemon_bootstrap_bridge_next_packet.md", + "sha256": "9fa3b64891960baf4097820ec1fd73d68ef1d328feafbfa4905d712e69cf880c", + "size": 2222 + }, + "ION/06_intelligence/orchestration/2026-04-10_ion_kernel_constitution_self_use_alignment_and_forward_path.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_ion_kernel_constitution_self_use_alignment_and_forward_path.md", + "sha256": "39f8c9c0b3cee80322e79e845e2e9b89de8d96d85a5fe3fff8f0b4abff30cf84", + "size": 2547 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m10_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m10_state_forward_path_and_codex_handoff.md", + "sha256": "3e9c2c2a1012d66cf356f065520355cad9afd4523a26cf0fd836da78c1fd9dd0", + "size": 1616 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m11_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m11_state_forward_path_and_codex_handoff.md", + "sha256": "63069ad9aab9e194852f9e1063e51e3633fe453b47c1be4ca6134ee212ddef46", + "size": 1620 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m12_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m12_state_forward_path_and_codex_handoff.md", + "sha256": "ab0bcb8d34a4fd5f3a28577034f84095d65b49069c5d26dda1fad414bb1759af", + "size": 2141 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m13_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m13_state_forward_path_and_codex_handoff.md", + "sha256": "721de9dcdab5797530172379b3ba472dde6417c71e39555802859047963e33e2", + "size": 2362 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m14_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m14_state_forward_path_and_codex_handoff.md", + "sha256": "a6197d811b511fef8e20e028cb490ebce3e693af10cd9834ca43d06a66d6860c", + "size": 1851 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m15_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m15_state_forward_path_and_codex_handoff.md", + "sha256": "bdc928ca654fcbaa2ad5eeba965cca510843f1fd608f5e28d0dc56586ff2f101", + "size": 1869 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m16_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m16_state_forward_path_and_codex_handoff.md", + "sha256": "6857d395c35273ec66e66ce77f4cda2a4ab6b5621ac253b6a27f041e36be9af8", + "size": 2709 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m2_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m2_state_forward_path_and_codex_handoff.md", + "sha256": "deb899f34e5d7ea80e9b76ea2562d7ec93a2f8dd550c137d1bdeab376b1ffb44", + "size": 2818 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m3_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m3_state_forward_path_and_codex_handoff.md", + "sha256": "6a5df3342c0fab93a04b2f8b32ad7906b934342132ed87ea558b390d5fb18507", + "size": 2947 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m4_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m4_state_forward_path_and_codex_handoff.md", + "sha256": "a7b00d0675f604b1848c17c4cac41909af3a7b4d381706470f9c5ede726165b2", + "size": 3002 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m5_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m5_state_forward_path_and_codex_handoff.md", + "sha256": "9d6aa4b467f86fddda5082ec01a301e1c1dee6a746f4d67620d36c020c51660f", + "size": 1874 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m6_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m6_state_forward_path_and_codex_handoff.md", + "sha256": "a6e1cb74e73ed2453da382779b51b58fae64e87bb0845677bddad29965c740ea", + "size": 1881 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m7_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m7_state_forward_path_and_codex_handoff.md", + "sha256": "2452ffbda8a6a53cfc392f2ff51ad4d890f59f7a6143db72608bfb308b478f58", + "size": 2385 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m8_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m8_state_forward_path_and_codex_handoff.md", + "sha256": "bc4e90ffc3f04391ec716e7389330b14fb31fd95f8e4127ff341fb2b15976abf", + "size": 937 + }, + "ION/06_intelligence/orchestration/2026-04-10_post_m9_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-10_post_m9_state_forward_path_and_codex_handoff.md", + "sha256": "7f83b430a567e00b555dc91ddc44cefedba80c7056e3fc3acc0a6b4737e9f215", + "size": 1428 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_branch_parallel_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_branch_parallel_proof_hardening_and_codex_handoff.md", + "sha256": "68ee26e779aae7352458b7e141436c70f86c203116bcd5177d2e7aa476483f52", + "size": 2194 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_external_api_parity_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_external_api_parity_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "a7c6e460187e5acb5f42f7805c381ed36fa0281e766e34c748a38b925925fe82", + "size": 2697 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_horizon_refinement_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_horizon_refinement_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "b9018f6610b83ecb382fd9e1093fa81e929a767c7560d851f1262213a0e1e108", + "size": 2374 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_proof_hardening_and_codex_handoff.md", + "sha256": "3ed666e84acba9ceacfdcf86e22a3cab9f16ed4dda1061a0879c71e878073e31", + "size": 1970 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_recovery_replay_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_recovery_replay_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "9fbe6732ccd54a6583296a54cc0a71e29916dd2057a60006381647f97d0f3355", + "size": 2182 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_runtime_assisted_sequence_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_runtime_assisted_sequence_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "fe0ce1296d9a7f5acf51d5e2e05f49023a8b9a642d18a6bc144c883b20707669", + "size": 2584 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_scheduler_law_scenario_proof_hardening_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_scheduler_law_scenario_proof_hardening_and_codex_handoff.md", + "sha256": "fb967198ea315d86ffaa1d8197e0dbed5d49acb9b19b46cc2c4fb1b7710382f7", + "size": 2484 + }, + "ION/06_intelligence/orchestration/2026-04-11_post_m17_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-11_post_m17_state_forward_path_and_codex_handoff.md", + "sha256": "fc2e810548765469ec030b04ce7a8f47215ca00053ea350d0937e9df6bf63078", + "size": 2917 + }, + "ION/06_intelligence/orchestration/2026-04-12_composer2_support_field_setup_and_operator_runbook.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_composer2_support_field_setup_and_operator_runbook.md", + "sha256": "e02c33c7287e925ba975ded4d3a8748faaff91eefc61072c38c5f50d1f1b8701", + "size": 5796 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_branch_active_center_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_branch_active_center_map.md", + "sha256": "d6f61a79c59734e7812bd341049c471ddcbb432434b96d3ee92f862c0977f0ed", + "size": 6229 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_assessment.md", + "sha256": "3304e9f1e11f1e55fc1260ce411a0e819bef0d64ae79799a8650c1263235d7de", + "size": 3649 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_record.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_generation_ratification_record.md", + "sha256": "af101f03eaa82228ee5e7baaa1dea7814a5f479938335ac96e5537e8057cc5eb", + "size": 2471 + }, + "ION/06_intelligence/orchestration/2026-04-12_current_phase_orchestration_management_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_current_phase_orchestration_management_map.md", + "sha256": "b226a564b19c578f977d58228a856467aeea0ec60312bc0684ad65911bec0963", + "size": 2917 + }, + "ION/06_intelligence/orchestration/2026-04-12_governed_template_context_feed_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_governed_template_context_feed_map.md", + "sha256": "146fc7315575d736d78bf6da53086c585af0eaec62f5e61cb1cd5e92aa2758ee", + "size": 5990 + }, + "ION/06_intelligence/orchestration/2026-04-12_ion_acceptance_evidence_bundle_current_state.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_ion_acceptance_evidence_bundle_current_state.md", + "sha256": "a396928c8ed35f0f5b49a477ab26285cbc4fa7b4532b8e3e6fb19768ea5aa1f8", + "size": 11928 + }, + "ION/06_intelligence/orchestration/2026-04-12_phase1_template_governance_rollout_plan.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_phase1_template_governance_rollout_plan.md", + "sha256": "90bb4d2fd5e47f145d78dbe1ca66bcc3281da517648390c3773b9d035e7d5b7d", + "size": 7134 + }, + "ION/06_intelligence/orchestration/2026-04-12_post_phase1_template_governance_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_post_phase1_template_governance_state_forward_path_and_codex_handoff.md", + "sha256": "366fea5f2df202ea3d61ed656e44be9743d78a27a69dba65603c3d23016c3775", + "size": 3542 + }, + "ION/06_intelligence/orchestration/2026-04-12_post_ratification_execution_preparation_and_startup_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_post_ratification_execution_preparation_and_startup_map.md", + "sha256": "84405036d563c5950222cd36f9af5347da77f303e2d655007e6b9949b4401cf4", + "size": 5160 + }, + "ION/06_intelligence/orchestration/2026-04-12_staffing_and_semantic_identity_codex_consolidation_proposal.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_staffing_and_semantic_identity_codex_consolidation_proposal.md", + "sha256": "29c5f5d877ab672e52d61d8aa5526bfcdab23aecbc575ced9e5232bf722c7fc0", + "size": 4800 + }, + "ION/06_intelligence/orchestration/2026-04-12_steward_current_phase_truename_and_template_update_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-12_steward_current_phase_truename_and_template_update_note.md", + "sha256": "594fea561033c738c9e693733d3bce6089c6a751605180410bce3e746fd68f4a", + "size": 642 + }, + "ION/06_intelligence/orchestration/2026-04-13_consolidation_state_remaining_work_and_evolution_path.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_consolidation_state_remaining_work_and_evolution_path.md", + "sha256": "9184d71ffa694daa5b4b55a22c6d8223f943cbd0bf1b4b4d969f7bca2d86a771", + "size": 6396 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass10_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass10_enrichment_note.md", + "sha256": "3224706672103483d80c094aa0c1e9dcc2eef87a7abb2466852f3e494a5c055b", + "size": 990 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass11_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass11_enrichment_note.md", + "sha256": "ae5ca4202d5133319ac7546a5e89f711747a82d94d60aa80a7c2a7df2410511d", + "size": 743 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass12_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass12_enrichment_note.md", + "sha256": "57f934779d291f1415b9395f471337ea42eb2c18283ce7d55e1fc9dba0b516c6", + "size": 741 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass13_atlas_base_stabilization_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass13_atlas_base_stabilization_note.md", + "sha256": "509bdc5c78ba5ae35d05b290c5a73e8eb78fe06cb833d881d6a6b77bafd00257", + "size": 652 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass14_working_atlas_base_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass14_working_atlas_base_note.md", + "sha256": "e169b574d4a352712d4ccaa9560cc0af63ff71d05fec9607c989553d5995be12", + "size": 593 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass15_operating_layer_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass15_operating_layer_note.md", + "sha256": "e854b4fffe84075a7e3fa5be2025e647273d05e953bfd4c5138beb10ebb09f4d", + "size": 590 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass16_packet_gate_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass16_packet_gate_note.md", + "sha256": "7d17428d0d79df616e626dcb25a55c0c2070ff98f28f52598445577c824cc288", + "size": 984 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass17_work_start_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass17_work_start_examples_note.md", + "sha256": "2321c4f8012af567f313b604c012c22227731edd01098aeaf7a8dc1d73fea012", + "size": 1183 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass18_question_class_control_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass18_question_class_control_note.md", + "sha256": "db92379b4ddfe5c2560cbbf76efd38893c165622528dbb6da0212c66660c8b24", + "size": 1411 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass19_answer_output_control_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass19_answer_output_control_note.md", + "sha256": "87f98cb96e5200703e24c1914113ce959c53e7cac5f300bf11f647a6fae3b724", + "size": 788 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass20_landing_horizon_control_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass20_landing_horizon_control_note.md", + "sha256": "ad8c612a9bc3422682a340ad15b5fda14bfb22a12ac583997605c8d6fea2dbfb", + "size": 1228 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass21_control_card_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass21_control_card_note.md", + "sha256": "d7aa9b5303b4f3dac885b261f1ef74cc1863d3eb23b46dbb906f336da4b7e12a", + "size": 936 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass22_lifecycle_demonstration_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass22_lifecycle_demonstration_note.md", + "sha256": "0693e1ef8f61c454a46b62233b12e8a6c7a92f819f25355471cdc4a036457702", + "size": 1010 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass23_stable_operating_layer_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass23_stable_operating_layer_note.md", + "sha256": "689a4282a48f27bbeee5e1465c88882cbe2d8698903298ca39d837f5b6fb18ca", + "size": 1256 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass24_project_control_kernel_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass24_project_control_kernel_note.md", + "sha256": "2552154a6cc0ebb452f163290b3bc6524459e0003364e26f5e9ee19c4ed75927", + "size": 866 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass25_kernel_escalation_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass25_kernel_escalation_note.md", + "sha256": "b556d88afde006db61251a648510afcff43b56874a65aa082ab362f6143dc07d", + "size": 657 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass26_return_reassessment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass26_return_reassessment_note.md", + "sha256": "7241623bbbeede1a0ad6682a5ff1bdf69f659828800568f36aef327cae9f1d41", + "size": 573 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass27_kernel_freeze_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass27_kernel_freeze_note.md", + "sha256": "bb8ef412016b1d024ccc8e7b30a663754083b4379232401c7d54469cfbf576a6", + "size": 1157 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass28_kernel_thaw_protocol_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass28_kernel_thaw_protocol_note.md", + "sha256": "411b5d3d49e18c83d3e2fd5ad9713191b63daf662b9e78afd77bc0e85bf178f5", + "size": 829 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass29_kernel_revision_lifecycle_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass29_kernel_revision_lifecycle_note.md", + "sha256": "9d3693198f898ad700a7977340440408f18ced94d0765c0214edd1b1960cfefb", + "size": 1569 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass2_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass2_enrichment_note.md", + "sha256": "4e94fd5dd7875ee1aef7492ccee48d264103dc5bb04ed5f98f2291b33f9e5aa0", + "size": 1239 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass30_kernel_governance_cadence_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass30_kernel_governance_cadence_note.md", + "sha256": "8d681c4959e303937b5721562b5675231c7ba978985444263e3346693695e937", + "size": 689 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass31_governance_outcomes_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass31_governance_outcomes_note.md", + "sha256": "80617b3fc1edb6d63ed3230ee14668b7baf3a37071d59d9c996cf8619ff6f76d", + "size": 556 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass32_era2_transition_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass32_era2_transition_note.md", + "sha256": "652c783e47d05d57e3b0c195156106a49311af1eff5171b20d5dc1fcb0a4175a", + "size": 589 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass33_lane_a_meta_template_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass33_lane_a_meta_template_packet_note.md", + "sha256": "73e8ff510594f11238d0b771291d19f178e31611632eb79a0cce4019ad66e4c5", + "size": 806 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass34_lane_b_activation_authority_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass34_lane_b_activation_authority_packet_note.md", + "sha256": "e238005a973830e38ef98ea47b49cb727e4224e9d2d39d7f9e1dd22bfee50c29", + "size": 1652 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass35_lane_c_runtime_session_api_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass35_lane_c_runtime_session_api_packet_note.md", + "sha256": "80210eec43ed8ef16bb00d28aabeb5708080db5516cd6e7d49d703e834fbdd1a", + "size": 1851 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass36_runtime_surface_design_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass36_runtime_surface_design_packet_note.md", + "sha256": "615da33eb99e734e196a7912494da6af7aada325bbe38b2f810e87e200c8132b", + "size": 1225 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass37_activation_surface_design_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass37_activation_surface_design_packet_note.md", + "sha256": "dbc8a3a6357d4c254f6a1f52172013da687b16e156d75914ea17be680b0a7282", + "size": 1157 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass3_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass3_enrichment_note.md", + "sha256": "d550331c00f7a5b534c63c0e7350f37ecc9af1dea4c8965ac3ff004b6d0f44a6", + "size": 1111 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass4_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass4_enrichment_note.md", + "sha256": "7fb69aeb30392f46f2d1f92c6def9f2a18d6a1253866cfa83c843deff24da964", + "size": 709 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass5_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass5_enrichment_note.md", + "sha256": "ac297153f1787a2732d4f1f98346ff398bc31d19ca579d40feddf20e9b908e06", + "size": 798 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass6_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass6_enrichment_note.md", + "sha256": "22efc639f1d60324dffab53c580f9263caf81c342caecaea057931346c41092a", + "size": 1211 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass7_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass7_enrichment_note.md", + "sha256": "1d24e9368580bc4ffbc6a5659111a4a755c6a78c3fa632eb907fb403944191b0", + "size": 1023 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass8_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass8_enrichment_note.md", + "sha256": "164e247996968c8a5b32bb636d8fb3102e80670fc0835e41ff9e324ac426f74e", + "size": 1169 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass9_enrichment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_pass9_enrichment_note.md", + "sha256": "bf25b5b459025866e237566f8d0584a8580f7e28462c1d806a4f5ae87ed71e4b", + "size": 1203 + }, + "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_program_index.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_corpus_recovery_program_index.md", + "sha256": "14c66e35d95d4b66fbf3c452e6f9286a22b666dace515ae68a8d57aba19c33d0", + "size": 30975 + }, + "ION/06_intelligence/orchestration/2026-04-13_current_repo_authority_stabilization.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_current_repo_authority_stabilization.md", + "sha256": "6e5226924b81141bbb53b63e76ee3553f9eeede71cc835c99e2f2d2464706ac7", + "size": 2010 + }, + "ION/06_intelligence/orchestration/2026-04-13_fractured_core_recovery_map.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_fractured_core_recovery_map.md", + "sha256": "526a3b8b2df4fddfc622a90c6af1ee71d87c6d73e1c48bac032013e0c839923c", + "size": 1183 + }, + "ION/06_intelligence/orchestration/2026-04-13_master_recovery_record.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_master_recovery_record.md", + "sha256": "40d8d42f2dff4254c8232a8cc56fa57ddfb694b8958426bb3320455ad0acef87", + "size": 2304 + }, + "ION/06_intelligence/orchestration/2026-04-13_prior_audits_failure_record.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_prior_audits_failure_record.md", + "sha256": "58efbc24ea5dcd8e6b43d11592947d398c88b8b3ad9272f89e4c53f601f75317", + "size": 1090 + }, + "ION/06_intelligence/orchestration/2026-04-13_recovery_program.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_recovery_program.md", + "sha256": "f551a1f106b1f05176b117e390b8d9670dafa2d37b9c2e0750271114683c9765", + "size": 873 + }, + "ION/06_intelligence/orchestration/2026-04-13_staffing_and_semantic_identity_steward_consolidation_proposal.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_staffing_and_semantic_identity_steward_consolidation_proposal.md", + "sha256": "022d8b727bf324d8bc61db7797d13d30aa17055136820fe167256cead4b4dd0a", + "size": 4909 + }, + "ION/06_intelligence/orchestration/2026-04-13_startup_template_feed_and_task_routing_defaults.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_startup_template_feed_and_task_routing_defaults.md", + "sha256": "ee3299f18044ac77ffe2553e6eba4fc565c86febc9f5920eb5334267621a53ff", + "size": 4136 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_fifth_pass_role_and_binding_alignment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_fifth_pass_role_and_binding_alignment.md", + "sha256": "37b2fbf3772436c863a67120d3b3941bbe59dcb1bc0d6ea2a24a254a7998bded", + "size": 1077 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_second_pass_active_surface_alignment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_second_pass_active_surface_alignment.md", + "sha256": "46c51dbda835a153bc72b919bf933a94b7bef11369117c609fcc4a401bb8842b", + "size": 1293 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_seventh_pass_template_feed_and_routing_defaults.md", + "sha256": "c2140987f4ca0bd00cc560986b634b1d4deae4efa657c92cc937c2305d8208a5", + "size": 992 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_sixth_pass_role_field_and_path_normalization.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_sixth_pass_role_field_and_path_normalization.md", + "sha256": "1adcb3fa310534a8946de1a36454badd0f18eb98d860f9d1b9e85897e406d89c", + "size": 1521 + }, + "ION/06_intelligence/orchestration/2026-04-13_steward_third_pass_template_and_example_alignment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-13_steward_third_pass_template_and_example_alignment.md", + "sha256": "83d5fa8ae88f2d76151175857c85a1cd3705803076bb3a548322abe295550eb4", + "size": 1708 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass38_meta_template_surface_design_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass38_meta_template_surface_design_packet_note.md", + "sha256": "7f923ff8f62e1aebb545edf1c21265d63301a42f6fd21532c6c46d55b2ab0e82", + "size": 1208 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass39_activation_authority_review_draft_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass39_activation_authority_review_draft_note.md", + "sha256": "819ee8dd03add657c5959545bc884cb930235f67ebd9ea0135d6cf9bd9865cdb", + "size": 1277 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass40_executor_lifecycle_review_draft_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass40_executor_lifecycle_review_draft_note.md", + "sha256": "0866845df92a02292bda7138b822a2581819eda82a345b103d342be84eef98ee", + "size": 1532 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass41_activation_lifecycle_interface_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass41_activation_lifecycle_interface_review_note.md", + "sha256": "df7fe59c1e3e94777067aa7cb1e0ccfb1f8a7f03336c25978e438af7a30dfdf9", + "size": 1058 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass42_activation_lifecycle_joint_promotion_candidate_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass42_activation_lifecycle_joint_promotion_candidate_note.md", + "sha256": "65a23404bd3a79810b41e0cd13f53223b750411ce5e64e5d734ab15b8081403c", + "size": 913 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass43_activation_lifecycle_counterexample_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass43_activation_lifecycle_counterexample_review_note.md", + "sha256": "286df04517aa8d38316f99c7d0b432ffffd912ba06c31ee85e4a52495b9f60ed", + "size": 832 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass44_activation_lifecycle_carrier_crossing_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass44_activation_lifecycle_carrier_crossing_examples_note.md", + "sha256": "23607358df4148b9efd5f21b4336b5d446eff5d23800c7d9d5c76f06ed6b390c", + "size": 901 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass45_activation_lifecycle_receipt_settlement_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass45_activation_lifecycle_receipt_settlement_examples_note.md", + "sha256": "d2fe8131e952f78fc3862c35d412d145e8de0bbc69235cb0653c44ff16e4b683", + "size": 1421 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass46_activation_lifecycle_install_path_mapping_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass46_activation_lifecycle_install_path_mapping_note.md", + "sha256": "4b2e1693cbb103acda62f1196b577bfc6584d448a199c16b260c771393a7d118", + "size": 1327 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass47_activation_lifecycle_thaw_readiness_reassessment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass47_activation_lifecycle_thaw_readiness_reassessment_note.md", + "sha256": "b2230b4b465d007a0c74940fd701d094c8007f8a7e686ddd59ad72ef8601a1ed", + "size": 1155 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass48_activation_lifecycle_bounded_thaw_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass48_activation_lifecycle_bounded_thaw_packet_note.md", + "sha256": "73f1b820a410b2a46153285bb6756c4f2b780a9c51ab682a5cff5c2ed58f92f0", + "size": 647 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass49_activation_lifecycle_thaw_closure_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass49_activation_lifecycle_thaw_closure_review_note.md", + "sha256": "a78982e1162c6bd2ac41ebcd776d51022d96ee157ddb8dc75f20d2c26b7e62b6", + "size": 879 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass50_activation_lifecycle_active_law_emission_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass50_activation_lifecycle_active_law_emission_note.md", + "sha256": "46db5f5dc8e17ed8027bbb08af23ccc27765df0f705fd1575e72a20c0ca14288", + "size": 797 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass51_orchestration_board_reset_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass51_orchestration_board_reset_note.md", + "sha256": "48376680d20f23f525a7d14df2e96527fe6ba8359542f541f54c5fa9247f831c", + "size": 1059 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass52_branch_charter_pack_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass52_branch_charter_pack_note.md", + "sha256": "7477a7252c5dcd6a63fb6a09e06108b204e307fc419e039b85b0decd146dc72b", + "size": 998 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass53_lane_c_runtime_review_entry_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass53_lane_c_runtime_review_entry_note.md", + "sha256": "6235226cc47036acd8565f6c23a02219bb9cc83c01613519baaaf28220eebce5", + "size": 1218 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass54_runtime_seam_pressure_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass54_runtime_seam_pressure_note.md", + "sha256": "2e3545fd30352153ccfc34af3721ac9089f9ffb81cb6395df651f05626eb7b0e", + "size": 925 + }, + "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass55_runtime_worked_examples_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-14_corpus_recovery_pass55_runtime_worked_examples_note.md", + "sha256": "af68492cc4f14ff1405657a64783a8bda8908306c1fe9fabf3a6f4c193cc32f4", + "size": 1104 + }, + "ION/06_intelligence/orchestration/2026-04-17_branch_root_shell_vs_content_root_clarification.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_branch_root_shell_vs_content_root_clarification.md", + "sha256": "d03a5afdcf6aa1da012e48b327bf79be17703c00b03ea11220ca2cd3770c42e4", + "size": 4468 + }, + "ION/06_intelligence/orchestration/2026-04-17_canonicalization_decision_template_surface_change.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_canonicalization_decision_template_surface_change.md", + "sha256": "7f39ea3397c96954f360b9e9d55db37cc930200420c59e47b63e6cbfc8ede9e8", + "size": 2864 + }, + "ION/06_intelligence/orchestration/2026-04-17_class_c_operator_docs_selective_extraction_and_reanchoring.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_class_c_operator_docs_selective_extraction_and_reanchoring.md", + "sha256": "26e611a6e370d6f16cd550f89ae1526657c791dca7945f2862135776d4e76c67", + "size": 3432 + }, + "ION/06_intelligence/orchestration/2026-04-17_external_service_shell_vs_runtime_entry_clarification.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_external_service_shell_vs_runtime_entry_clarification.md", + "sha256": "641e0080f3bf05d935daadb86c27a7ede2a7e2ecd5521da274889ca5dfeac68c", + "size": 4700 + }, + "ION/06_intelligence/orchestration/2026-04-17_post_q005_execution_phase_readiness_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_post_q005_execution_phase_readiness_assessment.md", + "sha256": "ea494e372182cd33f8b61f753125941be11ae78b9b3f7b54ad01188ea7b404a4", + "size": 7962 + }, + "ION/06_intelligence/orchestration/2026-04-17_post_reintegration_canonicalization_state_forward_path_and_codex_handoff.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_post_reintegration_canonicalization_state_forward_path_and_codex_handoff.md", + "sha256": "8c92ad41e36a1eb48979a37a7db230692512dff43230259e93f7300d93bad6c6", + "size": 6893 + }, + "ION/06_intelligence/orchestration/2026-04-17_reintegration_state_and_canonical_root_assessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_reintegration_state_and_canonical_root_assessment.md", + "sha256": "88fed362d21e6f66703fd9b513aac71c911dc1225492f032e3d73e60f02175a0", + "size": 11014 + }, + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_current_carrier_exercise_receipt.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_current_carrier_exercise_receipt.md", + "sha256": "ce752e353c97df98be84025f7083f3f19a0c90334a8266b78c272ada47651703", + "size": 2508 + }, + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_external_carrier_exercise_briefs.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_external_carrier_exercise_briefs.md", + "sha256": "371a9fc54613f7e76f0ad016321d2d044f913037ec1645e001b71f541e04a4bf", + "size": 4484 + }, + "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_modeled_carrier_read_test.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_root_authority_bundle_modeled_carrier_read_test.md", + "sha256": "d927832c76846136c564eec41878055e5888e40a072c72b6b9ba9897dca94196", + "size": 4306 + }, + "ION/06_intelligence/orchestration/2026-04-17_system_lineage_profile_template_surface_change.md": { + "path": "ION/06_intelligence/orchestration/2026-04-17_system_lineage_profile_template_surface_change.md", + "sha256": "3103b75b1e92633785541e10968188cb7b7582c50f4afbc9ded85e1c0c2196e5", + "size": 2662 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass56_runtime_promotion_candidate_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass56_runtime_promotion_candidate_review_note.md", + "sha256": "2955d944f166cfa297052a6443c76024ee586a35e1223018e9ab73397e008e18", + "size": 1114 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass57_runtime_install_path_mapping_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass57_runtime_install_path_mapping_note.md", + "sha256": "19c14adc2562af275809cf61dae6b203ee7f0291e89085408149debcd99983b2", + "size": 1319 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass58_runtime_receipt_linkage_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass58_runtime_receipt_linkage_note.md", + "sha256": "d48222e75d858a2259d36819c97ed231551c290ca880225abac7ca50cf1e2ea2", + "size": 1286 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass59_runtime_negative_case_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass59_runtime_negative_case_review_note.md", + "sha256": "989cec2a118254f2d1b435a4361e8466b3d079deb1c3c93604df5da87ff36acd", + "size": 1392 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass60_runtime_pause_reentry_closure_and_thaw_reassessment_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass60_runtime_pause_reentry_closure_and_thaw_reassessment_note.md", + "sha256": "1355efebc59ec50cb2bff3d96af171174c870a9f5382ad1393335e018ca8f5bf", + "size": 1752 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass61_runtime_bounded_thaw_packet_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass61_runtime_bounded_thaw_packet_note.md", + "sha256": "e3c33b31e4dff0a03a8db14af05c56b3db8bc96839357e4c39a39ef47e55722b", + "size": 1252 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass62_runtime_thaw_closure_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass62_runtime_thaw_closure_review_note.md", + "sha256": "7d37ac9e6f9423a53249cf38007315662a2b9b1b4a4df0e70c77ef661513b136", + "size": 1122 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass63_runtime_active_law_emission_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass63_runtime_active_law_emission_note.md", + "sha256": "b52327e82543afac2614afbc20bb0c875fd1d7cece182b4b71d09771b9cb8e25", + "size": 907 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass64_post_lane_c_reassessment_and_lane_a_selection_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass64_post_lane_c_reassessment_and_lane_a_selection_note.md", + "sha256": "5d20cfc664716df6cf73752b449f1215bf4b4e5cda2464012dc3b7bcb2a456c1", + "size": 937 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass65_lane_a_recovery_first_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass65_lane_a_recovery_first_note.md", + "sha256": "8dc6a6a850fe69c0973995f9b4e1060b0d683b9a64d22182ae161a95e8ba705a", + "size": 933 + }, + "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass66_lane_a_bridge_repair_eligibility_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_corpus_recovery_pass66_lane_a_bridge_repair_eligibility_note.md", + "sha256": "179401b8d61437191d9462d32827a1e34d7773b4a531a3d557d34fd2984932c1", + "size": 939 + }, + "ION/06_intelligence/orchestration/2026-04-18_post_lane_c_active_law_emission_state_and_next_horizon_reassessment.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_post_lane_c_active_law_emission_state_and_next_horizon_reassessment.md", + "sha256": "3a717451a16af98dec8adbab7ee1b247fd7dd7d52a7370c18acfd04e70f66bb1", + "size": 5162 + }, + "ION/06_intelligence/orchestration/2026-04-18_post_reintegration_floor_state_and_next_horizon_selection.md": { + "path": "ION/06_intelligence/orchestration/2026-04-18_post_reintegration_floor_state_and_next_horizon_selection.md", + "sha256": "8a2aeb25807953c61a793bd2592eac327a3567e3e534ed1fdadf6337e52d2f29", + "size": 9514 + }, + "ION/06_intelligence/orchestration/2026-04-22_codex_current_phase_role_and_boot_retirement_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_codex_current_phase_role_and_boot_retirement_note.md", + "sha256": "2bc924bd7d4a1457f44da2be842eb8471ae441dd2fd54eeda1ee6d32f27b60f0", + "size": 2732 + }, + "ION/06_intelligence/orchestration/2026-04-22_current_phase_agent_roster_settlement_packet.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_current_phase_agent_roster_settlement_packet.md", + "sha256": "73d746471754b2b22883b77eced8beb7b8f50594dca09813c97fd5842c584b1c", + "size": 10055 + }, + "ION/06_intelligence/orchestration/2026-04-22_promoted_lane_native_support_role_continuity_normalization_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_promoted_lane_native_support_role_continuity_normalization_note.md", + "sha256": "c11a7fc45540ee497cdf6fd0ffb4b98c18464f63e4071ea3fafaac846793205b", + "size": 4310 + }, + "ION/06_intelligence/orchestration/2026-04-22_promoted_support_role_rank_refinement_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_promoted_support_role_rank_refinement_note.md", + "sha256": "a508804fb9f8054c17471305d2e978fed3314b2f436109f3b25255fb5549a23e", + "size": 3273 + }, + "ION/06_intelligence/orchestration/2026-04-22_relay_semantic_promotion_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_relay_semantic_promotion_review_note.md", + "sha256": "77eb742ddc0b309793ac438096a6974579d54b3a1feab7c27b231fcd0e9efcf8", + "size": 6530 + }, + "ION/06_intelligence/orchestration/2026-04-22_vestige_semantic_promotion_review_note.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_vestige_semantic_promotion_review_note.md", + "sha256": "354a1115e74c050a60930003eab31f4b2b05e1b0e96839e914b09fc9b8ae0bf5", + "size": 6763 + }, + "ION/06_intelligence/orchestration/2026-04-22_weaver_current_phase_disposition_clarification.md": { + "path": "ION/06_intelligence/orchestration/2026-04-22_weaver_current_phase_disposition_clarification.md", + "sha256": "02a288e2b4891cbeafd2498f3dcb696ad8dc4420e9fdc9a9c96cc7cdd5e9deff", + "size": 3136 + }, + "ION/06_intelligence/orchestration/2026-04-23_orchestration_surface_sync_after_lane_a_bridge_pair_landing.md": { + "path": "ION/06_intelligence/orchestration/2026-04-23_orchestration_surface_sync_after_lane_a_bridge_pair_landing.md", + "sha256": "a2557081d5cd42f986c0b177622c1984c0aefef2e724bb70cf50a2b694a43010", + "size": 3168 + }, + "ION/06_intelligence/orchestration/2026-04-23_vm_manual_auto_healthcheck_mission_report.md": { + "path": "ION/06_intelligence/orchestration/2026-04-23_vm_manual_auto_healthcheck_mission_report.md", + "sha256": "574ea291c7e7d5caac40e4e741ff68668a3dc7312681cc78401d5ad5b221aad3", + "size": 9094 + }, + "ION/06_intelligence/orchestration/2026-04-24_cursor_ion_demo_audit_and_build_mission.md": { + "path": "ION/06_intelligence/orchestration/2026-04-24_cursor_ion_demo_audit_and_build_mission.md", + "sha256": "1d0162eb37c51e28b48ff3d5488870ff668d8ce0e202bf6b6cf0aca4a4b7584d", + "size": 4932 + }, + "ION/06_intelligence/orchestration/2026-04-24_ultimate_ai_chat_demo_spine_plan.md": { + "path": "ION/06_intelligence/orchestration/2026-04-24_ultimate_ai_chat_demo_spine_plan.md", + "sha256": "50b9ef79e54726f8f63ef59033026436c35e4274418d847927624ecb2db08f3a", + "size": 2067 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_rootlaw_ratification_and_build_plan.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_rootlaw_ratification_and_build_plan.md", + "sha256": "45e88657d6903212ecd91a721209154b2037d58912bd2767eeb12c879437ec69", + "size": 8001 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_implementation_plan.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_implementation_plan.md", + "sha256": "031f854f0a28cee4d0c58ab4d5c2eff9a2c4edefb624702a76f9867364a6ab92", + "size": 3425 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_origin_recovery_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_context_graph_substrate_origin_recovery_packet.md", + "sha256": "f355ccda99a7a0f1c6b54be6c1c7f95e8f09311b3fa4b392657202a905a53be8", + "size": 8686 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_recovery_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_recovery_packet.md", + "sha256": "39d5a0d07f04d00c40ea2a7d47ce4666b4d1b10fefc3d9d7cdef3018c9e37164", + "size": 3760 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v10_bounded_commit_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v10_bounded_commit_packet.md", + "sha256": "c34ae9e08c5117f4c1a16da09feac2477af0887685fae4d3bb502e0b04af27b7", + "size": 932 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v4_operationalization_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v4_operationalization_packet.md", + "sha256": "3eb2d80d5a73f644d65d54f83c8100ea87f68b656d353a50fb600bee0ca8d21e", + "size": 3095 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v6_reaction_selection_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v6_reaction_selection_packet.md", + "sha256": "04ae72427905b1cf4705e19e3959a956cad9ae2c2c3e46c20cb8d628d245a8ac", + "size": 1096 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v7_projection_index_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v7_projection_index_packet.md", + "sha256": "304dde67c2d16cac8c4c47bc9652a1dee26ac81a7e567118b2ad59fcfd0c8961", + "size": 1354 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v8_graph_writeback_proposal_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v8_graph_writeback_proposal_packet.md", + "sha256": "94b6976c2ec371f4574ed10be11e1afad7ce51d4db298f5c23ad5eb44a30d33d", + "size": 745 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v9_review_gate_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_evented_template_file_graph_v9_review_gate_packet.md", + "sha256": "677fbbb02090563532833216bd1bf163769ee9a4526a1ccc9dc961143c0e21c1", + "size": 1564 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_origin_to_current_context_graph_mapping.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_origin_to_current_context_graph_mapping.md", + "sha256": "7135e98e745a5434bfb30631ec7747d072f354900a9733b00eae74884da62638", + "size": 2735 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_template_completion_event_phase1_implementation_packet.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/2026-04-24_template_completion_event_phase1_implementation_packet.md", + "sha256": "10a0f9492837db3d651d63cb86991db73a624ac172e547c068597272ba3b1f46", + "size": 2910 + }, + "ION/06_intelligence/orchestration/context_graph_restoration/graph_py_comparison_report.md": { + "path": "ION/06_intelligence/orchestration/context_graph_restoration/graph_py_comparison_report.md", + "sha256": "89da04024f2bcbc01d4151ce075f9a791655721ece0d18e5b62dc18d1e56533f", + "size": 5640 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_base_usage_contract.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_base_usage_contract.md", + "sha256": "f39b65baaa3c269d5034edb72dcb24c53ffebfe9d3c5a4adcae26a16cb4c28f8", + "size": 785 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_card.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_card.md", + "sha256": "686459768e7721f8e15e2182732910e2ef3a10417fc000054079f910d75a832d", + "size": 1696 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_lifecycle_demonstration.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_control_lifecycle_demonstration.md", + "sha256": "3fc416849b4a94d8e4059eea0e87b62ded6ca39977135287b9f7689acc4725e0", + "size": 1660 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_gated_work_start_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_gated_work_start_record_template.md", + "sha256": "ee1a0b3d383296d98b42b18d7f5523965b015e424d2352ec90e396fb81efacf2", + "size": 1055 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_operating_layer_transition.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_operating_layer_transition.md", + "sha256": "12a4713635cab4447da96eb3ef6b6af51292d9ee296148f7bf5696ea6b1f0b78", + "size": 1390 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_orchestration_horizon_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_orchestration_horizon_record_template.md", + "sha256": "fd2daff44796ceec142ea4bfd53fb4b720ece9b7a926df8a8fd11e1143727187", + "size": 1275 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_packet_gate_checklist.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_packet_gate_checklist.md", + "sha256": "cd7c9eaebf6ca029933658d7c30e9e383a1fe1e00f23e2a62902cb11e068a1bb", + "size": 435 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_work_gating_protocol.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/atlas_work_gating_protocol.md", + "sha256": "a17c44ec1c8032f8962395ca1b7964477e448ab57b7b31ba6eece429cbf4e5d3", + "size": 5279 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/bounded_extension_vs_illegal_reinvention.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/bounded_extension_vs_illegal_reinvention.md", + "sha256": "44e664afeee2a3c08e9cfd176f4564dd13f48f24cfc8759347cd1e52ed983c50", + "size": 2735 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_classes.md", + "sha256": "0cba1780417d7d738c24f6b54e89132d18ceb45d0024ec8149a0d7c218ecb93a", + "size": 4204 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_answer_output_defaults.csv", + "sha256": "53badf69841d85a709bcd1acf5ca9c0a57794cbf75dca98f8631da36913ac5a3", + "size": 1437 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_class_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_class_defaults.csv", + "sha256": "4cb952950db78ee1e5630c7e9dc1630ff6788be2061cef56ba9a9b286ab02332", + "size": 1766 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_future_work_question_classes.md", + "sha256": "dcb2d1526d47d51968eb72713079f959fd1f40ed6b93508fc26acbd902af016a", + "size": 4099 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_classes.md", + "sha256": "d45746cff4105a38d6c50b9dd3ee3b0c415bf34143557efc9df5b30faf410179", + "size": 3304 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/canonical_landing_boundary_defaults.csv", + "sha256": "1221ccd1addf6a145e661ab0d7f6e085596dd461d2fb945e37088737cfd01f3b", + "size": 1120 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/README.md", + "sha256": "19dbe54cc9cf434889495ed09fa86e6f21d264ae9ec94c2ff116660c5798a48c", + "size": 436 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/bridge_repair_current_branch_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/bridge_repair_current_branch_lifecycle.md", + "sha256": "74da304d2db0de5cc90f0d08019e85dc251f7455eb3f008323187b6b7e4cccce", + "size": 1768 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/consult_only_runtime_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/consult_only_runtime_lifecycle.md", + "sha256": "77d8641472222ad015ba2d709823dcc9fb1033f57a826c957f87538652016165", + "size": 1660 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/recover_first_meta_template_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/recover_first_meta_template_lifecycle.md", + "sha256": "2516e9ec10f7351558dfbdcb5b800c98bdbcff26c0c930bc6d7260515a544e85", + "size": 1603 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/stop_and_reassess_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/stop_and_reassess_lifecycle.md", + "sha256": "1f35a3c65567fbdba061985d2c1a84e719107e39f14d971bb47ac51baeb2bac1", + "size": 1148 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/widen_and_return_activation_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/control_lifecycle_examples/widen_and_return_activation_lifecycle.md", + "sha256": "e97f351dce1114972abf13e2f07ade3d91db714a10ebcdc016f9dec0ebabc1ed", + "size": 1290 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/default_project_control_kernel_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/default_project_control_kernel_judgment.md", + "sha256": "5f8b6572f5919ffe3d592533bbada0ec57d158776a6c794a5008753a17fc1b74", + "size": 2647 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_controlled_reintegration_transition_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_controlled_reintegration_transition_judgment.md", + "sha256": "f9aee9f16a37e0db236edbf2106907340e25b6ed2d70562a019f60203ae83d2a", + "size": 1296 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_reintegration_lane_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/era2_reintegration_lane_matrix.csv", + "sha256": "4f607fa4ef17c2d62ba3dca44370c10487ce51453fbe798fe1772c697ac26456", + "size": 1248 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_control_defaults_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_control_defaults_matrix.csv", + "sha256": "e2e21b57cbf6e8401ff87a153d275aa9ed1b2505cb8580de0d3054b9df42ae87", + "size": 2440 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_authority_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_authority_matrix.csv", + "sha256": "54a6f06a55eec51f1196d8e7dc2d3f2b9144ca70d6ead525a7e9e8c69220a8b3", + "size": 2714 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_completion_note.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_gating_completion_note.md", + "sha256": "f9b521509fc2b732fe549255d6a978afbfb9f2ea6004efb8c61307137dac7a32", + "size": 612 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_packet_requirements.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/future_work_packet_requirements.md", + "sha256": "52af47a8e5298347b4b4af17e9ae275ad881c729c691e1367e830ae05054a3ab", + "size": 4029 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/README.md", + "sha256": "b18022e4033caebe8f126a9f7397a2817f8a761f102c574bb43fe4c845c66663", + "size": 523 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/bridge_repair_current_branch_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/bridge_repair_current_branch_question.md", + "sha256": "1b32cf403895b696533bcb3fc0555be199c0d79a306b806587dda496870de5bf", + "size": 1875 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/compare_centers_activation_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/compare_centers_activation_question.md", + "sha256": "6324bc09cc05eafca1cd37c94af41df3560649c5f2eb20f55b0f372e5b97c242", + "size": 1728 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/consult_only_runtime_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/consult_only_runtime_question.md", + "sha256": "84b1464ea3871d1a8c374aaf7276a0a473cbc0c890327ec69e660b48cfa9565c", + "size": 1581 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/recover_first_meta_template_question.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/gated_work_start_examples/recover_first_meta_template_question.md", + "sha256": "e1a3cf757c0021b4d669df7933ea24a5e4f5a9d719fdb21bcfc0ed8f48720676", + "size": 1917 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_completion_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_completion_judgment.md", + "sha256": "d000aaa9a224d554d32995908b82aa1818f83d1ba71720c9bec18efc8cc1006a", + "size": 2429 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_freeze_manifest.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_freeze_manifest.csv", + "sha256": "109eef1a239a45d846aa788076929b1edde443bb5a19de4613e22f066dffed49", + "size": 1512 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_trust_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/milestone1_trust_judgment.md", + "sha256": "c497598ec722f3a0cad6bfff200a464154afda5bfcc946ba18bebde7b6a47463", + "size": 3193 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/non_widening_work_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/non_widening_work_classes.md", + "sha256": "25a4c1d6a235e311fe1261c403a14b60344667a2746645e2c8e24405fb7a37eb", + "size": 1902 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/operating_layer_stability_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/operating_layer_stability_matrix.csv", + "sha256": "fc20a95b6cc0ad1841d11ecdfb14e46c1a1511448b53dd051e20a79c29b3fe4a", + "size": 2581 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/orchestration_horizon_and_completion_requirements.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/orchestration_horizon_and_completion_requirements.md", + "sha256": "92a0945c9a02d53ed30e9de7b561a7075fae2338e834802eb6a7329a6a62243f", + "size": 2573 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_change_classes.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_change_classes.csv", + "sha256": "11988575f02723ca4a2e6379e8a98d606b4561ea6a98daca3b368f2d92114de0", + "size": 914 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_judgment.md", + "sha256": "f45b81873cf89aa17d56a7db23575967a29f9b825671ab30e07282e28408880b", + "size": 3368 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_matrix.csv", + "sha256": "418d0d2bd5e5b14ddc9d54b3047bda7f65bae4b4bbff9ec9f0fabb126a5ecdb6", + "size": 1684 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_escalation_record_template.md", + "sha256": "2c168055e0c161495dde779f3da34c6923b1706be74ac7b957fdeb409882f512", + "size": 845 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_judgment.md", + "sha256": "928b866ae2669fbd591d2acf61bef8869cb3cbe3e7263e4424b8fbd8af2f294d", + "size": 2593 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_manifest.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_freeze_manifest.csv", + "sha256": "5418c0883d18e3eb71551ee4aebd8988e4554e7ad60a657b7f113b2c55f97995", + "size": 1477 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_cadence.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_cadence.md", + "sha256": "c8600fa7e935e156b994f37efbc9bed7417667c6d478652ba24211b0712fd447", + "size": 2526 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_classes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_classes.md", + "sha256": "d6808cd2117d0e02b7cad8b1d1b8ca43fe813dd12fcf789fca663ee7cb7c6f49", + "size": 1672 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_defaults.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_outcome_defaults.csv", + "sha256": "b30ff7184b61223b6ed3b76419ff4a4fe98bdd9b52f88e4166c95ef250e6a779", + "size": 823 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_schedule.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_governance_schedule.csv", + "sha256": "0f34d7ca97ecb8d205b55ae67de8014ba8d8f1956f9dcbcaa9363b69e1f24c32", + "size": 375 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_health_checks.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_health_checks.md", + "sha256": "57c52440e486eaf930482bd33283baa2b1318bb0540a4efb568c84ce63dfb8ca", + "size": 1541 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_manifest.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_manifest.csv", + "sha256": "125975f305e25c284a50de6606defeb337e61ff9fe49468722b85a566527062a", + "size": 1037 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_reassessment_triggers.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_reassessment_triggers.md", + "sha256": "380f315745e3175f7a5e48c5c5f46df1b010ff4c8c940ff75f0ff2524b2e432e", + "size": 1957 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_return_conditions.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_return_conditions.md", + "sha256": "383ecac2392e0abafb4fbeea3c8f31fcee1c0db00132aa4cebe26bb6f407a9c1", + "size": 2955 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/README.md", + "sha256": "2b5f598db5fe3b63c6f9cae681b7ac85aca0a9c3906c071176b741dff59a3ecc", + "size": 272 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/defaults_correction_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/defaults_correction_review.md", + "sha256": "3c772d7bee0ab654196da383533b7715072550d816191f835eb9a9940798ae7f", + "size": 611 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/keep_frozen_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/keep_frozen_review.md", + "sha256": "e9476fb64dd0b2cd446e153c01d9011b399bc31f1cbb8927c4e7739ccb44393c", + "size": 462 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/revision_warranted_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_examples/revision_warranted_review.md", + "sha256": "f441015affe1e5fb1cdeaeb6cba90c2484cd78645c930418e0a615c22019f14b", + "size": 658 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_review_record_template.md", + "sha256": "d65f820e9f0c3fb53c11521a8d0b1599c6c83886ac8dc684406e804932cd93a0", + "size": 745 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_and_thaw_protocol.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_and_thaw_protocol.md", + "sha256": "5a8f29f24f4f27ba282321631d51205543570ebd78c8cdc3402a419d90a6cdcb", + "size": 2967 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_approval_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_approval_matrix.csv", + "sha256": "d3eeddbab56be3ac45144ea2682b5cc6960ff7d25709eb49a1e055132147089d", + "size": 1221 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/README.md", + "sha256": "9e481ab13b28905893e731f7640f590cb113817173ad0dc08bbb923d37d3a15e", + "size": 482 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/clarification_only_revision.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/clarification_only_revision.md", + "sha256": "e6e3d79f19e36173d3d6ee2699b769b4b39eefaf02c63d3c7da3187313b26d2d", + "size": 616 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/defaults_correction_revision.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/defaults_correction_revision.md", + "sha256": "17e994d88e0b11b7e5756dc4372c492ec7d822ab8ff72ce45c6509490c1b0c1b", + "size": 668 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/new_control_primitive_revision.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_examples/new_control_primitive_revision.md", + "sha256": "f61c1446823197b370c470d939d559f8c21c2e2dc89c5747d700179cd519876f", + "size": 805 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_lifecycle.md", + "sha256": "de88354dff90d8babb4d01f44ff6e5568435f351db98db122328d8f2783fd02d", + "size": 1767 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_record_template.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_revision_record_template.md", + "sha256": "69c2ed076eb8473ce53e07e19e6106040f06f05effffdfb66dd697785843d971", + "size": 828 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_state_card.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/project_control_kernel_state_card.md", + "sha256": "362d3fe68ab7c1117119f13e04f0c5ae9efd6cbaeccc3628f3a0cf5826af20d6", + "size": 2336 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_phases.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_phases.md", + "sha256": "582283f5f52e1179eb1396f8b8fdf6715325f237fae87bb519c02109c961cfd6", + "size": 313 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_rules.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_rules.md", + "sha256": "422a43a5bbf235be3bdd61758a1416fbe97547e50c9cb2e8550956da57336310", + "size": 271 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_scope.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_scope.md", + "sha256": "c8d0e49d8a9cfad8072262c1121e906ed523e41666f3f7aeefa16a4a55691657", + "size": 377 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_status.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/recovery_program_status.md", + "sha256": "70d77fd1cf38d643fd1422c6716107fc9345f56c7cca1aaeab9c1de8811876d7", + "size": 22743 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/stable_operating_layer_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/stable_operating_layer_judgment.md", + "sha256": "b44b1cc49c7f17040a46257bb4186ef6da3e18b7881f2fd2a1b256e779ee30ad", + "size": 3728 + }, + "ION/06_intelligence/orchestration/corpus_recovery/00_program/work_posture_selection_guide.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/00_program/work_posture_selection_guide.md", + "sha256": "249db32e2a912a70681e8b2ecaa080578dc25bf83763c68901f3d927c4cfa407", + "size": 3416 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_chronology.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_chronology.md", + "sha256": "051bd874274cc8be5cead7e1a32d4d7f6857f6cf692a498a6521cdabaeed30af", + "size": 2715 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_matrix.csv", + "sha256": "a05f13a9886eab0ce80ed464d344e26f4dad1f163f8707bf226aa7bbbee7f0d5", + "size": 3207 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_relations.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/archive_variant_relations.md", + "sha256": "9750698efc51314df6ad2b57cd3ad5489c8986169b5e7020da221afa8214d8b1", + "size": 2326 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/current_branch_variant_chain.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/current_branch_variant_chain.md", + "sha256": "eb1857a45a50aef01f8b1188f5e92a89a9b3b7f834f777148924064318ad94f9", + "size": 2511 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/master_archive_register.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/master_archive_register.csv", + "sha256": "e4c6093e23ff4b92f78760cd7f1e77f999061478e2a3c98a1f581d9e48e798c9", + "size": 6996 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_matrix.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_matrix.md", + "sha256": "1d1da747d78e25de7995baa62ee41da3d981d1a4d6b93b36c31624e51c46ccee", + "size": 1549 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_status_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/production_estate_child_root_status_matrix.csv", + "sha256": "f5fd36c3d42f7dde2b4a890d8e43891849733a0af3ee3bbf5a9126cad9cea134", + "size": 2294 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.csv", + "sha256": "cf695637a8d699ad1b2f308bcc960acacce4ce804166f3f82e8b8fb8c159428b", + "size": 3334 + }, + "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/01_archive_register/root_family_index.md", + "sha256": "67ad629556ebb39368efedea9ba6ab9b9a19bb0097197d14e89efc359bc4429a", + "size": 5776 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_provenance_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_provenance_matrix.csv", + "sha256": "ad5f2e85ea8f85056e33c36e5739b96b6455a2ca514d0d88ed26658947227c01", + "size": 657 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_relation_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/audit_wrapper_relation_judgment.md", + "sha256": "8778c209623deddca3836411a6bf40d1c63e94759c82611ed6f2f2f7acf63714", + "size": 1799 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/contradiction_ledger.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/contradiction_ledger.md", + "sha256": "723c62519acf4e4a9c29c84af34fb6e21391f7ce4a3293cda71c323c6dd3695b", + "size": 1350 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_failure_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_failure_register.md", + "sha256": "71a6c6d96fb4d8f57e1a73d7fa245a8b30a362ca25d03fc909cbc08cec879ee7", + "size": 1546 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_audit_register.md", + "sha256": "b47fcdf2180fd25128d47c5b09e1f6ce44e5b786962956885e47c4b623fa8ea5", + "size": 3028 + }, + "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_consolidation_outcomes.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/02_prior_audits/prior_consolidation_outcomes.md", + "sha256": "e0de8c5d6557ae45106e4db0433463810443d79570e47a9f613b50c564524420", + "size": 996 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/README.md", + "sha256": "33fd685110fa25086809cae31406dd9e9f2b04ac7220e3983e5574b71e76ba6b", + "size": 978 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/aether_os_v4_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/aether_os_v4_profile.md", + "sha256": "26266c30b9c65f525b54f92a0a69d8fae1aafba631fffcfcd18ca0fc08600550", + "size": 2172 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/atlas_systems_reference_library.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/atlas_systems_reference_library.md", + "sha256": "2fcdb17931284941231489bee81437536e09d6e25db104e57614dc1e9e63de6c", + "size": 1678 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/composeraudit_wrapper_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/composeraudit_wrapper_profile.md", + "sha256": "1e00dd37d19b4e6d438a6416524db9240564d370eacd623a5d6af4ea77377e86", + "size": 1380 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/conjugate_basis_hidden_field_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/conjugate_basis_hidden_field_profile.md", + "sha256": "04d6449cf32adcb4a338a8e72f052456fe535f74282d6c7e0110b26b855094fd", + "size": 1726 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/consolidated_atlas_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/consolidated_atlas_line.md", + "sha256": "8750077e50ce0856dde51bcf2808211584f570acdb0259aa71ea44b4142befd8", + "size": 2184 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/current_branch_template_law_kernel_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/current_branch_template_law_kernel_line.md", + "sha256": "eaf9220d245f5c196ce3317b36636f5773d2c55a46f225ce77f75d50ce7f0c2f", + "size": 1956 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/geminiaudit_wrapper_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/geminiaudit_wrapper_profile.md", + "sha256": "ab4f70d0fd66414f98693c3430c148c48b233f42b8e234805d25e97f8b976cdd", + "size": 1337 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ion_build_runtime_api_session_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ion_build_runtime_api_session_line.md", + "sha256": "f4f2dc10524d6bbd6ca7fa436ede0a3492fd7c1b413d758752ded38ba68a27ef", + "size": 2061 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ionv2_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/ionv2_profile.md", + "sha256": "fd217447b2b61db9a355fda8631923b872fcd7ea442ceac60e2dc6a136827f63", + "size": 1549 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/old_aether_law_atlas_template_development_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/old_aether_law_atlas_template_development_line.md", + "sha256": "7a9f0af2b2232a8139e1e6e626f82a936f5d7c287d8e520b82e794ecb2ad4905", + "size": 1997 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/operation_victus_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/operation_victus_profile.md", + "sha256": "da70008deaa6ab6da9bd02e23d47dd1fdfe131252387e61b9583775772e18daf", + "size": 1998 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_codex_precursor_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_codex_precursor_line.md", + "sha256": "b2c7e150e80122a80f4888b458af7a5fb427df63552c2f76fb47351a0015904e", + "size": 1904 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_precursor_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/production_ion_precursor_line.md", + "sha256": "44f5fe3ab228090c1a4fab635b5b9aca20c13ca32aa6eaad8273de64c008435a", + "size": 1822 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_gemini_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_gemini_profile.md", + "sha256": "1d75911faa06c8d966a818e3337c4a0d7177746cb9fbc707141d4475f2686ad6", + "size": 1623 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_opus_meta_consolidation_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/project_opus_meta_consolidation_line.md", + "sha256": "b401a63e4772b992b37c9124854664f8b2ef821b588f8101c1e2cfb672470ae8", + "size": 1921 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_family.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_family.md", + "sha256": "86b9578aad8048c5f13413cad7b1ee8580ff6803700c812160be907faede8880", + "size": 2233 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_gemini_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_gemini_profile.md", + "sha256": "386b3be39a1c0831291956ddd93de68eebd6ca0eee72c83b1fc4f1870a7c362b", + "size": 2156 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_opus_profile.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/sos_opus_profile.md", + "sha256": "b03d726568fb4b64cfa392200a869acdb7084f42abc159af902bf16983efee24", + "size": 2041 + }, + "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/victus_gemini_manager_orchestrator_swarm_line.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/03_system_profiles/victus_gemini_manager_orchestrator_swarm_line.md", + "sha256": "3e7b5800da664ce916bc185eb68c1b457f9e3707f7d873695b79296075ce1c72", + "size": 1898 + }, + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.csv", + "sha256": "d08389732287d8181a8c846ef29f3be91e4786f39312d74385fbf201ecd8ce41", + "size": 1291 + }, + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/capability_matrix.md", + "sha256": "eb6ba85b292d84c0a5990a0cf6f045db76770ab8a56386704abe8d49c458a231", + "size": 2607 + }, + "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/most_evolved_systems_register.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/04_capability_matrix/most_evolved_systems_register.csv", + "sha256": "6af3798ab08d1dba1f4d0b93dce2262e5a62ca5acef357ca6a382ca40883fcb2", + "size": 1246 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_meta_template_vs_current_branch_delta_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_meta_template_vs_current_branch_delta_judgment.md", + "sha256": "6b623069976bb58d0707dc8708c7e2eec98b1ff870cdcaf8dccf5d8ffa709027", + "size": 2386 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_template_development_exact_match_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/historical_template_development_exact_match_register.md", + "sha256": "f5173071ed73ac1f3c96f1da051583d3f9ae9481877aced966a0555dd4bc14f4", + "size": 1495 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_comparison_matrix.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_comparison_matrix.md", + "sha256": "c3cc9d2d927711270efaf9054678da7c4f5a7be87b9e4ff528948b345a3d1358", + "size": 2933 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_recovery.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/meta_template_recovery.md", + "sha256": "d227eca0d913eabf70dd92ab4fc98338f1ce2061170ea5a5e5522d42a4034918", + "size": 3135 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/protocol_atlas.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/protocol_atlas.md", + "sha256": "33450813c7c9cef16324080b49cb7c18aa7a65c780effa17eab9246dce2f6f72", + "size": 1624 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_atlas.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_atlas.md", + "sha256": "2b9bb494fd3aec14693513f46f4f70c590951bac413406879d0014aef98eb277", + "size": 1592 + }, + "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_surface_evolution_history.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/05_template_protocol_atlas/template_surface_evolution_history.md", + "sha256": "e0517c5ae0ca6f6fe50e49fffeaa6bbdc97cdb3d6039b6e612e23681d2585048", + "size": 828 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/compactness_vs_explicitness_conflict_note.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/compactness_vs_explicitness_conflict_note.md", + "sha256": "26c1ec48828676c3ed7867ce2a927090ae6a9a3b52739479d290e45dbb4517ab", + "size": 690 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/conjugate_basis_hidden_field_ontology_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/conjugate_basis_hidden_field_ontology_judgment.md", + "sha256": "795a115d9e8bf414a8aa354d398ffd7e5c86e1203b12733370708eea161b3fdd", + "size": 1639 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/linkage_failure_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/linkage_failure_map.md", + "sha256": "510c68a947f5bd46f6c390eb97c99d59cf33e8c39b9fce5845c09f5d321a781f", + "size": 621 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/smallest_values_constitution.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/smallest_values_constitution.md", + "sha256": "3e6c48e7a5725f54b80d56fee829114c3fad1cdde1a4a2b817acb24eb96b3578", + "size": 1220 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/soul_coherence_audit.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/soul_coherence_audit.md", + "sha256": "4b9fe54e4a35a83cd0e86490ec10938d2998d979e7da83cd49364e7256f9c3a2", + "size": 815 + }, + "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/values_loss_and_drift_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/06_values_and_soul_recovery/values_loss_and_drift_register.md", + "sha256": "5281d2ad08df654ff23b2ae5f61609010ac6d6b642885544cd1283da06578c9f", + "size": 1810 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_execution_policies_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_execution_policies_receipt.md", + "sha256": "f5a90a2bc52c70c14916631ce72f6594bdd71063b515eb8f0c160e816549b5af", + "size": 818 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_session_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/2026-04-13_ion_build_runtime_session_pytest_receipt.md", + "sha256": "2812eb1b4b4e7154114849a215693f5e14e1417916e7e17769bc22ff8e87ffb3", + "size": 1142 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/queue_scheduler_session_lineage.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/queue_scheduler_session_lineage.md", + "sha256": "98c583606bef7145b7ac88726aecfda6e2b443963135a5d38afb3afdd267e3b8", + "size": 532 + }, + "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/runtime_api_session_recovery_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/07_runtime_api_session_recovery/runtime_api_session_recovery_map.md", + "sha256": "5438af4c5fefe74f2116551cc41fa06cc158266d9606f807d2ef9bdf5dcf71ed", + "size": 1765 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_full_pipeline_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_full_pipeline_receipt.md", + "sha256": "98dded5d3ca2eca17db9466a783e4c86462a6cf24543a462d1c87a9ac4104dc3", + "size": 1402 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_orchestrator_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_operation_victus_orchestrator_pytest_receipt.md", + "sha256": "063e54ed8ff31611a1f8a13d836ed9a7306b15921cd8569b0b9d3b7241fd2a30", + "size": 1108 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_project_gemini_swarm_cycle_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/2026-04-13_project_gemini_swarm_cycle_receipt.md", + "sha256": "fda9dd52162ee16e5c6be71010faa72655bf69e78d1f1d8b2b271b29fbb7f5c2", + "size": 1410 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/activation_authority_center_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/activation_authority_center_judgment.md", + "sha256": "eff7eabd8dddb8bfb1dd9d7ba4e0e30004d3262c558c6a3b23be0631c65a332b", + "size": 2343 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_activation_lineage.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_activation_lineage.md", + "sha256": "1d0b7c88315a1c36eb25a0afaa6b881772834ab44d838c3d8767a701c6f2b778", + "size": 563 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_orchestrator_swarm_recovery_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/manager_orchestrator_swarm_recovery_map.md", + "sha256": "cf941b857faf27a40df95e3fdf293f6793e72e433911ee88d0191653d21bd19d", + "size": 935 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/swarm_test_lineage.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/swarm_test_lineage.md", + "sha256": "19bb22c02879eb69f414c0d9abbf0f62c25d682f1b039ec5ae5b95e1948f0bc5", + "size": 575 + }, + "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/victus_project_gemini_rehomed_fork_comparison.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/08_manager_runtime_swarm_recovery/victus_project_gemini_rehomed_fork_comparison.md", + "sha256": "63c732ae0c07478e94e7a9ab1de56c7b12708dac96c78e1619a85e905e2aaa16", + "size": 1586 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_judgment.md", + "sha256": "b68d0c8672404dfba409ff8438c992c03fb5a75a8b1efcc08d18897ad5a2de83", + "size": 3157 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/center_status_matrix.csv", + "sha256": "55ba5a558c4ab15351041a7886171535b66e9e3c0548f54b527f5bda5594f0ac", + "size": 3457 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/current_branch_vs_precursor_compaction_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/current_branch_vs_precursor_compaction_register.md", + "sha256": "835b53c4032c4963bb76e38f9dfceb8c545f9e3737527870234ad7c5129969e4", + "size": 1469 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/ionv2_vs_current_branch_compactness_and_loss_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/ionv2_vs_current_branch_compactness_and_loss_map.md", + "sha256": "60604fc7ccf6d902c397a33f4a74da57933ec239a1d9d032378e85fba759ad2b", + "size": 1539 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_judgment.md", + "sha256": "291eefc573de6b23999e7aeeb40c9ac9cd4e000290f1aa54c5fe828fbbe9ef9c", + "size": 2167 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/operator_burden_compaction_matrix.csv", + "sha256": "ddd243b0de431fb772ab726232775f7b790ffe3bd8f4ba66d433bbeffb7f60e8", + "size": 366 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/predecessor_loss_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/predecessor_loss_register.md", + "sha256": "f87f3f7e74d31aaeed958589c4a5d4590b8404c68e631cd954db87f343237f58", + "size": 766 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/supersession_graph.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/supersession_graph.md", + "sha256": "f6dbe14cb66fc551bb6a414003715d8805ed5a61efc9791a0960da9699b81a01", + "size": 662 + }, + "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/system_equivalence_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/09_lineage_and_supersession/system_equivalence_map.md", + "sha256": "cb18f1856560de9f84185b563e526b665a6beea5498afdfbc1fa8198df4b49c2", + "size": 614 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/README.md", + "sha256": "94110f6448ad1d19c57b55f0f0382b7920101e5c573cd42a195e3c8b6c66961d", + "size": 110 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/implementation_lineage_register.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/implementation_lineage_register.csv", + "sha256": "b8bf859dee0509bc9e3ab302866a323325ac610433be890c38a03212c089336c", + "size": 1033 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_aether_os_v4_runtime_swarm_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_aether_os_v4_runtime_swarm_receipt.md", + "sha256": "78c28909cbaefccccaa11f7c875bcf7f4d8e3ae55e066eafb296cf233dd8cbd7", + "size": 1138 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_conjugate_basis_hidden_field_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_conjugate_basis_hidden_field_pytest_receipt.md", + "sha256": "949f57d31918d399d3bd20b85d2f30f55b4b11a229aa8ffa202ad30ce7944e2a", + "size": 631 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ion_build_static_capability_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ion_build_static_capability_receipt.md", + "sha256": "7f4d164784697baf36f43797a4684621c9d2d95c70066fe88e2d40f4046fbc70", + "size": 852 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ionv2_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_ionv2_pytest_receipt.md", + "sha256": "a2fbb80d0c4ba33edbdfe39fd70fa6c502d576988b08bb4c2542ce761e08dd97", + "size": 1131 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_codex_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_codex_pytest_receipt.md", + "sha256": "c9b6b3ab980ad970c7b904aafb88807be30dc8df0a78fe5bffe9d6094a5d366a", + "size": 571 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_production_ion_pytest_receipt.md", + "sha256": "60ead74887f9166f8f2f82a44bfaa709ac926d190610996b765a26b3325ca7e9", + "size": 498 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_gemini_pipeline_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_gemini_pipeline_pytest_receipt.md", + "sha256": "c17bbcc41d17cae40fea477b5eb0e10d8738f291432240e74ef4e6c7bfcd9c9a", + "size": 532 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_opus_pipeline_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_opus_pipeline_pytest_receipt.md", + "sha256": "e0c9f4254926f9b198b2a4315e0ad5a035dade3887b17e2ef59e3b1958d65570", + "size": 543 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_pipeline_pytest_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_sos_pipeline_pytest_receipt.md", + "sha256": "081d3d888adbf6415abebf2966bf134dcab3c545b5c924e6722ffebb298ad4b1", + "size": 558 + }, + "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_victus_gemini_static_capability_receipt.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/10_runnable_proofs/runnable_verification_receipts/2026-04-13_victus_gemini_static_capability_receipt.md", + "sha256": "c1930768350aa68aeb071f4f8ef438bb885337784823199a8dfb85d6f95999cb", + "size": 1048 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_index.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_index.md", + "sha256": "5dfb3c9cf3914fabfd3c290b7134d095cf9adac634fc5782a0b830473ed806e0", + "size": 1869 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_read_order.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_base_read_order.md", + "sha256": "73f2761fd1f09758d2c5b59e5276433f33bc40f09c46e96d1e106fd483e07aea", + "size": 7385 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_control_surface.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/atlas_control_surface.md", + "sha256": "4236f08a56d2bcc98a1c94d7cc554e2ccb5d92521b60cd1e3171404774948e99", + "size": 5339 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_operating_kernel.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_operating_kernel.md", + "sha256": "1958341c0445b7dc013529d7d57d4517d1b3a57eaaa7fadb07534048b6221dcb", + "size": 1403 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_project_control_kernel.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/default_project_control_kernel.md", + "sha256": "690c78a4e47161fb0bbd1353c9c50f0f45d3e7a57078e88ef1cbc2fcc015b1be", + "size": 4074 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/era2_controlled_reintegration.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/era2_controlled_reintegration.md", + "sha256": "54f9474e5267c23f8e84dd1d239af5c769abf4ac87aa495a1ab5b6c055ee7788", + "size": 1798 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/frozen_kernel_change_path.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/frozen_kernel_change_path.md", + "sha256": "71cdc424d201884b05e22c2fc4f42ef7303a87ba79ce4a2490f862725b68ade1", + "size": 1132 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_of_ION.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_of_ION.md", + "sha256": "516a35490e4a34a8921ef8b162ae2dfd4e2ad29682edc093cdf5f21cfbb12a5b", + "size": 4320 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_semantic_map.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/grand_picture_semantic_map.md", + "sha256": "82d6ce91811dbcb34d2deb138f2efef3612fef68831c396d4046ee7caa4147d3", + "size": 463 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/navigation_guide_for_future_ai.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/navigation_guide_for_future_ai.md", + "sha256": "46851f565ce90c36fc64a663e699b3b8f5668d8a5fe9f205fb9aaa6a5fae1238", + "size": 1778 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_governance_card.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_governance_card.md", + "sha256": "02aec7c9d024d6edd650ec362766cf720c395a0175e6321c93d5e89c246a01f4", + "size": 928 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_lifecycle.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/project_control_kernel_lifecycle.md", + "sha256": "295f3745031b6d96b78519ef6cb1c59ed35bf650c5cfb12c3629ee8229088a5f", + "size": 1926 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_atlas_base.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_atlas_base.md", + "sha256": "6e5e19aee2dd121267ff1e96338decf1b6907527fee9227e69b46f76ef96a863", + "size": 6500 + }, + "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_center_selection_guide.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/11_grand_picture/working_center_selection_guide.md", + "sha256": "ac0e5506a43e98a791e11a686a603584cd65c81ade7017f4c15e2430384e17be", + "size": 1963 + }, + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/conflict_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/conflict_register.md", + "sha256": "4e4a98244611d18f9878c59fd7c639dbff5df2f4d40c6fb2175021ef8d0dbda7", + "size": 8756 + }, + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/missing_evidence_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/missing_evidence_register.md", + "sha256": "2ebca915c08fb6bb21f4a2122b6927c40522d8b37ef26d58fd5738eaa2992388", + "size": 3574 + }, + "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/unresolved_identity_register.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/12_status_and_conflicts/unresolved_identity_register.md", + "sha256": "6b54f67b3a457bf888933ff902934ed4f5cc53e4ef77271ea6cdb442f2f6cffa", + "size": 358 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/README.md", + "sha256": "194b8383680f7e54fd78a8941e6e8718a42513342a58f4381897fb250121d26e", + "size": 1239 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_matrix.csv", + "sha256": "dec7bc3f727b15b4a95400e6c4a7a2d0f81884c032f1a303ce47dd309bfbd64d", + "size": 2056 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_delta_packet.md", + "sha256": "44fa3a5fad853cfb06ba8c4fa7c5933bbb3c7bc4702db37b3f38270ac9c6ad69", + "size": 5097 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_transition_candidates.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_a_meta_template_restoration_transition_candidates.md", + "sha256": "370dc67b57cbcaafa962d08d444ce8fd7ab8e78aee02e66cb57e679205b5ab8d", + "size": 2417 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_matrix.csv", + "sha256": "3a25c8cbd2cbb23d34cdb66f6ad2a9bc175bd33bc13d87ce4fdfb42aeddc7241", + "size": 2469 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_delta_packet.md", + "sha256": "c52589d10503b756b76b54e8cc1ddec2473dd053a6a2e753246b9b1598a51b03", + "size": 6636 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_transition_candidates.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_b_activation_authority_transition_candidates.md", + "sha256": "9870494e42a775680cac5afbd7d32d5b2a5c62a32f7ae7188ae370575a2ff1e4", + "size": 2852 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_matrix.csv", + "sha256": "ed397064c150fdbb92b0e801398743cf88ab813d35baa0fa140a2569617b9406", + "size": 3025 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_delta_packet.md", + "sha256": "9d5b0838bcac43d46605e5365a0bb5ec6da856345c6c9ce1bdad5bdaacc02a5c", + "size": 7834 + }, + "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_transition_candidates.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/13_controlled_reintegration/lane_c_runtime_session_api_transition_candidates.md", + "sha256": "d724732fca89fcecd27232f1ae0c6d248e0cbcb03fce8ceee9da74635a462fb9", + "size": 3591 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/API_RUNTIME_ENTRY_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/API_RUNTIME_ENTRY_PROTOCOL.review_draft.md", + "sha256": "fd577f0d141fc415bcb89ee6d008c1e6cbb4d7a510cf1142a9c16a0f75199238", + "size": 2366 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/README.md", + "sha256": "407b7190ddec4b0715b36e90995293dc5df0be0c368a6e8add2d43cc0997f282", + "size": 534 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/RUNTIME_SESSION_AUTHORITY_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/RUNTIME_SESSION_AUTHORITY_PROTOCOL.review_draft.md", + "sha256": "3b04388cd1768a448400ba750d70929364e438d3da38df703955c27e77441528", + "size": 3011 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/SESSION_QUEUE_AND_DISPATCH_PROTOCOL.review_draft.md", + "sha256": "6472fe6c15c394d2ccc95336ac8baa6cc4d700e93588c0bba6839afd7b2df93d", + "size": 2321 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/runtime_session_review_boundary_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_quarantined_runtime_review/runtime_session_review_boundary_matrix.csv", + "sha256": "75c7694f4b2c3105816242eff04d5996aca329d289ea9fbe7ab7ad999a36aa3b", + "size": 1105 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/README.md", + "sha256": "76749667d2b7e8ea21eeba396afcdba8eae7a3edcad4e04b3aad0a8c71deeba4", + "size": 1564 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_matrix.csv", + "sha256": "74fad3b8b4267aaf23665f951e502b85813231fed787c3278fc74314696aca69", + "size": 1724 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_outlines.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_outlines.md", + "sha256": "78d9b3009f68d6d3790c136747b76bdf6b7a91097a9b8af54213fb8e4ce78cc7", + "size": 2937 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_a_meta_template_surface_design_packet.md", + "sha256": "c605b079c60735c009186c97579d0f7d8a72135b71a96a2e15e8222daecd0aea", + "size": 5243 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_matrix.csv", + "sha256": "26bc6d3165fdd1e3aa516133241d29a72fbc1b851c57b079e11065d6d4253abf", + "size": 1627 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_outlines.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_outlines.md", + "sha256": "f69059fef42bc5ab5a41550b4428a047b342e6fa5865fa3daf794637df0cd22e", + "size": 2671 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_b_activation_surface_design_packet.md", + "sha256": "f3491c873b334e574801198a4273301a45e6348aee0b25373a9944de4cb42542", + "size": 4732 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_matrix.csv", + "sha256": "687ae4138ee799ba56f7aed2e7cccd4b2d12a264b0bf7c11bb87a1a78b4fc42d", + "size": 1963 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_outlines.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_outlines.md", + "sha256": "0ee4512c059dd967cf2e062427d4b2b014d245ab6e03c0272e2c748ad8128ff5", + "size": 3665 + }, + "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/14_surface_design/lane_c_runtime_session_surface_design_packet.md", + "sha256": "18ec51e63ca9aee6543aa8017e0de6cc85b77129f9f237c1fbd0ae8a281d6454", + "size": 5296 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/README.md", + "sha256": "672a8a12cc2f3f85fa12337c71a7efd1645a8089832d8242036aea80714a76cd", + "size": 1296 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_matrix.csv", + "sha256": "5ff6e1fb86843a7dbc404ebdbb284b2da22706721e4dc21e40637750da177e9d", + "size": 1561 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_authority_protocol_review_packet.md", + "sha256": "1b636a461439bf5560fb644d2d29698de37bf4c1a7aa158ebb7c1e090220a266", + "size": 3450 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_matrix.csv", + "sha256": "2d21ce79381c10bccb49ecfe525deea3492e0381921655470c0e670ce9a2a6a5", + "size": 2064 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/activation_lifecycle_interface_review_packet.md", + "sha256": "78fe9f44ecdffc524775c6494c043b7a02bf09d6493430a77cf8fa8012a9a258", + "size": 3969 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_AUTHORITY_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_AUTHORITY_PROTOCOL.review_draft.md", + "sha256": "066578d3a4fc0eaee9ccbb8141e5b2be536ff8495881306a1e2bb4e353f695cb", + "size": 8755 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_LIFECYCLE_INTERFACE.review_note.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/ACTIVATION_LIFECYCLE_INTERFACE.review_note.md", + "sha256": "d8997875a3e7c8f25b508d5d2c678816f3fbefede38a56b36650b14d9f0b72ba", + "size": 2227 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/EXECUTOR_LIFECYCLE_PROTOCOL.review_draft.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/drafts/EXECUTOR_LIFECYCLE_PROTOCOL.review_draft.md", + "sha256": "65502f10a5105b582d804e65f77d879b3002e2bbf962c7e9df1851827f332868", + "size": 9800 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_matrix.csv", + "sha256": "9f5a68b7062e9f3924ab948c5b7363185d4cba3d585aa30ac4d38061c03063e8", + "size": 1820 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_quarantined_active_law_review/executor_lifecycle_protocol_review_packet.md", + "sha256": "7acf92cd532d8b3c9b327f1bd62a262dc156b4e5eba6e1eb25f4a59198addef3", + "size": 3768 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/README.md", + "sha256": "57bbb8138d608be7ee4580eaed6f82b843e51d3ba4dc2e542ac4accbff87528a", + "size": 514 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_findings.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_findings.md", + "sha256": "1a0e883b5bbb65e30fa54207d856864791ae7d7c6e8e328b7b000537c2acfcb4", + "size": 1581 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_matrix.csv", + "sha256": "5ed1b7d01f6f1a00f3c522d2564d21df5d246ab65e833798fea38f277994eca8", + "size": 1349 + }, + "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/15_runtime_seam_pressure/runtime_session_seam_pressure_packet.md", + "sha256": "ecd192b93ecc957d33df1388f4908d7643653b9d5f0776ec67a6561d78814054", + "size": 3435 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/README.md", + "sha256": "502d212cadc906227e0aee530f58c5300f2e4efb566127316c24d6327c668028", + "size": 761 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_matrix.csv", + "sha256": "45cca0d495fcd9d4c1c48fd0d28dacf7305bdee57da1b41efa356c1b15d0e721", + "size": 1879 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_promotion_candidate_packet.md", + "sha256": "864d63592050dada7dcf50e54d8dcaf577c7dfdceaa67be5c1f33f1cdcf39822", + "size": 3982 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_thaw_readiness_criteria.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/activation_lifecycle_joint_thaw_readiness_criteria.md", + "sha256": "7a35e6218cf5f579b25cbc4790d864fb89ce699b5cc5b444248b8559d7ae86a7", + "size": 1447 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_matrix.csv", + "sha256": "89d1f8d8f44e24c957bf387ceb3d8039a18f2f917aa199a12a6718b9dcf4d04f", + "size": 2673 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_promotion_candidate_packet.md", + "sha256": "3c26f1ea7e3776754ae7aec38116c94e9175699f467d5f23a6a958bcba2e21ad", + "size": 4746 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_thaw_readiness_criteria.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_promotion_candidate_review/runtime_session_joint_thaw_readiness_criteria.md", + "sha256": "580f83fdc98f368a7ae1b1f389f1233f6ac81b93e9cbb296188fe82ffcf662a9", + "size": 2113 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/README.md", + "sha256": "7743ca39acdf9c679c18aed963a632d6e437e49db163707573deaae951072a1a", + "size": 613 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples.md", + "sha256": "4263b69939a23e251822d9a53cc7c5d83367bc5d765f6407ec06063e929650a9", + "size": 5775 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_matrix.csv", + "sha256": "63348cdc4b26d39502f2539b3f0f9de1c7a773b4e417c5eebcd86b60450d81d0", + "size": 1233 + }, + "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/16_runtime_worked_examples/runtime_session_worked_examples_packet.md", + "sha256": "7eff449f4a38e650543ed243dc1b37b93fe9bbea564d23857247b8f0c26327d3", + "size": 2787 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/README.md", + "sha256": "486c87c53f6c14e179999551e090e4762154ac156a862236a177d5b01b9fba03", + "size": 809 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_findings.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_findings.md", + "sha256": "1463639051259fd5ac37b05f543c1182b57f923ae1ab1a4db3c7c5bc097018fe", + "size": 2059 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_matrix.csv", + "sha256": "003825584c720546313a6bc8383df2928d8f97a60cab164fa97e18aa0ffeb8b8", + "size": 1503 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/activation_lifecycle_overlap_counterexample_review_packet.md", + "sha256": "41d32f20d36a70051f69b4ec7991f044426f5ad83d38d34be6671f8536fa246b", + "size": 4337 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_findings.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_findings.md", + "sha256": "b173c45307ca60eeca450bc43d233a285bead349c19d81863e802c352901daa0", + "size": 2401 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_matrix.csv", + "sha256": "912e4386a62835b57b3b2d052bb4b3085cae404edd43636e7bf237378fa7b68f", + "size": 1871 + }, + "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/17_counterexample_review/runtime_session_negative_case_counterexample_review_packet.md", + "sha256": "56ea2a2b0bf1ede19b1ffeb0b1c69269c47b7a30a21c52a20d062c184a424ca8", + "size": 4532 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/README.md", + "sha256": "697a73d04a907c27b7026cc2b04e6752a1f260ecf30ba720b8cc12156910b5d4", + "size": 710 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples.md", + "sha256": "b7862d76c5a4c12f30e789c12cc78c3af39e61379c1e61266fc5036c1b8ebec5", + "size": 6840 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_matrix.csv", + "sha256": "8959eb172e8253a617fd01307c09eb554132e51bee8f1b1c739a7039ed68508f", + "size": 847 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_carrier_crossing_worked_examples_packet.md", + "sha256": "cf7083e2a0b9f87fe91e5106ac53e1fc7f1e51b58ccdcc175031ec69f3f9da77", + "size": 3311 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples.md", + "sha256": "c3fa556aaaaf8f370b3a6fb81de94cb168b26069a8e8d0e4b50be233d5034bb4", + "size": 7419 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_matrix.csv", + "sha256": "5d568870aee60deb7778cc8c4fbd16d0d696b9d5c18bea7d384d9615ce40a38f", + "size": 1194 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/activation_lifecycle_receipt_settlement_worked_examples_packet.md", + "sha256": "5def0528e9ef2515f6779819300dd2c8026c9c78f2744b110379349e7ec7b58c", + "size": 4075 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples.md", + "sha256": "43cd2fcd91ff6c18d3d6640c501a49942148079c11f5e72e01a7e16a4f08cbf1", + "size": 7457 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_matrix.csv", + "sha256": "0b36dfe6a57b63c07f8ed9b95dd48c4cda1ade53ea814f2d015e2fb49b2880bb", + "size": 1228 + }, + "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/18_worked_examples/runtime_session_receipt_linkage_worked_examples_packet.md", + "sha256": "6e6e67bec79898b1dee08a546a7b29ff50e6053aecab9e9a34f27fb1bc97cadd", + "size": 3805 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/README.md", + "sha256": "003c79b729b362169973d18a5cb893d64d13db8dc858d8ea3c95f785a1d68e56", + "size": 811 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping.md", + "sha256": "36b65af08315c18231a3a878c0bd507340c1b9df7f64c7d4a572f9f4bcd7860b", + "size": 2647 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_matrix.csv", + "sha256": "4018fc0dedd09f95b79a268cf9a79b21775d4b4770aadc676456487472846ba9", + "size": 1668 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/activation_lifecycle_install_path_mapping_packet.md", + "sha256": "44d38c88939af3105a32ecff4c22fd6c55378c3abc2b9f6cf48db376ddccc4e0", + "size": 3961 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping.md", + "sha256": "1adaf1a198ded4ab59830647d8e829ed1528c95234b53582613e18ddfb7c319d", + "size": 3650 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_matrix.csv", + "sha256": "9febf841f470e0fce7e171f2d03bdd0fd8c7c69a9ca46d874857d81f944230e4", + "size": 1749 + }, + "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/19_install_path_mapping/runtime_session_install_path_mapping_packet.md", + "sha256": "63974d727ac8e027b6410eacd695751f5d4b64ab17f84f3b50f99ffe84a40889", + "size": 5338 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/README.md", + "sha256": "fcd7c19e026cde1560d52f118afee8e33d109f8c65c5262fadbcc8581effdd63", + "size": 738 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment.md", + "sha256": "a8ef6da796b58ea0a2074e8687ae7489f5a94bd0f733f7647394206ee8afa555", + "size": 1842 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_matrix.csv", + "sha256": "a6b4179ad6b83a2d50b2b2175cadd2ed3ad815dd725a876b52d866424315ccfc", + "size": 1281 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/activation_lifecycle_joint_thaw_readiness_reassessment_packet.md", + "sha256": "9b756560be090b40a6c3c335ccc29260a0b5442bcc2e8256bb52153ba95b0eab", + "size": 2958 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment.md", + "sha256": "cea8bb719cee985c996e0a6cd0c799962ef953ae222892665663625a6daa8da8", + "size": 1899 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_matrix.csv", + "sha256": "f186583b400819bca05ca96dc704bc55e335891c134f1aa14ccffec2a02cc37c", + "size": 1351 + }, + "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/20_thaw_readiness_reassessment/runtime_session_joint_thaw_readiness_reassessment_packet.md", + "sha256": "4a3bd637c96127e25de50f99cc7ab243f6dd98ef55b0d19ce7b84c38c2ef2948", + "size": 3181 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/README.md", + "sha256": "8b2be6e3e1c6e352a1c49e1702584881bfa046db94fca0558c48f123c12cf9f7", + "size": 714 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_adjacent_edits.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_adjacent_edits.md", + "sha256": "dd36fa3a674befde63e3b33a1eb325e3eb26a1ed74248e864ad4ac34b5c3c3e9", + "size": 2498 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_judgment.md", + "sha256": "7983291f301ba1351e441ea113882d548fce67d547fe633f157d8da8b907ec5d", + "size": 1193 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_packet.md", + "sha256": "ec91ddcf12bf3eabaefc32d5cf6e043431fefe6342127ac3219c056b1b721fd0", + "size": 5077 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_touch_set.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_bounded_thaw_touch_set.csv", + "sha256": "c3ce2270b5548952a86879e33fdfade69f9b5a1878f3323f743cc5611bb0c9ce", + "size": 1473 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_review_only_remainder.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/activation_lifecycle_joint_review_only_remainder.md", + "sha256": "87f4d15b93a1557b8f426ad54ba985556f98619624f55fd24b91885f2e386a35", + "size": 1319 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_adjacent_edits.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_adjacent_edits.md", + "sha256": "a10dff3b7a3d9de532feafb6c665ef78cd1347fe5496e867099d21e319d07d9a", + "size": 2923 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_judgment.md", + "sha256": "3f4fbb6f1286b2ba6d946f1fff30a55c808856dd2c93d5f004e40b827e139b26", + "size": 1246 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_packet.md", + "sha256": "7ae53fd1184fe556f78614369b503f4e8ee3fee52a1b78609f0e116032203cf3", + "size": 5863 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_touch_set.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_bounded_thaw_touch_set.csv", + "sha256": "00f9cc3a9c17ed19a18dc9cd19fe153af4781dba1c84359b936dbbdcfcbed09f", + "size": 2331 + }, + "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_review_only_remainder.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/21_bounded_thaw_packet/runtime_session_joint_review_only_remainder.md", + "sha256": "d3fbf71b48e59b6f1821c3c3dc9f205aa5f75ff757bf27982c8a112e6cbe702c", + "size": 1096 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/README.md", + "sha256": "df42866b953e348185dd10fcfea825237866503b9e571827eda08c666b428517", + "size": 484 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_judgment.md", + "sha256": "c543c298a0b8f5945561d534b1c447b4c08334181005cbf3449108e7ee568c24", + "size": 1181 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review.md", + "sha256": "62185617c019ce6faccde18b99d8ec4a322c3372f2490e50cd6cd6a35409be84", + "size": 1876 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_matrix.csv", + "sha256": "bb5e39960229562f3b0a6747f9432bdbcb1c41426b9d9a6e1fa379657ebb919e", + "size": 948 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/activation_lifecycle_joint_thaw_closure_review_packet.md", + "sha256": "ed64f76aa78e60386d0f7d67fedba3cd8e148389e8f3800f0d387de78241a951", + "size": 3974 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_judgment.md", + "sha256": "64f4859fd00e7eedc267a9fc1c32ddfadd7b35c600015d44f903b046cacc4032", + "size": 708 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review.md", + "sha256": "d29e4ce39a110d352f7ff1ac9d3ab1b148d5c88e0dcf703af1c3c9d50e3f7a69", + "size": 1716 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_matrix.csv", + "sha256": "ae6bea7801f32f266133c5ce41c3309fd8b751e4b226d69acfb12c4f5607527c", + "size": 1048 + }, + "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/22_thaw_closure_review/runtime_session_joint_thaw_closure_review_packet.md", + "sha256": "fcd021008b05a01635b6bfdabcec08ed7d23664badcf929e71e2ad292647ca27", + "size": 3412 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/README.md", + "sha256": "2a54ebcc920e13854b2905e466883088f48ba9a83cf112cc28ca72e2698255bb", + "size": 595 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_judgment.md", + "sha256": "f54baec499820de99baef7f0036c995c058f412860684eff59c0d7a4198be1d3", + "size": 718 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_matrix.csv", + "sha256": "7834e699fc24214584f66176e110739b0c0dddc0d118252b1a489009cc271bbc", + "size": 1017 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/activation_lifecycle_joint_active_law_emission_packet.md", + "sha256": "38727fbb4daabdbb3bf03c5998d7e32009c087489c0bb4d54572dbc3f569f108", + "size": 1090 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_judgment.md", + "sha256": "1838e415b523f25baf80944563bc291926f4051b895fea279b2979f74f994e39", + "size": 906 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_matrix.csv", + "sha256": "4072bbee6bccb7f2a5028f382f4f239ff361e7d1bf7708a165fb19adf29501ca", + "size": 2001 + }, + "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/23_active_law_emission/runtime_session_joint_active_law_emission_packet.md", + "sha256": "24597c7071cc25b59875aacdf1bf41b0a364791351cad7e04b846942802f333a", + "size": 1384 + }, + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/README.md", + "sha256": "d3d2774f06365f4d826413acf2dad90bd04037118b813faa321789a58903f3bf", + "size": 471 + }, + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board.md", + "sha256": "b8c420981eb4f9252a2294df94001dd4befac623e379fd7721d04d67d2c116cb", + "size": 10385 + }, + "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/24_orchestration_board/current_era2_orchestration_board_matrix.csv", + "sha256": "ae4419947683022d9ad90933a0c93b8880e968a2a69b75236e091f2572b45020", + "size": 1109 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/README.md", + "sha256": "a1f674586f2795dcca5783431cf108c01d4c90527ffbfb14b881d07425cd7ba6", + "size": 1863 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/adversarial_audit_branch_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/adversarial_audit_branch_charter.md", + "sha256": "77f9394818bbad8cc6ece66bd8a0d00fa3994701544d7157accc3817c291a447", + "size": 986 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_charter_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_charter_matrix.csv", + "sha256": "c7078ca46916bbf94c5bb35a765b731357b7f6204a62de563b8584a2af7dd897", + "size": 1685 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_output_contract.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_output_contract.md", + "sha256": "6775b4aaa0bfcad662b2e2e27363a0e801332e9342f870c8b30f62dd35a871c0", + "size": 1024 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_start_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/branch_start_packet.md", + "sha256": "c513c15e868c7335f36a84c79046e5cfa3ebebab03982ddcd035d995029d8f75", + "size": 1022 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/conductor_chat_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/conductor_chat_charter.md", + "sha256": "a509f6858c7b01073cebe7884b1e30b330a37f495bbb0e56abb06cc147d2da47", + "size": 1474 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/current_parallelization_strategy.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/current_parallelization_strategy.md", + "sha256": "a11ea38b8efcc4390c378d2fd04a5a7129144f1c801ba142e892945dca55c667", + "size": 1717 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_a_meta_template_branch_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_a_meta_template_branch_charter.md", + "sha256": "0cf978d6a9c7473f11a33f6f522a057c4262289196dbf7afd4e1d16cc7e30aea", + "size": 1253 + }, + "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_c_runtime_branch_charter.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/25_branch_charter_pack/lane_c_runtime_branch_charter.md", + "sha256": "f2d7ec0c905b1110217226aefc7b300e97ea2a813750d8147c13ffad63a86488", + "size": 1528 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/01_constitutional_reintegration_and_canon_foundry_proposal.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/01_constitutional_reintegration_and_canon_foundry_proposal.md", + "sha256": "ec508e7adaa1008906db24ffd1d155c8c4714c66c0848b6daff624a75cb84ea9", + "size": 12748 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/02_ion_estate_build_lines_and_root_status_assessment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/02_ion_estate_build_lines_and_root_status_assessment.md", + "sha256": "ed20b312044be130153a803528be35d42ee4783e607b377930d2d8b6d89eb3a3", + "size": 13123 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/03_aim_os_and_aim_ion_comparative_integration_report.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/03_aim_os_and_aim_ion_comparative_integration_report.md", + "sha256": "7801f0d39411f02e81fa3038358daf9ae0080947ce208f2fbcc79dc410b33524", + "size": 11412 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/04_canon_foundry_operating_model_and_registry_stack.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/04_canon_foundry_operating_model_and_registry_stack.md", + "sha256": "3e384e89674e4037e380106476b688d9d2b05186fcca293510c5ee736af138a0", + "size": 10199 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/05_ion_future_evolution_timeline_from_reintegration.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/05_ion_future_evolution_timeline_from_reintegration.md", + "sha256": "8b34f67fef7d1a720f9b751adacb000710f60653424d0d236207cd6d4c1a5cb9", + "size": 8686 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/06_decision_gates_open_questions_and_first_execution_order.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/06_decision_gates_open_questions_and_first_execution_order.md", + "sha256": "f5f3a6b34eea20e02552a1627ed3fb6f3c1f60f707df0f1274db924a75d66b33", + "size": 6113 + }, + "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/26_constitutional_reintegration_foundry/README.md", + "sha256": "e97d096dcf98a768e37d6aff7fa33259c33ee89fe88d6ecea49e7524d9a4480e", + "size": 2449 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/README.md", + "sha256": "cb18e3691935127d3efadca298d7c62544892eccb8c49e10161aedfdec45bfbe", + "size": 359 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_judgment.md", + "sha256": "8a25c1935c30d93327444c1f743006646960df294a771bea75a9a7e92fc8ccce", + "size": 645 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_matrix.csv", + "sha256": "40ae32cb11f0b5e494bdea52d710c617b67cfeb577fa1c4c1d0f538c6a29a47e", + "size": 605 + }, + "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/27_post_lane_c_reassessment/post_lane_c_next_lane_selection_packet.md", + "sha256": "be77245c717a7fa42711cd366d4457907e9a47cba5e0e93731231b50a122eae7", + "size": 3093 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/README.md", + "sha256": "0e28a7a1b7187e288f88c576c7f06c38f12e234f17775850b526cf933c9b9b0e", + "size": 378 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_judgment.md", + "sha256": "1ee6b9c9eb4363185fdac697de0f32e1e5bb5d98f13760a0efc4e85d2911e9b7", + "size": 849 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_matrix.csv", + "sha256": "928f8d74270b8b39f6f6e1a803831b8b5abc15bb4e45f08fa103ce396fc71d1a", + "size": 1552 + }, + "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/28_lane_a_recovery_first/lane_a_meta_template_recovery_first_packet.md", + "sha256": "fb92c469fbf508624fb52437eba6d72d9d6ad7b8914e43576dd5cea57326344d", + "size": 5294 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/README.md", + "sha256": "d3a68a378aaac5f3d8f76d159702e4bf5ccda80e85cc80ff0f507fc6bea2f2e7", + "size": 391 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_judgment.md", + "sha256": "0e9ae5316ee54a52c00b3c2f1a2b2c2cb7129230cc9324c528eab59cf9a5365e", + "size": 595 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_matrix.csv": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_matrix.csv", + "sha256": "e47bea48734b9ff05f1cf49b199047ff40dffa97660ae9e8690b2d108ea61f54", + "size": 844 + }, + "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_review_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/29_lane_a_bridge_repair_eligibility/lane_a_bridge_repair_eligibility_review_packet.md", + "sha256": "94fbe48802a74a3aa638837f2075fc62a2e1af36e093612b52eea2d32ef51f2d", + "size": 4043 + }, + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/README.md", + "sha256": "e67495ae2a83cccb8c938f5f38f311ab69feda4167143d8abaf9514ca20e5680", + "size": 548 + }, + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_judgment.md", + "sha256": "4f197897714d8ee232f0cd6cac2de56dea3312d7ab1178eddb10451daceee819", + "size": 854 + }, + "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_reassessment_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/30_post_a1_lane_a_continuation/post_a1_lane_a_continuation_reassessment_packet.md", + "sha256": "063b4b445287bce9c12502edfd62571592c29e7236e7eea8fcbaddc03b36c6ed", + "size": 6347 + }, + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/README.md", + "sha256": "e6d0f1f4c2f7baff0fbb719c9bfe125c9b00878dc54bb29feb04c0c82cb46e43", + "size": 560 + }, + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_judgment.md", + "sha256": "a11885b25a2d20bf23945aef715315e1a7806dd02c278843a77727979134dbc5", + "size": 1489 + }, + "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/31_single_carrier_full_spectrum_rehearsal/single_carrier_full_spectrum_rehearsal_packet.md", + "sha256": "55e558c13b736fb8d7f8000f42f6c8c0778be2f1121ca9f78d1373d9e6fa93c6", + "size": 8751 + }, + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/README.md", + "sha256": "6a8405bdbe0720510fe4ca1ca8304aea366d16b34a4008c949fc4621010b9da8", + "size": 478 + }, + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_judgment.md", + "sha256": "35cb3fef3433694b1b51d6cba9d18e9fa6acc32e2bddf6e96157907d7ed03a8a", + "size": 2217 + }, + "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/32_single_carrier_full_spectrum_protocol_landing/single_carrier_full_spectrum_protocol_landing_packet.md", + "sha256": "be59e718ac82e6e93b5a2f1e7b4a5b3ea005df4009ab01063dcbfba22ff478bf", + "size": 3656 + }, + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/README.md", + "sha256": "8cb787572d805141364d5685902b10a0a2a7a2d9a31b04e00143279cf578943c", + "size": 541 + }, + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_judgment.md", + "sha256": "6d17c0465af8e052aa5f6b3c8a280798267a5cc6484d69100df2682fe8839166", + "size": 1633 + }, + "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/33_persona_front_door_correction/persona_front_door_correction_packet.md", + "sha256": "19e3b89f39e29fa157920c3ea0716a3b48a66970dcbc0d05112b4cca171c9516", + "size": 2814 + }, + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/README.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/README.md", + "sha256": "69bdb86e20bfc523e41d1cf6c699ce30a38600f8dceafde1d62de07117975478", + "size": 569 + }, + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_judgment.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_judgment.md", + "sha256": "154f815752228a41250c0e82bf6e09bdb7f27e6717fdaa9251ff7654243b78be", + "size": 2152 + }, + "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_packet.md": { + "path": "ION/06_intelligence/orchestration/corpus_recovery/34_persona_fronted_live_use_proof/persona_fronted_live_use_proof_packet.md", + "sha256": "6ad13b5ea380a3345f77ab8026fca0221ebd7d178bfa0f7b065aca14b2613749", + "size": 3900 + }, + "ION/06_intelligence/orchestration/custom_gpt/00_CUSTOM_GPT_PREP_INDEX.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/00_CUSTOM_GPT_PREP_INDEX.md", + "sha256": "22ef2ea98edd0bc25c1ec742428b07267bc52c34671022db80c497ac68c7b204", + "size": 2968 + }, + "ION/06_intelligence/orchestration/custom_gpt/01_CUSTOM_GPT_READINESS_ASSESSMENT.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/01_CUSTOM_GPT_READINESS_ASSESSMENT.md", + "sha256": "04da1be297252b0f845b7eb437629e385d6aa0fbb2d19ff1dc8aaee7764517d3", + "size": 2697 + }, + "ION/06_intelligence/orchestration/custom_gpt/02_ION_CUSTOM_GPT_BUILD_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/02_ION_CUSTOM_GPT_BUILD_SPEC.md", + "sha256": "8ad45e5f8e4853ccfb2a7e3fdb30d89753bde92fa2781fd32d9865ce4777a167", + "size": 2783 + }, + "ION/06_intelligence/orchestration/custom_gpt/03_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/03_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md", + "sha256": "6b4f31fb347ebad7a64a11d026301fa9b6ab4ea783f1fe5a256446b2a897b4a4", + "size": 1736 + }, + "ION/06_intelligence/orchestration/custom_gpt/04_WORKING_CONTINUITY_BUNDLE_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/04_WORKING_CONTINUITY_BUNDLE_SCHEMA.md", + "sha256": "b037526b0030486c8002bc5e3ebbf06b64c11e357b2d4aa133c4b382ef4a1c2c", + "size": 3079 + }, + "ION/06_intelligence/orchestration/custom_gpt/05_VAULT_CONTINUITY_BUNDLE_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/05_VAULT_CONTINUITY_BUNDLE_SCHEMA.md", + "sha256": "4d96d9a96f8b61bdaba305b5d480fbaa19392e6dd5ef33d99169e04f9da1500c", + "size": 2163 + }, + "ION/06_intelligence/orchestration/custom_gpt/06_CONTINUITY_EXPORT_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/06_CONTINUITY_EXPORT_PROTOCOL.md", + "sha256": "d57578b45d7b4085a7910eac1a73ecc50d3f0563f3fb515d4861d5456a329554", + "size": 1700 + }, + "ION/06_intelligence/orchestration/custom_gpt/07_CONTINUITY_RESUME_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/07_CONTINUITY_RESUME_PROTOCOL.md", + "sha256": "bab4c4d8a9376e773fac07f929223caed2635dac1ec2a4a71f042064957c330e", + "size": 1509 + }, + "ION/06_intelligence/orchestration/custom_gpt/08_ACTIONS_DECISION_TREE_FOR_ION.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/08_ACTIONS_DECISION_TREE_FOR_ION.md", + "sha256": "3e4513430f683a227495e153c4710c4c70a1457607e97b03ab840ede924061b7", + "size": 1817 + }, + "ION/06_intelligence/orchestration/custom_gpt/09_ION_CUSTOM_GPT_INSTRUCTION_TEMPLATE.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/09_ION_CUSTOM_GPT_INSTRUCTION_TEMPLATE.md", + "sha256": "e99ee4f46ce2245bb2f271b9ecabe4d256ba27c56ff520305e89ddb217d57fd2", + "size": 2594 + }, + "ION/06_intelligence/orchestration/custom_gpt/10_ION_CUSTOM_GPT_KNOWLEDGE_PACK_LAYOUT.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/10_ION_CUSTOM_GPT_KNOWLEDGE_PACK_LAYOUT.md", + "sha256": "bc0ad5ffca014a951c5e8720ea5f5dcaee7a11702e0c40321056c5981afa6b58", + "size": 2019 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/00_BUILDER_READY_INDEX.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/00_BUILDER_READY_INDEX.md", + "sha256": "795a83eb33ec45026c86cba21d1479a6479872dcaed993255eccc87b3b99887b", + "size": 993 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/01_BUILDER_READY_INSTRUCTIONS.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/01_BUILDER_READY_INSTRUCTIONS.md", + "sha256": "8fe60f210027d4a7485a944136bbe6e2c3408e0f3f2f3f49a594ee41772e4088", + "size": 4934 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/02_CONVERSATION_STARTERS.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/02_CONVERSATION_STARTERS.md", + "sha256": "68ed16827fc9edb28647d238f9b0b41f3782078531ea9156a4d21dc366c59a88", + "size": 644 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/03_BUILDER_WORKFLOW.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/03_BUILDER_WORKFLOW.md", + "sha256": "20ecc7bfb21ce79dc0db455f12c922867aa4fcb65a18a4cd5034d6d69bed6ed1", + "size": 1396 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/04_KNOWLEDGE_PACK_MANIFEST.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/04_KNOWLEDGE_PACK_MANIFEST.md", + "sha256": "7906058cd5911857e386e044709df2f5e817247eb36ae765eb1e824125c8948a", + "size": 908 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/05_OPENAI_SURFACE_NOTES.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/05_OPENAI_SURFACE_NOTES.md", + "sha256": "597f75a8e566cc62b7de81005c28b81c9b09cac324f2c1d5a4c314427d2397e4", + "size": 745 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/06_END_TO_END_VALIDATION_RUNBOOK.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/06_END_TO_END_VALIDATION_RUNBOOK.md", + "sha256": "84fbc0c9f8e5b4f5000398021e2444190a0dc6479bdd51d22d15913dda501a3a", + "size": 4760 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/07_EXAMPLE_BUNDLE_USAGE.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/07_EXAMPLE_BUNDLE_USAGE.md", + "sha256": "a7763df4dd66e476f9ba2e37296896b1b75d952d7266ae4cf2459acee4cc2d48", + "size": 1655 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/01_ION_GPT_SHELL_LAW.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/01_ION_GPT_SHELL_LAW.md", + "sha256": "ec48ce97304aa57d268388931428faf05a5dfb8e6388efd5f33e860cbfe0403d", + "size": 1097 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/02_WORKING_CONTINUITY_BUNDLE_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/02_WORKING_CONTINUITY_BUNDLE_SCHEMA.md", + "sha256": "b037526b0030486c8002bc5e3ebbf06b64c11e357b2d4aa133c4b382ef4a1c2c", + "size": 3079 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/03_CONTINUITY_EXPORT_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/03_CONTINUITY_EXPORT_PROTOCOL.md", + "sha256": "d57578b45d7b4085a7910eac1a73ecc50d3f0563f3fb515d4861d5456a329554", + "size": 1700 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/04_CONTINUITY_RESUME_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/04_CONTINUITY_RESUME_PROTOCOL.md", + "sha256": "bab4c4d8a9376e773fac07f929223caed2635dac1ec2a4a71f042064957c330e", + "size": 1509 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/05_TEMPORAL_OBJECT_SCHEMA.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/05_TEMPORAL_OBJECT_SCHEMA.md", + "sha256": "5419feea53bdf9912a42802b4043c02a9e87d16014afa16dd2993feb483fdfba", + "size": 13210 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/06_ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/06_ORCHESTRATION_TEMPORAL_RELEVANCE_PROTOCOL.md", + "sha256": "824f5bbe72e9f3040d30d41b7d14918aaffab86f45731bbb28c0f5f7dd4e5307", + "size": 15118 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/07_TEMPORAL_CONTEXT_LEASE_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/07_TEMPORAL_CONTEXT_LEASE_PROTOCOL.md", + "sha256": "f6aac09f1302ea16a4bcae3e03c70c22033c8f12b59ac205f77e73e43590afb0", + "size": 14812 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/08_TRIPLE_TIME_RECONCILIATION_PROTOCOL.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/08_TRIPLE_TIME_RECONCILIATION_PROTOCOL.md", + "sha256": "2a09d234f42043c90b71b4943ef17610e821509c2151d338e6da24067c0994b4", + "size": 15147 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/09_ION_CUSTOM_GPT_BUILD_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/09_ION_CUSTOM_GPT_BUILD_SPEC.md", + "sha256": "8ad45e5f8e4853ccfb2a7e3fdb30d89753bde92fa2781fd32d9865ce4777a167", + "size": 2783 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/10_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/10_ION_CUSTOM_GPT_CONTINUITY_BUNDLE_SPEC.md", + "sha256": "6b4f31fb347ebad7a64a11d026301fa9b6ab4ea783f1fe5a256446b2a897b4a4", + "size": 1736 + }, + "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/README.md": { + "path": "ION/06_intelligence/orchestration/custom_gpt/builder_ready/knowledge_pack/README.md", + "sha256": "9d76b283ead97a609fdc244c686e30806576e03871ecec0894581395fd0d99c9", + "size": 457 + }, + "ION/06_intelligence/orchestration/demo_spine/2026-04-25_v21_demo_spine_consolidation_report.md": { + "path": "ION/06_intelligence/orchestration/demo_spine/2026-04-25_v21_demo_spine_consolidation_report.md", + "sha256": "19a720d0d29197f6494a5395fced661abbeff39acd1a27da1934db1d0e1909b2", + "size": 3204 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v22_summary_refresh_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v22_summary_refresh_demo_plan.md", + "sha256": "11252c36dafcbba3ffcf5e59b6c2b82d2d7577858631e52127a132efed51ca57", + "size": 703 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v23_summary_refresh_projection_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v23_summary_refresh_projection_demo_plan.md", + "sha256": "34eb65b4eb96c1e258966a2a2eb1d1024a030c511e3083bf35201f7cb334aa63", + "size": 728 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v24_summary_refresh_graph_proposal_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v24_summary_refresh_graph_proposal_demo_plan.md", + "sha256": "08477b731c1f0e2dc5f7ae9e76bf44e927b288d14c4a89e07954fcea98b89aaa", + "size": 832 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v25_summary_refresh_review_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v25_summary_refresh_review_demo_plan.md", + "sha256": "ae4019e4e67c146e837fb26303c5edf34db5cdb1f3622edd9c0387382a45059d", + "size": 906 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v26_summary_refresh_bounded_commit_demo_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v26_summary_refresh_bounded_commit_demo_plan.md", + "sha256": "8c08255376aecb4f8b86f3982744c8842e69da9c4e6d47e4287130776581d77f", + "size": 1113 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v27_summary_refresh_demo_replay_cli_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v27_summary_refresh_demo_replay_cli_plan.md", + "sha256": "4f35df13d67ff9dfe01d456ce37e68fe98954b20515759b689b96aaf0cad83b3", + "size": 1466 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v28_summary_refresh_demo_replay_doctor_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v28_summary_refresh_demo_replay_doctor_plan.md", + "sha256": "a192c61cc85b66eed091c54c32958d913ab2e32dba46f3a536e5c7d2c4bc2b9f", + "size": 1042 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v29_summary_refresh_demo_certification_gate_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v29_summary_refresh_demo_certification_gate_plan.md", + "sha256": "c246e262918367a42dc5bc994c284780097fc4bcec642bfeae47d0ec3d726984", + "size": 1114 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v30_summary_refresh_demo_evidence_bundle_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v30_summary_refresh_demo_evidence_bundle_plan.md", + "sha256": "21a84cde5fe68d4ac1d3e0781cad61e05fa2a4d0f6b6050e7dc595cfea6215bb", + "size": 561 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v31_summary_refresh_demo_release_candidate_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v31_summary_refresh_demo_release_candidate_plan.md", + "sha256": "8c1caf475985005f6d9e28e114fbaa6adbe2d1aa6341ac772451f013e497dd64", + "size": 1056 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v32_summary_refresh_demo_release_candidate_verifier_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v32_summary_refresh_demo_release_candidate_verifier_plan.md", + "sha256": "0f9806f41848e9efe23bc33d1a0a4fe062107b2ac45e69221c0941c7558c344e", + "size": 1314 + }, + "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v33_production_readiness_charter_and_ratification_matrix_plan.md": { + "path": "ION/06_intelligence/orchestration/product_mvp/2026-04-25_v33_production_readiness_charter_and_ratification_matrix_plan.md", + "sha256": "bbf921ebf08cc0b5d27fdbe58ab694c73ff108c5e93e38b0b265a76c800c2c02", + "size": 725 + }, + "ION/06_intelligence/orchestration/temporal_stack/00_TEMPORAL_STACK_INDEX.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/00_TEMPORAL_STACK_INDEX.md", + "sha256": "90604896162df2abd3fb8172b260c0cf1f91d40e104c181f3e580f0f444b7721", + "size": 1272 + }, + "ION/06_intelligence/orchestration/temporal_stack/01_ION_TEMPORAL_DEVELOPMENT_FRAMEWORK_EXPANDED.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/01_ION_TEMPORAL_DEVELOPMENT_FRAMEWORK_EXPANDED.md", + "sha256": "4eb74b8940bc8bc1d9d306331f9deb55279d62d5eb479400cef2286c88d6f2e6", + "size": 43918 + }, + "ION/06_intelligence/orchestration/temporal_stack/02_TEMPORAL_WORKED_SCENARIOS_FOR_ION.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/02_TEMPORAL_WORKED_SCENARIOS_FOR_ION.md", + "sha256": "165fa1ff82a113b41ee004ed7bb502f1339ccceb0025cb266f46bcbc1a1e85dd", + "size": 14938 + }, + "ION/06_intelligence/orchestration/temporal_stack/03_TEMPORAL_STACK_MAPPING_INTO_CURRENT_ION.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/03_TEMPORAL_STACK_MAPPING_INTO_CURRENT_ION.md", + "sha256": "2537cbb7df51fd01128e759694340894ec75cc2b273ae7c26602f3deb57d3d83", + "size": 13930 + }, + "ION/06_intelligence/orchestration/temporal_stack/04_FIRST_PASS_TEMPORAL_EVALUATOR_DESIGN.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/04_FIRST_PASS_TEMPORAL_EVALUATOR_DESIGN.md", + "sha256": "012be14e53cdcc806350d8a33e6c2fa6a0ba1975e5c3c144d8ca14794867ff58", + "size": 12768 + }, + "ION/06_intelligence/orchestration/temporal_stack/05_TEMPORAL_EVALUATOR_PSEUDOCODE_AND_DATA_STRUCTURES.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/05_TEMPORAL_EVALUATOR_PSEUDOCODE_AND_DATA_STRUCTURES.md", + "sha256": "085961d1c33e3a75ba2856aceb476aa9d21693dacc00e63ceaac405ed6b9b063", + "size": 25648 + }, + "ION/06_intelligence/orchestration/temporal_stack/06_EXACT_CURRENT_ION_MODULE_MAPPING.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/06_EXACT_CURRENT_ION_MODULE_MAPPING.md", + "sha256": "72aa814bbc99338bd994a5da5e164a873197595ab66ee1e165f351ea44aff85a", + "size": 7041 + }, + "ION/06_intelligence/orchestration/temporal_stack/context/CURRENT_BRANCH_IMPORT_LEDGER_AND_SIBLING_AUTHORITIES.md": { + "path": "ION/06_intelligence/orchestration/temporal_stack/context/CURRENT_BRANCH_IMPORT_LEDGER_AND_SIBLING_AUTHORITIES.md", + "sha256": "2538c3c606293b20261b0e57eef6a13ce0fe296248e2ac795bb78759f6e1ebb8", + "size": 11803 + }, + "ION/06_intelligence/relay/relay/briefs/2026-04-03_continuity_roundtable_brief.md": { + "path": "ION/06_intelligence/relay/relay/briefs/2026-04-03_continuity_roundtable_brief.md", + "sha256": "97efb78c1805053db1f86634408d6f2fca9176244619c0364988a12670687adf", + "size": 6940 + }, + "ION/06_intelligence/relay/relay/briefs/2026-04-03_relay_ratification_assessment.md": { + "path": "ION/06_intelligence/relay/relay/briefs/2026-04-03_relay_ratification_assessment.md", + "sha256": "f2fd3aa23b9484a8ebbdbbf621e725325350a557050518f65b940d0c75a938e3", + "size": 5731 + }, + "ION/06_intelligence/relay/relay/briefs/MISSION_TOTAL_ION_DEFINITION_AND_LINK_GRAPH.md": { + "path": "ION/06_intelligence/relay/relay/briefs/MISSION_TOTAL_ION_DEFINITION_AND_LINK_GRAPH.md", + "sha256": "c920359ce14d52751c8ac5b02654d7dd6e544e81ea0ba48500ac4f221c0a2b74", + "size": 14506 + }, + "ION/06_intelligence/relay/relay/briefs/README.md": { + "path": "ION/06_intelligence/relay/relay/briefs/README.md", + "sha256": "5ddd50885fe82752e742c721f4fddcfc6b7e5cd99b1f1372c04805c3a5b341e2", + "size": 157 + }, + "ION/06_intelligence/relay/relay/continuity.md": { + "path": "ION/06_intelligence/relay/relay/continuity.md", + "sha256": "db322f090f7ce3a071bd014a06d79b7d7ee5ce3d2ef34c4bdc7a10e93ff4c37c", + "size": 3912 + }, + "ION/06_intelligence/relay/relay/inbound/README.md": { + "path": "ION/06_intelligence/relay/relay/inbound/README.md", + "sha256": "9c9f37de8b2a71d8e6a88db303db675345943dd9d09b8561f5e60c83a4ce065d", + "size": 157 + }, + "ION/06_intelligence/relay/relay/interaction_digest.md": { + "path": "ION/06_intelligence/relay/relay/interaction_digest.md", + "sha256": "2751d8d1a1d0777306122b1f6b7208de3163e00a331f4b2132d57d65dadbb068", + "size": 982 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_mission_total_ion_definition_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_mission_total_ion_definition_to_ALL.md", + "sha256": "daf6f7a018eacb3902549edcbcf931999481693ee89a7f04be2e7a38f04047e8", + "size": 2123 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_agent_hierarchy_realms_specialists_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_agent_hierarchy_realms_specialists_to_ALL.md", + "sha256": "79c63783eccd84f0b4cd8da934e24d0fd33251ccec16715f72310d5a8bf4976f", + "size": 3126 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_aimos_deep_gap_analysis_for_ion_understanding_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_aimos_deep_gap_analysis_for_ion_understanding_to_ALL.md", + "sha256": "e7d26dd26462ae0d514ac2caa542a1a321357031b7028091cc6896de8d491272", + "size": 11137 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_capsule_web_of_protocol_context_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_capsule_web_of_protocol_context_to_ALL.md", + "sha256": "e4b15a069a61f96e3f37828967779b1121ff4981f12eab70a7cbc815ad94fc47", + "size": 1444 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_consider_aether_atlas_for_ion_understanding_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_consider_aether_atlas_for_ion_understanding_to_ALL.md", + "sha256": "c3076c6e794096c7c8a493255eec0f59c3c5b75d694f102b7d75a152b0cde336", + "size": 2315 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_continuity_as_protocol_field_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_continuity_as_protocol_field_to_ALL.md", + "sha256": "2a4ce11ff9712c590deac83eae5eb9434bfd0d87fe83774d950037f06b5507a2", + "size": 2953 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_relay_scope_mission_hub_disclaimer_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_relay_scope_mission_hub_disclaimer_to_ALL.md", + "sha256": "e9ca55adfb45686f9c601a9cac8c52b80d92d9a4c3d8de701aaee41ca8effe86", + "size": 2520 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_single_chat_multi_role_kernel_routing_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_single_chat_multi_role_kernel_routing_to_ALL.md", + "sha256": "7380978f400f6b2f0be7fa3e7ac4b03afd855d8dcb1fa214c3b36fa0ef12a982", + "size": 2679 + }, + "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_systems_atlas_for_ultimate_os_ion_to_ALL.md": { + "path": "ION/06_intelligence/relay/relay/outbound/2026-04-03_sovereign_systems_atlas_for_ultimate_os_ion_to_ALL.md", + "sha256": "094a9ba4f39ebe21cf3f9542228b8a80b8eddd0c993977d6a5638877476981ea", + "size": 4442 + }, + "ION/06_intelligence/relay/relay/outbound/README.md": { + "path": "ION/06_intelligence/relay/relay/outbound/README.md", + "sha256": "c4e47c897a699dcef9b30406f7e828fb2fb00a6fa54f409a8af350383c85eda4", + "size": 134 + }, + "ION/06_intelligence/relay/relay/persona_state.md": { + "path": "ION/06_intelligence/relay/relay/persona_state.md", + "sha256": "bb711376a631b76f92f66be3ff146acff33972b310386a718b8bec2edbdd9049", + "size": 514 + }, + "ION/06_intelligence/relay/relay/sovereign_profile.md": { + "path": "ION/06_intelligence/relay/relay/sovereign_profile.md", + "sha256": "fea2aabc21deec611ed9486ee90ea2efe896f6d49f7dddaa3db002f5fcfd3691", + "size": 1600 + }, + "ION/06_intelligence/reports/2026-04-23_vm_healthcheck_continuation_pass.md": { + "path": "ION/06_intelligence/reports/2026-04-23_vm_healthcheck_continuation_pass.md", + "sha256": "a8235906822a66e6ea23f4bed0e58d05db1969fb491142237470430d71a74e7e", + "size": 6197 + }, + "ION/06_intelligence/research/2026-04-03_TOTAL_ION_DIRECTION_vizier.md": { + "path": "ION/06_intelligence/research/2026-04-03_TOTAL_ION_DIRECTION_vizier.md", + "sha256": "b05bcb18944e564bfcc6874ce11b1c69a0ca4d00eb20dfecfd379a655c019eac", + "size": 10675 + }, + "ION/06_intelligence/research/2026-04-03_TRUE_CORES_OF_ION_vizier.md": { + "path": "ION/06_intelligence/research/2026-04-03_TRUE_CORES_OF_ION_vizier.md", + "sha256": "0f21f6017888badd34f51a24340e47bfb092f4ac7ef555d4e83371b92f2a003a", + "size": 14487 + }, + "ION/06_intelligence/research/2026-04-03_agent_hierarchy_field_map.md": { + "path": "ION/06_intelligence/research/2026-04-03_agent_hierarchy_field_map.md", + "sha256": "f0ce30ed948fec8de799cd362c4d1ef2577d9c7e696fe859a6aa083afdae6b28", + "size": 9740 + }, + "ION/06_intelligence/research/2026-04-03_builder_continuity_roundtable.md": { + "path": "ION/06_intelligence/research/2026-04-03_builder_continuity_roundtable.md", + "sha256": "0ac52a7448b8b9dc54367a18b9f2a4c5a6c9517f921b7bb4273d7bdbaa1e682b", + "size": 5164 + }, + "ION/06_intelligence/research/2026-04-03_codex_capsule_protocol_web_and_recovery_map.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_capsule_protocol_web_and_recovery_map.md", + "sha256": "2a4550e5e35cef1ffc2949ad7ce3b869bf933e372cfdd1794e485f4e0f894c7a", + "size": 15236 + }, + "ION/06_intelligence/research/2026-04-03_codex_context_compiler_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_context_compiler_first_pass.md", + "sha256": "bb481c8c8385a4093bfe45d855c3766983038448583223f1f2687f0927af68cf", + "size": 3587 + }, + "ION/06_intelligence/research/2026-04-03_codex_continuity_roundtable.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_continuity_roundtable.md", + "sha256": "5474327d83888b5572e7f818630582293e38da197c6c7ab6bac32a5a3663c0d8", + "size": 9120 + }, + "ION/06_intelligence/research/2026-04-03_codex_end_to_end_law_protocol_template_review_and_kernel_router_transition.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_end_to_end_law_protocol_template_review_and_kernel_router_transition.md", + "sha256": "621080ab93897dbaec1e4ff9b8842a85a6ca9ee08256bb44481a498ac273f2b6", + "size": 12761 + }, + "ION/06_intelligence/research/2026-04-03_codex_future_orchestration_blueprint.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_future_orchestration_blueprint.md", + "sha256": "c2d349fff9829666be68077f390c9fa9d9342cc2d278f9ee37487a09657daa90", + "size": 13863 + }, + "ION/06_intelligence/research/2026-04-03_codex_governance_packet_pilot.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_governance_packet_pilot.md", + "sha256": "cf4f806b2ed30a70cf45834efde383d7ed80d191c12f9af95af53506c7c1da30", + "size": 2845 + }, + "ION/06_intelligence/research/2026-04-03_codex_ide_native_phase_frame_and_team_checkin.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_ide_native_phase_frame_and_team_checkin.md", + "sha256": "2425a99e892a1863382bfc1e71b2109cdf64b284b9bedbe0121ae85e29de236d", + "size": 10271 + }, + "ION/06_intelligence/research/2026-04-03_codex_inbox_normalization.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_inbox_normalization.md", + "sha256": "7e3085e7cd1916e01dee25a625a8162e08d892aa0ede0a488b20206b8cc0ac3f", + "size": 2572 + }, + "ION/06_intelligence/research/2026-04-03_codex_ion_centering_response.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_ion_centering_response.md", + "sha256": "62c82bf3a7487f45f4fac7d017d2a6f18e8ed268b6d2cb693aa0431a977e192f", + "size": 8400 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_child_work_issuance_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_child_work_issuance_first_pass.md", + "sha256": "b86441d42f50815355f2dc17aa6a87c42c96a5b8867ee7b3b0dcfa49a56232a5", + "size": 5439 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_commit_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_commit_first_pass.md", + "sha256": "ab1e00d147ee0843c9a4b096b6c71b0854b517306266e1d30aa3401177aef9a9", + "size": 4510 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_act_once_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_act_once_first_pass.md", + "sha256": "d23b6b7a4552c4a5401935c0141411b96e88ac2049003008575dff00fdce0e0c", + "size": 3853 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_arbiter_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_arbiter_first_pass.md", + "sha256": "80c94c7318b4ff11f9d741d37abbb732cfeb9b15f243edcc3ec6e38e5df7de65", + "size": 4605 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_loop_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_loop_first_pass.md", + "sha256": "75e9cca09b28f610328485a9c222531e95305be3d59fa5fdef43c41608ed54ba", + "size": 3512 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_daemon_signal_consumption_first_pass.md", + "sha256": "012b9a3242888d900b6bd95a54415bb3c8e073b71c8b3fb3ec79bfd7cd7eedae", + "size": 3622 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_dispatch_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_dispatch_first_pass.md", + "sha256": "6da479e173fa58ae83ee59e60567e77878690e92612fd7c582a4971b98373929", + "size": 4217 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_execution_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_execution_first_pass.md", + "sha256": "eedd83a8b3a841f490a2648934c3115c63528cc343552b70e63c3e8723806ad1", + "size": 3990 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_graph_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_graph_first_pass.md", + "sha256": "1c9123ffb06bb69eda740944c679136dac312c05a704f44819429e8f3879d6e0", + "size": 3040 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_index_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_index_first_pass.md", + "sha256": "046829bbcfa11c6fcf9b1d6cd9478ef88259c4b28b509c651f86d66b5cbfe98e", + "size": 3200 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_model_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_model_first_pass.md", + "sha256": "cddec64da33300c1f454acf2ef6a3f3eac11e5757f0f0cfd7b08ca67384648a0", + "size": 2563 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_open_question_routing_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_open_question_routing_first_pass.md", + "sha256": "098c09b1196f14aac56e26e41bec5a3858ec3d4568aba032bde0db220763345e", + "size": 4810 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_review_escalation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_review_escalation_first_pass.md", + "sha256": "5f19b23153abc9fe55299d052d3aa91f78bb97fb9d8c3a8014201ecd7b1b747b", + "size": 4430 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_scheduler_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_scheduler_first_pass.md", + "sha256": "facb92c1eb783e9723dcfa655e77e1dc4326dfd016b13881becd23a738c67e09", + "size": 3560 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_consumption_archive_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_consumption_archive_first_pass.md", + "sha256": "64448866984079409f1896064f8510decfcdfff38cb792090849c85974ac00c3", + "size": 3901 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_followup_automation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_followup_automation_first_pass.md", + "sha256": "4eb21036f2e3dd3b2f335890d6dc3c4469136f050821a0d35ecaa51fd224899e", + "size": 4795 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_signal_interpretation_expiry_first_pass.md", + "sha256": "ea9edb83e9e7034714b69097915135f2b40093783f964043e0b0027a2c7a0c62", + "size": 4057 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_store_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_store_first_pass.md", + "sha256": "f60337f8f6b2973018b7dbd4969a4edf2d91a3a05be3e6791bfe9581d1903d9e", + "size": 2853 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_first_pass.md", + "sha256": "4b4bb8feddd9e745e93c43594bcc5be4526f62c1303e025f0f7a7076c8d5a3d0", + "size": 3721 + }, + "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_receipt_signal_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_kernel_validation_receipt_signal_first_pass.md", + "sha256": "1238a86199ed88203e061770c6980e8aa829254ab58a5a3d46d79dd75e9ad39f", + "size": 4244 + }, + "ION/06_intelligence/research/2026-04-03_codex_lead_journal.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_lead_journal.md", + "sha256": "e42c5c187917d991045dee31c51b36b0b082dfb1aaccfd38d05f0e302cf29d1e", + "size": 3996 + }, + "ION/06_intelligence/research/2026-04-03_codex_live_kernel_status_pilot.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_live_kernel_status_pilot.md", + "sha256": "da9ea2804fb8366d9fc4340c4ab8ae5920b133555d1644dc60f2eb4827528c22", + "size": 3325 + }, + "ION/06_intelligence/research/2026-04-03_codex_official_agent_and_support_topology.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_official_agent_and_support_topology.md", + "sha256": "1dc1721fe18a20a776326e78c15e9d0fd01f8400c470d2e449f26df8df4f5462", + "size": 3732 + }, + "ION/06_intelligence/research/2026-04-03_codex_phase_0b_build_run_priorities.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_phase_0b_build_run_priorities.md", + "sha256": "6f50a4cf954a241d3477fdbb90a6db7b6fe88e6f23508a30a597468089d4ed13", + "size": 8634 + }, + "ION/06_intelligence/research/2026-04-03_codex_plan_continuity_patch_package.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_plan_continuity_patch_package.md", + "sha256": "f595bafcf44f7b0c731d8bdb0bad18167567f7a56870f1a1a18204409fab4056", + "size": 5341 + }, + "ION/06_intelligence/research/2026-04-03_codex_plan_surface_drift_note.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_plan_surface_drift_note.md", + "sha256": "ca1f58a07369b175a7a8b096214f02e6c8a670a58da6b3eacdd14af3202b7cb9", + "size": 2185 + }, + "ION/06_intelligence/research/2026-04-03_codex_protocol_field_working_thesis.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_protocol_field_working_thesis.md", + "sha256": "c6906acf338881498fd85f5637b3ff05eefd0e40cafcda6be7f96772a538b8f5", + "size": 8174 + }, + "ION/06_intelligence/research/2026-04-03_codex_ratification_response_and_guardrails.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_ratification_response_and_guardrails.md", + "sha256": "7c7401766e35a0d3171f28077a98c7fde405facfaa3e8b165d87b54999d68371", + "size": 5644 + }, + "ION/06_intelligence/research/2026-04-03_codex_response_to_external_canonicalization_memo.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_response_to_external_canonicalization_memo.md", + "sha256": "a0af8bff55490a6215110a1ab4b6a4571a14f98bd8aecd259104ac4c5bda6a12", + "size": 9594 + }, + "ION/06_intelligence/research/2026-04-03_codex_roundtable_delta_after_ratification_ready.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_roundtable_delta_after_ratification_ready.md", + "sha256": "874efe7915218a7c970d0a7828177460d34f6b7dfed824419f9799e04c6162f8", + "size": 4488 + }, + "ION/06_intelligence/research/2026-04-03_codex_roundtable_ideas_and_first_move.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_roundtable_ideas_and_first_move.md", + "sha256": "6cd5420c1086ea5d7a0989838ffe71cca89f35cb0ddbc64b4a5e975590de53fc", + "size": 7916 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_governance_trace.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_governance_trace.md", + "sha256": "4a865d08f0c23822c98597495ba70e7d21b3c3c75c4e1bb853ddd848e5357dac", + "size": 2964 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_implementation_trace.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_implementation_trace.md", + "sha256": "7a6cddb09de496ee37728b6c29503a3bb18ddabe19d6a26c61139330163d4cd9", + "size": 2829 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_router_build_and_test.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_kernel_router_build_and_test.md", + "sha256": "62840dc519489332457fd0b24b9928add995bc5986c15bc8ba47d656a774cc17", + "size": 3620 + }, + "ION/06_intelligence/research/2026-04-03_codex_sequential_runtime_portability_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_sequential_runtime_portability_first_pass.md", + "sha256": "1f63d8f526731957b0ad9422f89ff91010132be73c34acfbdb8a07b75fe779c8", + "size": 3474 + }, + "ION/06_intelligence/research/2026-04-03_codex_supervisor_continuity_correction_package.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_supervisor_continuity_correction_package.md", + "sha256": "e0cd70dfa4224010641dd0eed967c9ef220c265e6db43f0b3ad295cf3f166777", + "size": 6807 + }, + "ION/06_intelligence/research/2026-04-03_codex_task_writeback_pilot.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_task_writeback_pilot.md", + "sha256": "0181a1fe3511801e5394f83bfa37e0d3da446f9fd85af0c2b9838f28693de24b", + "size": 2711 + }, + "ION/06_intelligence/research/2026-04-03_codex_team_checkin_and_external_grounding.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_team_checkin_and_external_grounding.md", + "sha256": "d56bcee44faf6bc9305a2d0f70aa9f8d6fae2eed7c0f386f8bafc2017cbd3133", + "size": 25780 + }, + "ION/06_intelligence/research/2026-04-03_codex_team_state_objectives_timeline_and_watch.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_team_state_objectives_timeline_and_watch.md", + "sha256": "fcf3a32664dd0e6ccc1eec630058cb2bdba6836dd0b5bd7ab15dcc5729c3ecdd", + "size": 16138 + }, + "ION/06_intelligence/research/2026-04-03_codex_template_architecture_shared_vs_agent_specific.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_template_architecture_shared_vs_agent_specific.md", + "sha256": "c66c5f4b6c976414aa11998370e543e20879e7d0eb91a23719b34a921433f0e0", + "size": 7628 + }, + "ION/06_intelligence/research/2026-04-03_codex_total_ion_deep_dive.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_total_ion_deep_dive.md", + "sha256": "5aa52f886655270beeccad5c166da5885f1d79f4564cee90181e221f18dfc140", + "size": 18119 + }, + "ION/06_intelligence/research/2026-04-03_codex_trace_executor_and_replay_bundle.md": { + "path": "ION/06_intelligence/research/2026-04-03_codex_trace_executor_and_replay_bundle.md", + "sha256": "405b5e4bd69f1ba6a121d02840df19440d64abe64b325f76fcbb127d6d7bba35", + "size": 3189 + }, + "ION/06_intelligence/research/2026-04-03_end_to_end_governance_map_vizier.md": { + "path": "ION/06_intelligence/research/2026-04-03_end_to_end_governance_map_vizier.md", + "sha256": "88af840dfcecbfb2cb7379ea2e123b9aeeb48c9e7120539714164bb481cec243", + "size": 10101 + }, + "ION/06_intelligence/research/2026-04-03_protocol_context_web_map.md": { + "path": "ION/06_intelligence/research/2026-04-03_protocol_context_web_map.md", + "sha256": "11d158763773244d37e0a7fbd51f2b946a1869bf01326cca79e010b14fd4e1f6", + "size": 19159 + }, + "ION/06_intelligence/research/2026-04-03_vizier_continuity_roundtable.md": { + "path": "ION/06_intelligence/research/2026-04-03_vizier_continuity_roundtable.md", + "sha256": "a8b59681fdcc03855f6c5afcfb64243475ab0d53f7135d726617683b2a96129e", + "size": 9888 + }, + "ION/06_intelligence/research/2026-04-03_vizier_inbox_loop_proof.md": { + "path": "ION/06_intelligence/research/2026-04-03_vizier_inbox_loop_proof.md", + "sha256": "d96b8706af710dbf3f392d4c3aa6bcc790fb6fdb724bf0adcd244edf867bd9ca", + "size": 3139 + }, + "ION/06_intelligence/research/2026-04-03_vizier_phase0b_proof_loop.md": { + "path": "ION/06_intelligence/research/2026-04-03_vizier_phase0b_proof_loop.md", + "sha256": "3f0c301723c31bdb65c6c7f0271120d7ed33cad4b59e67ecc250851816142ea2", + "size": 4597 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_answer_record_and_planner_manifest_runtime_first_pass.md", + "sha256": "12227e4c6840286b7c8b52d2be9c0f2b7941c1dbc8fae467de215a023d8c112f", + "size": 4461 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_loop_receipts_telemetry_first_pass.md", + "sha256": "cb871a4c36ea39da7a32db7a88d207618d968c7031eaf0dc8869b434acbc5024", + "size": 3975 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_question_answer_and_planner_gate_first_pass.md", + "sha256": "733c8c67e7d123ab1de86dc6ea79d676c946f91e15d48e8b1eac789afb023476", + "size": 5063 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_projection_and_planner_housekeeping_first_pass.md", + "sha256": "4c8f0717f7d008328ce686fcedc2a6d3d6f41cd30089df1ce1be101e67b708d0", + "size": 4059 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_and_planner_sweep_first_pass.md", + "sha256": "c210b85b5d3ad020c7563bbdf535675ad38522af3ca23e6e3a7a636222d14590", + "size": 4433 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_queue_refresh_receipts_and_sweep_aggregation_first_pass.md", + "sha256": "56e282cf90b556486e28419f41f3f342e6ae824f9846fd05930656d32b76472f", + "size": 4089 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_review_followup_resolution_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_review_followup_resolution_first_pass.md", + "sha256": "9fd985a0deb11f2dae7b9d1168f8d05f2937691bcce352b73ebf047b5e2f8fa4", + "size": 6040 + }, + "ION/06_intelligence/research/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass.md": { + "path": "ION/06_intelligence/research/2026-04-04_codex_kernel_reviewer_queue_and_planner_lifecycle_first_pass.md", + "sha256": "a310b191e7080b2f0cc0f05f87887909ac964fc3f7e3b5f9dd917cf8506ac768", + "size": 4414 + }, + "ION/06_intelligence/research/2026-04-05_codex_agent_reasoning_window_and_anti_drift_protocol.md": { + "path": "ION/06_intelligence/research/2026-04-05_codex_agent_reasoning_window_and_anti_drift_protocol.md", + "sha256": "3067de3da883a1f047c0e89f8c5853112b5415016fda19510d8c6ca1abafa01b", + "size": 2089 + }, + "ION/06_intelligence/research/2026-04-07_ion_evolution_consolidated_plan.md": { + "path": "ION/06_intelligence/research/2026-04-07_ion_evolution_consolidated_plan.md", + "sha256": "26efd95882b9fec40a90ebc8e853f88dae9d89fd6e122d46cda5f21723cb4e4e", + "size": 11542 + }, + "ION/06_intelligence/research/2026-04-08_alignment_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_alignment_journal.md", + "sha256": "d3b72e5e583d134294c5d4601ba837754f0962cacc6c02ad6395dea7be83cd58", + "size": 3147 + }, + "ION/06_intelligence/research/2026-04-08_codex_workflow_realignment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_codex_workflow_realignment_reasoning_journal.md", + "sha256": "b7d701c031c8ab0e56a8cca37adad9238cf8e8ab7182c152fdea73358d58504c", + "size": 3640 + }, + "ION/06_intelligence/research/2026-04-08_end_to_end_workflow_rehearsal.md": { + "path": "ION/06_intelligence/research/2026-04-08_end_to_end_workflow_rehearsal.md", + "sha256": "539135240d0119deeedbda08cee1aaec313d4372ad78a395ccfeebced79cf4b9", + "size": 1755 + }, + "ION/06_intelligence/research/2026-04-08_execution_symmetry_and_horizon_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_execution_symmetry_and_horizon_journal.md", + "sha256": "d4bcea8f8538d64bc2a23b7671a33483a9b69c8ba7f38df6e11a01c1098d01b7", + "size": 838 + }, + "ION/06_intelligence/research/2026-04-08_ion_operationalization_master_plan.md": { + "path": "ION/06_intelligence/research/2026-04-08_ion_operationalization_master_plan.md", + "sha256": "7468abd334ce4f384e0c342112b8716ccb271dbc5956a25e5fd68b3f5169d3bb", + "size": 6805 + }, + "ION/06_intelligence/research/2026-04-08_k2_packet_handoff_standardization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_k2_packet_handoff_standardization_reasoning_journal.md", + "sha256": "0dd31a7120ffb95872dcfd8e1cc1173b16e8621a0c520f30b59d62c6e1b1cd58", + "size": 1587 + }, + "ION/06_intelligence/research/2026-04-08_k3_horizon_groundwork_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-08_k3_horizon_groundwork_next_workload_plan.md", + "sha256": "331351191a3d7ad43e762406ffb8ebdea9c493852ee0123e75dbd6f18d8ff478", + "size": 2353 + }, + "ION/06_intelligence/research/2026-04-08_master_completion_orchestration_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-08_master_completion_orchestration_reasoning_journal.md", + "sha256": "3aaaaf521c249b2c430ec88803dd3be43eb6f07c3af4d462df4166ecc126c714", + "size": 3454 + }, + "ION/06_intelligence/research/2026-04-08_operator_entry_cli_examples.md": { + "path": "ION/06_intelligence/research/2026-04-08_operator_entry_cli_examples.md", + "sha256": "673d9ad96e07ceb79b0b0b74c2c19cb803f00a7b8edd26f8fa2302a7b8019dfa", + "size": 2138 + }, + "ION/06_intelligence/research/2026-04-09_k3_horizon_state_groundwork_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k3_horizon_state_groundwork_reasoning_journal.md", + "sha256": "64f4f13d3e15d99617f1f6623648362451e30e6b95b9841c7f1dd2e561274c3c", + "size": 1467 + }, + "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_next_workload_plan.md", + "sha256": "982d1b2c9f1b7b439af4caf24e8dbfcf1d157a3ab228a4fe69472aa9692c26de", + "size": 2001 + }, + "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k4_horizon_packet_enactment_reasoning_journal.md", + "sha256": "4d63fe5d5759f6c786062a6af82d71a080fbca5918f7940e72685c6a3059c37e", + "size": 1367 + }, + "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_next_workload_plan.md", + "sha256": "db91cf5aa82687310c7de8b2263cfee7a6abf1b1494f9d0a4e26e33a45ab5c1f", + "size": 1598 + }, + "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k5_horizon_enactment_receipts_reasoning_journal.md", + "sha256": "350ed033650669e3320342352cc45a15a2f7e28d5d67f39074a05ab7539ef517", + "size": 2336 + }, + "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_rehearsal_expansion_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_rehearsal_expansion_next_workload_plan.md", + "sha256": "6f2315b867a4a120e683bb8aa763b39a86ba41324c399d235922af919d079a5a", + "size": 2065 + }, + "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_workflow_rehearsal_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_k6_horizon_to_execution_workflow_rehearsal_reasoning_journal.md", + "sha256": "6836e261c9679e334766e1fc8af034e578ae1b6ea5342a65858a0b7333ec0209", + "size": 2564 + }, + "ION/06_intelligence/research/2026-04-09_k7_blind_continuation_takeover_rehearsal_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_k7_blind_continuation_takeover_rehearsal_next_workload_plan.md", + "sha256": "4dd440b655727d4d53d3a210bac68e98c72c387b48facf856273e209dcd7df5a", + "size": 2273 + }, + "ION/06_intelligence/research/2026-04-09_m1_bounded_multi_agent_allocator_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_m1_bounded_multi_agent_allocator_reasoning_journal.md", + "sha256": "05b7b08c82ea3d518f975ab123caf21640ffcc4b6908ece4c3f82fdfc648eb95", + "size": 1607 + }, + "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_next_workload_plan.md", + "sha256": "27749301970165c208fa38758daa563926cb8b610089cdcd5e74867100ab0c54", + "size": 1050 + }, + "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-09_m2_fan_in_merge_review_settlement_reasoning_journal.md", + "sha256": "c0c0d3b149ededdd02b92a05b4cf0234dc8a3217a2dc95a69a6c1c54d1b9dcf2", + "size": 861 + }, + "ION/06_intelligence/research/2026-04-10_bootstrap_activation_landed.md": { + "path": "ION/06_intelligence/research/2026-04-10_bootstrap_activation_landed.md", + "sha256": "35a51a3615c9205a31e91c8c81102f12351071fb9dbadb49c635f937b2df69bf", + "size": 2371 + }, + "ION/06_intelligence/research/2026-04-10_bootstrap_init_landed.md": { + "path": "ION/06_intelligence/research/2026-04-10_bootstrap_init_landed.md", + "sha256": "c0867a4d55a5fa6070d3064c5e778f997aa39d5df429e6e6d30ede8f6bdc4ff1", + "size": 3327 + }, + "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_bridge_landed.md": { + "path": "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_bridge_landed.md", + "sha256": "612a15e76aa788d373148c1506ac73d8811c208c7cea828e6d72f590686eae22", + "size": 3329 + }, + "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_non_idle_proof.md": { + "path": "ION/06_intelligence/research/2026-04-10_daemon_bootstrap_non_idle_proof.md", + "sha256": "9acde02b58a58d7fd11ff8eddff300b3a5ce20f4ffcd84eed35ada501fc496bc", + "size": 2241 + }, + "ION/06_intelligence/research/2026-04-10_daemon_surface_verification_and_bootstrap_path.md": { + "path": "ION/06_intelligence/research/2026-04-10_daemon_surface_verification_and_bootstrap_path.md", + "sha256": "7338f6c3373e71d14208241352d4a727cbc353d5a8f719e83d707a4c664fb41f", + "size": 5282 + }, + "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment.md": { + "path": "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment.md", + "sha256": "ff6e5079b4a2100c9945b2731659980cf48a61c9de256d914e5669dd8bb18de1", + "size": 6116 + }, + "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_ion_kernel_constitution_self_use_alignment_reasoning_journal.md", + "sha256": "b0cea9914250d462d02b08caa7af25e57833cc3b759ba027e2ae0ecaea7ed6d8", + "size": 4058 + }, + "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_next_workload_plan.md", + "sha256": "c61341d679efd3c69923018282b362ed3d85187a5cb92152375c09d4f82c5038", + "size": 1023 + }, + "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m10_schedule_lineage_and_supersession_archival_reasoning_journal.md", + "sha256": "ca11d70b7d4c568269916c62849df80ed85cbd149f61c8b7b237601b806af88b", + "size": 600 + }, + "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_next_workload_plan.md", + "sha256": "a2a5d2c5d33cd8621c0cf18f7fd6ae7168fe46c3b61a2a12f28947073a81ee0d", + "size": 957 + }, + "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m11_schedule_lineage_replay_and_active_cycle_reconstruction_reasoning_journal.md", + "sha256": "d9620dbda0f6c3d9e4430e7138921ca7719193f26a3c22e570082846638d4ac1", + "size": 824 + }, + "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_next_workload_plan.md", + "sha256": "39579c576c0ab769bbbeb27c1dcb0b70d19603ced287a7854a60e6002d5405ab", + "size": 1004 + }, + "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m12_replay_driven_active_cycle_handoff_resume_projection_reasoning_journal.md", + "sha256": "9f0ecc10cdbe32f5e06c8efd32259a2d6deeafef37be2cb546dacd8ee2b54265", + "size": 634 + }, + "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_next_workload_plan.md", + "sha256": "05b000dbbde690d5f9c7215511008e927b145876dbbc99d8e85424f69eebd245", + "size": 879 + }, + "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m13_resume_projection_continuation_bundle_materialization_reasoning_journal.md", + "sha256": "1dda46fcedf1f4c943f620c78a65726a483ca14c8c1c4670742ca2d7b5d1b50b", + "size": 608 + }, + "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_next_workload_plan.md", + "sha256": "8b8e794a70b9f96ef9d9af3ebb63ed4bf94cab9d38ef70d869ebdc248ac7e791", + "size": 920 + }, + "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m14_continuation_bundle_takeover_entry_activation_validation_reasoning_journal.md", + "sha256": "b15161c3b0dcd01752442b7037313d8d48da411e185146107ea34cf349e5f63b", + "size": 585 + }, + "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_next_workload_plan.md", + "sha256": "4194aac188b9691e30d39a8fa01f489266979b258aba87a896826a3dde982e20", + "size": 894 + }, + "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m15_activation_summary_handoff_capsule_materialization_reasoning_journal.md", + "sha256": "2ea8565b33cbadb3b5eae5f1116c01394854fee4ad4c09beee1a0fc603c54a06", + "size": 819 + }, + "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_next_workload_plan.md", + "sha256": "503bc9c9f716696a464aecb807961f18d4b32082c93c890cc7ca6e63ac4aba4c", + "size": 1080 + }, + "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m16_handoff_capsule_executor_entry_rehearsal_reasoning_journal.md", + "sha256": "1f83a45823c73bee600e81594d4c7c9ae7a8d4675cb71e616b1890d3153c5497", + "size": 880 + }, + "ION/06_intelligence/research/2026-04-10_m17_handoff_capsule_executor_start_packet_materialization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m17_handoff_capsule_executor_start_packet_materialization_next_workload_plan.md", + "sha256": "047efd73910348fdc2e6396da9879aedf42152f2622a634de97114808e4dcbfc", + "size": 1072 + }, + "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_next_workload_plan.md", + "sha256": "632f2f2e07ce62209a071549799b709f459d38b8adcc594864f728a635b78529", + "size": 927 + }, + "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m3_branch_budget_recursion_drift_controls_reasoning_journal.md", + "sha256": "46e3ed124889abca69cf41d2679b1b58b6a064e8487f02954916083c220fbb0f", + "size": 1169 + }, + "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_next_workload_plan.md", + "sha256": "aacf27f98cd6fb55971e5604b3992f096cadfc89cc26aeee476a960dacfb694f", + "size": 1155 + }, + "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m4_branch_horizon_schedule_synchronization_reasoning_journal.md", + "sha256": "98572d0f318c55159253fd2187e2aa5cd2c590864c0948a5315d042207f22669", + "size": 851 + }, + "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_carrier_rebinding_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_carrier_rebinding_next_workload_plan.md", + "sha256": "fb778f1d912b0e695c6422c5dd9eb398c7fbf2d288ec13c6e1d81d41271b09a4", + "size": 1287 + }, + "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_rebinding_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m5_branch_rescheduling_and_rebinding_reasoning_journal.md", + "sha256": "50e7794bfe14a958733289a6add19a1b63547586cbebfa58b62a0c46e3b2bc61", + "size": 681 + }, + "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_next_workload_plan.md", + "sha256": "a19076d38c92e02a0221f7246b8faca01b9bcc1ed04db1830f67b3a8d9ba712d", + "size": 963 + }, + "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m6_schedule_stale_retry_reassignment_reasoning_journal.md", + "sha256": "b9f57085bca6b1a02575cc0a6e781ba443781c2b69124b412d14b3f44cc073c3", + "size": 619 + }, + "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_next_workload_plan.md", + "sha256": "e2b6a52447e283ec5913373810885f5e895f29812b57ab6f2d9e5a82f49e60b8", + "size": 860 + }, + "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m7_schedule_dispatch_assignment_reconciliation_reasoning_journal.md", + "sha256": "80bca908c4865a73dc2d999a161fe4307fd7c6a16f5fc8743c49e77d7b739e3e", + "size": 859 + }, + "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_next_workload_plan.md", + "sha256": "c50441bba079d5c706e278247e2578cd55f11e86ce9eb27f0cc0b49b3d61de14", + "size": 794 + }, + "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m8_schedule_completion_assignment_release_reasoning_journal.md", + "sha256": "6eb80c024412981315f1436f3f0d0c2b9f0df3a3b4ea999049ff8a2c19883200", + "size": 551 + }, + "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_next_workload_plan.md", + "sha256": "0930cd3929262a73a01ce6ea8d884233c9f122a099677885ea9064b593219b67", + "size": 751 + }, + "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-10_m9_schedule_settlement_and_future_reentry_reasoning_journal.md", + "sha256": "07aaa3eed6054c8673cbf6b17df3a458555a157d5276ccb78779f28ae5c342a1", + "size": 699 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_active_commitment_vs_strategic_witness_ledger.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_active_commitment_vs_strategic_witness_ledger.md", + "sha256": "420663919a3e0995e8eb16475b3cf1c43c245293aefce00417e514352b1bf0f1", + "size": 7669 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_destination_horizon_stratification.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_destination_horizon_stratification.md", + "sha256": "a63b7dd012842bd6176e4f869466f4fbcf12ff9255d2063a77bf3780a03c622f", + "size": 7516 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_evidence_map.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_evidence_map.md", + "sha256": "5d83bb796f95e801601114f1325a491f70d35acee9f3a478dc17d779dd70eb03", + "size": 9489 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_reasoning_journal.md", + "sha256": "3b91afdd7d60b93d9190658508bf0ed3961ad97f273cef8597fff1defa5a6d28", + "size": 6054 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_working_map.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_lineage_destination_working_map.md", + "sha256": "101d5944dd0065211bdb3a550d63af61ae05c747f2598472a02d790bf9f1591f", + "size": 6562 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_identity_origin_destination_recovery_index.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_identity_origin_destination_recovery_index.md", + "sha256": "dc7f1002924853c59da34dfb5a569f321ef4ef9f7ed188472c766850b6482f3e", + "size": 4908 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_layered_identity_stratification.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_layered_identity_stratification.md", + "sha256": "e72dd27cab75b523ec82bc05f8562316bda7a04625f5acfc8414ddb7ab3f6579", + "size": 8876 + }, + "ION/06_intelligence/research/2026-04-11_codex_ion_origin_phase_and_root_stratification.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_ion_origin_phase_and_root_stratification.md", + "sha256": "4e33f45a88d280a5a3a5effc68c6a8249d389af73f4dd7c79a3112425dbbc7a7", + "size": 9230 + }, + "ION/06_intelligence/research/2026-04-11_codex_m16_entry_chain_and_stale_surface_fences.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_m16_entry_chain_and_stale_surface_fences.md", + "sha256": "57aa6c8af674a9955b8ab65c81d81eb12407de8db17df002d51f63402b26de3b", + "size": 7781 + }, + "ION/06_intelligence/research/2026-04-11_codex_m16_execution_priority_card_from_active_commitments.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_m16_execution_priority_card_from_active_commitments.md", + "sha256": "0c9a5cc0ef9685a42aae4f26d795ff34514c173cf12b0b6ea95ae192e432e046", + "size": 5393 + }, + "ION/06_intelligence/research/2026-04-11_codex_m16_witness_authority_crosswalk.md": { + "path": "ION/06_intelligence/research/2026-04-11_codex_m16_witness_authority_crosswalk.md", + "sha256": "591948b129982db47193e6880a17c82ff053097c64c1fa37ad8d4fc22aa0bea8", + "size": 10169 + }, + "ION/06_intelligence/research/2026-04-11_ion_master_documentation_toc_and_outline.md": { + "path": "ION/06_intelligence/research/2026-04-11_ion_master_documentation_toc_and_outline.md", + "sha256": "0257e28613406cf87122ace9efa3b0eb3eed903734fd8e551b652911de3a4fe4", + "size": 12539 + }, + "ION/06_intelligence/research/2026-04-12_bridge_packet_family_status_and_validation_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-12_bridge_packet_family_status_and_validation_next_workload_plan.md", + "sha256": "aef8f4b511ebad5b201d92a27d08dcf27d7ef573fc1e28cbc18c5e5a96ce91f2", + "size": 5646 + }, + "ION/06_intelligence/research/2026-04-12_current_phase_staffing_and_semantic_identity_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-12_current_phase_staffing_and_semantic_identity_next_workload_plan.md", + "sha256": "000ecf23b869be7bf1bd438b0f90a430e39b75db9a603de24b9d36bef15e404e", + "size": 5804 + }, + "ION/06_intelligence/research/2026-04-12_disagreement_escalation_provenance_note.md": { + "path": "ION/06_intelligence/research/2026-04-12_disagreement_escalation_provenance_note.md", + "sha256": "bc99364082ab4569ab9c5d2d4475326f55943809841edc8977d5657d3216058f", + "size": 2799 + }, + "ION/06_intelligence/research/2026-04-12_external_zip_return_bridge_provenance_note.md": { + "path": "ION/06_intelligence/research/2026-04-12_external_zip_return_bridge_provenance_note.md", + "sha256": "345853d7836d0c3162964ac1e3ff40cdeb7bb5c015833fdc801dc6d068f46005", + "size": 2809 + }, + "ION/06_intelligence/research/2026-04-12_outsider_grade_packaging_hardening_next_workload_plan.md": { + "path": "ION/06_intelligence/research/2026-04-12_outsider_grade_packaging_hardening_next_workload_plan.md", + "sha256": "975ba3327add481c3c13f421c612ee26a226fb4f036e7f783e40169283e45a23", + "size": 2963 + }, + "ION/06_intelligence/research/2026-04-12_phase1_browser_mount_boundary_research.md": { + "path": "ION/06_intelligence/research/2026-04-12_phase1_browser_mount_boundary_research.md", + "sha256": "dc8b8e10c54666fb9073f16030a4c217b6c240789ae247f82a21f22d500e8d21", + "size": 2646 + }, + "ION/06_intelligence/research/2026-04-12_phase1_template_governance_gate_surface_map.md": { + "path": "ION/06_intelligence/research/2026-04-12_phase1_template_governance_gate_surface_map.md", + "sha256": "c29ef8ca1a04b22e9d38a46a041ca1e68ecb38e258c1d35aecaeb66dab55c0a4", + "size": 9838 + }, + "ION/06_intelligence/research/2026-04-12_role_chassis_mount_provenance_note.md": { + "path": "ION/06_intelligence/research/2026-04-12_role_chassis_mount_provenance_note.md", + "sha256": "02cbc0bafa5d1ea2d5893ae1f7dc556c7716cadd8c1abb0a58fd0b6702370c48", + "size": 3098 + }, + "ION/06_intelligence/research/2026-04-12_thoth_bridge_packet_status_evidence.md": { + "path": "ION/06_intelligence/research/2026-04-12_thoth_bridge_packet_status_evidence.md", + "sha256": "a99cb818a0a780348b4d19850dc09ab3d3a46fcf56b0dc5c40be4e24abbbcf16", + "size": 13200 + }, + "ION/06_intelligence/research/2026-04-12_thoth_current_phase_staffing_and_semantic_identity_evidence.md": { + "path": "ION/06_intelligence/research/2026-04-12_thoth_current_phase_staffing_and_semantic_identity_evidence.md", + "sha256": "7582fd3824491c1fb8a1e0cf9e9b54a98f10c4bb97bbe0a71f6907e0fd259e5a", + "size": 10805 + }, + "ION/06_intelligence/research/2026-04-22_codex_canonical_agent_roster_and_evolution_dynamics_proposal.md": { + "path": "ION/06_intelligence/research/2026-04-22_codex_canonical_agent_roster_and_evolution_dynamics_proposal.md", + "sha256": "fff3318d071e6b291f33dcf92a59b8ecdab7260a362fc49ee087175fc7d2bb18", + "size": 20637 + }, + "ION/06_intelligence/research/2026-04-24_gpt55_steward_startup_authority_validation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_gpt55_steward_startup_authority_validation_reasoning_journal.md", + "sha256": "fbfbae0da77a7a874d560b25016d04634d52c1126052f4b96ccab2ff384c0ccd", + "size": 2204 + }, + "ION/06_intelligence/research/2026-04-24_steward_persona_front_door_correction_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_persona_front_door_correction_reasoning_journal.md", + "sha256": "eef2d6a2f7a5ab613191824f8f951350a34388bcafef4fe72a2c69df3996f62c", + "size": 1372 + }, + "ION/06_intelligence/research/2026-04-24_steward_persona_fronted_live_use_proof_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_persona_fronted_live_use_proof_reasoning_journal.md", + "sha256": "70f47b52d2b076956bc71737f823376e1c170fb0bc020d13b737470a3914225c", + "size": 1301 + }, + "ION/06_intelligence/research/2026-04-24_steward_post_a1_lane_a_continuation_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_post_a1_lane_a_continuation_reasoning_journal.md", + "sha256": "70c2cb5efb0ecae24eb70eede49091a30e05270af3c71f603aa7f43489145140", + "size": 1274 + }, + "ION/06_intelligence/research/2026-04-24_steward_single_carrier_full_spectrum_rehearsal_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_single_carrier_full_spectrum_rehearsal_reasoning_journal.md", + "sha256": "57cdb0a0ea32bce39d5269f5713de53bdf71c1d485603ff255e07ef182e5c747", + "size": 1320 + }, + "ION/06_intelligence/research/2026-04-24_steward_single_carrier_protocol_landing_reasoning_journal.md": { + "path": "ION/06_intelligence/research/2026-04-24_steward_single_carrier_protocol_landing_reasoning_journal.md", + "sha256": "2526c21242cd17cb2fd4fd618c2f61527e6305c0142fdfe4c41f27b2143c87b7", + "size": 1499 + }, + "ION/06_intelligence/research/multi_model_orchestration_inventory.md": { + "path": "ION/06_intelligence/research/multi_model_orchestration_inventory.md", + "sha256": "ec4d332fb5281cd74b4f7aa44999e106c006db11426f55f4a98cf00130281815", + "size": 8101 + }, + "ION/06_intelligence/roundtable/continuity_crisis/INDEX.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/INDEX.md", + "sha256": "f4adb6d9f83ce4766fd69761b70510aae0ca630048af18f1fdd804267b783298", + "size": 9514 + }, + "ION/06_intelligence/roundtable/continuity_crisis/RESPONSE_STATUS.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/RESPONSE_STATUS.md", + "sha256": "1edba0d3b41cd7749dfa8e4aec6a3e0dbd88401c5c8b39d88628d4c7b2a332d0", + "size": 4935 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_boot_and_lane_proposal.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_boot_and_lane_proposal.md", + "sha256": "1f0c2a68f8809a8c7f5e8199db4fe8baef520b8988e042470e0fc25878f55b2c", + "size": 2864 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_ratification_ready_continuity_law.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_ratification_ready_continuity_law.md", + "sha256": "5fd185bdedd7e6cf8227b1567e6fd4dde12ce60908e83f1c5fb6e69967f32520", + "size": 3633 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_recovery_conditions_after_law.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_codex_recovery_conditions_after_law.md", + "sha256": "4fe1cdb16d261213b6b7ccfe01dc0235f8079d5b73506c95e9c02750d1ecd1bf", + "size": 5844 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_minimal_manual_continuity_update_protocol.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_minimal_manual_continuity_update_protocol.md", + "sha256": "51f65770564c5ef8995305c388648359dc3fd889fa3273b69923c1af4df7fd21", + "size": 4079 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_proposed_ion_continuity_law.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_proposed_ion_continuity_law.md", + "sha256": "afa99a201d29f1ed79a284005cae4541a2c2d5046f63480835de49998a91c03e", + "size": 3392 + }, + "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_role_continuity_matrix.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/proposals/2026-04-03_role_continuity_matrix.md", + "sha256": "cd915074c3ac32fb23ffc63b19825943dd08343fbdad9307419681f4fd70990d", + "size": 2644 + }, + "ION/06_intelligence/roundtable/continuity_crisis/references/2026-04-03_codex_continuity_dependency_register.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/references/2026-04-03_codex_continuity_dependency_register.md", + "sha256": "475db91e923b425720c5369d13372fe940c937ccabbd5dd47b4c62831f7355e9", + "size": 8605 + }, + "ION/06_intelligence/roundtable/continuity_crisis/references/historical_capsule_inventory.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/references/historical_capsule_inventory.md", + "sha256": "bd6da7681ef7feea1f9401deb51b7ea2300f32b00537d9c289505abee39a018f", + "size": 2247 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_explore_with_continuity.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_explore_with_continuity.md", + "sha256": "97239d70dd19f560ca0587cef62c6b13d05dec22f1d31fc17bd82e3fd59a0157", + "size": 2434 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_manual_auto_and_model_allocation.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_directive_manual_auto_and_model_allocation.md", + "sha256": "bbb55b5c423a2bad1357921405d4ab4664c8950c2fc7314b7e7855cd004295aa", + "size": 3159 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_acronym.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_acronym.md", + "sha256": "840370e5b35ec3cd52b1476895ee11341e08c82575c58425cbab56e47809405c", + "size": 1328 + }, + "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_name_and_singularity.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/responses/2026-04-03_sovereign_reflection_ion_name_and_singularity.md", + "sha256": "d5c0fc20be5790779b6fcc454c2df74f2641f1fd70e8eda4abca892de3c5605d", + "size": 1858 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_decision_ready_summary.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_decision_ready_summary.md", + "sha256": "85ff119d32b92957b50436e401958729b13b63da7c8d78fc2d487280ebd9b3ce", + "size": 3629 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_candidate.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_candidate.md", + "sha256": "57ab3b1e53220bc8680a1fa302a65ae15589202fae5e65e6147f099027ca5527", + "size": 2149 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_convergence_matrix.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_convergence_matrix.md", + "sha256": "5f0b668aa8dda00ab683fa7033a449e19929d1ba6b903a773f1d8c857a97607c", + "size": 8960 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_ratification_package.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_law_ratification_package.md", + "sha256": "3e124a19216081656d735b560e653e9b30dc55316f8f94b058393a79ba5f05fc", + "size": 5557 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_ratification_delta_package.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_ratification_delta_package.md", + "sha256": "3c39fc8018a80c465f3ebfec6d239ff74ee640ff44f5c883c8586eb3892c72e5", + "size": 5484 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_recovery_conditions.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_continuity_recovery_conditions.md", + "sha256": "e721253c464c3ea2fb63360c1a56887f333e10ade07cb49871f2c53c12f669bb", + "size": 3292 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_end_to_end_law_protocol_template_program.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_end_to_end_law_protocol_template_program.md", + "sha256": "a0359f46a23f16aafbfb9226aad4b85e97b0abf1d31ec25c565b132012fcef54", + "size": 11151 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_ion_core_and_continuity_synthesis.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_ion_core_and_continuity_synthesis.md", + "sha256": "cd9f201fae46d2dac5e5626e651cdbcd789d2450bc4fcc53d24b96e46d842b5e", + "size": 13785 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_nemesis_ideas_and_first_move.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_nemesis_ideas_and_first_move.md", + "sha256": "b6ea61fa384e98563b13bbeb303d0f352fabc6f0e6df740cb815dbe19016b141", + "size": 7219 + }, + "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_roundtable_checkpoint_awaiting_sovereign.md": { + "path": "ION/06_intelligence/roundtable/continuity_crisis/synthesis/2026-04-03_roundtable_checkpoint_awaiting_sovereign.md", + "sha256": "9911dd902ed016054b75a0d96a4e8d68c95fb31f31585e2f2145c0c7ff48749f", + "size": 1829 + }, + "ION/06_intelligence/specs/T01_TransitionSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T01_TransitionSchema.schema.yaml", + "sha256": "a036b5e76e513a682edbbd1b92f3f1002141c30441ec96f0d590ff82c8ca9c0d", + "size": 9944 + }, + "ION/06_intelligence/specs/T01_TransitionSchema.spec.md": { + "path": "ION/06_intelligence/specs/T01_TransitionSchema.spec.md", + "sha256": "e0be80937605ea11f85ac45d663881e5e9de995279ea277a45a8904b8ad8a629", + "size": 20109 + }, + "ION/06_intelligence/specs/T02_WorkUnitSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T02_WorkUnitSchema.schema.yaml", + "sha256": "6da79b2b8d0ab7365e98faa976d208b785431155f4b0f44ae0937092ca89a563", + "size": 1996 + }, + "ION/06_intelligence/specs/T02_WorkUnitSchema.spec.md": { + "path": "ION/06_intelligence/specs/T02_WorkUnitSchema.spec.md", + "sha256": "a8dfc5d6e7a4abc332ff0a4deb7131db1cb48a2504879d43606fc501ee6e40a2", + "size": 8821 + }, + "ION/06_intelligence/specs/T03_ContextPackageSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T03_ContextPackageSchema.schema.yaml", + "sha256": "bbcaaa3fad3a8c98230bca3fb9c8571142bcb015f093bbe6f3aa4493aa3d6bb1", + "size": 1970 + }, + "ION/06_intelligence/specs/T03_ContextPackageSchema.spec.md": { + "path": "ION/06_intelligence/specs/T03_ContextPackageSchema.spec.md", + "sha256": "a916bd403fa4fa4fcb8672f9271b0ba65a9608716365cf3b0df0cd9b2ae3ea1d", + "size": 7697 + }, + "ION/06_intelligence/specs/T04_CommitDeltaSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T04_CommitDeltaSchema.schema.yaml", + "sha256": "43c1fa6baa0f44557ad7fbd4f1c114b45827d7b525a219c8a19cb46b96dee21a", + "size": 2626 + }, + "ION/06_intelligence/specs/T04_CommitDeltaSchema.spec.md": { + "path": "ION/06_intelligence/specs/T04_CommitDeltaSchema.spec.md", + "sha256": "883ca539711a2d1f8e742431a7631f07bcb938a633d5533d611ef1fec0d4894a", + "size": 5564 + }, + "ION/06_intelligence/specs/T04_ReasoningWindowSchema.spec.md": { + "path": "ION/06_intelligence/specs/T04_ReasoningWindowSchema.spec.md", + "sha256": "57c740e397d141f24f281ba8a976f55430707cabb7fe6d8e5d1f75adb50f7717", + "size": 4091 + }, + "ION/06_intelligence/specs/T05_OpenQuestionSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T05_OpenQuestionSchema.schema.yaml", + "sha256": "fbd76035fcc606c1b2d74ee6f656cf7c13abe435fd165e2bb438c59b7e4af60a", + "size": 1116 + }, + "ION/06_intelligence/specs/T05_OpenQuestionSchema.spec.md": { + "path": "ION/06_intelligence/specs/T05_OpenQuestionSchema.spec.md", + "sha256": "37d00db0de51f471ec822d6e2b92305078c6e58c1f8e7a01be8dfae40317d0f0", + "size": 3172 + }, + "ION/06_intelligence/specs/T06_AuthorityClassSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T06_AuthorityClassSchema.schema.yaml", + "sha256": "488faa51d8df7956206d8144e9e6133affb9321af203cf9551e8b2d0ecfbf915", + "size": 1319 + }, + "ION/06_intelligence/specs/T06_AuthorityClassSchema.spec.md": { + "path": "ION/06_intelligence/specs/T06_AuthorityClassSchema.spec.md", + "sha256": "7746bbd7388e517dcc983b286b7d8207222d1a4d5a04dd957439c1ebad973307", + "size": 6253 + }, + "ION/06_intelligence/specs/T07_SignalSchema.schema.yaml": { + "path": "ION/06_intelligence/specs/T07_SignalSchema.schema.yaml", + "sha256": "bba0abc605229c70c52ad3a650f7133039dcbde77fbd6ee8747cfbf62bf0d90b", + "size": 2526 + }, + "ION/06_intelligence/specs/T07_SignalSchema.spec.md": { + "path": "ION/06_intelligence/specs/T07_SignalSchema.spec.md", + "sha256": "f809fc9ad5b1ebd3c18939f4f654dcb10d10b6b80a948af82715a461968d23b0", + "size": 7290 + }, + "ION/06_intelligence/specs/T08_ConfidenceAndDriftSchema.spec.md": { + "path": "ION/06_intelligence/specs/T08_ConfidenceAndDriftSchema.spec.md", + "sha256": "278c7a395a9ade52ae3527212d5ee63a568c1e873e36f1e886d84be2c31c2bd3", + "size": 3607 + }, + "ION/06_intelligence/specs/T09_ManifestRouteStateSchema.spec.md": { + "path": "ION/06_intelligence/specs/T09_ManifestRouteStateSchema.spec.md", + "sha256": "0f2488671c8c1649325b8ef926b06bbc0617b5884988438b91a2a9173e94bea9", + "size": 4283 + }, + "ION/06_intelligence/specs/T100_ScheduleValidateActivationCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T100_ScheduleValidateActivationCliAndStatus.spec.md", + "sha256": "c208da2046e77306f67a4fbb34def20baa50122256694c132c6be849839366f7", + "size": 312 + }, + "ION/06_intelligence/specs/T101_ScheduleActivationHandoffCapsuleReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T101_ScheduleActivationHandoffCapsuleReceipt.spec.md", + "sha256": "9258ae0b2bbf25faed2fb202c180aa4b1127bd9e048e6d2c304a2cfd14e2a28b", + "size": 501 + }, + "ION/06_intelligence/specs/T102_HandoffCapsuleLinkageAndCompactEntryArtifact.spec.md": { + "path": "ION/06_intelligence/specs/T102_HandoffCapsuleLinkageAndCompactEntryArtifact.spec.md", + "sha256": "2daa0e28935a3b526e5ca62353ebdcbbbd2fba8512a00e775109edab1817a1e2", + "size": 437 + }, + "ION/06_intelligence/specs/T103_ScheduleMaterializeHandoffCapsuleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T103_ScheduleMaterializeHandoffCapsuleCliAndStatus.spec.md", + "sha256": "5b703d52eea998b12d982504083ee34995e0e2eb7928654f015483a941b9f246", + "size": 476 + }, + "ION/06_intelligence/specs/T104_ScheduleHandoffEntryRehearsalReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T104_ScheduleHandoffEntryRehearsalReceipt.spec.md", + "sha256": "36c2191836e3aa8035c9604162254853e76afa6188f08fd274e3b19eb3f74850", + "size": 528 + }, + "ION/06_intelligence/specs/T105_HandoffCapsuleEntrySufficiencyBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T105_HandoffCapsuleEntrySufficiencyBehavior.spec.md", + "sha256": "4fed3a3740d1e55322019aa37bc0df07fcbb5783c5e52a104665f1959b88aa68", + "size": 544 + }, + "ION/06_intelligence/specs/T106_ScheduleRehearseHandoffEntryCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T106_ScheduleRehearseHandoffEntryCliAndStatus.spec.md", + "sha256": "1cbca5e7a145a417a8c321dde8c39cf2be6114e4ba382c08e3df475e14042a39", + "size": 472 + }, + "ION/06_intelligence/specs/T10_CrossModelAuditCalibration.spec.md": { + "path": "ION/06_intelligence/specs/T10_CrossModelAuditCalibration.spec.md", + "sha256": "430d578f87cacbdb7cc500c282bed9e719fb6b1c3521db38008fe28f3177a466", + "size": 4415 + }, + "ION/06_intelligence/specs/T11_AutomationStateSchema.spec.md": { + "path": "ION/06_intelligence/specs/T11_AutomationStateSchema.spec.md", + "sha256": "1ac56d07ae034732c6850030b265a3979a36a4296bd415929455cd245e355822", + "size": 3101 + }, + "ION/06_intelligence/specs/T12_RuntimeStateBindingEvents.spec.md": { + "path": "ION/06_intelligence/specs/T12_RuntimeStateBindingEvents.spec.md", + "sha256": "8d82876a466e7d3f477b26cdb02777ef50eda537f3aba465d9229546e0735b70", + "size": 2943 + }, + "ION/06_intelligence/specs/T13_RuntimeStateQueryConsumption.spec.md": { + "path": "ION/06_intelligence/specs/T13_RuntimeStateQueryConsumption.spec.md", + "sha256": "e98ec9f6a924473a67b4c5fb4e43b92d783431d44306651a1bd6d11341be09bd", + "size": 968 + }, + "ION/06_intelligence/specs/T14_RuntimeStateOperationalRendering.spec.md": { + "path": "ION/06_intelligence/specs/T14_RuntimeStateOperationalRendering.spec.md", + "sha256": "35cae1ea4b4cbd66ffc9beb5687c3e7b3e636254613e072569372b4d2f19b7de", + "size": 1337 + }, + "ION/06_intelligence/specs/T15_RuntimeReportArtifactEmission.spec.md": { + "path": "ION/06_intelligence/specs/T15_RuntimeReportArtifactEmission.spec.md", + "sha256": "7a2b62827ac4e63d35cf0101dded82e6ca6b9d63e0b9307cd8bb8549304e3001", + "size": 1203 + }, + "ION/06_intelligence/specs/T16_RuntimeReportTriggerPolicy.spec.md": { + "path": "ION/06_intelligence/specs/T16_RuntimeReportTriggerPolicy.spec.md", + "sha256": "668df41b6f21bb2562d9ea8dc6f212df8c2ced876266486ddb56b1f6acb04686", + "size": 925 + }, + "ION/06_intelligence/specs/T17_RuntimeReportGovernanceReflection.spec.md": { + "path": "ION/06_intelligence/specs/T17_RuntimeReportGovernanceReflection.spec.md", + "sha256": "ca6ff1c87855e771d7d37b1da5765edc198f819efe8d257fa3d9369b91ebc4cb", + "size": 1670 + }, + "ION/06_intelligence/specs/T18_RuntimeReportGovernanceAggregation.spec.md": { + "path": "ION/06_intelligence/specs/T18_RuntimeReportGovernanceAggregation.spec.md", + "sha256": "a4ad90b95db6c139031fbfd86b187fa6f07de972192314a9b089c6166d74485d", + "size": 942 + }, + "ION/06_intelligence/specs/T19_RuntimeReportVisibilityProjection.spec.md": { + "path": "ION/06_intelligence/specs/T19_RuntimeReportVisibilityProjection.spec.md", + "sha256": "098e6ece625b6c463b85e23da7dacdff1fb9f705e73ae2ff4d293f1bfd642c94", + "size": 1337 + }, + "ION/06_intelligence/specs/T20_RuntimeReportNavigationQuery.spec.md": { + "path": "ION/06_intelligence/specs/T20_RuntimeReportNavigationQuery.spec.md", + "sha256": "27aa065dfa7888431933a2c1a366ec5b14178ab513ad42e5ddce2aa9c9d218a5", + "size": 1322 + }, + "ION/06_intelligence/specs/T21_RuntimeReportBrowserReadOnlyView.spec.md": { + "path": "ION/06_intelligence/specs/T21_RuntimeReportBrowserReadOnlyView.spec.md", + "sha256": "db076b77eb80932a5663cc8721ae52ff43179f501a0fef552d477ea5bbf9a406", + "size": 1419 + }, + "ION/06_intelligence/specs/T22_RuntimeReportCrosslinkTraversal.spec.md": { + "path": "ION/06_intelligence/specs/T22_RuntimeReportCrosslinkTraversal.spec.md", + "sha256": "51aafddcbec43aa32c8d3b4a9205654956a2d7909a5db9d226ab97bc2dda6885", + "size": 1188 + }, + "ION/06_intelligence/specs/T23_RuntimeReportAnchorNormalization.spec.md": { + "path": "ION/06_intelligence/specs/T23_RuntimeReportAnchorNormalization.spec.md", + "sha256": "5de77b27f882b6afcd4257edfca7c985cec77e42544870c2a7520c68d756bcaa", + "size": 1972 + }, + "ION/06_intelligence/specs/T24_RuntimeReportProvenanceTrace.spec.md": { + "path": "ION/06_intelligence/specs/T24_RuntimeReportProvenanceTrace.spec.md", + "sha256": "7b318d0f862e8e65d417b4fd5912f3095b93ba538f0493c674e062b775fbbf24", + "size": 2094 + }, + "ION/06_intelligence/specs/T25_RuntimeReportComparativeProvenance.spec.md": { + "path": "ION/06_intelligence/specs/T25_RuntimeReportComparativeProvenance.spec.md", + "sha256": "5d6436abca0b4e5537a116fc63b53350e586e2eaedce9481ce71232ed5c9f36a", + "size": 1316 + }, + "ION/06_intelligence/specs/T26_RuntimeReportTemporalProvenance.spec.md": { + "path": "ION/06_intelligence/specs/T26_RuntimeReportTemporalProvenance.spec.md", + "sha256": "86fe6d0190cc02b628d1e14b9a1690e68ea19f5f7e1fe839d18688594437a103", + "size": 1673 + }, + "ION/06_intelligence/specs/T27_RuntimeReportFamilySummary.spec.md": { + "path": "ION/06_intelligence/specs/T27_RuntimeReportFamilySummary.spec.md", + "sha256": "b06a124cc58a084e72089f1a7ed3d507db963033090d800b1ed084687ebf9ad7", + "size": 1721 + }, + "ION/06_intelligence/specs/T28_RuntimeReportOperatorDigest.spec.md": { + "path": "ION/06_intelligence/specs/T28_RuntimeReportOperatorDigest.spec.md", + "sha256": "8e92438b6c0280fcb37fd03a28eb48b681a9f397b6a244215932fce493523399", + "size": 1971 + }, + "ION/06_intelligence/specs/T29_RuntimeReportDigestProfile.spec.md": { + "path": "ION/06_intelligence/specs/T29_RuntimeReportDigestProfile.spec.md", + "sha256": "6c58fb1b65c268f4a9319b662a0a13f4dfe3b64b7c167e88404c55e24a40a12b", + "size": 1052 + }, + "ION/06_intelligence/specs/T30_RuntimeReportDigestProfileCatalog.spec.md": { + "path": "ION/06_intelligence/specs/T30_RuntimeReportDigestProfileCatalog.spec.md", + "sha256": "b1e0a8493db2c2dec7ee8a6d830c256414bd937e3564cd69013e6870c26dc1a8", + "size": 865 + }, + "ION/06_intelligence/specs/T31_RuntimeReportDigestProfileBrowser.spec.md": { + "path": "ION/06_intelligence/specs/T31_RuntimeReportDigestProfileBrowser.spec.md", + "sha256": "8458d7e40ffa102c0c408b610fe6d58fcb16fae867c8404cfe723c50fa45b004", + "size": 708 + }, + "ION/06_intelligence/specs/T32_RuntimeReportProfileDigestTrace.spec.md": { + "path": "ION/06_intelligence/specs/T32_RuntimeReportProfileDigestTrace.spec.md", + "sha256": "4d2a5e70df74d087593e41f0738de916a5ba4ac879c696d1649f7593c18e4a5c", + "size": 1595 + }, + "ION/06_intelligence/specs/T33_RuntimeReportDigestReverseTrace.spec.md": { + "path": "ION/06_intelligence/specs/T33_RuntimeReportDigestReverseTrace.spec.md", + "sha256": "a8e35e7ed9b7b7c9eb83468c63eb333a7a00cd96bc74a26cf8c328b918291198", + "size": 1757 + }, + "ION/06_intelligence/specs/T34_RuntimeReportBidirectionalTrace.spec.md": { + "path": "ION/06_intelligence/specs/T34_RuntimeReportBidirectionalTrace.spec.md", + "sha256": "d1dba95fc9701fc29e79fc488f9acbe02617f733f868e0a0d5ecbe9af54805b1", + "size": 980 + }, + "ION/06_intelligence/specs/T35_RuntimeReportBidirectionalTraceComparison.spec.md": { + "path": "ION/06_intelligence/specs/T35_RuntimeReportBidirectionalTraceComparison.spec.md", + "sha256": "9ebaf5b338ee8794da3b0f26a81af8bfc98691f8429e18a19a185a838d67b2e9", + "size": 1032 + }, + "ION/06_intelligence/specs/T36_RuntimeReportBidirectionalTemporalTrace.spec.md": { + "path": "ION/06_intelligence/specs/T36_RuntimeReportBidirectionalTemporalTrace.spec.md", + "sha256": "2ec4cdb120826b67905bd62e2df5b8c7e6c88187ac9195c716deab836531f54a", + "size": 980 + }, + "ION/06_intelligence/specs/T37_RuntimeReportBidirectionalFamilySummary.spec.md": { + "path": "ION/06_intelligence/specs/T37_RuntimeReportBidirectionalFamilySummary.spec.md", + "sha256": "75e78cddb73ba79a946cf67e474018a6992163fd36f086ff6a63989faa71e41c", + "size": 1487 + }, + "ION/06_intelligence/specs/T38_SupervisedAutomationPolicyMatrix.spec.md": { + "path": "ION/06_intelligence/specs/T38_SupervisedAutomationPolicyMatrix.spec.md", + "sha256": "3ab40eee21e041396ab12b0c1d1d9add1460d24470905ddc7a6d6657ad5d80f5", + "size": 686 + }, + "ION/06_intelligence/specs/T39_SupervisedDaemonService.spec.md": { + "path": "ION/06_intelligence/specs/T39_SupervisedDaemonService.spec.md", + "sha256": "17bdfd5f56382aacba1c65a7c8643de50fb191051cdf2e760558dba9cb60c621", + "size": 649 + }, + "ION/06_intelligence/specs/T40_OperatorControlState.spec.md": { + "path": "ION/06_intelligence/specs/T40_OperatorControlState.spec.md", + "sha256": "202c93e7211efc09928872c9d5703196d988d81e66e4d66b29696a841fb47a7e", + "size": 523 + }, + "ION/06_intelligence/specs/T41_RecoveryReplayContract.spec.md": { + "path": "ION/06_intelligence/specs/T41_RecoveryReplayContract.spec.md", + "sha256": "927911b8af06dca3d0d4475b0109c28fc760ac4e65002a2ba94e64375c1e0572", + "size": 1678 + }, + "ION/06_intelligence/specs/T42_ChildWorkOperationalization.spec.md": { + "path": "ION/06_intelligence/specs/T42_ChildWorkOperationalization.spec.md", + "sha256": "0856726f4bb582d5070ee6c397691b6356570cf8698c85b01d1e45e7ef94fb5b", + "size": 1975 + }, + "ION/06_intelligence/specs/T43_ExternalExecutionBridgeContract.spec.md": { + "path": "ION/06_intelligence/specs/T43_ExternalExecutionBridgeContract.spec.md", + "sha256": "04130df42c1b539c63624fb97c09fc19499df6cb388269ae23d8f988ce68d978", + "size": 1390 + }, + "ION/06_intelligence/specs/T44_MCPAutomationSurface.spec.md": { + "path": "ION/06_intelligence/specs/T44_MCPAutomationSurface.spec.md", + "sha256": "3bc9b15eec1eafb2f5cfc5a08d09126faf510abaab30b3ebde6b3569317ac738", + "size": 766 + }, + "ION/06_intelligence/specs/T45_OperationalHardeningLifecycle.spec.md": { + "path": "ION/06_intelligence/specs/T45_OperationalHardeningLifecycle.spec.md", + "sha256": "4b8821da3c3c2cf96accf863bec32f3339f7e9052188d10eb4ca6cac0e1654b5", + "size": 1607 + }, + "ION/06_intelligence/specs/T46_OperationalAcceptancePackaging.spec.md": { + "path": "ION/06_intelligence/specs/T46_OperationalAcceptancePackaging.spec.md", + "sha256": "0a93569b8df633383f96479bf32c80f7214ab186e1416bc7578b27e7b5b704d2", + "size": 1349 + }, + "ION/06_intelligence/specs/T47_HorizonOrchestrationWindows.spec.md": { + "path": "ION/06_intelligence/specs/T47_HorizonOrchestrationWindows.spec.md", + "sha256": "1392c2359a01037dd7f3e38cee94596e44f9af44594d30565a10b105e84c5a95", + "size": 384 + }, + "ION/06_intelligence/specs/T48_ManualAutomationFallback.spec.md": { + "path": "ION/06_intelligence/specs/T48_ManualAutomationFallback.spec.md", + "sha256": "183ff8200e03434c67e0cb953769755021b91c81c64a2e265a3f352aed203cf9", + "size": 429 + }, + "ION/06_intelligence/specs/T49_OperatorEntrySurface.spec.md": { + "path": "ION/06_intelligence/specs/T49_OperatorEntrySurface.spec.md", + "sha256": "59076487943a6023aa57aa8e9d0a0a77b01172ea58f1faf12bcb57a4d8520e1d", + "size": 1249 + }, + "ION/06_intelligence/specs/T50_PacketAndHandoffTaxonomy.spec.md": { + "path": "ION/06_intelligence/specs/T50_PacketAndHandoffTaxonomy.spec.md", + "sha256": "cbcd08cb752406eb93cc9ab490eb9040848f38fd9b0eee4c59e3f9d2ab7ae30b", + "size": 1221 + }, + "ION/06_intelligence/specs/T51_WorkflowPacketValidationHelpers.spec.md": { + "path": "ION/06_intelligence/specs/T51_WorkflowPacketValidationHelpers.spec.md", + "sha256": "e9fe8ba76a921ce1498cafa501e30e4d5c276ab352dd5881823bdb1dc9ba7dba", + "size": 946 + }, + "ION/06_intelligence/specs/T52_WorkingAgentSelfUseDiscipline.spec.md": { + "path": "ION/06_intelligence/specs/T52_WorkingAgentSelfUseDiscipline.spec.md", + "sha256": "d3a8a28975f76d592c558df71abac68881e6af3a65bb71d717518ca91ed85e75", + "size": 954 + }, + "ION/06_intelligence/specs/T53_HorizonStateFamily.spec.md": { + "path": "ION/06_intelligence/specs/T53_HorizonStateFamily.spec.md", + "sha256": "5db1e3c55d02e464fe6a1a72a8e97e23bddba00f6f2cc01a9ef1f2655d812c41", + "size": 424 + }, + "ION/06_intelligence/specs/T54_HorizonTighteningProjection.spec.md": { + "path": "ION/06_intelligence/specs/T54_HorizonTighteningProjection.spec.md", + "sha256": "52c3a644b28e85f00ebe5626133b00fe1d61c1b8c958fb871e80472464766934", + "size": 491 + }, + "ION/06_intelligence/specs/T55_HorizonPacketEnactmentHelper.spec.md": { + "path": "ION/06_intelligence/specs/T55_HorizonPacketEnactmentHelper.spec.md", + "sha256": "34b5094a0159756f92eea1d4e1e81031ce5099b8b9516b382a671707b2851a48", + "size": 802 + }, + "ION/06_intelligence/specs/T56_HorizonPacketEnactmentCliBridge.spec.md": { + "path": "ION/06_intelligence/specs/T56_HorizonPacketEnactmentCliBridge.spec.md", + "sha256": "c20f64829cc17f7bb6dea3ff4d5451fd81f6db393a2fb92e8e9cdff09fc6d0bf", + "size": 841 + }, + "ION/06_intelligence/specs/T57_HorizonEnactmentReceiptFamily.spec.md": { + "path": "ION/06_intelligence/specs/T57_HorizonEnactmentReceiptFamily.spec.md", + "sha256": "38e3872fe2bf99f7a456193ec5bc23ed131a5ce045b7f4c6d9f1cd1fd8dec1e4", + "size": 706 + }, + "ION/06_intelligence/specs/T58_HorizonEnactmentReceiptOperatorProjection.spec.md": { + "path": "ION/06_intelligence/specs/T58_HorizonEnactmentReceiptOperatorProjection.spec.md", + "sha256": "9818aa79bc3ad060e5bfba73cbad6b68d5613a8cfc7bc3b26ef509dc28e2fd73", + "size": 798 + }, + "ION/06_intelligence/specs/T59_HorizonToExecutionWorkflowRehearsal.spec.md": { + "path": "ION/06_intelligence/specs/T59_HorizonToExecutionWorkflowRehearsal.spec.md", + "sha256": "a2f464be6ec3486cbf2900c477f8fd883c3b67463b1fb5eef86f4c7f91d70e2e", + "size": 685 + }, + "ION/06_intelligence/specs/T60_HorizonCarrierSymmetryRehearsal.spec.md": { + "path": "ION/06_intelligence/specs/T60_HorizonCarrierSymmetryRehearsal.spec.md", + "sha256": "fd84157c1e20ae55ddce1633e664e73103656037e7a19d84c70daec251784931", + "size": 832 + }, + "ION/06_intelligence/specs/T61_BoundedMultiAgentAllocatorProjection.spec.md": { + "path": "ION/06_intelligence/specs/T61_BoundedMultiAgentAllocatorProjection.spec.md", + "sha256": "70427d59a71b144f5964df44fa754d89b6162cd1aef089b853065cd9787d8fe6", + "size": 771 + }, + "ION/06_intelligence/specs/T62_BranchClaimReceiptPersistenceAndCli.spec.md": { + "path": "ION/06_intelligence/specs/T62_BranchClaimReceiptPersistenceAndCli.spec.md", + "sha256": "22234289a12503c0d40ca97f80b26c2f9a47413490a4d344a50793f60354bbda", + "size": 766 + }, + "ION/06_intelligence/specs/T63_FanInSettlementReceiptAndMergeProposal.spec.md": { + "path": "ION/06_intelligence/specs/T63_FanInSettlementReceiptAndMergeProposal.spec.md", + "sha256": "40961ad298f883493a1ba59ac6730f29eed3402e5132f6e12105e309a3a8009a", + "size": 476 + }, + "ION/06_intelligence/specs/T64_FanInSettlementCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T64_FanInSettlementCliAndStatus.spec.md", + "sha256": "9e3a94584fceff812389e5aa096e41930991f1375fa8187b922a7ead59b40de9", + "size": 463 + }, + "ION/06_intelligence/specs/T65_BoundedFanInSettlementRehearsal.spec.md": { + "path": "ION/06_intelligence/specs/T65_BoundedFanInSettlementRehearsal.spec.md", + "sha256": "0998494c44e7818d37037dde430699e169112f273150bcea92a93a017581aea8", + "size": 442 + }, + "ION/06_intelligence/specs/T66_BranchControlReceiptAndBudgetPosture.spec.md": { + "path": "ION/06_intelligence/specs/T66_BranchControlReceiptAndBudgetPosture.spec.md", + "sha256": "57d0f1fb706a9a7e377098f804c14e87ba0dc23da655eecc39b64cd50d6c73f9", + "size": 755 + }, + "ION/06_intelligence/specs/T67_AllocatorAndSettlementBranchControlIntegration.spec.md": { + "path": "ION/06_intelligence/specs/T67_AllocatorAndSettlementBranchControlIntegration.spec.md", + "sha256": "bc83a0d68ff780c03acfa4041f5685f86b5d0934a199400a7233d3300af3b50c", + "size": 662 + }, + "ION/06_intelligence/specs/T68_BranchControlCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T68_BranchControlCliAndStatus.spec.md", + "sha256": "a49778b28867417e946d55fb689c3bb0b6ba362e9fca8cb3b9ca132df81ff98f", + "size": 552 + }, + "ION/06_intelligence/specs/T69_BranchHorizonSyncReceiptAndProjection.spec.md": { + "path": "ION/06_intelligence/specs/T69_BranchHorizonSyncReceiptAndProjection.spec.md", + "sha256": "0b353ccb5525647de61f0ea127959c7f40336047b7c1af57701debb21701afcb", + "size": 511 + }, + "ION/06_intelligence/specs/T70_BranchFuturePostureMapping.spec.md": { + "path": "ION/06_intelligence/specs/T70_BranchFuturePostureMapping.spec.md", + "sha256": "c414a429e18bfeac54147a33acc161364106fd56e825267da0899114957195dd", + "size": 588 + }, + "ION/06_intelligence/specs/T71_BranchSyncCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T71_BranchSyncCliAndStatus.spec.md", + "sha256": "51f19dc7495e2c1a98f8a8007bc937cef5fa74fe891f2a774dc21a8b027b3f8a", + "size": 430 + }, + "ION/06_intelligence/specs/T72_BranchRescheduleReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T72_BranchRescheduleReceipt.spec.md", + "sha256": "b01c5fc0179af148167cc1b7c58be469defa10645f8e130ea73de026e32e5bad", + "size": 467 + }, + "ION/06_intelligence/specs/T73_BranchRescheduleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T73_BranchRescheduleCliAndStatus.spec.md", + "sha256": "9fcf9bda47e1f49c886c104acfe53a4f8f2de1a7d2a7319a70c585aeeb628742", + "size": 403 + }, + "ION/06_intelligence/specs/T74_ScheduleControlReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T74_ScheduleControlReceipt.spec.md", + "sha256": "613b9c18da0fa75c1ff1afaf840456bec3641a1bc60f3a5ae1c2786b62f88e2c", + "size": 436 + }, + "ION/06_intelligence/specs/T75_ScheduleMaintainCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T75_ScheduleMaintainCliAndStatus.spec.md", + "sha256": "89c9e97461ce302de3d6de690c57ee468dfb61a41c827f2febd48219b1ed3bdb", + "size": 392 + }, + "ION/06_intelligence/specs/T76_ScheduleRetryReassignmentBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T76_ScheduleRetryReassignmentBehavior.spec.md", + "sha256": "f30c83eaca664b06835eec0937a7e73151454e53b775e517b1b3a1d06edc228c", + "size": 351 + }, + "ION/06_intelligence/specs/T77_ScheduleDispatchReconciliationReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T77_ScheduleDispatchReconciliationReceipt.spec.md", + "sha256": "ce1969c140347628e0327e623d8b1f2db9c4a9aec05ae8b368b6691add67e9d7", + "size": 599 + }, + "ION/06_intelligence/specs/T78_ScheduleReconcileCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T78_ScheduleReconcileCliAndStatus.spec.md", + "sha256": "958df2f9da08748888108e5ea99309586a1122c615fd89bd5f70b746fe8eab41", + "size": 431 + }, + "ION/06_intelligence/specs/T79_ScheduleAssignmentRetirementBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T79_ScheduleAssignmentRetirementBehavior.spec.md", + "sha256": "cbc9758bea4e5b5708c8df95f5b09e6722180826647a3b7d05f557a9a36c97bc", + "size": 388 + }, + "ION/06_intelligence/specs/T80_ScheduleCompletionReleaseReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T80_ScheduleCompletionReleaseReceipt.spec.md", + "sha256": "d9ab2e954a9e2248ff4dd453af890a0c44cb7a10bd10a03c965db3e7ac676f3f", + "size": 289 + }, + "ION/06_intelligence/specs/T81_ScheduleReleaseCompletionCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T81_ScheduleReleaseCompletionCliAndStatus.spec.md", + "sha256": "0b0f5dbda877252c550c6d9f7e8b6f25a8dc4058a888b2d2d78f6908e5486856", + "size": 267 + }, + "ION/06_intelligence/specs/T82_AssignmentReleaseTerminalStateBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T82_AssignmentReleaseTerminalStateBehavior.spec.md", + "sha256": "b45708b1c6856aba03b7773f488a1d408dba5c04b43c038e350edb8a9ecb09d4", + "size": 282 + }, + "ION/06_intelligence/specs/T83_ScheduleSettlementReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T83_ScheduleSettlementReceipt.spec.md", + "sha256": "9db2b816061593bb6a37e40cc1a90022d41893e50fac4d4e7af3005f2bbf171c", + "size": 446 + }, + "ION/06_intelligence/specs/T84_ScheduleFutureReentryBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T84_ScheduleFutureReentryBehavior.spec.md", + "sha256": "d260b353e4310e8a366848b8cfc7a7279a708f7fe26c8d0c18104aaf54a46227", + "size": 346 + }, + "ION/06_intelligence/specs/T85_ScheduleSettleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T85_ScheduleSettleCliAndStatus.spec.md", + "sha256": "1d3cd0b9489cfdf50dc9ecc2526e314c6e90be50b7d64ab54efe62130b878cc9", + "size": 246 + }, + "ION/06_intelligence/specs/T86_ScheduleLineageArchiveReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T86_ScheduleLineageArchiveReceipt.spec.md", + "sha256": "b60f9564655cb585e4e74d62321091c3b650b91f1f05167a1b0ae637c2071335", + "size": 545 + }, + "ION/06_intelligence/specs/T87_ScheduleLineageCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T87_ScheduleLineageCliAndStatus.spec.md", + "sha256": "01732b1e7da31db76027dddbe1d66d20c0db059e12f2517ca6a3c6a825dc0099", + "size": 263 + }, + "ION/06_intelligence/specs/T88_ScheduleActiveLineVersusArchivedHistory.spec.md": { + "path": "ION/06_intelligence/specs/T88_ScheduleActiveLineVersusArchivedHistory.spec.md", + "sha256": "43d6e07130aeac7601aadfdde4414b7bf543c77a43b5c29e04a4c089e48c462e", + "size": 309 + }, + "ION/06_intelligence/specs/T89_ScheduleLineageReplayReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T89_ScheduleLineageReplayReceipt.spec.md", + "sha256": "b3509e096e73ca46dd0d51d562c61b3aa8f4bc9c915d69f6a3a845a33091119e", + "size": 491 + }, + "ION/06_intelligence/specs/T90_ActiveCycleReconstructionStages.spec.md": { + "path": "ION/06_intelligence/specs/T90_ActiveCycleReconstructionStages.spec.md", + "sha256": "187d941c3e4c2dfac353a71bb695752417fde9e8292876185974afaf22b40fa0", + "size": 393 + }, + "ION/06_intelligence/specs/T91_ScheduleReplayCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T91_ScheduleReplayCliAndStatus.spec.md", + "sha256": "b27ec069a730b1d211f6d62c4427508c6afcf9cf9c3af180fb97baf1870d7882", + "size": 282 + }, + "ION/06_intelligence/specs/T92_ScheduleResumeProjectionReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T92_ScheduleResumeProjectionReceipt.spec.md", + "sha256": "2c18a797c6ffbb1c6d512dd2c115be4e9052361af9c5d44ad9350bd9d5a40fa9", + "size": 495 + }, + "ION/06_intelligence/specs/T93_ScheduleResumePacketBehavior.spec.md": { + "path": "ION/06_intelligence/specs/T93_ScheduleResumePacketBehavior.spec.md", + "sha256": "919b90f5832122c75c158873524d610cdd81ed44991e9b51483ea3a2997ea9b4", + "size": 410 + }, + "ION/06_intelligence/specs/T94_ScheduleProjectResumeCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T94_ScheduleProjectResumeCliAndStatus.spec.md", + "sha256": "04dd40c1731310ce6de6d2f66a30caf2b928ca6efb4ed3ec6ab1e35d95e1e4ab", + "size": 271 + }, + "ION/06_intelligence/specs/T95_ScheduleResumeBundleMaterializationReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T95_ScheduleResumeBundleMaterializationReceipt.spec.md", + "sha256": "8c39bdf1220c76f16de5f8bafc229b669291db10e42ec9d6272ac1e79854a960", + "size": 622 + }, + "ION/06_intelligence/specs/T96_ScheduleResumeBundleContinuationLink.spec.md": { + "path": "ION/06_intelligence/specs/T96_ScheduleResumeBundleContinuationLink.spec.md", + "sha256": "9b1f79921546cace01a1d9a893b977051067d620334b3e984a40d244588f6b05", + "size": 414 + }, + "ION/06_intelligence/specs/T97_ScheduleResumeBundleCliAndStatus.spec.md": { + "path": "ION/06_intelligence/specs/T97_ScheduleResumeBundleCliAndStatus.spec.md", + "sha256": "763bc4bb9e209b0f3f4de9b84f99f7f35df95dbe8e42a4c0a204e6197a109358", + "size": 313 + }, + "ION/06_intelligence/specs/T98_ScheduleTakeoverEntryActivationReceipt.spec.md": { + "path": "ION/06_intelligence/specs/T98_ScheduleTakeoverEntryActivationReceipt.spec.md", + "sha256": "5bc5c8089201cd926912f7a219d124c3dcb5094a34ed2573af5bb4012c7ea5ed", + "size": 309 + }, + "ION/06_intelligence/specs/T99_ScheduleActivationSummaryProjection.spec.md": { + "path": "ION/06_intelligence/specs/T99_ScheduleActivationSummaryProjection.spec.md", + "sha256": "a61ff2f04f8eb194debd97814003ed4a631d236dcec276092614f40a740575fa", + "size": 326 + }, + "ION/07_templates/README.md": { + "path": "ION/07_templates/README.md", + "sha256": "db8aa2c1cb06976c6c879932dfe4d49860f90aa6195553951ab2115aaebc6348", + "size": 623 + }, + "ION/07_templates/_MASTER.md": { + "path": "ION/07_templates/_MASTER.md", + "sha256": "931bb7b506d0f919ee573111aca76de1da341a9abeac59103b803c08f43d2e39", + "size": 552 + }, + "ION/07_templates/actions/AGENT_SPAWN.md": { + "path": "ION/07_templates/actions/AGENT_SPAWN.md", + "sha256": "df55959027af5a845f455e01dd4ab90d862d2c3c8c3eb0462c5ddb7bf921f811", + "size": 1471 + }, + "ION/07_templates/actions/CODE.md": { + "path": "ION/07_templates/actions/CODE.md", + "sha256": "c9a33a54a7d5c7e84de62c18bf5a662cb25d3cbcde352190896e9ecff5d1d63f", + "size": 920 + }, + "ION/07_templates/actions/CURSOR_HANDOFF.md": { + "path": "ION/07_templates/actions/CURSOR_HANDOFF.md", + "sha256": "a212e5e56b5aace62e78dd5245f472c05778f6a0889628d612d1b5b932156723", + "size": 969 + }, + "ION/07_templates/actions/DISAGREEMENT_ESCALATION.md": { + "path": "ION/07_templates/actions/DISAGREEMENT_ESCALATION.md", + "sha256": "60823993c7b3919601a6fef07bd3f60e6ef092a92cb87383ec9400cd7115d66b", + "size": 1271 + }, + "ION/07_templates/actions/EXTERNAL_RETURN.md": { + "path": "ION/07_templates/actions/EXTERNAL_RETURN.md", + "sha256": "60b75fdf4aeb9f2b513d8a1cf58da5afe2963a9e032dbf3df96c1f9a9508fcf4", + "size": 1391 + }, + "ION/07_templates/actions/FULL_CARRIER_ACTION_RECEIPT.md": { + "path": "ION/07_templates/actions/FULL_CARRIER_ACTION_RECEIPT.md", + "sha256": "574cc709f5ca856305f730cc9fa48aab68c42ff5587e8dbbc32159a6a1d696c1", + "size": 694 + }, + "ION/07_templates/actions/HANDOFF.md": { + "path": "ION/07_templates/actions/HANDOFF.md", + "sha256": "6bb832d399324d1a560e8b5777fa4742eeb87d7f5d21e7143b96cc9ab0fd735d", + "size": 880 + }, + "ION/07_templates/actions/MANUAL_AUTOMATION_FALLBACK.md": { + "path": "ION/07_templates/actions/MANUAL_AUTOMATION_FALLBACK.md", + "sha256": "49718e2cbdd00bb5bf3a02e8ffd0eae6d684c4a0f4c284c059ba07946c2b458d", + "size": 1049 + }, + "ION/07_templates/actions/PATCH_PACKAGE.md": { + "path": "ION/07_templates/actions/PATCH_PACKAGE.md", + "sha256": "826cc9fb3b86908d367e07e147e10c584d536fc74eb3e34247f23859ca960698", + "size": 1036 + }, + "ION/07_templates/actions/ROLE_CHASSIS_MOUNT.md": { + "path": "ION/07_templates/actions/ROLE_CHASSIS_MOUNT.md", + "sha256": "71ebe92c935dda60c83eaa94e60ce476ae7b5c3e566f4218f8353cc8825b9b05", + "size": 1497 + }, + "ION/07_templates/actions/ROLE_SESSION.md": { + "path": "ION/07_templates/actions/ROLE_SESSION.md", + "sha256": "788db27b957256803a42ee3de51f59df4fa5b5c590e7d2c58ee39a1ca1b57125", + "size": 1220 + }, + "ION/07_templates/actions/SIGNAL.md": { + "path": "ION/07_templates/actions/SIGNAL.md", + "sha256": "a4b729e8ef6211e63a6ede5fcf0c12e3c4b08ddd634d8eef63a64574734907bc", + "size": 884 + }, + "ION/07_templates/actions/TASK.md": { + "path": "ION/07_templates/actions/TASK.md", + "sha256": "478caacfe2b12e905d245585f20e2f9788391bcf8e0608c958a5e4bccb4cf1dd", + "size": 1608 + }, + "ION/07_templates/actions/TEMPLATE_DEVELOPMENT.md": { + "path": "ION/07_templates/actions/TEMPLATE_DEVELOPMENT.md", + "sha256": "1b7dfdaea3098e0eb7056ca62aab022a5c19c22d2321b71d287d0ce7c9cbd676", + "size": 7518 + }, + "ION/07_templates/actions/TEMPLATE_SURFACE_CHANGE.md": { + "path": "ION/07_templates/actions/TEMPLATE_SURFACE_CHANGE.md", + "sha256": "932c6c28770908c6e382932ba709d8b7aaa760c97a3aa58b02f76e6e4f33a0e2", + "size": 1299 + }, + "ION/07_templates/agents/AGENT_RESULT_PACKET.md": { + "path": "ION/07_templates/agents/AGENT_RESULT_PACKET.md", + "sha256": "24b8515ce231a095d7ff154cd491536758a9fa448a61939ac09726a407fc819e", + "size": 722 + }, + "ION/07_templates/agents/AGENT_SPAWN_REQUEST.md": { + "path": "ION/07_templates/agents/AGENT_SPAWN_REQUEST.md", + "sha256": "1323527bace656cc362dfbe30407e773057017bee5713646c992467ab7e5125e", + "size": 1086 + }, + "ION/07_templates/agents/ION_CONTEXT_SPECIALIST_RETURN.md": { + "path": "ION/07_templates/agents/ION_CONTEXT_SPECIALIST_RETURN.md", + "sha256": "a3fab219d43ed49e6a1e6b72b39095d37d6898e886db67b207ef3b3a521e4ebd", + "size": 264 + }, + "ION/07_templates/automation/MANUAL_AUTOMATION_FALLBACK_PACKET.md": { + "path": "ION/07_templates/automation/MANUAL_AUTOMATION_FALLBACK_PACKET.md", + "sha256": "5ced8e04c8bbc0a03936bf539b4f149cc8420e181affe024d76b371fbd392911", + "size": 599 + }, + "ION/07_templates/bindings/CODEX__CODE.md": { + "path": "ION/07_templates/bindings/CODEX__CODE.md", + "sha256": "5cbdc7fd83b6c63132206033aea6e6b5380dd9f27f500380f972afa0ebfc1f26", + "size": 1774 + }, + "ION/07_templates/bindings/CODEX__CSR.md": { + "path": "ION/07_templates/bindings/CODEX__CSR.md", + "sha256": "3f8e663305158eb9bc40005d1d588c31d36f0513da1249197192d7198ed1f71e", + "size": 1813 + }, + "ION/07_templates/bindings/CODEX__PROPOSAL.md": { + "path": "ION/07_templates/bindings/CODEX__PROPOSAL.md", + "sha256": "d71867f2b55e43d07f6c71b3d0dc496dcd1cdca97b9bd3d0211951f5375a096c", + "size": 1914 + }, + "ION/07_templates/bindings/CODEX__REASONING_JOURNAL.md": { + "path": "ION/07_templates/bindings/CODEX__REASONING_JOURNAL.md", + "sha256": "ba3512904bcfad67745d2cf8ed21653c978c511e36fad438e6e6d26f2c586ded", + "size": 2155 + }, + "ION/07_templates/bindings/CODEX__STATUS_REPORT.md": { + "path": "ION/07_templates/bindings/CODEX__STATUS_REPORT.md", + "sha256": "29674f939eee6cc9bdbf59861599ab1319e62cda409fabcd3de81d2329100ed6", + "size": 1916 + }, + "ION/07_templates/bindings/CODEX__TASK.md": { + "path": "ION/07_templates/bindings/CODEX__TASK.md", + "sha256": "7b71a46ba3e3c4cb1b35741dba8f76a0736b06389b2f02e620da0913021e84be", + "size": 1954 + }, + "ION/07_templates/bindings/MASON__CODE.md": { + "path": "ION/07_templates/bindings/MASON__CODE.md", + "sha256": "26be8931e04e0f6818b551fed9ca8c68be71bfda50b323e9d55a81adbccd33ce", + "size": 1114 + }, + "ION/07_templates/bindings/NEMESIS__AUDIT.md": { + "path": "ION/07_templates/bindings/NEMESIS__AUDIT.md", + "sha256": "03ee57926749f1639c57c2b9ba46ed6c986dd28b9f6332bb4673b8e748bff6d6", + "size": 1202 + }, + "ION/07_templates/bindings/PERSONA_INTERFACE__USER_RESPONSE.md": { + "path": "ION/07_templates/bindings/PERSONA_INTERFACE__USER_RESPONSE.md", + "sha256": "0678638b300c124ec2bc8dacef50676b69a11ec844a3c795fc676660fcf1af69", + "size": 1806 + }, + "ION/07_templates/bindings/README.md": { + "path": "ION/07_templates/bindings/README.md", + "sha256": "9def182c9692c26c2ac474aeedafb7199d3b7401cca47c181660bf86ea074609", + "size": 2214 + }, + "ION/07_templates/bindings/RELAY__HANDOFF.md": { + "path": "ION/07_templates/bindings/RELAY__HANDOFF.md", + "sha256": "5b7ff9d0d2ea46b2df37394f1ef98911377484bce5e6ae63467021f1fdf78e40", + "size": 1220 + }, + "ION/07_templates/bindings/RELAY__SEMANTIC_BOUNDARY.md": { + "path": "ION/07_templates/bindings/RELAY__SEMANTIC_BOUNDARY.md", + "sha256": "db6b886cdca977b15804f1e59f9d8db2912db0bdd9438283ee2375686b7e2e7d", + "size": 2331 + }, + "ION/07_templates/bindings/STEWARD__PROPOSAL.md": { + "path": "ION/07_templates/bindings/STEWARD__PROPOSAL.md", + "sha256": "7c69b685df2085c71cd6ce131fc23bd492b40e311c9a1c4d09dc59033c24b8c6", + "size": 929 + }, + "ION/07_templates/bindings/STEWARD__STATUS_REPORT.md": { + "path": "ION/07_templates/bindings/STEWARD__STATUS_REPORT.md", + "sha256": "16bfef5a695fe57d5bc8923c46f9b9f14857a1c6ff22132bd2fd41fef4df8809", + "size": 934 + }, + "ION/07_templates/bindings/STEWARD__TASK.md": { + "path": "ION/07_templates/bindings/STEWARD__TASK.md", + "sha256": "9ac57cdb7a299fa782b3edad5fdd2c8eee1e24a92efb426e5622b371e46312bb", + "size": 887 + }, + "ION/07_templates/bindings/STEWARD__TEMPLATE_SURFACE_CHANGE.md": { + "path": "ION/07_templates/bindings/STEWARD__TEMPLATE_SURFACE_CHANGE.md", + "sha256": "59e38d7f9457c4b1a29c085b84fa5f85bab9622a344f7ffd717d12dc9d4114dd", + "size": 1097 + }, + "ION/07_templates/bindings/THOTH__RESEARCH.md": { + "path": "ION/07_templates/bindings/THOTH__RESEARCH.md", + "sha256": "67e76ccd9d0be37c00aa0f8233506728b1f8b6aca5d0b9ce2b0ef1aaacc2201d", + "size": 1158 + }, + "ION/07_templates/bindings/VESTIGE__EVIDENCE.md": { + "path": "ION/07_templates/bindings/VESTIGE__EVIDENCE.md", + "sha256": "01d9fb3191374ad1e4db0d17393e08298f4ef02e5771fd0dc48e90d94dc2cb93", + "size": 1545 + }, + "ION/07_templates/carriers/CARRIER_CAPABILITY_SURVEY.md": { + "path": "ION/07_templates/carriers/CARRIER_CAPABILITY_SURVEY.md", + "sha256": "bd84ea1822b0e8efd86ef6d6ccd053b393e441eba163083885d49f6ef1aaea29", + "size": 1296 + }, + "ION/07_templates/carriers/CARRIER_LEVEL_DECISION.md": { + "path": "ION/07_templates/carriers/CARRIER_LEVEL_DECISION.md", + "sha256": "0203b2c20cad23c5537b4bdecd966ff89a1a188f9d92602f4a201879c47739b1", + "size": 894 + }, + "ION/07_templates/carriers/CARRIER_MOUNT_PROOF.md": { + "path": "ION/07_templates/carriers/CARRIER_MOUNT_PROOF.md", + "sha256": "a46b5b48e9ed1058ada6df001f0572ee72973a438a688f27a50b2ec30803d2af", + "size": 1752 + }, + "ION/07_templates/carriers/CARRIER_SESSION_PACKET.md": { + "path": "ION/07_templates/carriers/CARRIER_SESSION_PACKET.md", + "sha256": "b6cd0adc402441d95d3129894086e6e38816509416b045f45bd5afd4b7f73438", + "size": 1006 + }, + "ION/07_templates/carriers/CARRIER_UPGRADE_REQUEST.md": { + "path": "ION/07_templates/carriers/CARRIER_UPGRADE_REQUEST.md", + "sha256": "9805421f5d98764e96e39e4a4f473445bd53cc83c16ed372eb454419976eb225", + "size": 1575 + }, + "ION/07_templates/carriers/CHATGPT_BROWSER_CONNECTOR_SESSION_PACKET.md": { + "path": "ION/07_templates/carriers/CHATGPT_BROWSER_CONNECTOR_SESSION_PACKET.md", + "sha256": "d244861a24393b65f6c66fd33e4d65e1c6858044864a531ef369fa02795e93d0", + "size": 1619 + }, + "ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md": { + "path": "ION/07_templates/carriers/CODEX_CLI_EXECUTION_PACKET.md", + "sha256": "463c8d944f4c29b1f0b9edc9dcdc23085d2ac39c4d2805bea1e21032cace3891", + "size": 1699 + }, + "ION/07_templates/carriers/CODEX_EXTENSION_EXECUTION_PACKET.md": { + "path": "ION/07_templates/carriers/CODEX_EXTENSION_EXECUTION_PACKET.md", + "sha256": "719951c97c7f90f598cc68699440bf7df718e72494c801a1f15fd0de210575d0", + "size": 1475 + }, + "ION/07_templates/carriers/FULL_CARRIER_MOUNT_PROOF.md": { + "path": "ION/07_templates/carriers/FULL_CARRIER_MOUNT_PROOF.md", + "sha256": "2cfa201f82a456d91d5a6ac7e5c9b7189bf207aa1bd07fde67af8a33ae27d61c", + "size": 1517 + }, + "ION/07_templates/confidence/CSR.md": { + "path": "ION/07_templates/confidence/CSR.md", + "sha256": "2d8312e47789e105f37c2c92183ca8ffb01cd6b8628f58274ce7811a3b0b4a7e", + "size": 3233 + }, + "ION/07_templates/context/AGENT_CONTEXT_BUILD_STEP.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_BUILD_STEP.md", + "sha256": "931da654a6a9c1625da5e5348088c009004c09d2c70dda061d1534ae54437e6d", + "size": 1918 + }, + "ION/07_templates/context/AGENT_CONTEXT_PACKAGE.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_PACKAGE.md", + "sha256": "0781c6baeac4fe0087ec136457d3fed73b5953e062584183bd9644d80fd74a1d", + "size": 1467 + }, + "ION/07_templates/context/AGENT_CONTEXT_PACKAGE_INDEX.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_PACKAGE_INDEX.md", + "sha256": "2090d6b38fe93452000d3e3d3df48659df125117ebb168ab60345f8174add30a", + "size": 548 + }, + "ION/07_templates/context/AGENT_CONTEXT_SYSTEM_CARD.md": { + "path": "ION/07_templates/context/AGENT_CONTEXT_SYSTEM_CARD.md", + "sha256": "c6572b8e526971a8412e0cc775e08ea1a6de7e5a26e1e9e66ce269473ed55f70", + "size": 1037 + }, + "ION/07_templates/context/AGENT_DYNAMIC_CONTEXT_WINDOW_PLAN.md": { + "path": "ION/07_templates/context/AGENT_DYNAMIC_CONTEXT_WINDOW_PLAN.md", + "sha256": "40332ae5ac50ab04a0940aa13923630f683b1d43df259f901dfb0b3cfc00b7f9", + "size": 844 + }, + "ION/07_templates/context/CONTEXT_NODE.md": { + "path": "ION/07_templates/context/CONTEXT_NODE.md", + "sha256": "e8d4f3d38cd551493fb175d03551982626898f7ef096f81c0fbfc2f90c51786e", + "size": 204 + }, + "ION/07_templates/context/CONTEXT_PACKAGE.md": { + "path": "ION/07_templates/context/CONTEXT_PACKAGE.md", + "sha256": "63f43a6ee1c14b5a6fb2211630ae8601fdc6dafec8319f4132e1e6bb6709ca73", + "size": 207 + }, + "ION/07_templates/context/EVENTED_TEMPLATE_FILE_OBJECT.md": { + "path": "ION/07_templates/context/EVENTED_TEMPLATE_FILE_OBJECT.md", + "sha256": "f87726b48fab1b717ba79f265e057af9a02ff5b98872722c0d80c2771f22141d", + "size": 1102 + }, + "ION/07_templates/context/FAN_IN_SETTLEMENT.md": { + "path": "ION/07_templates/context/FAN_IN_SETTLEMENT.md", + "sha256": "0e7a7ba8753f12189e516e51882a14b1cb497043f9db8ae14f64ea42d4d88b06", + "size": 209 + }, + "ION/07_templates/context/FAN_OUT_REQUEST.md": { + "path": "ION/07_templates/context/FAN_OUT_REQUEST.md", + "sha256": "ccbf5f2ab6c36add7fd71e6f30d18b7cc13c851091d7548826e82549aeaa1d34", + "size": 207 + }, + "ION/07_templates/context/ION_CONTEXT_DELTA_RECEIPT.md": { + "path": "ION/07_templates/context/ION_CONTEXT_DELTA_RECEIPT.md", + "sha256": "1162be9c788cb9b21c8ab997c7fa4d8382b52cb6c126e6826998e8f14ed40955", + "size": 662 + }, + "ION/07_templates/context/ION_CONTEXT_LOAD_PROOF.md": { + "path": "ION/07_templates/context/ION_CONTEXT_LOAD_PROOF.md", + "sha256": "5b5247e385351bced8ca6978b96d03a1213aec616f50626afe932a384e7596ae", + "size": 518 + }, + "ION/07_templates/context_graph/CONTEXT_GRAPH_ONTOLOGY_COMPARISON_REPORT.md": { + "path": "ION/07_templates/context_graph/CONTEXT_GRAPH_ONTOLOGY_COMPARISON_REPORT.md", + "sha256": "8abcd0e00c7b9ade53de3ca12809e57b9157f35b915d72a15e308cc02e629d45", + "size": 656 + }, + "ION/07_templates/custom_gpt/README.md": { + "path": "ION/07_templates/custom_gpt/README.md", + "sha256": "6a0f8513838a71d8dc615341ffa4df53c311056a59196bfa484ea5f96c3e1362", + "size": 484 + }, + "ION/07_templates/custom_gpt/examples/README.md": { + "path": "ION/07_templates/custom_gpt/examples/README.md", + "sha256": "bbcec385db0fe0e2905a42452b0e6b623327d7f9c423842ac13a91a898f03096", + "size": 596 + }, + "ION/08_ui/joc_cockpit_shell/CarrierTurnPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/CarrierTurnPanel.tsx", + "sha256": "8f60aa3108bcb75ad4804f9c1f29917a1100b679f2192ec836d80044b29f0c95", + "size": 1009 + }, + "ION/08_ui/joc_cockpit_shell/ContextPackageInspectorPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/ContextPackageInspectorPanel.tsx", + "sha256": "cae302249a6bbf32ab21d7f79cddc973c43ed7b1fa43fc748124745f3cf60699", + "size": 873 + }, + "ION/08_ui/joc_cockpit_shell/CursorHookStatePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/CursorHookStatePanel.tsx", + "sha256": "7aea0f4c84830ccbc860f17adcc7cde9cb0e4b9eb7dda706ea65875039b4bfe6", + "size": 776 + }, + "ION/08_ui/joc_cockpit_shell/FrontDoorProofTracePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/FrontDoorProofTracePanel.tsx", + "sha256": "15ec8d30eee223af99488e28258d8923185d9c243f8a4e5582abcf52f9974aec", + "size": 1738 + }, + "ION/08_ui/joc_cockpit_shell/HumanGateQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/HumanGateQueuePanel.tsx", + "sha256": "2cd648683e96714bec15c2e8d724e11a61e471203d1b469d845d55082386e635", + "size": 891 + }, + "ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/JocCockpitShell.tsx", + "sha256": "78ac1eaf1ad3d1d61c8f6f21209c00e8fae7458408b45f8c892e03ce8833c523", + "size": 9902 + }, + "ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/LaneTimelinePanel.tsx", + "sha256": "74046d9acfe417c85967b6f8814b787d882d2b1dcc972d9d2e17f6bbf6c3ee4a", + "size": 1567 + }, + "ION/08_ui/joc_cockpit_shell/OperatorMessageQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/OperatorMessageQueuePanel.tsx", + "sha256": "ccc97257960544be3b11cfb4e23961a061e1ff7d8cfc5253f9499f527b1b63b7", + "size": 823 + }, + "ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/ReceiptHydrationPanel.tsx", + "sha256": "8c7664da8029da1309651cb7a94f489f7d84a425fb18ec96e426a1bf164fadfd", + "size": 1770 + }, + "ION/08_ui/joc_cockpit_shell/RuntimeDebugOverlayPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/RuntimeDebugOverlayPanel.tsx", + "sha256": "bd816a47dca45b015c9f6ddfae318038b0f8b07c0c11c05efbbda341831cfc51", + "size": 1933 + }, + "ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/RuntimeStatusPanel.tsx", + "sha256": "5f102cd67a08c4aa02f5238069e8424f18ac211c07d663b2485d047ca61c8fa2", + "size": 1953 + }, + "ION/08_ui/joc_cockpit_shell/SpawnQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/SpawnQueuePanel.tsx", + "sha256": "03fb232af964a69f45c4055ecc904932847caa11496f576af9fbd2b3ae45eb2b", + "size": 1118 + }, + "ION/08_ui/joc_cockpit_shell/StewardIntegrationQueuePanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/StewardIntegrationQueuePanel.tsx", + "sha256": "1be6b6fe44a6c4a6a9f867095236e21d7d6996159d88f98a27e799b3c8a22e35", + "size": 817 + }, + "ION/08_ui/joc_cockpit_shell/TaskReturnLedgerPanel.tsx": { + "path": "ION/08_ui/joc_cockpit_shell/TaskReturnLedgerPanel.tsx", + "sha256": "ca331cd86d15f2cc51792d03e126cbb7a40f56bf32b799cab4d0980815e0b789", + "size": 1020 + }, + "ION/08_ui/joc_cockpit_shell/ion-runtime-cockpit.css": { + "path": "ION/08_ui/joc_cockpit_shell/ion-runtime-cockpit.css", + "sha256": "d9f8464420bb278ccb89973a867210436c442d01236c0daacb69a78a77aac710", + "size": 4508 + }, + "ION/08_ui/joc_cockpit_shell/ionRuntimeCockpitTypes.ts": { + "path": "ION/08_ui/joc_cockpit_shell/ionRuntimeCockpitTypes.ts", + "sha256": "a1a22262dceb12855639899de9608a9b906dd859ae3de706d73502e6bfcc1db5", + "size": 5461 + }, + "ION/09_integrations/README.md": { + "path": "ION/09_integrations/README.md", + "sha256": "a2ecc0c6786dcf17bec80985bfdbc0eb9dce30ac61b395ef9432974f79460757", + "size": 786 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/README.md": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/README.md", + "sha256": "bc294a6a897181c5d119b6828e4ddc8f4abfa361978b52379d21469ea1105e08", + "size": 4493 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js", + "sha256": "cde5af76151e4eaf2e08a6c3b72e9eed0e34583cd37ef56937da4331cfc08466", + "size": 6716 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js", + "sha256": "1995fa1f94708455de1deffe31c74d4699a83dd71be0fdcac1d8e3f0315874f6", + "size": 45782 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/examples/SEV_CHATOPS_SMOKE.yaml": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/examples/SEV_CHATOPS_SMOKE.yaml", + "sha256": "e7e781ddc9f159f3c9f207b3228580ff0a379e01525b22753259040512c2ddeb", + "size": 756 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-128.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-128.png", + "sha256": "35aad0c0c020f912b4dd3729ec41cebe5f73992d38f5ad7da0a3168c94899a09", + "size": 15064 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-16.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-16.png", + "sha256": "8af6c019bdb8c421bd0233b187f02176252fb6fd7438796722e9447f46b34194", + "size": 659 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-32.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-32.png", + "sha256": "4ba00a35bb34f0e04e23852f1622cc8ec39443febc13048d72d55d44c33ce2bd", + "size": 1834 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-48.png": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/icons/ion-chatops-icon-48.png", + "sha256": "5b59797e4fe7337ce77762819465e09b32c12da59b5024109ecf9c8093363498", + "size": 3325 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/manifest.json": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/manifest.json", + "sha256": "d90e657c35a218e50835b1c48b9478f0a8fe881af7e6ccc326fa8f7ebce1a5df", + "size": 1089 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts", + "sha256": "c528e5d25fa670a1c6ae425ba5ad1c18faf8b73cc117d162c3882bf287365833", + "size": 18869 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts", + "sha256": "375126cf5382fb4e8402e67513a2d417cad31f90ba452df66805625d5298fc75", + "size": 6989 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts", + "sha256": "1c04ddc25d670b8f8fdd8bb519243d9d7ee8c9254c5cc2910845e23fa50e71b8", + "size": 20005 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/src/schema.ts": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/src/schema.ts", + "sha256": "1cb6a79fa1a48b2484185dc4d42cdf3cfe3caca60972295bf45ef9712d592f77", + "size": 8407 + }, + "ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js": { + "path": "ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js", + "sha256": "dc04c2367bc45ec9ece3168bf61fc6936fbbbaedeb675454ca6d5b77046de116", + "size": 9254 + }, + "ION/09_integrations/cursor_extension/README.md": { + "path": "ION/09_integrations/cursor_extension/README.md", + "sha256": "8497e43763784b4176ae4b5f6f28e48bef6dc5d1b00213fe399700f10a3cdd7c", + "size": 889 + }, + "ION/09_integrations/cursor_extension/package.json": { + "path": "ION/09_integrations/cursor_extension/package.json", + "sha256": "91a710caf5bd51be332842962e3a154025e4493f9675a402a2ace3f4cc033af6", + "size": 1665 + }, + "ION/09_integrations/cursor_extension/src/extension.ts": { + "path": "ION/09_integrations/cursor_extension/src/extension.ts", + "sha256": "86b78290dafefda2e272cabbf70dd5791dea7418212bcda3990781b6d8b7f1b7", + "size": 829 + }, + "ION/09_integrations/cursor_extension/src/ionCommands.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionCommands.ts", + "sha256": "83fcea5ceb9a3f8798869442dfce66e10522badc081198daceeb0b8d89dc28d6", + "size": 2703 + }, + "ION/09_integrations/cursor_extension/src/ionFileWatchers.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionFileWatchers.ts", + "sha256": "68c70587b0e00f4d8dcd2ddab85352de8a90e19c643190d9af0fcf1a5543774d", + "size": 763 + }, + "ION/09_integrations/cursor_extension/src/ionKernel.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionKernel.ts", + "sha256": "52f20504f80e9b37b236fd3e501e83c56ac8d0a4c2f7c30cbb8394e566a7ed69", + "size": 1549 + }, + "ION/09_integrations/cursor_extension/src/ionWorkspace.ts": { + "path": "ION/09_integrations/cursor_extension/src/ionWorkspace.ts", + "sha256": "eedaf746505f626e8a9627ad4b1189110b485e0d65151ead7e15cd679b1dafee", + "size": 1338 + }, + "ION/09_integrations/cursor_extension/src/providers/StatusTreeProvider.ts": { + "path": "ION/09_integrations/cursor_extension/src/providers/StatusTreeProvider.ts", + "sha256": "fc4ed46ee0969b5b6b79ae879f5ed15379f035f40638eeac517f636dc2a25264", + "size": 2303 + }, + "ION/09_integrations/cursor_extension/src/webviews/cockpit/CockpitWebviewProvider.ts": { + "path": "ION/09_integrations/cursor_extension/src/webviews/cockpit/CockpitWebviewProvider.ts", + "sha256": "b170322bc0455d707b59960ea9c5a25451903aaceae916350cf7589f9c42e4ba", + "size": 6549 + }, + "ION/09_integrations/cursor_extension/src/webviews/cockpit/index.html": { + "path": "ION/09_integrations/cursor_extension/src/webviews/cockpit/index.html", + "sha256": "c1da709f416fe73df8216b61a58752cf28b1f01b5379a1af5113c86ad54aa2d5", + "size": 232 + }, + "ION/09_integrations/cursor_extension/tsconfig.json": { + "path": "ION/09_integrations/cursor_extension/tsconfig.json", + "sha256": "ebcf22fb1e51dce42e2ee7308ec0037ec2d3b0790568a48529209ca12e528633", + "size": 275 + }, + "ION/09_integrations/cursor_sdk/README.md": { + "path": "ION/09_integrations/cursor_sdk/README.md", + "sha256": "5926e2f3271320ec91ecf2613137768fd03469e87f550208e2d33f88439b01d3", + "size": 992 + }, + "ION/09_integrations/cursor_sdk/package.json": { + "path": "ION/09_integrations/cursor_sdk/package.json", + "sha256": "ab02a9663dc03ba262481066caed37fffbb14e0d628508f0913d912ba8545a41", + "size": 317 + }, + "ION/09_integrations/cursor_sdk/src/ion_cursor_sdk_carrier.ts": { + "path": "ION/09_integrations/cursor_sdk/src/ion_cursor_sdk_carrier.ts", + "sha256": "30c10fbda355d9754f78acf9919b1e5be9ee1f01b22c24a9072dacee56c1c97e", + "size": 3246 + }, + "ION/09_integrations/local_daemon/ion_chatops_bridge/README.md": { + "path": "ION/09_integrations/local_daemon/ion_chatops_bridge/README.md", + "sha256": "75dc021732ecd62fda3659783c7883e440700992d2ac23e50ff396e3e709dabb", + "size": 751 + }, + "ION/09_integrations/local_daemon/ion_chatops_bridge/ion_chatops_daemon.py": { + "path": "ION/09_integrations/local_daemon/ion_chatops_bridge/ion_chatops_daemon.py", + "sha256": "0a5a912c0535be29faf3983b0e42276086ca57d7bdd37b1ec87d0b3ed218a993", + "size": 216 + }, + "ION/09_integrations/mcp/README.md": { + "path": "ION/09_integrations/mcp/README.md", + "sha256": "dc748d1e3b071e224c09a8ed943bf89aaa1a0100662e6d8e6750cdf5fca796ab", + "size": 1595 + }, + "ION/09_integrations/mcp/chatgpt_connector/README.md": { + "path": "ION/09_integrations/mcp/chatgpt_connector/README.md", + "sha256": "6f568eccb776880652406ac26738180b0e76ba03ad7b9971d06474813f91a0ad", + "size": 1498 + }, + "ION/09_integrations/mcp/chatgpt_connector/connector_manifest.json": { + "path": "ION/09_integrations/mcp/chatgpt_connector/connector_manifest.json", + "sha256": "d33971ff7408f373337a374656323d68592c4bd9f63addf51a41e2c75c2717d8", + "size": 1202 + }, + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_cloudflare_tunnel.py": { + "path": "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_cloudflare_tunnel.py", + "sha256": "137f3d26f3947203a80bf1daa706c601eb27858677114f91b13c8c4c4357ff2c", + "size": 571 + }, + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_connector.py": { + "path": "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_connector.py", + "sha256": "31af5357373590a342d443184c374d416bb3c1758fa052f45062577163fc8adf", + "size": 1398 + }, + "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_http_mcp_preview.py": { + "path": "ION/09_integrations/mcp/chatgpt_connector/ion_chatgpt_browser_http_mcp_preview.py", + "sha256": "8faa3de93d92a8157b5e1d1b44822af6e3d842066216f233ba413239020776e6", + "size": 256 + }, + "ION/09_integrations/mcp/ion_mcp_server.py": { + "path": "ION/09_integrations/mcp/ion_mcp_server.py", + "sha256": "68af4fca1b945225143d2e2579c6e2b96aefff9dbe9798966af5f30c1e97b766", + "size": 12942 + }, + "ION/README.md": { + "path": "ION/README.md", + "sha256": "ad76736dd62450b6d9f5ba13acac6e3f624e3b19340e943779756d555251d9e5", + "size": 2206 + }, + "ION/REPO_AUTHORITY.md": { + "path": "ION/REPO_AUTHORITY.md", + "sha256": "804ed8430fc53e551d254af063ec414646a1c1bf94ceeec51c31769fa41aca1e", + "size": 9259 + }, + "ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md": { + "path": "ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md", + "sha256": "039cb0ea857cc00446b4c26f24b366085d78b8d1c9216f6fba655217bdae3453", + "size": 3829 + }, + "ION/docs/README.md": { + "path": "ION/docs/README.md", + "sha256": "f635a0ec6871705392470e0d79c47f53805d1f3f772c1cbe98d006742554328f", + "size": 999 + }, + "ION/docs/consolidation/ION_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_REPORT_20260501.md": { + "path": "ION/docs/consolidation/ION_V100_LIVING_ENCYCLOPEDIA_AND_CONTEXT_SYSTEM_INTEGRATION_REPORT_20260501.md", + "sha256": "185290d474ace0af7a0d68fda1892894693df72bf7ebd6b4074833b6f0c3aa94", + "size": 1817 + }, + "ION/docs/consolidation/ION_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_REPORT_20260501.md": { + "path": "ION/docs/consolidation/ION_V101_LOCAL_AUTONOMOUS_LOOP_SURVIVAL_REPORT_20260501.md", + "sha256": "99a7b63a74d274a4119c3a8c0994607aef89acbf9d2b4bb21a4ba1d5d353624c", + "size": 1163 + }, + "ION/docs/consolidation/ION_V102_CONTEXT_METABOLISM_AND_LIFECYCLE_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V102_CONTEXT_METABOLISM_AND_LIFECYCLE_REPORT_20260502.md", + "sha256": "9151f726fd7071cdc54caaa4135d8cbbbb928d09d631a343546101164b2c45b3", + "size": 1425 + }, + "ION/docs/consolidation/ION_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V103_TEMPORAL_CONTEXT_ENFORCEMENT_RECONCILIATION_REPORT_20260502.md", + "sha256": "ab47a50e017ae848fc9b95f12ccd2f8e5258dd47d2a893de8f7e6a7f95813609", + "size": 3490 + }, + "ION/docs/consolidation/ION_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V104_OPERATIONAL_TRUTH_AUDIT_AND_LONG_HORIZON_ORCHESTRATION_REPORT_20260502.md", + "sha256": "96e41edd564929ec6dac25ea0f81894f06b7c7c8d4abb12a40e5867afc4aae34", + "size": 5866 + }, + "ION/docs/consolidation/ION_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_PREPAREDNESS_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V105_DEEP_OPERATIONAL_CARTOGRAPHY_AND_PREPAREDNESS_REPORT_20260502.md", + "sha256": "5efbb9de82c2a8f6046d2192806bbc7a891dda5c733a28c9a359e4604551146f", + "size": 6764 + }, + "ION/docs/consolidation/ION_V106_CORE_TELEMETRY_TRIAD_AND_RUNTIME_FLOOR_REPAIR_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V106_CORE_TELEMETRY_TRIAD_AND_RUNTIME_FLOOR_REPAIR_REPORT_20260502.md", + "sha256": "2c40e139c086f1dfd5e426ee153c2581ffd18973a6caf26462347a9888986d78", + "size": 6463 + }, + "ION/docs/consolidation/ION_V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V106_LIFECYCLE_AWARE_PACKAGE_ROOT_INTEGRITY_REPORT_20260502.md", + "sha256": "05c1c5a377ed7aa6ebb71cbe7fe7599b7e19601d93f100b45ddc4a147d213e3b", + "size": 2332 + }, + "ION/docs/consolidation/ION_V108_V72_MCP_DONOR_RECONCILIATION_REPORT_20260502.md": { + "path": "ION/docs/consolidation/ION_V108_V72_MCP_DONOR_RECONCILIATION_REPORT_20260502.md", + "sha256": "e0da84c193f60b18bcfb1ef9a1740360b6e3f727f17e4bf1ad6261d45daa5a27", + "size": 1453 + }, + "ION/docs/consolidation/ION_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V109_ACTIVE_RECONCILIATION_STATUS_AND_COCKPIT_VISIBILITY_REPORT_20260503.md", + "sha256": "26f2ef334a86d967a25c55fa13997d848610ab19b79a50f504fbf830ffc9f8a3", + "size": 1442 + }, + "ION/docs/consolidation/ION_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V110_PACKAGE_MOUNTABILITY_AND_OPTIONAL_EVIDENCE_STATUS_REPORT_20260503.md", + "sha256": "fc32e5dd21d6d5464e3acb2b1af3efe7a2c560db1c0888ae64dbd34039556498", + "size": 1521 + }, + "ION/docs/consolidation/ION_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V111_ACTIVE_OBJECTIVE_CURRENT_STATE_TRUTH_REPORT_20260503.md", + "sha256": "df1d0ca74e087790d4bdaa397815d92209506fe300b791b3255578dde48d5947", + "size": 1531 + }, + "ION/docs/consolidation/ION_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V112_PACKAGE_RUNNABLE_STATUS_OPTIONAL_EVIDENCE_REPAIR_REPORT_20260503.md", + "sha256": "c6294e336f544b2e491336f00a6b3d194b983dfee3e0d8a58889c6a95a9da38c", + "size": 1488 + }, + "ION/docs/consolidation/ION_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V113_ZERO_SPAWN_EXECUTION_CYCLE_BLOAT_GUARD_REPORT_20260503.md", + "sha256": "b3125d9d058006e756fd8559465c68dab1f71a40925ec88c3be6dabe73b6feeb", + "size": 1317 + }, + "ION/docs/consolidation/ION_V114_DEFERRED_SPAWN_VISIBILITY_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V114_DEFERRED_SPAWN_VISIBILITY_REPORT_20260503.md", + "sha256": "8b3bef0c4dac1acb81a6d2ec57f0d6639b0302ef0cf401d18f5852ed93b38b0e", + "size": 1144 + }, + "ION/docs/consolidation/ION_V115_AUDIT_TRUTH_RECONCILIATION_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V115_AUDIT_TRUTH_RECONCILIATION_REPORT_20260503.md", + "sha256": "4512ebabb17ebef38a389d9b36b69c1a6da422408c4a53778fc0010a21bcbd32", + "size": 2001 + }, + "ION/docs/consolidation/ION_V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V116_CARRIER_ONBOARDING_AUTHORITY_REPAIR_REPORT_20260503.md", + "sha256": "09ec7acde10810d6c997715f74db54cc6504e8e3f06f595a8a117666fa2007d3", + "size": 2098 + }, + "ION/docs/consolidation/ION_V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V117_REGISTRY_TEMPLATE_CARRIER_ONBOARDING_AUTHORITY_REPORT_20260503.md", + "sha256": "c8328d20c5d8d420fdaba94aaff2728e710df14bd328efe268a9189ad86babc8", + "size": 2585 + }, + "ION/docs/consolidation/ION_V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_REPORT_20260503.md", + "sha256": "e3c3d9bd0ce560e28a77f3dc4c7835baf38e37d23ffbafce2592e79b80e0601a", + "size": 2401 + }, + "ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V119_CURRENT_OPERATING_PACKET_REPORT_20260503.md", + "sha256": "67eafbb51e2bbf537e77b4bc4fc58a1eb61dcc417adb6050367f3ccb94a1e277", + "size": 2190 + }, + "ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V120_CHATGPT_BROWSER_MCP_CONNECTOR_AND_LOCAL_ION_OPERATION_REPORT_20260503.md", + "sha256": "ed2ac66441e2b2c6dbc5737e781d7409f2015c5d8071ac18eb25f1532accd884", + "size": 3732 + }, + "ION/docs/consolidation/ION_V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V121_CHATGPT_BROWSER_HTTP_MCP_PREVIEW_REPORT_20260503.md", + "sha256": "65f2a12f485ed2c0c153df5b17f8c4d3ec73bc39c5abaff613301ea5434d5260", + "size": 3859 + }, + "ION/docs/consolidation/ION_V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V122_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_REPORT_20260503.md", + "sha256": "ebd5b2f479ee94f990476ed270e145b342e183dd7dac145396ff58147f4419ba", + "size": 3944 + }, + "ION/docs/consolidation/ION_V123_ROOT_ONBOARDING_SHIM_RETIREMENT_FORENSIC_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V123_ROOT_ONBOARDING_SHIM_RETIREMENT_FORENSIC_REPORT_20260503.md", + "sha256": "29a60e93bceb936914c0465e2a6107f53c972641892c3a7921c10878d625e8ab", + "size": 6791 + }, + "ION/docs/consolidation/ION_V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_REPORT_20260503.md": { + "path": "ION/docs/consolidation/ION_V124_LEGACY_CLOUDFLARE_TUNNEL_REUSE_REPORT_20260503.md", + "sha256": "7902e3a498d836cd18e2db2bb91cc841ed0a093878dc2d676f928eef4e3ba279", + "size": 2534 + }, + "ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md": { + "path": "ION/docs/consolidation/ION_V125_CODEX_CLI_CARRIER_AND_CHATGPT_CONNECTOR_DOGFOOD_REPORT_20260504.md", + "sha256": "51cf1c4f1a027dea16c1fb7de230f852a146cfb5e4e4968613b084821887bf88", + "size": 2027 + }, + "ION/docs/consolidation/ION_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING_REPORT_20260429.md": { + "path": "ION/docs/consolidation/ION_V90_LIVE_JOC_COCKPIT_WEBVIEW_BINDING_REPORT_20260429.md", + "sha256": "1e6069ca7f4a75eaf5e7f920859059d2002a017c36181b9e0e3574b2e551d815", + "size": 2634 + }, + "ION/docs/consolidation/ION_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONT_DOOR_TEAM_REPORT_20260429.md": { + "path": "ION/docs/consolidation/ION_V91_AGENT_CONTEXT_DYNAMICS_AND_FRONT_DOOR_TEAM_REPORT_20260429.md", + "sha256": "df134425d38796d3d553692c338708f1d307a6ba30fd4895eafde25a755a026c", + "size": 1691 + }, + "ION/docs/consolidation/ION_V92_MCP_CONTROL_BRIDGE_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V92_MCP_CONTROL_BRIDGE_REPORT_20260430.md", + "sha256": "c3b77b0d81b7030d92d671106357aa4eb50b47bbd839e22bbd7ff73c95852cee", + "size": 2133 + }, + "ION/docs/consolidation/ION_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V93_CURSOR_ION_AUTOPILOT_COMMAND_AND_SUBAGENT_SURFACE_REPORT_20260430.md", + "sha256": "deec3ee120d9ab219032cd9b16f5cbb35c43ea018fe0909d028f5b30f1467790", + "size": 1552 + }, + "ION/docs/consolidation/ION_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V94_CURSOR_CANONICAL_WORKFLOW_UNIFICATION_REPORT_20260430.md", + "sha256": "9e33746f17da7e947a8d505ee4015ad379c5bce5b8f9afabe481a3ab3e123ece", + "size": 2496 + }, + "ION/docs/consolidation/ION_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V95_COMPILED_ROLE_CONTEXT_BUNDLE_INVARIANT_REPORT_20260430.md", + "sha256": "aa818ade0d712d49c48e89cde6e9908cd8fc6456a6ecd9b772493de91bc28e90", + "size": 967 + }, + "ION/docs/consolidation/ION_V96_FULL_CONSOLIDATED_RUNTIME_REPORT_20260430.md": { + "path": "ION/docs/consolidation/ION_V96_FULL_CONSOLIDATED_RUNTIME_REPORT_20260430.md", + "sha256": "364c9152ff0ed885a786c78a1c8e53acfa9e6b902eb45a379d41f38832761661", + "size": 2086 + }, + "ION/docs/consolidation/ION_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_PLAN_20260501.md": { + "path": "ION/docs/consolidation/ION_V97_LEAD_DEV_SURVIVAL_AUDIT_AND_AUTONOMOUS_LOOP_RECOVERY_PLAN_20260501.md", + "sha256": "c6c3a3530dbb989a1bb4f269af95337e7c4c31f5b6a462414f19388678bbf485", + "size": 29794 + }, + "ION/docs/consolidation/ION_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_PLAN_20260501.md": { + "path": "ION/docs/consolidation/ION_V98_MASTER_ORCHESTRATION_AUTOMATION_AND_UI_RECOVERY_PLAN_20260501.md", + "sha256": "eb1e016c14174e25b7c4c68e7f74b1656ff2c0e897d6fc3b17a0fc4881a963b3", + "size": 30394 + }, + "ION/docs/consolidation/ION_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_DESIGN_20260501.md": { + "path": "ION/docs/consolidation/ION_V99_AGENT_CONTEXT_CONTINUITY_AND_RUNTIME_SEPARATION_DESIGN_20260501.md", + "sha256": "aff0d556a2212f01b98feae5afb05744b4f3fc3ca670ec884dfd814553c5f5c9", + "size": 11204 + }, + "ION/docs/cursor/ION_CURSOR_WORK_CYCLE_PACKET.md": { + "path": "ION/docs/cursor/ION_CURSOR_WORK_CYCLE_PACKET.md", + "sha256": "935cc4dcb387791e7db9d81c99797db40eeab8f61de1780b64cb3bdf44d3b574", + "size": 2190 + }, + "ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md": { + "path": "ION/docs/encyclopedia/ION_Production_Encyclopedia_v4_0_LIVE_V96_V100_CONTEXT_SYSTEM_AND_AUTONOMOUS_LOOP_RECOVERY.md", + "sha256": "dd9d9571011a8b86c1bfd1e19a15ddbb358eb7805fe1d0146defaf44f17b7948", + "size": 499797 + }, + "ION/docs/mcp/HOSTED_MCP_AUTH_ALPHA_BOUNDARY_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_AUTH_ALPHA_BOUNDARY_GUIDE.md", + "sha256": "04db5357c6bf084693528b11849f00ad47c324185b6a264691244e4eeba44cab", + "size": 1077 + }, + "ION/docs/mcp/HOSTED_MCP_BUNDLE_IMPORT_EXPORT_REPLAY_ALPHA_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_BUNDLE_IMPORT_EXPORT_REPLAY_ALPHA_GUIDE.md", + "sha256": "7678f65978f95b909bab1e75ffbfda88219d89704254c1c315c1d4a9171a9cb8", + "size": 385 + }, + "ION/docs/mcp/HOSTED_MCP_OAUTH_HTTP_PREVIEW_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_OAUTH_HTTP_PREVIEW_GUIDE.md", + "sha256": "a4a111e48b8b562c38bf6cdd44879c643f968faec500b36accf571f9ad7c3c0f", + "size": 691 + }, + "ION/docs/mcp/HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA_GUIDE.md": { + "path": "ION/docs/mcp/HOSTED_MCP_STORAGE_RECEIPT_LEDGER_ALPHA_GUIDE.md", + "sha256": "09b3ca4d5b09980c794ccc86d3fb759f4e8a0e8c9da07f952d1838a6a6bcbf65", + "size": 898 + }, + "ION/docs/mcp/LOCAL_MCP_BRIDGE_CLIENT_CONFIGURATION_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_BRIDGE_CLIENT_CONFIGURATION_GUIDE.md", + "sha256": "cf6e1fc83dcf231abbcc82e240053c0054181c2ac3a005921e51c2c9b98145c5", + "size": 2376 + }, + "ION/docs/mcp/LOCAL_MCP_CLIENT_CERTIFICATION_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_CLIENT_CERTIFICATION_GUIDE.md", + "sha256": "514dc3bf23a23e9a716930cae9f751ce873be332f3ccd37e009c12cd8e07c39f", + "size": 1240 + }, + "ION/docs/mcp/LOCAL_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_SDK_WRAPPER_AND_HOSTED_HTTP_ALPHA_BOUNDARY_GUIDE.md", + "sha256": "71aa0058aa8398f6a2fedfd59a6029ba02dc9c862f3fbc64d0704b2515fe72f1", + "size": 1330 + }, + "ION/docs/mcp/LOCAL_MCP_TRANSPORT_PREVIEW_GUIDE.md": { + "path": "ION/docs/mcp/LOCAL_MCP_TRANSPORT_PREVIEW_GUIDE.md", + "sha256": "c2732d53497806d5930b502745858cbc6e2f710f317ddaa28d0be939acc07328", + "size": 815 + }, + "ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md", + "sha256": "4cbfad9170d86b3372d5d1850c74c03d85d6d40d800582040c2e9def9a271e71", + "size": 1947 + }, + "ION/docs/setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_SETUP_V121.md", + "sha256": "a4bdb96467864b001b6dedd57faeaf3a986f59af1aef3b412e8c2e02e54fa09e", + "size": 1850 + }, + "ION/docs/setup/CHATGPT_BROWSER_LEGACY_CLOUDFLARE_TUNNEL_REUSE_V124.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_LEGACY_CLOUDFLARE_TUNNEL_REUSE_V124.md", + "sha256": "d4cc64d022624982d6408e25e17208100116b56ad0cdc0478ad30f493ea710fc", + "size": 2264 + }, + "ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md": { + "path": "ION/docs/setup/CHATGPT_BROWSER_MCP_CONNECTOR_SETUP_V120.md", + "sha256": "3536638c55cd25e9113181eab2d4c1120dc5fde8ca6cc1f0b6cb623fea7e6a03", + "size": 7615 + }, + "ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md": { + "path": "ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md", + "sha256": "080f68b93a7c195efbda0c9e20a250a037aa84a38d06dfdac62282caaee281e6", + "size": 3330 + }, + "ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md": { + "path": "ION/docs/setup/ION_CURRENT_OPERATING_PACKET_V119.md", + "sha256": "510f6b00b1e0b4cb565318a76485e0c674ffb3aa9198cbef6eb25922038f8820", + "size": 10144 + }, + "ION/examples/mcp/client-certification-profile.json": { + "path": "ION/examples/mcp/client-certification-profile.json", + "sha256": "0ec04358ab4b2091fc180e3d1ca9d88afd6b5a64ea157cabc7465aab6668fa28", + "size": 443 + }, + "ION/examples/mcp/codex.config.toml": { + "path": "ION/examples/mcp/codex.config.toml", + "sha256": "93d2541c9c8eec936e7f8776953e36517892408fef562e696451536927713885", + "size": 176 + }, + "ION/examples/mcp/cursor.mcp.json": { + "path": "ION/examples/mcp/cursor.mcp.json", + "sha256": "e10ae9940d1f64f89cef686a08537f18727275c861a2e3e8c1228c73716a75b4", + "size": 289 + }, + "ION/examples/mcp/generated/codex.config.toml": { + "path": "ION/examples/mcp/generated/codex.config.toml", + "sha256": "11d8b9651f83041440a2ed6053c6f9131a53f3cbb6c6efc62487f632a8f3660e", + "size": 245 + }, + "ION/examples/mcp/generated/codex.config.toml.meta.json": { + "path": "ION/examples/mcp/generated/codex.config.toml.meta.json", + "sha256": "97be638b0485e0ec6eb4e356b30cd03d2e3395d70bc372d4d87b50fed7b1b727", + "size": 552 + }, + "ION/examples/mcp/generated/cursor.mcp.json": { + "path": "ION/examples/mcp/generated/cursor.mcp.json", + "sha256": "4580a2901755ff2b632ba803a0d0d00e49f8e5b479278cb2a72f4cc773476d31", + "size": 358 + }, + "ION/examples/mcp/generated/cursor.mcp.json.meta.json": { + "path": "ION/examples/mcp/generated/cursor.mcp.json.meta.json", + "sha256": "76e35f828772a1b1e1b80acefe54ea3ccf5c398468ed9c916b6e81b4e22e2bdc", + "size": 712 + }, + "ION/examples/mcp/generated/generic-stdio.json": { + "path": "ION/examples/mcp/generated/generic-stdio.json", + "sha256": "4733ac4a03e752420a06d69289b26c447040c12cd82b104d779367231dc13a4e", + "size": 555 + }, + "ION/examples/mcp/generated/generic-stdio.json.meta.json": { + "path": "ION/examples/mcp/generated/generic-stdio.json.meta.json", + "sha256": "e194b24d04f1ab26b41ec84c2ad87ed3dd33efa172ca2d1314e5312e21fd65bf", + "size": 902 + }, + "ION/examples/mcp/generated/vscode.mcp.json": { + "path": "ION/examples/mcp/generated/vscode.mcp.json", + "sha256": "26747838d960a099429306c6b7623cc873253537250da72c69e88f2bac27ef29", + "size": 378 + }, + "ION/examples/mcp/generated/vscode.mcp.json.meta.json": { + "path": "ION/examples/mcp/generated/vscode.mcp.json.meta.json", + "sha256": "17deadf278707efd199ce52649df99843762987ad265c645a7d1f90f87005ab5", + "size": 696 + }, + "ION/examples/mcp/generic-stdio.json": { + "path": "ION/examples/mcp/generic-stdio.json", + "sha256": "d522d964dd225cd2f4a40c3b82b2c6f7e59dd08063d9799cfa026bbf3c3fc6bd", + "size": 408 + }, + "ION/examples/mcp/hosted-auth-alpha-request.json": { + "path": "ION/examples/mcp/hosted-auth-alpha-request.json", + "sha256": "f1fa1184db026d60b30505ba6a54329621b0178fe324d5f8e639f4436c359140", + "size": 678 + }, + "ION/examples/mcp/hosted-bundle-replay-alpha-report-request.json": { + "path": "ION/examples/mcp/hosted-bundle-replay-alpha-report-request.json", + "sha256": "5e0f1642767b8bd97c4e965b24f8ded4f2fa91c8a28657022e027d7387762839", + "size": 215 + }, + "ION/examples/mcp/hosted-http-alpha-boundary-request.json": { + "path": "ION/examples/mcp/hosted-http-alpha-boundary-request.json", + "sha256": "59db2079f7bbbcbafbb31a7e4f26de1d32eea6fe200b941c86ca6056c6cae568", + "size": 511 + }, + "ION/examples/mcp/hosted-oauth-http-preview-request.json": { + "path": "ION/examples/mcp/hosted-oauth-http-preview-request.json", + "sha256": "ecd1ac9e7d1f245a6bb9c76ae6862b35845cc929daa4348b56bd4f54f3852a94", + "size": 475 + }, + "ION/examples/mcp/hosted-storage-receipt-ledger-alpha-report-request.json": { + "path": "ION/examples/mcp/hosted-storage-receipt-ledger-alpha-report-request.json", + "sha256": "466bdd9368bb7b9c2642fb13b82dbc92cdbc3e90a7c7fa7b970841c9d64a3ad9", + "size": 458 + }, + "ION/examples/mcp/streamable-http-preview-request.json": { + "path": "ION/examples/mcp/streamable-http-preview-request.json", + "sha256": "895d05bc38721b1bc005ea6369cc7bf06e2378dacf1c81efa73ca6ccb2a0e754", + "size": 263 + }, + "ION/examples/mcp/vscode.mcp.json": { + "path": "ION/examples/mcp/vscode.mcp.json", + "sha256": "eb19a9fd1cfeda30d48746232ed2cbbe9b4d12b6761a9098b3e07b3ad5fd201b", + "size": 309 + }, + "ION/tests/test_kernel_ion_active_state_integrity_audit.py": { + "path": "ION/tests/test_kernel_ion_active_state_integrity_audit.py", + "sha256": "ede4d7e685b180d9e77e5a00f0cdfc2dddcf6035f49a7e3014629f8b7405625b", + "size": 2219 + }, + "ION/tests/test_kernel_ion_agent_context_dynamics.py": { + "path": "ION/tests/test_kernel_ion_agent_context_dynamics.py", + "sha256": "4d19b102b4c0843809c54f1651c71143f50a41a4ddc40496bfa169e37ffe84d8", + "size": 1777 + }, + "ION/tests/test_kernel_ion_agent_invocation_broker.py": { + "path": "ION/tests/test_kernel_ion_agent_invocation_broker.py", + "sha256": "b15003ec453ad5a82c4d1330aa2e21e19dd14bee8db4588f5171ef067af9cac7", + "size": 9010 + }, + "ION/tests/test_kernel_ion_autonomous_loop.py": { + "path": "ION/tests/test_kernel_ion_autonomous_loop.py", + "sha256": "68aa95df8916ae364f61f2b927493df1d7c22cf18aba40775b929d18d5eb8825", + "size": 1314 + }, + "ION/tests/test_kernel_ion_carrier_continue.py": { + "path": "ION/tests/test_kernel_ion_carrier_continue.py", + "sha256": "b1b04869f1f3f85fb1d89e53ad857b0674d32cc601d774b0187ee277b885f2ea", + "size": 21320 + }, + "ION/tests/test_kernel_ion_carrier_onboarding_authority_audit.py": { + "path": "ION/tests/test_kernel_ion_carrier_onboarding_authority_audit.py", + "sha256": "51ed8241f2e9192572f626e26305a40c70f345bce28d328a2bb802df4afc94f3", + "size": 7332 + }, + "ION/tests/test_kernel_ion_carrier_onboarding_packet.py": { + "path": "ION/tests/test_kernel_ion_carrier_onboarding_packet.py", + "sha256": "c0cfe264fe650626b2daf1fef3c328fda7cdc8905ad969940b9821e95775b564", + "size": 5975 + }, + "ION/tests/test_kernel_ion_carrier_task_return.py": { + "path": "ION/tests/test_kernel_ion_carrier_task_return.py", + "sha256": "37c7c600568b17b1d84feb1866770b9a9149626fdb3af2dfb5d6b5db108e13b6", + "size": 3947 + }, + "ION/tests/test_kernel_ion_carrier_tick.py": { + "path": "ION/tests/test_kernel_ion_carrier_tick.py", + "sha256": "52403fe8ff0ea4c2852d8706fc87aca82874090c2d8c21e09aaa367f49e48783", + "size": 19485 + }, + "ION/tests/test_kernel_ion_carrier_workflow_audit.py": { + "path": "ION/tests/test_kernel_ion_carrier_workflow_audit.py", + "sha256": "a890785a727b7b29c48594db4e727d6b21b2c407f07a8879d38dae5c88e87c89", + "size": 4659 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py", + "sha256": "a257b7ec4e64a48ca3bdc8b4ab60782401d21dd1c70106ca2a2844b95587dcad", + "size": 9138 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_connector_e2e_flow.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_connector_e2e_flow.py", + "sha256": "a054b1f198d31dbda2fa4f464ea0da4a0b6fd4ee2fea1230f80a2d0696552345", + "size": 6878 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_legacy_tunnel_reuse_audit.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_legacy_tunnel_reuse_audit.py", + "sha256": "015ce84633e46ed11457bb6d73ea8e2ebb0424bd357f7b034d69e38a2a0a8a8d", + "size": 5578 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_mcp_connector_contract.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_mcp_connector_contract.py", + "sha256": "06174a033d9db9c8ce84d8e1d37b59c3ac2ca2f0d524270caae2b3df6cc40efb", + "size": 14477 + }, + "ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py": { + "path": "ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py", + "sha256": "718dd742d00b513541ca368afb7afdb08614f5eb2d2435af54ea2cf87eb3e355", + "size": 6443 + }, + "ION/tests/test_kernel_ion_chatops_action_schema.py": { + "path": "ION/tests/test_kernel_ion_chatops_action_schema.py", + "sha256": "bed5269e15dd203f3494701eec2019642c7ac0caee43209b0fdc883ce94f129f", + "size": 2095 + }, + "ION/tests/test_kernel_ion_chatops_bridge_policy.py": { + "path": "ION/tests/test_kernel_ion_chatops_bridge_policy.py", + "sha256": "0cb5ca7fcf19f80f7e97ca48b263f2dca38fbef3ce54f7521e50c0be4ee95a05", + "size": 16355 + }, + "ION/tests/test_kernel_ion_cockpit_view_model.py": { + "path": "ION/tests/test_kernel_ion_cockpit_view_model.py", + "sha256": "f4c19b19fc9d84c384464cedf086bbaa2d4881a529fb1042fbd73b750d4eceec", + "size": 8758 + }, + "ION/tests/test_kernel_ion_codex_cli_carrier_audit.py": { + "path": "ION/tests/test_kernel_ion_codex_cli_carrier_audit.py", + "sha256": "c463e5f556e24b0f7476e728b4beb63ad0ceb0802f631fcb94f9e94096a1c410", + "size": 1450 + }, + "ION/tests/test_kernel_ion_codex_extension_carrier_audit.py": { + "path": "ION/tests/test_kernel_ion_codex_extension_carrier_audit.py", + "sha256": "6c09bb63464e7b6e3635d56a7c68d0dca1f933d603e3a1e5ebd25943333b345e", + "size": 1435 + }, + "ION/tests/test_kernel_ion_codex_queue_runner.py": { + "path": "ION/tests/test_kernel_ion_codex_queue_runner.py", + "sha256": "a8e069d9405d24d997132e9bdb1eb6f0916eeb2fff985b9c1d940f4f73324fb1", + "size": 9129 + }, + "ION/tests/test_kernel_ion_compiled_role_context_bundle_audit.py": { + "path": "ION/tests/test_kernel_ion_compiled_role_context_bundle_audit.py", + "sha256": "b450a02b55177b896ea099eeb6705445b0fa2fff2a9c01a11099bbd944f926fb", + "size": 1291 + }, + "ION/tests/test_kernel_ion_context_lifecycle.py": { + "path": "ION/tests/test_kernel_ion_context_lifecycle.py", + "sha256": "54d4c25ef4be8368f715f55ffbcbbd01c06b17dd4bf7d3c979418e0356c7119b", + "size": 2606 + }, + "ION/tests/test_kernel_ion_cursor_autopilot.py": { + "path": "ION/tests/test_kernel_ion_cursor_autopilot.py", + "sha256": "c56af8b27ceae20e83401cbf1b9b14bec438c2ec6e9496177e011de7c5a10f04", + "size": 1149 + }, + "ION/tests/test_kernel_ion_cursor_canonical_workflow_audit.py": { + "path": "ION/tests/test_kernel_ion_cursor_canonical_workflow_audit.py", + "sha256": "2e56addffc7bd9706b307ff8e4c3edf4aa634db17fe6ad4ceada5b42472d9bd6", + "size": 376 + }, + "ION/tests/test_kernel_ion_cursor_hook_state.py": { + "path": "ION/tests/test_kernel_ion_cursor_hook_state.py", + "sha256": "6512b4155a2797ec2ea42737c9da98dd5f44ec0f621cd297a229370a3f504afd", + "size": 1433 + }, + "ION/tests/test_kernel_ion_deep_operational_cartography.py": { + "path": "ION/tests/test_kernel_ion_deep_operational_cartography.py", + "sha256": "c1d1caab022bacbe65e50e574565d78df967e519b7d914001d4ae1a6ca14d47a", + "size": 2667 + }, + "ION/tests/test_kernel_ion_front_door_proof_trace.py": { + "path": "ION/tests/test_kernel_ion_front_door_proof_trace.py", + "sha256": "79f485ebbe54da8178e91d702c98c6258614ce4b3ccae321ac6b49d9e8baca96", + "size": 3105 + }, + "ION/tests/test_kernel_ion_full_carrier_capability_audit.py": { + "path": "ION/tests/test_kernel_ion_full_carrier_capability_audit.py", + "sha256": "67325801094ac239994651216c19fb918e5505a05454e01ea88e24d9bab62e78", + "size": 1902 + }, + "ION/tests/test_kernel_ion_github_commit_proposal_receipt.py": { + "path": "ION/tests/test_kernel_ion_github_commit_proposal_receipt.py", + "sha256": "923e8afcb731ede335833e86c09f11223902de895b4e93f0331afe2f83119ca3", + "size": 4971 + }, + "ION/tests/test_kernel_ion_github_data_plane_audit.py": { + "path": "ION/tests/test_kernel_ion_github_data_plane_audit.py", + "sha256": "ac57e986ecfcfa911d7eb0b1e622d3a03aa4ec0f3817c63c6f5b50a52e271d68", + "size": 6455 + }, + "ION/tests/test_kernel_ion_lane_timeline_view_model.py": { + "path": "ION/tests/test_kernel_ion_lane_timeline_view_model.py", + "sha256": "ed7ca2175ab7f0116b0fde90185b57ab0cd88a3a89475f2f2e34d9e764e7f26d", + "size": 4895 + }, + "ION/tests/test_kernel_ion_lifecycle_packager.py": { + "path": "ION/tests/test_kernel_ion_lifecycle_packager.py", + "sha256": "b52bc5b4a968dbf9ca8045e8a8960ff1c34ba0387075d6e059b28db38151964f", + "size": 6097 + }, + "ION/tests/test_kernel_ion_mcp_bridge_audit.py": { + "path": "ION/tests/test_kernel_ion_mcp_bridge_audit.py", + "sha256": "2ec4239d73cf0d80968c433483e5c0938227753a6e261b0a15afae9279388729", + "size": 428 + }, + "ION/tests/test_kernel_ion_mcp_client_certification.py": { + "path": "ION/tests/test_kernel_ion_mcp_client_certification.py", + "sha256": "4a158867c36ea02a1eb3007293e9790eec1e81ef03265937d546ea953a48bdf7", + "size": 1627 + }, + "ION/tests/test_kernel_ion_mcp_hosted_auth_alpha.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_auth_alpha.py", + "sha256": "629ef9b3ebc594dc298293090e4940c2108a7a1c3af0d748fd4e79b47a5a8bde", + "size": 4799 + }, + "ION/tests/test_kernel_ion_mcp_hosted_bundle_replay_alpha.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_bundle_replay_alpha.py", + "sha256": "e133b1e7d63a4e84615a5cde72fc871de2bde08ab9c0428b42767bd06513f19c", + "size": 2857 + }, + "ION/tests/test_kernel_ion_mcp_hosted_oauth_http_preview.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_oauth_http_preview.py", + "sha256": "62f235e16f2c23f41735a7b5f655a8b0b6f8067c2f8c64944f111aa1a4e317e7", + "size": 4802 + }, + "ION/tests/test_kernel_ion_mcp_hosted_storage_receipt_ledger_alpha.py": { + "path": "ION/tests/test_kernel_ion_mcp_hosted_storage_receipt_ledger_alpha.py", + "sha256": "63dc00dbdadf5029dc7b48e3675033cc119ef3d24f92c8814e3677e502423eca", + "size": 3140 + }, + "ION/tests/test_kernel_ion_mcp_local_bridge.py": { + "path": "ION/tests/test_kernel_ion_mcp_local_bridge.py", + "sha256": "6b5efef7b3900256cf07230025ad59fe3ea7eb54ebdd393548cd237d29303496", + "size": 7499 + }, + "ION/tests/test_kernel_ion_mcp_local_bridge_smoke_and_configs.py": { + "path": "ION/tests/test_kernel_ion_mcp_local_bridge_smoke_and_configs.py", + "sha256": "71d41bc353cb3daf67be3ae3a8fa1caf3ad2d2394821a4bc61bec06170644269", + "size": 3937 + }, + "ION/tests/test_kernel_ion_mcp_sdk_wrapper_boundary.py": { + "path": "ION/tests/test_kernel_ion_mcp_sdk_wrapper_boundary.py", + "sha256": "7831814606ece76d3a852cd4267038664f543ef0aa876f387f08a2ad23add734", + "size": 3171 + }, + "ION/tests/test_kernel_ion_mcp_transport_preview.py": { + "path": "ION/tests/test_kernel_ion_mcp_transport_preview.py", + "sha256": "d1bb7b5f3029ab47fe91ae322d4be86e363b6e5b8341aed4e382858f0aeb4c6f", + "size": 2993 + }, + "ION/tests/test_kernel_ion_operational_truth_audit.py": { + "path": "ION/tests/test_kernel_ion_operational_truth_audit.py", + "sha256": "be23abc49c3579f654ddf63da6f782809f6e072c7949c3fcbfcb81915f8d0f33", + "size": 1906 + }, + "ION/tests/test_kernel_ion_operator_message_classifier.py": { + "path": "ION/tests/test_kernel_ion_operator_message_classifier.py", + "sha256": "103308af6b3d2474dd2ebb9cfe2e313dde3ba402f6655722739b9a3d7722ae98", + "size": 932 + }, + "ION/tests/test_kernel_ion_operator_queue_human_gate_status.py": { + "path": "ION/tests/test_kernel_ion_operator_queue_human_gate_status.py", + "sha256": "46641ec524004130d7ba089a2df2b9f3525c344f2ba7868b0cc39cec0bd71b1e", + "size": 4511 + }, + "ION/tests/test_kernel_ion_receipt_hydration_mapper.py": { + "path": "ION/tests/test_kernel_ion_receipt_hydration_mapper.py", + "sha256": "46d3c31749f8a107b01c59ba2fedaa7e108a7ba13292bef693a7102002758662", + "size": 4011 + }, + "ION/tests/test_kernel_ion_runtime_debug_overlay.py": { + "path": "ION/tests/test_kernel_ion_runtime_debug_overlay.py", + "sha256": "d48d7210ceb3c9f24e14fe2f4909f223868f8c30e6a6075cb7118926ec0184f6", + "size": 2485 + }, + "ION/tests/test_kernel_ion_safe_full_project_packager.py": { + "path": "ION/tests/test_kernel_ion_safe_full_project_packager.py", + "sha256": "2e55eb9f23e1886b32642f9112f84881c3df28456712a9c07f38e801132cd92e", + "size": 5081 + }, + "ION/tests/test_kernel_ion_status.py": { + "path": "ION/tests/test_kernel_ion_status.py", + "sha256": "314bccaf1ef90f5ad5a311a42f4e3a6e2e7e3c48b64922bbbe67ba898a37745d", + "size": 11195 + }, + "ION/tests/test_kernel_ion_steward_integrate.py": { + "path": "ION/tests/test_kernel_ion_steward_integrate.py", + "sha256": "b50e26c5b8d017fdf8ad7516e33d85e40786298796c90e3aba3ad1d50d24b573", + "size": 4604 + }, + "ION/tests/test_kernel_ion_template_action_gate.py": { + "path": "ION/tests/test_kernel_ion_template_action_gate.py", + "sha256": "6efa6b60c2815f498e6d970da4f68e0a3427f3cf3283010148f6c72b890b0893", + "size": 1393 + }, + "ION/tests/test_kernel_ion_temporal_context_enforcement_audit.py": { + "path": "ION/tests/test_kernel_ion_temporal_context_enforcement_audit.py", + "sha256": "4523e70f312b8a08160f70365e0944aa824f8f5f7137133986bee8a1e6c1eff8", + "size": 3897 + }, + "ION/tests/test_kernel_ion_trunk_preservation_gate.py": { + "path": "ION/tests/test_kernel_ion_trunk_preservation_gate.py", + "sha256": "7764862de1ccef3d0647a5c668b41b3ecb99ffe182eb0b3564d189d8f2823348", + "size": 6284 + }, + "ION/tests/test_kernel_ion_v72_mcp_donor_reconciliation_audit.py": { + "path": "ION/tests/test_kernel_ion_v72_mcp_donor_reconciliation_audit.py", + "sha256": "b0a6b572c6e90d93f894eac50c922ec852b51d7eb0454defb599e357f07277de", + "size": 2663 + }, + "ION/tests/test_kernel_v78_ion_mount_contract_audit.py": { + "path": "ION/tests/test_kernel_v78_ion_mount_contract_audit.py", + "sha256": "95193f69a10451d6204ffff3ed56f033a03bf0f596f696cd3c556f00d6a9c58c", + "size": 477 + }, + "README.md": { + "path": "README.md", + "sha256": "93a443aa0f1856b42702c33cda554ba85e891d4dd9df19d3b3782e5e069baed4", + "size": 26448 + }, + "SECURITY.md": { + "path": "SECURITY.md", + "sha256": "a94f9b38ec7c1a036739e552a43e750c49d429ba1bc5de38aa17d818be3d2fc1", + "size": 903 + }, + "pyproject.toml": { + "path": "pyproject.toml", + "sha256": "07ace067ecf91ab85b22d9e4b958cd8cc836666e92a89943c54fdffe3793285b", + "size": 467 + } + }, + "generated_at": "2026-05-05T04:40:14+00:00", + "hash_algorithm": "sha256", + "root_confirmed": true, + "root_missing_files": [], + "root_required_files": [ + "pyproject.toml", + "ION/REPO_AUTHORITY.md" + ], + "schema_id": "ion.trunk_file_manifest.v1", + "skipped_paths": [ + ".git/COMMIT_EDITMSG", + ".git/HEAD", + ".git/config", + ".git/description", + ".git/hooks/applypatch-msg.sample", + ".git/hooks/commit-msg.sample", + ".git/hooks/fsmonitor-watchman.sample", + ".git/hooks/post-update.sample", + ".git/hooks/pre-applypatch.sample", + ".git/hooks/pre-commit.sample", + ".git/hooks/pre-merge-commit.sample", + ".git/hooks/pre-push.sample", + ".git/hooks/pre-rebase.sample", + ".git/hooks/pre-receive.sample", + ".git/hooks/prepare-commit-msg.sample", + ".git/hooks/push-to-checkout.sample", + ".git/hooks/update.sample", + ".git/index", + ".git/info/exclude", + ".git/logs/HEAD", + ".git/logs/refs/heads/docs/github-public-data-plane-policy", + ".git/logs/refs/heads/main", + ".git/logs/refs/remotes/origin/docs/github-public-data-plane-policy", + ".git/logs/refs/remotes/origin/main", + ".git/objects/00/04eba928bdca5abd27df164df36d4ad8cb8286", + ".git/objects/00/06d1f988266f86ffdb301a995c9f095612ac17", + ".git/objects/00/08b98617b62e2bd6e5b76e9a696996a350881e", + ".git/objects/00/08ee3bbed770bd8c1418d14b1cead0b10e644c", + ".git/objects/00/16c2789664483dba47dbcf56e1ca01f757e123", + ".git/objects/00/1b6c95de1d5a4d900dd1c0c3621dc9734405de", + ".git/objects/00/1d713bfcd7bf18bd840c67a99c65cb8973b7fc", + ".git/objects/00/203dba51661791c965da4bb40530b85ebb63dc", + ".git/objects/00/22addb738b26dc684ce4326cf4fcb47186d27e", + ".git/objects/00/2722f1faff6da44dc042e057cea80553b05bfb", + ".git/objects/00/4cefbed166e54297361394c2e6c01edc3a47dc", + ".git/objects/00/53997b5164040c18deb4f200ded1fba8e7d732", + ".git/objects/00/583bfed85de8908e58f4be9bed53ab1b2684ba", + ".git/objects/00/5a755856718307ec70037321009f25c2260bf8", + ".git/objects/00/611f0a00081efbe94d63a712594a744c3234e7", + ".git/objects/00/629f702974feccaab9393fb930a7065bb4f300", + ".git/objects/00/7240e17e570cfba9739ea5d454fe50d3cedb71", + ".git/objects/00/770bef631b3c7810696bfd925fa50cada2e819", + ".git/objects/00/85ca33472bf11615c91aafb891ea974519c549", + ".git/objects/00/88254519eccca82753a0f936c826bfcf39407a", + ".git/objects/00/a4cea208014e4f11ee95b34a841e30ee391dbe", + ".git/objects/00/b816089c1be52521251da44ea071e30cccb903", + ".git/objects/00/b91bb4353e87c166fba9ac1df27185a4526f95", + ".git/objects/00/ce3d41d6826364ac28c64b28340ab51e19f7bb", + ".git/objects/00/e6906373ef99f1cee604825c59bf8d479e5705", + ".git/objects/00/e9fac9e84b6de5b016a447cd178e81b9ca2bf6", + ".git/objects/00/eefd3fa0a9339a99c7ebb27084c0e52129b9ab", + ".git/objects/00/f21c86160c1316fba9199868e53d7ae55d43b3", + ".git/objects/00/f2446937f8e30242eddc92c7612668a2e22e13", + ".git/objects/00/f28d4bf81dba21dafc1ecf3405eced59f5f5c1", + ".git/objects/00/fccee83ce443f80208c0a32e1e99a0196a9a7e", + ".git/objects/01/1f661b7d248bd294fefe30af823367582b0884", + ".git/objects/01/2292c3c9b105d28ab55abcd9e4eb0ead1f56f6", + ".git/objects/01/2ee2c8bd81defabba1f87aa19cb2755a1ac58d", + ".git/objects/01/355ebafeeb452ab0d6860c2239c1fbc26a22b8", + ".git/objects/01/3b71a56450c8a711a3e7e61bb89739062dd5a0", + ".git/objects/01/44802df9025077161c03fe082325de947ed870", + ".git/objects/01/47e45e0a4cfaee56ada1cf973c2a55f6358b8e", + ".git/objects/01/4ab50d4d726f5c18d17cebd1aefdbd75e73fc2", + ".git/objects/01/5262809e6d3f82d41c2e8668e6808f4dde5236", + ".git/objects/01/526e4ea6312d560b9960fba9ee4c14c0833717", + ".git/objects/01/5a5816ae87482748a5ff52e530ea4397ca286c", + ".git/objects/01/6debca6d4981390ce82196c80aceaa160e1704", + ".git/objects/01/8bcfe2fc554b6726bee2a1c2559cad1fd1eb2a", + ".git/objects/01/a423bab8f27f052cd6c55d528b1f75a750499c", + ".git/objects/01/a9b77eb2eff109fc4a199637ff7f8cc6315f0c", + ".git/objects/01/aeb1802a4a24759da96fe5fe912a1e070fce80", + ".git/objects/01/b34a42d8859548e7886d2f60b23cda5bd7168c", + ".git/objects/01/bb9a3340d48b0ad0eb755f4f1c64ec47928b3b", + ".git/objects/01/bc0b7ad145ad5f2b20ee8f443c89ffadc2618d", + ".git/objects/01/cf574a4ae40717b67816ba4ed74d4467f218bd", + ".git/objects/01/d0262204b816bf121f99715cb9c2d7147a2caa", + ".git/objects/01/d9d89f21d4df800b412f83a66638c6959338e5", + ".git/objects/01/ddd65bfe5ff8f99f467350454d8ccbbe14fa23", + ".git/objects/01/f0848596fa25b82c78b45bca67ad81d8bfdbbb", + ".git/objects/01/f262ae0f1741810c9a6fb9c6656aed13af72b3", + ".git/objects/01/f7a5a90e82e9ff82889f7b89c567533ccbf40e", + ".git/objects/01/fca76a66ff5cdf9f8b4fc88974a0a9df084269", + ".git/objects/02/10fe11bfa1b2b052af35ab27f025ad9711d42a", + ".git/objects/02/17fcd746879903ec9f6815e03574da453985b7", + ".git/objects/02/26b4254fb81e67fa28601f46907b20ef8ed3eb", + ".git/objects/02/37a5400ef11d8060586f87a5fa4b763c6155d6", + ".git/objects/02/3ef64c4c68f13d17761f9c44f65faaf8ac8e59", + ".git/objects/02/44d0a336e0214068d910af6adc9e0a6276a34f", + ".git/objects/02/4c38cfb01d9991f32ec0f043d476ca7ccb387d", + ".git/objects/02/4f4145214c5b27ae14eae0a32dcb4b35c1c331", + ".git/objects/02/58d1e4930fbf386eb8ac884a8330aab632a281", + ".git/objects/02/59837e3798f0cdbc219621079080d243cbe24d", + ".git/objects/02/5cb1c90b1de927b9a3b65c86e14e28d1aca609", + ".git/objects/02/70a93d87a35e95382beb658428e84bb2f356e3", + ".git/objects/02/817c127110d4990891dd648d265ce59bd241c4", + ".git/objects/02/86befc33a4fb8d74f9eb1d4aa8d22a4cac2cbf", + ".git/objects/02/88c7bd2bf58f5896787c8f2213b83dc07dba14", + ".git/objects/02/91d483539979ef755a774bc60e966f842d7952", + ".git/objects/02/a95e3db1ca482288231a0dae2a7d22fbde505a", + ".git/objects/02/ac1ee02e76c11a65ff165836aeeda3790a0758", + ".git/objects/02/b067753d4160d90f5c1626c9c3ec6dcd7a19f7", + ".git/objects/02/c48af12ab0c31b90220fbed81e5af4ee08ee31", + ".git/objects/02/cf846db7b186dbd1d3022b85786e4723ba01a6", + ".git/objects/02/d717da669b3417fd90a6c2368959c113903556", + ".git/objects/02/d82b938fe5c6b02585e0cae2c7da0b991e43a1", + ".git/objects/02/e2602b602f8b26d71a39e755e36de00b7dd143", + ".git/objects/02/ff79f8cfd25dbff90335bb5b70487c49c50cf3", + ".git/objects/03/000e8ffe0c0b430a4b7e9d364fd24355f13068", + ".git/objects/03/040ff85ac52d67bd1b81fd083f336df6756a31", + ".git/objects/03/05c61ceb92da8bfbb4e58c4255efd7eab79471", + ".git/objects/03/0de9e984ff01d06b9e2ff422fb2a91144e70b5", + ".git/objects/03/123b5997e82434f330d7772f1583941b498886", + ".git/objects/03/2762f40a633e73a259cec9c3699afc7f31f617", + ".git/objects/03/38bfa59a627fac24b76c4e7b666ffb9a3a4c3c", + ".git/objects/03/4691f869f51215ceee5104e3ccc06bd44dab1e", + ".git/objects/03/5ed7fb6a415e53749f68085b2e2ea4df240bea", + ".git/objects/03/603d85d6590d13757d3c0e5153118a0d79c66f", + ".git/objects/03/6b14ae58d629c8484b61f62e8c819a87be4223", + ".git/objects/03/870d4dbac840d5cb628cf2b6aadc58c096e94c", + ".git/objects/03/8fb256a084dd0b6833877ef9659cb817d126f0", + ".git/objects/03/b6e26c632a9368e08f50899d468f75474fda1e", + ".git/objects/03/bdb76a6c95eab5b7b53fb049f6c21f78c07713", + ".git/objects/03/dd96672606b9b0e39933cd5ea8ba9ea4100399", + ".git/objects/03/df54442c6900aa1dea5559640325e6b8ed7df4", + ".git/objects/03/f1ca0e7188b432fed6f9ad1bd87cb4c2977f7e", + ".git/objects/04/0083ebb79046afd0d4a97d9bb68599481e6e64", + ".git/objects/04/0f507cfcca8ddf5c3d4adf50e87f13c39a60d3", + ".git/objects/04/23dc0623a65c5778a447af3a21d627c07269f4", + ".git/objects/04/26460375d7b9462037baf18b5be0a7d144c599", + ".git/objects/04/57529321475c7c7c277ee310247a4db810df75", + ".git/objects/04/580fd19a9e2fbe1d596c1747730eb3c65a8195", + ".git/objects/04/5f1c15eb51b5a7c16e29999a3c7d391e6db967", + ".git/objects/04/6bac00252458a5f1eb572919cfd0e8fdad3eb2", + ".git/objects/04/6f5711fa66dc4ae3537b36ef34d6c98daf8e73", + ".git/objects/04/6fdb532d3ff5c5956dfc245d08b5771a341d33", + ".git/objects/04/75288d1682358938a0583a99bc263d0d0924e7", + ".git/objects/04/7b596ea4ac5f2f9f2f07982a22db407556a394", + ".git/objects/04/7b6f0162801bbb2447aa04396b226ce510f072", + ".git/objects/04/7dc7afb8b9dc73870239a187cc4b4fd64ebda0", + ".git/objects/04/8a0e8e732e7da55318151062d04c5e900fc19e", + ".git/objects/04/8d0cd4e88fadd12b490915b3ae1b4a1b7e8aac", + ".git/objects/04/b102e385e761ff7378c706404c9f0e7468eb7b", + ".git/objects/04/b3461907b4c791e70f9fdb6003a53f2a49e5a0", + ".git/objects/04/b8d49619c838ce64b033b37d9cd257d1cb2e07", + ".git/objects/04/bf6fbbbc69f04ab70dd111a698b81b3dc8e641", + ".git/objects/04/bfe61e9eb3893fc3734ce6d208b77494eccc6d", + ".git/objects/04/d2fe5a25d83fae7cc891fad3518045e51cb1c4", + ".git/objects/04/ddc5b828a0587c36e785b311b68d020804fec6", + ".git/objects/04/e0a6ceaeedd087d383c2327e2f97d853b77992", + ".git/objects/04/e7325c9d05aec41de729f7f261fe897c51dd3f", + ".git/objects/05/057e1d328ab5c5de3a7f47efbcd22f07a01bf3", + ".git/objects/05/14b3708ece0acb15028e409a97cf1072ded8c4", + ".git/objects/05/14e6d5fd0e9b20c1b7eae50e511e4ec499562f", + ".git/objects/05/14e7263dafd42bc03aba0cfa1bd3b22381a7e6", + ".git/objects/05/2f82565de6fe8eac5e4cd4ebdf606bbe5c8db8", + ".git/objects/05/388736d562226646fa5879a80ea93c3a8a27e0", + ".git/objects/05/427b440ab6618df0797495edd95295f845d500", + ".git/objects/05/4e1d2cc612e858df0b7518e9c91ff425453c58", + ".git/objects/05/5dda548abd227c7a57adffa49aeb26588f7102", + ".git/objects/05/6a15f662ad270cbd6f114533650ca21f4af175", + ".git/objects/05/6af11f5d8c59dfebb929f026906655b572bafe", + ".git/objects/05/76ab85b9360f6c5fc4c74b21c20e9c41ce8a9c", + ".git/objects/05/7ee663805c6eeb34677f4d1b9594f58826879d", + ".git/objects/05/88e0136632a31ee6bd5aae94e927fc0bd709e5", + ".git/objects/05/89055019c176e12fe9e45bbf220277725950f0", + ".git/objects/05/ad3e6e14d2e987f5eb2e03d8552cbc1bac5404", + ".git/objects/05/af220b27d8ab7faf149d28cd368317f8a6e332", + ".git/objects/05/b54bac5fd232dff0fa2387a8c1348483d3b0a6", + ".git/objects/05/ba1b3287f36d92bf0d3bf42c1965debfcff97a", + ".git/objects/05/cf1df71a62e9084536f6595dcb8edcdf18cdde", + ".git/objects/05/e426f2c08fbb3985557645c8c43afada9e0b2f", + ".git/objects/06/14442914789ca4a94a06c8082babbb423344b9", + ".git/objects/06/1526389486a76a8e40f649e0a5f5d1e6bc8004", + ".git/objects/06/318a50dd59d73a28ac158a1d4bcb197c951442", + ".git/objects/06/329d9b2ead4b54dc960b42da20c59b18ba8c62", + ".git/objects/06/5eea468d404e379f98a6e34a244eb7e1e1efa1", + ".git/objects/06/6cb02137769521f114b22beb85c9fa88e4b412", + ".git/objects/06/752c0d4774d1194f9c3d08ba158a777acd8adf", + ".git/objects/06/921e87e0530cd39d426c4ea9e7ad3e5a1218cf", + ".git/objects/06/b3d10ff82fce1feb08b2de900d161887698ca1", + ".git/objects/06/bdc04a2d3c6cd2c11bc019bc784b3459fe734a", + ".git/objects/06/ecb0ce4a48c7459b7c909d50572f1dcfba1890", + ".git/objects/06/f3706f5cd7dd1beff900d3b7e70c40ef4efb3f", + ".git/objects/06/f66ee0dbd5de58c9faaf555b6680172606f8c5", + ".git/objects/07/14904b09a9ce40ea178b19c2182fb8ffde8519", + ".git/objects/07/17f208f8ea134a92f67d552017c2e8604afdb9", + ".git/objects/07/23147f0fb4699fef3776e3f2b2885e362e7f6a", + ".git/objects/07/35c7c09293a64a416fc2bb804dba3e3af6e74f", + ".git/objects/07/3c66f41c9ad94073cdf156e803254ad7c7ceaa", + ".git/objects/07/4f43ea50e84ebc1b4a5a10e3519abc745462f1", + ".git/objects/07/594a3d9cf755aea6d86e6e577d043c61e2b972", + ".git/objects/07/6651516180a463b5512b56ae6f7cd5b7e3ba8b", + ".git/objects/07/67b4973e157ac7de25832ec6c6c416130d6d39", + ".git/objects/07/92523c4b01723378ba40f397977d010f6a9fb5", + ".git/objects/07/97ef62472c25f4ffb580bfdd6016af7273ef68", + ".git/objects/07/9ec1e227e0eeb7fad6771fd55dfea6af5a8601", + ".git/objects/07/a40e5b948799166dea683f4295521f415fed79", + ".git/objects/07/b25b838e43b6b826cdbbbe7a2dcdc53f369cc5", + ".git/objects/07/c36446223f29b4c6724aa714d460af49e9e63d", + ".git/objects/07/d1d4616552a18ef8ab08da9aeae4a23331b171", + ".git/objects/07/d3f4678993ca75c238c4f9f1570a6ad066fcb5", + ".git/objects/07/dfd242f47582af172827ea7278750c50ee734f", + ".git/objects/07/e01df17fb6382e129c507c5a1d38d9a02c7137", + ".git/objects/07/f2bf2c43a6d5da3188579b5d0966c4d0bfb8ca", + ".git/objects/08/023a8bde8a71bf9bcdbb75f3699fcfa3bf34bc", + ".git/objects/08/0403147c3b9ed36dce972f6d328b09914c58e8", + ".git/objects/08/0631db89a1ebc8bad0db804cc1eb68773f7595", + ".git/objects/08/0ed380d6f76aff36756ce556c52d0377c74376", + ".git/objects/08/19fc7300ac923e184b5d3a3a39e422914ea6d5", + ".git/objects/08/2380087180d939f0a9d4599dfa088030083928", + ".git/objects/08/36833926148c954ad79e92a8425905a1088396", + ".git/objects/08/40dbbf7ae3ea407cfa6b4321f8a038f71fc25d", + ".git/objects/08/44d8c324f87fa4acbb82c546362ad92bf80fcd", + ".git/objects/08/58c233c6d8f7bfcc0ac93d33d525880277a51d", + ".git/objects/08/62f4809a721829407406246d7263f3be4a389f", + ".git/objects/08/72fda2827ba45ebedb4535de8fec255d362c98", + ".git/objects/08/7397a0eadf36ef2fe62c9adbdef200313a117f", + ".git/objects/08/7488267a6d28d562f3e56408726069ae731241", + ".git/objects/08/7604f526d2f7c6a04e650265f388a22f546fed", + ".git/objects/08/7a7d4f8b90a93a2a649941945192d6e2bc9bba", + ".git/objects/08/84a617fc72a413fa8bdb4c2831d29989fa3188", + ".git/objects/08/8571d277992a2d05d996c978ece33a33fe77dd", + ".git/objects/08/8e13a7efa05d1355fd4299d288d00cf12dea07", + ".git/objects/08/90101d28f112af126aff13c812b12790249bb2", + ".git/objects/08/94c89f02bad6ba5b0d49367496dcfee5601030", + ".git/objects/08/98fbe59d010a1a913f3edebd534a3bfca3ae65", + ".git/objects/08/a8516e76ad2fa2ae925d1ad0ca80b7fd9e6ccc", + ".git/objects/08/b9954e1284717c61a7c56bc38903e32db8e5f9", + ".git/objects/08/b9e1452eea18ae2b20480c8721198eee01d81e", + ".git/objects/08/c6003635e76ed78bf45964b01fde5ecc355be6", + ".git/objects/08/eb0ae93475b1c99fdb5429345e8780605796bd", + ".git/objects/08/fc0da3257504f39493d797c8eba35d8d04f315", + ".git/objects/09/083086f200ae1aba68c8b2bf291ca6efd4c0f9", + ".git/objects/09/123f9dd3aa08fb90e34105416f16ba121566f0", + ".git/objects/09/33fe1d5f85406af82b0a418a51dc81b59edb2b", + ".git/objects/09/37fe3c6c59baad250f5ad3eb8c35be6a97af78", + ".git/objects/09/7314180a79425a40886df6bdd54a2c219feba3", + ".git/objects/09/8aaeb28037c90b3eaae98667292672d2d5789e", + ".git/objects/09/8ce84cdd7bdb77e63741a3b3b76913ffebbd7d", + ".git/objects/09/a55ea8f0834cc3fd288716c78fad429e47f795", + ".git/objects/09/af9387aebb544abf2d4cee6f88059ff37166fa", + ".git/objects/09/b4f24032eaeee861bc736e3c04c8a7778ca435", + ".git/objects/09/b520ad15df82a7bab3e1ba27170dcb9785204f", + ".git/objects/09/c2ce8d7ac0400fd62b7c1e54f0972986b4114a", + ".git/objects/09/d3f0e931bf8eca13cec6a6aa6a5dd9a44fbf34", + ".git/objects/09/ddc42483ba382803a4842e639e42f53ef0f17a", + ".git/objects/09/e5580ef56ae25da8e5b150234142fa72ebb59b", + ".git/objects/09/ebb90393f6df03f395c02fb2c250e1491c80d5", + ".git/objects/09/ef3e37ae70796ee72c8fa24199b3a1bbba7cab", + ".git/objects/09/f22bbcfb1514bba2e0fa76812f00f0618d8d61", + ".git/objects/09/fc7868a6542c0107097e67d57e387df78677a5", + ".git/objects/09/fe5282b8b4cf07f0ed54113192e5950fb16d8a", + ".git/objects/0a/0acb5c01c7cd9c0358b29c76a682120686fc51", + ".git/objects/0a/10b17dd08a5dc93ac51cf2738a3f7e69d55a2c", + ".git/objects/0a/1ce570145132409be056eff634328c985832c3", + ".git/objects/0a/2b26e2c9f16fb27b54d85c595d288b07ba9709", + ".git/objects/0a/499da85e02ce2c8f9aed367e5e4fa888cc3e51", + ".git/objects/0a/53fae1e39917b7b47f2a1d0a14c46632b3fbb8", + ".git/objects/0a/57e5d1f386842041a4f35ce3124b9f89b0d0d7", + ".git/objects/0a/5bb48fda18ff9d39dd34a57990a4c626d1e970", + ".git/objects/0a/5e295ddc84df66df5a79abbc6c1bc5f3e5aff6", + ".git/objects/0a/80aece851a9b09920fb0ac25265298e5598502", + ".git/objects/0a/916181c9536e27245911b0c9a48342500dc9c5", + ".git/objects/0a/b9e6e3bbb69be486d7bba47a8fc197d0c562c3", + ".git/objects/0a/ca2d7cb326879b8edff2bc24a9f53d9139563e", + ".git/objects/0a/d3b0e13f597ea3a64d5776647b0f7ecd2098bd", + ".git/objects/0a/d8565839aa4559982eea1a3e13c866e6ecf3e3", + ".git/objects/0a/da6f0081e73a285199585c4d1bf961857a777e", + ".git/objects/0a/ead837e419b435f58d625237240a1ea2914a2d", + ".git/objects/0a/edede1176eb1a76070a3a1a316a820ad9c4580", + ".git/objects/0a/f0e65aa64c52ceed0af578365474ac63c23d64", + ".git/objects/0a/f39b69f119c26b5083c3c8dcfe59179def75a1", + ".git/objects/0a/fa066ce2a1581997af054f0e73a057e7c25525", + ".git/objects/0b/1b414f64618117313caebe94cd999a4f78420b", + ".git/objects/0b/38adf8370b53178251df5c1f116b8354ff53df", + ".git/objects/0b/3f693959b28042db4cc6e6fa39bc2a98e08ee6", + ".git/objects/0b/5fb392a933cb6f68000cd07de7e5607e5a70b8", + ".git/objects/0b/69a10d820c056d7beb0ddf56da3f80cc990c33", + ".git/objects/0b/81abe2bcacd1078bf6b1223eac83cec78bcf0b", + ".git/objects/0b/95e5e1e46e3879839912fc5f66c7da14888526", + ".git/objects/0b/a338f722592427396d28655965acba2d96cecb", + ".git/objects/0b/ab4aa982d70807d27fef356ebd919b69c3334d", + ".git/objects/0b/b55f6e9075832a36c04f994151ea08393917fc", + ".git/objects/0b/b5c2f9f9665ccc594b785cc5b17a5c29d5bdb5", + ".git/objects/0b/c0bfd3b6510271e08145707fb6a3e04b665160", + ".git/objects/0b/dc741bb891e190a5c9f60c3eea92887770468d", + ".git/objects/0b/e45ef610f4e946c1a9946c0aa8e3df0ffc9891", + ".git/objects/0b/e4d5ec145fc3145bdefc1eca1a0a11c502a4c0", + ".git/objects/0b/f7f89e22a782b9e9830a0615d20f9e66f925db", + ".git/objects/0c/09ce9b20e831c6352099680955f08a17a1a013", + ".git/objects/0c/113d03ac3105a28ad490d044c5826d16c24f01", + ".git/objects/0c/20d983e4695cb46a43a311ee205173946a71ce", + ".git/objects/0c/3dfb3e38abb6e8a9cb5262cd49162bda592187", + ".git/objects/0c/481efd477d09293b9ab103123c70a9e55ffaa8", + ".git/objects/0c/487f4d9b9fad2d4512793d6ac23867fd248aad", + ".git/objects/0c/498e090a4ebc58903799efe96b344b4cd916fa", + ".git/objects/0c/5f7b14cc0ae097867668a3e7447a278760771b", + ".git/objects/0c/67620d720c60caa8230433710051040cff5a45", + ".git/objects/0c/69ddd370b70e720112f21e9f45443adfd55e7d", + ".git/objects/0c/799d1a0cfdfd3d61ae8139c54901c52fda01b1", + ".git/objects/0c/7ae49c698304424d55007dd488cef3fb1afab7", + ".git/objects/0c/842eb34774ffae12a34f5184c5158e14378ab4", + ".git/objects/0c/87ce0f338d07450d3ff590b6d7eb7ffa13b618", + ".git/objects/0c/8e755d761d5477948b62e46e2058492cc4b3c2", + ".git/objects/0c/98d8669dae2975daa4a893a4c5ce0f4a85e971", + ".git/objects/0c/9c443b3fe61923bbeffec9b598c1db43a9ae4f", + ".git/objects/0c/affbaa0a8347508475752f6ef75f831b89be37", + ".git/objects/0c/bd5ce30cd3e91c867a0a96add53a37c2699c74", + ".git/objects/0c/c48e553cee11358ada9568fc3928f9a4b9da14", + ".git/objects/0c/e8bb66982fd85f3efdc5aeafffefa60924e972", + ".git/objects/0c/f3b7ae326d7437dd98f74b1bb5b5d8ebf1b573", + ".git/objects/0d/0738974f8fb1cd1ff723986374d7dba735219a", + ".git/objects/0d/0a91c39ccc072e08f9b3a153b4b384752accf2", + ".git/objects/0d/2067f2e56bf2f883854150a90d99c899b5ebfb", + ".git/objects/0d/36509217b2da56dfa52a1a5b2d8f89c8e0b6a6", + ".git/objects/0d/37c417cdae432d68662a880c3ba796a299b7e7", + ".git/objects/0d/4c7bce3b553590d2769eb6f6e73cb08c9ac09f", + ".git/objects/0d/4f9521c06a3299e4eb3ada440ab4f1ac20705f", + ".git/objects/0d/51ed992d7276fadb80923d5156f81e70e460bb", + ".git/objects/0d/5639bfd6214f5996b426036d9cedf881018f97", + ".git/objects/0d/5c073a09889a077c53dfae2bdea79dfbfb4365", + ".git/objects/0d/5c819c9ab493b286c1d390abf89774aac79208", + ".git/objects/0d/80173f2b3de58686ffc4a5caa81949eb450401", + ".git/objects/0d/96b5ec1de91f10972cb11b95d7afd0a0889bf8", + ".git/objects/0d/9b4e7d5ed9a344e06959291d91d0219ed7234c", + ".git/objects/0d/9cb5daa2540bb85d2a8a8cbc1fb24d14c17a70", + ".git/objects/0d/aca4a6eb4928a7f901146819e8dd951aaa62b0", + ".git/objects/0d/bcc0b324785fad8411f20474225574a80add73", + ".git/objects/0d/d598f7c67ecd4e3f876b42d2985cb404eced97", + ".git/objects/0d/ffb6ee230ba9aba390c5c6faefc2024cf7a2db", + ".git/objects/0e/07873c3f5492164849d477f01a03c03ea1e187", + ".git/objects/0e/15bfddb5087bc6a284b46f5372c3221c87772b", + ".git/objects/0e/48cb6fcc9f36af70b6e2f1abd1f76926b67eb9", + ".git/objects/0e/5213850f0bee8e705dfff4f514b2b9d678d701", + ".git/objects/0e/53bc2ae4fbfd27545301ae4b7cfbb79b49679b", + ".git/objects/0e/5b50f8ab75fa48f82f4313a8e02b51d8cb8382", + ".git/objects/0e/5ec1a8388587ae76868760c2f954b4a1f06fb9", + ".git/objects/0e/77b68767da411d46919482f503137e29dac1bc", + ".git/objects/0e/7c034725d6559165d605ce8e6e46aac640c3b4", + ".git/objects/0e/83015f2af70b7233038d1e9ea62a410bc266df", + ".git/objects/0e/8fbd1de14d7e0fa870953732b13c07ebade24e", + ".git/objects/0e/b7c8f505ca6e7471faed0e4e158bfb9b6671a5", + ".git/objects/0e/bc1edf245b4c1a7d01b39e8153f5e2ae8d65f0", + ".git/objects/0e/c82124e03e6c1a3febf8f98e8449b974e2559c", + ".git/objects/0e/e4c914ed34801a29e9996cc953fb7dd08d7957", + ".git/objects/0e/edbd20e21503ac5415f70783d66114df982743", + ".git/objects/0e/efdf833b44988fbb1558afc850885c3a83f467", + ".git/objects/0f/11b1fa702066b5823e3e46c1c9c98cfd5510d9", + ".git/objects/0f/15a823f91ec95beed9712f4a3e5c56061c44c6", + ".git/objects/0f/1da260a9608d3787249ca0843c6dcad60ff729", + ".git/objects/0f/31bda43aa988d81e57c5d533c09a8bd44d87e9", + ".git/objects/0f/36309edf0bcec3a32e6c2bf98ea9ab580f96be", + ".git/objects/0f/39d8b473da6d363d7457f0cacdae51dd2d7be9", + ".git/objects/0f/486c49c95027395dae17dfe947681409bf2cfb", + ".git/objects/0f/599f9de081d1b94a6901cc45717156b6332945", + ".git/objects/0f/61999190b9b1f06396833b808a8da4fc7392c8", + ".git/objects/0f/640e33d1ecd8374ad0e0cc97ac1d160903d0b8", + ".git/objects/0f/6caa0ac050bcd81973900f0080e6c67ee824d8", + ".git/objects/0f/6e30e08c035f7981ea5e5fb63215a26bf8b8dc", + ".git/objects/0f/70fe5949c9ab8e6f27003a173a7031141d2583", + ".git/objects/0f/768aa895101f845b9e7e4258e29ef17d66fe3b", + ".git/objects/0f/ad81020f66cabf1565e4ea93ce6d4ae9b9fa74", + ".git/objects/0f/b25dc17d2ed7e2e3a54a4cd9dd31cd60380935", + ".git/objects/0f/b72db5810f6d5310bda972a47388c797123da7", + ".git/objects/0f/ba9b07b2e76b9c3b99fc807fc1374c7f5311dd", + ".git/objects/0f/d2cb024b1c571e472a6ac4b8b3192ccf0318bd", + ".git/objects/0f/f436a8968aaf844947f488ba14eb274020af0d", + ".git/objects/0f/f828f72736685c1667a2a355ffc161462d79cd", + ".git/objects/10/0031c5af36797b0741fccc0690956900bea62e", + ".git/objects/10/0127a40058596f2c2b758b7d91ea1876305aa8", + ".git/objects/10/02105778b86dfb878c8b8556d1a8d7bb9361cf", + ".git/objects/10/0799551c858d4af10526f569178e5435915363", + ".git/objects/10/100cceb6732cfe3c801c4cd119fa7bb7b001d5", + ".git/objects/10/20fd25c39f4d54eb9b1997993695aa0edbd7e5", + ".git/objects/10/3839264872bf9ad915a83cb86a3c4aed035014", + ".git/objects/10/559d8ae6dc3d94ddd47639392d2e4eb3064f22", + ".git/objects/10/5a462e838e091d6dc210c1136dc44d3ce65aad", + ".git/objects/10/5a64428010a0c3bd9d6ef94ba51bd55dffbdf5", + ".git/objects/10/5c2a04527ead06e4f8debeb932cf6992d19e4c", + ".git/objects/10/911369b482fad01fe8b27a018c3d8abc38070c", + ".git/objects/10/a79ce4f17966319c581fafff61b834dd74001e", + ".git/objects/10/b1204f4ca7cf641e1294916e9e2cf22eb09e8b", + ".git/objects/10/bafeda55b7738c2e4d4bf2772db910df42d170", + ".git/objects/10/c5076196f31a6085fde902ab5df6521c1b29c8", + ".git/objects/10/d5393564f912e11ed3e431485c0af0f3ac5a00", + ".git/objects/10/d71bbf3995e210be89a5b9e8da39d00f6a1131", + ".git/objects/10/e28b4b6b17c58740bdf3bca2946eca18082ae2", + ".git/objects/11/068bb590c80577161acb8a064559ca90c7ffd1", + ".git/objects/11/07caa89b2a661e283eaaf51431642b94a7c5a8", + ".git/objects/11/08afd428ee607da838789b57735ff44a3ffd28", + ".git/objects/11/0d68bed303118f420d5554123e606cf6a13917", + ".git/objects/11/1413791e3312c82dd01fdefa74091a7698038a", + ".git/objects/11/1d156071f0b78102ee89d5a45645b83d344bc2", + ".git/objects/11/2090a3aaf85d97437cb14e173c7db0354ac81d", + ".git/objects/11/33ac85bb8aa2e284594387f62bb341e947fb71", + ".git/objects/11/42886826552dd71e322b71d7bd45978d405e79", + ".git/objects/11/44f0d6956017cb05573b6b4b87ae25c76e467d", + ".git/objects/11/5fe3c60d8949cce8d126e541b479b6663d7af5", + ".git/objects/11/7b787f79db730a739100b5e8889b1d1c885edc", + ".git/objects/11/815a6eeea0eb9e4d115d467b1fe58388409e8a", + ".git/objects/11/942e9ba14588787cd6107117de0e04ec551ad7", + ".git/objects/11/9d76e1df31c2a9a1b42864dd77aa210742c9df", + ".git/objects/11/cc1309d3dc7ffd363dda52c9253d10dc58b452", + ".git/objects/11/e4f6076d232291316b6b77be8b86cc0f8f6c50", + ".git/objects/11/e652058ce2a712d0db1b7b62814bbb7df5eee1", + ".git/objects/11/eaa30255aeed9b9b9871c7424076ec78440fd1", + ".git/objects/11/f5521aca9b5d73ee5b3e838581f082a3332e20", + ".git/objects/11/ff81349c753492e9299ecc77c91e0ed51b80d3", + ".git/objects/12/29ab682e30b982bc5ef415abfe3d214883c724", + ".git/objects/12/36c236c32f1271d634f9d09a3ca3c32ff76e6e", + ".git/objects/12/37ae6aec131fca430db1c5ff282a5eabdf8dfa", + ".git/objects/12/3be677a54d0e526f88399c752d422297b2b9b2", + ".git/objects/12/489f6b88adc6ef5613795899713b75e543f813", + ".git/objects/12/5156b303fea4de890ebf46300c055305c09271", + ".git/objects/12/57b7923d6f432cdbba27bb6318ede5facceed2", + ".git/objects/12/665ebfc785d13bc2466ce97966825519a4648f", + ".git/objects/12/6723f8c5c5535bd884ea94391baabe3d17be59", + ".git/objects/12/6b16d039d2100fb651714e48c304f3e61cb28c", + ".git/objects/12/6f694b92731c309031241d67cafe99241450b0", + ".git/objects/12/78643155803dcdef4250b833cf070b86728a38", + ".git/objects/12/78d3e6d5ef8be005d8065abd63ca4cbdf1c50d", + ".git/objects/12/7d006a07e6f60a889f1b12aecdd1ae83b8933e", + ".git/objects/12/87646d5022ae53edc50373edacde60c49e14e7", + ".git/objects/12/9455a22da8ce12a5bc3422a23263a8625c684e", + ".git/objects/12/9c5e675e3b300253dd99a93c36c69fea9f37c6", + ".git/objects/12/b3c12abbfc97a2fa08359e1e1fb329ed2797dd", + ".git/objects/12/b41cee3bed02f27b0c01db6d281243c04e9c36", + ".git/objects/12/b83ca6527f3d34fb8d6ce6efe5ba51a55da54f", + ".git/objects/12/b8b94213cf33d9453b5130d4f02805d3313cea", + ".git/objects/12/c64fea997d3fe57cb16f1818320b6f9abbd263", + ".git/objects/12/effd41ac640cc5a31aef611c25bde528654783", + ".git/objects/12/f1117b6a8c745951f0deca3e9113cd4830bbf0", + ".git/objects/13/0c86909590198fa6ffd42526c5f95730c49bc7", + ".git/objects/13/16fb29e608ea9e9ca71f4118a4e98a6548fb56", + ".git/objects/13/24ab61f116109a450906ee8c66d57cc8345205", + ".git/objects/13/4c3bfbf86da5305ed79ee558d4d80983a6a920", + ".git/objects/13/5565693eee44d8aa44553f20a9bf237e79a91e", + ".git/objects/13/7200fd82823977c616eef6078cab66fbff81be", + ".git/objects/13/7c07c65ceea9a13558850c2b4b3a9788c7dc94", + ".git/objects/13/7ef83a4294872b050dd834a1454801c458bfff", + ".git/objects/13/a8210997ce6d06ac177b0035288caaabd7bb89", + ".git/objects/13/c19298a77ed722d9816b2e2dadce8c0241832b", + ".git/objects/13/c61c39ca2220295aceb5ff19b4ed436e378096", + ".git/objects/13/cda91e90d75f49042ab92726ea54240e8bac36", + ".git/objects/13/d9f9e3ff41f4414dd433c66267ff6fd7a78b47", + ".git/objects/13/e167a7ebaba4d866f5e860b8a99326fc766fb3", + ".git/objects/13/e4a146090312f8e3b5c413784c929d1365066c", + ".git/objects/13/ec06aebcf5913547e27543a1808fad3d5c7064", + ".git/objects/13/ec4798556396ec58c5a28dd96ab40dc93ec1e7", + ".git/objects/13/f025f49d23db2345e0fceaad83268cb00e4de5", + ".git/objects/14/0948b2b8931e66a690c06ff2668467c41e01f7", + ".git/objects/14/17562d909049028783e632ea756ed930044c90", + ".git/objects/14/206a2feefab3b626a911412f11e403f95cd520", + ".git/objects/14/418ea46556a80c16ea25f935aab31eb9478c1a", + ".git/objects/14/479dd4805b4197ce516744cfa8bd89f08e57d8", + ".git/objects/14/4929919953b189e0d807f8f6f656cd70cf335a", + ".git/objects/14/51a80e49694e8f5ce9a6d016549b6527dc1461", + ".git/objects/14/5713b927146800af4e542332fed85d849a30a7", + ".git/objects/14/6f3cb1f095553643ac2ad0b6a32a0ba0097d80", + ".git/objects/14/70757aa6b47414a42783933b89cbe6191b31c5", + ".git/objects/14/7577d36f8e60499e05a4827976787e8b177d73", + ".git/objects/14/77889ec43fcba959d0952c3dac3180a387c610", + ".git/objects/14/81069e7693ef23db0cafca86d066c40973a6cb", + ".git/objects/14/84bb0e53b0d20da5fa12fbe764b66faa141d5a", + ".git/objects/14/a3ba82978b3760e7c846ae0ac8f063ef09ce3d", + ".git/objects/14/ae6f5d51deca1d9327d5d29e9c7baebe005086", + ".git/objects/14/c32c1b181dfe380abc0764eccaf70c6814de8d", + ".git/objects/14/c3526e609379ae4a1e63744e0ade6a1e752530", + ".git/objects/14/c944813a3e11bebb97280a71ffdfdc7fb5dd70", + ".git/objects/14/dbc663cd847a41c86cfcba5b73e48d96b62d0f", + ".git/objects/14/dcc32cea7f4ac074dc3efbac5387733df4a1e9", + ".git/objects/14/de64ad611621ede3fb241d882c09f5c6b8ceed", + ".git/objects/14/e872d28ef58150b2b03899bb0a2932a964ff6a", + ".git/objects/15/00abe2087bd2bc3b9dbd11832fee10fb47f9bb", + ".git/objects/15/087308a461cac6ed437946773af9c53363759a", + ".git/objects/15/0f91d0d14ba7cc952f1fdd0723e97538996c78", + ".git/objects/15/12bbc4ed5e28fb6d213f313835780801214b4b", + ".git/objects/15/13ac28dcd8d0ef659de0a8d3964a96012e42bc", + ".git/objects/15/23e55b793843a2c562b772603c49c75e1dec27", + ".git/objects/15/2473a841835a306ca2ab3f123348ce2cdb6f79", + ".git/objects/15/6ad49c8738bbcdd6c617a7069ceb508b99ea84", + ".git/objects/15/75a4f51dcbd9612574e4a085260caf026617fd", + ".git/objects/15/76ae20137709b4078fa9c41746be05a0a50eb5", + ".git/objects/15/83484e998fcb96c313ee8fcafaff307e6138bb", + ".git/objects/15/8dafb013f9c0e0a76e92c11f77b71bb67be8a5", + ".git/objects/15/997806e388bc817684a9f8053e75414fcea321", + ".git/objects/15/a717121b8ed6fc523b2889a6cb71be40354850", + ".git/objects/15/b4b5746527de854e324af4476101383780a980", + ".git/objects/15/b9a916a564e290d6d4f93df27292a99b8c29ac", + ".git/objects/15/c5beac9f628212d8be495538505408f590f54b", + ".git/objects/15/d64a62cb4bafae9908ec3543953c618ea51d1b", + ".git/objects/15/e0a85fbaa2b37c39d198cac01eccdf6a42f2da", + ".git/objects/15/e7566117b846bb4fd3b9ed23ce9204f6ecf5d4", + ".git/objects/15/e7938e2526df5757308d68bea01766c42542fd", + ".git/objects/15/ef47e57e80c66fe1cec68cf9b014ce064de18e", + ".git/objects/16/1084ce3f43e4a18fca1cff303e23aeb92bc4dc", + ".git/objects/16/130a773d36af6c2a6dfbb6d90c1da1f3006828", + ".git/objects/16/18f7046ba7e2c77742cf62b59937ad8a282e53", + ".git/objects/16/1adde47d2a809d880dcc4810ad9b52a19fa4dc", + ".git/objects/16/2504f11caf76780d608c88312f2cf798689188", + ".git/objects/16/2661183ad1d6e23336b7574e641bfdf7e9d994", + ".git/objects/16/2afedcf8b69006d7d172ebcd5a03f8ab21c0cb", + ".git/objects/16/31b9243662b0bbf2d027bd33cfc81487cb1a60", + ".git/objects/16/33f00e7e17a1504890c2e39384031c11602051", + ".git/objects/16/3e1d45f3724c4fc31d1c052351e4dd8247be20", + ".git/objects/16/489af39b408dabd059f759f053f0b5031f9e49", + ".git/objects/16/48de84848a4093fdc3a2625a82c1f4f2c827b1", + ".git/objects/16/4f3624f2225764efd7a0277847aa23dc131a85", + ".git/objects/16/58fc7c3639c7b7ba161246e792a0686de53cce", + ".git/objects/16/6193352e0b7bf778a2b03b4a07bd9766548c76", + ".git/objects/16/974c56f0d3be1343ee8140b7829a84454ce41a", + ".git/objects/16/9859b4e84786d58e665b2e183d94a3e20eda54", + ".git/objects/16/9c83cba534d34e4f88cc0aa28e724010814bb1", + ".git/objects/16/a37863af1034807153882d96208ff5fcc58e82", + ".git/objects/16/a610fb1f84200cd80fc79e3e347cfcea595f8a", + ".git/objects/16/b1261911648ee780e6b454ee5d56827a7b17dd", + ".git/objects/16/b774b9352e69aca9faf5505b063e93371095d8", + ".git/objects/16/ce0b2b03976d18e626fd78b21865d53c348fd2", + ".git/objects/16/d5bbd088fad3a9fd6020f4450d0988b19f8ad1", + ".git/objects/16/e3ac5a376bbd9fedbea42c6ec16760002f81a5", + ".git/objects/16/e95192e4e0d201f55daf32a96c62543b577ced", + ".git/objects/16/ea87135a8157a735da29ce79aaa52404f2114c", + ".git/objects/16/edc10a22c09fd49687b457f3144c970ec42d9a", + ".git/objects/16/f4971e23bab16d15745a90bd0613fcc01c0a2d", + ".git/objects/16/f906356b1139dda7914c7bffbacd1e6c8487b5", + ".git/objects/17/0388e0914355cc46ca9a62e05c42cfad0ae39c", + ".git/objects/17/06f1a7b7a1f89329e6ec67248ed2dc37460036", + ".git/objects/17/0a2b70d8314ed5e916edd69724fd8d46a0eb55", + ".git/objects/17/1599c0ede3c709956915af806ad0fee4ac9092", + ".git/objects/17/1cf3a4214620101611180bc2132a7c90a39625", + ".git/objects/17/22c3134e7d1712d0da4b3ae12723527c92cdcf", + ".git/objects/17/2eb87219c0b3bc55f2884f32adb05326244627", + ".git/objects/17/4d2729af1690014d263e67669c2ed6d0b1a20e", + ".git/objects/17/4f9f3804c9d0307e4a7e548ab5d3aa84a67ca9", + ".git/objects/17/5ae3f40ad5cb41e46a1b39c5825ef58efc2a97", + ".git/objects/17/6f537b1d6f7f48d5f43bfd5cf8a721a82376e5", + ".git/objects/17/7133c4ec782a080182bac7ed3801a6923fa336", + ".git/objects/17/7f43f12cb00f44afb88c95281068f5ae7e5751", + ".git/objects/17/8ea7c8432928713653064ef557bf4e6937f94e", + ".git/objects/17/96bd57bb3c155fb2a76ccc28f0f92af2be7ee2", + ".git/objects/17/a8a063da985864988b16c6a1ee117626f9ed28", + ".git/objects/17/b0a21cdbbb8d7d7f0bfa590ed9d56094220a10", + ".git/objects/17/b1c4b71710f05b6b6767b45ea701e046c7fd04", + ".git/objects/17/b3e267cdd3c89d0360981e7c232279863a98aa", + ".git/objects/17/bb6be2b16c32c94a4754999be100a5bb18ff84", + ".git/objects/17/cc94761edc11ebb135d0bbb7e197b5e33aa948", + ".git/objects/17/d3b3c2a7f298cc9089a368ef1c4596927aec8e", + ".git/objects/17/d81364bef8afca2ab917a45a749b59ef33c53e", + ".git/objects/17/d950cb04fa20dad0697bf7750c40301dbabec3", + ".git/objects/17/ee4579df3f6cf8f85e9c10483aebdb3c088374", + ".git/objects/18/25d52ec936a43b9348333ee55d67f8df38f325", + ".git/objects/18/2bf985e4c407f7c5f093735845c7f62cda3211", + ".git/objects/18/3173a09cc882b50ef2402f574c5355ee55f328", + ".git/objects/18/3b24654bd3b75abb28c86b857398020cb8f1e5", + ".git/objects/18/434cb4258e2968f943fbef99c07c9e8eb2ffb5", + ".git/objects/18/6e510231c004be881b4d5aff4b593cc40369dc", + ".git/objects/18/7472b0815b6348921eaf3ccf1249f16c1bf11c", + ".git/objects/18/7c1d817e54bed0e2fb60b928d528ef37795357", + ".git/objects/18/7fcf797cfea19d48beb411d118cbc1ef4802e9", + ".git/objects/18/9d457a7bfc54d664baadabc6795c5ea30f7857", + ".git/objects/18/a01eee07bcb3140c759088f1c8cce304e06c88", + ".git/objects/18/b4362c0d9441ae77b01d7db51f08095a98411a", + ".git/objects/18/b95b23c3e2a9979072718a54317efcf62055e9", + ".git/objects/18/be400c1df362e319a86991f06dbfee7f3f633b", + ".git/objects/18/c0fd5e13f6df589f9806b420428f7e0e2eafed", + ".git/objects/18/c25b89c0208dc8eb3394dab90bc91f52e6b2e8", + ".git/objects/18/c78d768389ef091273bf3a9a3a8d57bdfe5d54", + ".git/objects/18/d61fadf2b36b34a24a96f4c4eefd8d61c18363", + ".git/objects/18/d705c1bb0576e5ebd2ed6d460cb0522889f0b6", + ".git/objects/18/d792fbd908f3400d1d7712ed476516eb5e45db", + ".git/objects/18/dd7490b21828c208342d2d0c10ba8872ae4727", + ".git/objects/18/e2898d5cf0ea2228d8eea8e9daa172c44c6064", + ".git/objects/18/ed3d1070840ca936d19e449cc784fe7230023d", + ".git/objects/18/f21198ed7bdce78f90e6ee7fb4b29255312923", + ".git/objects/18/f69592723e1ac59f4ab089b093af7dd687933d", + ".git/objects/19/1b5dd1842f952e7506f2d552e4aca8fce3632d", + ".git/objects/19/21cb593d50878bc81bb946ea9534c2d94029d5", + ".git/objects/19/27b9d2c7b392c8234008bd25d572f576ab26e0", + ".git/objects/19/2e03fda20b53fd543e2fa5738bd4a9267790c1", + ".git/objects/19/2f629bc598a09f5cf75c89cff03985f7702ae2", + ".git/objects/19/502b4e9606085bb00f8f64f706891b08f349f6", + ".git/objects/19/543b7d5de91ba3253cae8691fef2a2e2febe3d", + ".git/objects/19/5f44f4ee0d739aea18b8919bbee3c35a0c9b33", + ".git/objects/19/6293db619c08e6f44481e21819e293ce19ade8", + ".git/objects/19/633f7fd963c50410dbd10edd2c920b91362c55", + ".git/objects/19/7507b996c91d1ab19cfc7b6149c6edd6defea1", + ".git/objects/19/78bc21068a34fa0c716f2d21b8cab08b1b1ee6", + ".git/objects/19/8349e6bffefc08a018a1a6a76b923ad735c977", + ".git/objects/19/8a23a95404125fcf170e0bde9f638ffa03a623", + ".git/objects/19/8c62ff99b09e24aeb75fedc3c7ebd2fa385ca4", + ".git/objects/19/961a83950fb970c6851956bc65f1580157b67b", + ".git/objects/19/9a2559c162ef9735a6e5c6dc954ca866f38e12", + ".git/objects/19/ac0a83c9641e0a80082297742b30a92abb5539", + ".git/objects/19/ad56b87e11b4358cef9d6732fa0e90d7ef81ed", + ".git/objects/19/b683fddc825d497c6b3e473687d38b191ed30d", + ".git/objects/19/b90b3195f6b2760f151cc518a28e602fc36056", + ".git/objects/19/baf5272997cf06ac6139628f2ed8bf71294d81", + ".git/objects/19/bee909788c10eea18c514f4c56d9400e0e5714", + ".git/objects/19/d666b740eceda622250984da697291646b256a", + ".git/objects/19/ded0fa251c203f78c4a7ea6d954d2f64b1f389", + ".git/objects/19/f02998baddfb62c53fdc3eabe95d40eec2f595", + ".git/objects/1a/0aa439eadf8f0aa868429802c9c14c6388f7ee", + ".git/objects/1a/0ee93077009b4c92d9d2771c9428c8d9c16955", + ".git/objects/1a/1a252befbdeab13310ccfb8d029abdc0248892", + ".git/objects/1a/22eb010b2b15721ec161e8c37886e040e7ceb5", + ".git/objects/1a/2cab21a4c5a9cff92b76757f7098d267dc32ce", + ".git/objects/1a/5b7fa9bf8d2a13d683d7870856d3f8c417d476", + ".git/objects/1a/5ddc0ef09f3ada546ac586720e76dc405a1cd7", + ".git/objects/1a/5dec660f69fe43c21a7c4ce3da3ee0c5f41169", + ".git/objects/1a/6af1198d7aac6e527e02f296cd96f565a1275c", + ".git/objects/1a/81e3d0674ba74dc454ee39e94aaf52dc133268", + ".git/objects/1a/860a7ab079859676c8d4d4a288e294f65eff19", + ".git/objects/1a/8c0f9577d6e66c7dde7656c8a68fcef581b691", + ".git/objects/1a/9f6dfcea6a63d14f6e83a3d28b188ff6c5153c", + ".git/objects/1a/a1c84decc8f20f6655d5617ae79eb9496a1b70", + ".git/objects/1a/a942c0bf55e91eef0e44ca9914dae78d9fd82a", + ".git/objects/1a/ad634e1f7645733477bed518032ebd018c0e26", + ".git/objects/1a/b048023bfb3380fe91c4911a8b40f38f20fb8c", + ".git/objects/1a/bffa2dc1ba66039b7bf318968dd01ec644fade", + ".git/objects/1a/ce7ce79c8f758a1a5a18966272d1a6c52cb010", + ".git/objects/1a/cf874ad66a40b28223ba68a70f602e0d723206", + ".git/objects/1a/cffc61886d6465be53d60d3e2100511be953e0", + ".git/objects/1a/f36d09dac57bf8888da697c89e1ee01d350252", + ".git/objects/1a/ff02e90cc033f460f1d25eaf02599ac6505686", + ".git/objects/1b/2249f40105411003022a9f91be075e195cda2a", + ".git/objects/1b/286cb9c4a533f6736383007f84c356cc66bdbf", + ".git/objects/1b/3fda8b119ac0b304040a04940b08359509ab3f", + ".git/objects/1b/4125f3fb1d3aba16320062fa4405fa0ce118ed", + ".git/objects/1b/47984f544229f55c9240ec5dfc3362fff21a10", + ".git/objects/1b/515562efd6455c1103d5941f5856bf6a670dd3", + ".git/objects/1b/6ade04fcb0f534e0ab3bec9ce3a0eafbfb1565", + ".git/objects/1b/727fb7a16236fa73a6ce5286e5d38b5bea1eec", + ".git/objects/1b/85b556139b73c06d855d0b9e503f4043458f25", + ".git/objects/1b/876ebef74c79f2e525aa163855f0332757d83d", + ".git/objects/1b/9b1b41ffbe3a937c298366ada6cbf33e20f1e7", + ".git/objects/1b/9f95cce2ef96c5c517d986f1da53d9130a992f", + ".git/objects/1b/a40b0cdc4fe6f08af8e57c69ed5927968c4ad1", + ".git/objects/1b/a6f75b8968d5f7e05c9be99de2118c8bf39357", + ".git/objects/1b/acb402a5a9ba43ea4ebb5ddb249f33e94fb7f0", + ".git/objects/1b/c6814db8639da81dadf78a9a295efa394e9cbc", + ".git/objects/1b/c71cb5a0d238f41a54e755cc0a202c22636967", + ".git/objects/1b/c7b58d0d854358b47b7f96725ec7b55058406b", + ".git/objects/1b/cc3f7023c11a5ed237e0e33958bf9b8441c789", + ".git/objects/1b/d4a041a5ded4e97a3e83a71fe50fdd09db56f6", + ".git/objects/1c/02db929a03289b00f748a3a27ff9247b7fab37", + ".git/objects/1c/0c2e7ebaef1e701f14be054b9a2236e02b2055", + ".git/objects/1c/1245906af06fc111250403ab8187beb31b2f66", + ".git/objects/1c/25299c3e47270d368f50854068c22ba716e668", + ".git/objects/1c/33ef4132721c30ed1b853313faaa9015628de2", + ".git/objects/1c/45c25d2f738221981efc39423d50c6a36649ab", + ".git/objects/1c/755b0e33f4817924b93c487161a2f26daa5f6f", + ".git/objects/1c/7e497f424885c9ae43ea1faaff230442dd03f1", + ".git/objects/1c/8be3f9f26a8409137afe8ecc7060448a895481", + ".git/objects/1c/95aab3a34f9cdfa2cb73985acd30bfb71a794c", + ".git/objects/1c/a68bb282563e5f141fe91af035d68ced57405b", + ".git/objects/1c/b169764e33fbf8778519a4f74c854dc318555f", + ".git/objects/1c/cb881fa23187e8805544b860185c1d3ddd78b2", + ".git/objects/1c/d566bc6390f7bd8d187b4319cad6ef40ed3b23", + ".git/objects/1c/dc81485a3d3a0684ec2ccc82ad11da14b61b85", + ".git/objects/1c/e47f922c0484db3d89ef458f48e7b105510608", + ".git/objects/1c/e66e9e3dac9394478afbb47e67f5e08473e6f9", + ".git/objects/1d/09d93396160f7be658c3097c486ce21acdcbcb", + ".git/objects/1d/0aa3de809aafc03680cfa3bd07c1b0699c69b1", + ".git/objects/1d/0b50b94111ef18d9e4b404ee07960ad01c8d79", + ".git/objects/1d/3a5a7217d0936fcfa9371f2de9b021badd2d20", + ".git/objects/1d/3ceaf3903fe9db412a776733e41f19a77cc8b2", + ".git/objects/1d/40f905e4871113e6e184d12892b7b1b7ab85bc", + ".git/objects/1d/455d76cf748c71b76b6e6045ddb35564d0e2b3", + ".git/objects/1d/4a0b0e772b34bf5e6dbb3f7039c1bfb983a88e", + ".git/objects/1d/523b40c692cae02a4af5d77818f672421312bd", + ".git/objects/1d/679826eacb214c7837faf33aec8f724f60abbb", + ".git/objects/1d/68d90d87a9b2f722359c7b136fd10e9a2e7ea9", + ".git/objects/1d/6957be8d92e0945e760abbb2c3a92ff508264f", + ".git/objects/1d/6a312c223ae344aa7ee483885ba4934f1a7526", + ".git/objects/1d/6c51ffcfdf55d1fc36be33807bc869e2469637", + ".git/objects/1d/767253e7f07056e9e49dc3da82927ec7cd36cd", + ".git/objects/1d/86c4668c1c838a78bdcf2e52f8a923ed4f38f9", + ".git/objects/1d/95838a6581aa59200acb1534c07288c7f95bf1", + ".git/objects/1d/97e996c1e3975287cf16538570a365011d6b9c", + ".git/objects/1d/aa12a3b13ae3f40730fbfb614fd5661322d60b", + ".git/objects/1d/b127c0ab3a0012912c8b4ebf2e53b6dfec8893", + ".git/objects/1d/db387bdd8f7d0f590e5d3660f583306d0f19b6", + ".git/objects/1d/dd7d89127997b5094b704661094ec37dcc26c4", + ".git/objects/1d/dfb3b1d51202dfad2a484a09eb02f1cddc9bad", + ".git/objects/1d/e43d84a6ffe36760fc70632f8efef37ff90278", + ".git/objects/1d/e5e448f117167a366df15caa1d40cdb5c44755", + ".git/objects/1d/eb126f185da90ee99ecda3f4a3ace3cb8e709c", + ".git/objects/1d/eb2e275200721c7944a7474f4fc4b30be81887", + ".git/objects/1d/ee44b47f4a0b61e1e4ad6384dadf2a8952fc42", + ".git/objects/1d/f0c2265267b11c31fff6d98961231c2d315bc7", + ".git/objects/1e/0230d737f7fb2f8e3ba69c81364a37a4ae1c2e", + ".git/objects/1e/0be7d63bef3784a9733978e90487ed95e95bd1", + ".git/objects/1e/126c14dfa0f575d2a96848e56fcac8e5903bea", + ".git/objects/1e/16baf9bd178777be16f5b33458a1b8a46d0987", + ".git/objects/1e/1dbc09ceeebe9d34116a5a8d93d3f13205396b", + ".git/objects/1e/27f6680733c000b57fcd4be29b01526e467c5a", + ".git/objects/1e/2d63a78cfb344f9a971009b40c9bf6d870f75b", + ".git/objects/1e/365387eb941439c796bff4bc676816c49df50c", + ".git/objects/1e/48783136705abf798104fef7d970727eea2ece", + ".git/objects/1e/4f237163c261d0379b572d3af4ada425fc0226", + ".git/objects/1e/5a77a85d4f13d98dbfbce2cb327769676b559b", + ".git/objects/1e/6c9299fc532e37a73b1787fa2df9aaf20cf2a0", + ".git/objects/1e/6cf568504ab04f46b723d8dfeb3740b4b8ef83", + ".git/objects/1e/95b9ce765de8dd9b7da4e35254522b65c1e523", + ".git/objects/1e/9943473b3d81e479a71fc57587559f65746343", + ".git/objects/1e/a6e6e69a1b803d4f8c3f6548d49503f35a3223", + ".git/objects/1e/b1a68d261045c447de2c7bc87724cfd3b9d9f3", + ".git/objects/1e/b8eec278bcce71515bfcef45c28998519dcbf4", + ".git/objects/1e/bf92e71b51c529d9179154151c831c3f8e952a", + ".git/objects/1e/e7a63d8a09e29e11b698ae470ff622727ff804", + ".git/objects/1e/f9d931ba1960b9a87719428c2bac8b2f993cdf", + ".git/objects/1e/fb6bb2d1bb15c6f60afe4821aabf35cf01b5f7", + ".git/objects/1f/0205f68603e1d135cc8738571e63d7b0c9555d", + ".git/objects/1f/36c47306ec31f9a65d91ae73416713ae59fb80", + ".git/objects/1f/5111905db8f486a041fc41f87503c3e91f9c1a", + ".git/objects/1f/681bbedbc91923fc8b6345904cbfa4730290e3", + ".git/objects/1f/6a46c1b559439ce7c2e1b602de108ebff95a29", + ".git/objects/1f/701985fc8bdbc3b159c1b95f9d56f31832d978", + ".git/objects/1f/87866eaa888ae3a2b85a31e4e7feeaae4cc8c2", + ".git/objects/1f/8a145cc766b6b6d8b0e9a0c55d023fb27becad", + ".git/objects/1f/8a8708b14f0950b80f030a9461fc73c0f66360", + ".git/objects/1f/8f6b866e62f3177b2e4f53fa6c3d3a0e27d05e", + ".git/objects/1f/dc4f466d2e26bcf57376a4ab198d38d28f72b3", + ".git/objects/1f/f301e0ea6479d87d184bd1a2d5618e8a858bb2", + ".git/objects/1f/f733fefd6051e865ef7aac5f2f57e65b5d8580", + ".git/objects/1f/ff43e4bfe0fa6267480f40c9eabd691215ac59", + ".git/objects/20/00d20fd2aecbab24707241610b0a69a8d7540e", + ".git/objects/20/074b237a8de655d7bd3990b221689f4423ad30", + ".git/objects/20/0930fd9deae585d7308deb17e3a5774d1d949f", + ".git/objects/20/12c58c8efea2f76543f4056329fe0fcf10e127", + ".git/objects/20/16e2d5aa9d0977e1327ad40ed109e032c506a7", + ".git/objects/20/197d158fa7a55634b6f62eb37715e8703888a5", + ".git/objects/20/2d478ce4d617b58d0939dab66e447e6f96e660", + ".git/objects/20/2fe0938e20ea45e18d6db314a7d2be4ac567a3", + ".git/objects/20/4db031454a859a93d92c0190b18d53bbfa5f99", + ".git/objects/20/5ac1724423d31d01da7b75248f30d5aefbb2f9", + ".git/objects/20/6fd1fcf76c8901cf7ea39d5e2947aa7326bff1", + ".git/objects/20/72f84250deecb48d6ae8a1814d8faf5161ed1a", + ".git/objects/20/77354c23762228b4917e2733759041a60284ab", + ".git/objects/20/7fd43a814502079f643da395977513b4a08bb8", + ".git/objects/20/81d0c5d05fd50db6fc9ee2b11e250816623a1e", + ".git/objects/20/8de26e745f1a6b70bc8aff33dfb15e7b06adab", + ".git/objects/20/95ef480f16aead68770c85eb3b42009806777b", + ".git/objects/20/95f6d40dae7caf760c57af05766b3026c28034", + ".git/objects/20/9bc56f3edc9a613778488dfe969c4b92e15522", + ".git/objects/20/aef09a481faac39711b6a6f31975dcedeb4bd4", + ".git/objects/20/b2ce0998797cb99c8f9717632806ef96a18a1b", + ".git/objects/20/cdcb2bdf9ac1f0461ca18b5e01c0a1240969e2", + ".git/objects/20/d719c77d7bf8063da3472f1d252a80208b540f", + ".git/objects/20/dc5e1b1b615a1c6af131f401ac3d687f4b1f55", + ".git/objects/20/de363097afc752b3ea2592ecced2579e309f30", + ".git/objects/20/e91f8065d9107b4c720130d28837283944d758", + ".git/objects/20/eb6d0ab7757e797d8c7116e68a8005be2a1aa7", + ".git/objects/20/ec1ca06e95b08562d7336701666038da63746d", + ".git/objects/20/fc9b296a68b070c26e252ce835fdfb10a258d2", + ".git/objects/21/09839f643a3070be9fbea594fa5730be27e164", + ".git/objects/21/0ac48e599c2946cab029eacbe3615d5ff082c5", + ".git/objects/21/127da3dcec5602caab87e78e0baf13807db483", + ".git/objects/21/13b63d0adec2b83dc0f9eddf3e75053027bd33", + ".git/objects/21/17c581187f7df6be653c2e47edc657a16ed70a", + ".git/objects/21/1831bcb27b45dd58a8ac204e2990be16abd85f", + ".git/objects/21/1be13a72b0424448c102324d9f0cd1fc7da026", + ".git/objects/21/2b1488dbb4aca770a050f45ae2b9cd211491c1", + ".git/objects/21/2bd18e7dc016b0a6d128ed73789c9ccb2d152e", + ".git/objects/21/34ef04dfe59640ca804b97070d92ed26fa644c", + ".git/objects/21/4a61b1b357ee85c1f8015087f7300bfa99d9b3", + ".git/objects/21/4e550125fda860d4963845a6f6ed0643a94098", + ".git/objects/21/5be9f4dcaf384dbc100c6ef64ea45d2d3365bb", + ".git/objects/21/5dfefdba986e5ca184fd2a5b1bb779e3471fde", + ".git/objects/21/6547478a44955c0fc34ab469ad96616eaab855", + ".git/objects/21/65e286c49adff98529adc59dc07a6fa196c6aa", + ".git/objects/21/816d129bf7a34187382483af2e64a43b8546c3", + ".git/objects/21/859dfe030f31c66ed8bc303c175a363fcc7554", + ".git/objects/21/a038218e698c34b132368c95a1a6034643b58e", + ".git/objects/21/af6673533ad165968aefe1dca2b60ad925de54", + ".git/objects/21/b306fc70bd56f4366f7d6c2c3b02340d5ad874", + ".git/objects/21/b972a13735993fe16c8dbbdef6f9176e10fc58", + ".git/objects/21/c051c25fb7d34200adc8063d929b2667e20290", + ".git/objects/21/c322e78c624ddc92d4008ebdf03ede280170fe", + ".git/objects/21/c9eb639c3738404edf86f6aa8355b2832674d2", + ".git/objects/21/ca4b85e51c1152cb98beda4abb16cab0357800", + ".git/objects/21/fa680b7286f3fc4688b7fa8a60a4afa88518b7", + ".git/objects/21/fb7088f72224fb9b0e3e6c45f9b454038efa66", + ".git/objects/21/fcdb779676fc61d9d8e2d6eb8e0df3d282e705", + ".git/objects/22/13a9a4cb3bf55fdf5939a2cc5d86ffbe536eb1", + ".git/objects/22/178f3750afd5d0bc20e605801b9315dcc387e8", + ".git/objects/22/18bf97ebd19f8973d41d3ce248d7ccb8d96f53", + ".git/objects/22/2f92c4fe1cce9142a4a4693c3fe3e73ea626f9", + ".git/objects/22/4609bb92ef83ea150de5d7ba24b43c5220b2fc", + ".git/objects/22/4df383ea9315406f6e2165972abf8e1298b83a", + ".git/objects/22/58ea82d359007e5193726fc3ab363a557c0e4d", + ".git/objects/22/59c2811e088a0779b5a8e940402be3a5274d59", + ".git/objects/22/5b6c8f17f99b433b03daad51ac23ee8e3b1d99", + ".git/objects/22/68601052db878bd95490f9eac6f2b3ec8cfb87", + ".git/objects/22/9413edf0f8239957cd092dad30135f36bf109f", + ".git/objects/22/a9ba60cb3e98e1f071e28c10a84a9002e167be", + ".git/objects/22/bba7c00e190ddda7d093940af593ff8a24a00a", + ".git/objects/22/bef1778edcb0bafa18926eb7b6adf6cfcc72ae", + ".git/objects/22/c03728b032c72b6546051a35a51fa9a28cad26", + ".git/objects/22/c22b97d7941928f7b6fa1b7f22242e60c52e05", + ".git/objects/22/c33a5dc62bc4c8dc4ca1676b17f324abfc51f0", + ".git/objects/22/cb686129e78fb714d8aa9f804d9fbd7f9bb126", + ".git/objects/22/dbf5bbdafe47866f93dcd3f4acb3998fe4ceb1", + ".git/objects/23/058cdefe5beb5fe945eab596442dc641f12f53", + ".git/objects/23/06a02073c4649f4ed53351b0e7e8a9348df827", + ".git/objects/23/0995a1200c5d8c86ef7a2190909495f4c23a80", + ".git/objects/23/168109a2484c25a0d7eabb42782a536b81eedb", + ".git/objects/23/1e8600668f655596fe79fe34d7b3a59fd839c0", + ".git/objects/23/1f3d16dc60dcc4d734b187de2148d9162f9b39", + ".git/objects/23/24d14e905850a4a52fe2920871edbc2233e2c4", + ".git/objects/23/2504c8de01c594a5d83e11da1a0f048174fbc7", + ".git/objects/23/2d9501ebb9c0a45dbaf880548ea41fc19db7c8", + ".git/objects/23/3641307f44d6f18b80760b91a66cd42b085c0b", + ".git/objects/23/62dd2c59565f8a0f0a0d3bdfeac71572b72150", + ".git/objects/23/6d5788e00d0894475a7d76f0a3cdb09f64b87a", + ".git/objects/23/88bbd34fde24b28331546644bb73416b2e975e", + ".git/objects/23/8a83d001de70095606ba9e93ac89fdf5fbf85c", + ".git/objects/23/948c071f5a1e4fac0206c53e5d01a0bc481d5b", + ".git/objects/23/a56421b272ebd10b4e17b21378a99379412418", + ".git/objects/23/ba150cbcb039d656724fbb235d54aa71280386", + ".git/objects/23/c54390110d6a160293b2fb97126464447dc771", + ".git/objects/23/c661580e9eb7eff9e4020b5d159e5f37a2d7d2", + ".git/objects/23/cc21f7c908fb6255165d1b26db4d292c2078ff", + ".git/objects/23/d53ffc0fab071a4e898f473f38cc6b3469f6b8", + ".git/objects/23/dd3ad145d8e5e1f732d4dadde4676dc725af15", + ".git/objects/23/deec5e6535fc718a7171a00e0defc824df88eb", + ".git/objects/23/f486c06f4a483a0c3bb3ae6e3f6782ab506ece", + ".git/objects/24/0eb780e15fc7af89794a1e24c014eb14aead56", + ".git/objects/24/1137070581f9c84b01dd71ae2a0347882f4b95", + ".git/objects/24/2e2803b40936b0e3a1d0477023e8c1e272ad97", + ".git/objects/24/361fd0f80f5a6831af054126f1e5fd81e3e0f3", + ".git/objects/24/39b3efdef2d7eed0f6246c86a10caba4968811", + ".git/objects/24/433e3cb654417c90a6bb82b2c86b2701cc77eb", + ".git/objects/24/461cd02504e030528adf63a0aa71cceafa5371", + ".git/objects/24/4bd85ed7a00ef596ea677edbbfa65f8e4fdf51", + ".git/objects/24/73992be123977ffccc3e00b9303a1c74fbb354", + ".git/objects/24/74ade10ff4a64b8a5a6adb4cc1e5bef963a05c", + ".git/objects/24/77476e8ccf7e606dfc6a1d278dd949f11a6722", + ".git/objects/24/7cefaabdceddcf33c2939acbcfa7a53470db5e", + ".git/objects/24/7f7ccede5be5b348c77530ab2bfa0e3eb6809d", + ".git/objects/24/8e5790a0b5229b9447594e34179cd6dca449ee", + ".git/objects/24/baaab6df49044bc068d008c194b872648c18a4", + ".git/objects/24/ce1a146f335ef547a2dbb2ce7f87631d7ce9b7", + ".git/objects/24/d61fecf5d95bae43acf6922bd2155340efe6a4", + ".git/objects/24/d72f82fbbf6cb415409cb103558c55d4fb71fb", + ".git/objects/24/f1432d6aaaef8800be79bd70488f9368bdd4fc", + ".git/objects/24/fdd933b4b0df064625822bab8e889bcb2e12de", + ".git/objects/25/101c2c43a57cf3d003b7db83b6a00c4e8a4c5c", + ".git/objects/25/11a291ed021239a3cf5ac5941fb8fc33b8567d", + ".git/objects/25/146eba48a48c10b9349beac2768f9af7e5425e", + ".git/objects/25/189368034b6e2f46a67f61ec11d00ebf6cefbb", + ".git/objects/25/228e589f404ea9782a0baa692e3d38989fc911", + ".git/objects/25/265fdbca9d14fdc9eb30e6e3b578874d1ed30f", + ".git/objects/25/34ba12c99320b49c508932ca774882ba7281a6", + ".git/objects/25/3d41870088dcc24ff5b4b0c66ed5552d17afe5", + ".git/objects/25/47be07282ce149cc094d2918bf91b9ea05a10f", + ".git/objects/25/493e89e6e2d9bfdf398aa442866693ac3c2e16", + ".git/objects/25/5a017c5dd5079532be8349846c8292dcbf8aa5", + ".git/objects/25/6066b2095d4b14168316c2c0546e74e236c71c", + ".git/objects/25/60fd41c53220036e3969416aa3b0576e3f85a5", + ".git/objects/25/61f4ac7627de0319732d31e912c65a4572b543", + ".git/objects/25/72a4dafd6aeb1aeb1e30b66ecd665faad93143", + ".git/objects/25/a754324bced8f0ae7343ccc216ba619fab2a17", + ".git/objects/25/a9900609e6f9a2a153a7cce8b4a8e445752e6d", + ".git/objects/25/aedaf6e6a2a9bda45b850166f5a83411269fe1", + ".git/objects/25/b5024440439c5d76ffd413d0c04e08e3dbf06a", + ".git/objects/25/b773c4188e47c70fd6e33335a51485c38772f7", + ".git/objects/25/bae6dfa5320600c449fb6a7ec778e09623085f", + ".git/objects/25/e0f9c6aec109c80e24d91c39abb24b6b927981", + ".git/objects/25/e197bfcea907fc6b326e46ab348e7447382d8a", + ".git/objects/25/eaed9ac5edd1cf1464607a9e7111900d62abc6", + ".git/objects/25/efae553801a37331470afad8bef45a8f10c802", + ".git/objects/25/f972daa19c671d176a3768912e4513ddecc2e8", + ".git/objects/26/0d287b9b2795eb49adf9079f318ed69c765e5a", + ".git/objects/26/10c98ab87466918dcf903650ae3d7baa91ae2b", + ".git/objects/26/1ed1ed1d11bbe59fa0a632c6a85c0c08e6fcc3", + ".git/objects/26/4315aea8a9f3d9ca403347465e70c77689f061", + ".git/objects/26/46802bcb15ed68bec19f55ffbe687dadf8431e", + ".git/objects/26/4ac064dca07be6d8bbf927d0923eb538ee9541", + ".git/objects/26/5b04e2d044828674d3e0c729310180e0ddb823", + ".git/objects/26/5bfa499c8101f05b72b80f868ac55435a7c535", + ".git/objects/26/5ffba6b270507e5dd1efab84d4415a8b3215b3", + ".git/objects/26/623358f168ead8283f3949a7e6a35f6c60477c", + ".git/objects/26/65f9501012a0828221d62b4ac727170c407b09", + ".git/objects/26/688f22c661ffa71f904746d9f7f0d501173e59", + ".git/objects/26/6895e955209fe995b293c866ec13fb33282b08", + ".git/objects/26/70566d20e026473392d3616152210e83c8cc00", + ".git/objects/26/972ffbe610c91a9bed543d889be698a9e16208", + ".git/objects/26/9a02250b76f1042e5d3a2d87ff63f1c8d061f5", + ".git/objects/26/9e3789b8bd6164d80362a00c980639f74db05c", + ".git/objects/26/adecb7d8cbb148b5f85fb638cd8b090e1d3dce", + ".git/objects/26/b31342d71cc0a5b98c6b5106486c110259fcd4", + ".git/objects/26/b418ce742ce4c243e4f1cc6d8d02d5a4c75a0c", + ".git/objects/26/c39a0d16d8fddc82a18024391063a0237730b9", + ".git/objects/26/c40df9c4b2829d1bd89bd3c6c25c2a6f13235b", + ".git/objects/26/d63a7c73586395aeb42b358a6a41759beee13a", + ".git/objects/26/dafd84b62af0039313d4bafb7e5e4d6444ac8a", + ".git/objects/26/f8fb069877fcabf2f396d5e6325c83560887c9", + ".git/objects/26/fd488d7db6a8e43abe84715a674f61b67e1c2e", + ".git/objects/27/0563891f84b8d5d239fbd61b8376588d5f53be", + ".git/objects/27/1bd75d353dff1c3fc6c2beeaae866cd111afdb", + ".git/objects/27/272607e7b37f3b08df3d65ebacfe4040eabab3", + ".git/objects/27/357a3ac9957131b01199ca2274850810b76659", + ".git/objects/27/362678737b70aec9a1c5d6a44fa50f74750ca2", + ".git/objects/27/3762534dd8cf5ec3eef5b910ff77b31cc36aa4", + ".git/objects/27/3b097f3431e8f743ff31b567828eb1956d8eb4", + ".git/objects/27/425d045600bf2f18226b8d2a59bd71e61fdc77", + ".git/objects/27/451e7c5571eda0ed9394571fc1b7b4830caaba", + ".git/objects/27/597267e7c66f102f5b2b029880ac79e307a6ae", + ".git/objects/27/5c9b082e6ff31b3e64980f29250d94b4330a5f", + ".git/objects/27/5d32c194c9b32ff08166bb4e1be2ddb340d11c", + ".git/objects/27/5e8b1611677aa253d986947b36930719d624ec", + ".git/objects/27/62eb192cb92d71eebfb1631af420a30556e402", + ".git/objects/27/6471a11b2c1a503ed5dbccd01d62877b1263ae", + ".git/objects/27/7399d239e743e0332932d6376308a43c207fd4", + ".git/objects/27/7cb15a08b41cf214975637d98611875a547f1e", + ".git/objects/27/86398889f1ccefe908c9cff1ee67f37f665faf", + ".git/objects/27/8a06118bde490f43de49f13ef53427892da29e", + ".git/objects/27/8a2e1ce965976352081d6e5cbf07a76ca6fcc2", + ".git/objects/27/8c89528e521dc76d0d7db9b040e531b2991b7b", + ".git/objects/27/a947fe335e956f3bbd1af0315cbff84287a330", + ".git/objects/27/ae2268de38ebaac2c2dfedb13355b7bd85c3e0", + ".git/objects/27/b043af0e9a644fb9f1c88fb3c0494b832f15f8", + ".git/objects/27/c7a51b4481d9cb2994e36371d7c3f8943ec970", + ".git/objects/27/db1a55ced4855e7fe3c3df2964870b41fe2ae5", + ".git/objects/27/dd3260435412ad5b4dfe60820a57233a002a59", + ".git/objects/27/f1c9e49571d1e26567ae556f164d73ed7947c5", + ".git/objects/28/04b30af7fe3ba5e45f8e9275b6099267435f31", + ".git/objects/28/21e991c28c044008cb89312ca92a149355d504", + ".git/objects/28/251f4a11274337e0811740e0dadf26b88b75a4", + ".git/objects/28/27c565b7463a208bcd7cb3a23556e80af0d0f1", + ".git/objects/28/2e8c0d8b21792f15f059bb4a7fcd76b962ea6a", + ".git/objects/28/32317d35384dac4e66ab476faf25a46e0dfcf4", + ".git/objects/28/34e4ab752d67ebd345b372eef03999afe935b7", + ".git/objects/28/429f4f68a7f2ee406d4f459250e71f6974bda5", + ".git/objects/28/4e9befa17ce21306176163d80284381e3eda8c", + ".git/objects/28/54c6bcad05a9ec5790c246b5118574ac6a837d", + ".git/objects/28/5e80995deb04e054cb70b5b10a816784a62935", + ".git/objects/28/64335b02d2b06c80a6be194624d729f1b9df0f", + ".git/objects/28/6687b697f26d5d1c007eb051d9746bd0b0bb62", + ".git/objects/28/78ab833fa7a69acd60446fd5557248a3c674df", + ".git/objects/28/7ee9a3c4f95630f4fbe277d12ee90225d5484d", + ".git/objects/28/99b9d5c866449884a12fb3d07a188df14cb47e", + ".git/objects/28/a09adfd3e8140f993bf07f64e3cf11c8c086fc", + ".git/objects/28/a2a4e3156889d6e769d356a30089c89fe7481b", + ".git/objects/28/b22fe87a29d71c64e978080f5e0142d34d4dcd", + ".git/objects/28/be0c9d7c66d28496d0399ef71d6ce17ed6afe8", + ".git/objects/28/cd352524d9e74b864f239ea2df6850357aa02a", + ".git/objects/28/e98ca49ff11713d6624a84e3499af0d95907ab", + ".git/objects/28/eb20b252472ddd5e925effe2a981adb118b720", + ".git/objects/28/fc6066a6fff15479024a09d7a164a48269c42a", + ".git/objects/29/11c42b00b85f638149e5d4b364c9cf2bdd3715", + ".git/objects/29/1742fd72ce43aa9756724246ddb4188d00eb1c", + ".git/objects/29/1984c5df68259b1b0cb2e2928fef4dfd1d8b63", + ".git/objects/29/20109e0a73af9f8d4abddc20c59dd4f44e5eaa", + ".git/objects/29/20e75d942d6fd812ceff7c4d02f7e83ef78de0", + ".git/objects/29/27d2912f9a465549ab6e8f7c795787af5fc0a9", + ".git/objects/29/294a222dd301a5c1e09f5fce5430adfc495ed5", + ".git/objects/29/364e57660e23774099b5cee0bd21434dffb198", + ".git/objects/29/3cf982c0dacc9ffd32839eefe9dbf387ea9334", + ".git/objects/29/3d152f9d8b30222392b677a927ae99157de888", + ".git/objects/29/5244276f82f6730467686f310bace7ffb5c8f3", + ".git/objects/29/82f0f9fbc21a85c2982e03a3118915fe9cd086", + ".git/objects/29/8b901f0aad508827dbe105689ef09e6afcaa4f", + ".git/objects/29/9556c7ab581f2c9d8bce927b502c5ce2b28bb7", + ".git/objects/29/988651069785a9ff8c964dc0f49c590dd33fdb", + ".git/objects/29/a72ffc8b92d473eefcab585a1d6fad21944b67", + ".git/objects/29/b05ad45d9f215a317d0680a697d1dea987c458", + ".git/objects/29/b07580b89f5a01be270f1c4d8ed336ed64105e", + ".git/objects/29/b5b6e81f77378b3de8ff7fa4e1d76462b2a5ee", + ".git/objects/29/bc388931089ba095621d785d122175c67fbd4d", + ".git/objects/29/c412a6fc4268cbbd4f8ec9b312fa0a9a987742", + ".git/objects/29/c96a216dea759fe6a80bee05c4799520bfe618", + ".git/objects/29/d6b9bfa03bfb41b693cab0ddf6eec3b7e092b8", + ".git/objects/29/e57ac2473730368e97b35f99a6840a8abd2208", + ".git/objects/29/e85572d0d118b089072c76e16d8a2c8b9ae24d", + ".git/objects/29/f7feb53eb2e462e672e7960f99e55a6276df31", + ".git/objects/29/ffb68e8b44946eaab4b5ce90c1faf1f73e2b40", + ".git/objects/2a/0c75a01d36298b314f4edce817ac94da823a41", + ".git/objects/2a/0d034f29bc93a8c5f045a3456ba49a7a23a6f8", + ".git/objects/2a/1d35205e65765448b60952cef172f7fc9fd185", + ".git/objects/2a/1dedcc70e1b7b46de8107f0be830fc199d6a24", + ".git/objects/2a/209aa89c543a030c29424d40019825814920b7", + ".git/objects/2a/32b2f59ef616b34b5c4c128c86bd26f7b8dfc4", + ".git/objects/2a/33d199ff4dcaf189ac2cab081af7ced4fefcc7", + ".git/objects/2a/430746a4d2fb9ed2ae551a53a6fb6f0408888b", + ".git/objects/2a/554dcbd81510bf5ed6440fb967fea723231bc0", + ".git/objects/2a/560a4046f07017868566abda4581d7e8ee80e2", + ".git/objects/2a/614061ce774003181aa17f2fe922a7dc1a8df9", + ".git/objects/2a/7858b16d9dbf17e52102fe6d9c89c579071103", + ".git/objects/2a/86f2bab881f3c0018e214d23c1ad47bf102445", + ".git/objects/2a/8f83883a58904943be9f925b13b7d2133e2983", + ".git/objects/2a/93e11f90dd59b38108e70fa521bb8994631515", + ".git/objects/2a/9e8337d48207237442453f55c7b649e901446a", + ".git/objects/2a/a442dedfb84b44b841ded16897e0938e465326", + ".git/objects/2a/aa39177a2f061307d3fb536738bb6e382a252b", + ".git/objects/2a/abee75498c0c8f20d3dfa7f3205b8ac47f7fce", + ".git/objects/2a/ac8de135bdb643f276493aaac4d7cdb5f4469c", + ".git/objects/2a/b39f3769dce284fe507864beb8539c7b90ffb4", + ".git/objects/2a/d0eb543929d8772d656745e8539dbde8de1e1f", + ".git/objects/2a/d28ab1306fb581adef74ca82d6e6cd4e51e870", + ".git/objects/2a/d298a959b094f7ade4b9717916d74da0d84484", + ".git/objects/2a/d321655f1eca9894d011aafe42712999cad45d", + ".git/objects/2a/e3f9a76e35e10d67e4cec762ac9f1320c120aa", + ".git/objects/2a/e43b0f1e66f12f6535a28d817d7ef9c45c5191", + ".git/objects/2a/e6b4d50c03c0473e46a15581e8791e050c8f37", + ".git/objects/2a/ed1b53920cfffc454abb01351d41aab197942d", + ".git/objects/2a/fc195bea7082b1b444ddadb0c341fed178f807", + ".git/objects/2b/0005a8a823894c9a2d1f4f2990b5e3f29abd90", + ".git/objects/2b/1c0f7a9a8ab2b5796781939a8312355b18b73d", + ".git/objects/2b/354746fc2e8efd0bb8c3c92662e78552cad65b", + ".git/objects/2b/35c1c3f48ea6818cfb28e52003873481d44e2f", + ".git/objects/2b/43f8b8163357a3072b68eb8343081a168b6577", + ".git/objects/2b/4718217b533c007cb9c828cc1c40de63b03609", + ".git/objects/2b/535c7fbac6ed63257d33e58298c2e43492c0ea", + ".git/objects/2b/562b2850194d9dad53d64858207090291cb4cf", + ".git/objects/2b/699216539649afcfbfa9a9bae5890cc515478a", + ".git/objects/2b/6b19ee516b5828e648766b5f80308c6f33e096", + ".git/objects/2b/6bc18e2082a45c7e7a956008075b85854a3667", + ".git/objects/2b/7f41dc5e0444793c1c082ad8589b6863939aeb", + ".git/objects/2b/830e1c2eb1f3459a65994230c413df04464771", + ".git/objects/2b/83eecaeb747d52dd000667d8bf142b61908a7c", + ".git/objects/2b/87cc2ce56021fd1c18f08a10c4c87545bc8824", + ".git/objects/2b/a131c53f6ee08a6acef630b30992b634ee4d2a", + ".git/objects/2b/a135af32aaf197f8bba902cc478a562b50c579", + ".git/objects/2b/a4056be7f3fdff6f269940f30d1ddf0f9ad794", + ".git/objects/2b/af4b9cb676552076262018002660e41446c4d2", + ".git/objects/2b/b5921fdace1e557390242a8282bd93fc042a73", + ".git/objects/2b/b667bd822c592a372ed7d03baea21b19194f74", + ".git/objects/2b/b81607c4a4de1c3bf7c052740b56d20498fea5", + ".git/objects/2b/bc2bf49efafc46d76e45f8863e06ba9d3baa42", + ".git/objects/2b/bc4453539f54fd68573adc57859fc508181633", + ".git/objects/2b/bf47d5d82010f9ade303738ddc2109372977d4", + ".git/objects/2b/c0a98e7117400f3d331f2d4b320d877f4e5748", + ".git/objects/2b/c25ae3785f759fe2f2e965f1ed31c34d006a5b", + ".git/objects/2b/c420642f7b848a4a61af041bfefd37c59be2d9", + ".git/objects/2b/c6d192ef45210f9622c3f3afaa77627ba2e0fc", + ".git/objects/2b/ca6914bcea67474317348758d8f06dbbf02516", + ".git/objects/2b/d5f071c1c4df074b44cd45419397d5d74c5505", + ".git/objects/2b/d9921fa2d57963bb981b080bffc5a07a9b6263", + ".git/objects/2b/e6308e4198e01ed5386466cf080a32f4231553", + ".git/objects/2b/f4d792f46e9385e54093f1b32461b2b6f53b79", + ".git/objects/2b/f7f259d18f3a6f83411d44669ad1fab9bd90a2", + ".git/objects/2c/0a01d2461f591b34de6a595d6f209909680a32", + ".git/objects/2c/0a38fbfb41be4b4aeed431990e13ad34ecca52", + ".git/objects/2c/10ed7941e63179b76d15e311c20a4588647720", + ".git/objects/2c/1d668db4ef6e423796cfd03b270aca311bff2d", + ".git/objects/2c/29d4808cd5aede031e6fd08d23c45aa6c19c00", + ".git/objects/2c/2eaa9a0f1b8d7207b60e5cb747ae4bf85bcdde", + ".git/objects/2c/372c4980220db160b8754c054ecec79061834d", + ".git/objects/2c/4bc936c98a17ea6927fd5d3507cc669e91c559", + ".git/objects/2c/6b96a6d2cb53d51a19a5a3661a457e6d0a409f", + ".git/objects/2c/6febdc7b4fc063b4a2849f96e025fda57297fd", + ".git/objects/2c/70660fd9c980629d642420357253ebf3300952", + ".git/objects/2c/74a580412116d71a964367808c8ea2f57c57c3", + ".git/objects/2c/7adcb39c036154a2fbf17868b8c5cbb8874fbc", + ".git/objects/2c/7b9dc632eea249e5c831232dd4459e1196b0b5", + ".git/objects/2c/7fa1efd5bf71b86592f39d93c9d1607744781d", + ".git/objects/2c/83e173c4e2a15bd741df15165b496f27ffd0ea", + ".git/objects/2c/84fd1250bb6fcbdc46bc66c5a2af30a73f2283", + ".git/objects/2c/86a6dc37fd32b86aeb8e7338a13f944de6c8f7", + ".git/objects/2c/ab31cc6892275d411bb386d0fd9443d986fae0", + ".git/objects/2c/ae63fe6600e78aa96b51c0c67c06f68c4d4a1a", + ".git/objects/2c/bd7bfc0f60f7a11fafe116abe47b06aedcc3f7", + ".git/objects/2c/c018e9011b1f04ba10f909dd01fdff2fd3a8f4", + ".git/objects/2c/c7b37c830233027dd317a446144c3ad813c5c2", + ".git/objects/2c/d30b26d54db369bb2036f0670eb4f52e9ad875", + ".git/objects/2c/dc45821d29d05a97718c7d4de73bcb34cbff49", + ".git/objects/2c/f546859964657337ca899b24d4d0fd19fbeda5", + ".git/objects/2c/f91accc93fc6cb7fb960a0830464eb5ac09499", + ".git/objects/2d/0029e03928a62080d80d68de6914f6ed0c5ce3", + ".git/objects/2d/0c783f52a0f5e1bbe367bec85059f760811e43", + ".git/objects/2d/1aa429037acfdb432458c0d75ef0c8e8dc81a4", + ".git/objects/2d/2e2838ca9c969fb733b2d762cd9e5c000722da", + ".git/objects/2d/3feae879335b893446be4ee2e3c52902547080", + ".git/objects/2d/4d6eb796298e0cb7e483a9dd1f56adca1a6dc3", + ".git/objects/2d/59c7e1d8e67432cc4eea38b581d39ccccc8711", + ".git/objects/2d/7cb5ff9962d61c7e6c696ae6c328af0ca7a495", + ".git/objects/2d/7d81aa8c8b32a16a4650e14d96c188c85f3b20", + ".git/objects/2d/7fceb4a2e360523e35c4dfb9c5b67418d04878", + ".git/objects/2d/86b65a7a2b227509603174b8f905e3098305a5", + ".git/objects/2d/ecc89d4a17d1aa84551f06907bb12378f48312", + ".git/objects/2e/03826ea7b50e5eee0b54cc818d48db934919e1", + ".git/objects/2e/08d6c6a216d14e987daeedb8b4e4532bce1a81", + ".git/objects/2e/0faa301fab59546ba757a97038b2d687dc0392", + ".git/objects/2e/14582125dc91e342171ec89fc7161cc554a85d", + ".git/objects/2e/161a9cc1141ffbfabf16c07ef1e16f6075d8b0", + ".git/objects/2e/1b58d5a6ac5d6e27c230309f080e07edd9a838", + ".git/objects/2e/1ea27286103142f70bc8b7e0e7c974c8e62c8f", + ".git/objects/2e/268a046ac63c3d6b33f98ba4adfc585aa3e127", + ".git/objects/2e/460ca418a0a85f2fe946df5f3abeb6e4e64bed", + ".git/objects/2e/50419fc20e2c04d6de16d0bfe592265ce6f357", + ".git/objects/2e/5c4f4ab6597f9d2e3e21a41f92addc01cd4a0a", + ".git/objects/2e/616dc4b3253b040c6e05456ca8064cf936b0b9", + ".git/objects/2e/72a15dcbaa831da25efdb0442b1338650b7571", + ".git/objects/2e/aa4cf509067b93b4ae13a73042cc157972468b", + ".git/objects/2e/ac21864c489ffb4a22cfa59020e4753ee799e1", + ".git/objects/2e/ac43375867d7dcafc6592f6a853b68977f301d", + ".git/objects/2e/b21c68542881bed0c218d25fb33078603e8947", + ".git/objects/2e/b502caded77d43996ceed94594cb7a3eef2039", + ".git/objects/2e/da0f226143f8dd7551b3cfc9568a847e0012c6", + ".git/objects/2e/e03ed7572fc1cc665ee6d917d032d4f6330fc2", + ".git/objects/2e/f208e6ab3395155b6ee13dd92e03a4c4b43072", + ".git/objects/2f/06dc7963e4147f35844d3a1fada2169d83f972", + ".git/objects/2f/14667883cd92fba5139c0229a828e76484df5f", + ".git/objects/2f/2a414c5748702aafeccac7592f12a01f3432ec", + ".git/objects/2f/2d16abec5e5097666dd981453b2a4cee2ef33e", + ".git/objects/2f/30ac6e95e43349c8d4f0f5b6b7e18df3a9e5f5", + ".git/objects/2f/4b3979c883ab06789cd92f6d37a2074d8b51bb", + ".git/objects/2f/4f999bdf277a695e0d4a3adf63eab3e918dc3b", + ".git/objects/2f/5473faaf700d6aa7c9d721aefffc117069b260", + ".git/objects/2f/5dd7a3a9abe77180a72c99a770b5f79aa13df0", + ".git/objects/2f/692525051d49c92d2548e1339365611e8b77af", + ".git/objects/2f/6957816a8c733d354203ddd522d8b07a335b60", + ".git/objects/2f/78895ef1939102e414f68974466e7252035964", + ".git/objects/2f/926a91270e3324097de59562ad9e447328a430", + ".git/objects/2f/928a200b2c5bfe8be5e223d9d9a72062acc4af", + ".git/objects/2f/99aecafda69491316f6c07735900ec420aa2af", + ".git/objects/2f/9a4f848739b45e16ee3aad3141800dafb0fcb1", + ".git/objects/2f/a63f02ef12c44c58df31aa81deabc67cc3ed57", + ".git/objects/2f/a8988660ed2ec1e34ae0aa43653d402c3dc5f2", + ".git/objects/2f/bd464413a887df5e348afbb830480263be9520", + ".git/objects/2f/ca62a6d7a32be3600d438f17bbffee7cb1f1ce", + ".git/objects/2f/f98c8348cc2b36fef97fa3158bd6ec581643c1", + ".git/objects/30/14b3019bf08c8fff76243c0079fc3169324929", + ".git/objects/30/1a7c1d72d713d017890fd96e67884e4c0903f7", + ".git/objects/30/1f5ab596312585991593169f739ca9bd2428f5", + ".git/objects/30/235bbaea45c08fa503637e2b5ed2aaeb081cdf", + ".git/objects/30/236bc27dcadf3af7db8f7c8cf486b52b1fd7d0", + ".git/objects/30/25c3aeb4891fb815d792cd94660cd002d9b1e2", + ".git/objects/30/3ecd1529ceaa5b7d5792202eed7723bdfe3d3b", + ".git/objects/30/4116b5a8140c16f0294964e8841f1cc1ce86af", + ".git/objects/30/4afe335e92f883952fdca3c2a35e15d10b5482", + ".git/objects/30/4f464cbf9dbc2306639b4d92baf3caa4dfcfde", + ".git/objects/30/738c9755d9b5c05a5c2038f1daf5c1ffff61ab", + ".git/objects/30/7a5f95d32cabff5e5d2ea9072cc64bb2f9bc5c", + ".git/objects/30/8cf9316f1ea6a2a88c0f179f66af902ba1db5f", + ".git/objects/30/8ff885e3271dfff9d650dda3f3c4c8730987fa", + ".git/objects/30/c5a20edfa0acda89edd0bc24fc6530e84def75", + ".git/objects/30/d9a6ef30617c46f5364fe8ea35a18f6c5b943e", + ".git/objects/30/f33f5f1a835a6690f567cc4d837599cd11e216", + ".git/objects/31/03d8a28e6289e6494b3509df7408e08033aa78", + ".git/objects/31/0a018afee47f759e95077eaf70e07aa61ccaa6", + ".git/objects/31/0e3f902ba307f626f4874d56a8e0ac2b6d1d7b", + ".git/objects/31/18c456be06574b5e4745e5d169d08111f95d2f", + ".git/objects/31/1a8a224d0293ae784901ecbc57f772f96fac44", + ".git/objects/31/2137c2a2df31c66ec4e1cc1e6d64e2496a33d4", + ".git/objects/31/2dca1eac394bdde2a73a9e685b83f8497a84f1", + ".git/objects/31/6145a17b9efeac917152726331244c183f9828", + ".git/objects/31/7aede73ae23fb94e0ca7254ba4b6ea81e8a00d", + ".git/objects/31/8405ffdf613b586f788db7fe5ac794c607e4cb", + ".git/objects/31/967526ace70aef1fc00fa317ec749fabfe9481", + ".git/objects/31/970a9a903f65308c6bd576ecf93365bca409f6", + ".git/objects/31/a3f6aae188779fef617ca020b207ce7e7ded6f", + ".git/objects/31/a8f5ccf2c9c067152d7d534688b850167a24eb", + ".git/objects/31/beeaab4286afc19a76e94e6c3bc1200e274a10", + ".git/objects/31/c9f686006354ea22057693b5549aacaa8188ae", + ".git/objects/31/d6b259f9b7c301a46356711a5b0c39a841392f", + ".git/objects/31/e5596b1c5912fb631ea5c52e29d1bf6a45c7af", + ".git/objects/32/014a5d77615a26e15b31fabe574f282b2bac17", + ".git/objects/32/030c101a82afaa6b256152ecd8d10bae9749ba", + ".git/objects/32/1c7f6cc798dc650f397924f1a09a1e9312eac5", + ".git/objects/32/22e44afcc7e5e0e181d1b127dfedcb4f295ef9", + ".git/objects/32/29ebe1c94240e048f6292e73841a1f344de8f9", + ".git/objects/32/2c45b158e8e1c6cbf4ecd3030c79a382bfc9ed", + ".git/objects/32/304efbca8dec1150902a34c37ba08d2353d291", + ".git/objects/32/42e72e7be83a399f653cc0e3d80c085dd554cc", + ".git/objects/32/485305575adc9db97cd430f163486d7bd8906d", + ".git/objects/32/511bf1bfd27758b0355c9bf266e706084ec97d", + ".git/objects/32/51a0e07422fa475ff5b6d76663dc3c00fe7d4b", + ".git/objects/32/6284896e048189b3946468baf99e48bbeea925", + ".git/objects/32/6b903d1ed7d92e91f52323583d7c897b87bf92", + ".git/objects/32/7b89dd5f0b353e5e95f9af3c37688e272792be", + ".git/objects/32/7f18cbbed2963d493af16265beb249bbc1e9c9", + ".git/objects/32/8941aa544fdcc34f8bee46b37b10d5a925bad4", + ".git/objects/32/94a667a948d505f778fd572df5f75ec6a161b1", + ".git/objects/32/9e3378510911d2c55c2ca09eab56e6d1697c98", + ".git/objects/32/9f940b3843ba589c9548b50ccc5b97d9b29171", + ".git/objects/32/b2f735c414e6f118f819f876c07ae717ab0d05", + ".git/objects/32/bb67fd8e2c1298df9f025a953366b735037a54", + ".git/objects/32/c336ef4b029edac14fc3f505b9b51262b98eea", + ".git/objects/32/cd8555b17f09e4f29f2d686dad520829da4bdb", + ".git/objects/32/d48707a41623279d47d287e0e7e1b0f7ba55fa", + ".git/objects/32/dee7f66e49e448b845fe30aea67f83765c8e2c", + ".git/objects/32/e036f0c066898bbd872ec4d3e12b9dcd29121a", + ".git/objects/32/ef9b90131f89ac5d56eecb020958ca6ce10f6c", + ".git/objects/32/f00b3f907a541a1aa81af7216aac4ec188a974", + ".git/objects/32/f08557e3b31df01dd1c3413cd26a064c010513", + ".git/objects/32/f553eb00f7e278f1c6250ef7bcd98f917dfe8f", + ".git/objects/32/fcdf73b94ce8b3d82563b358bb89a4a75998f6", + ".git/objects/32/fe25a871cb7ba6953c61f496bfdd3979f84b31", + ".git/objects/33/05363a96b0f387d49d1d50879e06e3863128ab", + ".git/objects/33/0b7c22feb9ca82a64aeb873ca65b4aa8090085", + ".git/objects/33/14cbf802fff0fa8882220995ee968b263b0c37", + ".git/objects/33/273d762f46c5ca3f1520cf9a85ee0459432cb8", + ".git/objects/33/278a2f36ad241bc82dff9c4b29919180d50215", + ".git/objects/33/2981f5806ec0872c603b5d40722fa612050ad4", + ".git/objects/33/2bafbe236c70381d24a7ec07d8139203bfe139", + ".git/objects/33/3786ee94f624c2f91a9d0f7ae567fc9c9dec76", + ".git/objects/33/3f0ab71267435ac61d408fac3da3d6ccb1c7d5", + ".git/objects/33/42254f5192bb95a74233f62c0026f3470c2182", + ".git/objects/33/5823ab7e7ad7d1c60697d9dc9e943ae58c38f2", + ".git/objects/33/63093adb632ebd6f6cb3a8f0ac4243f20e9067", + ".git/objects/33/6a97c2645b64477cd456534ffe957c5ac9a289", + ".git/objects/33/77d2c4517c8d14c5827286488f8b995fb74c69", + ".git/objects/33/7aa19285afa7f84b951a61c243245007261d6b", + ".git/objects/33/7db720b8480c41c5557e9a898ffeb428a016c6", + ".git/objects/33/8aad19e87be67b7ecd4d086d316e59a6898de1", + ".git/objects/33/8d0ad4bec9dd2bc56d32e355cb3918ec0af609", + ".git/objects/33/9b6253fc8d9e665f4c716919a319a8339f19ed", + ".git/objects/33/a6cb8b5402e48838560fc429eedc4e2aab7547", + ".git/objects/33/ad5b64d339f04a24d138d3820b2cfa9d58f683", + ".git/objects/33/b80489f48c8964107fd55a44e5cadff4c72c8c", + ".git/objects/33/b9eb3b477c0112fba07e9fd45764e7cd556820", + ".git/objects/33/bafe5c29f5c25a35f93eb126a989bceb7217ea", + ".git/objects/33/c6c80a8c50f7609badc8a2e89b2c3f6c099949", + ".git/objects/33/cf42f9779bfb291b27349e27b78bc6904c51bc", + ".git/objects/33/d2194d956bbe73027f0cec67355b049e3cd60c", + ".git/objects/33/dc37f36fc6b298ad24a8f9dd5c02c55285b3c3", + ".git/objects/33/e3f11eee008ec63ebfff5a37e53f76b1a67316", + ".git/objects/33/f0dacee53a92ec28112b128d6948777b2e70e6", + ".git/objects/34/1d128cb4541d5851740fd18e058ded51ad9c78", + ".git/objects/34/1eea49720b8fe4ef95869366e05b418a242652", + ".git/objects/34/21a306f2729d4dc43ecfadac82efc367df81c7", + ".git/objects/34/2ad645b35e59054af62b527b8f8e22bb3c0553", + ".git/objects/34/31f04d400387e3999ba60c124150bbdbccf830", + ".git/objects/34/386cfe053c9c709c8e90a919302d19c8acb1da", + ".git/objects/34/3d26c0d9cca06adf118e3363b341cc7cdecbb9", + ".git/objects/34/3d3974ac4a3b98419870126a194dd543208044", + ".git/objects/34/5db80147dd4580260bbbfcc2d4a8159d8fe908", + ".git/objects/34/76dec6dc1c912dc1d5098a329cf59fd8f443d7", + ".git/objects/34/7e20287a5e8b758f1798cc85bf9a5ebbf0213e", + ".git/objects/34/82affbe5785ff657640781fb83621a61f27a1a", + ".git/objects/34/8d14fce1c9763b27b09a0f0a342c2f046b019c", + ".git/objects/34/a01fff0b5138da6265eab075b3de9ad171878a", + ".git/objects/34/a4e77caf94f497ab9b4d168d074de5d7c0f248", + ".git/objects/34/af67ff18883b5721619384b4ed56bd1a4c684a", + ".git/objects/34/b48fb09c2f7ffe53db20b14f4de7b5bf1a869c", + ".git/objects/34/b5c3b4e7001f6c11e6cbc9f58d5a4a78a98fee", + ".git/objects/34/bd8a0815f0d4b083a3cdde593cf3b4211bee99", + ".git/objects/34/c0f6a33160a815a20436d91f60b7137e25161e", + ".git/objects/34/c2cc8d44b36e880382ca1397cfad0dcdb0e738", + ".git/objects/34/db9deae47b234350e96fd94607c92118b65654", + ".git/objects/34/ed9b607ad338ea1c2cfd73f04bb218d9eb1d2e", + ".git/objects/34/f15402c87f65aa926924e493d35aeaf26ba59f", + ".git/objects/34/f300a09c329bac2a2fc410878970deb60b7cd3", + ".git/objects/34/fc410303aea9dfdc046efcc4d1f80f66d30c51", + ".git/objects/34/fee5dc78bd8f874eeb9a6edb457eb6e2260ba7", + ".git/objects/35/042321c480359dd5e6ed803d4088f65161c276", + ".git/objects/35/2159d351066648a50ac7c9ba1cc311f2bb414b", + ".git/objects/35/2270daec450c3cc3422acbd9379a5491843d21", + ".git/objects/35/2923e4ef5600aff077ae7e8caeafe7c900c2b3", + ".git/objects/35/2978b65e19886116d1201e9978c4df1e29ebf6", + ".git/objects/35/310512bc772600239d1ffb59352d2f696d4264", + ".git/objects/35/3e31811fa743ad08fa672aa3e218679b81d375", + ".git/objects/35/52ca05e480aff3808015fbfdc522f7a848997c", + ".git/objects/35/6232e3416ef087b98d14ff8093889906e15dcb", + ".git/objects/35/7d090230c5b090749d26033a0ee525baba2521", + ".git/objects/35/870f2e5096ffe15fee7914137c6812cff48fff", + ".git/objects/35/a5833afdbfef4f43b00a809355f23b231dfa56", + ".git/objects/35/a7040650072a5d9cad9827e9623d61859a7424", + ".git/objects/35/b3733bc976c0a6bb2fccb327aec1136eb67eac", + ".git/objects/35/b5a298f6098837bec4e907aebbcf1e748bfbb5", + ".git/objects/35/b90c86940fa09d3784ef21e6fb3262bf3b7008", + ".git/objects/35/b9b7ca467ab48edba53e78a6abe3bbe3ecb9f2", + ".git/objects/35/c9c0f7ab7943726f469db6ebf18b785fc2239c", + ".git/objects/35/d57aa5103f979c2a64f1dccd2df61996598143", + ".git/objects/35/d9a66c37caacf5d4d73a6672f85f4d6f523deb", + ".git/objects/35/e65b33361f934b43f957180454eae58c5f789f", + ".git/objects/35/ed2868663e77b2983ee1f7e9c8f6dc8f552627", + ".git/objects/35/fb4f312bc9255124a1d8d3600bb9cdfdec51c3", + ".git/objects/35/fd5d435a62b0f1392183b03d10bf857e4ca772", + ".git/objects/35/ffe478b299eef1e294829e3aa9758595017fda", + ".git/objects/36/1c822bfe5efb19494ef2b571ce340aa78073ac", + ".git/objects/36/2d2c99ad3dd85396578a44307746b93dc855c9", + ".git/objects/36/5518966662f498958d178b6e3c7aa64fc6daa7", + ".git/objects/36/6297a106060793df78ed832021342b34ef9f1a", + ".git/objects/36/745a75a89b9f3cd6223e938f6018c172bca482", + ".git/objects/36/7ad12758e6e8c593f34bff37076fcc214ca416", + ".git/objects/36/8202d8937217c8ffac26866217b13b063acc92", + ".git/objects/36/93bfb1bc57795f4b42a710caba4028f209bba9", + ".git/objects/36/99a2f2fca09f5fb308a728207431dd7f92a2df", + ".git/objects/36/a33fd8ba59aa671b5fad7e9f23f795a73d68ba", + ".git/objects/36/b4e01de766fd515028a8da2f7d71c7791099b0", + ".git/objects/36/b729e9fb25c255256b1beb76270fea5d8edd49", + ".git/objects/36/be0b28aacf652c03a5ebdbc33135c48b4515b0", + ".git/objects/36/c9da406dc82b5e5b41a1ad47bc28ef15bf74d0", + ".git/objects/36/d686e5f93354e5acd966e2eb7549207f13d7bf", + ".git/objects/36/ec52f575af793e913fefe7e35b0cbfb26c72b4", + ".git/objects/36/f8c06c7c5b1a7edefd89e40c442fd66d807ce5", + ".git/objects/37/0ded2a6cfcacffb4514e8f40eae59580726943", + ".git/objects/37/18211d115cd6a3cb79e0427a7f183b2418bbfa", + ".git/objects/37/1dc878783f0c86eec5173ee94186570c9328cc", + ".git/objects/37/1f09f2ef8477480c53a3abd850fab309021634", + ".git/objects/37/3ad125bca5f566ff6ff27a8740bef496fd42e1", + ".git/objects/37/4955b535dfce2d67d60da8a9d2fc806cd40f90", + ".git/objects/37/4dbade44741fff7d066c998e75d9d0d86e0964", + ".git/objects/37/4e3e841eb0f6bcd78b416604f49c67afa5eb85", + ".git/objects/37/5178b358b2fcdadf29837ea1739daf652cbd6a", + ".git/objects/37/5312c1191699c1083ac15edcb7b248110712eb", + ".git/objects/37/5c42a164458cc9663a594c38c0901d1f96d777", + ".git/objects/37/6acfc32ece8d1be64e6e22f2222c5720727be7", + ".git/objects/37/71ad2357afd1b70764f708ed31691ab4af919d", + ".git/objects/37/7257099a1bb8deba8875c6035b6ee1dafc6a75", + ".git/objects/37/726a399e1edc8d8827a6817d722340a5a5bd37", + ".git/objects/37/86bcd85be5cf023b08e8531311d33d40a2f87f", + ".git/objects/37/86db592408f6b95a7c9457ca6d1f7c682b00bc", + ".git/objects/37/8e83dc0991e125e20ec3950e2f3a036d531fa9", + ".git/objects/37/9c95517830fd5fa644d0e9f9b4b24e67a26024", + ".git/objects/37/a54434fb15afb7ea44a8a985bae89385c1cf54", + ".git/objects/37/b38a3f2aa49aebd8a452802515a75982a307d9", + ".git/objects/37/b43eac9ba37e73f9339a7f04703bd8c657bc44", + ".git/objects/37/b63bda775153c4c449fe9d69237013e40e1c09", + ".git/objects/37/c2ae5cb8e7e40b847f6b7a3331ac370766616d", + ".git/objects/37/ca0dda37c22d740b26b4459c66d0b016802d9b", + ".git/objects/37/cf93f75fa9b79274c7952231c355824d47a319", + ".git/objects/37/d8cfd1a8856c140553b9a6fcf6c5e4188564d5", + ".git/objects/37/f467b1c7df3069e1fe464bb906505a7e7a84f2", + ".git/objects/38/05103fec4cadc1dcb3b06d78296199dfccb561", + ".git/objects/38/0bee34d2c7f646a6872649c65950fca589c649", + ".git/objects/38/0ddfcc26d95f86f2abc9347a3c13d608f6ef8c", + ".git/objects/38/0de8542a5ee2895a4752474346d18b5d5ce87b", + ".git/objects/38/0f1dce9936718e43891c0dd81e1f24bb8154a5", + ".git/objects/38/1de881a19aea4b93a45e0504e659a48d712c07", + ".git/objects/38/26fb3c5eb61978186c74dacc25e15cc15eb930", + ".git/objects/38/40704ea343cee2db95ee8e43d4fe3097545d4f", + ".git/objects/38/45e755c13f6fe1335c3a18ac09626ea5022ecf", + ".git/objects/38/4a366cbb5f9f2a51c8f2285217ceab72b43f8f", + ".git/objects/38/4e1eea156e243fe8bbb3773cb21aab7155bc19", + ".git/objects/38/561d241ee7c2a07d8582fbba2a9a4695f1c2c9", + ".git/objects/38/5ed4acde6f5723cbf3203f29e412d98a717576", + ".git/objects/38/69f958e5c1a9fc7e29fd675b11cf8ef55f60a9", + ".git/objects/38/7cc4ffa26e018f52f2c78ae7c894082cfd2a23", + ".git/objects/38/87c63d5449bd5205efd55b453a42dbde87fa85", + ".git/objects/38/a50a80e3bb8d53f3579d8efc5411f595aa5eb5", + ".git/objects/38/a8cc491f34a633e2ada9dec39f9755bac5c2f1", + ".git/objects/38/abaf5baece4ca4821ee7ab7660a4fcd50f20af", + ".git/objects/38/af9ff9dbbd52e8ff5e7d795a2acd2f874c971e", + ".git/objects/38/b3bc67cc1af118f827bebd7afc9706833441ee", + ".git/objects/38/bd8242ee471863a32043ab67279e4facc9a998", + ".git/objects/38/c5be256d48613e534d3fd41de052757ca3f7da", + ".git/objects/38/daca4cc6c6083ea08526333adac8cfc7f21f47", + ".git/objects/38/e055e491696d3ebcc5cb6f16405a37fa79c8c7", + ".git/objects/38/e42a1129cd7cecf417418701857b3fd9105a42", + ".git/objects/38/f7c5954806b98d7b6303a6ec05b3f3833064b9", + ".git/objects/39/389bfe78fe1ab38589e09ca62efaddae582c71", + ".git/objects/39/3ad7cdc24fabc111a14959815ba92e0e025697", + ".git/objects/39/3f6c1c7983f150c7830afd921a1bbd232e04a8", + ".git/objects/39/45b4d19a7d2ed169d03f1804fb9e236d349808", + ".git/objects/39/4ad33deb985b61051a41d2002d8d915bb21136", + ".git/objects/39/66be0ee5cafb71284f877b6bee3d2b5318c603", + ".git/objects/39/6c2a1ec818b78d4538e118e3cd48025cea8fab", + ".git/objects/39/7890886dbe8a43c446a4bed3aa7e0e8e417a29", + ".git/objects/39/86c18d76a1a3038f7d3fb39a6f516f48fc78c3", + ".git/objects/39/895da3793fd076c7f00fa0e0b8e7d3cc6a527d", + ".git/objects/39/924c7b22f15fe2cdc3de296e9ab43edb0a4f48", + ".git/objects/39/93255846a4cc9471e53426d4a209c8c5578dac", + ".git/objects/39/988d3f6a7c1ee4409cad0212f55788441b5374", + ".git/objects/39/b68cb025e26a0cc0e785887a269b42b532720b", + ".git/objects/39/b83e664b9fdac9628eee56cbf275253d1834e7", + ".git/objects/39/c2ad9e55bae66b6f894c8103364f310a932f51", + ".git/objects/39/cd64f368f5385641a68b463029a87b3ab5db70", + ".git/objects/39/db1a9db7c2aba04e54c962161deee560e8ae81", + ".git/objects/39/ebaaca7efabdf6b2b35291751c303755aa541f", + ".git/objects/39/edbba955c658b89f9da7d00544a25dabbd5738", + ".git/objects/3a/1857fa276fa90ec2ba2a69b5d113ac03acef6c", + ".git/objects/3a/1be64c10f349f41a6ec270c6c34756c9462685", + ".git/objects/3a/1e1711138705afbb612f573118b68a74061548", + ".git/objects/3a/314e5739bcf45dffb038639d7eb5513219c735", + ".git/objects/3a/5d98f434c4f28a48ae6e76b931bbc7fa296200", + ".git/objects/3a/62265ddf34361aa3c59e9780d2a4b8a8f64785", + ".git/objects/3a/8f69d6fd9fb09684c385e49f5917e64b786fee", + ".git/objects/3a/8f97d6a0fd5790c21100d5c2b5bca245290fc1", + ".git/objects/3a/902eee65efc5804ff4cca19e39c4d502b108b6", + ".git/objects/3a/9693bb66ec7cd777cb7908daeb803dec66b853", + ".git/objects/3a/a983318d8b94259ec5e9b3d2753b8327ce118c", + ".git/objects/3a/af9d115ace570666826e0ac4484e8fd9aeb0ab", + ".git/objects/3a/b3d6a7bd7d4452c34af08e049dc615f76a3ea4", + ".git/objects/3a/b69284cdc004d1fe31d0b41e978c7b908afbdf", + ".git/objects/3a/b7053f292ff42190433600e5c84f33aa1a4a1d", + ".git/objects/3a/c99eabb0d2dfad9fa502d6a01fdb716a0d5135", + ".git/objects/3a/ca12a3345fba087180d06271a0f7fd9e807b4c", + ".git/objects/3a/e04e53bb06f49bfcbd7a5c1a71cb1fbd677719", + ".git/objects/3a/e14f94b2a4caf5e1328f599c6ad4344aa22692", + ".git/objects/3a/e2c1101813101c89a933e0a0a3c3ab2b7dd9a6", + ".git/objects/3a/ed67bc4e41a89aee80eae260efd4cfd5db557a", + ".git/objects/3a/ee7b6811d1f3ee608a76226f249db58ad04714", + ".git/objects/3a/f941c23942a1da474712648fea9e9c5ea633b7", + ".git/objects/3b/0001eae5da25a37cb9ce0d112e06d6a6c0011e", + ".git/objects/3b/02b370a81bcc2f6efcf7308ac38627704fa688", + ".git/objects/3b/054505bb43a82e80cf47e47e94a3b5de7cccb2", + ".git/objects/3b/0b4c12a988ebf0b66859fa2417230cdd4784ce", + ".git/objects/3b/0c35e69d04946b532f288a0e1aa055e4c11061", + ".git/objects/3b/0c54e1282ec510e760ef26861130f419ad4cd1", + ".git/objects/3b/104fda52811653619e8e15e672a976690bfd17", + ".git/objects/3b/11ab4e94c8406ca4a59b2ff58f517ea8900f31", + ".git/objects/3b/1475bd0272a3632c4e3516edb53dd41746a633", + ".git/objects/3b/1b485bc7cf15116f19532fad81a1efac6ffad6", + ".git/objects/3b/2461233d74090389e9136342afe514131fe3a5", + ".git/objects/3b/3288fccf82a5db2e2bfc64668a68a5f0422728", + ".git/objects/3b/35f1680c45a3cf284f6d80caaee99a388cc904", + ".git/objects/3b/3965ac7806a47e1468fd09957f5fb0b1207d1e", + ".git/objects/3b/45b9c307f2a85aa069ad4cf35cb13892e3d106", + ".git/objects/3b/6c671a42c3e3dc36efc64bb54c4566bf98f4c1", + ".git/objects/3b/6c6a3f8f7ffcc631145ee2df31431473ceb819", + ".git/objects/3b/77424a86462c4980d79fe5f19d8deb24d94b17", + ".git/objects/3b/779324d21970ed4fddf846fb5677eeb39f7ec5", + ".git/objects/3b/7a41a644b39166ba6f1909ca513702f272ff55", + ".git/objects/3b/803079bb6ffdd5270a47db775af9c4b9c04d7a", + ".git/objects/3b/8218b4c39f4313bb514c07a93b19edba4ad87f", + ".git/objects/3b/868c121be69e20ab150640a9f1e4686764bffa", + ".git/objects/3b/aa08dc58932c0d3e1e2051d98862f5907622d9", + ".git/objects/3b/aac812554dc651915793cf4b74a2b73f001835", + ".git/objects/3b/b9d4b1bf02c5ca91fcd841de0ea01ba995d13f", + ".git/objects/3b/baf1345bb73162dc54022b438159e9b14f44ea", + ".git/objects/3b/cd39c6959da4e52c48d6955508148cf4f1eb5d", + ".git/objects/3b/eba0ecfa826fced50ed8068c754b2ebdd9f29b", + ".git/objects/3b/f16182b4792652833fb2ff91b74508e22b0e2e", + ".git/objects/3b/fe7a165b84c5137e375573fe30b125ad3de521", + ".git/objects/3c/03990a2d16ec6be2b1d16d5493cd453e3d86b3", + ".git/objects/3c/0b42cf50d320ee1796b72ad775fe1731facd09", + ".git/objects/3c/325a60d1bec03a738997f8b574a6ac64544d29", + ".git/objects/3c/3c1595293f5a049bfd562cbd38b78d2083f8db", + ".git/objects/3c/3c5f87c3ce09a9ac76b018ceeced03df2c8c83", + ".git/objects/3c/45aa6b022c5279b0c03fef32252620e5c0af24", + ".git/objects/3c/552089c77b195f45d3cf6f106ce5e75c1bd255", + ".git/objects/3c/58fd0556899fe198b45a940a207f21628acf86", + ".git/objects/3c/6e210c4c228e53739be9bf560a68f7118e125c", + ".git/objects/3c/837ee1c43ff840cf1dd8cc8e70a0dbfdd9c2b2", + ".git/objects/3c/84fee5094b09d2c08061e4907a5e9c7b652ccb", + ".git/objects/3c/9f63bd52545fe5722ee787845f2a1044f87373", + ".git/objects/3c/a032d0e366753a19582ad14e3ac081f0d9e9af", + ".git/objects/3c/a28e694cc1e9e9a737c7ed01db542a5f62a3ca", + ".git/objects/3c/a5f95fdea5cf6dad62b3343c0fb91b96fc05b1", + ".git/objects/3c/a9cba51bda8738a73b4a98902251923970d78d", + ".git/objects/3c/aafb540b61f0968d8560e1566ac0efffbe468d", + ".git/objects/3c/b39d447d6dc09793d321c9f6d6c2b4484bbd13", + ".git/objects/3c/b92a4f1ee39c3869b582a903d93e0b693db091", + ".git/objects/3c/c55b10fedeb035e9983b9f59e5491e4639ed9a", + ".git/objects/3c/cdd9cc494658b5ebe1cf7c2b8f473bf208b910", + ".git/objects/3c/d90f66f7008d24dde5f6f16d404697c3da6739", + ".git/objects/3c/db24a737552d17b5afb8e87c0c659934f8b4e5", + ".git/objects/3d/0dc091c96b14d5381b69ff0eb592e5f8abdbed", + ".git/objects/3d/185d75b89a2c681c6eec38b58b0f04d8419d8c", + ".git/objects/3d/294aea50771836e19f43e2cb537f8286be70a4", + ".git/objects/3d/322b8c21f9589ceda2ac0e9311a94db7d9ad76", + ".git/objects/3d/36afcd1ecc00853cbe23b3d91d4b0bdf8f1cb9", + ".git/objects/3d/397dbb48be6c1c0a05ace1bb9da869a297880a", + ".git/objects/3d/41b1ff10ebec6f5931e027529104c7e35dd836", + ".git/objects/3d/4e98aaa6ef537643932b538649a9feccfd490b", + ".git/objects/3d/556782f88fb97bb262f2034830adc4d8b67b9e", + ".git/objects/3d/5750b6d65f76902cb8d509abee41741a9af964", + ".git/objects/3d/60fcbbf35af4414bbbf946ad2a92419c0c14b3", + ".git/objects/3d/6bc565b78d35159eb33e46c26e94c75789a529", + ".git/objects/3d/6bf638715d077b6066faaa00300777f53525a6", + ".git/objects/3d/6dd6964c5f54f12836f2e7e89f5f8e1387dac8", + ".git/objects/3d/6e04322bd2f3d9822ef5f19b7ccfbfee159d19", + ".git/objects/3d/71f96a469abb820ae8ae91d7b7c2121a01a39e", + ".git/objects/3d/782dee1874a0efddd7bfad3d4f96ee8e6400c1", + ".git/objects/3d/814f84c4b56defced9577c9a820b2ae16d642d", + ".git/objects/3d/829949fd9773980627b42ee6827ee40bf4ca9c", + ".git/objects/3d/89ac8cf5fd84e16c79af8f01477f51c5b1e438", + ".git/objects/3d/d485994f5772922f8379126cfa6b41c71a28c3", + ".git/objects/3d/dd4a85158a07b45a4cdf15f8bf0c37a68a6a0b", + ".git/objects/3d/f051a0633380e44cbe3ff6c6348906667b01b9", + ".git/objects/3d/f10410f7d3cbf42ffe0d7bdaaf752638cc8170", + ".git/objects/3d/f367ff09ed83501d3ecd5a1f77a9964432e76f", + ".git/objects/3e/0856e944f7ea4d1ff5b98931b780ead3ea4dc8", + ".git/objects/3e/150ae26b5aced1d8f5ce6b2014b987460fa73c", + ".git/objects/3e/9144e9e0d58476050d26f116ac94afa553ca6e", + ".git/objects/3e/91fb9d56c9d694d4b0ff6dc585687614933884", + ".git/objects/3e/936a17597d8d2e240ca392f2eef0a7a04d25bb", + ".git/objects/3e/ab64016255a2fe4db82d37c00cb2af9f7296c4", + ".git/objects/3e/b7c48b1a065805e1e281a44c1e4c0613116b75", + ".git/objects/3e/bd211d9f16dfbec4bdd2e1cd9cbbf9c7a58534", + ".git/objects/3e/bffe48ae25cffcd1e76a1bac2e89ffa34d6602", + ".git/objects/3e/d90a39d46aee3c6fc894dd695bc57625c7d239", + ".git/objects/3e/e784bd6a63329a26d6d05e1ba80c91d94cba40", + ".git/objects/3e/f5975559f50df7d37752fb45cda5d0c6c527a5", + ".git/objects/3e/f959d8080fe1d8b3c68da17a552055bb412dec", + ".git/objects/3f/03aaca95957e58c0bac9985b46622f0f6bbe7f", + ".git/objects/3f/15a8934238c783506b977a3d22d05fbfa7b622", + ".git/objects/3f/20a02e4a69be176f9c03054a9fece2eccd6d33", + ".git/objects/3f/22eae3f9269fd2c478ee870a0003ff2acb1f76", + ".git/objects/3f/27ba5f5a900b4502c2ccb679896c596e91cb94", + ".git/objects/3f/356ed3b9c6d357ec136c9c6df6810e840db16b", + ".git/objects/3f/525d441c04f7995e1001137a92153a5ae34489", + ".git/objects/3f/5871d7774bfe2ee6840a4ac3b06f0630fd18e7", + ".git/objects/3f/76ddf8b9b8e1a90759c8a291bfd72383efbe04", + ".git/objects/3f/7ae6f40cc544db379d680c369f3387fbc361aa", + ".git/objects/3f/a663e9c537c34888f8914d252ae2a235333fe1", + ".git/objects/3f/ad44d17cd56022c052e97cc19e2d70b4b37396", + ".git/objects/3f/c9f717f75547c774a725f5eed4631ff323ec5a", + ".git/objects/3f/cb5d8ec8787bbf6baade8f10846fb7401d401b", + ".git/objects/3f/cc6f34a1500921a121bfb32da67c8b92f8683f", + ".git/objects/3f/d83d48b996595c491713cc8478edf7e2378c3c", + ".git/objects/3f/d8ef320bcb571e0f08988c8dfcd4af871a5360", + ".git/objects/3f/e1a820236b8982980df01e09a66281dd70d875", + ".git/objects/3f/fa71d41413ad760b81c88d6ed11d7eb99fd4e6", + ".git/objects/40/08abd67c337f74456005f3d75c4c14ea2a4adb", + ".git/objects/40/106b0064f1fd6647edd7df855980cd7d11ce15", + ".git/objects/40/23aef3209755e5648c8ecccac7027655769a72", + ".git/objects/40/245063f7862323d9af10f18042a0d38f0c98ae", + ".git/objects/40/381b52054d837878e241cd625f962aad7a627b", + ".git/objects/40/3901f2d3351cde4256eef4312f70e7b6d3fd3f", + ".git/objects/40/47a2312b2352b95a35c1053a688a61b880a7c9", + ".git/objects/40/5698d36557511a75d71c4e3d68a47a63133a78", + ".git/objects/40/61af83f04a3618a70b600cf3c0a9a504bfbff5", + ".git/objects/40/6702c8ecd5c23866aacd785cd7c2e8dd8e1bea", + ".git/objects/40/838e5ed0831863fc814b5185fc9f13313e8d13", + ".git/objects/40/8541c96790c215c1eea6e21b65bf0781a1a75b", + ".git/objects/40/8e6c22b25a472b36766769a99a0acb6deee122", + ".git/objects/40/9087480421f545f042131935ea567b91e99791", + ".git/objects/40/91d96664fa8130a172fed4f7e2e7ec98425794", + ".git/objects/40/a31c33051606574b287956589bf514dc946a7a", + ".git/objects/40/a9262ad0495cf54684d162bef3f9f9dc1b67fb", + ".git/objects/40/bb80896aa0330f6eb166a6f9277773c36dda51", + ".git/objects/40/c054d3eb20a92e2c11b7560bd7815f494ed276", + ".git/objects/40/c7185e93ba2bf2441d608a1454664ebbd6c757", + ".git/objects/40/cab46cb5848abf44d08dbbde1ec7bfa0c63123", + ".git/objects/40/e763c9ac9db196dd13018388a8c9463c920b6e", + ".git/objects/40/f476c041db49f3ec097385385a7c2c1d99a553", + ".git/objects/40/fcb6529d8d0df65aa981b77cc364f562b99ec9", + ".git/objects/41/0a400ec54d4905ef5d58b25d20e6bd3035cbcc", + ".git/objects/41/14cfba7e9d18154278deccaa82c2bd55731fa8", + ".git/objects/41/1906b48257a32b5170d1513e39b4bddd8360ad", + ".git/objects/41/3757491cf1bc94e9fcbca846435a13ba26a58c", + ".git/objects/41/398293f6c0339ea34c04b7a1e1240edcc459bc", + ".git/objects/41/4332c732f9067749e32a33f139250366df35af", + ".git/objects/41/507c5951dc6e70e75471cf4380afd9e1368c71", + ".git/objects/41/55491a9ce792ec9a7f3d456bf46fdee0d629d2", + ".git/objects/41/57a1cea28dc83f3ef5a57c962ea76d30c58eb5", + ".git/objects/41/66a97308412524a2440c7803e7998a1c20d13d", + ".git/objects/41/6a652d807b458984c8db7c7cdeb2365ceb77c3", + ".git/objects/41/6b0daac994955d6360f83ab29b6b67fb5d06a0", + ".git/objects/41/7b4c6d91405a7ead935fce861fe7d2b636c356", + ".git/objects/41/8449272171f691d7ad4f9dc2aab941543bb9c8", + ".git/objects/41/8983a91940dce1978f449e279a6e95de83aa5b", + ".git/objects/41/8e19449ad3f2ad6983c18295aae324ecfd4894", + ".git/objects/41/92d745962ef96b5d2f3b5d0e20442c0275c525", + ".git/objects/41/9cc4a9acbcbb6ef07ae16ce6292109b694bcaa", + ".git/objects/41/a8e6ab9000d1c222ae2c833d9237c6b3f03e17", + ".git/objects/41/a9a166d5f11cee5f7ec5bd39009f5590136976", + ".git/objects/41/ad58aaa7f7487b32a5911ec9d64573b6473c34", + ".git/objects/41/b5ce181cb2d793723531bca17927d07d9d6c02", + ".git/objects/41/c5977bd322d8d6d84a74fd5bf94dbd744ef85f", + ".git/objects/41/cdb9b628ea0b0a2c96364d2a28202efaf5c891", + ".git/objects/41/dbc6e3a610c21feed8a33ba8cff9a519a47746", + ".git/objects/41/dd7cabfc7bfa6bbf37f3973fa3ae63861e7598", + ".git/objects/42/0c9b6b7c7e8bf729bff1c3fcb9e7805b29b686", + ".git/objects/42/143b4d9e840a90fb4041901bc68e33e4905071", + ".git/objects/42/21d31761a9d10abf3383d3db3b740444f1412e", + ".git/objects/42/268c42a8b3705a37efc57c51211e822a00d14b", + ".git/objects/42/26fe625011b4bd7db0fd0ee9ed6ebec52335dd", + ".git/objects/42/2f31d777dcab3532319a3bfaeaf2535766f341", + ".git/objects/42/5282aa14931305ea977563118f4df985fb427a", + ".git/objects/42/5928915dcae1e363f6052f53f977d402adc3ab", + ".git/objects/42/5a298470549cdd7124b4c925a51d6fc837a881", + ".git/objects/42/62bfc4bd79681b5c5e5048870ff2c56c261e46", + ".git/objects/42/6f5490772b93303a6229464dfa35ee03794805", + ".git/objects/42/771001720fac98c72f150ed551ea06dc5e5c92", + ".git/objects/42/77ee2054c84f3c8561c4d2b1b381b015205ce1", + ".git/objects/42/82d7bbd178ab4d64b9fb2da25bc4b4094ef6e8", + ".git/objects/42/86a68b362d8f760f0930bdb4cd71f3622431a5", + ".git/objects/42/8cc656c14c653c5d667b5dae5c1f86bd22be85", + ".git/objects/42/96645b9769e446be1b993db36a39dfa7c08ccf", + ".git/objects/42/a72e6bcbf820bcaaef38544cd5519f3c8780a2", + ".git/objects/42/aad7cf15a5f6cc9e51f9b99aeaa80ac93325f0", + ".git/objects/42/cfac0670d7007ffdafd839248afec779eeee4a", + ".git/objects/42/d45337bb9d8b936bb8eecbc647b3faf88cb513", + ".git/objects/42/d680ef7743fa20a6736a692ec8fcd548043aba", + ".git/objects/42/ed90d564745c1127eefabb4277d2ff6e15671e", + ".git/objects/42/edfaa7bd57d35029a8b49faa85a5531cb755fe", + ".git/objects/43/05ef50cb3cf3425ce0b7affb5342f906373239", + ".git/objects/43/103d648ef82fc10f64808bdd9c1c19705098ea", + ".git/objects/43/1675de8499858537346ac1ce9f5feb8604d383", + ".git/objects/43/1eaedf37d63f8772fa5621b1898d7dd3d65347", + ".git/objects/43/223398a5351e9e9e93c25b527be0eb17acaef2", + ".git/objects/43/480963f83a658e607c84c835dc8b441f7fd4cb", + ".git/objects/43/549f65dffc9a8bc27f11dee516e9f01a04331b", + ".git/objects/43/59e38b575091f1f47895a47b083ed90b0806e3", + ".git/objects/43/6e966a668c438e9d6b68568c8f74e119e79c28", + ".git/objects/43/71142906be4a18c01a940d2dc710c56498bca6", + ".git/objects/43/732f94de0c12fc49d7de8b6292bea75a6eef59", + ".git/objects/43/85e61172dd321ab3700939b2edc34c0f646e11", + ".git/objects/43/8f654271d178ea01c8d3fd61cf583a89cedfe2", + ".git/objects/43/a908bb6d9f2b3a276723c39baa47b8237c9184", + ".git/objects/43/b1f2fc036434a957708e74d778cb4715e94d89", + ".git/objects/43/c72211af8b2564ab4bcac610c21640c71cd86c", + ".git/objects/43/c9006d69bbe97bcb3b4fe0debc360e399bb605", + ".git/objects/43/cd40a10eaa45a15be4c651655984722b23045d", + ".git/objects/43/ce040faa8f30365309960f01a3e7742d317221", + ".git/objects/43/ddc6d1146ed52d431dfbfcf0872e23fd38b04c", + ".git/objects/43/e07343d3fb249bd7e17e95e2396d4151c01ded", + ".git/objects/43/e5664dbe4359cded265fc122cb2a4b1353b13a", + ".git/objects/44/1806b2ba6519fa5ec88a3c6bc2b256e6ee715c", + ".git/objects/44/1bbf1f3f5605813e866486514fc6741cf5d434", + ".git/objects/44/1c7b43a335a44b6b190496f80642bb15891600", + ".git/objects/44/3736339eee2a6f46fb8851bb2bb35ccde39cb9", + ".git/objects/44/5263a9eba055d3d3553861ec6fa0d16ca3465e", + ".git/objects/44/53350319b2b959b50bcbc73e62b10cf2ffa6b6", + ".git/objects/44/6caa8c194202e9c94ed0744d0bc7efb15a5c08", + ".git/objects/44/795124f63e8e1742425019c52e7397c6e1fa38", + ".git/objects/44/bd1e7d94a4882e79504484546c58090f522d96", + ".git/objects/44/c153eafeae1dae58eb26cc84b1d8de57922fd8", + ".git/objects/44/c31ec44d38e8ae177073647b5016fa56e75974", + ".git/objects/44/ca4e9a0a97dacf430fdb21f10a6101b2344ad4", + ".git/objects/44/d01cae8e6618fbfb3d65dd3e169dd8ebbb8048", + ".git/objects/44/d3ff731c5d6d55759284feac9138da8b74eb23", + ".git/objects/44/e5387010c59c76c2b52325f9fb24d8dd9241d3", + ".git/objects/44/f934359533ac3455f0ba846472e0323d1a8175", + ".git/objects/44/fdc5288b26625f25cd04fae2516d8d44fa3cbc", + ".git/objects/45/111a785da63f0e746526c8aed702d5adcf6461", + ".git/objects/45/3e2523a58ec711cd808a51e8180051600e394b", + ".git/objects/45/43378b6b82e7c31021cd736e12e091664490d1", + ".git/objects/45/4650cbe2e62cf1acd45084f0402f5fbe541e7a", + ".git/objects/45/54d231668d8487ac9628381ca0fb87be21819c", + ".git/objects/45/5aeefe9505c872609a2e149f46495a11adf109", + ".git/objects/45/6a9583dab21760ce30e0d2e087d3cf960d2b63", + ".git/objects/45/6c596315ee9a28d1db5b37beb635653f0745b7", + ".git/objects/45/6e8a9e38bc2cc1ea0334a7d51679fb1995c582", + ".git/objects/45/72eca6a761176d87a5886a775d2cdf862930c9", + ".git/objects/45/88c8d076798b2451320b5364f688a1149189a8", + ".git/objects/45/c6f70fb472a889975ccab33fb6803098d9c1ce", + ".git/objects/45/dbec5b046e849183fb94eeb0181cfa11be2497", + ".git/objects/45/eb5fdb857d39691f7ed48b2e07a1eed5abab27", + ".git/objects/45/f41e064194be568b48fff58e4d7f9b881f9e96", + ".git/objects/45/f8a59b6b9c5cfb7692b4e93d4c526ebbecb8ca", + ".git/objects/46/02af167486a6700ba7cfaec3f1b614d4b1872c", + ".git/objects/46/1235ac67df38657c931b6f40c274a2fc8f4b5d", + ".git/objects/46/16841c356870ffad23c50df82d4ab3fb1ab5a7", + ".git/objects/46/24b00e4462b917d0a71f7c7da8c4b01568fafb", + ".git/objects/46/2c250427a67e2321f6b3b2d384fe72eb96182e", + ".git/objects/46/336091ad697431ba8b51f10fb241f0891aed31", + ".git/objects/46/41612e36406c72597b15201aab6f9a35262287", + ".git/objects/46/426264427acc158a32e6575d96125ac8bcfa7e", + ".git/objects/46/42d05d7189871c47e84684882dc82355c37b37", + ".git/objects/46/4af0319f8529a59389d8be6bfefd0387127361", + ".git/objects/46/4d1b30dc74d9478865bfaaacf7a6bf4935051a", + ".git/objects/46/50bce71e03473fa42b852778f0ac64a906f2c8", + ".git/objects/46/5678cc307a8afbf24f5ba3eb6fa1c615d48b5b", + ".git/objects/46/5789ef5296ad9de2b352ae4d0eed8e2e6446aa", + ".git/objects/46/64c504996368b8769b760cc987223a35c209ae", + ".git/objects/46/64f027192e9a221ecacd74543f2132a74fd2ed", + ".git/objects/46/68641e14b318c7f68db8c4b0921a673f871999", + ".git/objects/46/6c8ce069b68d77a902b3be6134c452d208279c", + ".git/objects/46/6fe2766a741bc59f835b04a0e281173c11ff23", + ".git/objects/46/734e2391cff332624a415783b9613099906407", + ".git/objects/46/8707c9e1977a102186d2de09bc16599c508276", + ".git/objects/46/ad01d3aa82be28257de33496b3deae450cbfb0", + ".git/objects/46/b398e277010caaceea0f8ba9fa19a25d961e16", + ".git/objects/46/ba9c1b17ee5b411f33b421477459701801a1db", + ".git/objects/46/c02734405dec58fd6a8beb84cebe0126a98fb4", + ".git/objects/46/c0d144d89fcff588ce85f99548158460778eb5", + ".git/objects/46/c7413524d7d6756d0498b9dbcde48b80f8534a", + ".git/objects/46/cea771b47509cccef1554ae46e505e93d6fd0a", + ".git/objects/46/f1e10e92b55bbfd0960d1b77aed9f295afe2bb", + ".git/objects/46/f43ad20a5a4b219333f4ebcb7194c296d88ded", + ".git/objects/46/f736c13c301a9a5bf883c29e90c20d3fb648c6", + ".git/objects/46/fa16ba53d9f020d901918847f4b34b6bf20aba", + ".git/objects/47/08ba3c7c49e887d9ffc2ccb7a6fc63bf5d82d7", + ".git/objects/47/1a2bab954630e0838cca1f6e9241cb6eb03901", + ".git/objects/47/1f6ddcccfbb5912f5a7ccc92fc01eeced93738", + ".git/objects/47/2d2b3977394d4c35e8d667df726978effe9f9b", + ".git/objects/47/44dc45c251f0bb72f464b0ca1bc6355d85d907", + ".git/objects/47/518df5453163817e6012d26d887210c8804447", + ".git/objects/47/5f4759987ac40815c572619e4a9cd568de4d9c", + ".git/objects/47/66edf1034921b810543f717fb35efe193f6b7d", + ".git/objects/47/897437b789645866617948c742949f4e6c603d", + ".git/objects/47/94834a3cbc9cec143ae232a73e6bff8cb2ca54", + ".git/objects/47/94fa86f6f828a6f914e6f2dc76210496804479", + ".git/objects/47/999407f8a38178dc7dd197255a22c4adee38e0", + ".git/objects/47/9f97bc1df95c0a1a83a5d83cc9e1a451e98725", + ".git/objects/47/aa743a2aa1bba310a973e0c9b95c68a7010bc3", + ".git/objects/47/ab1ae240ef5ccdc4224ec6b35d7e96050d09c3", + ".git/objects/47/ad58dcca6ef3f1bf2295a6b40f8601d0f8a04d", + ".git/objects/47/ba908d3854efdac4a2d263e779a35f924451ef", + ".git/objects/47/ccb88598b18507847a5d84871f53e038e9a861", + ".git/objects/47/d57025a7731672d6ef91995ae925e0b6962b50", + ".git/objects/47/dbbdca66de84d9dd2a3e1087344e3fc7c79dbf", + ".git/objects/47/dfe7abad5222cd3c3367cd812eddfc1f261abb", + ".git/objects/47/e00d9e2711dc16c8dcd3b48da5dce91dab0eba", + ".git/objects/47/e671d289a95271467bcc9235eca2946402e2fe", + ".git/objects/47/f3d5b933ee538c8f188fe724573ad81cd74ada", + ".git/objects/47/ffffcafce8918ca378cf1655ab0f086e56c4b4", + ".git/objects/48/07972fada52a7b6ff44868fc9c53c3eb6273dd", + ".git/objects/48/138852a16663fe79464c44409c35b5b3136ba1", + ".git/objects/48/176d8da25166772ff5f386383e8776a03192f7", + ".git/objects/48/2971670d92998fd24149782086a7e42b9f6208", + ".git/objects/48/4bd5e459877ec3bc148667516756487f634a0e", + ".git/objects/48/52cc9b80640d9682241e08bac7839f618f4a95", + ".git/objects/48/5ad8afef0ca5b805fdf71613af7182036f8a9b", + ".git/objects/48/63bac800bdaf252dd7eea87c87f2dfed2100b2", + ".git/objects/48/77fa3f7498f8de91aa06cd818a1e73180bd294", + ".git/objects/48/83d6452a7f0fdbfd4f4a38c1140b932673d906", + ".git/objects/48/a6eba836a5e17cb0a1ed2fe274ddc39d4d9399", + ".git/objects/48/a7662359b8f08227c70a420dd16dac3c59b3d8", + ".git/objects/48/b2d82e6712e8ed0b3f0f4d475d230c38313909", + ".git/objects/48/c769b94894faf4360664e96dec2b3f307a134e", + ".git/objects/48/c8d8dc13a1bf3d6601e520c6e7f33629040a9c", + ".git/objects/48/cb188ae5f4445365f0a29e2e8ae77e835fc279", + ".git/objects/48/cf67e55d0e1f6aead54253d27e721d4c3b15c0", + ".git/objects/48/d1deb2494c229db35243747d01fa8b460f113a", + ".git/objects/48/d9d13daadb49b5806d43d8001b78555bb32d44", + ".git/objects/48/f71a7a9b9a3fa6887b18c6fd86349e8ed19951", + ".git/objects/48/fcab763e12c37f2f1b8511c77180a316717826", + ".git/objects/49/00a7e4f89615a2dffddd407b54e63cdea8a78e", + ".git/objects/49/016732f6f348771d8e6001f019f61c403c406a", + ".git/objects/49/0ae95c77ddda35d782c59038bded54513f56f3", + ".git/objects/49/15e5f0cf3e9d3de103c1c3f5d573838f71d40b", + ".git/objects/49/22030338ef1d845e349eee005e899cbe12213e", + ".git/objects/49/2cd11ae0219d5e86e908965211e521a21141f9", + ".git/objects/49/2ce710311dfb4077b46210ca9664a88129337d", + ".git/objects/49/2d650bd70a8c45ad8b5a9d1f4c0d0583f2f682", + ".git/objects/49/3ed37ca46255e7dcafa14c63d73701bc767add", + ".git/objects/49/4374826fd6ba0716009770dff84d8dfe32e825", + ".git/objects/49/4819fc0d6801e1a43c8e13786b4ac6f8f332ee", + ".git/objects/49/48d00db2563dc0e0d15de2639201b992e76c96", + ".git/objects/49/58f2fdae7d210dae8865bfff2effb38cb56ad4", + ".git/objects/49/60bf3a7adc1b2e719dfd7fec1873f3fcce5100", + ".git/objects/49/66f9ed8dcef546ea18697dc6f7cd9082205141", + ".git/objects/49/6f577400a50a3506a38a77e17cea8a2b4c2b12", + ".git/objects/49/73bc66ca7f98ca32c29b4538d749145f3b744d", + ".git/objects/49/93c0899a31322fd00c4a4381651b4cd1c7acb1", + ".git/objects/49/951cfec1a7f2cd6cd596fcf532511765b937de", + ".git/objects/49/9a4edb3fe41500ce14b7a649841738c9d2347d", + ".git/objects/49/9b884e99f1d72696b1df72756317980de57fac", + ".git/objects/49/c00f534f46a0e967f8ace8e52f8cb3f5cbae01", + ".git/objects/49/f7372b98a7af421cdfe3a3485a7b1316f63566", + ".git/objects/49/fd43dd20331ca1c9646dafab1bd3f505abad97", + ".git/objects/49/fe54b16b5be19501911783b89ecc685badee35", + ".git/objects/4a/0529c59f7ecb3637f5b64fcc1f47530121cb17", + ".git/objects/4a/3018dbc2c7abfc2941cbb9204be5bc83311a0e", + ".git/objects/4a/356c5713964d70d1f808cb3c24b2b7746c7204", + ".git/objects/4a/41f77db4a8c3b8c6d2185d94ecdfc5bae44cb0", + ".git/objects/4a/4b605571e01dbcba99bb50589ac145c06d2c86", + ".git/objects/4a/4fea7219403ea7b13d2c43a85e35c02d27118b", + ".git/objects/4a/5506e97810ae8d53fbc584560dc7b6d66438e5", + ".git/objects/4a/6e2abf2168183a76819abdf40283e753974489", + ".git/objects/4a/758225b5ea103d4a9e0ce2f032297a3917be93", + ".git/objects/4a/7981b2b380cfe83455293bebb0568452301beb", + ".git/objects/4a/7abda9f0691bab5d122151c04b6ac12ce082f3", + ".git/objects/4a/7db228ca3c4de1db3197a903a1418dd0c1ac12", + ".git/objects/4a/7e32c63d28bf2962862757f9333090a85d20c9", + ".git/objects/4a/96e704f67ce5e6fbfeec70c1fd01f26fac607f", + ".git/objects/4a/99fee3760fa40ffac67a100b4010b306824311", + ".git/objects/4a/b9dc1a71c0a98472b20a0ca343140809c6aec1", + ".git/objects/4a/dbf63c7c0cce5767829b596d8193dce16fe3d6", + ".git/objects/4a/dc9ac66114b5b7eb43d738494d808ec7f91685", + ".git/objects/4a/e5754e228f4fb1d3fe90f723ad68acd0b1c7ce", + ".git/objects/4a/eb821513ae7739f95639b92ff5cf9cada43c91", + ".git/objects/4a/ec0b81647562002b8b7ed921af9a9461e7de03", + ".git/objects/4a/f788d533e4974569b82d81e6e0ce267d414352", + ".git/objects/4a/f8bb21d7f4bcf27057afa999c615f6977e0b11", + ".git/objects/4a/fa0c0d9123c2e41660da6f66471ca933488571", + ".git/objects/4a/fde4a07e25b2222a1ed59654ec5a4cf7141883", + ".git/objects/4b/12942b17ae97fecd9ffc16ae273d46d013e124", + ".git/objects/4b/3075c5cd4fd08ec51c9e7501700b6a0bfe61b3", + ".git/objects/4b/33f64ce827b84a1c7632cd14c7ab75cec4d7a0", + ".git/objects/4b/34daef9aba4469772d4fb0c7a620098605dc98", + ".git/objects/4b/3a701efdbe57bd273351965be71a600d0df83e", + ".git/objects/4b/46b4cb12129d4be8fc6dcbd8b8b55adf5f8798", + ".git/objects/4b/4bf59a2878a3b9955edda690290bb8a4633a85", + ".git/objects/4b/4d8c8f6ba2b553efefa15cb8fc3c0255e6c6ed", + ".git/objects/4b/539f93e14480c8d01d5cf69ae10f987f09f7fd", + ".git/objects/4b/620c9e3b726d04df6ad00ceed425d0ad30240f", + ".git/objects/4b/6a927ed0122826598b2bc400778b2e9ceedf96", + ".git/objects/4b/74096949733f06bfd233459db76ae90aa13ef1", + ".git/objects/4b/775ffc3c7ff1831baa8bdba62c1ab78088da5a", + ".git/objects/4b/793451af69105110a0f912f16f77e8a8791eb1", + ".git/objects/4b/7c4c4f2fed35ee45573c1178ef01d776942a1b", + ".git/objects/4b/7ecfcba53240e869a601aef29d70aefa7ca58e", + ".git/objects/4b/9e84b5caf168188cc94ce7cab129f495d16eba", + ".git/objects/4b/a49e2c5125f5fd183d5a1406b165f1b6b2ea78", + ".git/objects/4b/af4efc7b2e4a117ee3e1357d4f542f97452c66", + ".git/objects/4b/c4fc080379cd57f8dcbb8bb7b5b334612f253c", + ".git/objects/4b/e4bae9d48d174310ae02f412b8a22c38466528", + ".git/objects/4b/ea56f32a5f5cc6ba06b47eead976f826a94fc9", + ".git/objects/4b/f36c00489c5720e30212173bd1bad59c8394d1", + ".git/objects/4b/fa8302fc7a81a0d3735b87a7370baf72d006cc", + ".git/objects/4c/00da044e546dc6249398936b6f408dfa9c7602", + ".git/objects/4c/0207899da1e6e959bbbd184c1223542317bfcc", + ".git/objects/4c/0e22251ca2a33e088714a5231a11d85476c14d", + ".git/objects/4c/2521c1e2d63c74df1c9c7b019d57e8707e06e5", + ".git/objects/4c/2590902a4cd8dd823109c758c62530f236cb10", + ".git/objects/4c/27f206bc3a7ad84be9667fa3d4e4e5574faa21", + ".git/objects/4c/30cf01eba98be96239f9729eb873530ec611f9", + ".git/objects/4c/3895c889d4df8b95639ab351a4323b8d4c6952", + ".git/objects/4c/3927cc516bd00003c553071010f8229d323d97", + ".git/objects/4c/614549928f7f2a9952b4f9219ae457c7a761b8", + ".git/objects/4c/74611a49c10bffefdfe9fd035a18a4286f6479", + ".git/objects/4c/82c81c9ddb448d5c7aa280112f2ec35350c16d", + ".git/objects/4c/842d92c14c676a00af5728a419d4aa22017c37", + ".git/objects/4c/8c2b382f5f2083032ae4a3fd8b07dfa4091ba7", + ".git/objects/4c/8c3f07234b1df752a0301db9686dcd282258e9", + ".git/objects/4c/9674cb42779b739ad9a20f9f4e7ed6f3b7ec38", + ".git/objects/4c/9a1ff153c25b4a17b63c9b3e786716e3beecd0", + ".git/objects/4c/a8d0a76ae84aa410ec92160c3df1983e97a650", + ".git/objects/4c/b05a758a7a7acb4f0bb316a45c3aa9d6d4c5e5", + ".git/objects/4c/b8fcd9f8d0ae5dcae1102f585beed7a5546822", + ".git/objects/4c/b9c76ec13cf5c70feece043ef7680caaa1edaf", + ".git/objects/4c/cd98c81cf01caec9104509e0ff3e2a58dbc768", + ".git/objects/4c/cf68e8d97557a4ab52345b29574f16c0775f95", + ".git/objects/4c/ded4bb585da6bf37d7af2337843413887e7db3", + ".git/objects/4c/e0af15b8bde6bab3cfce8d61783b61d9cd915f", + ".git/objects/4c/e118d77ada2b64ea99baf54b0b69b568d26958", + ".git/objects/4c/e2908962f424b8657cedf06e5c74372fd28dcc", + ".git/objects/4c/e47158fe559644fd46b8e50ecd7820518b1346", + ".git/objects/4c/e80a5b6500442a6e2ec8f289adad575a969900", + ".git/objects/4d/066c1f81adde2a248a0c88f5d30fd845d1638b", + ".git/objects/4d/1caa7e0bba565a78717498d4816b7f08a8e46f", + ".git/objects/4d/1d3adbf631b8996a751086f659333061d5fa66", + ".git/objects/4d/2bd42137bcad90c4a0e8975cdc13a9302a623a", + ".git/objects/4d/2bfbb2f72048ce15571baf68cb6ee29ff0e493", + ".git/objects/4d/42955c6a4832ccf7d6d177d51c6460e5b132aa", + ".git/objects/4d/5821179aedaa564d29df288aa708f7db78277d", + ".git/objects/4d/5d031aeb5118058abfeeb78942001049616338", + ".git/objects/4d/5f93c87b7c59bdb768fcd74d9c173ad66516ba", + ".git/objects/4d/77ff4394ac8778bf3a886c9c414db72e965381", + ".git/objects/4d/7b6df31eae1a86e7a26b66a3965a708910816a", + ".git/objects/4d/86e7be540c8723472af30e7ddf0e28edbfe4ef", + ".git/objects/4d/8e97a69d4b2d2b5dfcfeda903358c72895a28b", + ".git/objects/4d/a0907b6a31f5d2308e68a50a7f1b53a3148c17", + ".git/objects/4d/a95882a6debc75e3045c4fed3055c95d3007bc", + ".git/objects/4d/aeea24a5c0c1b76947154fcd9e4567a79d1bda", + ".git/objects/4d/bd4441b83ffa320476b00e0bf660914e432ba5", + ".git/objects/4d/c6ad32b53e3dff5500ea08436c46288e3d5746", + ".git/objects/4d/cb8bf6fc6d6c901a50fb70f5e4e70144b224e3", + ".git/objects/4d/ce5279c6ea93f4915ecba35ac0251cc02fac77", + ".git/objects/4d/e6ddfd781ac788c149694676292021aa459bee", + ".git/objects/4d/eaa0c6439a2d8b21e1aa3aa02f19dabf0ea3d9", + ".git/objects/4d/eefc9c07343299905d1a01e0dd9256d7f3d7c1", + ".git/objects/4d/f991522fd50cb754bb0dc164c26084f7b4dc83", + ".git/objects/4d/faaf90df7f6233c798030d2aa7c89f864162bf", + ".git/objects/4d/fc5ee775e63fcef0dca9cecd4476b0422d1c9c", + ".git/objects/4d/fff5006bbed2c5072249af9f0b2c0d9c50d0da", + ".git/objects/4e/0a2ba876519987ae2fde688491a641dfe2eada", + ".git/objects/4e/116295fefd6480fa1c67a079bfe84ec1dd19b0", + ".git/objects/4e/1c30e04bc73e6d4b0594e40177c0c229667a9d", + ".git/objects/4e/22c765df6792cb42c9456d3dd18eee7c8c20ce", + ".git/objects/4e/2a00f4d252bea597f6d70fa5c34ed6849009ff", + ".git/objects/4e/36e4c99273414dc2a15e62606b3e90260c4215", + ".git/objects/4e/57f0137273f2a1dc51c611545cb02f562e8084", + ".git/objects/4e/706b7b9764c17f6af333b5f4738e9f75a05110", + ".git/objects/4e/75faa6dbd867eae278b605a10e85188cbdda3c", + ".git/objects/4e/81ec7d631ead981821aa5204a41f65eba03a2a", + ".git/objects/4e/8ab5d4ab827b89a4d7ab79dd7247013c631215", + ".git/objects/4e/8b7b5577e2d3994ee34b96449df180e5de044a", + ".git/objects/4e/905e9f85245a701e5b020821d6d11910b472d5", + ".git/objects/4e/a31fd4f1f4ea30dac5fc7f2bd31f8a457849a3", + ".git/objects/4e/adae9a716ad243199b8c054439b4f3e217bf1d", + ".git/objects/4e/b30a29f683a5829710746e32c199251dce32ca", + ".git/objects/4e/b769d301fb9d26d0396d64f7bc35999a8596f6", + ".git/objects/4e/bc7e11949186269f2a02a2febcf37ae32870eb", + ".git/objects/4e/e6876dcd9decc1de010ed2057ecf28f9758e68", + ".git/objects/4e/ea5f5e6d86e4a92f049e936d8efb917cf01807", + ".git/objects/4f/13501c7aebc264df5ea850b3799541b17bbb13", + ".git/objects/4f/19ab22fa5fdcd1319fc99b595b851444abca62", + ".git/objects/4f/1ae444b3240f8205303471ad84008db92e6e06", + ".git/objects/4f/2782dab27435c3357a005f9b20d04d445f67bc", + ".git/objects/4f/29ea6a576f4174ed0c3cc6ac75a4f60d44cc4c", + ".git/objects/4f/2dc512c0201a71eb1ab109d10c7e981fa9e941", + ".git/objects/4f/38bfb3b1c6b3d93c26643eed4f302debf17ba7", + ".git/objects/4f/5e5a415f062e0f13b280529477da504f4a68b7", + ".git/objects/4f/62a8d27c18e70c5a26e381cee686fc462fe4e7", + ".git/objects/4f/698a4aff3f569528f09febba30ec0fdf686048", + ".git/objects/4f/6da68870871f00d457aaba61941f53fcac46dd", + ".git/objects/4f/807396149499e2f2e6429862f13cf248ecc9f8", + ".git/objects/4f/82988d9c39cdbe3425a903be487e00b759d522", + ".git/objects/4f/adb8451632439714e3b486cca870cb57e91232", + ".git/objects/4f/c657d1469196f0efcd6ad487108e2e56fff312", + ".git/objects/4f/d8a5e72b067a70b646a7bb3022bcf9b0151e39", + ".git/objects/4f/de740aecd5372f3a0d2f581475f494d9a6220e", + ".git/objects/4f/df17af2e5f6f316fbd3c783194ed250d5e0351", + ".git/objects/50/001ec6362406d2daf1bbdee650ab3d2f64a78b", + ".git/objects/50/2624333854e4ba3e9354d7d11a9cd6c8f34bcc", + ".git/objects/50/28850d812bf767bcc8ae087bb16c493f615744", + ".git/objects/50/29bbe0a626b18f88af30f97be59fafebdb4046", + ".git/objects/50/3b304b42da178ba26f680fb40d0eeebf226917", + ".git/objects/50/546f578abaaab61ca8f1488f9382f88889b65b", + ".git/objects/50/5a1c667257b79feff654fc30864765a1942efb", + ".git/objects/50/64ca33170bdf9989bd7edd88d370ab19d6012f", + ".git/objects/50/73e25a1a2bb7dbfebef63ec3878c1561913402", + ".git/objects/50/7deca340f1d77b608e7ee9d95ba5e7e66df9ab", + ".git/objects/50/897546d8a249e8e546e105b9f9665b1a6ac9ea", + ".git/objects/50/93a3c5576f6b644a490839f2cac7195068817d", + ".git/objects/50/993894f3ea8b72fba02210c8529bebba5575ed", + ".git/objects/50/99e4c737c7ac9773de683b1af2a44566ab7cf8", + ".git/objects/50/a2cfb41bad7f08458c9b05b66f1d999779dcc6", + ".git/objects/50/a3cd23e894af02e95faf01d66785d43a26bf35", + ".git/objects/50/a5ae23c969632a9bb05aa6318037574e47a4c7", + ".git/objects/50/a9be6ecb90b93bcd550edb21f942adf40c4fab", + ".git/objects/50/ad433c04f6f14b319fa79d576e34957f03ca4c", + ".git/objects/50/b08a1ddc15f825706397b3dfa32b9b702996c2", + ".git/objects/50/b7c3943371a6f18bb89338db282113b7dc7585", + ".git/objects/50/bd5c3c5d98448cb035af16efb75e8c20028c99", + ".git/objects/50/c23284e55419431c3974ad462093e750d4426d", + ".git/objects/50/c4a4e1d460aa2ffd27aac29907283fbb2079d2", + ".git/objects/50/c67d3977c1c8b3eef40e591720b35b7db9c5f7", + ".git/objects/50/c6b0b69f8ed8b23043a0c2c15cc550ee71d71b", + ".git/objects/50/e53bf4c1e4a74f8009fb59f4663a949f4ebdcd", + ".git/objects/50/ed55a5095d69bda78f657e592973b25fdb3e9a", + ".git/objects/50/fbb4f73f583ea4107b46e22218efc9af84f6ea", + ".git/objects/51/0397156f04aa3a7857d2ec3fe8d3d2b5890117", + ".git/objects/51/0ee765cddc94d76d27a272410a0b68ba292f11", + ".git/objects/51/0ef05931f92727113eb8762d4607c9c8200de7", + ".git/objects/51/10e41bb2636e77d453e314ebfacf59b99df9df", + ".git/objects/51/16e3e0c757c3c42c561aebe77eb0a0f55cdce8", + ".git/objects/51/1ecf1e966746624e5a707084fd0c3d0039937d", + ".git/objects/51/203463190a5b5bfb8c692c445b44ee97d974ae", + ".git/objects/51/2c1b8049e15c21dae1f3c32e7fcb266ea900ce", + ".git/objects/51/36bb15d6ad230db2c35a42abefd6d08198c118", + ".git/objects/51/4f6e04900e67ff58c409e9f891f68b5228506e", + ".git/objects/51/56e5ea5962fe769153b7bf2bad619324add8dd", + ".git/objects/51/58ba88ca5488c7da7e27fbc6df6dc8d28daab0", + ".git/objects/51/5e58d185100d23c176f08a36bb38e79bd2a3c0", + ".git/objects/51/5facee30271921ba589aeda2e7bc91ca62e7de", + ".git/objects/51/71bda9ebd87a4491eac154d5452b40c95e6627", + ".git/objects/51/79d7c18edc2fb46724415aeb5b7d7cf2c1970b", + ".git/objects/51/802f5d406bdb1e9d805a8d96b21e042724e931", + ".git/objects/51/87b0a63a24702cba6c3d63a8af679a765dba3e", + ".git/objects/51/8fd89afc7013fc8d367d889e52aa0f27683d2f", + ".git/objects/51/a922ee5b53ca81c4fa07c4179f6f2b81a4d423", + ".git/objects/51/b4d25ff61f57fc36b01aab6cc278aa7b784a48", + ".git/objects/51/c815196a2d734521e0ae85fcacb28668504570", + ".git/objects/51/cbcc62492b8bf891379791946e2467d0dc680d", + ".git/objects/51/e5751a00af88442c3c4e98c73ce59ef6909859", + ".git/objects/51/ebd6ff2a17d74c5c5ee3df241bc83544b51313", + ".git/objects/51/ee6471e08992419ba99362668ece4cecea06b1", + ".git/objects/51/f2777683edc4f4dec725c28c6ccfdda1292688", + ".git/objects/51/f5895575dc91d9910f6491607c40e5f8430e8f", + ".git/objects/51/f8cb51136b58329c06fdabae81d8a9fc9677e0", + ".git/objects/51/ffbc284ba574415f75ab5898a523a961c39d9e", + ".git/objects/52/19da4ca2f1bf8981c95c2271defe0f871561d6", + ".git/objects/52/2ade8e9620e9cd83a77a600b2d0fb0097bf6ee", + ".git/objects/52/2decb09c07caf7df33b9057888da8e761f4e87", + ".git/objects/52/31473b00bfa3fa3888a8f75bee0ddd16fb7dc2", + ".git/objects/52/35fddff2b12e492c287e3e1824af43a31c20c1", + ".git/objects/52/3acd48ce7817dae090bb632000790f7855e4c5", + ".git/objects/52/3cf576eb3ab9ce7a84ee17978e2efb49f0f11e", + ".git/objects/52/6b8974835e788577062b20647c489898f517dc", + ".git/objects/52/6cd55a5ca728cea1b8940f83e00a506361e8a8", + ".git/objects/52/81213e38ab3aab55bc0262d9a94d8436134d43", + ".git/objects/52/8552374521397637651e9a15079bd64091a8e6", + ".git/objects/52/934894159228bba2cda35b964e26edd8d08dc0", + ".git/objects/52/975cbb8fe9b8dfb8ae54f0508e564ef6dc4b42", + ".git/objects/52/9b839df46910e22c4239b7045fc861816e30e5", + ".git/objects/52/a0cac793946b3f48fef434d65443cbf14c1af4", + ".git/objects/52/b7e83b942249b7576000834166bf72456e4350", + ".git/objects/52/b900600258baddd86c60afeadb363da1cb380f", + ".git/objects/52/ba21d4c87739948b99ba86ebcbaf9d84cb6606", + ".git/objects/52/ba99777980c8a5e71c9827e1fd72375fefd42f", + ".git/objects/52/bfae8caf51f9cbf75241ea55ec80cb7510c099", + ".git/objects/52/c29a0b15100bd712f235ffee0d42946b7f2927", + ".git/objects/52/c32f99a43a036f3f2484cee2370b7fa686d453", + ".git/objects/52/c450c455522f2feab14c5091c80ef3bbacc948", + ".git/objects/52/dbb4ee1cdf7ebc9d5bff286f805430bdbf8d60", + ".git/objects/52/de58f73527b100dc45a251174a71565905ef4a", + ".git/objects/52/ed44f64bc0eeed61c319d65b14d99cd544ee85", + ".git/objects/52/f106dd7f97bc0a7e86c42d076b0da2eaa7f32a", + ".git/objects/52/f289822c69878098bd3200e5129cd29adfa8f6", + ".git/objects/52/f517980f7744207c365d6047ba2505902e5bd5", + ".git/objects/52/fbb43c23b7a212c5a2bd951aed3be951b7a6f2", + ".git/objects/53/15af50d55f524d6c66c76cec84a97bbf4ee4dd", + ".git/objects/53/294ed6577f045deb2c1d358ee1dfd7519961d0", + ".git/objects/53/341265741fc3bf8d5b47ea6a1cf3172b3cc0ea", + ".git/objects/53/34537a843cd860d0d5e937b995d426c686ab04", + ".git/objects/53/570d71d090b1699efdf97989184a55f06a9974", + ".git/objects/53/59316eb2d38c779b32a13a90b70782cacaacfa", + ".git/objects/53/636f1e3156961446f99f0eaedc454886e897df", + ".git/objects/53/64ef0b91fc24472006821f5eb1136dcbd4fec5", + ".git/objects/53/6ac766363aebb1c6c62f42e6d2eedd4ab276ee", + ".git/objects/53/7930c1e0c84b18d68de99e4ba088c132a53c66", + ".git/objects/53/86012b7a6bc16f5eb4b63ec8d55772a10cba04", + ".git/objects/53/8af58bbbdbc3ec5faba3c87a671b8802383044", + ".git/objects/53/959628fe63f2c51c1f770c672b4cefa47213c5", + ".git/objects/53/996f0d2b96c521ff077a7cf96430737fd07479", + ".git/objects/53/bc0d5adea00e2d06b2fdb15f460415d3966cc7", + ".git/objects/53/c5f1207d303f01dc9a947e4a81d2f614e2aee5", + ".git/objects/53/d9b718c0bc2ce4b9129f55e8636b4625e5d51d", + ".git/objects/53/f9a335c51095c110ac7a6327c0b4c780ffc854", + ".git/objects/54/1266f7121235abcfc3444018f5e7fed8d51608", + ".git/objects/54/22edbd06286c031e6145772f1c0a4bb810a0e1", + ".git/objects/54/2f54863c5525f20eba32ff97812341a200a4f0", + ".git/objects/54/30b5832758846193388c3949718ba6c693afe2", + ".git/objects/54/343323c382f916cce7ae28fcf8650e498b5def", + ".git/objects/54/34e811684d3bf9e9e8a6ba704c60be4f71b76c", + ".git/objects/54/437964acfa8ffdf26c15f6fd3763da868aeb7e", + ".git/objects/54/4e4bf4c4ef8b79068539f8f90821ef38a8b4b8", + ".git/objects/54/63834ea95aa35a44d7bf3961841932dfd17842", + ".git/objects/54/64c9cfea2af71a02e3c3a1d7b14ec14657b509", + ".git/objects/54/6968b452c73aa84dbb63581b7fc4593b53e5a9", + ".git/objects/54/78f22af6aaff7b4ee5cd0e789ff1cb631564be", + ".git/objects/54/7a485922de797b7b6a487e99f0114d4e21c733", + ".git/objects/54/97140887c0db8e9da1af2aff6fac3569715bb7", + ".git/objects/54/9c768fe8cdeefd2862ddee816605129ab22bb4", + ".git/objects/54/ae858cf796abc5a5a2f24c1056d3b0412913dd", + ".git/objects/54/b16d697365c30fad0e4a4e03187ed4ccfa6779", + ".git/objects/54/c1b2e6f019bc2d6ea83ec332c433e1b909a376", + ".git/objects/54/ce73099ab1a79b4a07e0479b0b218c69a685f7", + ".git/objects/54/e8a7231a718c756003be22456a3ef2fb15e42d", + ".git/objects/54/eca2c8a3d70f34b2566e796d54ee487b6411f2", + ".git/objects/54/f47198543eaf2b20e75ce55e3ca81bea896c4d", + ".git/objects/55/02013f8985d2ab98a6910cdea09373bd958d74", + ".git/objects/55/0a9eecd076ea705cefc8a36b00cdc7b90254c0", + ".git/objects/55/254865bbc413b8592277a1bba80412e1b8fc7e", + ".git/objects/55/283938633ef9f7d2b07331bac8487ee6d2b598", + ".git/objects/55/2a7eaac23e3db26df72fa4ebaa4a46d2eb87c9", + ".git/objects/55/2b23730c74105c72d13b7e1f364a63906bf382", + ".git/objects/55/31e441119bc6a9d27faf81962f46d57f2bcbac", + ".git/objects/55/3c4de0de3a0a7d0a3e02bd5694a7425b327454", + ".git/objects/55/42309684a8f27691202032713ed54c8dde683f", + ".git/objects/55/4f8382001eb0a83426739fb19b1dad2a7d694a", + ".git/objects/55/5c86df3a1fd507c4606d582d779b2b3a2d798a", + ".git/objects/55/6c6512f5aa6784ff87fd49021d2bf15dcac175", + ".git/objects/55/77fc45821a156c5e92f187417e644028fd692d", + ".git/objects/55/78f5ca24efdce22a8463ed7a3fbcf5f2f98ce2", + ".git/objects/55/82456b7c4c8e6cc02d0a45c4b65a2f93d5fbef", + ".git/objects/55/84fbe78a80413c22cb18e5c3a09a9bf225889d", + ".git/objects/55/851e131552a2afc69a0dae79b4d44517f3dfdb", + ".git/objects/55/97703c364df22db22fd9bb1742d97d3c6a0eb4", + ".git/objects/55/9ccfa9136a0d00798a119786063e53b76237af", + ".git/objects/55/9dd393de32fbda50da6f26eb6efb2ee8a88c19", + ".git/objects/55/ab98ac45e33e4c06073a7a6d6d964251a1d56c", + ".git/objects/55/abe63a64ca89502db2cb01f491d969323a9e2b", + ".git/objects/55/da24a62ca746ce16629631efd4a15a3e589133", + ".git/objects/55/f63627c36824e65965f535af599ed8e0b244f4", + ".git/objects/56/1327944ee3751d92244552154c6c5c44ad7955", + ".git/objects/56/1331be2ced15548183747aa3b7f75b99d8d60d", + ".git/objects/56/16e3079106d1d25f75b3b4c3d6aebe82e455c4", + ".git/objects/56/19e36ec2f3a357aca5e8ba72312cb4396f1dae", + ".git/objects/56/1d7751dade3f8dbc42f12095798e082fd45a99", + ".git/objects/56/1f3c426f7729e89af363bb672ba45d0613d730", + ".git/objects/56/21f8c28dacb1c4dd0642fdb35659230e0cbe48", + ".git/objects/56/2bb0c3060b6fa2624b83301b61fd15c59cc119", + ".git/objects/56/2c35736583798fef3231f53a4f1aee1f93bc0d", + ".git/objects/56/308c91da2a12bd5bc744be77249722a4c0bbff", + ".git/objects/56/34264984908a5713dc35edd0ff46ac928b96c9", + ".git/objects/56/38f66f17aac9f1c6e801fe162c94526cecc558", + ".git/objects/56/4dcab1a6a2f965cd6abb38f906dc4e414654c2", + ".git/objects/56/506aec16571814f2f2845e3726be77d8641b75", + ".git/objects/56/645bab6b7dee40a6d3525992fbe71914a4fb4b", + ".git/objects/56/8f9a907d49ff2a07de4e52206c48f4e3fb55ae", + ".git/objects/56/924d41f6017d84006ab1ec1ac843450f96d5ac", + ".git/objects/56/9600d167667ef07471c25e7b97b92e9e95d52b", + ".git/objects/56/99667f4fe4cb9233c19b696409e296b4347c6e", + ".git/objects/56/9b9c254a85812a976255f6886e6791228cfa22", + ".git/objects/56/a152c4e4ffda62c0cb549279817f07fabe5582", + ".git/objects/56/a77fd2dedb7084c9fdeec68dd0dea2c99eade7", + ".git/objects/56/ab7eed86c491e1a0f68c0ae98b5f9a3d3b6c73", + ".git/objects/56/af708c261aaee54be0ce179293ef132971ee14", + ".git/objects/56/b0f6d29917470d00d3d0888a5db9ecf569e52b", + ".git/objects/56/b66219d5516744c85ee015ff4ab2c7b9ed5096", + ".git/objects/56/e932d73aa120fa1ba870fc736846d598d54fa3", + ".git/objects/56/edb7c244a5fe9cf4b7fc3f0da9efd69de4ec2f", + ".git/objects/56/eed3c94400825d10186b4f7cded78c8eeba242", + ".git/objects/56/efe67febcad652fc114d83a1f54d86633347e8", + ".git/objects/56/f5bc0058b1cfc7f9db4ca3c13a3e1c3512b232", + ".git/objects/57/0ca0ccc729ab4f26492a37e9aa378f6ce1ba61", + ".git/objects/57/21b9d98d87e244631e7dca0e7270202b22fbc2", + ".git/objects/57/24b194d354e4d800e4334e72d5e564a01e09b4", + ".git/objects/57/320d1534466d9534b7cb591dd1305e0c382b30", + ".git/objects/57/44a060182d7c2740179c127e41fce72af634fb", + ".git/objects/57/60a14894b1c7c77168e39af32628ef431eb2d4", + ".git/objects/57/62be83129e8383f54606093925794da528533d", + ".git/objects/57/6525448b1c3ecf9f5fcc7a6e54bd2f4870db44", + ".git/objects/57/68eff4e5d5f1cabb5b2c5953607281a503999a", + ".git/objects/57/6c9daba28e976dac888478c98e6dc099eb88fb", + ".git/objects/57/76026211f31b9b4333b1227a5bbbfd785f0737", + ".git/objects/57/8bb8b189c5a918fe29c35ee2c4f85af0ff5200", + ".git/objects/57/9999596b4dd262fd24f00cb0f0b801b1cf3381", + ".git/objects/57/d24fa33359e9edc0d67fb701dde786c33e546e", + ".git/objects/57/e3093982b7954d41596b8531f47efff69abdf8", + ".git/objects/57/ee19722043b0e5561fe3111a7d8771af8ed213", + ".git/objects/57/eea56a0065de5e777d1e8eef728fb9df82480d", + ".git/objects/58/099f10f8aa11850892d6acd2ba8bf4646f5857", + ".git/objects/58/0b52614c4e40db03867dd770278f39fe5ec994", + ".git/objects/58/0ffcad690b1498ab61b6f1a8cab0fa9f1d3796", + ".git/objects/58/1e5c33d96db4764ca7c004e783873aa2eb1d8f", + ".git/objects/58/1fcc5c5e4d222c524a44f77c4d0d6452a01759", + ".git/objects/58/1fd6a856072891a76d6c4625924d1e46e86faa", + ".git/objects/58/415a0b5dc72b71d4910844dc6bf3e124359816", + ".git/objects/58/42a7c131ac99a2f6a5eae69eb6c9557717efec", + ".git/objects/58/4644158870d5f0c0c332ceecbaf1a989d3ea90", + ".git/objects/58/482b1d82e8efa3019be42132b342570536aeab", + ".git/objects/58/65217a4cc9ed5587e19b193c39e44ee9415e8d", + ".git/objects/58/6aacbceb74d82bfa95deff7d0aa416ce4f15e7", + ".git/objects/58/78419c931afbb930c0f631aebb9711691cda93", + ".git/objects/58/7b7e3c37d87a4f40dd2466af1384b7ff04b112", + ".git/objects/58/88401adbaeea6c04ca5f903dbc0fe59207f50b", + ".git/objects/58/9376f0766c808873bce89cb4aad497b613481b", + ".git/objects/58/9a8cd36119c5856ad3c882f106ac5e4bf70b0b", + ".git/objects/58/aa99a63e0068ac81cd02947670bcf15d96079f", + ".git/objects/58/acdf959614b888979cc0c5d2e122f1155ca278", + ".git/objects/58/b6d79b1d05e5f118e7b78b48f8a1ebec51ac4e", + ".git/objects/58/b844463a68a09f705917132396b6519986873b", + ".git/objects/58/b9c22dd3fcac363b07162dcbd65c30931055a6", + ".git/objects/58/bf4663c1ad6b044f78f4880029a8dadc166f01", + ".git/objects/58/c20d45e8c2237e09d65f9b592094f8fad48bfb", + ".git/objects/58/c3eff264da6c1a31183d52193f854cd69409e7", + ".git/objects/58/c482d58de0b33073f0c5454fbaa6f994026db6", + ".git/objects/58/d334bb1a8b1f4f835f784fee35c9aa0fe3ea94", + ".git/objects/58/db22f5ec4459fa3a4cccb354fd88b26569b60d", + ".git/objects/58/dc978b11116af44631ef22d1b9b4a9dd6bdd0b", + ".git/objects/58/e21151024db4b496d6dabbbec1b5641c435222", + ".git/objects/58/ed56d4d8c0dd98b105cd08b4622ee9df1c8c52", + ".git/objects/59/071a77ad908ba387cc1822538d92d806cb6d06", + ".git/objects/59/083c9d2da5b2727cc89997cd1348eacd255452", + ".git/objects/59/1e77c1d09e7fb0b1d4f5f1208fdc059d37a935", + ".git/objects/59/210e9fe9e77368c9e73547c2dd382da11c8f68", + ".git/objects/59/2ee06ce30beb5b376d7dbf3f697a907755dd60", + ".git/objects/59/303e723a9b79909b1e94478fb779ba95b15855", + ".git/objects/59/3949565c1e715af657549ffeca5d8adf1a222a", + ".git/objects/59/3c41618451b9df53888b6b290ff79a78a0298c", + ".git/objects/59/49b6e88de57530c98a3a9c6d85e81d3a4abcde", + ".git/objects/59/69c5ab5688c9376a528bd0e38f6d1da9bb08a3", + ".git/objects/59/721bc36b8f72f819d237754bf7395ae5611b27", + ".git/objects/59/7a30d37e384df7aa20cc908b9ba95a03243ee1", + ".git/objects/59/884c09c8985d158445fb0b7a86adbaf0796d49", + ".git/objects/59/8d5a38fa6595e11b7cb95b9d7668aa841a296e", + ".git/objects/59/ba41843715dcf2af35639d09b7f3d9c92380ee", + ".git/objects/59/d29d0f4a3d0beed92229c04c1b96efae2b9fdc", + ".git/objects/59/d2b601b49e90d8ade5e43e3ca77e8cb7a2ec92", + ".git/objects/59/d4bf7b3592e7d0bb434b42682bc62604e23c71", + ".git/objects/59/d78e775449cb5c5833fb8ae53b549bc05c4f7a", + ".git/objects/59/f0fc2ee794694c9d85351bfa5b044e6ef9cfba", + ".git/objects/59/f42c0669d1dd17b2580b794fbacf8a9c797ced", + ".git/objects/5a/05731bb2a1ce51f2cb0cc04c76f64bc9412fec", + ".git/objects/5a/0d68f946fde3b630f11a518b1cf67e9cdc9d95", + ".git/objects/5a/2067778dafa7f0ec217d229d5751ae32c8254b", + ".git/objects/5a/2354cde8a435b518a8d246eaea3ba76496b379", + ".git/objects/5a/2a1740f037642f9a58b7f73ff60076b16789e4", + ".git/objects/5a/30e3494d84ae870b7f7bbb082ca7a5a83ad938", + ".git/objects/5a/336306dbbe21bf5a091c618d51fa6abfe12911", + ".git/objects/5a/3c43dbfc84ed7f4a13257912e6e898bb1c611d", + ".git/objects/5a/418aed2d06d5a4ad644bfff346ea16b9a1f598", + ".git/objects/5a/423ef81a843bfe9ab40b7f5a04528564cdc69c", + ".git/objects/5a/478c3e22cd5cc84d7b2dbc6348c3ba3b829971", + ".git/objects/5a/5179f6d66f8e6243f16def9e6b3c7ac60a1bbd", + ".git/objects/5a/56b087c0f7a3468a0f2d116733784d80aa2472", + ".git/objects/5a/60c3d4e67a3eeb16a2c326f2f49970c09b0a4d", + ".git/objects/5a/620234a3448c11754c4cb987845ae126469115", + ".git/objects/5a/6ed824c9e682e495b643dfc55f0f59a6d50d7d", + ".git/objects/5a/80c23cbf332275f8155e42dc8fef27dd6f9776", + ".git/objects/5a/8accad2b0852d878d585fd2a67dbf961bfe6b3", + ".git/objects/5a/96b99cbbc1a0bd6f61c961501a6cc27b744d6e", + ".git/objects/5a/9c8485ad6dfb5c554bf94dabdf86fce0fd73d6", + ".git/objects/5a/9d3cf975d685dec87c2ec466cfdb86ad5c8007", + ".git/objects/5a/adb5dfb565bfc53ac252d94cfdce09e8f8f7c3", + ".git/objects/5a/c513782e74513c8a1ebddf62415570e42eaf80", + ".git/objects/5a/c81d1118ed3827c478d6478a395b7cc51e4678", + ".git/objects/5a/c9b1a5b526cf5ac16d24dc0a928bdbdef2ae7f", + ".git/objects/5a/ccb279e2fe360fc6f527d6c28326584773c961", + ".git/objects/5a/d9c34b317c13e8382b0c409c930d23a5d1e335", + ".git/objects/5a/f2aec1b5d128885b7847b09afaa571df801300", + ".git/objects/5b/121fdbb2a0dea27ddfc52aaeccd3e39dbc871d", + ".git/objects/5b/1a24795828c16fda65798d7c37c41778ae1a89", + ".git/objects/5b/2150e0332b7ddc0a5d02f68eef6417fab318d0", + ".git/objects/5b/21a172e3c4f3765ce759d5d75ec86abc63ef30", + ".git/objects/5b/22418e020a983805ef57c1a073dc20cc36301a", + ".git/objects/5b/2600699373621a5cb0c4a23dea3e9c4f2467ff", + ".git/objects/5b/265062e53880912a9b41bf3459df1a64bcddb1", + ".git/objects/5b/2da425ae46f638de55a449608e7cfa74d907ba", + ".git/objects/5b/345216ed805ea524963262e75a6db0680fcdb4", + ".git/objects/5b/4896d6eba6e5d0bfb3be133160ea729e5ff9f1", + ".git/objects/5b/498cc360f26747287627fe810f925ec3938cb7", + ".git/objects/5b/4c0b30478f349bf31aab8e57d7eab13234a5d1", + ".git/objects/5b/4e7caf15100abad8104518ef0e3e241f7c8714", + ".git/objects/5b/59664ac9ff5f5b84b9a7eddae01656c7ee4a0e", + ".git/objects/5b/59a1fe93f623dd04cc0e364a35565c164a0087", + ".git/objects/5b/5ba0cec92426f0e7bd4dc6013592b523886ed9", + ".git/objects/5b/5ebbe3c81c9c5626047f78bee23ac51528481a", + ".git/objects/5b/63f2240b9b8bb00b353f248319eb7eaf152f72", + ".git/objects/5b/6774fe01c3a3e412581c405a2d874c57f8b611", + ".git/objects/5b/67fcf6b6c9c3be96b2c95ef86ecf9b30d83c40", + ".git/objects/5b/6bc2cc226b1b7d7347e734cf144d1e169cb4e3", + ".git/objects/5b/6c2cf9d3d4e4fb301c778cef158e08cc05045a", + ".git/objects/5b/6d25ee724cc0ba531b62b31b355112f0c7af5a", + ".git/objects/5b/7458152a43de31308f0fa84915a29d9035cdd4", + ".git/objects/5b/b357ea9917804f667fce5ff491335356be2af5", + ".git/objects/5b/bb4c538409fd18ae55fc52740cb606bb95af78", + ".git/objects/5b/c1a50521abe6d5eb101f335dc3dcd62c98cc81", + ".git/objects/5b/c1f0622e16a92ed096250dbceb54e7b45397c9", + ".git/objects/5b/d3ec343465386d728e6d808884e32652945a2c", + ".git/objects/5b/f47c71627aa1920b70810902cf58e55c1a96d3", + ".git/objects/5b/f6a1a9e0e6cbcd5fed8ff6efb4a9ec0da0de47", + ".git/objects/5c/03bbe1c6baa00631b37fb9ec509b898156895f", + ".git/objects/5c/1640e8725cbefcbaa9d361ad1abfbd65632b88", + ".git/objects/5c/1f55fdecfa72694169088afcba1fb6082dcb10", + ".git/objects/5c/2863107d71b76458bc252f247e8b230bceb227", + ".git/objects/5c/34c1ac0d40794227a9ac2080bde88c47fdf1df", + ".git/objects/5c/51585c40f2eeac3d7b6b7083d530855cb70714", + ".git/objects/5c/7af833fef784a2073d7de5772ff29c9dcef5f9", + ".git/objects/5c/998ba749c66e7305da94d2a258aa02058ca2cb", + ".git/objects/5c/9b9075c503e57ca3315adbdbe88f6ffc7e172f", + ".git/objects/5c/a6f388d803d394fd69bbb25feab6f13917385e", + ".git/objects/5c/ace7ab2a22725a00c81a765b84f140f57f681e", + ".git/objects/5c/ae1ad7b2a027e530890fda8e4f87966b94f71a", + ".git/objects/5c/b1fb5ceec74caa5024cb77c0bcbdb4aed1edf7", + ".git/objects/5c/c709ca00fd76f119aa6d104026d2aa39517b9c", + ".git/objects/5c/ca752eb8512b4f27345eec949b0215d045f53e", + ".git/objects/5c/cd52f6fb32fb23b4c01e3bb574f014a4fa9b82", + ".git/objects/5c/cdc4430b77fbd89199c9a1f515405757bbe19a", + ".git/objects/5c/d80c47c04afeb50f36260d9878799beca23bc2", + ".git/objects/5c/eaa7c5b82402587759a4ac6dfc1387a5471666", + ".git/objects/5c/f1e4db7511eb4cc9598901b95821a548f577d5", + ".git/objects/5c/f7c84b51848295f03afe570d2a0a83263c5149", + ".git/objects/5c/fe7f212bf4f038ce4332b9f06762315e373170", + ".git/objects/5c/ffd02368e654000ad5657326e70cbd6882b087", + ".git/objects/5d/050bf8a7fa440e92cdcbad6c3d93e58c3fe14f", + ".git/objects/5d/084fbdd262180ba6bb90552fe6bc490958fbfc", + ".git/objects/5d/1a17327950df3d34f453dda6906d42d2b1562e", + ".git/objects/5d/28f535d9be08e5beac569760ee914b38db9148", + ".git/objects/5d/38cd0a274d9d53ad23383da9f6f32adcdc1520", + ".git/objects/5d/3aafcc26da767d83cbb6393e94453424d4445b", + ".git/objects/5d/48359b8ed2a4c8cd1d42f58884e2638238bb97", + ".git/objects/5d/4b142cc0e11e37a0af879ef9eff72f05def1ff", + ".git/objects/5d/540105ad6385bf1cddc00eda866786331915e6", + ".git/objects/5d/660844f1352c2ac14d0f800171a6d1e540485d", + ".git/objects/5d/8338c0d5223ee54535e316111a2ca31eaba6a8", + ".git/objects/5d/83f14d0e485bca5a370051da9bc4e04cef3b6a", + ".git/objects/5d/867a6d760b151d9c6b8a78961a360aa61e2519", + ".git/objects/5d/87982051ed9475c1fd5471506931a2454411ef", + ".git/objects/5d/a8be53a50fb3996e21a3d8c33299c47bf0884f", + ".git/objects/5d/acd4009a8ec03b712c628efd15b9777c976f7b", + ".git/objects/5d/bb8bc4c1db6d5af11858a1e112ec74794ea463", + ".git/objects/5d/bf69db0fc303f56e8dae7deb48d84679631a06", + ".git/objects/5d/c01a8be0d1d2f101135c99a69896a4547a2a0c", + ".git/objects/5d/c41a777ca2e4855a044ec1dbd68907fbef3ebe", + ".git/objects/5d/e3accf1ed2d048be2025c93896355d7c067475", + ".git/objects/5d/f215114655afed14df586667875caef275c8d1", + ".git/objects/5d/ff22d139c63828f781f716e25057969307ae92", + ".git/objects/5e/07a194ff1597b51da7c009959132d0c9fc55fa", + ".git/objects/5e/0c058ac64414e022609830fa1748656dc93052", + ".git/objects/5e/0db8b960be5bd61167e654924d95912222b6d8", + ".git/objects/5e/1209b609137c9f77ececcea02ed5ac7a7adadd", + ".git/objects/5e/13d3a028f96aa49c9680509471a80cc5a0389d", + ".git/objects/5e/1d217a8125eb6d457395ae5a7a3628eb4425cd", + ".git/objects/5e/2b3aec1d9b7d78de8b4e1e33ff42504f2daca3", + ".git/objects/5e/3243ad3059d9cf0d62ec42760517f48545cafc", + ".git/objects/5e/3b6f99967652625ae172085cf22a9e8919b6bb", + ".git/objects/5e/41561547ed9b7e5a6b529403704581aaaff4fe", + ".git/objects/5e/471ca3b94087e7db6f99d475049f5281f17c9e", + ".git/objects/5e/4a67a68349ff99cb77e4e7accaeca54c5e6726", + ".git/objects/5e/4f8dd3e1f733541e5ba7655c6e8d97a15db8af", + ".git/objects/5e/6398a6e58e370c7b658639425023046aa60eb5", + ".git/objects/5e/698cb5a656e01d6e9ab97ba7bafc16d678e2fd", + ".git/objects/5e/7fdc4908f98b0d37388fb51695c7215e9e1009", + ".git/objects/5e/8beae6b12dccd8066ae51306eddd52f80a4176", + ".git/objects/5e/91e8ae224482a8c1ad87f8e486ec9ee1164261", + ".git/objects/5e/989a5ff0a183fd9c7908625edc7ea5d56a23f7", + ".git/objects/5e/af8ac580bb6e9a1df59db0c8f82a90c21de4c8", + ".git/objects/5e/c35296f6b552fcac47814605f3b199d6e75f6d", + ".git/objects/5e/cb62b507591d807e9d85af563477dda2b0f93a", + ".git/objects/5e/e96cf4d0a27dcad890dbaa6faf114f507bdd3f", + ".git/objects/5e/ed714839a74ff21e3bb4371e2227cc6cc0887c", + ".git/objects/5e/f9220dec71d8f24e92704bba1b8fa96b2f9151", + ".git/objects/5f/041790de67c0fdb03dc6f23b0fd39b7c9e9a24", + ".git/objects/5f/0da0c1aed64f1792079132b473181830d6ec25", + ".git/objects/5f/19970dc53357da537fb3cbfe65ed91a586e094", + ".git/objects/5f/25b9ab13793252217024537436a57664ee5c5a", + ".git/objects/5f/41ce3b516a63ef53039211aafad8d6debbad5a", + ".git/objects/5f/5cdfee935887ac38c04ae96ac5051eea741a54", + ".git/objects/5f/60a868aa1622776afca0e2be390b304c914179", + ".git/objects/5f/6aee2752cae3d7369990fd9d27540ddf79fd3c", + ".git/objects/5f/79bc823abe4e7af7de12b03be9542d794964a9", + ".git/objects/5f/7ce2ed5876927e251a0394f3a95ae0dfed2f15", + ".git/objects/5f/84957513738517fd722edb3c31adaa68d52aa5", + ".git/objects/5f/9253a5534f8d63af43789bbd77f7fd34c38da6", + ".git/objects/5f/a72a79f8c6e22a29b8a62600b00bd047a9b205", + ".git/objects/5f/acd8ee2fe7304f86b4108e661579a921066bb8", + ".git/objects/5f/c0b62216fcc98d3104d3b557ba52456dfbb1db", + ".git/objects/5f/d2346175fe610b18d11f502ad813483cf11b34", + ".git/objects/5f/e0c49d9e34355fccbb503724a3f2cf971e22a1", + ".git/objects/5f/f0a75b6687ed872542d394f2a8eac87a599b27", + ".git/objects/60/00c7b92039f3891c48f5947954b63c0a4a460c", + ".git/objects/60/0a80e93856c0765c983f02908e41b0309169e6", + ".git/objects/60/0bf569dee46233797731909fd869547e037481", + ".git/objects/60/1781017cef0f0f857cfc7654eee145191f569c", + ".git/objects/60/2798adc96cdedf2fe0971dfe52d44dc06a0fa1", + ".git/objects/60/2ea4e90e3266512059a913ba86b84057e43247", + ".git/objects/60/40c5785b9b7a141f48cb60e3a5a89adcbea7d8", + ".git/objects/60/41bbf97fd29df472e9d65e58733b7365f0c86a", + ".git/objects/60/41e92fac63cf34d3da92e0eff53c55c2b20cdb", + ".git/objects/60/4258c5adde81e67c7b97e285154fc483b71641", + ".git/objects/60/458edafbfe683c2d5057f757ef61e3039a8153", + ".git/objects/60/4aff4f58d880a9de33149a246646c685d04e6e", + ".git/objects/60/4faceba3daea01ed739b151b899d7eaa894257", + ".git/objects/60/68f7530ccc859f52e55d573aa69f35c0572990", + ".git/objects/60/6ad534c98c71bc3327d0ef54148f8f25098f6f", + ".git/objects/60/8837879826565d2a7f55c62dbf3fe33e35684b", + ".git/objects/60/8d5dda2e8ea444126057e30963cd6ac76382d3", + ".git/objects/60/a7e0c308a397e0184586f0f31006cfc256c9ab", + ".git/objects/60/b4313ba8d455071ad711eb320707f34eea6518", + ".git/objects/60/c58123de47b7e2b1cbc48237626abccbeeec12", + ".git/objects/60/dee6706baf1d29a6a79ffeb014127209c3f107", + ".git/objects/60/e40986b0a76a068a8165e198b4fcf131c6cb9f", + ".git/objects/61/17f8636fa1eb9004aff8cb136fba201b22bb95", + ".git/objects/61/1a0231bd8f88ab9fc4019127f2ac614dfbe131", + ".git/objects/61/1a6721d38d3eb6e1884120a80b68bc3ceb8244", + ".git/objects/61/2478e8e2cd3b9526c4c190f9bc7636f41c35b9", + ".git/objects/61/254a6422dd6ac5b89f72f95383d09947fd1089", + ".git/objects/61/32ab01c4557694a78e385417c0ea133261f27c", + ".git/objects/61/590536df668f793b2eb0ce5efcfad5819b1eb8", + ".git/objects/61/5a98f4cf70ca4b0028d72ec212b38132f77337", + ".git/objects/61/5bbebc300b9ea8c9bb57f36a4f2a27f21cb20a", + ".git/objects/61/6872c6c0b5f228c1f5547d4a9ef9dc0cd94e7c", + ".git/objects/61/6c612e611cca20a9835a8fc9171f74b731992f", + ".git/objects/61/6e881b008123a7cb96d99523d28cb332e58862", + ".git/objects/61/81744f839bbe810ea3bdd320baac964effb8e5", + ".git/objects/61/8bfdf52c5b25d25112e1c7e0eea1128ebab97e", + ".git/objects/61/a332660b013603cdaf68e8f6b2ad14929128bd", + ".git/objects/61/a37c0f19187bcc6b9c19da184b8b269cce58c0", + ".git/objects/61/aaf30437dd4f3a888df1d52ac379e4fe04270b", + ".git/objects/61/af5a06183439325d2782c53dee348969834348", + ".git/objects/61/bebeba369c204c251ac74b918c1e467407a188", + ".git/objects/61/c13cb55cc43801944c5b0133129ccb185b6894", + ".git/objects/61/c1f225828b29834c8710101046ef9f516f2b01", + ".git/objects/61/c6306cba1c50fbc996b483f51aa3e36164f8e4", + ".git/objects/61/e0bf5c66d322f8d24826109ce3c7e5bd64fb1b", + ".git/objects/61/f4ade4613d274adca7f230196347d728ade6dd", + ".git/objects/61/ffdd7aba1de9513572379697ba152038f44a27", + ".git/objects/62/0ee97fd63bc1858f6a7c80927d3cacd7bc31ee", + ".git/objects/62/1aee050f83ddf726c9adb0292fef8fcf612f46", + ".git/objects/62/249d07a12f399bab9e824ade42a37ac45513e2", + ".git/objects/62/3afd1759d2542c6e4170b4a50118a013f1ea1c", + ".git/objects/62/473e0505b6edc73c8ded6e52a105de7bd5d3d4", + ".git/objects/62/5890c979e56867548e27c65bbca41b519a5750", + ".git/objects/62/61b040dc6ac63553c1b9d22d37ad5990b38eaa", + ".git/objects/62/6425b8d3dab5595c90f576ccc4e9ede5c60ec1", + ".git/objects/62/6adc40b2e71482ffc1e63a39e0223787a4b14f", + ".git/objects/62/77c2e456a14fde3078aee4e51abe57519596d6", + ".git/objects/62/7cf2111cb66b7ea14ccc59cd69ab249fb40e03", + ".git/objects/62/8eed49c65a7c45fe3ecaf4997547bfdc2a67a8", + ".git/objects/62/b0fadc50e915acc0e3b2982bf7f5e133babecc", + ".git/objects/62/b15be60d08f9f3f6179c9e3cbe7dd94199f221", + ".git/objects/62/c09c7f77469df690d204d609dc3e794b9a6742", + ".git/objects/62/c375ebc7ffee6751ad961d033b63deb76155d4", + ".git/objects/62/c77a44914913d00835e530be00984511d34d1b", + ".git/objects/62/cf51d4b008664db876abe17c80dffc8e908655", + ".git/objects/62/d238d97401135110afdfc4fe2130c5a9cfaea6", + ".git/objects/62/fb7984d8f549a783bcde0de4c7532411ff01b8", + ".git/objects/63/25e5fb5ebf2d78ae78f4c552fce21ad06351e0", + ".git/objects/63/2dfb78bc13b0e1713b1a80535403a3510671d5", + ".git/objects/63/351c9a68799ef2431d68a1064c67dc83232b94", + ".git/objects/63/3a191a3bce76ee672c0fd4e26a36399557e1ea", + ".git/objects/63/3b41c1c50085ebe6a1cbdc20391fd9211bc1fc", + ".git/objects/63/5e97a0cc470b78f131218183ef7f2efb7b53d7", + ".git/objects/63/63c0482072d65c0c91dd4157f3c00c25cd9f32", + ".git/objects/63/6aef7cae9459d8a71fb52516be11a3476994c4", + ".git/objects/63/70781584071ad9b2e5ee378251d2764bea33ac", + ".git/objects/63/71ba88de8192d68f71e4740f1564ddeeacb5e9", + ".git/objects/63/7415c0c2a3dfe3541842debce336445f8eb53e", + ".git/objects/63/757e76ef29d97264e5621494f2aea85ca96ab9", + ".git/objects/63/8fe7efaa022766783103968c421de289aebf6f", + ".git/objects/63/96c321364d63dcfd22686c767d3dde3ab1c306", + ".git/objects/63/9af403b58b0c99c728d5d0757f22bc358be94c", + ".git/objects/63/a2238e1685180e29d04d55f99f2ef453ff76fa", + ".git/objects/63/a5b78a79eed53cc6d5bffa7c9708bee579de18", + ".git/objects/63/c5e213ab4d996788f3a3819da397c4cc8411a2", + ".git/objects/63/c8e4b27dde632045751f83f984ee889947b002", + ".git/objects/63/ca40fda8d921aa0f4f3db4987393ccc7b4b65e", + ".git/objects/63/ce941b30f4fed489aba9721c6c93d60d00a492", + ".git/objects/63/d17df4e06c1f394d6807ef3e8e03a278b44b79", + ".git/objects/63/ecfea4cce1dabf860c525e9fa319237519bc5f", + ".git/objects/63/f40363b5036691bf7267092a97bb5c0c983a3d", + ".git/objects/63/f60586165c222e02f9d96800c5feb44425e358", + ".git/objects/63/fd2dbf50f3f41ac3d98614b84fe7c84d5c7446", + ".git/objects/64/0ffaee52663c4d567ce521b02d5452aad11989", + ".git/objects/64/1779be5aafe6d5449d3cc832e302225947a59f", + ".git/objects/64/18f7b29c7534105df6cfa2845505dbd4f65db8", + ".git/objects/64/2299ec9f2c0a05ef39d0f9f54b1ca8adb1c9d8", + ".git/objects/64/2a8b99e2c77e4017ef8a90a219bbafce8798a6", + ".git/objects/64/32610bb63409df56f86285f260c0ec8aa939ec", + ".git/objects/64/35bb82e0ed14448c13330da2a54dec17780706", + ".git/objects/64/38a0fac77d4323c818bd720f1df44034a7fc47", + ".git/objects/64/3c6f962ebb38ee80b655b499d215b1ba910521", + ".git/objects/64/414e4727d42b5f24eaa0ce422aa7a3daac0830", + ".git/objects/64/4417e09629e9f200b88756b2b87e4fff0b46c0", + ".git/objects/64/44e467ac89e18afffd0a39ba5dca47e8a0f968", + ".git/objects/64/64471b789fd3dde43068a13048e3884064c393", + ".git/objects/64/688ad10bcfe0ef81d32edbe6326d321f3a2a5c", + ".git/objects/64/7018540f1006c3fcbfaad46be2b71d497c3793", + ".git/objects/64/8680b06c4bd8dcf071d1e4eb9b21dfe0588bab", + ".git/objects/64/8c89a21207c12d3e43014fd00fbd79165a3f76", + ".git/objects/64/909b79ce4db8eac364406bf05de9d58bc17d4d", + ".git/objects/64/9630d5aa92ce3003995fc9a441242fbe632f0c", + ".git/objects/64/9703d80dfa21e086eeea7f3a0229b1ee785234", + ".git/objects/64/98c16e71ab5c3e142ef0a0c59259d3cf34da4b", + ".git/objects/64/a0f5e7f6cf0bf5a0378e0852b289a66af4a971", + ".git/objects/64/c44985ef0d9a1fb70bb2a0a96bf8f45cf78757", + ".git/objects/64/ce16ef067aa66e59305f5a5fcf022e6f8a0b19", + ".git/objects/64/d633003d746d2e43b420670e3620ca5a0fefdb", + ".git/objects/64/da219a00ef495d801d0fd72ce4c1410913c582", + ".git/objects/64/e2f8c438cf9039ef7faeadcf88992f51f509df", + ".git/objects/64/ef58b92e49a928ffdad92f7d42910090771f3b", + ".git/objects/64/f895f63eaa1bbb781653c0829b1c54d3fd3087", + ".git/objects/64/f8c9328c82ae6ec0e8535cd1593fa625155a54", + ".git/objects/65/03eab907028e91dce6090a3396c42a3eafd935", + ".git/objects/65/0cca78fc6279ae8e9055582b5cb2f8f8b121c3", + ".git/objects/65/0ce66665dffba169fb14bcff090712dd198e66", + ".git/objects/65/105959b99d29bb05733aee6027fe29a0bdc0d4", + ".git/objects/65/112d39e1d953a5c2f9b9b622edc045de5ba35d", + ".git/objects/65/2868c21e1802b70767b93656027b1280da0829", + ".git/objects/65/2f63838ab964ba971fe802dabc70c749f18ff9", + ".git/objects/65/3bc79273787aedecb7fed3bc7c924299f80ba2", + ".git/objects/65/3d2852a0cdaac007d4514ce4714f04d0c5051d", + ".git/objects/65/5379e3bc30b7d878ea26cb491b7bfd43cf62d1", + ".git/objects/65/578619b76cf3706232e913933b44efc8b32d8a", + ".git/objects/65/608afd279849a449f1b2f9a64d57d27ea1cad7", + ".git/objects/65/64ec1a96002e69650f8487710dbb1dcf8045fb", + ".git/objects/65/6ba48eac1f40772ef4e724872ee9f8296d7c72", + ".git/objects/65/6d7c71cc857a1a8a2043a437f444aa1edbd2e5", + ".git/objects/65/78e363bcc76e6c82098fe33813091433a1bba9", + ".git/objects/65/8b778b00a481d7473f488941afc3d21fd288e6", + ".git/objects/65/8d0446b02197c2ac91e0c51d29ba29d7b185c4", + ".git/objects/65/8f58dc7337208d16c9059e6b29bb918baca04c", + ".git/objects/65/a8921b8a6e6b2ffadde95994053f0ba6d4fa06", + ".git/objects/65/b287faa640ca1b7bf03927ea70f01495b52160", + ".git/objects/65/b6768004ae0df22d4e432c988a162b6256baeb", + ".git/objects/65/c5926678315aaeb35998525465d49bb8c8e7d7", + ".git/objects/65/cabb361973b4263dedc884f39041a0845aebff", + ".git/objects/65/d287f0052545b93bf74c15b29d7feb6b00a209", + ".git/objects/65/d37405018cb5adcf1d7b870ade90a49e12a58b", + ".git/objects/65/d4a2f822a4769beffbfb169e80f68a4a50d4b6", + ".git/objects/65/e9d5c3e820be0177af564a2fac5fa8e7dda47c", + ".git/objects/65/fbcd8e942784369a3773a84219fec4430d8981", + ".git/objects/66/071bf34279736bf886a9a7f2010d8d366ff787", + ".git/objects/66/0ea5b8ae4c650815f18e7fd0ffbf40a833d0c8", + ".git/objects/66/183cfe77985580882b4780a37dafdf1774adaf", + ".git/objects/66/27178b8e1f2fdab0ada62c9282a6a438adc153", + ".git/objects/66/447397514d0423f141193e9be59f97cec8ddbe", + ".git/objects/66/4b0d6b3c48c85ca7eff5d184b4909e55f919f2", + ".git/objects/66/4b83a3e96c7146a4c4917c49443259493df196", + ".git/objects/66/6a387929c1e7dd31889a26ee5a26c7dbece468", + ".git/objects/66/6dab6986a676ec81741eb238b954e723cc78da", + ".git/objects/66/755f2d84078a3589b0f2e991ee3110e4f425c6", + ".git/objects/66/7cf4814fd6f4d53d6125413318ac709752db45", + ".git/objects/66/7e7ab8e09531e9707255b4865d8324649d881a", + ".git/objects/66/82e9e0d60606f135238f850b203e3881038e36", + ".git/objects/66/b6a13202402ec8b48c73afcb3758b29a9be1f0", + ".git/objects/66/b9e63245fe48cd84e094836863805e90149814", + ".git/objects/66/c3a9b5187ff1c4b012d7e5a6bb1d42b2c082b6", + ".git/objects/66/cc1bd83cb8bf6170e57fb363e78878024bc64e", + ".git/objects/66/d62e01eb9474963141306367eb5bc563b4ca27", + ".git/objects/66/d76c0f30c3bb0e3d45b25df9edb7f40e5d4ad2", + ".git/objects/66/d8f3a3d39f69a66737d4a3d70ed44d60c96582", + ".git/objects/66/d98d71a26cb41681740c6c825082054863a6ee", + ".git/objects/66/e7ff6e980684256aae57b615603d9f305ad6fb", + ".git/objects/66/f078947ce0bd7b00740379cbe23cb3168793fa", + ".git/objects/66/f1deb7430893015460207da5f9af492db74006", + ".git/objects/67/0422d9842cb3d587bc41fb06e859e037507029", + ".git/objects/67/0aa27a06a2df88674b126d02051c4a1caca8e9", + ".git/objects/67/0db134163753ffcddea49fa07dd23c273e75f5", + ".git/objects/67/0fe031d4ad7daaaf376b5507be92f794cb90fc", + ".git/objects/67/2241926c311919923da9ccc06c3641ca184fed", + ".git/objects/67/3dd00b1872734d6890c5e6406d7398786ce5b4", + ".git/objects/67/443118f23a92fce351ac6e87e48cc478f93967", + ".git/objects/67/546eb7b256a29a06b6876ef6869da4d80f729a", + ".git/objects/67/5df0c99b54b9df746283996dd8d7c072fd5f59", + ".git/objects/67/62d53cddc1603d5a1846ae5bd66b95b9be2549", + ".git/objects/67/64a762f45b672c32a793c5cf94e9b0b3a73d68", + ".git/objects/67/72e2e8429e2ba060816e30c1dfa907bffa61e9", + ".git/objects/67/77acabf9408a192be2ca7a47401148e4cf2f11", + ".git/objects/67/7cbcea89fd7be908743e78998cadfc3358a514", + ".git/objects/67/7dc878cffbb187b38057b912331cd303d152a4", + ".git/objects/67/8398666226e81357f33a27632d10ee6e0a1322", + ".git/objects/67/8a6a9b787b753e60b34ee1762fede71373b01e", + ".git/objects/67/94d19d6f813f98de3585760a8c446c50a46bb1", + ".git/objects/67/a157bb966acdc8b8cfd29ab68d92dc7a8aa8b5", + ".git/objects/67/a8eec9ff7311ea84607c676ea29cecb5b45e53", + ".git/objects/67/b8702ddcfe6ba7cbafb6602101b271577dd64b", + ".git/objects/67/d219062615249f771fcd32ee8fcfe754eb4c87", + ".git/objects/67/d5e417a54724fcd5f9f8e011a86afd6c3e19ac", + ".git/objects/67/e4b6dd056eb16dd61a6f06ac2e4fba969b5a02", + ".git/objects/67/ed4fe0425c225a0b9ad99273e0e056ae70a300", + ".git/objects/67/ee242e4666a0261c30da679e05d32f6553097c", + ".git/objects/67/f2cb6eb495c0118a141f2d59fdb4f2c0f96e1a", + ".git/objects/67/f46ae5d9fe46d75849b14662a7c0378345b832", + ".git/objects/67/ff4a521fe932d38eec61e2df102317675927f4", + ".git/objects/68/01135f2af48818b0cd31eb3cf1249a83522f17", + ".git/objects/68/1c0f3ce65bff3dc01aa75a49cc65e5d86f1c79", + ".git/objects/68/1e99b0d9de998129ce6c7b1ed2c32ff8a7fcde", + ".git/objects/68/1eb97a7b948781f3aad6188a32ee2e74337b94", + ".git/objects/68/23c390d2900b8a48c314d4b2b817747079f68c", + ".git/objects/68/27eb07bcedde20c21320b7daf7202372e36919", + ".git/objects/68/3acdae938ccf4879b728852ff820dfe09885fd", + ".git/objects/68/419f6fc5855336e09b764b30bcb35b07367f15", + ".git/objects/68/503cf3cde6839936b1e43fb738bf1d11e8987c", + ".git/objects/68/5cfd02a26b66443e3f4e4693f63dfe9516b93f", + ".git/objects/68/7aa9f8fe4685a4a7427a57b67e53413668ee11", + ".git/objects/68/7eff86be9a5d95a375f25525a81c517b173671", + ".git/objects/68/825fa77f9d5420e1ce303e21a4dabe3fad1917", + ".git/objects/68/82afa1e2a5aa915192dcfa95a6fa8bb9a0928a", + ".git/objects/68/8528c7ee540d15351d27ef09e24a08ce16b156", + ".git/objects/68/8c6926e02f98f931fc1c4952c11fafe547608f", + ".git/objects/68/90e91169a9a541942c6c7813cc1215397d5c05", + ".git/objects/68/9bf99f98a8d39800806cc226cbf76dda5c1105", + ".git/objects/68/9dbb9bdb92bbde1fae77f90ceb8ca669ba1d89", + ".git/objects/68/a1e6abc8a07a02c92fb1e98e7905f898d98a52", + ".git/objects/68/b1bddcf519e354afd713cbe40ca09a6dc3cddf", + ".git/objects/68/baf3ac2fa56866eb669ad94d6d418973c18344", + ".git/objects/68/c58d8eb5ff9555f90164a99cf5aed92418a025", + ".git/objects/68/c8c5778c19dd99d133e3c16782184911bdfb55", + ".git/objects/68/c8f39ef0d374afa4a1b8aaac50c7b65c0c3940", + ".git/objects/68/e536a94d870b27107d7a33a7e5e53be708fb56", + ".git/objects/68/ea94478b48adc4576560c72d446bf60ee2eaa7", + ".git/objects/68/eb0b4e39134814d66595b7f288a02c5e8f9b77", + ".git/objects/68/ecb03ce5154288ad67eef2cb722fc7ba17d602", + ".git/objects/68/f0b456ccb0252b833320d14223df34d2c7477f", + ".git/objects/68/f62ce395ce7e6df3520f8f714d56a39314e333", + ".git/objects/69/14f964fe2e08a9e55d601a2df6d5de9d49a5d8", + ".git/objects/69/1723757e71c64ef26f8f18f2b727a8c5a1f61c", + ".git/objects/69/31413a85aec621dc9550912b70d24410d1d7cd", + ".git/objects/69/3eee84421202a8feb595cadec3e911aabae665", + ".git/objects/69/5588beb284c9dd705ca8c7659451ccdc2fbb41", + ".git/objects/69/62d7effe49b44cc1aceee09db494adb6b88058", + ".git/objects/69/745ac9bb8641aa51d17f0325b91f46bdf31de0", + ".git/objects/69/774b9374d3e326ca9dcfdb2efa88b3a2f321a0", + ".git/objects/69/812f5378f7a186b9b8b30cf2df64b4a4cafa00", + ".git/objects/69/945dec2aa502871d43686aec68d4b9e3fbbda9", + ".git/objects/69/a413450b87978b95782ead35b0c7828f813301", + ".git/objects/69/b3c9f51bdec1fb788958f11bb13aeef23ce5bd", + ".git/objects/69/d8dba6e6d9fedcfeaffe404008944b52dacaaf", + ".git/objects/69/d919bea469442256721bd452228460c08c03ed", + ".git/objects/69/df1c496acf6a64ae96cf3d1923abd2c2306f8d", + ".git/objects/69/e4be7dac98fe72b8cc3156ab4c1fa21669b224", + ".git/objects/6a/110a7505983e959347ce4b0dd688c7eb3914d0", + ".git/objects/6a/139fe72f8a36d4fe735fe862e012d0424fef0d", + ".git/objects/6a/13adf97cba767df4b1b179df36b741d87a7e62", + ".git/objects/6a/19c6196f56c9d020f156a904a355a568f254f9", + ".git/objects/6a/1ccf8c624fbf54777ae1c748d9eeb1470957d0", + ".git/objects/6a/21c5a154d3afd2b9d39dc5626e28a6b6295b96", + ".git/objects/6a/3de23a64440c58cd6146b0ced83223f82155c3", + ".git/objects/6a/451306a216b503c6b397d309223c568477302b", + ".git/objects/6a/51a0833cfdcccfe5a42ee57bae2fdc0d7c54a8", + ".git/objects/6a/5f776a02223ff1eb153fac1c8ea6b6ea829385", + ".git/objects/6a/78cad49fc2b828ec9b9adebf23dc87dabdc874", + ".git/objects/6a/82d5716a62dc3fb3ad77366b5e02398acb70d2", + ".git/objects/6a/88a68c4caf74fa9d62dc2c5dd4d08c423e32df", + ".git/objects/6a/8993e7a469d60af69d46a5eb16806676c69a86", + ".git/objects/6a/8c4d04c920573af1d39e31557db017754908bf", + ".git/objects/6a/8d82fb13f6ee3da7c8fecc6ae12fef7838e67c", + ".git/objects/6a/95d53a15c4ef0a6ed3be0b332f3071edad99b6", + ".git/objects/6a/9eb337833de0ab7d26be86c6ef7c27e9ba5be9", + ".git/objects/6a/ad4d48f02a89c427ce75c40f5a02804001d8cc", + ".git/objects/6a/b54473158a8a7b4d627940ac4ded2b429b14e8", + ".git/objects/6a/bef2c2f0238319c53b0fa05dcdd1cbda47d3df", + ".git/objects/6a/cfafb7e088e4aab5b73f67bee254a5e475f393", + ".git/objects/6a/def303bb4225628305f2115722862876c8ac38", + ".git/objects/6a/e10182e8ac42f27e9c22c03b4c61393ee385bf", + ".git/objects/6a/e10670716de2f4f7b5833ae17cdd3e834d87b6", + ".git/objects/6a/e27e07a2f5d2a45e6bc8e6a72ca175a0a494f2", + ".git/objects/6a/e7c7cb5a1aa910a2289b54225ef67ff5350c71", + ".git/objects/6a/edc3908b173ea2af5207dbfb84442873b78eb6", + ".git/objects/6a/fefc119efaf4420bbfc8bc1a796985f8b8ed33", + ".git/objects/6b/0186b12f63eeb9bec3b4529c32f6cf1ce0df3f", + ".git/objects/6b/037bf9da82786399d3f2ccf0210e1bc6f1ad85", + ".git/objects/6b/2a7d4a16da00925cae546c74f18082b569d5eb", + ".git/objects/6b/35a6848b171f40c2532e8220266eabc5bbb4f4", + ".git/objects/6b/36caa3e84bae58347c84527a75ff1f82b8e540", + ".git/objects/6b/3b761491b1ee555b885950b97bd7257ea8c45f", + ".git/objects/6b/3c7846a199f736846b7a5adab45259674b777c", + ".git/objects/6b/3fe5f6ce416509c488c38495d592120cebf433", + ".git/objects/6b/488e9f645fe850f47988db55baecd92f0d2e0d", + ".git/objects/6b/49e6264c47fee92be6847aa762d7801e65a2c7", + ".git/objects/6b/5238b07f690e2639f39b0ae806b9a0909948a5", + ".git/objects/6b/65463ce0606742d7fd7d0c29173820f0db5c0e", + ".git/objects/6b/6bf9b9ceb8a63481ef39ccd0936daefc051574", + ".git/objects/6b/77f8e977c46378592d72c219c2dd90e0c64044", + ".git/objects/6b/7a67c01a27106845e84f581da727c7b3cb101c", + ".git/objects/6b/843b369aafa539906a557dfb8ea7f12dc88e92", + ".git/objects/6b/908e7ad137a664d81d40a439b3916b6622ad96", + ".git/objects/6b/989f17e7dc8dd5183ef39dda4734e86e16b3a3", + ".git/objects/6b/9c4fb679dcdd0b818a3902788d9f70d154534b", + ".git/objects/6b/a2beebebcf33fe4f04fbb349d63c750ab75ac7", + ".git/objects/6b/bb4f2db05bd92a6c125c257ac332ac1eac4144", + ".git/objects/6b/c10d5126cc08fff70622d241c6dc506e7985b1", + ".git/objects/6b/c7bd58bb84f5a91277d0adeba77a5e1b59bc21", + ".git/objects/6b/dc74d50d3396959c7860ba16d5339e1825de54", + ".git/objects/6b/e131f2570fd3aef89a0e23f198878eb01956b6", + ".git/objects/6b/e4b82b68400443ae1634a37d045dbf97f1959f", + ".git/objects/6c/0f60a0f205043502d7f8b3300d869e05969f3e", + ".git/objects/6c/11aace7ee8bcfa8251cc69451ac2d3ac04bc1b", + ".git/objects/6c/20c460895b4271eb560cb606e1e8527dabfe76", + ".git/objects/6c/26a297ba590ebdfb22b3daccdbfa986c2ed64c", + ".git/objects/6c/6a914e82ad0ea96c7942752ae46046681308bd", + ".git/objects/6c/7f3227e71e8c73d2e6328793b2d47159c54eee", + ".git/objects/6c/8ff7cc8dc35d2d3d472e8e116a6df30471a0fa", + ".git/objects/6c/9678b8e51b866fc12295257445ee85d5b89d7e", + ".git/objects/6c/994ef5b6989564db3c60fb87cb036b48120c8f", + ".git/objects/6c/a3a6df7619df7d946f83bfff465e19952857f2", + ".git/objects/6c/a87d619a1258296d17d967957350f23c1cb6c0", + ".git/objects/6c/c4e3d331bac09a99480d4ad34dee3cf9f92a5f", + ".git/objects/6c/c4f73150d970fd49afef0d66b2c89129f4dcee", + ".git/objects/6c/cb4ae4ffd1d0c057a4e8715993fb1cd716ee08", + ".git/objects/6c/e299dc16830ec1908d963631aa7d69be6a9443", + ".git/objects/6d/0faba014e98434a32f0d847f585f5208a94a23", + ".git/objects/6d/30dad406af962e07d27580abaf2f769cdd477b", + ".git/objects/6d/30ee73be77f0d36fd94b07f0e13907d41db440", + ".git/objects/6d/39c8e825f17ec6e57be3a00b9962bfa0eb3d4b", + ".git/objects/6d/4bae9e578dea4622463813b1779732e6198313", + ".git/objects/6d/72bf8723aac0a2d62746c41bac856c9c447a21", + ".git/objects/6d/7711f5b661e911d0272b00ac6233211482feca", + ".git/objects/6d/79681569e5c2867ef48ea1bb6c5068d49ba6fd", + ".git/objects/6d/7c1add01789a5ee077f2b692d914e3e1086700", + ".git/objects/6d/8021dd56ddfacbcfcb4baa9aef359612dc87cb", + ".git/objects/6d/8253a35a4d897ba868994395bde92f979c7ac6", + ".git/objects/6d/9884b904688adbe83e65b434e9c5c670cdc092", + ".git/objects/6d/9e6a82e4e59d42cb030c1a367b783c7ef03360", + ".git/objects/6d/a28f65414dd076f89a7d920dbd463830ccae1f", + ".git/objects/6d/a993b5ace9726f453ca9ef6c6fbb2256401a4b", + ".git/objects/6d/b24115a483a1983550e84a507d0a9fbf120b44", + ".git/objects/6d/bc73de7f5230672bdc1585a2923ce6f0d90ac5", + ".git/objects/6d/c41fd59cad9480fdd292951966120be7e601bd", + ".git/objects/6d/ca6e4340539e848efc68bc01c4ca5033fd4899", + ".git/objects/6d/cd5433d178d8f34921cd9ebe87bab24a61a00c", + ".git/objects/6d/eda4a30a52fd4f77dd6881c2d095928481f423", + ".git/objects/6d/edb1f54ef13872e7a24fede0ef7008ae15132e", + ".git/objects/6e/079076953780cd682c8d4d7e07e344e3209af5", + ".git/objects/6e/083c31d5578693beb554219d017dfc9a8602df", + ".git/objects/6e/0bfd8960278cfe1f455bc0030c15bfc04034ae", + ".git/objects/6e/0df80a176315a6220fb7a9f041bea8db29d441", + ".git/objects/6e/1f687183df98ee0c21bbddb0619ced33c9ff08", + ".git/objects/6e/2572ad59fc0c6838729130c5b900bf9d724692", + ".git/objects/6e/3c6a5f8f7a4bffb9886f549a837b73850d696f", + ".git/objects/6e/44d6ca7486ffb510b866c43356168ec75e9266", + ".git/objects/6e/4606ef7607f5605afa55166bcf709e40eb3e93", + ".git/objects/6e/4b79226cd229212bfef88e215cdb791149bc4b", + ".git/objects/6e/4f66cc43d1b938446b7922ba86bce0e0c812a1", + ".git/objects/6e/5f1fa2983df9274810bff1ca867806f0e761a4", + ".git/objects/6e/600a988073b0d63b0f2edb2b3970609bd237e3", + ".git/objects/6e/6427f64d8f0158e620424157928b077f4e1bde", + ".git/objects/6e/6ba804611c36ea390c2562847a0faaac4d40fa", + ".git/objects/6e/7a7fd579c3666c0e4aaa1c52eaeaad78a2ee45", + ".git/objects/6e/8f113ac046d4677795f25d9007f6f55f6e2e3e", + ".git/objects/6e/90edbf093413f0343798d5cc2c1710eaffd11d", + ".git/objects/6e/91ef6565eb4c86bf351057ae93345756a161cc", + ".git/objects/6e/9ceebd7638801b45cfd9b5e38ce89ad0b1e749", + ".git/objects/6e/a98eadab700d946f499b1fef04dde6f5e01963", + ".git/objects/6e/b2178255ad54453f0caba24b205f62762420cd", + ".git/objects/6e/c017d170dc4c832349baba5c733dd8f6832ca1", + ".git/objects/6e/c871b23832de3d2842fbdc6943a5f2ed61872d", + ".git/objects/6e/d3506d5d2958bf3a640984c18d4e76eae74945", + ".git/objects/6e/dabda6e3664376db3953e8cdd7b26de3b9e1bc", + ".git/objects/6e/dea5f9ad843ad8526c4272d07885fca8065217", + ".git/objects/6e/e3e07e250c05aa720e29bf6e5ac1b642fed7a0", + ".git/objects/6e/ed947e8eabb5373fbfecdc0bca637dc0cbca99", + ".git/objects/6e/f6298a65bbb181e18ebbcfcaed38e3e34635d9", + ".git/objects/6e/fa34f921641058c2b324b65818021e82a6826f", + ".git/objects/6e/fc6ae807dd9faee1d72fad3c2ffbe5e43ed583", + ".git/objects/6e/fcf63d9f8106d078bb31fd995c8eaeabeec742", + ".git/objects/6e/ff3bae50b48150fb01ae86b20855cceb0dbf6d", + ".git/objects/6f/03846c73185272f4e664dbd629e95222659dea", + ".git/objects/6f/07ce1138ca099ac0f0419541544baa51cb5425", + ".git/objects/6f/1c19c92fb172db0e2d83daa73920941b80fd53", + ".git/objects/6f/1d4d324979521a1e28e0d5fa7473917fd1a837", + ".git/objects/6f/22be12392e2dfcaaeda01b48b411c29137d9f0", + ".git/objects/6f/2cf3de82f04f9e3eb60f61c84b0246d56eeace", + ".git/objects/6f/2e3b0d87400cd5974c990e929c3df1d77e470c", + ".git/objects/6f/34861514b0b8020190eb25577bad2827ce48c6", + ".git/objects/6f/458f731941024fd9d8f3d371a14693e4305f2f", + ".git/objects/6f/4822df435be818548c82b58ce80dc84ed768ee", + ".git/objects/6f/51fdbae2a95472de0b14f68b004097b243443a", + ".git/objects/6f/6089acf7331328429b7129f1833ab4f7aa8efa", + ".git/objects/6f/63cafee63c04d12da8b0d08ad84b0d78e48d9f", + ".git/objects/6f/6b9170a53ae3b0ffa0f320206ebed9e8c8bd53", + ".git/objects/6f/6f44ff73781b43fecc34e35dfad52ec88831d9", + ".git/objects/6f/6f85127b7763dfcffc78b00f7eb7d3f60c0520", + ".git/objects/6f/78b14e7d7f51eede3f2d3bebd482fe3b384ae3", + ".git/objects/6f/7c74d6419e75bd5cc619a155984c2f533bc82d", + ".git/objects/6f/89830e2c359182d6770c6a892a279178ab4563", + ".git/objects/6f/920b8441f0e2364c376ce0716ef1e7ec4ce02e", + ".git/objects/6f/a08e1310bc3c78a5dc497a97cd83fb91923bde", + ".git/objects/6f/a7977cf25986b44338a11f669e304c7711933a", + ".git/objects/6f/a7a82efd4dee799a6b705f30c6b23d12e235f6", + ".git/objects/6f/ab7e86431de2661fc535b9122335cbbf074841", + ".git/objects/6f/bc78ccc9f767aa3de49589873d0cb033ba515c", + ".git/objects/6f/caa2c3ec543d27f4eb5f9c15ad552f4d4bb8f1", + ".git/objects/6f/cfbe99375e512c14835e3b79c6696f12412329", + ".git/objects/6f/d17d1c1ab3df50e882ae91c61e1a94278db488", + ".git/objects/6f/de056726b8a802541411a888afd07ea41486b7", + ".git/objects/6f/ebbb2f2bcfdc6a76592003bcd53ad6073ca805", + ".git/objects/6f/fb67393b6408ff0fd0349b12ca6a0bab2b6df4", + ".git/objects/70/0096bf3d827bf3ac3b6dbe277b0e963ef7ac9e", + ".git/objects/70/051e0a92be4378397b2317923b1d7eefd23fe1", + ".git/objects/70/0bd8634c22d4bc5f10873afdb12202167336eb", + ".git/objects/70/185a3923c34f0481f7cfe455367d0d514771a9", + ".git/objects/70/1c7a8eeca026ffd83cceae4ea8c0dbaaf1d473", + ".git/objects/70/4b9ca5a9a32561c9657ba629bc587f15760295", + ".git/objects/70/4faad166e7e0b639e39bb0879f3b0a64212dfd", + ".git/objects/70/520ecbfb50b30ebcf9cfb49578ac4ef0aaefe9", + ".git/objects/70/557e295633f0b63c2f5f904455becb0c15bb36", + ".git/objects/70/6447d19f3fd8ad496d71752fc38ad770d0378f", + ".git/objects/70/655a219c1d9d8421d767a310f699646b885c99", + ".git/objects/70/8b977afd6f19c0b78eb523fd360eec1a479c45", + ".git/objects/70/8efea74cf2d6580a89f1a1e4db9773ce2a3c02", + ".git/objects/70/95f572205452a0bd6e0fa74dd30e4953207a33", + ".git/objects/70/9da8c320d394eae6797b08f25da5a569784300", + ".git/objects/70/a737bbf1ec49d9a3d07727f426fe4f64db54de", + ".git/objects/70/b58095f9878169ccd99d93977dac9c7e7218b2", + ".git/objects/70/b7760522b6e3838ae9e23d408712359038937e", + ".git/objects/70/c2f6d03b851a283d4f010a76932c71d7cf7d36", + ".git/objects/70/e11d160e886fdd79f46b391feeb815f31501d5", + ".git/objects/70/edcb9b9f63d7f5b17d23687b1aaaf6133fa82c", + ".git/objects/70/f6b31afe3e4bce867b8e9f81e8fae72d79f0e2", + ".git/objects/71/0149e51e1de61ce9e1b0cb6de1e30a0ba6504e", + ".git/objects/71/02b2ffdf37d6cc0c52b677b49cc0a600e88a25", + ".git/objects/71/03a5a05ca77ec7f22a0c10f723a2b4a48d4a03", + ".git/objects/71/0ee4ded6ef5fa1f2449912d7ec472f10d484c0", + ".git/objects/71/11f68e2bddc489f6da5b4494991ed13fce1de1", + ".git/objects/71/1655bba0e0722b950b97c2ada3ad9edc17aa08", + ".git/objects/71/26fef142d29eff6a33fb219c8c343a33b13976", + ".git/objects/71/3122dcd740523f71048c79b10880ec61f58447", + ".git/objects/71/34c43966d7eee2c0e307a71c283e8b82ac1a3a", + ".git/objects/71/399af0eac6230f54d54423ea79afb3ae4707c6", + ".git/objects/71/42932128a206f4379207ade2449d6374aa52f6", + ".git/objects/71/48e61614094fbc11cdf08574f4d34e08c910bf", + ".git/objects/71/4b958946680ce39cec20773fa9f360884b632d", + ".git/objects/71/545a67ba3b9d06ceaa896faf9e1272094e6a50", + ".git/objects/71/5c687cf8345a4eef890ad50eaf94acb09c48f7", + ".git/objects/71/6fe9739c04e88d313e98e1716a45e494c2e562", + ".git/objects/71/75387852d25a3164da99f10c7d8a2621e60b1e", + ".git/objects/71/a806223d0bf3d903116d718b1b54fa88f7c065", + ".git/objects/71/d480003e895978872784635076b6e2bea692b9", + ".git/objects/71/d9c6cf5724b720b5c3b57b6fc61dd01fa51b76", + ".git/objects/71/e6251accbc3e0cb2748bd7e96983ca7d1fedb2", + ".git/objects/71/f6f69f1c82503f1a3a7fe360f3b0e7b787e7ed", + ".git/objects/72/29387b743e6604ecdb9540b46afb8dc0af45fa", + ".git/objects/72/34ad7c00d94699b9b187ad22622f2376670e1c", + ".git/objects/72/3ccc070c1b65a864e67df9e0d44a7e89f76099", + ".git/objects/72/3fb367dbc77cd28fdf1b6d091b653b2d9d31c2", + ".git/objects/72/4343e40fbe02ea9fdfd87f92ac892cd1bbb5ac", + ".git/objects/72/5a2f6faf8a657fa85f047015e2cb25634a4596", + ".git/objects/72/5d0686891c18e70bf5811feb4ee5d389c89fef", + ".git/objects/72/8ca3d2c4f27853a528a90ec1ba4e4aa92cd51e", + ".git/objects/72/8effc58570a1a517f03150b6a2f792329b8805", + ".git/objects/72/a296132a3fb7e25908ce7b037fc843e7dfdd90", + ".git/objects/72/a6ccecdb94cb37656a33836bb3084a68ebbb96", + ".git/objects/72/b6ea588657b5c01fbe80ed002abd000341a484", + ".git/objects/72/bac7ca3081534db1509524496d9855461dc9ac", + ".git/objects/72/c675ed377c6cc1f89863374a200c0ee4bcc250", + ".git/objects/72/cbbff54484af28ace95dfd9c3be51729b105f4", + ".git/objects/72/d5072396aa875292ed6dff36fde7c5ccbc99f4", + ".git/objects/72/df2e1e5e234e3f1ef4b7d11eaa31ba36769f62", + ".git/objects/72/e3d5cbae30705912581711a58d3e12f1e34e03", + ".git/objects/73/1289a90df507ce5a7ef1fbf0cdf53908891e1b", + ".git/objects/73/1b55e16e4ff7d981c15ecd5253bf455f2da552", + ".git/objects/73/501f2822f518920961fdcf00b6fa619533060e", + ".git/objects/73/5cecfa7e1e32a0edba2180e32910a221aabf07", + ".git/objects/73/5fbf34067bcbb8b9b8e2db13746cb2165a7798", + ".git/objects/73/68c3ace7d9984cf4655a12df3958e7b0618d1d", + ".git/objects/73/69ee944e01f439916828002ede7d404ec037e5", + ".git/objects/73/8aeba88f2c500d244c36eb2bb9808d39308788", + ".git/objects/73/8b7ab1883ab4efdcb77520d1835054456a7c11", + ".git/objects/73/8c64199f4844b7ebc929d64738c53efa5a6fd0", + ".git/objects/73/95b957c94a1730892a484e15276dc79a3a293a", + ".git/objects/73/a51662050d68aa57046c5b48a0bed9d9860761", + ".git/objects/73/a6e7c5d34f3176015dc33e8c964be957774838", + ".git/objects/73/acbe2de6d60a5dee1a3852140a85a8e7b94d01", + ".git/objects/73/b7941c61134327c7457ce8b531afa1a6e1b76e", + ".git/objects/73/d6c0a9ad639b5387d03e3c4a2138a29bc0a9c9", + ".git/objects/73/d70a5dcf221c9306d4faeea14b770f10fbc38d", + ".git/objects/73/d98ae82b133cc5df863ea2c25dd38359272345", + ".git/objects/73/e7fefc91951c4cdd2eddee131490fd83024c4e", + ".git/objects/74/001c2b374566212ed002fb400d0e9d58ae8015", + ".git/objects/74/0486663e1b8e121896931fcc68037b91beff48", + ".git/objects/74/0e65d58d6d436e42229a11f50a185226e15cd9", + ".git/objects/74/11c425a775396bfb42da7ae3a203dca7af3fba", + ".git/objects/74/1f67115f0c865456110779144f442cc628b210", + ".git/objects/74/29b5ebd1248d0f751e9d47568bc208ab219b08", + ".git/objects/74/2d32771f684817e25c528272871f6c3e39d618", + ".git/objects/74/383a26b76b3529a24d9540d3589f9d73e8d139", + ".git/objects/74/5326249b06e4948fd3b34009aa6ca83229aa84", + ".git/objects/74/69bdb2411f1d900325440eec5688bb0281b82f", + ".git/objects/74/81173a2919d58c02cca87e9cc55e88ef28729d", + ".git/objects/74/90e3db4ccb433846728f1d8e30f989d4673955", + ".git/objects/74/94e5b7c97d981b6a182ec75ed54d68f10e87af", + ".git/objects/74/b3f06b0e5efb6252fbb3d07192edb3e090bf56", + ".git/objects/74/b817ecea3b0e5b52f1a6110c03be1e194c94be", + ".git/objects/74/b89e8a3a4d8ff3d4329eadce41f5794a5a2450", + ".git/objects/74/c6ba82af345885f7a367e594b217a6a96d9551", + ".git/objects/74/cfe602f1324d9381facb23da94b220dc3f3a8a", + ".git/objects/74/e8498c23bf728f9ea8cacbc0df6936e80db3fb", + ".git/objects/74/eccabf72da7abfcaa4a92e64c6444103937eb3", + ".git/objects/74/f9eb9a960744c241a08f0abc68e14f1470cd2e", + ".git/objects/75/081f70221718b8751eb68f1d876b6aa591d459", + ".git/objects/75/09d8a867324a80f940dceb503adc3fd9cfcc82", + ".git/objects/75/18a9b724db86df171fa860ded21a433eb6d038", + ".git/objects/75/260162a97a1179f32f94ef0b589f75263529fa", + ".git/objects/75/2a4a56174e3f0d96b4fe5e3c929a62c6d34a96", + ".git/objects/75/2f2ddadc6d4eee8152ea046ba32fd6c0cb9070", + ".git/objects/75/386ee2066e2200844c5cd422c4932c0032d764", + ".git/objects/75/3f81d3e36c5832a8645d6e5e338f5b5c33340b", + ".git/objects/75/539c3b5c2f9933a7553c067b7df84cc812eba4", + ".git/objects/75/6f1adc5e05d4d3625b59bc25744fd2d86586d9", + ".git/objects/75/7d0aed0735d45c6d1c85e4ac26d948206bd0c9", + ".git/objects/75/82e7911cde0fada29a6eaf599dc8cf68dcdce5", + ".git/objects/75/84834f93e7e2af87163b1b079305ce906f0b84", + ".git/objects/75/9a304446209e619b1e1d498a8618f1132c5d59", + ".git/objects/75/abc0b0c3d013979a940218adbbc0e1c2c87d56", + ".git/objects/75/af26262f5d58115cafa8509b731855b74f0648", + ".git/objects/75/b1a5b97fbd6b518369fd2cee1adda0002477c0", + ".git/objects/75/b54d46794c768c2d7349d41d7b5e49fa9caf23", + ".git/objects/75/b7899d5881a4cdd2e2f7f8da6b56e27d7811a7", + ".git/objects/75/cb1f6ccd3d410e6d836f234fb1618cf6104cc2", + ".git/objects/75/cdb8734b7ca4eba3fe646109dfe680e6967794", + ".git/objects/75/cef7792c8bfab18400be0906086482c1cee951", + ".git/objects/75/cf173d87bdb59640ae7b8b1fc36f8d76980c24", + ".git/objects/75/ef0acff85fb0b87dbd83c97f43e83d161e738f", + ".git/objects/75/f02caea1e69a344be0b095907fceeccaf83c44", + ".git/objects/76/017c5915c6409b2816fb515b1f43073a65046d", + ".git/objects/76/02a282acd5deee42d67f28dc793329d7c1d3f9", + ".git/objects/76/1c19d9e86240b1b597e1c51eeba7b8c4acd612", + ".git/objects/76/30f775b39b841ded5ded8ab6df2775296169a9", + ".git/objects/76/378335f8db9101fc57d71f4e0e3bbf152bf6ff", + ".git/objects/76/4dff29fd5b94494d82188cf53b58bec4cbf4a7", + ".git/objects/76/59f49cceeb70ad5cee283dbe1a952ceaa714f1", + ".git/objects/76/6058a2fa632f0c060a8f1995ba413f1522f5fb", + ".git/objects/76/ae3cdc5ab4ca0fe1e893a52b20951de7b4b27a", + ".git/objects/76/afd09532acf707821e4f991ce231677dcb61e3", + ".git/objects/76/b4303d44cb42833b489e119e885aa6bfafcdb1", + ".git/objects/76/b53bb95232e6e60a31221ea51f727cba566458", + ".git/objects/76/d2378e1f52dffba6ff97d7091a6315755c3cb1", + ".git/objects/76/dbf64e5e87162d3fef3a444a3bd606f2619abf", + ".git/objects/76/e270731bd3aca7ca5874a54ca592481d84dadb", + ".git/objects/77/07508189edf29bdf2c6003ddfeb543e97e94ab", + ".git/objects/77/19af0464710da6f7d1910c6d78e621ebe90f53", + ".git/objects/77/1c601aa0f502d35ef901cd6cf0c32f9fe72456", + ".git/objects/77/31e8573731ae29ab8cf63dee19e6b39c1a66d3", + ".git/objects/77/32f4fc3d7c810988f82b56f217f35d6bbdb311", + ".git/objects/77/4043a418136dd2d5b267049d3654431dbdcf34", + ".git/objects/77/43b0987631432b7cfd54e539daa0340821aa6e", + ".git/objects/77/4c473e773fcd921589dc6562c17fc23d630394", + ".git/objects/77/5259b776fcf3b1dfb4af54aa9849ccc3076ba0", + ".git/objects/77/5959357c03b94eaf62a26c51e53fe87afc2b26", + ".git/objects/77/5e3a3c682a2bfb25772cf58e17c7894cbcacbe", + ".git/objects/77/5f37e7deb83f37ff42060356330cb1dbfcee7c", + ".git/objects/77/61b699c09eaaee0611611d303eaf3150b0ef18", + ".git/objects/77/65258bc1272e5e262aed48a2865e89cdab061c", + ".git/objects/77/6ade3987f74a539d3ea74493d1b1c5e7f4a410", + ".git/objects/77/73076c6c867aee6dd76127fd630cdbebbafc5b", + ".git/objects/77/7e49fd6bbc87e06d70cd1d61c1d192a7eaa573", + ".git/objects/77/953dc9a7be52f55e489fb28ead1ef3fb7c63a3", + ".git/objects/77/9adcfd201dd54193dca6ca430bf99a800d3011", + ".git/objects/77/9e3f5b2d7e36eb4278d61bdaec8299653a0ee2", + ".git/objects/77/9f6838b3de0d0bf3722d17149a55c1878542e9", + ".git/objects/77/a48e1593dbd8ed981bff9b17418b880878e607", + ".git/objects/77/a75a7842c5b2bc9a9262fd1ed271a84937b126", + ".git/objects/77/b9d1a2caa1277afdc7978ff4b6cbef08c68bfd", + ".git/objects/77/e425d3f26c0e8f591191934d223619162d3c50", + ".git/objects/77/f5b572b49c50e00845f460cc16b3a64b584f60", + ".git/objects/77/fa538fab46ff4e0c9fcd6cca4db81e1aed7209", + ".git/objects/77/fd0969e51a1fd45a6fceca711f671e34e5106a", + ".git/objects/77/ffae73bf51a607feb16ea2450a1063d811aa22", + ".git/objects/78/11c83710f2942c6f531bad93f8c80f12a0011c", + ".git/objects/78/17d261f80fe143c4de14688896ab93d2a1f9bd", + ".git/objects/78/1a3dfd259fa2b987ef5833488cf46646cb306e", + ".git/objects/78/1bbae62839e14327c38bcb4e51120cc061c14b", + ".git/objects/78/2252a1c9ab0d732ed73a4892e2504570c9c2ba", + ".git/objects/78/3449ba4cba9d6e0f4d73a0d86c16940ca6c16e", + ".git/objects/78/4148ee5be10593b7c0daee10205bf84bd144a4", + ".git/objects/78/48f68170c909674e443b8bf62f7e734a3c855f", + ".git/objects/78/4ce2b085f9423c3959b4c84bf869d444e0ecab", + ".git/objects/78/57f54fad408dbc92d66950af72c3e674d739e0", + ".git/objects/78/57fdf1e6bcedd33b8bb644f41b6ec4d6f859ac", + ".git/objects/78/5b5fb99c26d160807e7f9d38c014dc709445ab", + ".git/objects/78/681c472dc335c4d00a196f98e376f631892298", + ".git/objects/78/7cf61b851450be96f48006f23f124e0f4250ed", + ".git/objects/78/864f1a036f0ee5fad38308ea0da2b7672577d8", + ".git/objects/78/917c97f2790ac796a7867fad23b960d8b26b0d", + ".git/objects/78/98fab82453117075f6b5ba3481cec234dde4f3", + ".git/objects/78/9ca340e08fdb33711ba306f501ea22bab90276", + ".git/objects/78/a1feb6cff13415b05b9e5a2db97caffc3ebf40", + ".git/objects/78/a2414f3cd77a348464c79fbccff0f71a6c86d6", + ".git/objects/78/c539c29e7c8a1ad45d54f3d2463b174b3a896d", + ".git/objects/78/cba3e4a63155172a6881a655c51b4d1973f9b1", + ".git/objects/78/d6bc94a20d5edd811612acfbc1c8d02cf54133", + ".git/objects/78/dbcd7e6058dbac07bb997b56e076da7563ba75", + ".git/objects/79/077e0c7b83b64f126eca581177ebfa2eafaeb5", + ".git/objects/79/281495ab195a01ed2fc433ab8fab7574b29fdb", + ".git/objects/79/324641a3bdba8dfe066c10974fd150788f3067", + ".git/objects/79/32d331c23a330bac688526935106281108f000", + ".git/objects/79/6b66ccb2b1abb09217344612657d4fc8a5cb8e", + ".git/objects/79/8194049629373d869938a0e5f6d86d27f10dfc", + ".git/objects/79/a66440bb3ef95cd28e8206e1f6cc6e61f93782", + ".git/objects/79/a796e6847f342cd80234904fa6f4c51ec529c0", + ".git/objects/79/a87dd4e39c3685a47574726802ead7b557c3af", + ".git/objects/79/aeeb0773cc78ccb210312d7af6b355a6a06de3", + ".git/objects/79/bc04423e9eb3b19405167d70d2ac047691dc8f", + ".git/objects/79/c5a12e33a4c59e04aee195a020d0d9e6f34624", + ".git/objects/79/dc0892f53a629e99c9b0da5631923dd89e30ff", + ".git/objects/79/dd763050808e4dd03a2f8aff13dfa9ca23359f", + ".git/objects/79/e22925005aa12eccf53391ee32788924380655", + ".git/objects/79/f454f83f5425aeed3e3911db0f353b45c0c4a7", + ".git/objects/79/f622499c6a6420323eb857dc1b939dc7eff368", + ".git/objects/7a/18990d84da9230cf7605c1fed2e7a55ef24c4d", + ".git/objects/7a/2d4ebca410678a467d05f365f10653e5b842eb", + ".git/objects/7a/59762aa4e60eefd44eda57b43c3da1bcf66689", + ".git/objects/7a/60f60c9e32dffe78298c7659d4a6790dc824ba", + ".git/objects/7a/71296976f47d70d213b577d1877fc0520466e4", + ".git/objects/7a/839d07f69f6d3ab4939a15b34af457b29d62d4", + ".git/objects/7a/8cde207370c462e844da5d9cf50d0c8c6f3b09", + ".git/objects/7a/8e24f5b715ac0883592eddedc243e82d72079f", + ".git/objects/7a/90197be8a72a65519b279ce856839553c9c066", + ".git/objects/7a/99cf894bc007571aa5311e5c72aa75e6de6c81", + ".git/objects/7a/b1c9a19d4e034ad45e101e764a543de3b04ab9", + ".git/objects/7a/b41210f457789f37d80f3fe0d1a97dd5be0cae", + ".git/objects/7a/d4ed637e1e7c6a070138f0d7ebbfa11ebc260a", + ".git/objects/7a/f0510b8e116c3cbefd7caac153c2e0e9544664", + ".git/objects/7a/fabe9d76eccfafd86347594f8efe225bf85201", + ".git/objects/7b/0bebf1ff8077fd726f6dd23cead87b96356fc9", + ".git/objects/7b/13f8b5a7d48a2bdf54e0864e0280e312c02610", + ".git/objects/7b/142a38f6af7a51626ee00664fe874218294b99", + ".git/objects/7b/1a8fd14f100f3bcc7187914f4aaadf9dc74d29", + ".git/objects/7b/235448bebd120551a0130741949e9f50652714", + ".git/objects/7b/26aad85e390e54fdddb4d5f2a51ac603fa546f", + ".git/objects/7b/3f2e996725d0eaf71fbb200a22b3184a45b8e3", + ".git/objects/7b/4b88f777b89ddfbf4385ece39025c67172f954", + ".git/objects/7b/4f17b6bc9c2aee1a0749a65efe305c8438c2dd", + ".git/objects/7b/58a9219a1d8dcc49b797473a98ec4986dbd40f", + ".git/objects/7b/6499408cb517704651de91d91e1ec12dd06f07", + ".git/objects/7b/65b516b5785122477d870f3855702d0ee096f0", + ".git/objects/7b/7db018fca957e96caaa1ac3afe1ff42552b3ef", + ".git/objects/7b/86ac5b311593f0781b1703a21627fca3feb4a3", + ".git/objects/7b/9dcd56fc6419ceb1e54eb20adb5645296568b7", + ".git/objects/7b/a4d80bbf60441b43ee389cac3aa14d7b0781d3", + ".git/objects/7b/a634edebb26fa27f92dfe76877e51ca6abf1d6", + ".git/objects/7b/a82ede1ad26d1123b5beae901592d73611d8a0", + ".git/objects/7b/b9ffe07b5db6ecb8b26efb74bb6368deabeb0c", + ".git/objects/7b/bb481107a55260c4ac163e8b9939dfd344f384", + ".git/objects/7b/ca565de5b7a831c960b2d17511090d543fba79", + ".git/objects/7b/d1c9979f2e32a53b2d27865b23302b387c28da", + ".git/objects/7b/e63d2dd059b633cd113454f1ae27aae94abe9c", + ".git/objects/7b/eb9330d552b3f25e5d3d101e97069c86e04fe9", + ".git/objects/7b/ed7805104a80c334fa931f15b979568778c520", + ".git/objects/7b/f29801387ed045954038f9d4d77d035d91b202", + ".git/objects/7c/2a3691bb7d5b447e9cb0dfbc882005fb3e1579", + ".git/objects/7c/351de4f1f592e00c02eca21c2055e2e4c038c8", + ".git/objects/7c/38dc7f4ab98191f548165ebf2979ad7af502f9", + ".git/objects/7c/4e8d6d8b521f5628c96becc83a3dc0e69bcd0e", + ".git/objects/7c/5233aac8726fe2f78d3c6d18f779af27aa35e5", + ".git/objects/7c/5662d03179c5f8cf5a4087eeb3427bf85ea6cd", + ".git/objects/7c/575af5eec08e762e6ecdd5cbb9de70600534dc", + ".git/objects/7c/5d9f2e6552f197a7f4a818483eb68a397a1869", + ".git/objects/7c/6bcd743cd06669af07a87831ecb8b857e833ed", + ".git/objects/7c/7363119ed2d8c821bb063a06f11b0bf793b51a", + ".git/objects/7c/76595ada04a35897b6c2f04228d78ab0a694ed", + ".git/objects/7c/84402750346422495814984538be41930e6b89", + ".git/objects/7c/876a33697824db88ed2414ec9c089814eab0c3", + ".git/objects/7c/8e404e32496fd930dc2955c0e007e6b2442466", + ".git/objects/7c/9728c03327c44ed5b78b964157c04b8825bd53", + ".git/objects/7c/a26e9293e9fbc954830dcc35a2b888d153f510", + ".git/objects/7c/a91bef9dbd7fa82ad310ae04eb2c344d6b362e", + ".git/objects/7c/a936485a9e7ecdc8ff7f17adcc0277583c4147", + ".git/objects/7c/ae22908d54bba8325135259187c7c01b6d0025", + ".git/objects/7c/b4dcd0212174f6411ece59f5755ae88c82f125", + ".git/objects/7c/c18f21a694943a8f0f4eb045a2b22e48b8e6ef", + ".git/objects/7c/c333f661f31a6462f5f27f8226c3055189238c", + ".git/objects/7c/ce36dea92954ba0c65cc052e29ae9abeecc180", + ".git/objects/7c/d30481dcb02f042a2ada7224cae9f16ce58ee4", + ".git/objects/7c/d98578a70adf71eeeb9afdacf1659680d9173f", + ".git/objects/7c/e1160bcad2a4eeec821731c0da8644f5cf6eb8", + ".git/objects/7c/ea95ddc275aa53ab83adcbaa905cee041e1719", + ".git/objects/7c/f4f60c3fcbfcaebf461409b1d5750ca2fc5b56", + ".git/objects/7d/05a4f788b2e47e199cf522c048fc273c97a223", + ".git/objects/7d/0cac23808b6798bf6e749e7af187334cfc1fdf", + ".git/objects/7d/1f84687d3f3d2e9e648610ab3b712319afa84e", + ".git/objects/7d/2beba1cc186a603fb6c9096c0e9470b787c901", + ".git/objects/7d/309664ca012706beb6ac632d202c65285f4088", + ".git/objects/7d/3b804c88f0f4720f4bdab2d3d0ccb53e341320", + ".git/objects/7d/44a352fa087abb0d32be1b70be0f02ae003803", + ".git/objects/7d/459e3d1bc2b182d123124dcd4507bd0046a4cf", + ".git/objects/7d/4781592b0c2a958af8e4b23b17664ea07af1bb", + ".git/objects/7d/5237a5668b11445410fdf58926248be65e5fd3", + ".git/objects/7d/68a52cc9105e91e368ba8bf19e8b74411fdb6e", + ".git/objects/7d/6a25c0999954901113738b8db08cda97c390ea", + ".git/objects/7d/7dc19d7d4056d214465b5e2102541cd1ef8ffa", + ".git/objects/7d/8800f4b870144424f002bf42557dc923b11b48", + ".git/objects/7d/89fbc5d6523ad861e4d58dedb1cf69149b32d6", + ".git/objects/7d/982e61fad435332382bee37df5f1aac35bb580", + ".git/objects/7d/a7805c6844626aad07e4ca2202b87c5a2885ee", + ".git/objects/7d/cbca33a71cd0479b7d96e5f53691f88e83c67e", + ".git/objects/7d/e42b39e1c24b635c49ac86e04dd7d607a8b579", + ".git/objects/7d/f76e2588493f9151dbe0078785caf2a952520a", + ".git/objects/7d/fa262592406dadfb914376b1766d64cf23473f", + ".git/objects/7e/0114c44da87f27529309135f68df2653c35620", + ".git/objects/7e/0a4613cc9137797d55649a3851211ca13c18ee", + ".git/objects/7e/1d87e2a078f1b7af19d7237e6c574a4af567b8", + ".git/objects/7e/21920f4202a9633998ba28231f141dd98b90ae", + ".git/objects/7e/222c4a17396b072e18e0cbdef702cca54708db", + ".git/objects/7e/2ea63044780751031df0135bd20df5f9bd14ee", + ".git/objects/7e/3b6c09a153ee76e6a290069f2b14ecffb277e9", + ".git/objects/7e/44d9cbafb54a9e396b9132551ccc711e864fc7", + ".git/objects/7e/6afa7199983c2debb3c3b7597a784a2b59cecc", + ".git/objects/7e/6c848edfbb24c51baa480be5add5d819844769", + ".git/objects/7e/7ba20e6df90f4f8aad18deebccbef605795ba8", + ".git/objects/7e/95e5ec02dba0529f37e8ea14eda58e6f68f58b", + ".git/objects/7e/a3888a1b50eee1198b9ab674eced56b2b75713", + ".git/objects/7e/a85b18704641093cc9a90cb3ab85d4d5e342b1", + ".git/objects/7e/cafddfe6b3f7dca1940009197149efb05a7f01", + ".git/objects/7e/d7d9cb517a8a47aec987bee71ab47a38bbec02", + ".git/objects/7e/d9c3567af7676ae881f8725cceb9f992ab0ce9", + ".git/objects/7e/dd425b863c58c0c9ffdba82fea47d86fd064e2", + ".git/objects/7e/e18f2c29b53e2525f0a6a9d9d19309b3a0b080", + ".git/objects/7e/e5ec42f0d49d0a78be339874f1e8579e0f6878", + ".git/objects/7e/e6ac459e74ac567df772b69d2a89fd9d212e94", + ".git/objects/7e/e6e68e260021b03a782612f2ab528eed379232", + ".git/objects/7e/e847cb048e9c6053e11dc403ddca0c7311df8f", + ".git/objects/7e/ec2b940c369d8a2211a10df17ffcb8e42bc6a5", + ".git/objects/7e/f0b4ff0ca51871807b151c9aab1001387f73d2", + ".git/objects/7e/f3c0a3288c6544fbfb1ba999dc0a948e696d81", + ".git/objects/7e/fe79d87141e12735ad8fa0b7a9f85f86656a21", + ".git/objects/7f/011c6ecacaa92dd1f32a26c641ebb47d9ade6d", + ".git/objects/7f/02846e560a5a7821e5c3a54b06a5e6e0409441", + ".git/objects/7f/09a37682ec6592b907b2fddace2378d1bb4108", + ".git/objects/7f/11cf0fe2fe744b2109de7fc244d627a5f3e85d", + ".git/objects/7f/2c64bfcf14d6abeda3e9a980a400193dc5421b", + ".git/objects/7f/371767fb6b4174d8ea70961d364470b30ee6d6", + ".git/objects/7f/47f7b86c347c024c0a04f73ba6d472fee3cd3a", + ".git/objects/7f/4b2aca303386c1447d767186c6ecf87458636d", + ".git/objects/7f/4e1ea34941509bae79b6f16063e0fc3dbf9c1a", + ".git/objects/7f/59e6fe29d2605c8eb46510c412639969ee05b2", + ".git/objects/7f/5d1d3a32bf52a7e5b9e2dc688bef2a50ccbbd9", + ".git/objects/7f/66ae41254133dd9543618c58651da2d922bef4", + ".git/objects/7f/7694d3454d2e6d5055ef66661e2ab22c10b939", + ".git/objects/7f/76c0ea42bf7d6da9996591a895af962e57a0df", + ".git/objects/7f/8cf7ca007fb463ce8a7828d37783e62a26a015", + ".git/objects/7f/b1812d7655697c4b47465559d15cc7cd1b141c", + ".git/objects/7f/b74717d59f3530396875fa47e4d19292c07b8c", + ".git/objects/7f/c03c37de8ef700070d9597b418ad0bce252784", + ".git/objects/7f/c570925f44089a18420efb0b8b3d891d42d284", + ".git/objects/7f/d2c8006a5a08c05f44b73a30fb58ff7eacc5d2", + ".git/objects/7f/ffbc36d294d2eea7203b643ae3d703e2d54fb7", + ".git/objects/7f/fff8e5b5cc4db6e32e850448440ec49c00aafe", + ".git/objects/80/15fac0e9cac1336294b79c5b9d475cccc45f0c", + ".git/objects/80/19ba4eefa449c7835339d1ef93495887e2519b", + ".git/objects/80/19dd581c158f1bc88883cb95b82be32741e2cb", + ".git/objects/80/2175ddd764ccc583f315f7a503324ea670ce73", + ".git/objects/80/42aadc3502d5d8ac9244bc39d0564d7d8f8dd1", + ".git/objects/80/5b935a76297303bc54a7b98cf786b0587ad093", + ".git/objects/80/5c4c8555e74fe03c6dfd0c6a980189a32a7ca9", + ".git/objects/80/6776cf4855a3c49c9c362db3bf1ea1258b8083", + ".git/objects/80/71174d19ae9859b91e69afb0021772ad520b21", + ".git/objects/80/841cd9ff513ccc90227e6e023629d2ec089211", + ".git/objects/80/8ebdfb884e888937ebd43da5f1ebd7aafef6f8", + ".git/objects/80/92f29e607b61d10dba9ed3266c48f3139f57f5", + ".git/objects/80/9b3704737e4dc871f50e067f4a6771b4ca98bf", + ".git/objects/80/b02cfeb43f3a5b0d71a4b118632a0508d0b4ff", + ".git/objects/80/b28925f2ecffcc96898c256fc522b58301409c", + ".git/objects/80/b3f1078e6e8c3ea372d48b05bdd06933c006d9", + ".git/objects/80/d8034ce3a534c481fe8cb618d03836ebbda33f", + ".git/objects/80/daf71353d7e88fe73672bd6de40bf8e7fc7ada", + ".git/objects/80/db6dd1225f8092e5c662c8468a1d5757b33217", + ".git/objects/80/fdf97eee6bfc22484b126927ce6b1483c9e153", + ".git/objects/80/fec140f63e3288aaa1b8162e2ab8772025c9ae", + ".git/objects/81/02b5ab5a9f1f7b71e093a78e987d4f6ce082d5", + ".git/objects/81/18a964a32c3895c7004f65aa50918f38bde9ee", + ".git/objects/81/20ce85e12b150fe9fc5bceca0265972d9a1d06", + ".git/objects/81/23397037895c3c19002650cbe9f0f585cf0bb4", + ".git/objects/81/2cf1ab2f06f5077a7bfac41154aae3e260e3a6", + ".git/objects/81/3277b1447f3af712f26b25d1dfb34668b12c2a", + ".git/objects/81/32b61a24e952a6eeb87c29a37700b21fdaea9a", + ".git/objects/81/39dd18ae7787c77568c2c44b219b785f9b3200", + ".git/objects/81/52031249d99e50bf0439a6730ea1c55b368954", + ".git/objects/81/59e7ccb1347e90ae373a42c56fbf7cec220e7c", + ".git/objects/81/5f3e52b89c92ba46a57e1c99efbd29b929a585", + ".git/objects/81/789f6d67f04ae63da04519ff1f134e889fbf98", + ".git/objects/81/a0f489ca913074b63a02316b0792b50fc94b85", + ".git/objects/81/ade6420c5555843ca333abd7bdf39d1df2387c", + ".git/objects/81/af4d0a2b5e940831c546b5296d65a058a84a5f", + ".git/objects/81/c98ee7afe360617520cca0111928035d6865f9", + ".git/objects/81/d8e67de6359fd261002be97b054e3c62b9531f", + ".git/objects/81/e6966bb89af5b3e8496f12d97df9d78c0362fa", + ".git/objects/81/e6efb72af53c170401126a97f85278c7895db6", + ".git/objects/81/e8a102cd7d5d6ef706a9ecf2a9fd6697acaa0d", + ".git/objects/81/ee769be8f5249f91b93137e011ecd02028c65b", + ".git/objects/81/fff1e8083616fe161a7b1af4b87d54ba0dd3a6", + ".git/objects/82/004a5c92678ef463df20b84abd06428ea192d0", + ".git/objects/82/042a67326273346e3cc54aff1643385eaddede", + ".git/objects/82/04f65972c95c86be4512f4f2761e6636d23ebb", + ".git/objects/82/07768e33770b0ffb654a6caba0df079da13d75", + ".git/objects/82/0ecada26a44b432318e8c196da670c324a2a5d", + ".git/objects/82/1ce7e4c16b2f99638b1fc34c6ca66e2654315b", + ".git/objects/82/2a9a42e4da4f8dc552c87f97f1b8a14cedca1b", + ".git/objects/82/409e8e27cc36c83e8b8d9eb1a72802adcb61eb", + ".git/objects/82/4bc3eb98cb88051571ca3f3b2c917d1b68279c", + ".git/objects/82/57240354d222c2283add5460bf1e6f32524133", + ".git/objects/82/6293b4b425fed7113b3bf0596c08b8d8506777", + ".git/objects/82/6749bff830da79e7e9c56c7541390311aff23b", + ".git/objects/82/746a8b98e922e80bc25fca0054132693d8f920", + ".git/objects/82/76899c62ee0cb405a3354ebd72e38c25e6ee2b", + ".git/objects/82/947a8c4e8f8075208a1aeccf5788f8e23c708b", + ".git/objects/82/95af8879ac8c7de87f9ca8fb870cabe262b004", + ".git/objects/82/aca02e3b7e99af291847fe88589109c2d359ce", + ".git/objects/82/ad22264e48ec51dbfaabe619432ef8f178d10a", + ".git/objects/82/baef46c1dad08fd9c18929aca5f1c61544c7aa", + ".git/objects/82/c3fc053d766f2366d01c9572642b5b67679a3b", + ".git/objects/82/ca106180d2248a59540b5fe510ec0b73d07a91", + ".git/objects/82/d08dbda8bbde0d6c67564f35e616b0e4064221", + ".git/objects/82/d82bcd9d2596c8e97906334c7582fb1535fe8f", + ".git/objects/82/f0497fb5d8d3819aeae224b80666b1d680bb64", + ".git/objects/82/fa9f32d215fe459209fa5956c49c0ab57ac052", + ".git/objects/83/05291b606384bc6240e5c10baa408a944ef631", + ".git/objects/83/11ebace319a749ea766f55da3842e770d6e975", + ".git/objects/83/24842e4b738cb7ef6bbd5b22980947c63646fd", + ".git/objects/83/24c53c52b195fcecd01abceb0262a8b8a68d9e", + ".git/objects/83/278ad04da027b629dcd7419769d83b67092cd5", + ".git/objects/83/2f30d51b1c4ed5f8295619636c683d9f065c24", + ".git/objects/83/5aa25c07d92d7606a6b3b61c3d6a2ca7a824d8", + ".git/objects/83/637d67e653213134df4464c8d12aec64bf0d8d", + ".git/objects/83/6c053c50999a31929e90ba7042a30a6e76c922", + ".git/objects/83/7f9ec47208067ba1229105f2740658d2515cb5", + ".git/objects/83/9a90bb7a6389941a71ac2f4942028b2dd861cd", + ".git/objects/83/ac44d14daa366d4102e321064991736ab8e356", + ".git/objects/83/b080206acee7e2cd37e3e7692e8afe51323748", + ".git/objects/83/bc82ad86f28bc705477fb2a4af4da35fccd569", + ".git/objects/83/c2cca0efcb3ccf184e4178ceee67ff67c2c222", + ".git/objects/83/d9f2bf58f71f13e4d152bd034f8445492384ee", + ".git/objects/83/e445eafe7e45c2a334bf2cb8c67eb6e9f15e4c", + ".git/objects/83/f743036865336d7ce1ec74d2bf8e082b565d2c", + ".git/objects/83/fb3cda94a4e16f0ffec7a93a6f0bd6afa151db", + ".git/objects/83/fd933c6235124bfb7c1d458b0bed8684492417", + ".git/objects/84/02ee8b833110406c9102a16a42b73bffa8b2da", + ".git/objects/84/0976c7c07324b1f0bb2794efc202a23d71b6e7", + ".git/objects/84/1ae2cf5984072c737b38c90f327acd4c497e76", + ".git/objects/84/39b4bf19aa80fce48334c9124e89df3c54baf1", + ".git/objects/84/5803204b87e46fb51b611a54f747aa9a0e0404", + ".git/objects/84/63ffd42526659c3054e52af9b29f251adcba13", + ".git/objects/84/69ba7260c17b3504878fd6a838c7063d2c6497", + ".git/objects/84/70c30bf420fdef0bab0a93e102b683b4422243", + ".git/objects/84/a3b8dab96b2fad56516b9ff27b88a290c152e5", + ".git/objects/84/b3cda5ea69545226a93702065def4eb379b69e", + ".git/objects/84/b79ac950a4c2ae331ed76ea787c16bf6b68df8", + ".git/objects/84/cd6753833856f094fbd441855429f9dc3bd9ad", + ".git/objects/84/d078daae8a8b1b12a4470d7f7de211f6fc92ee", + ".git/objects/84/d12183bff95171a68b8b02ebaf6d5c0134fa99", + ".git/objects/84/d36166f9305db3eda9716a9ef5d73115860394", + ".git/objects/84/d85055d03f6e1e494f4d168c31f783e7f33b10", + ".git/objects/84/e4f19035264e769e77d66c302ab4a8344d7827", + ".git/objects/84/f4471eeb1fc20febe8f22674819b90fa1786c9", + ".git/objects/84/fbebebf921cf8a95b7bdae5c500aea8afc57fd", + ".git/objects/85/18207d643112afa59b9b577f38aa8d3c76887e", + ".git/objects/85/31e6ec06a03d23e553ee7b33d13c19293349b3", + ".git/objects/85/31e6f7404aa0b0b5a282060e5fe838db44037f", + ".git/objects/85/5a659cf090e35b7bc29a5c5e226d37b2b9481e", + ".git/objects/85/634da94f7161f54f34814aae1399d253fec4a2", + ".git/objects/85/6b8916ee15b9760602dba7445ac2382cc3296e", + ".git/objects/85/795525efbcdf076e747c323caf1d342f6907ed", + ".git/objects/85/7d7926eb891dc1b02afb8e7d4a11228155c2e9", + ".git/objects/85/87e7c89df710386fc3ade71292d2bf40d9525b", + ".git/objects/85/9084b11b422d872de41813ff2abc24974afab4", + ".git/objects/85/99f09b35fce53ed0aa2f8de5c9bc0cff39e826", + ".git/objects/85/ac3758b1e087696872c1c8a311403d0eca0934", + ".git/objects/85/ac8c1ce6ff8b154fdae5830ed0ab33c38e1e2e", + ".git/objects/85/b1a20972bc340a8354f3e67ee7a7b93bf151a5", + ".git/objects/85/babda394d2a05b4ab197c23db56ac484cb52b7", + ".git/objects/85/bf2c8603d87f87f3b5913b5ef4f60baea28987", + ".git/objects/85/dab8409278d3e7010b3bf3eafb4bad7c01c309", + ".git/objects/85/decef4cb9341fc9db2e94355fc1b05e7ef2ebd", + ".git/objects/85/e0c8788a278edf88c2673e1f5ba3d2a7b282aa", + ".git/objects/85/f90a1979788219ce5f7684643fd964e43d3e3e", + ".git/objects/86/04f9cdbe838ab7eedffa1ce24c45ea4ca53420", + ".git/objects/86/172e8309826d8ae2ba7e7cfea611caeec2f56b", + ".git/objects/86/2c0e48953eeebd2ff10e9d7d7919d66c81f529", + ".git/objects/86/35173af3bcdb136b392af8b9683038b33c47eb", + ".git/objects/86/3cf839d83c4572e7ca786c631ce29b6e891c70", + ".git/objects/86/438911b49d48a17b706f30c5b97455a7149b06", + ".git/objects/86/47c8180d3726031eb5450009165f8e624cc310", + ".git/objects/86/4819d8bcaf45d9d31ee81948122d7ef44f3372", + ".git/objects/86/6ccf759ebde70222403b0c146997623b140086", + ".git/objects/86/729d18fcbf649fa61cc64ce73b251c0208af13", + ".git/objects/86/8fa73bebbc602d864d2080ff757e28f7197c5f", + ".git/objects/86/980e16e05991b8f86fde250ecb80f1ee5bcd50", + ".git/objects/86/99125c981810f23682e300d09b60dc774c9f98", + ".git/objects/86/a41caae2e52a487911523de0f0d5e2b8ba001e", + ".git/objects/86/a6c20b5a9dabc59cb339549ec81af6cecc6057", + ".git/objects/86/b5ab192215294a9c0395fc34607ffc4b33a02c", + ".git/objects/86/b6666e3958fef3b008b3015e1dc9f16afe84b1", + ".git/objects/86/bb79b3e41138f52b9884f3af8c496d55d108ef", + ".git/objects/86/c96bdc311509464d6c7d5d6dae7743f7c1e789", + ".git/objects/86/cff01a1809283b799998e88fb70cf7ca4a2c6e", + ".git/objects/86/d15735ca28df1d7cfb4b340cbd5919ea1fb811", + ".git/objects/86/e92277733bcf25e2142de08f71f4da12f3452a", + ".git/objects/86/f4070605d7c3d1bcffbac73ed2bc60930c8541", + ".git/objects/86/f6ff696d8f65076ada63873e8f8fd658c81329", + ".git/objects/87/07b97f7a4455c127cd41fbbd9061df20c16b21", + ".git/objects/87/29c95804175ddc68466df13aa22aca7a646467", + ".git/objects/87/2a6fd49f15d41946446b73ad96086611f1a05b", + ".git/objects/87/3049494919c0f6c00fd3c3f4da6215e63c635c", + ".git/objects/87/3d92e5a199a1afab33ff4b723427190b0ae014", + ".git/objects/87/4090e015ade16746ec3e7513062253d200a989", + ".git/objects/87/4e88975d95f6b0c4d1a7e1b361ae8f7920ba52", + ".git/objects/87/563c96185df161d6282de76a8db3877b586ce4", + ".git/objects/87/5667e291814931159fb8f60e9c8fe25810c70e", + ".git/objects/87/5ec21416f37472fd3d2c2f2662b53fa25da56e", + ".git/objects/87/61e30a990489506b44c3834d9f879d818a7d11", + ".git/objects/87/67471aa3308d58f116829f7d0c94b3941b228f", + ".git/objects/87/6792beb9982a19a462d63c62698cd89effd7f0", + ".git/objects/87/6fcd29028f4b2d4884b3a0a9fe2537cbdd8622", + ".git/objects/87/7bfdf5e23eb9e3d4ba33e292d2eda4581e97c1", + ".git/objects/87/85f46d3cafc0539f4e9f564f0189a7d11cc871", + ".git/objects/87/a76ed2c5169a71bcf14a36c5ad1fb132f2b27d", + ".git/objects/87/ae6ee1c5d36622770653437b7c088182c847b7", + ".git/objects/87/b7fdd2eafd3681842c27ca4dde8808f402a854", + ".git/objects/87/c668c69c19dab095ee92b031019c1a7fdf8fd1", + ".git/objects/87/cfb36d2e5aeffcfca88e7030e142b3dc23faf3", + ".git/objects/87/db336e227906e8da841d138e124431a3706b16", + ".git/objects/87/e3aaca210790c5ac43f3dcea7735a5af663f6e", + ".git/objects/87/ed21cea97d56f3cebf3c49d3bf9d6c765e54df", + ".git/objects/87/f672749e9519eb08723df6e4a8b7cd8e10c641", + ".git/objects/88/09d972ecc3529978d9325501f9deaefa638579", + ".git/objects/88/251b51780494aba5628fc4fd0494736ba288b0", + ".git/objects/88/271f53d714a16df6c2af4b3995842a3d9f9368", + ".git/objects/88/3f14b46faded6bb362fe77a90a96f287ef05dd", + ".git/objects/88/42836ef9b0e7fd6984f99fcf57dbf805ce2554", + ".git/objects/88/4e99bbcf20698193a9130311f10287812c31a6", + ".git/objects/88/7b43dba401266579ba5153cd9bce442b05298d", + ".git/objects/88/8ef7dfc2ba31449d27df32e133f702a1078ab1", + ".git/objects/88/99874e442437fa00f684d8014bde864b670513", + ".git/objects/88/9a70f7e06c7ad865a65f515b2e9d8fd7937fc5", + ".git/objects/88/a714cc1687a20956782ea3501e9b2f2343613d", + ".git/objects/88/a87c9f111e0d01e51149d3941a6a9f62d599c8", + ".git/objects/88/aaf64813adeda20e482a5177d2736adbdf2364", + ".git/objects/88/ae04df3ecaa5df4654be73f693ac200cf5ab61", + ".git/objects/88/bfc2ea28ef74978aa7074806463ad6ffd87f32", + ".git/objects/88/c8eacef72e6e3d6649ab602e411bd6b81d8a41", + ".git/objects/88/ca56b813219485759b9fc9d2fabde1d63e0793", + ".git/objects/88/cd219b0c0345dc99a464f83d205cc06974f445", + ".git/objects/88/e0da9d4d128ee18b9e49da649c74ed02c0db6c", + ".git/objects/88/e4df0ecf327ab92f38fe4c94d629bef60b0a03", + ".git/objects/88/efa9e696d2b276120f9c45c3b21ade845b6a84", + ".git/objects/88/fa87d72c85a5cde44cb8ce8d03c7d838043c92", + ".git/objects/88/ff1b703c19bbb49f3a9abb00bd5549c8560da6", + ".git/objects/89/0a557d90e2b9b4ad1f35923c1fc86791d3a49b", + ".git/objects/89/284e0ca4b30db2a0a4ded867123143a67d5cf7", + ".git/objects/89/3a6f4b0d60281d7c9031fcef8013357947a4dc", + ".git/objects/89/3e3fa7cdca393480c792832678fd7c0ed2ca26", + ".git/objects/89/47a9064d4ccf9d4e80286d922087ae975ee4ae", + ".git/objects/89/52b155e7efa96d3a965fc2dfb2b47082f4787d", + ".git/objects/89/55316a3102dd06baccd488da7f90f667802047", + ".git/objects/89/5b21979eb7694ea60772a30c20f89753424dbc", + ".git/objects/89/6ea8fb9153389abb2fd2bc5360f286a4fcb0a8", + ".git/objects/89/7fd5757f33dd9895c838b96b6a6cdf54bf3634", + ".git/objects/89/8830f041e618e410cca84a429ba8346ea1556b", + ".git/objects/89/9f724a927da19a6d9b2b279a5fefb17bbf05fa", + ".git/objects/89/bf4591f722d58f7f6696617cf9b3d20bda3f70", + ".git/objects/89/c1a5304b650e568b5d4a451e75884643c6540a", + ".git/objects/89/d9213ecbb1be9c02f5f1ed14c20645535404e5", + ".git/objects/89/da33d47dc411bf0a684d402a3587c7601b7e21", + ".git/objects/89/dc9156f48440d02e685e19936e31706f8d4889", + ".git/objects/89/e853c72cd293b318311c16b340577a21dc2d64", + ".git/objects/89/f7484108c0d55686259b393d313e2a78732dfd", + ".git/objects/8a/0cbeeeed90158b631e84a6c9bba43c5387c742", + ".git/objects/8a/16b9212959914289947cae6d3c18cfdc80c74b", + ".git/objects/8a/1f502b3c61a5d4347c1005001ac902422abebd", + ".git/objects/8a/201dcfa61a78c4101cef93295e8f4e1d327f7a", + ".git/objects/8a/20cdd808f3176703bccdc5bc93d1c9e7cf9e0a", + ".git/objects/8a/24491d866c8df7130cc54c84b60559e5f6df5f", + ".git/objects/8a/2537bca87bc09cde45bd469334ca1361255e0a", + ".git/objects/8a/3cee0bb580475b939b11023848e74638d830a0", + ".git/objects/8a/40b0da9d22278eb62c35c7e42141890bde636f", + ".git/objects/8a/610da67f8b7d481a711d02b7014b1014599a89", + ".git/objects/8a/63574639c1708f99663cbf5dc2e048205eefe4", + ".git/objects/8a/81414bd105cb60fa4e579eb29e6fdd92442338", + ".git/objects/8a/909695aee151b3f181caa1e9962ad09ed50424", + ".git/objects/8a/9c501a4aeb60d950012087dd0a4dd68216c2e2", + ".git/objects/8a/c5b3988f2e2210b6bdb04b6647543feccd8524", + ".git/objects/8a/ceb52048235b2ced01fe810db498d1201cdc98", + ".git/objects/8a/d5c527068bde580cb97fa7012a41062635fbdf", + ".git/objects/8a/ee03c9cfc4c96d330bf1c39c84961428dba259", + ".git/objects/8a/f166a470f71d55e5f34d242005e7f05a64af3a", + ".git/objects/8a/f260110726198401dbe0c5891a8ea7eb66de2d", + ".git/objects/8a/f58261dc99e1397cb59cbca43d92e4d5ebe573", + ".git/objects/8b/1c9bb774ff98cbc3c7236ab3104efd82f62759", + ".git/objects/8b/23f0bd55e49abd6475aac8148b2bf970f21848", + ".git/objects/8b/27a1e9de15ac7d32f82de1cda823ca302b320d", + ".git/objects/8b/2d78040e7759a283b533fc79d302a6d77eca36", + ".git/objects/8b/40bbc6ac3e652292503ca380eebea4169d705b", + ".git/objects/8b/46decf6f0d25de905800e467bae19aefd4510a", + ".git/objects/8b/52064d45e28eea198112eeebfcd9e7ec171d0a", + ".git/objects/8b/54f7a48cc578ac0f76a5e10b24d6423acc7e2e", + ".git/objects/8b/605249a952303f1fe33f68884ddc560cc09439", + ".git/objects/8b/663f3842c18e5510998f32b1e6f3d9a153b941", + ".git/objects/8b/67fb4118a8f9a91b06be28a5b4beae7ed80170", + ".git/objects/8b/68a59c589152d9fd8a3fca7b2fccf9775cc14f", + ".git/objects/8b/70983cd061f71f6bc7003bbeedd1c5395f1640", + ".git/objects/8b/7d0dc8a39ec4d124f56b93d7cbac7f8149bf20", + ".git/objects/8b/91967d84caa5455f0055bc691920c6ccbfe414", + ".git/objects/8b/a321d526f650dc3fdfbd4196a7837b01d74b40", + ".git/objects/8b/c892b87cfdafd7a12b1251c767aa412efe8034", + ".git/objects/8b/c92936ad78012a5adab74ae6844c9a655c3f70", + ".git/objects/8b/d667faf317703c5d4cde1c12d51b3e57d3df81", + ".git/objects/8b/dd1845f9f53e92c40614719ca51a6fb4551cfd", + ".git/objects/8b/f47b82872dd6a33b464db78b4c0eafed76340b", + ".git/objects/8b/fdefec29a6fc5c5e3e7466af8c793f72a8fb04", + ".git/objects/8c/136a6e7e27bbe482fda822aa06b9a4ea483e44", + ".git/objects/8c/2a2804e7eb140dda36e7b9117b62986386281b", + ".git/objects/8c/36bf57ba6883c1de20a78ccedc266662f3b101", + ".git/objects/8c/3d717c786e6f72eeb0a396da7230373b194794", + ".git/objects/8c/3f4a592025f0ade6b4f3bd600831d80e62ce61", + ".git/objects/8c/4491ed726bc573218e5a8f3cfeb933dc11fae2", + ".git/objects/8c/765a228588f5d20b98b77fe3012e058587db28", + ".git/objects/8c/a2917517c346e5c1c927837f9095e2b0f37736", + ".git/objects/8c/aa09022c055e8238a4e3dfb162beb50460d33f", + ".git/objects/8c/be1f13f8da2e6e273522aa0e289c90dfa6034e", + ".git/objects/8c/c0cfa95cd565f718f71c9d6adadb53cb33ff5a", + ".git/objects/8c/c9d19a70accc583edebd764592d8b0931e2833", + ".git/objects/8c/d1d11cdda8de408c72ac43e4b9f24d637c0ec8", + ".git/objects/8c/e3e46749fb42ee498377f86b73a36af1e4219a", + ".git/objects/8c/ef01e49e2f6e3816c74ff11052eddf933eb616", + ".git/objects/8c/ef1344ce0fdd92524dc5bb2c1d347e791482a8", + ".git/objects/8c/f6e6d00447964f22e9a5c370c5e76ab594b98b", + ".git/objects/8d/0488a5a4b9d8683a1c0f427748072b7ba1fb7d", + ".git/objects/8d/091393c38e9fd9d57f9e77807216add1279189", + ".git/objects/8d/26d3fbf33143bb3d5d5a473727aedd8bdc6eaf", + ".git/objects/8d/38217e743a1bc6c2517a15212180c754812038", + ".git/objects/8d/5c369ea4a3b24ec214be75cc51f9b870cf2022", + ".git/objects/8d/64e89250e702e658e43bd11e9efffbae0136c5", + ".git/objects/8d/66fc5bd549ede49a4ff6b2e27bcf0193db6121", + ".git/objects/8d/7c50d59301d4ed1a10082b407c5148406436d3", + ".git/objects/8d/80a2dc8f6f23001cfe5d7d4fd2bd018b37ff4f", + ".git/objects/8d/870a6d58d0668efce2681c922a40d2e7933441", + ".git/objects/8d/8f051044d4171eecd108818bb3c87d6ab1c2f0", + ".git/objects/8d/9f820c2db4409c289755848552104228f9b4c2", + ".git/objects/8d/a6eca8dd57d6cded449fbcc1a33e6fea6afc1b", + ".git/objects/8d/a9ce48f72f7c95f14abff1ec1e7f0b04733d89", + ".git/objects/8d/ca6210f1885decbbf81fb657a55105d67fd73a", + ".git/objects/8d/d6d6fcd6f513c503fa0706fb6907e1dc742387", + ".git/objects/8d/e004021e69f6fbcd3a12ed2db843d1a8c9111b", + ".git/objects/8d/e166ebb12f05633cc55e886e3cce6d2bb4fbc0", + ".git/objects/8d/e295d883aa71adfe3eb15c4f9f705cbc05ebbf", + ".git/objects/8d/e534a601d1c28960b01aa14ffd4914976b5dfb", + ".git/objects/8d/f3ed260fb55d5813f60d226da06240b0f96b68", + ".git/objects/8d/fa405aceba4189cb3c43c42109d00b54cb18d8", + ".git/objects/8e/0cb10bc64d8db6768990149532983861285cdd", + ".git/objects/8e/0e8b6e766cde4deb35de3f9f7efbcc555e5cd7", + ".git/objects/8e/11866e422b82c05c1049f39b909641b1907111", + ".git/objects/8e/20f44ede489177cf0196d6a0898288d1781b46", + ".git/objects/8e/302a1ceaf1a929778f1de09deca99d694c8451", + ".git/objects/8e/4bdd6d1b3e8b9969ab62d35d0be4a93a2907af", + ".git/objects/8e/4da8a25ddcfc1e2f02f2b8b4b00e9add388cc6", + ".git/objects/8e/68e756a5fbb525a2d04c78de7aa8c1c4fa68ef", + ".git/objects/8e/6ec99fd4c16c9b2b3a5f853dd2a0b7d29cd8d4", + ".git/objects/8e/7d6e8fa42bee88ebf355477dee996dbeff0d7f", + ".git/objects/8e/94966ed03a18bf3b92a6e47305e74c2b975405", + ".git/objects/8e/99d5d82e5a1fe7468f4b82b2d3768af08a4ddd", + ".git/objects/8e/a6ade5a3523e432b428c0f7a54d5220ecd37e7", + ".git/objects/8e/d00d0124971b3395ae6d1bcfe643b682ee4cf4", + ".git/objects/8e/d53b2b4e994e947abeded1c6381c3fc272947b", + ".git/objects/8e/ee99a96982b9be84640b722e2d0236453e4c72", + ".git/objects/8e/efab666d5c66f228233a6247e947ebbee84cde", + ".git/objects/8e/f0a81f17f59ba15c986292e7f63fd93fb36c19", + ".git/objects/8e/f6e60b1e15241b9cee89429bc46a0164c31e00", + ".git/objects/8f/0251744c922bedd57978309cad46a619545955", + ".git/objects/8f/0ba6931dd4165df67be4dfd0b05cd745c6c0d3", + ".git/objects/8f/6325343d0c99776d2761cc8873e07d1b983905", + ".git/objects/8f/70707ba01d243c8833b1ceff3e4a8a61d7ed26", + ".git/objects/8f/7f10ee961f318ac0ecc2e1a28bb272995cfce5", + ".git/objects/8f/873157582b008b2b150491cfa99bc3926a4a08", + ".git/objects/8f/87745293fa454fa696b831175eee814248568d", + ".git/objects/8f/979b09da3dc11a3c6d26c188dbe401fe26c323", + ".git/objects/8f/9c154aacc6385527d7eed5efdc65f884e2300b", + ".git/objects/8f/b302676d485477b97e82c71f6f15403c9897f9", + ".git/objects/8f/bfc81bad58d3419c490002a51288953f46003d", + ".git/objects/8f/d2a3f143deb294000e58580e572e7f1c8c2dad", + ".git/objects/8f/dbe00f7b04114c3dae2ddedab77aad0b88c004", + ".git/objects/8f/fa1f5deda85ed50de0676d68752892e487ff00", + ".git/objects/8f/fd513e37882f1a68cb179cfa0c8fad4f5d8ad8", + ".git/objects/90/1273dc3ec862f001a89b1b9eeabec0c31f2565", + ".git/objects/90/192e4e294b709f39b505bad6bb1c0561260183", + ".git/objects/90/413743f190a75b1b0cd5da0ab1f11feaa886a0", + ".git/objects/90/477994703c844941809e49677ba40432ed3160", + ".git/objects/90/4802db9e58862db5ee79e81b1d96258bdb1778", + ".git/objects/90/7264b71f8d0492cb3f614357a0534ab7e80fa3", + ".git/objects/90/806fc8d0f29327f7bd225393f7254b89852e1b", + ".git/objects/90/8847c7a97edd025f1863ac289ec79b9fe8bf50", + ".git/objects/90/923edfed7c7ae2618d77d666f56731d23189cd", + ".git/objects/90/98bf53ec27594642d56194d61fad1eb490f8db", + ".git/objects/90/a1560d4cfabeda0f480f9f95f3922e809462a9", + ".git/objects/90/b0225a3233d7e426c16f27cc014d7c0f35845b", + ".git/objects/90/b4b92f7b927e9d67f4a20b2e1dbb320a960543", + ".git/objects/90/b6b24c3f973e05c709be43975d40f322d047e6", + ".git/objects/90/b77220349b740cc74777bbd3b874f1372c686a", + ".git/objects/90/c23d5743d8249617600b207b531f75f742bdbb", + ".git/objects/90/c86f177543207475ad27c81e42aa451368e12b", + ".git/objects/90/cd8738eeb5cefd942ecaa35c2bfc431ef1e191", + ".git/objects/90/d4ef089368826eec2c3b17961b6f43bc5f420d", + ".git/objects/90/d8b271927aa7cf6694f62bc5653eca90584079", + ".git/objects/90/efe588bfd564be8ebe067ac85a832f84da1fad", + ".git/objects/90/fab14f3847dcdb842c3e411c1d2c5d004a47db", + ".git/objects/90/feec8aab609f29e63a7b14bf9bd384f187bbef", + ".git/objects/91/07863649eacabc15ce26be202ae336a0e5a060", + ".git/objects/91/2a854a0793c37d1c20cf9267342fa696c3284a", + ".git/objects/91/2d1f6baf9a64cbb4b58827b188e10230eb6f84", + ".git/objects/91/2d5b7481a23657603513ad886b96e9cfc2bea4", + ".git/objects/91/3aef0b11c1359f9abb68e609b7f4f2e2dd1f93", + ".git/objects/91/46044f9ded0a1a34d69dd0aa66422d87c2c54a", + ".git/objects/91/4a02d385abc775b98bf675b5809204ee67bbf8", + ".git/objects/91/67ca49cde0add348e47299bdf879a947ff19be", + ".git/objects/91/6cdf703b2eca09d8baae30449ad7efe14bbdae", + ".git/objects/91/880c6c51421e9f65ae7342e0ce43d80a9ba295", + ".git/objects/91/9313d8d380708a9963e8692dfe1a3c4bf17c5f", + ".git/objects/91/953d31ab2a67943608065b27b512803dbb4ef3", + ".git/objects/91/bbbf97be569a3c05238f9927f1bf96e34a5dae", + ".git/objects/91/cc57acf1e8c8b09d2c48cd58918569fcd665a0", + ".git/objects/91/d01f2666a66fcbe50d337cce38bbe6c2098f86", + ".git/objects/91/ee8090e8adb954a6bb0392e83a2a8de89c9f5d", + ".git/objects/91/f283a333c23b7508535581a3a6b9e37b7aa9fd", + ".git/objects/91/f4f41b5a6b84bcca45694c8e5c7f828c148ac6", + ".git/objects/91/f859d22a367f28d0065ab4d74fc5dec9e8f11b", + ".git/objects/91/ff69406763266948ef509395d64afdb95c76ce", + ".git/objects/92/0de9548e6974fd363eab96508d567a28b2d76a", + ".git/objects/92/1d3d2d9824c847cf07ebeb5521b30a8be6dd0f", + ".git/objects/92/24fae443fd910ebc47ac55e72076bb0e9eca91", + ".git/objects/92/360d857fccd98f4f945199d7b65b5a4e5abf4b", + ".git/objects/92/40040e88b800d0329edc3e687fe4af237f7fac", + ".git/objects/92/41442b12189e642e9de9ec3c81739fbc638a27", + ".git/objects/92/7497a891446f5659ed1b91b243c4247e170ff0", + ".git/objects/92/7d2bfcbc25408ec36d50056b6e550d819818ab", + ".git/objects/92/8dcfcadbb5584453a8186571bae4d5bdb6df41", + ".git/objects/92/9463f5d74432ccfb528c84c595c504f041a00c", + ".git/objects/92/9cbe904950f9fe4c1957d76c35aae1cc0cbd3f", + ".git/objects/92/a43f9c56eb2e45491ceb1b51c2dc42a80a2565", + ".git/objects/92/aba27e69b36d506b41789489a82d12ce05701a", + ".git/objects/92/c08ea0444f8adbd74a9bae627c7321cee48bc0", + ".git/objects/92/d9e05f0002cb0d906f21fff0130531618d846c", + ".git/objects/92/db190b6503e341fbaefa1f297a5f3687545865", + ".git/objects/92/f127759d44053c47183f747127bc6962e12616", + ".git/objects/93/05e4bce3ee902cd91f720b1d7cbcf783c8fc44", + ".git/objects/93/396792e6733569bcba71b32c38db91fc7940fb", + ".git/objects/93/720921082c55d176306e255e28fe461e1c80c9", + ".git/objects/93/89f6a943b5745c08c7d4cecff9749d2a71c329", + ".git/objects/93/96c6200c1f418da1500860615efd091217fe76", + ".git/objects/93/ad63a01d532ec271f2cd7ac2174f4138bf63ff", + ".git/objects/93/b4ee602f706c7f7a6e10a511bfc4a28b66e778", + ".git/objects/93/cc0add1de33c56b246eadd76b4b661ed754860", + ".git/objects/93/d2b407d6fe6f71ec7eb48166ceee2374784792", + ".git/objects/93/d3934b532934768f07807ecedf96b1bdb2fc6a", + ".git/objects/94/1658ce70d0694946bdfb200e315ab3a6f5e06e", + ".git/objects/94/17da7734af904df0b63c4e3ac594c1a6e7c515", + ".git/objects/94/21a5f696f8539701d1e3b86b31c52edc2feb7d", + ".git/objects/94/221b389948f471c2c6f844dab37b99c02962a7", + ".git/objects/94/25926e8e91b591cca13550d0ed647e901c131b", + ".git/objects/94/2916e27532d930ba76c41c79304583f9184dd7", + ".git/objects/94/2d65789e22d92e8c4bd2c85c593eca08ef3c6a", + ".git/objects/94/302d9ea00df05c9dce2eb0dc6dd25310c07447", + ".git/objects/94/35b309393df23082f198128ce6c6be66a3eb08", + ".git/objects/94/3f159b74dbd439354465bff3089b61e8b0254d", + ".git/objects/94/40e75e3241cba15faacf988dd85362f7bf6448", + ".git/objects/94/5a2e8548782d834bd76650a15220a3f10aa41b", + ".git/objects/94/740641e793bc27588c663b12c2ddc2714d8e5b", + ".git/objects/94/8c6f39b06dfc55a4e093f32606950b23605296", + ".git/objects/94/8f15a8a05ce8b1e3a25a8933bf15986b999f9b", + ".git/objects/94/9572de62a90fae4b9bcfe502034304b985ca5c", + ".git/objects/94/95c3ad9bc3b0213015390d7f941ca899a0221a", + ".git/objects/94/b2d31f0b75bdcd99c23c3f2ad08d60c7b36c5b", + ".git/objects/94/b885a492e312ce8395f8dcc710b326e3e88354", + ".git/objects/94/cd236bdc8b5492fde4aa52d5161ec3a8cc0485", + ".git/objects/94/d4fd433365b13f328e497a15d0c7900a39efee", + ".git/objects/94/f1b43a1ca5207d424e39469f63f76206a2d1a2", + ".git/objects/95/01132d67be095456149e5808990e581c2197c6", + ".git/objects/95/06b0150f9cb6a41bd763cabf3f67c0bf2bcf14", + ".git/objects/95/0c513f803f27d259a20ebde846fca44f952a98", + ".git/objects/95/178476aa1ff6ee5ec4dd5016d6b962c17256fe", + ".git/objects/95/1d191a908de31071e229b45c091f8b3dc49e97", + ".git/objects/95/2fa1d83470be621be618fc96cb738a2f4b9f0f", + ".git/objects/95/3a14df13c44b98aea62e2de1ea80d4b9650d21", + ".git/objects/95/3eab9147ead4e6785c530a25059937f5e76a70", + ".git/objects/95/4f4d2e574fdf45652a648020eec71fc97bb3ec", + ".git/objects/95/5a6d9c299a87482c8a47fe15a37fabc894b61f", + ".git/objects/95/6b16d45c65cad9635d323a9915b4009de2df7a", + ".git/objects/95/6d259125404b184b947267d8dee9fb42f7382b", + ".git/objects/95/7783163f96873e3af23886d9faa033d694ee08", + ".git/objects/95/85a8a53899edea13e6b6dd156d0f07145e2d72", + ".git/objects/95/8aa617d16e39a8c9ad4605ab2c35ad2472044e", + ".git/objects/95/974ea135451c7d780128346843d7d71b147822", + ".git/objects/95/ba2d58ebf9a941a0ad734eec20e265834a1d10", + ".git/objects/95/bb7ad10bdc7ed64edb8e5eb1ede3147358c769", + ".git/objects/95/bddb5a4e51b1f696fc64d8285d4e133f4404b7", + ".git/objects/95/be17f1f593d95b85887259564ee61699f164b2", + ".git/objects/95/c93e377a7d8bd27655151a1526be361e062ead", + ".git/objects/95/e61154749b11c5ce096dbd13dea2be751ff506", + ".git/objects/95/f6c77d2d51076b93de9ebd8777e62324dc3f9e", + ".git/objects/95/f6e6c5e90b1c6667807a1331fffdf57e97eca9", + ".git/objects/96/107a208051699fce100475f93307d552ea0a20", + ".git/objects/96/15d98329d103fe98cc78bff5f8930d3320ee45", + ".git/objects/96/236eca7c4ef79ed264c0c84d955edcaff42cd1", + ".git/objects/96/250712a86faa5baa2a67ec306678f0273a0ec5", + ".git/objects/96/256c30ef726e6629801990940103195b55e3ae", + ".git/objects/96/44e886f9c076f54cd69c324818f84796f2ca86", + ".git/objects/96/48fbe3ed3d18ffb4c7906fcc82a3822b63967b", + ".git/objects/96/619e5040cbfaef0b5d0cb195bb34400f61dce9", + ".git/objects/96/6ab1d6ec04f7186cc69b4c4e5cac38633f3d5a", + ".git/objects/96/6b80afd3e0af00412e2bae583f4d56dd7a3ac8", + ".git/objects/96/7dbeb5161c8372ca1249e424539a6e310e1200", + ".git/objects/96/85c021744ab7630817afb8bec3aa75ca1fac00", + ".git/objects/96/92dc70d569b861d5a01da482ad3d373d5a4b1f", + ".git/objects/96/cc0c8748ec3da71d2f84a967a72e0b914d0075", + ".git/objects/96/cd5358861a5daa96de764bbdba620b0a633051", + ".git/objects/96/d32afbcfc42f56a07392a9ef06ba6004a231e8", + ".git/objects/96/d371033543ce988e8a72d911cc259b084de015", + ".git/objects/96/e984d5f1424d5f1ff1d4a53446fcdb3cf672fe", + ".git/objects/96/f8155912ea7c77bdcc7ab53edaec42cee2521d", + ".git/objects/96/f8502d028d2fa959f6c6c1f3f6df81bdd3dba3", + ".git/objects/96/fbdac2bd6552f42cff21ecea9b0ddcab95aa0f", + ".git/objects/97/0a069117766a3f3559d28d333f58db84f27dd6", + ".git/objects/97/398d32b45ccb7221b69ec7a583d7121371399b", + ".git/objects/97/4503185741082ed183c66399f499dbd9aa132c", + ".git/objects/97/47da260f9af9f6f2cec3d20d9775c7b1dce91d", + ".git/objects/97/71a349e351a99ccc2e640bbccf232ebd99a1de", + ".git/objects/97/771112249d8e2da76d2477c719baa313d0c413", + ".git/objects/97/7a92d9e159b8393e3c526e6bb241d4dd5b388e", + ".git/objects/97/8152123a5af83101bab9f5d238b132bfa66bcf", + ".git/objects/97/8798721ab6ae18712ec4fdce1a63c44d49f7a3", + ".git/objects/97/8864fd61e2b54637ae364a46f39a3ed3379fbc", + ".git/objects/97/8bbca964a83fd63b3f81c674881b771e0ef875", + ".git/objects/97/94d103a82da39ebfb94326bb3f1303cd8f99b4", + ".git/objects/97/9642f3227f695307e8cdac988e718b104cdd8a", + ".git/objects/97/97f8fb8a85f485341ee17bbbab9008b7fea824", + ".git/objects/97/b00ade5f68c3335f6ff6a9619eccc7c8b3be9e", + ".git/objects/97/b509066341a4c16a3ffc1ff1e98356246b890a", + ".git/objects/97/c577e5ebbfeb72fa83d774b8bab00322821717", + ".git/objects/97/f0b8a6791dc756b3d83ed1467d0e820326d8f7", + ".git/objects/98/062e624704ce0e01e2b3d8e4ace77d94f6b32b", + ".git/objects/98/146c26878f26ee2d7fff41e4f23e7578baa08b", + ".git/objects/98/19152a69ae7d3661f1d9986147990e46692860", + ".git/objects/98/1b9a2983b567c9e61c613e5de9f5f6b0b73b05", + ".git/objects/98/2c7d942829f34e68e91b93e2a04ae2a4063531", + ".git/objects/98/2e14e4cac1b95bd8bcc328ab23fa26ea3614e9", + ".git/objects/98/2ebfe14b88d135e291bbb149f71cdfce28122d", + ".git/objects/98/3e76eacb39c2991dbacd48579e983bb657dedf", + ".git/objects/98/4ff3ce739c14c0fcaa86b1ca21dc16410f14d1", + ".git/objects/98/55a17bf4266c6155be9dae4b141439e0bb8a13", + ".git/objects/98/677e85c4076ef7bf7056e835d07161e48da014", + ".git/objects/98/7623cc5810422af3e77afb4f3b75a0d38b06b0", + ".git/objects/98/836d3917fbfa0f0b3618b4546a1f1429c3fd02", + ".git/objects/98/9d14908c22db6c237e4c5ada4c8b41bbfc901d", + ".git/objects/98/a5905a9af817cae7c70be8bda4011d4b1a71f3", + ".git/objects/98/aceeb285a6a7a2d69fa084fde6fc2ff2eb7122", + ".git/objects/98/bff3f2cb22a15161487a09b2935ae2d8ddf0b9", + ".git/objects/98/c1b5d91398088f6cb3d89a9a1c2ad5f50dde28", + ".git/objects/98/c34c09e5d910ccc3030da2fdd7fd2882ce3f6b", + ".git/objects/98/c6317c31eea289849598dd740a54f7ddf7d121", + ".git/objects/98/c634d80408a00b7cdb23fad5df7a8afcb556d2", + ".git/objects/98/d1ead6791f6487818878e43711cb77100c0faa", + ".git/objects/98/e9eaa1dfbcae1f1a38c466d4515f9d60054c21", + ".git/objects/98/ea9abe6c620caee62e34888f4b786abdd3070e", + ".git/objects/98/fb7a46889409e2ea071a15520d0c3e0da83f19", + ".git/objects/98/fe5c6b8dcacadba8324a3a928d1c1b35b64cb8", + ".git/objects/99/0854cdcac3b2e5ab8eab87e648a13defa5f5c7", + ".git/objects/99/3f0ac8193f3f09df0ffe189dd8763585872d9e", + ".git/objects/99/4db618a4b924863a66ee3b133787211930f606", + ".git/objects/99/56f542b93783f4f3fa40ad38df739b8e367557", + ".git/objects/99/5db4b0e3e6a0e27e9f80567ee2bd6d90a07b7a", + ".git/objects/99/6006785338ccaee912b8e1ebed0e09a2ff439b", + ".git/objects/99/613838a9fb82a09d3c1fe240a811360c3b5b5e", + ".git/objects/99/65a13931408fb6ee37f9b822b48b004f21bff2", + ".git/objects/99/65b090317742b60a58c6c204e14b7ecc159334", + ".git/objects/99/7508315a69f6b532d2d53ae016939a0b2c95b9", + ".git/objects/99/8c2ac9f0288416b1d541a3abaa387fd3f6c87c", + ".git/objects/99/aa0c75c65a40f1e0115f8b087790cc44aa411b", + ".git/objects/99/aa7d2a1944a9f162967cbbbab38d8d06080722", + ".git/objects/99/b59254408d1e5ddf01e14e56ee79281490c649", + ".git/objects/99/bd026acc26b7906b9b43f1fdb3118ef5a9f5f7", + ".git/objects/99/bf06d684e23ad29e179ceb1cff30915979566d", + ".git/objects/99/da2d073fa15d0013ea0bd6775870f78a35b048", + ".git/objects/99/dcc90ccc63373a1805b78ff4a08de289029503", + ".git/objects/99/e3b38625ffc9f8a873af94894f2637efb54905", + ".git/objects/99/e6b8aa315bb7e38f7f697299e07e1da9d312f1", + ".git/objects/99/f279b0988b9f642e930d99268f762392ad805b", + ".git/objects/99/f5dfabbff5fefa21bbd794881b1017ced03908", + ".git/objects/9a/01398f7d059e884718fa4ae67513861845fa9c", + ".git/objects/9a/0752c7e5017a4e545ccc3b6baa3ef11d20bf6d", + ".git/objects/9a/0b07418ee95983f783a8747dc5ce4132970fe6", + ".git/objects/9a/1836bc64aa09671e5f8eb9b1df7a217cd7dcaa", + ".git/objects/9a/19eb4e9a1dd360dc5f4df7d0082109e6d5108b", + ".git/objects/9a/1d156b5bfa7d2ef6497d2b0667eecb5f520e32", + ".git/objects/9a/222b5078c4690d8b69392c175769a3be5abb13", + ".git/objects/9a/27b6fc530246b5df4189eef30b44c8308fabbb", + ".git/objects/9a/3331696b3a74403b189d44eb89473200fb0c5f", + ".git/objects/9a/420ec3d5ab8c202c84eb09e0f8d0017d100bf5", + ".git/objects/9a/496fc46f5f38f966fadfa8d9d486d411742629", + ".git/objects/9a/6221e3b17baa7ef7a7a3a4e0c92775076ff73f", + ".git/objects/9a/639cbc342d4db989a4be8875eea482c9865b27", + ".git/objects/9a/6dc269314c71651ce75e2fbb2f65a2d01adf43", + ".git/objects/9a/709a88b656bfd823d9e75fc45ee7901b3a1de3", + ".git/objects/9a/716b582521720b13a3404201057f67494a8790", + ".git/objects/9a/7f008437ca0a1a6126755388814fc6006a9037", + ".git/objects/9a/84b3ade583171207ee473f7eec83f27c92f0ec", + ".git/objects/9a/88a3576d8dd3fccca9f100c03bec197e829990", + ".git/objects/9a/9e1a4d28cfb6e1d0081ba8e8d03eee00428f51", + ".git/objects/9a/9fb309e2459408502618b692542ac0cdc61683", + ".git/objects/9a/bc4fb8e7ac328ddc32820f94525d33d9fb7667", + ".git/objects/9a/d79ec2a43e7d4c3d4e9ffdd7ca57b4ba8340ef", + ".git/objects/9a/dc06b9578c112e37d4a631083469198704c941", + ".git/objects/9a/e2dff3899ae2af17eb713c1cdc1a9dffc52227", + ".git/objects/9a/e5f536ef70662efc7bb20dabb7c837f637afb7", + ".git/objects/9a/f27e6e28539fdd3107ddc39c47da26e2dce930", + ".git/objects/9a/f5523556e3939e9c75ef2672a1644d7d5602e5", + ".git/objects/9a/ff1188e84364dc3520d1088280ec2a3334872a", + ".git/objects/9a/ffea2b076465a48cd16c42fe27e90b678719e8", + ".git/objects/9b/02f9ed7762763e341e9acaaa45bd8fc5ce44f9", + ".git/objects/9b/03a4f60f0badcf5e38d1be773d18138bbe31e8", + ".git/objects/9b/059d561900aa0f974f550f167fd8b085b28eea", + ".git/objects/9b/24035a03009d7bbc0547ea2cbb32f5d2f9c4e3", + ".git/objects/9b/31ee66f22306cdefce9782d2991cde2a1709df", + ".git/objects/9b/33e84abb783567f435ed2ef4c9991136d8259b", + ".git/objects/9b/44286f2c4c07db498c6f380c1bdddc4c87882f", + ".git/objects/9b/5f386b236dcca4cdfcc2be1cad88b7fc0a2397", + ".git/objects/9b/5fae2119fa30ec9071f6771ea8df652d76e4c8", + ".git/objects/9b/7e0dac002cd6b5f7d3527aa7b191131647fdfa", + ".git/objects/9b/88994250be94918027a92f30379177b05fb4b4", + ".git/objects/9b/906b216d620c6c6458346a1ab1fa3dc33025b3", + ".git/objects/9b/926c0b3669dac5bd668fef6bf775198be8594b", + ".git/objects/9b/9b0bf7baaa85fca7e6c41abba42f6bc2ab9343", + ".git/objects/9b/b1b38e0ca5ff9ec34bdfa15432f399b2ebeaa7", + ".git/objects/9b/bd62025b1b6056bfbcae28416099a99f557692", + ".git/objects/9b/c5c26862940e74767215d446abce48fb167cac", + ".git/objects/9b/cee610b562db0c6593284f92c79e84b805c6fa", + ".git/objects/9b/d9391ff99c83009dfffa978245e36095310a24", + ".git/objects/9b/de2f77026267eee6114b6655f8cde3ed75809b", + ".git/objects/9b/e34fc7750b860d870eb82deb4684def0453d0b", + ".git/objects/9b/ef1bcf8191b5aaff7c1838baa623b668da02df", + ".git/objects/9b/efe7b74eff8d26413e3e507a375d20f626256e", + ".git/objects/9b/fa395a30df10b68b550b2b9aa8a556fb37b3fd", + ".git/objects/9c/02e2d08b9a0e7774fc1b6eef32d53d9d2b49ce", + ".git/objects/9c/0a9192f05a0e43789319e0978dd109decb534b", + ".git/objects/9c/10d82dfdb20887db4bfbc4a1031a833d8a7514", + ".git/objects/9c/157f7b3c4199d264affe7f6b6d19eab12db9b8", + ".git/objects/9c/1f1ab34e63fde16e781789de5bd5e24f617f1b", + ".git/objects/9c/1f3cc84e8f16535dcabae586e4b7214a406a25", + ".git/objects/9c/3cfd9e68c101d2faa11b96d2dd761b88041e6f", + ".git/objects/9c/62f82123054fe658720690e3eb7ad85205b812", + ".git/objects/9c/66905ed2df13088ce3062fa8fef12a8873e105", + ".git/objects/9c/8f0fe12f10d11ad90ce902f0e7eb767efc36fd", + ".git/objects/9c/a37512bb643478a59d3816686aa24bd45f9118", + ".git/objects/9c/e1efa20aed615a3caa422fd2d6d131ad972f98", + ".git/objects/9c/eb540c1659299b97cf8b3d089dc4a669312523", + ".git/objects/9d/016454116d967f148f804290ea17e135e84df0", + ".git/objects/9d/031aa7b9f8bac9d43c5de206ed7789c6550bd7", + ".git/objects/9d/16de8d01fdb6924797c4b8525c3ab6be65bf38", + ".git/objects/9d/2f97456f1c08b816d4f31d3c8a20069205897c", + ".git/objects/9d/357cc45aaa61bac2bd7f19662024352212dffa", + ".git/objects/9d/3e1f477c3b859193e5a02124b5d52dbf69510a", + ".git/objects/9d/54ca38905e375511edc26268916454b44e6d18", + ".git/objects/9d/567d6fba88ef85a44027f794cba55c0bb2ad5d", + ".git/objects/9d/5aacb1c584f831cb3b5224a0391a6f5dd2c5eb", + ".git/objects/9d/618c43ce8e8ee4bcb04f5fe33df3935432e1fe", + ".git/objects/9d/6b5f61a02545ad918d624fa242a3555ece25cc", + ".git/objects/9d/6c576417878f7cc2723b5a67191c155f9e5da1", + ".git/objects/9d/8771dde3cb76050000d412a818fbb7bc024bf4", + ".git/objects/9d/97e5ab523dd0432dadc6b4e5c85e7ea5ce7905", + ".git/objects/9d/99a380ad425bd9ef7ce80238455baf5f8bf0ea", + ".git/objects/9d/ad3ce13b114121d268c432f3acb42a64dba6a8", + ".git/objects/9d/ce5104c7082feb9189e843cbdc17441db8dcb6", + ".git/objects/9d/cf755beb077b5c5291527c4629a1bcaa10a022", + ".git/objects/9d/d9c51026a18929788a8cb2e0ddec7b6f004659", + ".git/objects/9d/ddd340edcacf6fe05ff71fd1c9480730d7e147", + ".git/objects/9d/e32875326eba14990d75cfc27a4e30ed1c2ba1", + ".git/objects/9d/f3b00c4edde7e135b5564a8f402db56c830f9f", + ".git/objects/9d/f813aad5fe6b66d0af99b99fa24124a0f6ee3c", + ".git/objects/9e/1792adb033d3769543720a828b13334f8b902d", + ".git/objects/9e/183107d50f9f0ddd472f539bac1f06637aa466", + ".git/objects/9e/18f12a4a24ea3977a20dd0b648cbdc2ff26291", + ".git/objects/9e/246179886bb6dbaf4181e7a126420d1ffbbff0", + ".git/objects/9e/475cacdcbff2d8bff41e60161180e0ed5475ce", + ".git/objects/9e/59e5e20320fb8cdc3e8862ba3f485c59bbb46a", + ".git/objects/9e/60f5624c0a638c9f53d6610e741b516c655f75", + ".git/objects/9e/66dc68935b1212b0dab3f2a0cd60786fb0dfa0", + ".git/objects/9e/681f9f40958a1af2f85ad0b8cdab79a255aad6", + ".git/objects/9e/76a2f6e7921d7112492332bd3da72c5013dd9e", + ".git/objects/9e/8434294bdb266f7b163827f50b13c601f5f6d0", + ".git/objects/9e/85050a68d93173f4722471ffda014f95438cc6", + ".git/objects/9e/87b8a7eeefbe01f5b5f8a074b78663ef5a643e", + ".git/objects/9e/8889f64e7f30b5f1a03e712369ae2f41d2c2c2", + ".git/objects/9e/8d88a94d5cbae7ae2f0ebbe1a083235a09aa1b", + ".git/objects/9e/9027608d5ddb4b0b0ce541d33dd50278358588", + ".git/objects/9e/9d100c475f85ce0ed8f9fa765914c697d24648", + ".git/objects/9e/a52b03260575526488b1c522007dc9773b8529", + ".git/objects/9e/a5dce6d64c6857e7cc3da87221afcf7c9b5a94", + ".git/objects/9e/a7ba6fc14ba69790a2ecb619063f8708c7984b", + ".git/objects/9e/aa292a37e6c14e490696ed751a65744c08da5f", + ".git/objects/9e/b1c867f0838a148040c7222f933fe00a5e01c6", + ".git/objects/9e/b69873ac3ebcdb3a892af542ee2529614f8f3f", + ".git/objects/9e/c95a1d1e7a1e4f49f58a567f3a2061f29a9ac4", + ".git/objects/9e/cd040dfb39b22dfce529a25510526f544314dc", + ".git/objects/9e/d4dff8b0d41950e2410234993414d5507a134a", + ".git/objects/9e/d5c67e9bcca1ff926eea1ce04e19b0ebf2c357", + ".git/objects/9e/dcb3bc3c8efd9720904d88fe5cbea863d7501c", + ".git/objects/9e/e73b49bc86c7c15a7d65d989f7100d33b711c7", + ".git/objects/9e/e9d22a59a581755bebe25e79deac176810a5b0", + ".git/objects/9e/fa95aa187871c9fad9d79da953d5cc2fa1018a", + ".git/objects/9e/fd7d89a196bdddc9e8c80052e0bf413a1b33b3", + ".git/objects/9e/fe63a1ffcb8321f71928c124e759ef19bc0940", + ".git/objects/9f/018ca9c80f341ec7581809813adb7b67cdbd69", + ".git/objects/9f/033b9a727e480bde02a34965bca84f24b1eade", + ".git/objects/9f/16e874df622bee7913bee5c15660031224700a", + ".git/objects/9f/1784ac104a942599b4802e0589f87ef234bdce", + ".git/objects/9f/1ace715d4023385116f6902e4d2cafcf81858e", + ".git/objects/9f/1fb5b82272b3ad64a66ac220c5f62128a00fbe", + ".git/objects/9f/23e7e9a8c27ea3def0e5a5f600b44c0e5a389f", + ".git/objects/9f/25f562e2a20ab151feb596cf79f59840527d74", + ".git/objects/9f/421b96f72be1d3b658cdd988fbd34c3fdb3728", + ".git/objects/9f/59d6cf6334cdef12e28f212ec37320f62791ed", + ".git/objects/9f/5b77bc6f1aeb9d78f2e45618b2e26d70119ade", + ".git/objects/9f/5e64428b1e82edb71691b6869567fe182db41a", + ".git/objects/9f/67bd95124d205e0d3a8bbcf6b3a4cc0ce16713", + ".git/objects/9f/681329e7b93e8cd8bdd643c54e20fe1c2a9450", + ".git/objects/9f/806ce6778cb769a2dd660d36e1c94bc34299ca", + ".git/objects/9f/82b2f2b47d859e97dcd2d6e59120e1bdb9b064", + ".git/objects/9f/88f38d5cbdb48ea2f0fe4c407c80a4ca6ac1fc", + ".git/objects/9f/8eef3b014ccf23d71d2e82452293ab55b5e556", + ".git/objects/9f/9316ee300393f719805c2117bda87e60388dae", + ".git/objects/9f/a19bc89bda512247c7b21ec44e3563148ffdc1", + ".git/objects/9f/a2c7d4303ef39e5170844b1b688d69cdf9f49c", + ".git/objects/9f/a4e7d12817bc2c5d65054fad366fcdf29b4b43", + ".git/objects/9f/af8b774a48282e059a4623d8deffaae3d08ae2", + ".git/objects/9f/b54f790528708e26b5ef5ddfbc55c8f904f580", + ".git/objects/9f/cb3a0f56902be08e4acd78a843a2732b3cdf29", + ".git/objects/9f/db13fb19d5a340d794f9fc3c007b8ee20317e8", + ".git/objects/9f/e61a0f9d3cbcc6763753517b73480e8940a0e6", + ".git/objects/a0/04f05f38153db0c04ee1c1b1dbbe0b5878f26c", + ".git/objects/a0/09caa8f305bef748bb129f5d14395da6caf43f", + ".git/objects/a0/09f899c9f082cb6c2ea32255f8d72d9a13f2ba", + ".git/objects/a0/14c3652de4b0b9e0ef3fcdb5d2f8c7001233e3", + ".git/objects/a0/601b5fe758bbd10007d74f289359886b44a994", + ".git/objects/a0/682912c5c70928d698f574215dd06c36767bc6", + ".git/objects/a0/6c775a076fd205384f6e0b6fd0761b1e316d7e", + ".git/objects/a0/75e62452ee7fdc4114197cdee6ad6374a3e7ba", + ".git/objects/a0/75fbeee3244f6618cebbf262d6ca8463395d69", + ".git/objects/a0/8215ecb36de014aa9e67d9a74578a4e4bb793b", + ".git/objects/a0/92e613191af3f95e69d0337622108cda916905", + ".git/objects/a0/9aa9964d2b5e1e807121de22067c447ddae09c", + ".git/objects/a0/a80bf18689de617ccb2e7ac6d4fe2febe01ded", + ".git/objects/a0/ae909359405ce7756c99b16a54035fe0267472", + ".git/objects/a0/c4d8858769ffb1a37cb0568261d7fcfc8e0b24", + ".git/objects/a0/d3cf8ab833b8eb5fb4d3b57d385f87eae78ef2", + ".git/objects/a0/e35564b8107a254065dd80e1b5011186dc283a", + ".git/objects/a0/f0b3b9c07b2bbe160bf96adaf8957755c9e10d", + ".git/objects/a0/f285b6ff7d02da6d69f9189fe18ce6fb00ad2b", + ".git/objects/a0/f66ec3e04424135f60224955e3c2e955d39355", + ".git/objects/a1/18718af0df5548034dafba26b620950ba10f59", + ".git/objects/a1/216a8485c3835e2e782196883748163837db3f", + ".git/objects/a1/24b2e1ec58f24dfaece95bdc13baa84d747591", + ".git/objects/a1/28bf4adfc4ae2a0bb28d2ff280217e506c00b0", + ".git/objects/a1/2fc1d0b6e8ef4da7d3cbe3595638e5ca2ffba6", + ".git/objects/a1/3221381798ac14d16c41242fe738728f0a795e", + ".git/objects/a1/33027e6e2de4bbcc79c86c6b1b18a9d41e009c", + ".git/objects/a1/6130082dd33b8c2b570cb1fcd7eba24aba48ca", + ".git/objects/a1/68d20d29daf702725cfaf83cc2e82edb1cf59f", + ".git/objects/a1/6bf5c8b5658ae6dc24fb41b02e154eb775b8a8", + ".git/objects/a1/84745e103756b8a51454733e3e7dcd5f9ea740", + ".git/objects/a1/86e5f0b2710c282ded465a88af16981a309825", + ".git/objects/a1/8815ff60196ed8d971df7f1229cfa38b6001e4", + ".git/objects/a1/89c507f11f0b09711e8943a0737b0c57f5ce90", + ".git/objects/a1/8f97f1a8a60f8a250cf69f7392f2309d6e64e2", + ".git/objects/a1/90a367432f5dfd65519748c0cda8c80d275a10", + ".git/objects/a1/adc8edbdbf13336d1e1381197c1262c66d7df2", + ".git/objects/a1/b006c2747c3de660e956eab7fd101375370c3f", + ".git/objects/a1/bd2b27315863312fafbc88c78ae77e51b34622", + ".git/objects/a1/be138a1d60d638543d5e8fcfcf8e524dc6ab95", + ".git/objects/a1/e01529da97ac1e1bd7938637a07b55b5b10aab", + ".git/objects/a1/e7b7e00d3298d6dc8040521d2df8080c81ba90", + ".git/objects/a1/ec745c47ad8d70a2fb31dd0c4f5bed6d2f29bb", + ".git/objects/a2/0466f4a3898d26ad3de3f0fbf120540d51213f", + ".git/objects/a2/13663f16ae67e7fe4ce6b388d5615f093ee1bb", + ".git/objects/a2/2341a3b4c20b59e93e0b9f205b753adde10c85", + ".git/objects/a2/249438c737cb2e97065d3a3a8dce4c11af58d8", + ".git/objects/a2/306e7a1f29908b29b7dab50b916ae55f1b53cb", + ".git/objects/a2/3309add894a79a8052122f982a3149d224ac51", + ".git/objects/a2/5fcd803dcf363550604a12622a4b7371f159ef", + ".git/objects/a2/60fcb40b7e4916a381c97e25537fd6e2b12795", + ".git/objects/a2/686a8b3e67607330f96dd128b59e3c13de4a43", + ".git/objects/a2/6933a88069fcac5ca0a603b3a9bc20ad99bea4", + ".git/objects/a2/76a0fab845a6b485ec862d6a992abf3e59457a", + ".git/objects/a2/9e238cae160544a5a4d977d7b2c7ed2ca8d417", + ".git/objects/a2/a709de300a12dd85c6a9cc16646685791c412f", + ".git/objects/a2/a904df18b2a4da5893a06adc7682e4e38c6ade", + ".git/objects/a2/afd71ef403d6b3470e0e87f460ff7a600dab96", + ".git/objects/a2/c5bff709fd08ad7d2bfc79769db57e1d4b4974", + ".git/objects/a2/e3da64d2c362e5a4bef89e0303af2fda86e76f", + ".git/objects/a2/e9277d9b3ef63dbe0e4293510b732d70b17ddd", + ".git/objects/a3/01b4e2a4e753fefde55a93d08aaefd9ccef52e", + ".git/objects/a3/2200a606b81195017cf031df6f04672cf31ee3", + ".git/objects/a3/23446e69961c85111aae7ad0080b315615f12c", + ".git/objects/a3/287f4fd92939e74039d5c6fdc5cab3fc8b0d22", + ".git/objects/a3/30f4fe714982244d359fcb891a577f899bca87", + ".git/objects/a3/3cf504416409d93d06791644f967b5a927b56d", + ".git/objects/a3/45aa4a3b3c26a487f8b3c48e88d26428eaad32", + ".git/objects/a3/47a932ecfeae19a58f82cbd67194affe688383", + ".git/objects/a3/497692a16a3453e321ebc92d7841ef2580b00b", + ".git/objects/a3/5592d01f86286158b857c85628459f26b36526", + ".git/objects/a3/57acfb5ccd23467efe71d0fcbb440e99a11c5f", + ".git/objects/a3/64a74aa4f02dcc768937b7206e23c2f343c274", + ".git/objects/a3/681de629bfaf281e33eb6cd1fed5f8cef71a97", + ".git/objects/a3/6b7f2033ff39e40d005a35adf77fb065218046", + ".git/objects/a3/7631b8129623dd8f6b384e22c08cf8a3001f84", + ".git/objects/a3/83347a0ff6bc6965ce9abb807755d72f541f9a", + ".git/objects/a3/871c4b9f252ab3943b7cbdb0c804120b75a398", + ".git/objects/a3/8eb6bfc2446995528aa1d965f029a6c24cc58c", + ".git/objects/a3/90ecd38b2e0e25c9e6013276645fd82c378931", + ".git/objects/a3/92cc8f465df5e94bc48e7c535e0f054adc2083", + ".git/objects/a3/a3dd74da018c0a42c9b59c030921de52668efd", + ".git/objects/a3/a829f017499a0779fc19cff0287bf3d172624f", + ".git/objects/a3/cf844b2d9bdf756dbce44dfa3798edd00d9ffb", + ".git/objects/a3/d2c53969385b8d02ccd09dd05382d7d010a2ac", + ".git/objects/a3/d604736ed95e07526eb7611c239f296b8cdb42", + ".git/objects/a3/e14e89e91dcfcf729dfa83a763aaa89d08f8e7", + ".git/objects/a4/01b885b0e347f564b9aee4d5aed95b60f884be", + ".git/objects/a4/15cac671a58a6ccbf865ddde47a163f47d7196", + ".git/objects/a4/2f6f2c3fb9d0cb7501d5dd8aa3fa69c9c142ed", + ".git/objects/a4/326a9c80b097d252be04975ee661fd6e656a80", + ".git/objects/a4/3b46287c28d3fe73d5664e7a2d5a6ef42482a7", + ".git/objects/a4/4679995f9fbf20fd6f0c8037f6e8ccdee2cb08", + ".git/objects/a4/7207de289b8084e7fa76a51fe2a9a699858e3b", + ".git/objects/a4/73e35366df19b7cc6d386d94ce62176891ac61", + ".git/objects/a4/751f84adc0920c1c7bb6d12753ef39dc66ac82", + ".git/objects/a4/7a45f0eb522042dcccb41382934f4273b19912", + ".git/objects/a4/7a63dfb4e4d74e009629765befb7e92ab11199", + ".git/objects/a4/822a211e1266e8d8d2c88624b7960efc374e7d", + ".git/objects/a4/83e7d86ee52cfbd1b62980e9d394586a0b1ec1", + ".git/objects/a4/928674b4387b05e567449dd21acc1373faea51", + ".git/objects/a4/95389ffd3b6aeab196d5ccd27ea0f6224a9525", + ".git/objects/a4/986da5599c29e420ca98c13b40306ebd1ac1ff", + ".git/objects/a4/9c87172c7be71d9b4d6a1db1e929aefb657ed1", + ".git/objects/a4/baf99b5831b975efb5d2b4c97986ab5b59a7e1", + ".git/objects/a4/cc87f52c21b4c809911a89d3c5a7135a4f485b", + ".git/objects/a4/cffed1449b9cf7f283d9c0b23be60c1edabdc3", + ".git/objects/a4/d5d476a8c0dc04f62b9cc57254d64f8df2c72e", + ".git/objects/a4/ec0e23f02b5412582000d3155d3ce10bb5e3eb", + ".git/objects/a4/f7859476a438e68d9a078dc8a2de080c424479", + ".git/objects/a4/fb93cfd736914a42ed5255beff052a8cfb36b1", + ".git/objects/a5/03f56073c41729cc48bb68a5d6ad8c5f3fa353", + ".git/objects/a5/08700c8cce04e5fac3e603305608d4433027b6", + ".git/objects/a5/13fee1757830857ed0f2e13fcf249641784627", + ".git/objects/a5/27325a4b69e36b5bfe04b530ddb9739b84a520", + ".git/objects/a5/35627d64f64c3b60a114a94f58cfa155822752", + ".git/objects/a5/4e15fadedf210ffd900690fe4778e1cd520079", + ".git/objects/a5/5cb6b641b897cd6c0866da6c82fa541b81e353", + ".git/objects/a5/5d0b13fa40a253c946e47eba71a9d41e7e1e97", + ".git/objects/a5/7025a40f5661832c0a7de1b6370c69f45bda77", + ".git/objects/a5/7b28a2e54045f463cff72de95cfc696128f7cd", + ".git/objects/a5/8cf84e8d8fbc8a865cf785e06864e8239726b4", + ".git/objects/a5/a933bff5f47a83c59e4853392ed8235a139d19", + ".git/objects/a5/c996a5fe004d6a85710083400f57393a2e6bf6", + ".git/objects/a5/ca43ddb2253b3172eee43bc067bc5940e12382", + ".git/objects/a5/cd5be4a024f870eed8d614ead2c76713b0831c", + ".git/objects/a5/ceca8ef26614969a85302cfcacc0d225abf475", + ".git/objects/a5/d0c24d225707277fe30f7d224c23bc575c1cf5", + ".git/objects/a5/eb6a70e102ed8a1fd1d1721fbc59ef4044c10b", + ".git/objects/a5/f011779d24b3b9ddbb74f21abb20f97724936d", + ".git/objects/a5/fe3b4b59ca53dd09fb0cc21ffa5f599dbf99fc", + ".git/objects/a6/04361d912e87c1e1215ae408876ef835843381", + ".git/objects/a6/17af2358f3528daa68400c05b2ebfaa2607d57", + ".git/objects/a6/1ad551bbb07ae455cc640fa6cdb08e4f71d8b0", + ".git/objects/a6/313a4106d3e9dd755d0defaeeb1d129bb48055", + ".git/objects/a6/391ce901bf343ef37cec23a58c6849d18eb6b9", + ".git/objects/a6/42f25854ab2e6608117387fcf909ffc5386a64", + ".git/objects/a6/4689ae83b3d2a331bec8f24e97b16c9a2c16bf", + ".git/objects/a6/4b4b6991c39953c719f9e4cad1741c14d033ae", + ".git/objects/a6/5d37403f592184d6ca60e12a4eb1a3553975f8", + ".git/objects/a6/5fb56f776f91fd0a96e370780c7861ceea8e69", + ".git/objects/a6/643854853bd66aa597b06f58adbd6417604fa4", + ".git/objects/a6/6b81db7aa77d8e319b3654ca9c5fdfee542862", + ".git/objects/a6/700934a79eddafdd7dacb137b3d440a369d087", + ".git/objects/a6/7968ad2bd9cf5a0ac2c556d1b47b0cadec654a", + ".git/objects/a6/815ba5aeadbdc2b4cbbd694edbd6d711a5c44b", + ".git/objects/a6/8447d341d02ddcc380c0e105ec4536e01dd500", + ".git/objects/a6/8b222773854afc98885e054df3321e8a3228e2", + ".git/objects/a6/8f33003566ddc7d7cda4ed9c300ed5b395128a", + ".git/objects/a6/a28d32b22b9c8e98a7127ca8aae26b06b39404", + ".git/objects/a6/af7f9385fb1891fed0ea209caaecbc14b3905f", + ".git/objects/a6/b8d68d7e479f5a83dca04b722d2b14654153ff", + ".git/objects/a6/bd322d22071d300d913e465b2f259cf70392c2", + ".git/objects/a6/ce32670a4d05dced6785a96d5a73a067e50c67", + ".git/objects/a6/cf82211783eb4e436a032bcd5b80bc3a797de5", + ".git/objects/a6/dd312a47815d8979d17f78f784055b1f79bb72", + ".git/objects/a6/f18fe0d21c87fe75920e6cd8635035276232ec", + ".git/objects/a6/f4ccd6e4cdf79ebace0ee16ba417b3505fa891", + ".git/objects/a7/0a61c4f30b4b930ccfe256a76f98154423321d", + ".git/objects/a7/1aefd11f67efd9573c768b06c5d640ed50fa0e", + ".git/objects/a7/1fad8183014200c0ff4dfa57d137a8bdd8f83b", + ".git/objects/a7/279a243d0713c7bacf38fa9133545b7686a45a", + ".git/objects/a7/2fc23ca6efd5d8a2979ce287eda90356b6b709", + ".git/objects/a7/356f8d5fe4995427471ea4bc5329306abdf663", + ".git/objects/a7/4a9433db914d3c4b9118ea7e3782e2c281ba5e", + ".git/objects/a7/6301b23ee84ed5cf86d3359e2b4e8848bea701", + ".git/objects/a7/769e2e6ce95f1eedc8f18a7f97ef69efa4bd63", + ".git/objects/a7/790e3e308d8a57288b5ec4d075f4d635fd10da", + ".git/objects/a7/7ca2185d9983cd6bbd5ab396e5ef9e9184e7d3", + ".git/objects/a7/7e07cce35cd336b9ca658cd5105121590cde39", + ".git/objects/a7/911ccc74b61e0743466fe41a1b92b36a1ae773", + ".git/objects/a7/9894a34160c5d753029e6dcef34751a5df24f9", + ".git/objects/a7/acf4e4af45e6a6673538bf0177e451124cc55b", + ".git/objects/a7/b1fdfe0c7c1ca910d3247361127e5e0f824d5b", + ".git/objects/a7/bbb82069c06e5f6f0b3273f4fe1817cfa3a7ba", + ".git/objects/a7/bedb329a032c1389544847e9420274f4ba3a2a", + ".git/objects/a7/c96f7f2b36f149224c2521b21d53b8de0e3cc4", + ".git/objects/a8/26b94f8ab9ab33192f10dbf7712d7ad4cb97d6", + ".git/objects/a8/41c6036e8a4677966c371dfeecd76641813018", + ".git/objects/a8/42ce1986d3d0a84a44c4dbae33e61ae72bd359", + ".git/objects/a8/43b82786c1e3faa55f9534be93ade75d808d4a", + ".git/objects/a8/4dee9b7aee4680736068d050c68ea3edfba644", + ".git/objects/a8/4f89ec2ff9b8dbcee1d06aed19175c6e267094", + ".git/objects/a8/54448d922d58214e6e0263ca6b8a5973d8ce57", + ".git/objects/a8/5461d503c843a8aee2fb51f67dc946c8c21809", + ".git/objects/a8/5a81b6b775f0b1f28a3f15e6de40942bcefa2e", + ".git/objects/a8/63063b33e8636e7df4250937596f6aa37ffd11", + ".git/objects/a8/7a417065f3b9ac04e1c644335f945004a25b84", + ".git/objects/a8/85916ffb83a7e2bb91682266b51e5ac8508e0c", + ".git/objects/a8/863a8b38748b0bbaab0bd4829126b0ebab5334", + ".git/objects/a8/86c8b269cb8394c58043e4f8d34fc3da964a17", + ".git/objects/a8/894f50cf50c1037fda366275dfdeab8fca3f5f", + ".git/objects/a8/895cab40b89843a8fe55a2b9891da9d9bbc200", + ".git/objects/a8/8aaea09f060151f2fe37a9937401cc08082a62", + ".git/objects/a8/9493dd6017b371bf87edff0472b5081c5222a7", + ".git/objects/a8/94d497122bccedec7a365e80d354fb3999bb6a", + ".git/objects/a8/99b373c658013fc65d7cb3af2fb4863e04b68b", + ".git/objects/a8/ad36d18b398588ec37e865c80a2444f0462939", + ".git/objects/a8/b63358a52648acde8dae74faea788edeeb8059", + ".git/objects/a8/bbf7f64bcb03b1969b58a1e52e491134cc0d15", + ".git/objects/a8/bc335b59409af913cee2e0b7b68efee000c12a", + ".git/objects/a8/bd4599f26e09ec7f5eb9404b7d8bf69458eae7", + ".git/objects/a8/c1f4b754fc50bc76c9ab86da05bc0e6a30e352", + ".git/objects/a8/cce61f8bab7c1f042d189b86818eee894475e4", + ".git/objects/a8/dd4bbfb5e2014e422f5d0a0046f65ff861f43c", + ".git/objects/a8/e87ea9151760a7eff3dacf4d5b4222f8903904", + ".git/objects/a8/faa674831795e5aa595fb2e43c1d96990b2117", + ".git/objects/a9/04513d392ab20cc08eea23962346d85e0a5d39", + ".git/objects/a9/0cf819aaf28dccf792cb58c45883f71f812d00", + ".git/objects/a9/12368d34cd79decd949a9dbccf857174927c79", + ".git/objects/a9/24d756921e56913e3b17f57797e0bbe73a6c7b", + ".git/objects/a9/25adbd73ed43ab26a5216f7c1db3f6098ffcd9", + ".git/objects/a9/382a937597c87c4ac2c95086981bce78eb1ff4", + ".git/objects/a9/3c14ec5985dfebc7ad08a1f44edcf37971b0a6", + ".git/objects/a9/3c9a4678d6e3961614a8e90214618d3045aaaa", + ".git/objects/a9/3ec68d9d428548a9415bbfa7c76196c3fc0aed", + ".git/objects/a9/5adc13d19a5ca768393ef00ba5d367fe97b152", + ".git/objects/a9/6a26e2a447bb0a4c045a3e79eba0182ae3e28a", + ".git/objects/a9/6dc4f6cb0589fdaff337cbab86e59c2bd1033e", + ".git/objects/a9/74a2c70e634bf8a1189a9734f94abf17d7f436", + ".git/objects/a9/94b45dd08201d7626cb9de5585994f3794627e", + ".git/objects/a9/a7f170f469d53af613bccbbbbe8d764346ae94", + ".git/objects/a9/ff78b37055fdeb8a3f6ee6b87a6603d3c38145", + ".git/objects/aa/01c7cb80f8cbffa59ee038f158ec648190bd05", + ".git/objects/aa/1193c61318780d4dac128dc8aeb5f10ca0fc77", + ".git/objects/aa/174042ed0a4fae22bba5f4074bfc0a364db395", + ".git/objects/aa/1ecaf9098775352ecffa9b60513e1a262491d6", + ".git/objects/aa/34c0c110995b04dcba1b7f560d85c94d23be41", + ".git/objects/aa/35c4ff65f2f0e96fd0bcf2fdb54b670d188701", + ".git/objects/aa/4c4926e354b1de7f71c7b84adc60dd012ebc7a", + ".git/objects/aa/5b5aea6d33751b9b1e03292b196c4ddda3972d", + ".git/objects/aa/636669686929595c4c9404b1456bc1d6539038", + ".git/objects/aa/6b3aaeda11446eb1cddbe87a2f9d87c9b83eb5", + ".git/objects/aa/6c421a135e5fd438c0fa7fc581ef69bd0b9215", + ".git/objects/aa/71a2e96779393160d3fcc0eada422ca72bd46f", + ".git/objects/aa/776d7fab6acf432d38871f05c448eb9ad5d51c", + ".git/objects/aa/8e00add1577b8f42c153cc809af1a03e31f0aa", + ".git/objects/aa/972066d3b102bd0ec5d9c7d4186f401cfa4af3", + ".git/objects/aa/a1b988d6eb58a0074c22bdba00ad8c9efe6e2e", + ".git/objects/aa/a9c881405fedc37fbd90d529f19b9517d44a28", + ".git/objects/aa/af6dbc8aacf19625b54d9ae629af2bbc8051fa", + ".git/objects/aa/c1269e74a5a58db108a7eeae32333f669b8b05", + ".git/objects/aa/c5cb1270ddc8aa836812835a407797fd84f3b9", + ".git/objects/aa/ccbe5e21e51573dc843a9d33bbb29f4d949190", + ".git/objects/aa/dc9ec3b35afe6c0960c9ff60aff43f7ca16412", + ".git/objects/ab/081c8e52e8425ac980f2238db7a891e9072b8d", + ".git/objects/ab/143fd2e5342107a2f20f89b8f89a6617f033aa", + ".git/objects/ab/1519929be1f8c000fae46f7808e260bcaea8b1", + ".git/objects/ab/1deeef47524feccafd609ea4a511abddc62e80", + ".git/objects/ab/1f80b2a8ec769d6567e051470d8754c3233881", + ".git/objects/ab/2db6c7535f009900d222b0ed6753274c703166", + ".git/objects/ab/31f7ee3370af478ba34600f28effefa8c566ce", + ".git/objects/ab/332f15f4aa7ff4b54318de44d0e917bbcbeb15", + ".git/objects/ab/33aac4a60ffe5678d3e8ad8dd4cb78d7f3e15f", + ".git/objects/ab/48899a40231918bb6f2c1e3a6e27d594c5dfeb", + ".git/objects/ab/540d5418c40dfb486f24eb01e6e8006ec02bc7", + ".git/objects/ab/566d2632bb24c0dafcf3b332d2edfc19381bcf", + ".git/objects/ab/56e73fb763b2c728c3fd0f9ee8c7cc88d89250", + ".git/objects/ab/5d5ce3617ca6928ef9e537aedc7ed5e3077f48", + ".git/objects/ab/60252d44aef4927e730814d93ae0f53e7b614f", + ".git/objects/ab/623aab95629ea844e7f3f9cd1d13a9f281099e", + ".git/objects/ab/81a132fea28a070a00bf455f9322202b6cd279", + ".git/objects/ab/8577b3947e94b6a004350dbde7095e63437270", + ".git/objects/ab/8862d596c2896b82870c08583c4aed0b873d21", + ".git/objects/ab/a6c82332d186a91b79a00c8f9b629eac7febf3", + ".git/objects/ab/b22a5c3c12b4122631512183e897fe5eeb85c2", + ".git/objects/ab/b61133daa7a682c85cb9a0448e26532988bd94", + ".git/objects/ab/d5affed29d9ee18a01ccf3241893f245211a9f", + ".git/objects/ab/f7cdb03d7271f3f05de949db22cb6d22165e44", + ".git/objects/ac/1b74931cf45c6c87daf16e32ada90d29306ccc", + ".git/objects/ac/29319f6d17976260ee62832cdb805ca1a06f6a", + ".git/objects/ac/37a836020be8a272dd8d01b7e3554c432caedf", + ".git/objects/ac/37c403f3cd604000c7d28f477e9e4f2164e056", + ".git/objects/ac/393c8cb59071e53aa2bec78b0214cc3ca28ced", + ".git/objects/ac/4788b482dc27785c1c4c09d57cf9ece1434eeb", + ".git/objects/ac/4b71485f61016b8f251172e177109381b4bed2", + ".git/objects/ac/58e01dd6608dddebd59decfbabef0abd9610f9", + ".git/objects/ac/7ed88401bc0244e808570a4251f26cf9353bcb", + ".git/objects/ac/8365149506ffd30b399af261c2e3dcd8fdf352", + ".git/objects/ac/84a65e507da50fce0db9f80df15a91a180b3e4", + ".git/objects/ac/8734e0c38202da1c2ec36e4766b92c460a33f8", + ".git/objects/ac/94b36f057cbb0ab466a87aca7f97e76cf7dc6c", + ".git/objects/ac/9f1cda0ee72b85d0229fd2fe70604d6363a6a2", + ".git/objects/ac/a2d376e63f93ab000a73b0f512f0ed721adc35", + ".git/objects/ac/ae7dc28b0015bd01d5bea01799929c2a194ef3", + ".git/objects/ac/bacd303cfb65b596a26e43393bd0687e1932cb", + ".git/objects/ac/c1e0328840df9b57cad4a6511bc2c00ebfdad7", + ".git/objects/ac/d44de6d4d08cce572cf171a2a5abae01de66d8", + ".git/objects/ac/dcbcb530110435c3520d5bc441084ea15dc1c5", + ".git/objects/ac/e5ec32ebfe09ef26a3cf6e68201e2d3dc0e6bd", + ".git/objects/ad/0508cc52c6226a4b58bd10ea93f85c16e25daf", + ".git/objects/ad/093bc1eb35ba688b4d30c1cb679dcd9cb5361d", + ".git/objects/ad/0ca862397abd1807f0d0cb6e2c84d981231bbc", + ".git/objects/ad/484bc9ec53c3409068109a46f8636dc8366b17", + ".git/objects/ad/51e62afd1f7a5bdeb97f85a7301e36a4f6f282", + ".git/objects/ad/5d40472893af6663fbb8c210dce36c7ddeac32", + ".git/objects/ad/6764bc1b28ecf7f6cad613a667b82247d3ddb7", + ".git/objects/ad/6fa8f94cc2262325363e9fb590213f9e66f04e", + ".git/objects/ad/74d7fb0708011ec1b04b6494204bf855258f50", + ".git/objects/ad/7fb65bafcc8b58998997cc98beea3f0c33118a", + ".git/objects/ad/87ef09ade869008b23506787cfe358b1afb483", + ".git/objects/ad/8c2eb4958bf082ba2662bf2774b741a0536997", + ".git/objects/ad/9aa78ba74a820ce46fb4552443bc6feaedff09", + ".git/objects/ad/ecdda887c7b873d71216bc892d47c103e63b18", + ".git/objects/ad/f0038452a4aa9f15b3c6c34079ac9db8fec996", + ".git/objects/ad/fa5ead244dbe9840a3bbdd7c90b74cbf011045", + ".git/objects/ae/04a74c7b1df365c15d2028d73564a6a0b79af8", + ".git/objects/ae/0a47dd97495e8bcf793ed1c254117bfc22f7db", + ".git/objects/ae/0b8da42cddae5b355c0b756b3e39c07b082a41", + ".git/objects/ae/0ef72e8808e666e59f85cfe9bd1c20b34428ec", + ".git/objects/ae/406e7f269824a419ca61cce693b5939aadba9c", + ".git/objects/ae/441e347eb2eb3c4eff286cc643c2faf36bb5a2", + ".git/objects/ae/58708a5bc335a2f257c4183ef8c96d2a7816da", + ".git/objects/ae/69dcb678c9e0dccd771cee659748fdaf01cd8c", + ".git/objects/ae/7cb79ff75cec5dce617b2db64f03984dcedf27", + ".git/objects/ae/7fb85d5d24f7a46781cee0bf4000307ecaf107", + ".git/objects/ae/a97d2231649943412483820105b51768e8249b", + ".git/objects/ae/ab260af4c6aaab7d370358328b7c4c94266aa8", + ".git/objects/ae/b4736649091406b67d0be25e81b92eef1be4b8", + ".git/objects/ae/b8f6acc0f55733118d9c21ac6324cec07552a8", + ".git/objects/ae/bb63bbcba68bed37d0662b3774cd6a742ce73d", + ".git/objects/ae/bd523f04f0775676d116668139bfb731e4499f", + ".git/objects/ae/c99e84a30101d2523bdbbb321d185f889b98c7", + ".git/objects/ae/d58682612c56a3a4c914d63be4faf295229942", + ".git/objects/ae/d9badf183fc6ce0029599a5178a1ff7793c42a", + ".git/objects/ae/e0ce4b3ccf9bc27a6ffc22ea8fb33d824f627c", + ".git/objects/ae/e2c055124fd93516b0d477327458787f78bcc5", + ".git/objects/ae/e9a0b404f23d4e0ccd4166bdfac5e9979008b7", + ".git/objects/ae/ebccac5f8fcc7e861a0f3073148911b0380f91", + ".git/objects/ae/f1825fb913868bcaf80c93e508288cbb24ed1b", + ".git/objects/ae/fe8ce0773b8e7a69c6e482fdb6291316d40d5d", + ".git/objects/af/19cb91a0d259cd761c856977669954513476f5", + ".git/objects/af/1c51c89155fe7e6bf382e3755ab706fed53abe", + ".git/objects/af/1cc9349ea11ca190567bae15badc6e42674e62", + ".git/objects/af/260bc315378be475efd71dd61b5ee87432c656", + ".git/objects/af/27f66d4ed29e5bcbbf850db877bb829d3e3c2f", + ".git/objects/af/30f65054b2e86ca45505534fe79476b5e0cf8f", + ".git/objects/af/334e2c93cb318cb06c9529f1763cd4f7eb1c5a", + ".git/objects/af/56d421f642ffdce90c349dad1565dd693038a2", + ".git/objects/af/5749840a6fea5a1cefa1a82e94830e4f4fcb7b", + ".git/objects/af/63577b6998f6fc1efa77933f756db9f4650960", + ".git/objects/af/67732122ec386b863671b5cb92e0bb695cfb36", + ".git/objects/af/6e25bab06ee930ed9d743c6e272aff94566517", + ".git/objects/af/88395db13cee7238057fb29e0ba3e4f3e1db5d", + ".git/objects/af/8c34dac651d6d26eb72e18af497157edba2c0e", + ".git/objects/af/8d65a30d7d8200e3c6190d7689a12e03a98639", + ".git/objects/af/8e5668b46193d453d6895f878e786214c13ce6", + ".git/objects/af/90c5d17058af24bc5dd4f17b0eeb1ab9839670", + ".git/objects/af/9238c3c9ac70358cf68144298d6a7a61aeeaed", + ".git/objects/af/a4b27726dcb7ae9af8876136c6a06631ded5f0", + ".git/objects/af/ab67e13c7881e05300e7fdcffdff8ca868d701", + ".git/objects/af/b0327197e363983c2d2fc44eb24a59a0e71643", + ".git/objects/af/b84ffd6ed14fc514a4fd5dcef74ea2d07b9fdb", + ".git/objects/af/bb4d25f16cf95e41ba205629bfb87385d2638c", + ".git/objects/af/d528166e1d992c70e4cf98b21f17abffe08aa0", + ".git/objects/af/d8568e1939e6a835ab9ca378023f10c0fba8f9", + ".git/objects/af/e3b4450d71beea96684cb8287d631a8027b530", + ".git/objects/af/e84eb344a883a5ea4030c8a192342f95921229", + ".git/objects/af/f59c0e83ca97b5d0bedb34f0d0f5558e677607", + ".git/objects/b0/0d8092f8930a04bdfc24851046436ccc08b916", + ".git/objects/b0/3658dc9fc6d3bfc887b079ac4157e5d1db3b06", + ".git/objects/b0/5371bb72b02b2f035aafa323e4a0795485f9d8", + ".git/objects/b0/702c928d0785ff2f813bd98af79d398ae1578b", + ".git/objects/b0/7501b324d93ea087e6d0a38773bd2352642f87", + ".git/objects/b0/76e274cad6c8ef12ac1076e52894d220cdfc5c", + ".git/objects/b0/8f5b61a3afd64234c41f9f3a8dc2af78713e35", + ".git/objects/b0/90bcf081e96a76ac0ecdbad4da7c7cca561290", + ".git/objects/b0/9a5cc34968a7e9ddbbeda0ccbf8e23e01947ee", + ".git/objects/b0/9cff5cd726b074c0b6042dacf5a7b59511ae5a", + ".git/objects/b0/a11416a17371c54bc0b7e3abefd33986233b12", + ".git/objects/b0/a848d1cadf7e0a59c99e92212629edaa0d1fd9", + ".git/objects/b0/b8a011d119fcc9140f3263ba56c1db1eaa1e77", + ".git/objects/b0/ce73b45d891fcc99da9039c2a5d413f5ae2334", + ".git/objects/b0/e759f72762fa9b3bf6dc7a88dbd1387f7aa745", + ".git/objects/b0/f981d1992004fc9cb822aecc19f6d9870a8d90", + ".git/objects/b0/ff6f0c6910255a74d45f2068bc31503cea3fb0", + ".git/objects/b1/06a22c73d0660f8609842d9b9cbd0fa5c0668a", + ".git/objects/b1/06b84d5f034186513696a830173a2d70c627a7", + ".git/objects/b1/1677ec0f97c304cbf9cc42b3574478a2b2b9f0", + ".git/objects/b1/17a4e8ff2365227d4a9ff5480fd02431527669", + ".git/objects/b1/17a7f9712c9bfbf1a47c1dbbf568d1e2c4200e", + ".git/objects/b1/2a227e5b019fcbe14b46af7014176f6d713785", + ".git/objects/b1/2aa2e0a95593ee2e7048020aaa4f6ecb5d77bf", + ".git/objects/b1/2ccad66b07ac17906389ac02dfc760de0a5d68", + ".git/objects/b1/2d7532a5e7f4601b4281900a5e65bb66adbbd1", + ".git/objects/b1/3ce3f7e32be35c6467dcc5f9207974a5641c78", + ".git/objects/b1/56800703683445823c74891a7afd880754258b", + ".git/objects/b1/63a78736b7b4026171ad5796b535e544b1f21f", + ".git/objects/b1/71e4f00f6e3fe01b0aee0aae33760846d65f9c", + ".git/objects/b1/76563d6867b52ea1ce210fd52d121e50bf63ae", + ".git/objects/b1/818330fa22da28ec6b6eeb7698d7c3a631b233", + ".git/objects/b1/87c47cf018637bd23676e436ed5d92a47bd4d4", + ".git/objects/b1/9328705d1ba08a75144a58607b52cc3fd46bd0", + ".git/objects/b1/97cdb7b071c113b715f28b26d319d21914649a", + ".git/objects/b1/9824256585c251182f6c7e439fa297fd257ecc", + ".git/objects/b1/b3deb347edc9ee702efc995694d9e296bb54db", + ".git/objects/b1/b64c6db68a6a13f8dc41b61a223b5c702e45e5", + ".git/objects/b1/b9bdcdcf7907aadb817fb3b071b7f2bfb27aac", + ".git/objects/b1/c021446bc643d0c7cf272d02237dda778f91ae", + ".git/objects/b1/c5d0f30191d5b4f1c570f35163dd9bb2ebaf56", + ".git/objects/b1/c9fec3b80cee7d150ac54cc42ab198f30c2340", + ".git/objects/b2/0423401b1c8d74f76becba9fac3656deb23ae5", + ".git/objects/b2/044dad2ccc3825cf407d3c6004cb5ce0261ace", + ".git/objects/b2/22b291dae3b1abdc94069dece4eca8166920c0", + ".git/objects/b2/369466f823ea0d5e24f8027c2ff2160bedb23f", + ".git/objects/b2/3f5a02cd4c6302cf3d75503a942e3bc9ccbe22", + ".git/objects/b2/4a280c299762f45c485229523200d98751bcea", + ".git/objects/b2/5011c5b5a3d14d9e06909e286c48fad36f90f3", + ".git/objects/b2/55496233e6cb6f71d77684cddcc676cc376e5c", + ".git/objects/b2/56d982c7f2d965b842688db1d52e6fbdff3553", + ".git/objects/b2/72d72b913d7381cda1e0c2200aaece6291c72e", + ".git/objects/b2/745b9d0681cfb72025b3374468fcafc51d20a3", + ".git/objects/b2/831a813febdc0805144d119cff852c2889ed78", + ".git/objects/b2/851dde4af5c1314ab9bf9b641ed2c830adb0db", + ".git/objects/b2/99f8aabf9a1129f9b5be345df1aeea80aea648", + ".git/objects/b2/b1b562bbf3a48bf00e6736cda98c30539eb228", + ".git/objects/b2/b421bd3ab73e5a90856770000301368354b446", + ".git/objects/b2/bc005ed52d04e933759c29f94795419886e2fa", + ".git/objects/b2/bcb0665efec51d10f2ba132bfbca42cc7826d0", + ".git/objects/b2/bea30f6f3721fb7a9232a56b38b0d43488f720", + ".git/objects/b2/c05f9ccf125f458b8678aa95d4f015121ffd3b", + ".git/objects/b2/f9e07c374d1bc3d1b87089b87a60758f0cf272", + ".git/objects/b3/0c691bf23a285578f4adc96a7b60906f8f6f2c", + ".git/objects/b3/10f31accb988cb38b4e4888a817e204d9d52c7", + ".git/objects/b3/2b3f256343f15b75efc2bb17b3a8582426d914", + ".git/objects/b3/2fcc4f1db03622c63a0dc7f7df7954f8e84adf", + ".git/objects/b3/3177ecab9ca3e394ddca622c5c1717256828e4", + ".git/objects/b3/31cfed6057e3a72f911495cb8cb3e248defcec", + ".git/objects/b3/3e006188d9cbedd300dcfdc31ca5eb9436e617", + ".git/objects/b3/4ef03605176f82ef895c2a1374442f040d83c5", + ".git/objects/b3/53420c7c6e73d5e77b483082bc9f7857535b66", + ".git/objects/b3/55792d189669e6642b5b9d7bd65795cffc79b0", + ".git/objects/b3/58e1f5a3b0ebe9a0cfc5e7eddfabf33d165e0c", + ".git/objects/b3/5cf99acedb608ea02d676f97d02faed8d0ad90", + ".git/objects/b3/632572b575dfc591a9fa2f2c8a43601005e891", + ".git/objects/b3/6eba3284367e9549d55eb3fd6361e65278e93f", + ".git/objects/b3/7bdc076f4ecbdef8e6da9678df4e47ca559578", + ".git/objects/b3/8624d89e69a1fde6204d2639a85fd75bc8daaa", + ".git/objects/b3/bec834e6cb3063387c3be20dc975e81eb9f4ac", + ".git/objects/b3/bfbb0bf89c61507a51589ba45b83ac52d0bba8", + ".git/objects/b3/bfe731f3c88b1fb52c7410f1bc7ee4b65b7248", + ".git/objects/b3/ddeba4ad8fcd01afe02596d6649cf8e2d05b3c", + ".git/objects/b3/e679730aa2b49e7b19bdb361a6ef4d432c1c67", + ".git/objects/b3/e788e788bd91206270f351b2d045b5e5f8bcfd", + ".git/objects/b3/f674969b5682c2a3338d90812f4752441e03d9", + ".git/objects/b3/f6b5d201c10c3783012c4e700a9fd5e84c4d44", + ".git/objects/b4/08d2c61c52f001617d17ea91b17ce5ec093862", + ".git/objects/b4/0d740a449520e116185fefb7024dabf0b56c37", + ".git/objects/b4/1c219b007e9d4d8cb275b3d981da42aa7fd1a9", + ".git/objects/b4/2218c37710a9e5537324e72849c9f149b18ecf", + ".git/objects/b4/299cbfbcc7e123a60713c918c85bbf1fc9481c", + ".git/objects/b4/380038e7181bf05306648534e0d16338efc401", + ".git/objects/b4/3d1342e23de6f09e40679fb6ee34c43dec0e26", + ".git/objects/b4/3f88e065cd0122f7a0f83388b42ae8f56a2d27", + ".git/objects/b4/4701b86f3986416ad19a51f2b7c66bb4cdfd56", + ".git/objects/b4/4a9d8ae6f9a0101c58d029182c93f997c15b67", + ".git/objects/b4/501a470fc26400f566144851b42997bf25ff38", + ".git/objects/b4/5b3e711aa7d4ab78c6d0edb752b01eed97104c", + ".git/objects/b4/6cc76c427a77b15a9434534d0de907f734c392", + ".git/objects/b4/6f1ed5d9a5d00957d286c5571141ba017b824c", + ".git/objects/b4/7769c4b57da1b24a1999cbc1cf79abfb855288", + ".git/objects/b4/7d01c4f4ba1bf8b3446e4961862915075fea3a", + ".git/objects/b4/89f028cb9aeedb9dafb5f34f7d76d8d81127d7", + ".git/objects/b4/99d8d5dda1e3b367e257a47051c08097c2a3f9", + ".git/objects/b4/b837c146ab290a49ba12d8854c76b44681e4c9", + ".git/objects/b4/b898095e3a8f748eb01a0835e148b7548b4ae5", + ".git/objects/b4/d2668c68367e169d0c36e47444701ce70be5d9", + ".git/objects/b4/d284053039134ef64ca247508761f4ba219c74", + ".git/objects/b4/d4c990f0f5a0e8d75e6c194ef4de84ecd3ed2e", + ".git/objects/b4/e49c29fffe92f54573930abfb906b203549c7f", + ".git/objects/b5/001108857a6620d75318ce7a8252900c04c574", + ".git/objects/b5/04f70481fdcf123883b60a144563dbd3e5927e", + ".git/objects/b5/2978d4713e19dc31b49683835ec0ef90153a68", + ".git/objects/b5/2aa9a6eaae14fc13e0969dc83ac16c3a7b35fd", + ".git/objects/b5/2f990cc6e530e8701b2ba479009062997532b6", + ".git/objects/b5/48b05c924f310e15e7500a545f7cb0fd0a36b7", + ".git/objects/b5/4a98db95969367cdee2733625ebdcfd8f4f49f", + ".git/objects/b5/4cdcf2d1a1bb128bb7c918f90878ca47a903d5", + ".git/objects/b5/4d7e3e764b43903ebb81e11cb284a4aa688c7e", + ".git/objects/b5/5be2c3dc2bb4cb5c467d2aa4144bf00a42d3d7", + ".git/objects/b5/65ed7a7ffb9d3af9111128902dc7101f4def05", + ".git/objects/b5/69690414000606efb3059bbcd6a2db84776aa7", + ".git/objects/b5/6a040277080af01b41c0a4b9da39fa1973296c", + ".git/objects/b5/6b4c8fa7346a9adb8199aaa52f21415ce7738a", + ".git/objects/b5/7781ff29d8d84f15c64318a2aca9b9f3143560", + ".git/objects/b5/858061c5d987673c77faeb7000f84d3b666498", + ".git/objects/b5/85905be9c961495df3a8926804f9e28ddef2e6", + ".git/objects/b5/8e145e0c8e2020c9f914beefaa9f6a7db60bf5", + ".git/objects/b5/8eca491d0e03feb9514d8bc785addbd0c9ee64", + ".git/objects/b5/90fe5c03e1f79d8d55014167d57cfc2140bed9", + ".git/objects/b5/99ac7991d142f242add19e6fb92711e8d61647", + ".git/objects/b5/a672f8d3d30fb32d2d551580cb77f0a9761c91", + ".git/objects/b5/abd9bbc1df4852f5bfa6744a917a9b85bb5346", + ".git/objects/b5/b7c535ae04d750dde4dd9f96ca5d2f83be758b", + ".git/objects/b5/c1afb656a29cd7130cf01495a2435a92f6c0cb", + ".git/objects/b5/d4e1f3c61b709ffabf35a70a87a93fc160d41d", + ".git/objects/b5/df10e4ab50c171ac86503d6325c6ee44969a62", + ".git/objects/b5/e1a9e510a07e22de35a303a1a1b0d9f2834aea", + ".git/objects/b5/e2381c8fba4e03a25209bd2d4160728cfe3874", + ".git/objects/b5/ecf604ccd1855f59c3937f61dd4276e18d9454", + ".git/objects/b5/f693d4ab290ec7965d58214cd432bc9de0be07", + ".git/objects/b6/066561f057afd6c90ebaa757e4e54b56ab204f", + ".git/objects/b6/078530f4de92d371e467c76645e67d98a8a941", + ".git/objects/b6/09c5a2587ca4512d11200a37849f8893eda8a4", + ".git/objects/b6/14be04057402934897c2a4287a6db706481790", + ".git/objects/b6/20df306883c9f75e041e5caee135af74ea8bb8", + ".git/objects/b6/4285dfffe5a819d12a99b810f09f5d4051ea54", + ".git/objects/b6/571e05bb8fa814d50e249c9133aa1b4513ad88", + ".git/objects/b6/66bd7077ba1dba2076f234e69282b543925083", + ".git/objects/b6/697c05b84d66e45c154fa7ef1d6214cfa710fa", + ".git/objects/b6/6ee723f395f2fc9d9aba9ee89c5d03a111c1e2", + ".git/objects/b6/7dd0963bf5fb4d4b143ec05f1f058c3789f391", + ".git/objects/b6/89122cf14c93b655816d946be77d9f49df6d3b", + ".git/objects/b6/9437fc959e4ce354c4166edf4874761a7c4160", + ".git/objects/b6/965ed86a58db623008c25162b497cc1f1e5298", + ".git/objects/b6/a328945f9539c53f0008bff8936ed76bacf79e", + ".git/objects/b6/b100763fd056befbb60181c5716cb754c93fa9", + ".git/objects/b6/d6e8c24c176de7b0c04383dc7dd75a77a95e2d", + ".git/objects/b6/df14b0d7f16098b046ff4ecfdac9b496309d01", + ".git/objects/b6/e58e510ddfa258dead644e1b8ce6888e241db5", + ".git/objects/b6/f44ad83e0bb5bd30cff0b4d8fb4a3fd921d277", + ".git/objects/b6/f84f30ec111195e3c210e7f53def1ae660a3de", + ".git/objects/b6/fbb46e2fddb99b79413d70fc435d7eaee1d878", + ".git/objects/b7/0e1ce42d8614156c9227a36172257092743bbf", + ".git/objects/b7/133e53545c34c65e6534db777b31183022d6eb", + ".git/objects/b7/232d7525319a9061ac1da544dc4e6605526764", + ".git/objects/b7/3629ab14ec111a49b3f973c45bec5fa9cbbd4b", + ".git/objects/b7/38ddb5c9b50a6b45bc80d5672e856b502994aa", + ".git/objects/b7/391746ec92d41f18ef27488e633abaacb39776", + ".git/objects/b7/3cd90f1bae609c62910ca32b4a79cd765e2049", + ".git/objects/b7/3ee20d5d7ada99c85fa08f3b00f5b0cc2817da", + ".git/objects/b7/48ad2d2903271d769442badea1c4d587113436", + ".git/objects/b7/4afc5fa6f794ddb3168166c3715db9a157bc9a", + ".git/objects/b7/511f7916c8d89723b566b881728281e88d6024", + ".git/objects/b7/57c082faf4d1c3d94c1b1a343923aa5cce7bff", + ".git/objects/b7/68fc1ba501a95a85380f8da5d145aab7343c81", + ".git/objects/b7/6d824993d62a8c5741feaf5e471874d5609808", + ".git/objects/b7/823f385efc3836805aca46f1b444fc44ac0b91", + ".git/objects/b7/856361b232c10210509d75ff3da0787dea9599", + ".git/objects/b7/8755d1d0deb32167bf88c64f14774edcbb3a77", + ".git/objects/b7/9d85474d19e844b54a2c9e286a37820c3ca847", + ".git/objects/b7/b385041374d6d232c7d41c7f896823ed730423", + ".git/objects/b7/b5ede41f290ca571a041c2158e0f4b28560f89", + ".git/objects/b7/c57831b413fbca0dd36474a1202c18b73dba22", + ".git/objects/b7/ca4ad915f7a6edcda840028fd02e1f99f9bcd4", + ".git/objects/b7/d312bcc1dc075b572565df53570425014542b1", + ".git/objects/b7/e9e4f46f0bed218af94a3b436efeb3251c7efe", + ".git/objects/b8/2b16462133228d9dd555ae3df6f9cc82effd43", + ".git/objects/b8/2d07440513335691825757b691fc4ca3c74211", + ".git/objects/b8/3ad823ced777808c791f2dc70515fce5b8d864", + ".git/objects/b8/3da0c25795f78aab0390a4f3223c8d4b085ced", + ".git/objects/b8/41384ccb72bad7a3753c7af73a1accdc5c719b", + ".git/objects/b8/41f043a843ffdcfbc21dca9dac4e195dd1e756", + ".git/objects/b8/48b16175f970c4c5d55e86d6ac795139fd5af5", + ".git/objects/b8/5960de41b2a777f234e159b1c420f68609bfc2", + ".git/objects/b8/5c5f329eaf90a19703a4216f138bf016f22b2f", + ".git/objects/b8/71a3ab0de8919cec59a112f2e49365a5cff58c", + ".git/objects/b8/85db0c24a40d6e5c55b692853a88446fd46c32", + ".git/objects/b8/8c1baa8b182691e14c00bcc27b64dd46bf88fe", + ".git/objects/b8/95ae326c5e258f09a1999a9413b6a3716c8d4d", + ".git/objects/b8/a9006afb043e0f46845b0af5717fba06c8404a", + ".git/objects/b8/a9c1749076fd2ea2c4291d77674bc89e3d3fdb", + ".git/objects/b8/aee66247782bb4f5652665a09aa8434d1b9207", + ".git/objects/b8/c08585aa8b5f158e781d882985aa81ad2a0bf3", + ".git/objects/b8/c9992ca06c8e82cce25113a0fd34dd85c60cd2", + ".git/objects/b8/cf2ed58feca4b5362b940ea24029e1090934d6", + ".git/objects/b8/e23f34d925ada15c27197ac63604b90f687f42", + ".git/objects/b8/e783b029e12995e209e8b2e645b160c118153e", + ".git/objects/b8/e83fca0eeedb8250a95c9ef2205740539b10fd", + ".git/objects/b8/f0cd786860008840cd5d94262df5110ff72c7d", + ".git/objects/b8/fa6ab42de64633d44e0318d15e2161610b38d2", + ".git/objects/b9/100a947ec1938566e1c7f8bddef1c3f026864c", + ".git/objects/b9/168493d5947aa86c8f653f58d8c390964efb85", + ".git/objects/b9/1e6a94780fbe39675667163f32d07db9a74b9e", + ".git/objects/b9/2dcea5a761bcb5d48835122490d430909d6e4b", + ".git/objects/b9/31c06abf26ef25c1aa7ece93740fc704c6057d", + ".git/objects/b9/32224778ed8a1e0a73c2ae91866e0d8303216f", + ".git/objects/b9/49aef3c4206f016b4c64d51b9201960b005341", + ".git/objects/b9/5b02be9653a9755a47ffd8262673f39b1eb42b", + ".git/objects/b9/5bef33208c0c441f31c955d8f50b3d6e0ef876", + ".git/objects/b9/60f2fc84eb6f1b5df8ccc38066c1365ca0b857", + ".git/objects/b9/6dc6977a07d11134af4ce63c26fe9884a5693d", + ".git/objects/b9/76d823bf8b86b7f7cc8c712064977e2ce15d28", + ".git/objects/b9/8b20834096d92baef9d7925186d6097c1e9474", + ".git/objects/b9/8fa694623a83af275801d326d8e1aab193edc9", + ".git/objects/b9/928f0f342ef56368e953bfb91ca15219ec5ac3", + ".git/objects/b9/95df76d11e9922dd4f66b68f499519ddd28721", + ".git/objects/b9/a87884c2ee6f90054c3159460c07f54d645bd1", + ".git/objects/b9/b4437f1222c599d65fc6e74efaefb43f3a75b3", + ".git/objects/b9/bad957fc26c96527f27526f5e0ba0df3346c5a", + ".git/objects/b9/bd7291e143e9fc675454da612c69c176457cf4", + ".git/objects/b9/becf0daf4c0f59de53d18d2df19e55a090f06f", + ".git/objects/b9/c3c20e7a2cb38059fda7c88007d800d62898ac", + ".git/objects/b9/c778123431ac766966e14b8e281fa418afdfbd", + ".git/objects/b9/d611f2eb74f989e9999f40bd29ad62ce2d9130", + ".git/objects/b9/da880a337dcd1337c149062e49cd67d52ad476", + ".git/objects/b9/db48309ed53e450e63d8a8bbcca54d63b70212", + ".git/objects/b9/fd9a91304c93f1567f49e6ab10fa3178929a0e", + ".git/objects/ba/08d827b691e792bf62e1021f3eee130d1a661c", + ".git/objects/ba/0998449e0505de0143254583e6ad3d10ae44d7", + ".git/objects/ba/14c1d1e76e793e8e46c0ee7ffc784739d33640", + ".git/objects/ba/214e719c1fddc2f4bd8aa4574f06cbaea8dec4", + ".git/objects/ba/347255991c8349b4f4c0068e785c3b15934005", + ".git/objects/ba/4996400e4c88824bf6e2233f4ea32adb887945", + ".git/objects/ba/774b59b544a5c852868846ff6e9e46f18f2dee", + ".git/objects/ba/79c74edda64b32c061068da7ec12e4cffadc9b", + ".git/objects/ba/a30c2c629cf512f2ea834ed708d5a8958e81ea", + ".git/objects/ba/a7b311acd60bbb21d35542156665404c03078a", + ".git/objects/ba/a953105e91182fa1e00fc4ea3a4f01a374f369", + ".git/objects/ba/c300c1a3da36acce7c8750a4d8bdcd1c379656", + ".git/objects/ba/c4775fc6c40d691c57d1d3ce88e7927d33bf49", + ".git/objects/ba/c639a39166d95bdf29ed56f8e5ea9044962def", + ".git/objects/ba/c6770100aafa69cbee2e08a4743793e0202ba2", + ".git/objects/ba/dace233a8ebfd3f2cf54cb615bf8d5c51807b1", + ".git/objects/bb/0bc779c0676937d74b18b753d2cdb601d1c450", + ".git/objects/bb/356ddcd48b4ef439e2d263829ea416023c6c5a", + ".git/objects/bb/3b6b6f1126f982101aa7979478e4069933310e", + ".git/objects/bb/3ceeef3b77158fdd9756df08665551e603af6b", + ".git/objects/bb/424bdb105af7b44b42868c81e85e444ed24487", + ".git/objects/bb/46b8cff14aca5661b43bdc74725b79d27e0d0a", + ".git/objects/bb/4830d1217ffdbfbd3187f73c1b3dabba35245a", + ".git/objects/bb/4d32ba02655ef42275cdf34ed78c2f7ea85bf9", + ".git/objects/bb/53c93e62c2ef15e673a78dd95f058590e71513", + ".git/objects/bb/630cbd57a9951a7a627cd1dce2dfe6eb66a4e5", + ".git/objects/bb/6c19cd2a5997407901e61ef6df34c4635f44a9", + ".git/objects/bb/839b0482d9ea085010dbfdffb1d8425cc2b22e", + ".git/objects/bb/862d42763a68a17bd782147a288d0e77ebb74c", + ".git/objects/bb/9abd2f8344e114e1963171ab535fe155678837", + ".git/objects/bb/c1c228f262c8511a3ac38adf3f146540e67060", + ".git/objects/bb/d06d55b2d604d6ff928f69236065ec92b8a9c3", + ".git/objects/bb/ddf8bedea0d62420b27a4e463c70a035ac13c5", + ".git/objects/bb/f83f6e7c48a6685da341753c8914ffe956ef37", + ".git/objects/bb/fea5f1992d9522d2b65b7ae5cda4c82c71c91c", + ".git/objects/bc/0a85b63791c91c4c2c4d7552489ea9e2493a60", + ".git/objects/bc/11898f04858412c47fe351727fa64de5b41c63", + ".git/objects/bc/12f2a66f05411289c7b401da0fcfd94f6bc7ef", + ".git/objects/bc/192206587e29da0bf78218e05393b56bbcaa0b", + ".git/objects/bc/1a2a7d4ec04d1629218475b9bef8ccc69bdc78", + ".git/objects/bc/1af21c48a95916fd0e94ec3668c482da60be83", + ".git/objects/bc/1ce48632611dc68633e4575b86b2114e42247e", + ".git/objects/bc/234dfffba6821ed52ca536b738d28b37e3f30e", + ".git/objects/bc/34090636c89bb894c8d6562546650d4b004255", + ".git/objects/bc/377bf46ad423c9e3b83b29e3c23153a30e1136", + ".git/objects/bc/4cf768fa0b621aea93a2ecd2be93bf07e5d86d", + ".git/objects/bc/4e93e0348ab619572da689c7f36387257f388a", + ".git/objects/bc/4fd2f8cc65bdb739097cdf6f813fb482793343", + ".git/objects/bc/51b14c4d2e919d0dea80f4cc100c3fcadad1ed", + ".git/objects/bc/5d80f14162df2382bdc73fffd8e1b218819d93", + ".git/objects/bc/5f998e8debea94cd67fe86de0bde136464e6cf", + ".git/objects/bc/73d9232b876b7542fd95ba009ca95a1424e37a", + ".git/objects/bc/8668f68c20703a5ab6d0287acbae464e8fb388", + ".git/objects/bc/8e2f65cb5049a41bf432cc21d2fda5aa5ee2b7", + ".git/objects/bc/a84ab49375ffe4b210aea213038f82c95d1f91", + ".git/objects/bc/a86688f6cd9baaee3b34185e3a7437f7eb496b", + ".git/objects/bc/a944b7ee46ea4ac27200bf2b6464e6fcaefa62", + ".git/objects/bc/ab6d98aa42c1ddc88eb6bce5f6681993929efb", + ".git/objects/bc/b93910b7705ae16506a6d20006d69871dad580", + ".git/objects/bc/bd41b020276393203054d5edaaacd5c129f22b", + ".git/objects/bc/c3d98ccb21fad7b5d054cc820618b8d864c087", + ".git/objects/bc/cef1091c4efc6d125276c03a2834c2c76add21", + ".git/objects/bc/e9ed97e6e96a8473f77179fdb073b5f9ca9c56", + ".git/objects/bc/f47dbfcb90ea7316d71975aaa971068a5ef612", + ".git/objects/bc/fa26ce902935da6d3145cf709eff044ca6c729", + ".git/objects/bc/fd0fda74d52c59af3fbb91a5ea41d0879c4833", + ".git/objects/bc/ffc3af9cf24e088eaebc439e1d0c3c685ee3f8", + ".git/objects/bd/14ca4f34bc7454f0493bb9a2baefe87b484801", + ".git/objects/bd/22bcddaa4e8412ae1221f9b79ca9f91566499b", + ".git/objects/bd/242944ce6eb750e87eae7f9c8a26add6cb52cf", + ".git/objects/bd/2cbe8779144274c7b6a7a482b5f7eea5b4dd64", + ".git/objects/bd/34fb5ab2302b1475d264328ce01ab5614863f9", + ".git/objects/bd/39be8eb9067f295a85d143a4ac909a057b44ee", + ".git/objects/bd/3c48c5d31818544fb733e3ddb0e9b3b75a9cc9", + ".git/objects/bd/54f169731732e45f984c2d68984cd26dfa2cbc", + ".git/objects/bd/7074ad3d3e36e3bfa942b5f88751946e6bb495", + ".git/objects/bd/792a9dc80e4ce2e249ee47ecf51e18c0c05673", + ".git/objects/bd/793f8a6ac84d6a8c3a1ca4e4caf8cc4eaadb28", + ".git/objects/bd/8d5ceb207219259abb758034797bcc1eae7e75", + ".git/objects/bd/a336f20bcf2fb2cdfcf76490b5e2a88096f0f4", + ".git/objects/bd/ad9214e69d8b7cabfc1e682793907e75ac8312", + ".git/objects/bd/b80fd432c541eb988951a770667b224a53787c", + ".git/objects/bd/c89029dca8a464429c7feb4833c1c427e289d4", + ".git/objects/bd/db242309fa895b45a6969c0c753cbf6414a6fc", + ".git/objects/be/06a765d6d45f25a5bf7330b716ecff991ae007", + ".git/objects/be/0d04bdd7ea5f6eb37cebd4955d06039e83587b", + ".git/objects/be/0ee8d36095b99fca01298ece83ca60befcd094", + ".git/objects/be/1f734cab53d058d411b238f67d7112e5912341", + ".git/objects/be/3505aba37d84cfc189209d688402c91485b9ab", + ".git/objects/be/41e30fa777e8f1a622820c62edee98136ece2b", + ".git/objects/be/42e74377545ac868ef9fcaca0b11aaaba155ed", + ".git/objects/be/4e629e0a1ceb1147c2aff23695a5e644813ddc", + ".git/objects/be/7469076d59f8b7774041f8549b121e0d1d157d", + ".git/objects/be/828bb168cef3814fdf88706ac6aebcc98e6475", + ".git/objects/be/863e33d27c3278c6baa1c316fa0245a4cbcf84", + ".git/objects/be/953cf1cc2affbe0c96c76814837b6d2dbeb01a", + ".git/objects/be/9d7f2ecf3621406588bd46125d66873e5f4c04", + ".git/objects/be/c2109f0c40d5585b63f12a261c2fd454bcd63f", + ".git/objects/be/d521ab1716b748f14f384cc3aa1264d541a6b6", + ".git/objects/be/d9cc2979ddfc1b820e31165a7e19c550e47b8a", + ".git/objects/be/f6f4e8e785f0c9d60af5d8440f40712d6c4b1e", + ".git/objects/bf/0c7990c37b3e1f7662297a390c01a292db11d2", + ".git/objects/bf/0e0d048083014032af66eef5fc545969d3b4ea", + ".git/objects/bf/1dc267726c9a47dd885d647b90f5a7a2a1078a", + ".git/objects/bf/25eb6f191ffd7364f89bc2fa4a7214147257d2", + ".git/objects/bf/32d02f6a813a0a77b5baae0dd7f909c1676f3d", + ".git/objects/bf/55bde3f9c0211d9a90b8db00833e25bc66e683", + ".git/objects/bf/58626fc8a6e677a92c3c8b4f4ba8d745c220bb", + ".git/objects/bf/63602a41af6703b58adafac7bd48dac477dbab", + ".git/objects/bf/7183d8e1ed55fabfa11144877e207aa8e2e872", + ".git/objects/bf/7d5991e68806972700711b5963ffedc8c6784b", + ".git/objects/bf/8514804ab5371fe0099fa5d22f945c0161f207", + ".git/objects/bf/93329195c55bd8f64a8dc8ed89c65f3cca2139", + ".git/objects/bf/97f5052c5bf1e0f9b781d745e317b3de62c179", + ".git/objects/bf/a416ddaeadda8f9ae1286025f7ca5d3bb179af", + ".git/objects/bf/b0b084fdd2473023a6f2f6c7aa527a88d825e2", + ".git/objects/bf/b128dc0d7560626f87ad92ed5a312431f4c5c2", + ".git/objects/bf/b12e11f46853883e2f1b3f4e49d990f88e0e22", + ".git/objects/bf/b24b533c5097174afe93ff5bd6b93e45d8422e", + ".git/objects/bf/c8f83aca0527d3e8a22f1ae4568920298b9bd2", + ".git/objects/bf/cbd8360a99edfa1ef35c63d1c0d090bdf29431", + ".git/objects/bf/d088f82533b48a6aae3af249acf4a91bfe85b1", + ".git/objects/bf/d930edb292962f6224e3fdada6e84429aea8fe", + ".git/objects/bf/ea64c7375defa31681b2ee624c30188b344368", + ".git/objects/bf/f14cebf1a8739164699d3920b6be7221cd5a2a", + ".git/objects/bf/f326ff5a881d6c686c975e4e2d7c987b417662", + ".git/objects/c0/0ef11b433c6aee101181e6c7baebeb81bf9d97", + ".git/objects/c0/1a60509b81fd3cd4cc00520849fbab5dc19818", + ".git/objects/c0/1ce6145eeae73cbf060886abb8e3e331b0cbe8", + ".git/objects/c0/234c875f18cef516af5ed5f59d2f21e777bbf8", + ".git/objects/c0/27471297c27fda105fa0276220b3611fc23ab3", + ".git/objects/c0/344a5f3522f30d15cf0531071b360ff4fce366", + ".git/objects/c0/374b90a7c825254008b00a23fac15b448dfd5c", + ".git/objects/c0/4dafa5635fa3d09a080d59ca06ba991af1c239", + ".git/objects/c0/57541579528a07e7fa90c10a7346e59bbaf9fd", + ".git/objects/c0/58b60b670e96de60b194dabc7ccb4c192d718b", + ".git/objects/c0/58c028b7a3b3f2b568a721734dea721723cd6d", + ".git/objects/c0/5db8c721e59921d92079b6255376e3becfc369", + ".git/objects/c0/643c660fb811179dfbcd742004c87b1a92a228", + ".git/objects/c0/6de4bc915197c91c0d52e21ad2d9fb4d5bd079", + ".git/objects/c0/70e02a151bf9ab0ee3aadbc9c2275f5ca694c9", + ".git/objects/c0/7293673aaae656c4542524c86eac2a8ca9b640", + ".git/objects/c0/79821face982f706515d6bb4a473676f8a0aca", + ".git/objects/c0/868d83dc76b9fe894a6cdec32240ad93f01d4d", + ".git/objects/c0/8974ca3516f4d01d832e71eaac50a32bc03783", + ".git/objects/c0/a1dffd07429bf3c5fd6dfb46636a6017d744eb", + ".git/objects/c0/bf3f2338622118344072417c9812b571beab24", + ".git/objects/c0/bff052a091022778295706c2d01666839c465e", + ".git/objects/c0/d1eab38c7f0997b718fc17513fd01dc750ed00", + ".git/objects/c0/d2a53e39ed6fa07e014de427e265c18180d706", + ".git/objects/c0/db4ccde3844a9066be1eefdc9fa76b4c4fbb61", + ".git/objects/c0/e0c7e8c91d0c66f02ed4d8b42a54de62cfea9a", + ".git/objects/c0/e44be12cc66d9b43b236d077c40ff950f49195", + ".git/objects/c0/e4952b70d514ff60ef914c7ed0a9e92d491d94", + ".git/objects/c0/f01c85ff26eabc1a33adfa32dabd849914b00f", + ".git/objects/c1/01b19dfa2d9a076de5b3b7f180c9002f5e3643", + ".git/objects/c1/0487b6720bf8ebc7e3e3588a939634a16fae94", + ".git/objects/c1/1648f42523fbdb56872f74dfc262e3d400be93", + ".git/objects/c1/2ae0fa72c264a2cbedf676f2a6073da8d36d39", + ".git/objects/c1/2fb62b9d6475fc85be3790fff818806c03a131", + ".git/objects/c1/34c91635adcabd52ac66e9ce78ac856aebbae3", + ".git/objects/c1/52aa19d17a3151e2d67f8dbc19a569f8628474", + ".git/objects/c1/6ae321a8afb6fb5d7a27a271a9d0a340a6b3a1", + ".git/objects/c1/6af39c71c0c32b19d905e8eb4b4a3f4a623d25", + ".git/objects/c1/6bdfbab46d2937dd49460aaf95dec2048057d5", + ".git/objects/c1/777d6ef8d81dec1026ebe673567135a5f566e5", + ".git/objects/c1/79dd57ffc83c10b5aa4c128eb5633ae6d0c6d3", + ".git/objects/c1/7bac49aa1e5fecb0631ac74d1361f603c2827f", + ".git/objects/c1/7bd92324f210ff185facc60dd99b2b84988755", + ".git/objects/c1/80a6521cf64dc48737539cf8e12df13d4f30b8", + ".git/objects/c1/8310d3c9edd4935e389192509dc8ca5c94b26b", + ".git/objects/c1/8f47a0bcbe4f040e366a8f7b8c380c2b6e5344", + ".git/objects/c1/91ea6694f61ba7bda2ef2479af416f96d1d8d9", + ".git/objects/c1/9c088032dcbb31dfb2f3ce92183ac9e48269ff", + ".git/objects/c1/9f9a48e46dec577a3e9a1035d4ebeee9f50559", + ".git/objects/c1/a4c96b06e2ee00855a4eed95ead03659ce7397", + ".git/objects/c1/b39cba396c4399c5dbfb22a4eda1108271e813", + ".git/objects/c1/bc60dac59234a7b06dc9f411d2ad964c394ded", + ".git/objects/c1/c492a04ceeb5f5f8d1f50637924ff93aa52d0c", + ".git/objects/c1/c7c86a8a615822c8969ecf84c910a67b40813f", + ".git/objects/c1/cc84fd99f06d265549d3fbc3f1c7fc943f4f64", + ".git/objects/c1/d507b6605b17fcfd656f1d9f67bd66d621b5e7", + ".git/objects/c1/db0bffe5bdfb46f47222ad07b165365f744e4f", + ".git/objects/c1/e2798886179d9cbf8a6f35a19ed9a55558ca77", + ".git/objects/c1/e6557114b447ce6a1cd1309225d249b1a286b5", + ".git/objects/c2/0959f77c538511e7a154a4955d337758c491ee", + ".git/objects/c2/345f33c3e92509fba4b38fca98e1b2daafb2bf", + ".git/objects/c2/4fca830adde5825894b28646213490c4919d18", + ".git/objects/c2/523694b742e99ceb18a0c752d50cdfaf373f2a", + ".git/objects/c2/55b47972a733a0eb189aeaa2b5cdfe20039770", + ".git/objects/c2/8da4872ef72bf67fe059d792aec1ff49cc91e4", + ".git/objects/c2/aea9afb009af9cb58c831b40bc91332e30878e", + ".git/objects/c2/b2c672e2516942790465d5fba2b0640f4c8840", + ".git/objects/c2/b3981bdb13675a646ee2dae898a3a8807e9e6a", + ".git/objects/c2/b6698e9d1ec630a7faa77b8064c985b065a95e", + ".git/objects/c2/b6e552cc2359bcefaafaaadffea246de7c4042", + ".git/objects/c2/d12b6d9e3497b3fe5f7cbea4051580e74cebb4", + ".git/objects/c2/d25fc003a2caee0762cf1e4660bf2651f258d1", + ".git/objects/c2/f3aa31b95f39aeca3fc292bb340928372e1f48", + ".git/objects/c2/f652509e8d4c30b515a45a948d15d1378a6ce2", + ".git/objects/c2/f79ff4308170d0101b7cd7de187654b8aad633", + ".git/objects/c2/fe1feaf2c4935c477d8c5285db4dde7fa7bad7", + ".git/objects/c2/ff61ac2ccb77ae9b4b0e40c2251d4d724b255e", + ".git/objects/c3/1e7345a1fa6294aa0a08595376644c1ae09f16", + ".git/objects/c3/36cca093757d861364c5c3bfd5c7b5604b7013", + ".git/objects/c3/476498b75204c69d3a98ea75513e1b51fab406", + ".git/objects/c3/4de329cdef6244b2c3673cc3f6be77530bf030", + ".git/objects/c3/53682641005ec12da0bfdc3189b7d6fe3ea0c5", + ".git/objects/c3/6108bedc4ee75827c7a37313a18ba426510593", + ".git/objects/c3/696d6379d87800f18f02a3c07158b4f6e328ca", + ".git/objects/c3/6d086db3068931adee2d39b057c63369d9f0b9", + ".git/objects/c3/72dfc5915bab6237403332b19220ed9b07d8b5", + ".git/objects/c3/834e0a9b291925f5ebc1a172956b758240c2d0", + ".git/objects/c3/96164537462e573bafc22258f405f364700bda", + ".git/objects/c3/a1c1a46240f83281934ae587945224ef3d4c2f", + ".git/objects/c3/a59b1e4443491dd415cbe2a9bc97615eacfa77", + ".git/objects/c3/bd6befc708bd69f34e9aad78b78afb37276926", + ".git/objects/c3/c35359efcd8bb3b6c20ca9e1eb73281a33cac4", + ".git/objects/c3/cdf7bc2943a1770486af8354f234daff51769f", + ".git/objects/c3/d775cab306ff0940a6e3ca69e3608a377ed793", + ".git/objects/c3/dec1ac59fcd57cf68693e8257f00feb3595df3", + ".git/objects/c3/e2ddf41b0d52dbab4750bf11ba2143e333cc4a", + ".git/objects/c3/f74f091162e91cb839bde0ec62a1f7bef984cf", + ".git/objects/c4/0cc761103b4ad21c1760784070f27225ed02b8", + ".git/objects/c4/0d948ba58e70719c2e5353dc318e613d03ec36", + ".git/objects/c4/1530c4eab73b3cf4e8bfe957ccd564a5a6b65f", + ".git/objects/c4/2015bfc647a5fc8e5af7e2540b2fc6343d6859", + ".git/objects/c4/26f64a2db4a3b3c78b97d42c4aeacc7d9d5da1", + ".git/objects/c4/2ad21c0ecc39775255af95faf7fa97381d49f7", + ".git/objects/c4/51cb44d68384fbbd57c5613129d08d846bb41e", + ".git/objects/c4/789a04647cf4dc7f4c28407a0e2e7daefb26f0", + ".git/objects/c4/7d1ebcd6c8534976023845ae7f332a6ab202d0", + ".git/objects/c4/8efd00b873c526ada31353f0063faf87958d2c", + ".git/objects/c4/92f4a07e09049ea73dadcf674ba963904b2775", + ".git/objects/c4/9e1bae05f6d0b18701f4803c6a9cf646e88e74", + ".git/objects/c4/a45e316755d083d965d6c151f56619467542da", + ".git/objects/c4/bf0ce2424b2a6a571924330f5010de2b7092dc", + ".git/objects/c4/c6e7a499f66d575d53b4eca02e33a40a50a765", + ".git/objects/c4/ca3d4d1ce6f30a07ba07b4237441f4153d40bc", + ".git/objects/c4/cba983cf61644ffb7d66171c828884f60d5423", + ".git/objects/c4/d6be7dec326056971c7899169b038eaee0f8ef", + ".git/objects/c4/d740a2931b7ee8e1de37be6491b26c572b991b", + ".git/objects/c4/e6535ce50f214b095f84a98f0def4d2bdceb14", + ".git/objects/c4/e700d1221ab3962cb1c316c95ce777c4ab73b1", + ".git/objects/c4/f38ac2c6fe1f88ee2365b2d263076756863034", + ".git/objects/c4/f8d9dd56a684965caf35a545fc3757504f22f8", + ".git/objects/c5/01cc7134fa8e3057bfee7d4674d590abccffe7", + ".git/objects/c5/157719e40198974611f468b8f63b95e5afc234", + ".git/objects/c5/192f24c33c05daa30622265a471ed30cc27f49", + ".git/objects/c5/26e8fe6f00074a5d16b2fedcda294934be6fb0", + ".git/objects/c5/29bdb8e87288504e0deaf185c1e5c0cefe6e9f", + ".git/objects/c5/3364119181c61e1f63962d1c1419d1c7ee410e", + ".git/objects/c5/3a10622145f43f28a0da4c694a82d044e0acd4", + ".git/objects/c5/43e35050d186677005354f6619b9efc61d1b76", + ".git/objects/c5/4f5c3d5b865af75be95134c68c2896dffcad7c", + ".git/objects/c5/71055b13cc210a1ed14db4870100bd5b6874f8", + ".git/objects/c5/8722458bc40a7d9196da94b6cfe1cb34068fda", + ".git/objects/c5/9457784d0930fcf6fed82509382b8b3eb7d664", + ".git/objects/c5/94fbf049846270bcb6a184a0d7e02217187b7f", + ".git/objects/c5/9db4294a1f2257c037ae5b4d248c08c481ba2b", + ".git/objects/c5/a647a9d2c96939886cdbc2f2973c22fa507e47", + ".git/objects/c5/bdb8ca0aead3293bc7289723a1e2968c9b7a5f", + ".git/objects/c5/c740b9b761220c1e401a9bbe206fcb7ba514ab", + ".git/objects/c5/d440ed00cf31a1b86b77690c0be16c5c5bc16d", + ".git/objects/c5/dc53871ef0d1c9f92384e234c500463cd55dff", + ".git/objects/c5/fb0df5f537cd8d3ba73a3414be87fff265c114", + ".git/objects/c6/1aebb84ab961d1f81483f9417c3490ae943893", + ".git/objects/c6/1fd981bf85d9c44549d9f051117e64ff86abfc", + ".git/objects/c6/23056646e0a6170d53429e8384088dc622ee88", + ".git/objects/c6/26b85b69445603bc033b1e5f99a12693fdfee8", + ".git/objects/c6/37bbece69804fec7795e265b9c5bdb7ea68db9", + ".git/objects/c6/45add3875c6dc936cb69d63b40da5c6d46a65d", + ".git/objects/c6/4603c7eb04065de0dd4c712bf7618f79a5bac2", + ".git/objects/c6/53b9fbdfda008d708018521c54f0ec597902d8", + ".git/objects/c6/6166f4d0c1d1377542a2e905813067425a4e9b", + ".git/objects/c6/7a84c9047a85608ac3b2f3b09170dc3d563ea5", + ".git/objects/c6/891bd84e7bca4ac4f12cd07acc3dac2b92e74a", + ".git/objects/c6/9a22daca033ca796a3925af47133e224b90f10", + ".git/objects/c6/9e5cb14cf85fd92aff3afbb2ace4f6b7e7b8be", + ".git/objects/c6/a7b57e80411617ac2c3f1f67d4661e3b72ea2d", + ".git/objects/c6/b01e81f0bfb5d66605955072625e4649be8f4f", + ".git/objects/c6/c1af3e2cf0b1c2adce8d927e9f2acb517f5f74", + ".git/objects/c6/c9bc4704fe7db92214fbca23e1777ce639107a", + ".git/objects/c6/cb0bd71ae34a83a15a933fa7ee077fa461d456", + ".git/objects/c6/d0bdb985108e98d64de23ed37ff66237327794", + ".git/objects/c6/d1ee10f93092ca8e0732c74d2ab93fe50b636f", + ".git/objects/c6/f7f9bd6651a061b0b6d3c7aa7871712e5fee08", + ".git/objects/c7/0071ed947cfd06577b9498568ab9586cc189aa", + ".git/objects/c7/137f2df256b153e3a356b947856d852688f117", + ".git/objects/c7/1696158c7b1aa05591c9f65758a810e195ecb5", + ".git/objects/c7/2b62ce03a03bff95ce825a1c713a791fa2d0fc", + ".git/objects/c7/3523b92d97d5bba31fa6c13f9ccaacada37a04", + ".git/objects/c7/3caf888ed74d7958e3db4e0be76fb712d3ae6f", + ".git/objects/c7/3cfd1fd227c107e12ce814594606e5782d29ed", + ".git/objects/c7/4e256a0f95837c231db5c3e413bf1e0dc7fce8", + ".git/objects/c7/4ee06c8bc4974cc6eb8ca344fdc79f4858bd3e", + ".git/objects/c7/53006279fca1de1c5e9bd2d3406e4dc07cf3ad", + ".git/objects/c7/5456ceec5cd212f974b2eb88e1dc0fff5bdd87", + ".git/objects/c7/56d984e01f53e55119eac8bcace254d5cbc51a", + ".git/objects/c7/571307dd03e03edeb18a149cf933157ef9d9f4", + ".git/objects/c7/573ef46eb18bd80d1030abd4327e089cdc7cf9", + ".git/objects/c7/6be128e9ce9da034131fc71cdf41af8337676b", + ".git/objects/c7/7e69501ba3f696cae9d8bdcf4085abe6f9d708", + ".git/objects/c7/8b873e0916f097b7cf0167b259b3fdfa1ec971", + ".git/objects/c7/8c7c540291176dd488f6f35e22c23a81d5d683", + ".git/objects/c7/97980b6c7fe90675596e5f3e5a9d8029359881", + ".git/objects/c7/9b85e9726f85d51e8b9494c2a19017cd0dd2e2", + ".git/objects/c7/ad6319da732af51f6a530b9355eeab9634d1ce", + ".git/objects/c7/c373d00f46079da5d62460ed479899680a4f7d", + ".git/objects/c7/c808391c6d95c1568881687a99c283f03b6761", + ".git/objects/c7/c89f4e386e29a8eec611fe342dd2c529b726bd", + ".git/objects/c7/d174d2f1ec1245cf09399405b19c7c2700baa9", + ".git/objects/c7/d80f389beb4890170bfa2634177d93e2dda62b", + ".git/objects/c7/dfae2236b8fd7026a3d947f01ed28baa0006c8", + ".git/objects/c7/e9ee43362cef39bb1bfc7a6126ae4ab531560c", + ".git/objects/c7/ea9c19a70a05e3060ac9013bef844c0665b35b", + ".git/objects/c7/ec90ca5b478326f470ce278992313f3376a38c", + ".git/objects/c7/f9b3b36431eb716f55c6c6e4cfde21de05fb79", + ".git/objects/c7/fda459446938fa66e1605cb43447250248b557", + ".git/objects/c8/0155346e1e534de375d91d2e0baab6a86d6510", + ".git/objects/c8/040fe2436f378d53df46ac1cfe68c38c58d2ae", + ".git/objects/c8/17827cb66091188f3d7dd2bcb826b66a7f035d", + ".git/objects/c8/1e3a20c7949153cec485b8c97a330f98cc0ce8", + ".git/objects/c8/1f429201fe55ec51ef54424d9e7fd9366a85e7", + ".git/objects/c8/572d31ad28e2ae0bdf15c1859a4a0f54c3d64f", + ".git/objects/c8/590b799da1d90356faf4cdf13bf15bc58d0513", + ".git/objects/c8/7166ffdcb00b8c2df15ea6a09e99b5170e7b4b", + ".git/objects/c8/7462012a201bbb91d0ff28d99aacd62bed9310", + ".git/objects/c8/8f40120ed8f0ed0f4a8328a61770ebf2a44316", + ".git/objects/c8/9bfb0163190bbbc3c12d59b87955addcb1a32b", + ".git/objects/c8/a38e85fa4261d6dd0fab610b745888274c54f4", + ".git/objects/c8/ad0ca5359ec89059f5794ab8e168c0dd68fde1", + ".git/objects/c8/ba0269dccdb6cdcea446b748326ce9d06b5c46", + ".git/objects/c8/bd5dbc080534426058f17ad2e92e2e8e499685", + ".git/objects/c8/e5f35ba95c3debc111419fa20f2668e3da10cc", + ".git/objects/c8/f813681665730c858686d5178d75ba6f2566d4", + ".git/objects/c9/027304a47eccfdf4331a1f961b2e88815b0630", + ".git/objects/c9/09698e5019924fa4fdee145da85e0f892a50a1", + ".git/objects/c9/1c8e65ec06f137658bc71c43e4f8b5c5906c55", + ".git/objects/c9/23cd0736491d93f8d9101ea7c751aef14b4952", + ".git/objects/c9/4521519264d0c2f53a5a8aac354e1a8c61f53e", + ".git/objects/c9/47f564d7fae4b4289875bf67ec3788f49db6d0", + ".git/objects/c9/51ff23873192ef3498d182821b85203c6e910a", + ".git/objects/c9/573b9842b7a8e0967c4bc36875816dbd705996", + ".git/objects/c9/67ada0e8f6e8fc2ede7d5ae2feab45e2e6e1a3", + ".git/objects/c9/8bc617edfe362ebfc983db4aff1838a18cd783", + ".git/objects/c9/8eee2f8cde2cc8760d9b33930bba8c682df4b8", + ".git/objects/c9/aab2948b7c3e168949701c570177033a3525b6", + ".git/objects/c9/c68498440dc1230ac309fe61bf8e840c50d14a", + ".git/objects/c9/d62dbb732323988fb7546b22cd5d3668132808", + ".git/objects/c9/d85d44f721e7e22d1fa79feb3a86568eeee704", + ".git/objects/c9/d9258008ea198dbfc785b1a0bb23f67d5e51ba", + ".git/objects/c9/ee788b9fc8b8d7b35222c7c580e632ed13d07e", + ".git/objects/c9/f2fbeb6914ac4d7108e7ca2b5ee5ed92566973", + ".git/objects/c9/f74bf3a6e752322cb356b36fb448dafb7862ad", + ".git/objects/c9/fec040d987c73dc07e4b72b59d7f3577617fa7", + ".git/objects/ca/06d332cec9224be15919cc8c400260989df489", + ".git/objects/ca/07ff06fee4605bc7899aac8b265bab87ea13ea", + ".git/objects/ca/16b9d4cdbefca19a301f5c487ca6b07e05d88b", + ".git/objects/ca/30ca0a77f0ce8c9a24ddfe40df327862ad3d78", + ".git/objects/ca/3b47c88251d4b06e7a9e7182c7134386e4a362", + ".git/objects/ca/475a9e60d3e90b13ee37348cf6cca1b4d5f5c4", + ".git/objects/ca/49d8d5e3a2bf05557658505e32eee3bd818074", + ".git/objects/ca/4d7b8d42bff8aa9f27f42c767bc553ae91988e", + ".git/objects/ca/55dc4b1da95db61fd9d6fe8ef88a134e959df1", + ".git/objects/ca/56352df4e098fb8d406a5bf3d1c7741a439632", + ".git/objects/ca/5682d457a73d3021d3aaf44534645b1584bced", + ".git/objects/ca/624c5f1d38287103a580af1333d888cd1d2a55", + ".git/objects/ca/7877534333d8a6f4410b86cf755933f5541818", + ".git/objects/ca/7cc678914e12f326d4cb39c4dc3ab7e7662020", + ".git/objects/ca/832c5fb55de74c8a47f8c87c7c8cb71354e8be", + ".git/objects/ca/88ff318aed6607f7e1cf576cb323df0b13b47c", + ".git/objects/ca/bc2a88cd590451694cec51cf0906f801ae61b8", + ".git/objects/ca/bda1e1d9081dbd1b74f3e0607ca3ab3876a218", + ".git/objects/ca/c98eda4a21b7231f988a6123b086b1883f8943", + ".git/objects/ca/d22b9dc0da56e6ae14c6d00cc544b6762fa1ae", + ".git/objects/ca/d26fa7b647e55f19d34a121a7ddac71976d7aa", + ".git/objects/ca/eaff1043be43cfd06a06ef4d72f2d9ecddc4eb", + ".git/objects/ca/f9e5fa4ae5f402a0b24b0d32d8adf55ffc14c5", + ".git/objects/cb/02092fdf09ceeca7ba72b8dd627721e6a95521", + ".git/objects/cb/051c2479dde4486926d9d6560ff6dfcf408c4c", + ".git/objects/cb/0d42c8e272755fbb53cb128d05bce532932a17", + ".git/objects/cb/131ec2207720215cc8d256e449aa389f7dde0d", + ".git/objects/cb/2b1382cca9dcd4037e4cf6dc784eea79ca0b49", + ".git/objects/cb/3bbbc17858c25596e9ec482d16ed0e2319ae88", + ".git/objects/cb/3da7a645a090d6f2588840a0dad1331753e1f5", + ".git/objects/cb/54bdfcf47e0297dc1ac97540538602c2290a71", + ".git/objects/cb/98bb01e8c3dbeb0e1a5ad4e4c34334ee48dc40", + ".git/objects/cb/cba3780745fbdc481043356c5a5fe42948e864", + ".git/objects/cb/ce9ea376e7ea76a9141a92756d5e4686a33987", + ".git/objects/cb/e4380f962b6e1286236e445b9151990c73a991", + ".git/objects/cb/ee806504295facb9139c2dd4b26cf7bf606ee1", + ".git/objects/cb/ffc74d963b52846de8cb8338b168d54dd2c0bf", + ".git/objects/cc/00eac387fa4734a750eea2f852b933f6a5db6e", + ".git/objects/cc/1cac788f0499908d711ba3c5ef0f17e81a69a5", + ".git/objects/cc/244361596ae612d304ab94d297784a5ce9ee01", + ".git/objects/cc/28306287e2fcf887f5a2422ecd6fbcab5b7f6c", + ".git/objects/cc/31846927c5964c76fc9f9821b7288f66f7ea23", + ".git/objects/cc/3a0f504d6e95afdb2d357cc7df2c4e6909e701", + ".git/objects/cc/41b9bc35163bd89526540f6e1a053ce681007c", + ".git/objects/cc/4a6795169bcca114a4de32aa664e20e081e005", + ".git/objects/cc/4df1343cf545f3411cf493d028f05f46c1c886", + ".git/objects/cc/539a3422b197f0ecf4164933fd0917b4f0b0ef", + ".git/objects/cc/60080f353752570ab45f90423fb35cdf2b75d2", + ".git/objects/cc/66cc7fb9272cd7103421caaf4a28a6712eb5ed", + ".git/objects/cc/69c3c276b7a4b859a4122877aa136f74087d70", + ".git/objects/cc/7d3f655fb0680e427a7ee58c657b5cb8f08fea", + ".git/objects/cc/841811d14c514f69acd8c99eb1a79346a6e6d5", + ".git/objects/cc/84e78c2acd2324f0a8f24b36e7fc199466e55f", + ".git/objects/cc/93c4fd583adac3adbeaaaa2faa11fbfbd7bb5d", + ".git/objects/cc/9b7c9d3aae5e02959550c19bc57def93afbc3c", + ".git/objects/cc/9c22ffe0049c35798e3022b3774a6ccf40692b", + ".git/objects/cc/aa1453e54b3dfd90d6c7043a4cfe2db2c7a279", + ".git/objects/cc/b346cfbf2ad903475d80559c20b17aa98fa580", + ".git/objects/cc/ba04795787516e0172a73f2b6561f6557e8465", + ".git/objects/cc/c8bf04a0df3918f78eb39702b1156b12bad067", + ".git/objects/cc/cc00d12c9bb609b315e03862f39922d87f6617", + ".git/objects/cc/dc868a69fb05421e97f5bd92d4e2cade47a23e", + ".git/objects/cc/efe8a3f7c7e4a13eb9f57928248c17b8105bb9", + ".git/objects/cc/f7dc0f62a8b1ff5ebb4f77e564ace602087b9a", + ".git/objects/cd/0800b3c70ab04845415d46866f84ac1bb29115", + ".git/objects/cd/0aa820408840e1808496877caec98c52a2c176", + ".git/objects/cd/127555d26c3cf99c6807a64bf56a930ed41935", + ".git/objects/cd/1b73a0cb9d02e88fd349c95bc93a121eec6c57", + ".git/objects/cd/1d68d5c0b9584e8684fc0ee4146aa5d8ae7f4d", + ".git/objects/cd/28bec9764d636ad3dc8fa32afa0e97ac86e35d", + ".git/objects/cd/50cadac73018780bc541b7d38ed3e82f1584c8", + ".git/objects/cd/56b09bdc48a796a255071fcd9be4473da6ac56", + ".git/objects/cd/57990105cdd733cd4097de24aaca2e3610f9c2", + ".git/objects/cd/59e8b7156f6847d545f1e0e2a71a4a646a0aee", + ".git/objects/cd/5a80685625dba303f879dbea12173e3a8bd2df", + ".git/objects/cd/5cbfd4ff61096a06c5aeb302a79e711287420b", + ".git/objects/cd/5ef452cf518b4a27bf41233243ac1fc3f5a78c", + ".git/objects/cd/65453526009303d13e9f8d69718a8f1386352f", + ".git/objects/cd/69d8078530bbac61e22809fcaff63c2eeb80ac", + ".git/objects/cd/77a15489555e68c5d47a2ba393543475422a4b", + ".git/objects/cd/78a67b3ac9711fcbac44b6acc56a7ef28ddc81", + ".git/objects/cd/890d85a41509afb7bd5463a10ecb9a88659efd", + ".git/objects/cd/8fa398ed70dee4c9a571268413a03e804a6c11", + ".git/objects/cd/97844cd96bc56abdfe7c5f3cb2a1a3e0ab27cd", + ".git/objects/cd/a6456ba462fb4e4fe01b561935dd0487fc6439", + ".git/objects/cd/ab1f6a1e558c7c576cbbcd1a61f6190bef57a9", + ".git/objects/cd/b2393efbeb7c645e9d3a3ed9fb0521ea62390e", + ".git/objects/cd/b9114b8cd76fcbf87699ccd0c7bb38ae8eb08a", + ".git/objects/cd/bd5773b8fc9f4b87a8086ef7ee966708911287", + ".git/objects/cd/cd774eb9bc6482b7d4597e449765bb252462a5", + ".git/objects/cd/d36274176b2d2d3fd8528c3cbab99865d6934a", + ".git/objects/cd/e405ebf563bce26e9ea00d2b27acb5eabbea5d", + ".git/objects/cd/e9609b445568ae9113fff35643e37529f69e55", + ".git/objects/cd/ea0733877a46fe3f8e36f6dfc646f262d4a6cc", + ".git/objects/ce/01a168b2a59f8713750de570bfa7f60e8bed89", + ".git/objects/ce/0749fc0501ef633637e964f814896009fe5d56", + ".git/objects/ce/15384496759c09080e81a252c567988ae14db2", + ".git/objects/ce/1ee0ef78d29082dbe95468f861cb81672b7276", + ".git/objects/ce/26d96cfdb8665e357521bb711dbf383fb1af7c", + ".git/objects/ce/3c33e92cc39f75cc8fbdf3cbd96c5f3698a086", + ".git/objects/ce/6901450a743b96bf5f0287f120a63536683a1e", + ".git/objects/ce/6aa7abdebfb508730e6c25202bb5b96c5f7cec", + ".git/objects/ce/6f81a873002e2449985ba037b8918041b45d10", + ".git/objects/ce/71fd877bbe4a1115403a63d0af076c2e392fc1", + ".git/objects/ce/76d97e78fcbb581abeccd4081f6f3f0e78ac7d", + ".git/objects/ce/8093a2a621239d5e97be43a3fc83c05c24b8f9", + ".git/objects/ce/8b8f55866899f28ba6d5b51b5ebfefb88758a3", + ".git/objects/ce/954c3f567625cf8720a7d7bf478248dc04490d", + ".git/objects/ce/b46913ab509c50a41761ba4f5b8d74081f0ce4", + ".git/objects/ce/b4a2da5c7e067bd34bf4dd72e85b59d1d4587e", + ".git/objects/ce/cc29b2b1092761ba908e5c7eb269a2e558d875", + ".git/objects/ce/d22f215cb5f0d05d00c93fa2ae23da4f96a884", + ".git/objects/ce/d6ec1ade280af87b1bd1a60b22ecab4fba6577", + ".git/objects/ce/d9635e26b36fdce9bdc0e0242e6ff4ba96d9d0", + ".git/objects/ce/dc0b852b16e2ac9030370f6c4211de1f53f047", + ".git/objects/ce/e70026e46624d5c832a9a6321a4ef6e5817757", + ".git/objects/ce/f647d937d6a1cb735d77d5c3805fa4d3bfd715", + ".git/objects/ce/f9acadceb63734659fe985d12c22d8156fb1b5", + ".git/objects/cf/072bc0834cd69437a258306d79ef06d3499994", + ".git/objects/cf/091716e24a823e7315770e3a7a5068f469e184", + ".git/objects/cf/2e23bb4f9427058c4769938b05500ef350aa82", + ".git/objects/cf/4b4e339e05e9e0a9036ebf695def25f6be0306", + ".git/objects/cf/61eb39d7181a5ea6a5f1721ab1ad36e4dfac3b", + ".git/objects/cf/71d70be0f41dca2f5233930fdfefb9f6436fdc", + ".git/objects/cf/71efda189edac1999e49dedc192996a6c1cd2d", + ".git/objects/cf/72e252c59b337f97afbd7123f0e3fb0e3463ba", + ".git/objects/cf/73cfe0bd4f32140faac6c16cd3d00f2fc90a48", + ".git/objects/cf/7a31a7ab04dcf302d5c3c73c26be0d404b5bef", + ".git/objects/cf/8ed4af4fb0786d8d95d6ea6c48c65281a11eb6", + ".git/objects/cf/9aed228add7e7fa9403383f8f13eb1834b2f25", + ".git/objects/cf/9ef941dacea66c53553ecd51b3debf9e788f4b", + ".git/objects/cf/a194edd64352c29b84a5c635fccac28532daed", + ".git/objects/cf/accac1413cb511974c3730eb03edb1f0674c59", + ".git/objects/cf/adb5173cc9d08959854f3ad290db51e4931a8a", + ".git/objects/cf/affbeb42b39199217d77c9e05e6aa2347505a8", + ".git/objects/cf/c6ad65f4ad05b55201bc959d263fcc5c084bb6", + ".git/objects/cf/d3c941450b9c012c427654f8cb0592e617e5b2", + ".git/objects/cf/d3f539ab44cc7c441a873918cc0d37850504a2", + ".git/objects/cf/db703faed762ac765ce85d6f863670d22c676c", + ".git/objects/cf/e5a89526c0c51a93d7e917c7e3650202592baf", + ".git/objects/cf/f30b049dad84b512db5bf3babb89325a22db46", + ".git/objects/cf/f99232f3921a7ea598c69778de99cd4a3d79cb", + ".git/objects/cf/fff3ff51d45d97f2a20cdf8e08bb155671ad15", + ".git/objects/d0/08ae4c9ba6e595d2ebdcdab1804e05053e3291", + ".git/objects/d0/0ffbb999e0f5f05278eabc171fbfce38b567c9", + ".git/objects/d0/1aa6efe35579890cf2ee0a0eb9d6df05b36c88", + ".git/objects/d0/1aa8b67409c2dd2059dfce00ed0b11153be954", + ".git/objects/d0/1ed0ad5323452838f4a6619fd96fa06086ea66", + ".git/objects/d0/356def6852f04c870a2c5c0d5f649d6e0b104e", + ".git/objects/d0/35f44e3867fd842a65e31402858919447aea57", + ".git/objects/d0/3fe07c8971c6470bc679f923400dbc7414a119", + ".git/objects/d0/4c44b70e5d5cda010059dd63d61de1ea598058", + ".git/objects/d0/4e57ddd84f07dcf7283ee41da9224f582cccc0", + ".git/objects/d0/51e4e0e4e6d8263555cf1382a022a58824403c", + ".git/objects/d0/6382b967402758ab02525a6442dc34152168bd", + ".git/objects/d0/6f9e6da3280071e4c5d2231c74eaf23cab315e", + ".git/objects/d0/77d1fbd9b986a4620dde7dc4fec0b0e93dd81c", + ".git/objects/d0/7c67e7d5b6c4a4cb97003e9ea61e795aaf0512", + ".git/objects/d0/8e7368f50e831a184018bff38ce091a31ca5c2", + ".git/objects/d0/8f72b6e8624936ec179412387cc19f4dc84f30", + ".git/objects/d0/8fa9e173b0c71395a490fead11005225816eba", + ".git/objects/d0/953fa7ecf3fc99935deb7435f988f4a899e606", + ".git/objects/d0/9882715ffe7307460dc0bb0f59ed16b0383c4d", + ".git/objects/d0/98ca8eefcbd7fe3eda724b94fee5f489d4b6bf", + ".git/objects/d0/9f79adc66cf398a18bbf6a6af377b72b198189", + ".git/objects/d0/a53016e1df560807ecd32946baa08d841c3dd1", + ".git/objects/d0/b2d91c4282adc929bdcf24fb8a43d7512fe21b", + ".git/objects/d0/eea2b300ad5e24dd750bec5233aa16e3bc7354", + ".git/objects/d0/f0b7bab470c8db754077ac5489c9e583b2d8c7", + ".git/objects/d0/f926c08ace378e088ed18eaea0f424afb1db10", + ".git/objects/d0/ffbf5cedd2161a6eed63060c01ffedcf6912aa", + ".git/objects/d1/05504e7c96e2557734dec0c3a2fd9d87c6782c", + ".git/objects/d1/066bb1457789f459ad5a30af9711a2e46e3588", + ".git/objects/d1/091720e6b0ea90f618f8574a773dc109886b10", + ".git/objects/d1/0dc92d756a825f7ea93b96dcf4a4b3f02608a8", + ".git/objects/d1/0e46bbfb9056a66f2e191baf39734cc00f9c7c", + ".git/objects/d1/145d606bfebd2911eb3c7548968ae36ba99179", + ".git/objects/d1/1729a13efffc068680c0287bdb836fdc5b5321", + ".git/objects/d1/2cb6928bf7c1d3b3182020f829be07ced59cd1", + ".git/objects/d1/38292c5ce025c35e3689aecb7186dd1fbb2856", + ".git/objects/d1/3bc436c73cefa3a32448410a98c13882a869bb", + ".git/objects/d1/5a3f76bfb53bae74d8d4b89c32d0faf327a03c", + ".git/objects/d1/5cb3a5d6f2bc48b568d387c7aa983d17dc467a", + ".git/objects/d1/698386e089e5965d51b94ad830c092655debb6", + ".git/objects/d1/70b3201238b8e1b81634bf25d48000a8dc5bb0", + ".git/objects/d1/73bdbb7d9c22bf8b4e9f8d5ab52c1a858f541c", + ".git/objects/d1/7e7e5986481f801df4cf0b09118d6d552b3083", + ".git/objects/d1/8b398c8627eff363f933fc0759adc568a043dc", + ".git/objects/d1/8e60493d6033381c7146549311963b93efddaa", + ".git/objects/d1/b71bde468dcec4b4ac4700eaeb32c9331791e0", + ".git/objects/d1/c6c66d3ba588960e6ddcb5717688bbf5706d52", + ".git/objects/d1/cc22c6ea64ca3f6d967c130cc3cc0ae1225cf8", + ".git/objects/d1/cfc6efbd55345a34353dfe9a3214a9e38a2346", + ".git/objects/d1/d5eb7223406a9492a1eb32749219912aedc25f", + ".git/objects/d1/e135edc13f1a80d2ac22653566c70b2f3dcc5d", + ".git/objects/d1/eab8ab69d82f2e9f2e9f5ce96fa91e7765fb39", + ".git/objects/d2/0dbbd2a4f5e81d1410061a7db7d1a13e3ce6a9", + ".git/objects/d2/1a72f66e35b3dc05c788cc7af5a66b3ac5c82f", + ".git/objects/d2/20928307fa2598d8b59b409abf64458fbad392", + ".git/objects/d2/290a50b4e790a531412d63ea3444d52244659c", + ".git/objects/d2/323f3c9d77f7fdb25ea89c5537fedfc23d9b92", + ".git/objects/d2/3adb9d58c6790cbfc05156aeb49be6fc9e0ace", + ".git/objects/d2/3de1c5205ec8484e84f405ef199f126aab5f99", + ".git/objects/d2/41f1ca4b8f5302f88b2f24b9271cf07d1d8b28", + ".git/objects/d2/4a2fbbd676c3d2b6a22001e09ab0a66c92f3c4", + ".git/objects/d2/51f5c86fb17d7a0a02d676287e97bc4b782507", + ".git/objects/d2/701f53d2f49d40d3a3ae83071ddb3bfd2560ec", + ".git/objects/d2/7cb041b41d5dd1713ffbe8ecdc21d5618ea49e", + ".git/objects/d2/92bfc4ffb6bed23653b3f29736d2c70c0f49e6", + ".git/objects/d2/a45a5e5aabdb53e059c3ef17320495e2cfa7a5", + ".git/objects/d2/a665ab7669eb3a565f2474146da425781a2054", + ".git/objects/d2/a68bb11253e0e85f3bd10136c5e1b2b8bc6648", + ".git/objects/d2/ae80b8a6a465c66a5b3283e2f20eef1b6faa85", + ".git/objects/d2/b8f5c3c70be0e885ef577285e76b5e54b611f3", + ".git/objects/d2/d8afb4cf08e227b7d4ab1c9e2ab66ed6846f73", + ".git/objects/d2/dc167dad3d4f24faabeca87782aea0a8373033", + ".git/objects/d2/f8b943f9d2c15dfa6287ff06b6cadb756d1757", + ".git/objects/d3/0066c171b1c0767a9f8db3916f4471a7c75e68", + ".git/objects/d3/0c0ddbf0b20d064ea255f872c93817f1ad0f74", + ".git/objects/d3/26d39ec6fa62546dd7d08b68481289e7820dbc", + ".git/objects/d3/2d30911e5fb0b755c37a1d203668b1383c2bd0", + ".git/objects/d3/37edee01c4079490081bcb5023bd2a2f6341ca", + ".git/objects/d3/3ac2b57f1fa4ef56f77ec7a37f92beaf6bfebb", + ".git/objects/d3/56087724cb2f351f365513cfd4865b6e0950fc", + ".git/objects/d3/60efe059c19a7ac314960949ebf590397b4d7e", + ".git/objects/d3/6735d545c14eb326caf68f6dae1741934ad5bb", + ".git/objects/d3/693c224dff27d162eda0b309790bbf65a3e7d0", + ".git/objects/d3/6a2889fdde9b79f18c2087dc7fa94c932bda80", + ".git/objects/d3/70001d6bb942ca3c2943fb06bb653670177d92", + ".git/objects/d3/700839cdf12c293ec673d3d31e9042ef91c9f8", + ".git/objects/d3/70ad034f4108ac22c75c0c46f92f697c512731", + ".git/objects/d3/729b57b47e67389041fcc40cce3a6a7b4f8be5", + ".git/objects/d3/7d74b6970b7ee942950ffa1b6e6ca6824f3bac", + ".git/objects/d3/8d95e87e7c87375903863b64c3fe6f4feab35f", + ".git/objects/d3/a30744de753b1b46f0e005f92fc4ea333fd76c", + ".git/objects/d3/a35df6a2be8d18855eccb6b074103e830367ad", + ".git/objects/d3/acc75af3562731ceac33dec4a0cd3534611466", + ".git/objects/d3/b11714e1dd668ebe7d4ea1e35af0f4c0ed14a1", + ".git/objects/d3/b957b60f49838fc3d9ad275fd650b28b9d7614", + ".git/objects/d3/caec656146d1ee51e1fb94a6996235e1f5024f", + ".git/objects/d3/d7262ebe4975d2c9ea711d0a4e8d22ce5c691f", + ".git/objects/d3/d7511a7dd16caa0b49fa2f12ee2ea0d6c4f0ee", + ".git/objects/d3/e123e2d2f18815c7cda113d1b9b5277520d8a1", + ".git/objects/d3/e48784d1aa5cc41cc83628cda84734b2a13e30", + ".git/objects/d3/ffae405b5f6d49082ea98469e87a0aba4f880c", + ".git/objects/d4/174364b64226684a0939d51d82c35d826e3466", + ".git/objects/d4/176fa6d2dcdde181cb1ea256887965bb3f2c5a", + ".git/objects/d4/186e9e5455b64ef98b23a08745b993cc97a2ae", + ".git/objects/d4/1e0a768bd22845c591c8a41d8626cb920ed954", + ".git/objects/d4/207ebdbc5dc33f0787d313a7ef44055d03903e", + ".git/objects/d4/2b51f2efa328fc8e2c25267b040a8572c1998a", + ".git/objects/d4/2e9fb26184b37c0c3b0e30e66039440240e25f", + ".git/objects/d4/3e41b73be1ff16c4667b40433319dde25332ca", + ".git/objects/d4/3e908924c42b2112122832797b8d70bb51962b", + ".git/objects/d4/5fd57d4d5ca474144c5651ba7b16b1c9f77cbb", + ".git/objects/d4/78c136ce4790f58d3e859eefca44ae9bcbd9ac", + ".git/objects/d4/917a69080eff282bb96e82a18e5570b1a4540d", + ".git/objects/d4/ae421de3f21e03cc779c7224106ae366376a31", + ".git/objects/d4/b29597d415bd9912e4bac6e23d58f9714063ba", + ".git/objects/d4/bb1551913de3d07f5f4320321bcb0df92bf2d1", + ".git/objects/d4/d2d1641cc2863718ecfb56c5b29dd98977bc31", + ".git/objects/d4/dd84fa838fc0aacd79b6d03cf89ae57ddd1f20", + ".git/objects/d4/f1355b17f45e885e908350d1ac303c423d89f5", + ".git/objects/d4/f5264fc9a59ade3a2b219f6120094d921dfbb1", + ".git/objects/d5/18e64720d566205cd12c00b494f86a5553db2a", + ".git/objects/d5/25ba3dc8b7a6db73704e02859f56abdc1ef415", + ".git/objects/d5/28bea89f81b0c3d7975fc9e63ffd20fe4f146d", + ".git/objects/d5/3105e5941ca873072778f2f912dd2c85398d16", + ".git/objects/d5/365814fea8d1f7bbcb8f26e4f7b551a3e07c86", + ".git/objects/d5/37c1c423d4a97d87bf1fae30bca8ed8febab2a", + ".git/objects/d5/4e2616fe1537a523075753581e670ed9103f12", + ".git/objects/d5/5930848faf459643c28717e2188a81762efa2e", + ".git/objects/d5/7e10e313e36fb79e19018f2cee06a4ac0114c9", + ".git/objects/d5/813cc1affd1dc7e03370b8508f3750ad29c672", + ".git/objects/d5/84020edbe6625ef16729255d4d1edd0488f5f1", + ".git/objects/d5/9c7ada1460f52860265a88111a2a614d2e62d4", + ".git/objects/d5/a97ddf73b6425e2199d6ef002222067b109321", + ".git/objects/d5/d44ac495e38bf87e95dc3e80d912d3d00996cf", + ".git/objects/d5/e38343cbfa494457faae68093130380e854506", + ".git/objects/d5/fcc1d45736a5d26cc7b8a37a90406c2787dc9f", + ".git/objects/d5/fdb25b0cf6d870bfdbba4253744c2dd779e7e3", + ".git/objects/d6/08ca090533633b080597b069bfb4749429e57e", + ".git/objects/d6/1dddbfd460e5421222879f6b0be952bfedca12", + ".git/objects/d6/3e3f978a4163324ebf53f7d4a5138617313469", + ".git/objects/d6/5036cbe334769208df6e206a7442372bec67fe", + ".git/objects/d6/6324310794c27a53b69783e4a4c22374a9a7f9", + ".git/objects/d6/67275bfe9143639a7d6df846c2c57b1a3ba852", + ".git/objects/d6/694d26c977e53edf24a9a42eba35d8625aab24", + ".git/objects/d6/6a724799b8849c86ddd57c5a5917100ede7f09", + ".git/objects/d6/72139f8beaf6e2cfaafd605292680cc32aa510", + ".git/objects/d6/83bc59dde81a3ea67151f33a755f302ad44399", + ".git/objects/d6/872d5bee406197a2a3738b61f85470ca630b4b", + ".git/objects/d6/a0d4bb2702ad332057d6e7d81a759cec3736aa", + ".git/objects/d6/a67f7d4ff39b5dac983431ad819ede7e350b60", + ".git/objects/d6/a96725c29846646da64f78eab0e571022289fc", + ".git/objects/d6/ad2c6469aa3ed4de93cbfd94d892d8c0ca1c1e", + ".git/objects/d6/d732770aa163ee6b039704c31f57037247922e", + ".git/objects/d6/e89b3a9510a721abfab0b32876a35d9908bc6e", + ".git/objects/d6/ee8d749617a867a418c1808a78465f305be660", + ".git/objects/d6/f28c4bdb51efad3c15d15255aac797cce6898b", + ".git/objects/d6/fe0195fd258cb9ec64e5f64545bbc05ac645a2", + ".git/objects/d6/fe1963dc99a8fe736b3625b303fdabe0a965f0", + ".git/objects/d7/0ae96964834a334988d6b29c6b689f133cf731", + ".git/objects/d7/2cdb89319a9432336c19fb5fc2d14ce58fea7a", + ".git/objects/d7/38ddf335ad9f6fe026334e5845ab3485bba02f", + ".git/objects/d7/3d97066dd61194e5b88a9c1738093ca39565ee", + ".git/objects/d7/4396624b3f3e35b8a03bcfac3adf5ba25fa471", + ".git/objects/d7/53de291bd41aaf8437179017e35d37158c0921", + ".git/objects/d7/58e9fde55e717e691d626ca8c67aa78d828184", + ".git/objects/d7/694a27b0004dae5f1da214faaa82f12142d36c", + ".git/objects/d7/6d9839d6ddd928d9fbfd01070f5a2fffbb97de", + ".git/objects/d7/714ae825d34a1b14720605aad452345b1dfcea", + ".git/objects/d7/90f81581bf97cc5c1fe11133307084bb6809c1", + ".git/objects/d7/912e589f9d89b05362d2c2dc508166b3b9b869", + ".git/objects/d7/932aeb66feb1e3899165df93ecc29d886608ab", + ".git/objects/d7/a99cdd5e5ec32a6f1071a092edfb2db17da81e", + ".git/objects/d7/b047d4a5b641a772ea1ad416166d18d2fede6f", + ".git/objects/d7/b0808fd3169b4d6ac9cedb470ff74b574fd2fe", + ".git/objects/d7/b1968dbdb4b9e8b0aea0b944ddd813b2fc8439", + ".git/objects/d7/b42ecb97593a825127669a7da73191b9ae3959", + ".git/objects/d7/b8914dc8fa350090009adf1003b7e870609d32", + ".git/objects/d7/ba337c35063a65ec05c45b4f1fda6b3a0ef617", + ".git/objects/d7/cf318f5bc1478cb4f20d93dcfb77df80861d90", + ".git/objects/d7/db40d371a114128fe488c572807c6bac7bbb49", + ".git/objects/d7/dc322c8de4d626eb2c92d23928e4693f1e4cc3", + ".git/objects/d7/eb62c89fc27c8d8c447a812e6b11899ab45ea2", + ".git/objects/d7/efdf44b1c2ca327ba29f77437cc0abe1baa331", + ".git/objects/d7/f2f96c33461c098b22e442be3c185b6f8a3e10", + ".git/objects/d7/fbe4920758af82aa6ee51ee617c4cd347217a2", + ".git/objects/d8/023fd04075183455ea1163f35b939c1d1afb5e", + ".git/objects/d8/0c718bffc96372b47e4608f55236209e6e152e", + ".git/objects/d8/149f1cb6889c64912a5935b6ab4f373313a2b3", + ".git/objects/d8/1bf888e03eb24ec14074db3dcb1e2e14e69dc7", + ".git/objects/d8/1dddb4234fbadd249461e4ff23b927ada469d6", + ".git/objects/d8/2434ff21c81dde9794f727b0e112b85b6128cf", + ".git/objects/d8/33236230376a762b03b3c0524b2821bac06c93", + ".git/objects/d8/462cdc48e5ebcbd11c866deba757a70f4d35e3", + ".git/objects/d8/4c4543ff1f03b3114ac1151f153fb3dedf22c4", + ".git/objects/d8/4cb9328819dc0c1f8b1a1f9dc31af34c319641", + ".git/objects/d8/52442fcfa8d8ac032bcb5f5ff49c2c5361ca45", + ".git/objects/d8/70ce8813f9756292338c6fde2133690a814f32", + ".git/objects/d8/76f58d36a30631d98218e852f2038796f49ae6", + ".git/objects/d8/86b5b4f9db5f93bd6a422ac2520ec6a0dfb2ec", + ".git/objects/d8/9d5de7d8283a6a2e43803c01d5d1e7206310dd", + ".git/objects/d8/b4d778f261128a15856b316313109013c3a570", + ".git/objects/d8/bbcbdc7379908ad59df95b4130cb1da08df584", + ".git/objects/d8/ca46683f1c93b47086b31c5b493d64d70cbc38", + ".git/objects/d8/d6f00f6d367b44f008d11e9e77b0d7dbc19745", + ".git/objects/d8/dc04585e2a4bf1ae5bc02c9d83c071e186933b", + ".git/objects/d8/e7e18090f57d71fd20b63307c574ee44319499", + ".git/objects/d8/e95342b32378a3cbcc381109ea24706895ee2e", + ".git/objects/d8/ea0961fbd0b9b4f61c533ff7e1162d91d098f1", + ".git/objects/d8/fd933f6c2a633e0be6f545b65b6a23b3305613", + ".git/objects/d8/fe854b2c1f5ad221c3c7f79d2a48dcdfa6f584", + ".git/objects/d9/00d2b5019d464c52096fc6df021c2cb92a7b40", + ".git/objects/d9/112ae5165bbaa13e00504e5520a09dcd45d775", + ".git/objects/d9/1383bf7863c3289cfc128a073847d9a4f8529b", + ".git/objects/d9/1cb8372a2dbfc8791d83be6ff63b16cb6bcf60", + ".git/objects/d9/1e854be8b7ebc133600b4e6e45a5cac3773ab7", + ".git/objects/d9/2f03653e5b3df4c5957b1eb8e3901691ea1a38", + ".git/objects/d9/3982d4c6db86fdfce65b0fbbc24f1a1eca3f01", + ".git/objects/d9/42de780e178afda732a432ba09523c7753a212", + ".git/objects/d9/48c7a747574eb38c93dd616e7c0a333da2ef3b", + ".git/objects/d9/4bddf7467a7940bd6c39e6482114b92b63857c", + ".git/objects/d9/4eb1d23ce84ac38e1041dbbb4a3945ecff23d4", + ".git/objects/d9/5e88e4092e2f17781de2f33408f3451e71b741", + ".git/objects/d9/7d4193b7030ab2077ca055e87dbb7352fbb32e", + ".git/objects/d9/81c86f27050319b5703c786ddd47cb7c184883", + ".git/objects/d9/839cc8eccc3eaa1e3bc77fa87f25b8c253afab", + ".git/objects/d9/939014aab9c2697a71c6e708a9e22318f23e26", + ".git/objects/d9/a264c9ed010919c741504cc3db3df0cdff3a7e", + ".git/objects/d9/af4b28ec2a6f6a7e682d69e475ef56a2818c0e", + ".git/objects/d9/c29c6271606f53ace1840b4d8df7b61ed2e0ff", + ".git/objects/d9/c7d1e84c90b47502dfb5ef9036877b6238be91", + ".git/objects/d9/ca24341e1390e4c8b2d02b8075e4ab14eeac2e", + ".git/objects/d9/d4cf49311bf3e4bf952c2ff9d0d8b2e820e519", + ".git/objects/d9/d8cf464e9760897d3d7ab41c1e2518bd10c2f8", + ".git/objects/d9/e989cfb441f7661d76b5811e0180bfe5543453", + ".git/objects/d9/ef81ac00da2b31b28a865d0a12f056c0d72e69", + ".git/objects/d9/f9ec4cda32a729aaaa30bfde1d43f2f2d46124", + ".git/objects/d9/fd43a04300d4c7f0b6b9c777d0ff6223bd8675", + ".git/objects/da/09a976c6338e0531b55102f34f3478422d03bf", + ".git/objects/da/0f92db14465723060e8911d7c2d26de737f7af", + ".git/objects/da/117ea3404597189db0dfc36321d47f71cdb538", + ".git/objects/da/144b7098edd1c3820e55ff4f3de237550297d0", + ".git/objects/da/1a1b67025be6bb023a40180b04a7b9560c0297", + ".git/objects/da/2c21ec108c82dde62b2d3a5083c6cc392ab95c", + ".git/objects/da/360149d26c13c107f9fcf572ddc90ffe705fd0", + ".git/objects/da/5869c2b0fa65c0625203f486f061ffd31ca42d", + ".git/objects/da/5d98497554e018ac5e2ddb11e1932b6f7f3ea0", + ".git/objects/da/5efb9b7e3656ce0243dcc25dd40d65be786f20", + ".git/objects/da/62a4a1ecf90b85fd2b3a90be0a8aa7e5fa4e1d", + ".git/objects/da/65cb2a45915842fe60285c50ebfc7d29857c2d", + ".git/objects/da/6681c6cff652071dd1c7d0c9719fe418b59725", + ".git/objects/da/68676b70719901326d0df83cb8b2bb2992e82a", + ".git/objects/da/6dd741649285db0ddd2afe02a2217456abaa8c", + ".git/objects/da/709704def60199e6006385202ef2cfa7610026", + ".git/objects/da/997cc3b92e5730f688573165d9ae3fdf500355", + ".git/objects/da/9d22cf74ef94904ab9ba1d6cb522cdf7c3b943", + ".git/objects/da/9da09976c4caf58053821a168223318aaa7ab8", + ".git/objects/da/a5d3294f43e307596fba5da8ba25070999c76c", + ".git/objects/da/b696d0b9d570cd366d213aa6a386ecfefd13a1", + ".git/objects/da/c0b68ea4d3e1817ed523dfe71cf4043e19fbd9", + ".git/objects/da/d0790aa7d0cd859ae0a1386588d345942ff9be", + ".git/objects/da/d7ee1b0244fb7181b3e3551fcc2e87f2299422", + ".git/objects/da/dbf2b4f64fe3acfd1eee851d5ad51099349426", + ".git/objects/da/fa098cf07f8c072e7f6bec6acf63c738e5394a", + ".git/objects/da/fd86b61711571b544cdbf452f70fd04d707686", + ".git/objects/db/03678379227956df18dd9f01625e061381c8e3", + ".git/objects/db/115df0dc28fb01c005a888b1587e7be49dc6dd", + ".git/objects/db/183af15f900c7e3d274b5a09db4439010dbaca", + ".git/objects/db/1d180f8909e0c5ad9247ed1ed1c808182f4061", + ".git/objects/db/1f2e7ce641e224093800dc1847c6a79ee0aded", + ".git/objects/db/2231493ffdf83883db9ff78d173b6ad59c8cbd", + ".git/objects/db/27f9cda26cd9a8aee1196c126adf2b0c079c2c", + ".git/objects/db/2ce2542b36a26ca1373b77a7025fa6cdf72aef", + ".git/objects/db/2cee1349d2e135eb9ca120cdb1319d0bda91a6", + ".git/objects/db/2ec5182b6afd4d28ef918fcc1e32278d20cfbb", + ".git/objects/db/3b636d511cbea775aa3b5b4a8071cc0ad4a9bb", + ".git/objects/db/4759bb502455227a3e0b91f77ac49463688208", + ".git/objects/db/4fc690bfa26e62fccfda426cfd9f878c85330a", + ".git/objects/db/6142ba8083d7f3b1e4a98facb97285fc484419", + ".git/objects/db/844fa18547c2e35b85073047b56f6ce3453d51", + ".git/objects/db/8c05ee3b8a087a318efc3bf7562f07334910a8", + ".git/objects/db/8dd012f1e3445a1061a5daab2be9cc227f121d", + ".git/objects/db/9cf460efbba0bc1a8305a04a7755f6ea839310", + ".git/objects/db/a572913e086e226b5a1bf0c65292e77508d076", + ".git/objects/db/b99fcfcef2b8864df8a94a7aa88f23f0da569d", + ".git/objects/db/c0ca669e546caa67cee9b5e5edc3d7521a6416", + ".git/objects/db/c4bad24652401b0ac6b192a3c30c1adca35b2a", + ".git/objects/db/d520d41c5fd066461b8ea2ccdcef7c2d64a9fa", + ".git/objects/db/d99059b24dc9bf3e932d5f3fe718e93d57227b", + ".git/objects/db/f7bf27ea2f74f51922875d5628bec424286278", + ".git/objects/dc/03b1b3afc2b91ac69f10c9603079a1b2afa41f", + ".git/objects/dc/232273078bd4fbce71cdb43abe22f44d092998", + ".git/objects/dc/26a68dda222a2d722d42a29d4883c01244b26d", + ".git/objects/dc/2cfb753d0a1e25e1ce80d11ac4c3dd5a50f639", + ".git/objects/dc/39e1ee6bc4608c9def44d8a14faac410c54e24", + ".git/objects/dc/40ce15328056d8e89bd8ad1c35428d01663e38", + ".git/objects/dc/41f3bd9d151fe995ba79cb372d0ff275813a7c", + ".git/objects/dc/45640d7c9cded19c4311e41f1379aa70ced959", + ".git/objects/dc/478213bf19d4292111b5eea695eaa5d2e227f7", + ".git/objects/dc/4c116ceb68cbcd55a9b63a7ce8f3fef8f3c312", + ".git/objects/dc/50ec29a765465fc0e15c30999aa869632d5c2a", + ".git/objects/dc/53a5f06a2aeb5e5a6e1e7b66280fc6de2c78af", + ".git/objects/dc/6c2bbf37f218599880ab9f45ed6b97102a0657", + ".git/objects/dc/76398fa8336f95dff0dc1b3bb12b7c9c458bb5", + ".git/objects/dc/7a1021aea945275510320ba7fab77d8d2de082", + ".git/objects/dc/7ed8e50d67ea6048f3b3680fc63c9c848ed407", + ".git/objects/dc/81c5b51516257074058bd39af82e0681fc057e", + ".git/objects/dc/846de78528f4af5c473265a85f99e1c57b4560", + ".git/objects/dc/8b0e323b82eb629dc1393d7aaf067a6ed00c59", + ".git/objects/dc/974064798fecb641b444214d831df38a1ac2e8", + ".git/objects/dc/9ae26b3792ed1da350b04baeabdf4badbf3529", + ".git/objects/dc/a8dd2b763e0fcd8c8ce4ea9752ba2178a9afbf", + ".git/objects/dc/b030076bfe0ac2fe89603354222c791f922347", + ".git/objects/dc/b7e61ed61ec5469f58dfd329ea6d7ea3006361", + ".git/objects/dc/baffb58b67eb56a258294f1b6b202918f0b2eb", + ".git/objects/dc/d0cdcb189d1eed193c69676fa1db9d64bb50a6", + ".git/objects/dc/db96c6fd46f20430e2ab540bd4ba7ac2c52328", + ".git/objects/dc/eeecb9f55c4ab236bf3ab4c7b28e373af17e1a", + ".git/objects/dc/fd2c58b2b24c2bfde37044e431fd48af7170ef", + ".git/objects/dd/1dded2a05d1f8418c9d11c68d7e5b68686062a", + ".git/objects/dd/1ebd30f12ea5e0b06f6c410dbffeae4d48fad6", + ".git/objects/dd/27384a22b6fd091237f493b5c2afb7615cd5ea", + ".git/objects/dd/3d7a78ab572ec65337026d9f3ce4a7c515181c", + ".git/objects/dd/521548a1f741be7a0f601f2e700df3835b8872", + ".git/objects/dd/5a4483ced8c4d5329958b501e9a17125a8bded", + ".git/objects/dd/6c274b1a5ded93f1d09c499617653857c85dca", + ".git/objects/dd/8c289b4805ccdcba6d453cb2af3270332b52fc", + ".git/objects/dd/90e9d0adc21494203899c49c7bf1473a2ffe0f", + ".git/objects/dd/9f0c098b16c9dde27e723a33aaa0b460ba5998", + ".git/objects/dd/a60971e77d0d19e7b3b91decca90537fd2184d", + ".git/objects/dd/a6918e110221813b59eaadc806a22fb8a889aa", + ".git/objects/dd/b63f85e83a2a566a609b53de6eea55b618101a", + ".git/objects/dd/b95147d3b2faf6526ae48be2711b59c16da47e", + ".git/objects/dd/ccb739a0a22deb8144b24d7f807217c5cc3186", + ".git/objects/dd/e9e81b0cb457549e1ebab896ff5d13d737b4a3", + ".git/objects/dd/f408a758f7ee589620c77d5f1fe4b976c24678", + ".git/objects/dd/f7fa2f02931d5c3cf87e5aa38f414f70309e2a", + ".git/objects/dd/f9ae70c6cdbbc036615f62e7aec0a898820412", + ".git/objects/dd/fc8d34e1aaee8e9cb2c5174f2b7a6ab5d3ac2f", + ".git/objects/de/00dabfc64611ba2a52209b33cbf47770f4c582", + ".git/objects/de/17baf5861e8cedee2e17d7649ebde3eceb676b", + ".git/objects/de/1a5c64b82185c6c8e38caa451a297a6a39c2a6", + ".git/objects/de/1b1502f2f9d98a57c9e56a8248bd0de34283ee", + ".git/objects/de/2745b7e4ff7971ec5e6e47bcc2efc2ac2cb803", + ".git/objects/de/308ee5cb889f58944d0b9e2b07c78af86b7f4d", + ".git/objects/de/3932c5a8cc1da148eacb688db41c8a83d8a9d1", + ".git/objects/de/446c31f4e0ca4c0f25906a0f5731dcdbcfc0bf", + ".git/objects/de/56a2ae3ffc39e0bdfc962e3a10d6623c007677", + ".git/objects/de/630cb2b067d68be4b9ecb1c7f82b3b47913aa0", + ".git/objects/de/76caa1e9cd30efa27546170c8327d6bf8ef8fc", + ".git/objects/de/7af1e6d446b9a27d6e6ec95a2e2c3f8f9f3efb", + ".git/objects/de/7b76f2e8a4f2552c31d8282d1119928d886df8", + ".git/objects/de/8af0a9abf21d41cb120e46ac5715f0fc98067a", + ".git/objects/de/91190aae4e800fc8eb8e899d7eda39cc14aed4", + ".git/objects/de/91d544aedeafc9424fc0429058b62c31d9af43", + ".git/objects/de/957b3b1fc4138ce9c9f2d829fbebe477541f16", + ".git/objects/de/9b18b18259c434b0f18d809a655807cf4fd673", + ".git/objects/de/ceb508779db9a5fb66a2a90f5a78bcf3440226", + ".git/objects/de/d76f94d5e79250da914b5732f1a46758f077eb", + ".git/objects/de/d9e60df610c08a0c97d57c22a03c7a19842d61", + ".git/objects/de/e67c6627c879fda23a98395815120f7d41c796", + ".git/objects/de/ef6498569c7eec812fa8975d71ff85efd6e313", + ".git/objects/de/fa630a71160cb425220ad08a905ecaa92b0bca", + ".git/objects/de/fbb9708f90ffc2e543a8b0d797f6f511536b43", + ".git/objects/df/09d1c41d50ecd70a15f6ba83169f46cd544083", + ".git/objects/df/0d8500253e6c978be5670316032d3595812d39", + ".git/objects/df/0e192bcbd428c3c2f6e44762df1ac3ee14858d", + ".git/objects/df/12bf4a6f7e2c94c30e383f05ee573bd6841c90", + ".git/objects/df/1bb1bdaae44b1ed9cbd7958af4d43a91e2863b", + ".git/objects/df/35592cbaaa6c70db12cd51e206af5474dfdea3", + ".git/objects/df/3eed6472624dd05ff6a1025734aeebea4b27be", + ".git/objects/df/52eadf42bbce3525419b276f98a8f82ee0cb8d", + ".git/objects/df/58965140e023aae416d533bc1c2f6773246ba6", + ".git/objects/df/5ddc946b7fec650216a53b6381d226e3d7594c", + ".git/objects/df/6057197c613a32c0630f19c1606ea1366e8d57", + ".git/objects/df/60819a85722f85439345cb4a4d8990a8efbe66", + ".git/objects/df/67a59a5d7bd069f0197cfd4f15f2415b44875c", + ".git/objects/df/70b4643c4f77fe38c138d4b7f70ea9047e0daa", + ".git/objects/df/86725bfcd13c69cc240e260a2f1113c71340fa", + ".git/objects/df/891c5c3ad17491f15544efd5603de6fe956bff", + ".git/objects/df/8f522fc1330096606bc8ff25a2f0502a67d8f4", + ".git/objects/df/9945f8a33aa6ce29249808ebac003919fee322", + ".git/objects/df/9d040c421e529454a24f81eb454048011ff46b", + ".git/objects/df/a07cba2263759650ef82d27b14cfef9b766045", + ".git/objects/df/a39f4f62daf820fa46d693e8a803b399f08772", + ".git/objects/df/a8e6b573f5393c18ad16056d087c1c87e1ddb2", + ".git/objects/df/ce2b187957ae1c84b709cb55c57c2cdc6a3891", + ".git/objects/df/ceab696bfd763e2ac160bf05303efc76c5b942", + ".git/objects/df/d514ace513ac7f1dd6d53e9a17bb0a3273cd00", + ".git/objects/df/d86612354ca39820c4890debc0e06860201167", + ".git/objects/df/e667f711cc6f63b72130a756d3b40e8d9e5b02", + ".git/objects/df/e6ff1b0c14b3490fe3ee9bf6faa6c194639ad9", + ".git/objects/df/e79c8a5f2d62012b1d5b91c1d19b857725a9c3", + ".git/objects/df/eac180daf7f096711a1413fdc19a8197b7cd2c", + ".git/objects/df/f1d9a425a5f18d45e78599ed35366817df0bec", + ".git/objects/df/f340e35fe6581b2ea88f6561871edf47440146", + ".git/objects/df/f69b250a0f8a51aaf5711e2d7fc1af23083952", + ".git/objects/df/fcddaf2f39475d3396dd154df275eb40e7e7b2", + ".git/objects/e0/17770d274fbea21d9798bd6eb6a7ed2e005641", + ".git/objects/e0/17a7121501adbcb20f425959e4bbcdab4c2603", + ".git/objects/e0/1a2e00911d2531583cf0fe098c937f1f273695", + ".git/objects/e0/1e4a2d40c3f9387337d30251b01c3690c5bec5", + ".git/objects/e0/2f7fbe876bf968a43901767aac2796b874c1b2", + ".git/objects/e0/551769f996b9360393cc61be1aad5848854784", + ".git/objects/e0/656031942001d945b0903783741174538024e6", + ".git/objects/e0/6c501e7bed007c323a79590f09886c05964e0e", + ".git/objects/e0/6dbb43c2329f5f8507e2d7b6c68201f725c660", + ".git/objects/e0/a5f103e2ee5675355906a41b8b9841df90b561", + ".git/objects/e0/a75586565a62f432b199e663c9a07149f9ce68", + ".git/objects/e0/b5d98fa24a300899c3677a1cdd83369f9fd673", + ".git/objects/e0/b66b9f1db513972107f9b248b9100d55edd7d8", + ".git/objects/e0/bc574a503b83910a2615aac88bcc9a5a65ef77", + ".git/objects/e0/bfe104c36fa8673a27c594ec32cf1b1a4d2c7d", + ".git/objects/e0/c238cba9696ef62177d89f997be9e7c035a269", + ".git/objects/e0/c43896904ae6b912b9e31e4ea0ede1347df71f", + ".git/objects/e0/cb0d448452d440b9eb3ad2333a9fb49850e46b", + ".git/objects/e0/d7bfba02978d621b7548907a4de51e6dea2d04", + ".git/objects/e0/f2315bdaa4317f45b2a2d3ef6e414812d2f92c", + ".git/objects/e0/f9d59039308f31bf2a0f17e63f919b33549c67", + ".git/objects/e0/fa6fd154997598e744f32b9973fb456ece3285", + ".git/objects/e0/fa9155a04d4ed74f12c35c25613d8b24a5bd38", + ".git/objects/e1/1404e1cfa30c1f151834f0142060d71e43c026", + ".git/objects/e1/14eb07c249567a804c8f8003a4e911e26d4b2a", + ".git/objects/e1/21914311e7627c3758e963f83ef78c7d61a584", + ".git/objects/e1/22ca37eaf7ce6bb385a574a45750ea4c9f3574", + ".git/objects/e1/26bf23d7ccc9533b5faad8a736c832df454458", + ".git/objects/e1/28669a463104f27c7db5c87e51723c7e670469", + ".git/objects/e1/3bbcc7b1515ca0bec8e746c71ba24d17ea18fd", + ".git/objects/e1/41dc338ec7bff6bd35ebe3a409ef1238fd5ff9", + ".git/objects/e1/4ce03d8a438cbffcee6f92ab581143b5db40ed", + ".git/objects/e1/4d1ddee6e4611c197804393414cdd0107f27b0", + ".git/objects/e1/4d242c84253f1b113c20ebb19525ec883987d4", + ".git/objects/e1/637e329b59e61114743c8a3df9bb6aae582884", + ".git/objects/e1/7b8a6aa6218e81cd3a811e36236d6c5ae2d8c7", + ".git/objects/e1/884423620faed9a9982583eedeb66a49ec14c0", + ".git/objects/e1/9149fd235820943e3b06c16b621a1531944328", + ".git/objects/e1/96774d300cca4f24933f63d1d78442ff1c5b4f", + ".git/objects/e1/978224f7d31b528004aae42686a463706a87e1", + ".git/objects/e1/9e9ed9ea21a0f3bbcc5a59604dc2163ec851ea", + ".git/objects/e1/a63de35720d9b45f3249be256c29613df5a28f", + ".git/objects/e1/b15cb1a49961e7c32f4412e20699a7eaed4dc2", + ".git/objects/e1/cf7e581b80c91aa3c100f11e80b2231eb63bb1", + ".git/objects/e1/d08fc7259293000c5e64616408a55726e34981", + ".git/objects/e1/d99208fc014f98187b6e6ac5d33b72f5c81690", + ".git/objects/e1/de1734993e12c18d83d904cf3b12afde5f1d16", + ".git/objects/e1/ebcdfe97676d588cb25da45bd406e11a32a4ea", + ".git/objects/e1/ec75767cdbb24d33932c54cfad7a31da672bd9", + ".git/objects/e1/f97c3249175f9f77b9b2250f923fc1ef275ba2", + ".git/objects/e2/0434f46561d1eaa4767f03b18dd526919e72ad", + ".git/objects/e2/0bf432a9a234686ca9ee4a48af9034079f94f4", + ".git/objects/e2/1f622b18c5bab1dc57b27574fec7783646ed4e", + ".git/objects/e2/606e413c2000d9a85092d83a01d10a8ea35b1c", + ".git/objects/e2/61ec5af47f3746288af6720208e9a222859b8e", + ".git/objects/e2/67f9d74bed21b3a6d1664060cbf20e02486f1d", + ".git/objects/e2/822ca14734cc952bbe71f918f1ebd00241cbb8", + ".git/objects/e2/82c02bd5bfa4a38dce5a825c35d619ff247ba7", + ".git/objects/e2/9413591dca4c8e2ee538030f3357f196e1b955", + ".git/objects/e2/990e08a08888dbd35a91860d6280aa506096d8", + ".git/objects/e2/a6ef1ff8a7b0a9e96238e9cc2ac6e03afc2663", + ".git/objects/e2/a7c6346e9a19b458e03de34be60c865e53b87f", + ".git/objects/e2/aed7609f47b6751aa6b7dd04343caf5abd004c", + ".git/objects/e2/be7fb65525b54f0c96a57787d7a1a7a86269b2", + ".git/objects/e2/c49dcf83510236566b3c1a725791e44907c0a4", + ".git/objects/e2/ca832c7b2b74385d86ba02bde91d62b70f71db", + ".git/objects/e2/d157b7f11b088e8da826238485f8893eab3633", + ".git/objects/e2/e73b0d2bde02c7d2694c4ece3b1deea0e6c9de", + ".git/objects/e2/ecf2a59fd9298ce4ac0324da33904cb5b78b0d", + ".git/objects/e2/efc2ba8a4bb29ec3e0f07eb18d55bc519b01ca", + ".git/objects/e3/05bd6c08ae7f5cff8fedb81b919cbecd20aee7", + ".git/objects/e3/0a12e5dec99def7c5657a986048b478e3a609c", + ".git/objects/e3/0f62c494f04e8e021c8b4a989e5951a16a547c", + ".git/objects/e3/136736b2adf6bee66da25f1e60514b994d1205", + ".git/objects/e3/1c268f19538d629abf40dccfa15fa0aec91045", + ".git/objects/e3/2626ad7b75746fe6ca3aec34b2b9c7f0adc4af", + ".git/objects/e3/341398df4638ecb029d3021f999700ab176cd4", + ".git/objects/e3/3853aa3e3f206160aa80372fb31b621f145a1d", + ".git/objects/e3/44c33ba700760bcaec4ce2c11d5079c194f525", + ".git/objects/e3/4524f48d4173e6b8e6745d92607395993fc3f6", + ".git/objects/e3/4e5c719ff8b03bfa9eda8fe09c0feaf479b190", + ".git/objects/e3/54cd2e815d2b1147f3844d9819a271f5ace1d2", + ".git/objects/e3/70e36e009358e49622cc78a9b51564a3e74079", + ".git/objects/e3/a3248a3fa3eeabeb45c0c255b7e0656d8abf53", + ".git/objects/e3/b795b390c678f81ccf6227696b535b3f4f0cc7", + ".git/objects/e3/c30e5be48a9f2436e8a1a989b7a23e312f6a28", + ".git/objects/e3/c8711ea52bfb77240b0ac3df3614ec6555eeb6", + ".git/objects/e3/d630ea38d26ea8e2176e322fbfb23cd8750ad8", + ".git/objects/e3/de38e1c29e0c9fcf002b2c334430af10d42c34", + ".git/objects/e3/e233ed3684841b3eb98da74edb317743b22aa7", + ".git/objects/e3/e4c55b9f80eea9ea9ac6007426eb2a5cbce5f8", + ".git/objects/e3/e55eab0cf5c37588309e480d2158a8cb12a6de", + ".git/objects/e4/0d71c9c91c52cc7975cdd2ce8d308377b7becd", + ".git/objects/e4/15dc6ebafb25bf7242f6b3e8351b538870ff05", + ".git/objects/e4/206fa4fcd1463e84323692d520876b6be26e0d", + ".git/objects/e4/21cf791608552801b5e9126d74e3debf5079bc", + ".git/objects/e4/3d3f955ecb274efa14399bf9abe907628b0001", + ".git/objects/e4/434fd70d53fb1e00484e1517729714eda91123", + ".git/objects/e4/51d05ac6d895892480ff9c27978f80a3918e80", + ".git/objects/e4/55b23ea8eda92bb045e69848902712e82b48c0", + ".git/objects/e4/6353e819c94f54a0da7a30c2cf31f89eae8ee4", + ".git/objects/e4/6e3b4f6794fd53f4ea1f9124f0a4d837aa61c6", + ".git/objects/e4/70cb06f05fc8526878527ab2b090717e356609", + ".git/objects/e4/793c780a3656c40df0d6332abb4b76e10ddf60", + ".git/objects/e4/796d4d48eb989d946a23291d85d228793afa22", + ".git/objects/e4/7cbd29e4f339b777d4ec6f1a81869ec45d223a", + ".git/objects/e4/89927abcfb122b43f8ca6e163d5286d4084449", + ".git/objects/e4/9a00f91ae0b913eb8292d7bef6f042e366356b", + ".git/objects/e4/9f4ae1c9ca6c30aa7064a3b3434d924693c11c", + ".git/objects/e4/a96c5ed6eb5f09144071ace1db2a23a3630d29", + ".git/objects/e4/afcf5d518cb457d5eb0bac88b14e63126c0d0b", + ".git/objects/e4/c76637f696b27a78a21c93767eabca0102f99e", + ".git/objects/e4/c77891d1229789f3a68cf2118209154762317a", + ".git/objects/e4/ce4b377e22c80cdb5730238c12fb02b126188b", + ".git/objects/e4/d454e8f05ae423862465aaca1cf648c925fc4a", + ".git/objects/e4/d57f86c242d910ce41df4a116de970f37379fe", + ".git/objects/e4/e096d84d381ff3bd582c90732a9e93f78e51d1", + ".git/objects/e4/e83d31f9241b2d8c5d31acc4f43468073dc28c", + ".git/objects/e4/e85ae3376860f58cbbcd5770f4a475e45cbca4", + ".git/objects/e4/ee74e95f182b0fb6032a679a3715cf142ab3ce", + ".git/objects/e4/f3b9f140da052bc19fbf775e602644a4b9edc6", + ".git/objects/e4/f482aac38c64e93d858bd0656b76e2e896c9ba", + ".git/objects/e5/0d4499a59e3f479052c43c7da5784a0019aba8", + ".git/objects/e5/0ef35de519bbad63f47b8f8c543fa589865d4c", + ".git/objects/e5/0f8322a49750dd995ebaef9278dfa1d156feee", + ".git/objects/e5/1734ba50b4bda0f9bf72b3d153833597298b22", + ".git/objects/e5/283291129735b0c8978b41254b9b9617bfef91", + ".git/objects/e5/2e8a3455a55bbd24ffbddb00327c282dba1e45", + ".git/objects/e5/45e99ef1be2017eef67a3949e8798f43056ff8", + ".git/objects/e5/5b81e04615a6f10e7fcc961c51c32257d92fbe", + ".git/objects/e5/5ed718b08d68f2dd12461a7b4e1c22d7166fcb", + ".git/objects/e5/6446c6a0459e41d9478b782ccb5760eced902c", + ".git/objects/e5/6bbb31384864b421b1d948a9cb446ac1db560a", + ".git/objects/e5/6ec718fe27b676b0fde8e24814b0819f43e233", + ".git/objects/e5/79e7f2c901a177d1bb3cedeace79a89b1978f4", + ".git/objects/e5/85bf95f65705ec5342c3e649c6243e80432415", + ".git/objects/e5/949bd5a02d133a8923d5fc5041c2c898575c68", + ".git/objects/e5/97a376f5e3e8a9f83936adc6bc773a1dce777b", + ".git/objects/e5/9e227d5e579bc07022bce1c5568a0c3d2b8c88", + ".git/objects/e5/a4282721a3f8effcee5e9d8efcb9843a8c02aa", + ".git/objects/e5/a614b0f9877fd5f12e16597afa9f3004f34f08", + ".git/objects/e5/b03fed784d8ac37735fd603267cb4d1ee9117c", + ".git/objects/e5/b6d07b0cf120421dda6c620c62da9488a1d383", + ".git/objects/e5/b9a71d07596fe75c966855154702ce21cfe7d8", + ".git/objects/e5/c090cd993120854cec315e8711316bee63e341", + ".git/objects/e5/c611c7d8f179d6561ba64f4712a2dadb36e919", + ".git/objects/e5/c7e13ad9939b1bc6542b2aeb88ac69fd90fbb0", + ".git/objects/e5/da0735cd2e38da6e4035a3e132a2b630c0b665", + ".git/objects/e5/dd6be56d9a75c42573142b0d899f3afbc97ef8", + ".git/objects/e5/dda4df7d0d2c04f91e6f6322446340f43c8e0d", + ".git/objects/e5/ee3a3cd089e5807df89f59ee4d1d33787cbdd8", + ".git/objects/e5/f088251c2596ddcfa5d11dc0038a5bbb3982ec", + ".git/objects/e5/f926783a17897f48a577e002f3b89125c703f2", + ".git/objects/e5/fcee632646ca2d50dbf26d1550e33aaa19dfe8", + ".git/objects/e6/23d2d965de1591e4156a1d175cc1ea298b6825", + ".git/objects/e6/27a88ea6d27db79ea11d1840da7f5595978e14", + ".git/objects/e6/3771572dd8da48c9bce77a7714dee4701f1eaa", + ".git/objects/e6/3f2c07289c8a0c687de17fa40dd3c5c3b3b060", + ".git/objects/e6/428e66cccd364280d4e4fd85bb9ace738e363b", + ".git/objects/e6/42ba2cd4daa011df4f42042b87a201e298f9cd", + ".git/objects/e6/4851566874cad9adbdb91411cf38a092f0b68d", + ".git/objects/e6/4a46e8c9589e9f3d5a770436cedce8971ec83b", + ".git/objects/e6/52ffc729971a522d32f5a89069ea195dda65c2", + ".git/objects/e6/550953d5ee8e00f6101c11069d9c3145252582", + ".git/objects/e6/5fac2de13f4f6c007b0bef744e4f6345653593", + ".git/objects/e6/6571c5d301031be15e6ae57c9425fbb766efa8", + ".git/objects/e6/810a17b78431a2bbcfb9409aee58f6f30c44ed", + ".git/objects/e6/90135e16748d8bb0746ad83caef776a4713a40", + ".git/objects/e6/91c3de53389af16ab7335d6620dfc29732f792", + ".git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391", + ".git/objects/e6/a1e29d87750d9a57a185e7369800dc54391a45", + ".git/objects/e6/aaf74a4f5057d4d0107e282ecda51ab20da611", + ".git/objects/e6/adcee0a94b62ff22cc70b93883e434c60ded91", + ".git/objects/e6/c13568bb8e1ce96fcc45ce7be521f466b97f5a", + ".git/objects/e6/c164aa338415d8ded9ec78e25389d352f14332", + ".git/objects/e6/c57d3cb1df45509086895f6d491ae1b237d405", + ".git/objects/e6/cb3cd44eb3db9b7e15f2865178c6212d34224c", + ".git/objects/e6/ceb21b054e0d6489f3c50e73e886cdfb641088", + ".git/objects/e6/d02ea5d8bde71b1118e03a3f00bc61a3252a7c", + ".git/objects/e6/d3f18978a70688aaf31d4dc159da4e07b9b353", + ".git/objects/e6/d7af2225d6eba2dfd2c37d4a50468c5820b498", + ".git/objects/e6/e597ab51df67fe8281215ee7cf32a2ff9d5734", + ".git/objects/e6/eb22b562edb6a098e4e7680ee30bc1df008378", + ".git/objects/e6/fa1905f54548f95df735bc3edb9d8b5e2ffa57", + ".git/objects/e6/fb8dbee7952e3464c1e4d830c008bbc4f2863d", + ".git/objects/e7/3722ad0fc291e3564657e7d13b9409df721775", + ".git/objects/e7/39e37985de5a2914201a348f87ea9029f20d65", + ".git/objects/e7/40079c0f781d2e66b607ade0818ea9202dc028", + ".git/objects/e7/4c3c004f236fa64cf25412a6b8138abc3a0f77", + ".git/objects/e7/5a4c7866d8553e3bed5fde660b7ed55abac3f2", + ".git/objects/e7/5c69bf9576c69e7ded44313ab71e625e567335", + ".git/objects/e7/605420adb5e25161f8aca54eba2fb33bbd022d", + ".git/objects/e7/66d7abc4367aafe88f378c332db90cf4760340", + ".git/objects/e7/68a7c897a73f78d888aa3a225858b07545ecb0", + ".git/objects/e7/6c4a897490c8657d5d5644df3c33b1723c3c8c", + ".git/objects/e7/6e03aff9fd22876723221cf23ea7ee2bbdf2e8", + ".git/objects/e7/75cf8b441670b24ab0cac3c07ceee5946c8c36", + ".git/objects/e7/8308ba2d72ab6a04ea0a7ed61576b1c19ddf65", + ".git/objects/e7/a26774ade9669767872952e13be37f32720bd1", + ".git/objects/e7/a58cbc61685a3baa934480c1889c353ee9d049", + ".git/objects/e7/aa5af5de7ebe0b4ef9bc8329beb1b06ca12f78", + ".git/objects/e7/bb8a23966706b104d3aa8eb27aeac93e990dc4", + ".git/objects/e7/bd602c6a6eb010aade65bb796c4bdbc840bb58", + ".git/objects/e7/ca6053d8e9ec325f8572e676a4b2c9a91753c7", + ".git/objects/e7/dbb8c2dc9384127ccf7ae97562a30bbec3f6c2", + ".git/objects/e7/e2a56cd60a7fea20c7bc839cfb59db00ac70d4", + ".git/objects/e7/e3da92e94478c6316e176b8f8e6cbc07c76ef1", + ".git/objects/e7/e8784729ccb009086a2a90406f3c4c18d26ef4", + ".git/objects/e7/f5438cf1c106a11fe0bb2c13e4a2f58df8f632", + ".git/objects/e8/1c3c72f0f233c7894889e94b01f0470edb79e3", + ".git/objects/e8/22ff0fd381d929a51c2ccff8d0950384b80b26", + ".git/objects/e8/259036b2af9b7fa6eb9700662f9afd7774e834", + ".git/objects/e8/2ec0f7f7c4c3811417173fe98be616fdb3b866", + ".git/objects/e8/3c944a3d73fdc6bdacd237ce5098ff96bd6719", + ".git/objects/e8/41aaa45077942c7fc8ae613774a1970ce911dc", + ".git/objects/e8/50b6129febc5c968a49d9cc482f77d154551b3", + ".git/objects/e8/5aa0687d9d0212de1701e874679a02a69216a9", + ".git/objects/e8/68370d2aa3eb2152911b94267ce49f6d7a61b2", + ".git/objects/e8/77d7242c21f342fbf55f9c4fb0459f2b907b55", + ".git/objects/e8/84531860c78c67f21b237891e6c1985e1f5a37", + ".git/objects/e8/8b886b29c46b2f95b819dcea520ec33facf425", + ".git/objects/e8/97219820e6c7b7af98bfe64324101bbd6593d5", + ".git/objects/e8/996d685bab9c84205f50ddde103d485996e13c", + ".git/objects/e8/9a5499a1d1e88da9f0a5bf56ceabeccd5227cf", + ".git/objects/e8/a5b9faf12111ca5a7f347920830632a9cbdfd5", + ".git/objects/e8/aa9a7b8839de3f2b8a86a497c923b812c3f49c", + ".git/objects/e8/afecc016b40308c91b96b2521cfa02097ae30e", + ".git/objects/e8/b9d02ff0c8741cb7c02675beaa1d819d45c161", + ".git/objects/e8/be586a17f9b102dfe719fde8031fb79cbd8b77", + ".git/objects/e8/c26897aaab990c79833ec4b72af7f0f99db700", + ".git/objects/e8/de2accc441e8ef5697a7d35c4f468daf21bd87", + ".git/objects/e8/f4ddc87afbd81189cf67e2d94ab90a74f77fbf", + ".git/objects/e8/f9fbceb8e69f85465d91efcdc6973b58e6a887", + ".git/objects/e8/ffdcebea35e39414e2b7c2446d5b14ae01d840", + ".git/objects/e9/0240b2a4a60d5293d6e05f8abc643854e050b9", + ".git/objects/e9/14fbcbc338bcd32c04a6b656bbb65bae0cdac4", + ".git/objects/e9/2ab0ef7cdee6a01c7d6f325418a0d1aacdd0b4", + ".git/objects/e9/2c2bf7d002811b45eb4bd948f382cbc89b3305", + ".git/objects/e9/3686a71edb5e8e4068303154328548a5fc0273", + ".git/objects/e9/390e9fa038487b5fb9f92016f731e04778224e", + ".git/objects/e9/3bbf89b65a7136f7d03cf8f6b169b502fb5cce", + ".git/objects/e9/5799952de73d12605091879c9b68681c46411f", + ".git/objects/e9/5e8577e0464c8ee7bfb1b84cdf779bf3c7a1d9", + ".git/objects/e9/6b13117bfcc933445a415c67cec5cf1046e131", + ".git/objects/e9/6e39c3fa05aa10ace833d8265c36b9f673e13e", + ".git/objects/e9/8503b0dc3ac08c204b729a56059b385e631a52", + ".git/objects/e9/8e9a8e6585fe8b4fd911efd1f6da2127180d31", + ".git/objects/e9/927fbda81fc57f53697e0dddf76ebc91067948", + ".git/objects/e9/9c9bfef36cb15630cfe26916edd03fc2e7f0ad", + ".git/objects/e9/b5cbd982b1a31b4a8a3a64583b854adb64ade4", + ".git/objects/e9/be79102158ea1ba183e7976c71205c9b6be0b5", + ".git/objects/e9/bf720b4dfc1e8167e7c6139d1f55877abe3c83", + ".git/objects/e9/c3147a401389fc7ca79e86ad8a8157cb15bc9d", + ".git/objects/e9/c6282b08639eb44d732c03d0f85177e82a4209", + ".git/objects/e9/d3aeb49f5b2bdd11e3df9cb67b7b1fd33d82ca", + ".git/objects/e9/df1fbbd29d3a39a81cce6c94a836b9f76a131d", + ".git/objects/e9/e2c571430c8b76ece02ce63513647e104fbe95", + ".git/objects/e9/f70070f447a5647b728c2dae82a943a151c0a1", + ".git/objects/e9/f956b1e5c73927ded6d383135c9ae4738e772a", + ".git/objects/ea/03fdeca6f50cda0ef668a3a64a209fc4185975", + ".git/objects/ea/132c6cbcdab9f62b57cec36baaf535a74f9b1c", + ".git/objects/ea/158bb0ae4f97386b4aa7cd980f0ae502eedc5e", + ".git/objects/ea/1d9b8fe78b7f8bb4706246f97bc936f993cccd", + ".git/objects/ea/33f93a1a6618ec3305536eba6e89866924f63f", + ".git/objects/ea/3865825283979fb67ea7e8e21522bd9ecdad9a", + ".git/objects/ea/3e9e0530a908207e68997b3769f9fa34bd9a1f", + ".git/objects/ea/45f918e8ba0e98ef2802ec87e5df80f8d53c66", + ".git/objects/ea/4708ae8eeacfd5f15f9bfe261b441e9748edaa", + ".git/objects/ea/5261228a3aebf2f54dccb8ad9c670aafd9c725", + ".git/objects/ea/75570126f4a54a46102c2fbef67ed34185cf32", + ".git/objects/ea/800c9c7b1083da7302bb964afeafb1f15a1a73", + ".git/objects/ea/83a49cf520e20c25c609bc7a57f5b7fda7022f", + ".git/objects/ea/840b7a4e228381a95cf0cd4db4c919f2aeebbc", + ".git/objects/ea/854f9c7d5d3252ab25a95abd50b99f529b7007", + ".git/objects/ea/a049341443da1cd650c8f811e04dc5d4b68e7a", + ".git/objects/ea/a69430911d0a40cb173390d24f9c1730fa3c26", + ".git/objects/ea/a97155822d0ba2efd8598b02b8136c034e0ee7", + ".git/objects/ea/bee2446cbb428fd4520e4c8508f64e3f3df163", + ".git/objects/ea/c94ee142f8c5bbfe58976367a38a463370f1c1", + ".git/objects/ea/c97ec95d99eb9971a83ac4a7e56c04dd9dbc54", + ".git/objects/ea/cdd495a0e7fc967eea53f114d5460a1844ac5e", + ".git/objects/ea/ce37ceb94dcf022545e5a70c42340e3135f377", + ".git/objects/ea/d009b7ff85dc28298524703a53706cf42fc3da", + ".git/objects/ea/d972ec81b280abca6ed28b35bfc512771231dd", + ".git/objects/ea/dea9d1dfe7f0058fe1ad29d32377be74bf1c7c", + ".git/objects/ea/f4fd9d307ac3d24bb05eca84c499863a0193b8", + ".git/objects/eb/22d96971e982a65018cb6327a6d0151c257797", + ".git/objects/eb/2eb2b6039ec391ab53cb958ce7ac87bcfb5617", + ".git/objects/eb/3dae5aa0404b407d8ede7a7d0576416af03cbe", + ".git/objects/eb/42144e5a4cb8231b9306b73023060edabcf008", + ".git/objects/eb/422e9546d6ff4144511b8b8d96127da3585d9e", + ".git/objects/eb/578bc9fe1bfba0cdf09323c22b4696e47bf57f", + ".git/objects/eb/5a0e96b84760ae075a7aaea62dba6618a7e8fa", + ".git/objects/eb/7083436711a4857b6d5de654e58ad452600b9c", + ".git/objects/eb/720da55ddbedf1aff96e4089931c1e246d8954", + ".git/objects/eb/89b3bbc553528722cb819d12c094ab6f218583", + ".git/objects/eb/8bdb3eeb372c54ddbf103e5f0d4e72bbe7c8d3", + ".git/objects/eb/8c6e2ce3c21c94151b877670ba30f4f8af1ce7", + ".git/objects/eb/a15e64fe68a932b8ce5db20756809cf7eb8487", + ".git/objects/eb/ab8d329977d4153fa71329a92e71d321591eff", + ".git/objects/eb/b25675bbb381173bb51885b653438cc4cf7db1", + ".git/objects/eb/ddf95a899e5b34bd3e781f6cf6e6d8522569c0", + ".git/objects/eb/ebb48ba7900951ea9fcc37c8f2702081a16526", + ".git/objects/eb/f13a4401b34abdb18aa45f379b28844a77eb30", + ".git/objects/eb/f30c28251221ab12d161d4ed63fcad0f61afe2", + ".git/objects/eb/f6c0ca2c20e6dbc69e5277e789eafbafd2a177", + ".git/objects/ec/0522aacfef703a56be27efd1aa5a348882d4cf", + ".git/objects/ec/06870a3d8c018bdbba4bb8b9a01a58fc2b86c8", + ".git/objects/ec/1bdb496d366cc007bc3dbe854cf5df3617a0de", + ".git/objects/ec/1dbf5d1eb10fc3c08f2b54589a3b00438e1c79", + ".git/objects/ec/2aee0e78e1140e1f6fcd759e87b65005cae4c0", + ".git/objects/ec/2d25e96265b3eda5700ec3dcfaefa2288243d8", + ".git/objects/ec/3cbfa77eeb9cac271026db530a3e146b80ce62", + ".git/objects/ec/41ca314a6ee0778186827972fd5adfa00fa231", + ".git/objects/ec/459ee9c8e78db2a8c3028e29c07bece478c319", + ".git/objects/ec/5b2175eb2d6bc2bf38a529efb5ebcc9b5dbfa7", + ".git/objects/ec/6d02264c0f553942c213fbd8812698b5dc29b2", + ".git/objects/ec/78fe592e447776de5dd6f663a1592329de9303", + ".git/objects/ec/79fcf4e9bdb1f31b12778934f3b90eb3dcfe3c", + ".git/objects/ec/8869b19248e6490aa96c87701c6e719d00880e", + ".git/objects/ec/914e1cfc5465da49b94ee1a5b18dfff4427f17", + ".git/objects/ec/99765bf9e297879b5bd467fdf35d1bb28abc64", + ".git/objects/ec/9f60cde89cc32a65d85cebd32303905e1d3dd3", + ".git/objects/ec/a2ca4fb649a331f22d6d946c6eb664145d6b22", + ".git/objects/ec/a893d5c6bacf9203dc7272744f99703152c07e", + ".git/objects/ec/bcc09d7764527eef34aa8ad309d55a688b6824", + ".git/objects/ec/ca16622145b72f4959a108b0e53fd926d3e670", + ".git/objects/ec/ca828748a52cd940bb3912c72dabdd4cffd7d8", + ".git/objects/ec/d6164a9c7e91df2fdf789151ff06798daa8ce7", + ".git/objects/ec/e790a8fe1e2a998d7fd9b586cf02739a0e0883", + ".git/objects/ec/ed979c97385f6e3dae061d4bde809a693ae6c9", + ".git/objects/ec/f4bf04b3d2c59ff14d3c2268b94bb9544ea470", + ".git/objects/ec/fce729763196b60bafc76ec0884f0c831ca52d", + ".git/objects/ed/09cc746c2992e61ec9c10ae4a419b6b8f4cf37", + ".git/objects/ed/0b890dedff6c6c007df03db1b2de3433a93b3a", + ".git/objects/ed/23c57dc60bf04c9f1f0f3c2a46b5d407008290", + ".git/objects/ed/27a51bb73fba425d80a51b367ebfed060c60d1", + ".git/objects/ed/2ab2bffdf193f704062ae44e8080f177f0387b", + ".git/objects/ed/3e72a27c5500b91feec9e267b47b0329b53663", + ".git/objects/ed/4b190ab44d3803568e55b9cefe76cb6db8186d", + ".git/objects/ed/4bedb2926a5342b369218274cda22997ac862f", + ".git/objects/ed/5067c9c96fbccd3e0a107edf52f56815aa8600", + ".git/objects/ed/51cb2f3239d271e7bfdc1ef750fd9a755636c0", + ".git/objects/ed/54a79460a80a6a798f689446696eb1b525e418", + ".git/objects/ed/5ba011c995c647f5aa0656206609b271ba908e", + ".git/objects/ed/6e0f46f37eab96c485afdddf1f12153977e8cf", + ".git/objects/ed/809fa83ce3b5be8b6cebd5e8487a648e231aa8", + ".git/objects/ed/8f3531f68d6227d88720f40cccc39345dff9bc", + ".git/objects/ed/b77807be559d01539492d20e1fec20037656ec", + ".git/objects/ed/c6ddc72136c9ec12977e6b792508ebe5ed15dd", + ".git/objects/ed/d418c1d1cb89eecdfe5a40712998a1e6288cb5", + ".git/objects/ed/d927cdcf5662883fa457238c1a1f841c1a06db", + ".git/objects/ed/e9237ce3f96424c90d0e1b9547c7f38e6854a3", + ".git/objects/ed/f1fa4966ee8e4b5d133612ed2ebf8e16ef78c4", + ".git/objects/ed/ff90dd75ecb744e19553c49015dfbb33a5ef78", + ".git/objects/ee/013e94564f3bce0cf2c3fbf29807ae7d52a65a", + ".git/objects/ee/03e44029c403ae4337dfb6a08c28965a78e78e", + ".git/objects/ee/08535d12c44006890bd38c3e13d48056c2c2f8", + ".git/objects/ee/0f3bb1843904709e1a5c1001a77abf6df77b11", + ".git/objects/ee/1bef36a831530d638e644b11f5bfc4ecf15b05", + ".git/objects/ee/2c17d3a9b46e8a3e1b438be6f18f93813cac7f", + ".git/objects/ee/2f7b978aca5510a360b1c3c2afd7cb312fdfdf", + ".git/objects/ee/322ce1984ab9c6df0ce1a459dc7026e5bc597e", + ".git/objects/ee/344ed23b4d5cfa81f10c4f91bbbb59747ced35", + ".git/objects/ee/52d6bae1a216756466923f487f184a62001a43", + ".git/objects/ee/53cc3ec82a1a103e8c2d23f2529b8b3ab22ab4", + ".git/objects/ee/542f157591d81938bac8e7a0f79f7c99191f7a", + ".git/objects/ee/5aee4a069d45824741aab88f1924cd2285a436", + ".git/objects/ee/642a795771086bcd505916f34f96ccbd4e95d7", + ".git/objects/ee/700a965c1e93b83918261ef5b7d59486b0111b", + ".git/objects/ee/84f8cdf108669307eed2e6fb99f57be36b9f53", + ".git/objects/ee/894d6a7812957b50b0f76d4df3def5eaa4ddd3", + ".git/objects/ee/93f9b3b40999961d6700116b719ba7e4472400", + ".git/objects/ee/97702e35500f5a02c0a9148179c9c4c0ac17d4", + ".git/objects/ee/9a5648f46d0852e06e6545581b7b6eefd15b06", + ".git/objects/ee/b88ef29730f9389a65c756c8cbe2112edc53e7", + ".git/objects/ee/bacb56b9705c550ae81546cdf6fb201748e9e8", + ".git/objects/ee/c2d83232a6fedb7399f2e32238d46307d4c7f1", + ".git/objects/ee/d7764c72fc84221663a0b4c9b8b170c621946a", + ".git/objects/ee/d90bf07520729dc54912dc254666d71c9d28b6", + ".git/objects/ee/dbbb37d90e1074efb2e16e2c8ac97ac117a15e", + ".git/objects/ee/e0881ea2eaa4c5c1d18a479a8b7803d72ca8a4", + ".git/objects/ee/e978c3c9809dea4ba5a413369e03d5ccdd1164", + ".git/objects/ee/fc32d18d4580d3daf930843fb5062a0069dc6a", + ".git/objects/ef/0036fa183578278e6b016b7fcbe1471e651235", + ".git/objects/ef/08d932ad436ca1de7a3bacfbdce922a4ecd9c2", + ".git/objects/ef/0ca410762afe3654e69039003ff120e058a8cc", + ".git/objects/ef/11d3371303a8551157407f1c6ca532960318eb", + ".git/objects/ef/1fd2d7b7e4a3c3d2ac8c77b941f342a2b2ad05", + ".git/objects/ef/21dafd5290498e6a1f085a1b97db02b81d1ffd", + ".git/objects/ef/2b900f28bc29b6960cf3261659396b345d70a2", + ".git/objects/ef/2b909a8cd1341e0120b3dc902aa7376edf1b9e", + ".git/objects/ef/2c087652b2f52ec69530deed745ac535e2d414", + ".git/objects/ef/373f10c8e4278dd655362ecaa97ce2d96c6e67", + ".git/objects/ef/490c763d1f91f85ad9c41adfecc585ec02f416", + ".git/objects/ef/4b9146a5f81bddfd0d5dd6cfd8057ded8afb58", + ".git/objects/ef/70939c42fb4ec6c97483663d3427685931b2f4", + ".git/objects/ef/7ced4a1e3c699bf9e7a079f6a69bafc39b0e2b", + ".git/objects/ef/804049edf6e6cb6f074823590e306c1ce0d837", + ".git/objects/ef/89f7d7e81c3ee5706262c43a62a0baef4aedfc", + ".git/objects/ef/96939f47cf2887d6d50d5ef46f618a219a70e1", + ".git/objects/ef/9b15353a0866cf38f4f33fb180cd19ba6ff2bd", + ".git/objects/ef/b4175fb30d24558718f2913232e8d66326c908", + ".git/objects/ef/bed8b4526362d9b4eb4b149a081e8ab0d590d4", + ".git/objects/ef/def9ea6d073f26622ffd2528cc964aaeaac1ba", + ".git/objects/ef/e83d67356f2c59df114092a998dc0c5779b0b2", + ".git/objects/f0/0011a8325fc59eb02e9acffb4f01b6bffba27e", + ".git/objects/f0/0c1cb11b496d00e92a48fecd42f364548793fe", + ".git/objects/f0/0f404d253005b5dcc7341087219a3a66c5a3f7", + ".git/objects/f0/1e32ccedd54805f8d4edd5af6ab64137b3a930", + ".git/objects/f0/276a0515541aed622162eafd275de5c28899eb", + ".git/objects/f0/292234f4606df65714d3b368d1f95926db78d4", + ".git/objects/f0/3043d2e32f3be2b86e6cc3bdb4a29205a2ab15", + ".git/objects/f0/34c2ff133fe79b649f6adf99eb4670ffa54089", + ".git/objects/f0/3891c636026584eb95b7bfe0d796e10a0f8d17", + ".git/objects/f0/42c072d9674894736cd3eb2ccffa77b4c7f3f3", + ".git/objects/f0/6c7f6227ef8589ff16089698cde12ceaafd8b7", + ".git/objects/f0/79b3e2f2c45085421fc11292de1529cc5a7d62", + ".git/objects/f0/7fb671b0908a331dd918cc9d19acc289e74823", + ".git/objects/f0/873ec11b28cccfaa5c7b8aa8fe88c3f72d2396", + ".git/objects/f0/8d27987b5153e411e73b77cb570ff5415ef2e0", + ".git/objects/f0/9ad85ace283746e27171650a11fbc345e81a9d", + ".git/objects/f0/ba9fd4ae9158725ca55f8d2b9aff1e996dff87", + ".git/objects/f0/bf7601be7028da76edb26af5426ab713a1108e", + ".git/objects/f0/c3f80b7fe52e7b66cf9e0ad2d149a8f19e8916", + ".git/objects/f0/c8b8756a6b5b3e9c6c01609de5541a7ccda0c0", + ".git/objects/f0/e4020ba89e84f7ab90b063d9ab229d06d8aaf8", + ".git/objects/f0/f1ca6ba313190d825fae061f6fedc483cf38e3", + ".git/objects/f0/f52828be1b0d783e3af8d2af67d5f3377f5cd8", + ".git/objects/f0/f9fbc56b7d5a7a750ad85d099dc15046faaf33", + ".git/objects/f1/0940afe17b0fbf6033a8397ab9e090713d20f4", + ".git/objects/f1/0a169581c987e759f906550c7d4c4aff3abc0c", + ".git/objects/f1/13506a057a779cace4fcaace2c2d5070785d56", + ".git/objects/f1/2b8c6e5f1cdcb5d3aa04dea59ae8277d11936a", + ".git/objects/f1/3e23f6a1ebab0aa1a4dc10311e3d3cf1443e67", + ".git/objects/f1/4ff2c672ce39db370cc0ee53ad7ed600701fb6", + ".git/objects/f1/5a5c86eb194f44441c0b095a7728bf23a7d3b3", + ".git/objects/f1/619f342ca0e845272dc875c7473a889e7f658e", + ".git/objects/f1/6440eb4586072d1d58ad985c28af3b58338fd7", + ".git/objects/f1/6cff43fd0fe2cbca3070933d951fa477768b2e", + ".git/objects/f1/7e2e25cd136d2c66d9704e1aa3e3007d68df2f", + ".git/objects/f1/7ef99592b49d2ca8b17f6b64caf44a67be5b03", + ".git/objects/f1/852b00d41d0ca0b1c08625415833629088dbc9", + ".git/objects/f1/8895e99bc3605dfde2219d84317c2005a13aad", + ".git/objects/f1/8db2d9f1c1757b0dc4a7976a7eab0bf4fad240", + ".git/objects/f1/911d79965cd0078316d56500ec7553f8ee46da", + ".git/objects/f1/96dafd3060c83be67a800e10b6b898196efdcb", + ".git/objects/f1/98f456b47c6b8876875bf86fdae2a3c235fcec", + ".git/objects/f1/a094834f091ee76b167c4b24afeffa4eacb45e", + ".git/objects/f1/bdbebee5286c0cbe1c2bdd75ec0414b8829410", + ".git/objects/f1/ebfe3a60d30f1331d240ae4c8514cf749c4797", + ".git/objects/f2/08af9ada21c314c524021974b2214994011f00", + ".git/objects/f2/23593611f7c145e6f8ac65a2a916d77f2a1573", + ".git/objects/f2/243879b58527c982d8a76cbfc3baaf4a45a66d", + ".git/objects/f2/34e2f6c6b6f8d782f9d1766aa31e3e78e0944f", + ".git/objects/f2/40b32d9c75104a12e02704a35b86c8c4cd2a7c", + ".git/objects/f2/461aef5f2f39268bff89f27b2f607d8a7d52ee", + ".git/objects/f2/53816872931a1153c51d8b545e8a0ad25a806f", + ".git/objects/f2/54fe3e92d1e69da4df8dab4e3f435d76ccfb2c", + ".git/objects/f2/55864ee5046a77979556a3ac0e9fb24774693a", + ".git/objects/f2/55d80c3f7a4e6c9563aca5e4521794f94025c5", + ".git/objects/f2/5a273bfe3e59576ee7c767f114adc9c371a673", + ".git/objects/f2/62cc6c7abeb77b3f7b7b79a4564290d2fde559", + ".git/objects/f2/63430b4626e55e7ca26f585f6ae6a35363e114", + ".git/objects/f2/651f77e09878315986525b2120860bc9694516", + ".git/objects/f2/6558fac759564e359b6c0ce163041fc9428399", + ".git/objects/f2/6e7d3fe6b8fada1b16895727f5abaa6afa0013", + ".git/objects/f2/71276c15b867033a885b54abe41acbb20f3a97", + ".git/objects/f2/780a43ea22a922da809027d78f3883bfa3fd26", + ".git/objects/f2/7b90b99c9cdbc5cf2db1f6e0228421fedde073", + ".git/objects/f2/86a29db2da210b358831e16e4fe2284348a45c", + ".git/objects/f2/8f6b64964717de620d440a41a699237a562243", + ".git/objects/f2/90bac639936a8f0465ed713cf286486b8c1e10", + ".git/objects/f2/b3780605af58a2987646bc81329d381a35c780", + ".git/objects/f2/b3c618dd767549b14026ac4e5c2db022809f96", + ".git/objects/f2/b55e5d184033ecfb8e55e8a3fa5efed75d747b", + ".git/objects/f2/badde8a1297be112049d01d387f1bc125aa325", + ".git/objects/f2/ca97af56221b4443d778976a7e9f3d8044673c", + ".git/objects/f2/cc74608ac8d7da73d79ca8b093cc6eaf9ca719", + ".git/objects/f2/e3ba253eae7d022067fa7244cb0eed37d20194", + ".git/objects/f2/e7bd79b056ccee0400607cf78cc289bc330ce4", + ".git/objects/f2/ef55f59457ee52886e04cb6d9ee1a0c0541603", + ".git/objects/f2/fb77f7809806d3e4798f4d143c40c842a5c552", + ".git/objects/f3/085d130aabb2d3b4d20f6f7c59e82acce74561", + ".git/objects/f3/088fffb2e6201813c5b5b1ca9c780df4ec17fc", + ".git/objects/f3/0b9473850aee161af8524a8c2ebbe73b34d27f", + ".git/objects/f3/170192a2a0805682a891e6a093fbf1987cdd36", + ".git/objects/f3/188a0428d673a3d483649078b9ab5c3ccc45a8", + ".git/objects/f3/1c89109e1f96ffe8753b8d3c1f2321ce8cead8", + ".git/objects/f3/1e48c26079941a5b766ab3c63c199d8591fedb", + ".git/objects/f3/2809b5556234745bbd64345001a4cd0754674f", + ".git/objects/f3/2e87b16e61fb8aee72a69f9b3628470cf888bb", + ".git/objects/f3/32aab5c20f9c7c9a7eceed6b6b47f127200b9d", + ".git/objects/f3/34746feccdb22f4a8f1897fa00a64389f62865", + ".git/objects/f3/54d43f71b00cd3b513f58e40cb989bea0bb044", + ".git/objects/f3/583647443b34ea31760be0bcaa67cea5ee72c6", + ".git/objects/f3/6496a4541ea26312f23bd0e7d4ef57cfe2051d", + ".git/objects/f3/65eb1cf05541408d61974cb8d2deb8f2e746f4", + ".git/objects/f3/66f27f6c7f765315f51a04e08fb66093779a09", + ".git/objects/f3/6b709f4772877f0d40c6710f3866ecc0b2a541", + ".git/objects/f3/6da20149fa6bd1b6342930496317487ac48a7c", + ".git/objects/f3/74fb292610818533dbf67d08a63227242cd765", + ".git/objects/f3/78a28db04584423d18a3782a152e8aa5e31266", + ".git/objects/f3/857bd6d2b7c02246e705c50ef71bccfb34c464", + ".git/objects/f3/a5f4253d30fbd82457936b3d0d95e79516196c", + ".git/objects/f3/a5fe25b2b8d738b07a9f695724923a16457d50", + ".git/objects/f3/aee953ed4498e7ea9a2505b8ad7ec6b062bcbc", + ".git/objects/f3/b238fa49711785809b4d5c04ae4602c61b415e", + ".git/objects/f3/b6fd9b7036da8a42a11f7579e4fe3ec90ebb45", + ".git/objects/f3/b73e08c204482864acedf3bcde878d3ba00dd5", + ".git/objects/f3/c50f8ccdd7f5b9540b69f742dd343a9eef47eb", + ".git/objects/f3/cca35c462a617d1fc811d0a252c929a1fb4ad0", + ".git/objects/f3/e758bb3aa9ffca8522123e88d00600f7fd4b19", + ".git/objects/f3/fdd8fbbb632c2fb860b4a6e213cd564ce0e795", + ".git/objects/f4/19ada40341ae32943c5754ca23d4d5f05fdc1b", + ".git/objects/f4/230c51242b85a6a710a753d8978d9c904ad6c0", + ".git/objects/f4/24794c839938865aead6315359748cd8dff19a", + ".git/objects/f4/24c7a2ce3958f8dca12646b43549d99e3dbb7e", + ".git/objects/f4/291929b41519d7c232ccfbc044e73a8d02e004", + ".git/objects/f4/2b0b4be90df197693145efd1b64e6fe7c243c0", + ".git/objects/f4/2e442edd7db72f7661bbc7b961cea9003a0774", + ".git/objects/f4/381d947fc87e8d68780b4ca88c7ef817ba9f04", + ".git/objects/f4/3f14f29a8ed1bf85e4321180a61fd83dffce53", + ".git/objects/f4/57ccfbf8e56cec9918a55ab00fbc252072027f", + ".git/objects/f4/6fd5c8999d49e1c7ea818ecfbf88e24852e242", + ".git/objects/f4/81a13e167c0e5e7fe57ec98dd40e8dc1c3ba0b", + ".git/objects/f4/98f37029b6b8882a7560333df84af3f8753bf0", + ".git/objects/f4/a9f5e044fba9e0bd8c8953dd59dd206eefc125", + ".git/objects/f4/ae335f47c20f8ebb83f879784a22eedd9aafe4", + ".git/objects/f4/b1730d633450ac0f58324a21d62db8916ecf20", + ".git/objects/f4/b479800d303023d20ce5364b58d92087572d63", + ".git/objects/f4/b784dc2ee9654c0ad97e0eaa9fad82aa49ac66", + ".git/objects/f4/bdbb7f6a264dc6738d07195165e452449c9b7b", + ".git/objects/f4/c8d51ea022c55bc5f8ef7f03ebe9228a1d114f", + ".git/objects/f4/dcb3a1f392f1c9876984afd88dd459cae42dd9", + ".git/objects/f4/e12e66fc1218314e6c4a1feedeb997497cbcc7", + ".git/objects/f5/12b7e0aa4809a842a19c125354809d560a90bc", + ".git/objects/f5/281bd6bf946e36eb13bd5abde2a901b98c2884", + ".git/objects/f5/2a97424b9e40e183ca0b6fef392fa572811edb", + ".git/objects/f5/2f806100b4946646ca720855efaee7bcbf496a", + ".git/objects/f5/32e549a82ac88b94d54a882a8f4f3c1531e77c", + ".git/objects/f5/413ea8a7a4a38075666640268fb5bf166c9e1a", + ".git/objects/f5/425038677d93362cf7666e3268006d19c2598d", + ".git/objects/f5/4366aaef4b6d36e267c128a6f46eee22b27037", + ".git/objects/f5/48fab5ae52db4c87716cf64ed8bd2871088c24", + ".git/objects/f5/4a21d0205fc29d37b56829a8aa5035d516657f", + ".git/objects/f5/53299e3fecbb967383339e70921cdb29c41404", + ".git/objects/f5/5f335451f3961dc59d9cfeb4af6f5269776175", + ".git/objects/f5/61c798539ac7e67fcd335dd9605203397ce595", + ".git/objects/f5/9adb81ed04e0163b050b96ed48361215006dcc", + ".git/objects/f5/a345eaf6e28d78009fb77eb10e871c6379f8f7", + ".git/objects/f5/b13e92766ae1f4933f07387012b1b8724b5e0b", + ".git/objects/f5/b23c998fbd6bad02ce1db3256417004c07c2d3", + ".git/objects/f5/bbebfa3da5416dbcde7902fc98791ecfce0ff1", + ".git/objects/f5/bd0b5c9d00e3c35fb8a268ce1cae70cd0fcc4c", + ".git/objects/f5/bf0bbd9c427b87a3c2e0f3cbf8880bb2cbba22", + ".git/objects/f5/ca7ef7bea5460353f506da4b87a1e74bd37dfd", + ".git/objects/f5/ca948213273ad9d88c9e22022d735ccd78e554", + ".git/objects/f5/dcf13a50e40411c6eaa5ed58153bbca0e1aef4", + ".git/objects/f5/e6554106903a5196e1c16ee365855ee8dcb9ca", + ".git/objects/f6/11fc02443f61d3fc9712cacad9328203caf8dc", + ".git/objects/f6/133b6444426f4f4c27e93ae22fcc2aae4dbbb1", + ".git/objects/f6/1a00ae7d1a825bb175d3f4fa0b37256f509145", + ".git/objects/f6/1f602854771fe3c26fbd45cf6a35a096e41b1e", + ".git/objects/f6/265b721eb4f24daf541abbfd8626657ccd8579", + ".git/objects/f6/278178ee445d24d8d0e74ad04ec9c1703079b8", + ".git/objects/f6/3081c439228e3f0325189e8cfb74e383e83848", + ".git/objects/f6/3df7a0b747df78b10fca41ef0c0e4b59591f20", + ".git/objects/f6/454aeb1f9f19d4cbf461d5fac297a86a9a16a4", + ".git/objects/f6/479cd6090bfa96a229364ff8000d36d864f239", + ".git/objects/f6/4871b3ff8887858be33d1a2e9b6c8d10715f0a", + ".git/objects/f6/5375de56ec57d307bc3dfe585d9f3b26c641ce", + ".git/objects/f6/574e56a0e92a5d23ebadae39450a9e8e8b5599", + ".git/objects/f6/75d97921d9a9aeab14a8288f672c4c95eec9eb", + ".git/objects/f6/983b849421ac65b4e5b4bccca9eb0aaa1667bc", + ".git/objects/f6/a54afdf7bcb5f55417196e94e8a8fd47eb46c9", + ".git/objects/f6/b5edac2d060332e2c375ab3eeb39de77566981", + ".git/objects/f6/c8b01143a36e62cc5b069dadb4014d6c45c788", + ".git/objects/f6/c8fcc3daf663acb810bacd0029e2a2df7d7135", + ".git/objects/f6/dc37988346e4b36479105cc1a20f75488f187c", + ".git/objects/f6/df06920b3dd283cfa11da5146d8fd4e65de3bc", + ".git/objects/f6/dfa833a87015eceb6e47e22b92b023c371df92", + ".git/objects/f6/e253d2421e6f726f143f9dc6d8a35434f6b13d", + ".git/objects/f6/ef30cd3faaa8b075a8f354a51d3093291e1451", + ".git/objects/f7/07e24f51c55ee9d71853df399a5a1dc410615b", + ".git/objects/f7/24af1ce24e66caf31ced56b340e756b164f31b", + ".git/objects/f7/31bcc1395792bf57baa29ee7bc5359380151ad", + ".git/objects/f7/34bc4a816a7d698f9ae55387794024ae7ee5da", + ".git/objects/f7/3e4bbbb6b1644fd609fc39c738d1b9eda9032d", + ".git/objects/f7/400330d41eb58c2a8689e4217640d23a209d57", + ".git/objects/f7/4143e1f9c57d769ab0e26a5c3abb3666ee0eca", + ".git/objects/f7/438ea045f759c44970460eca0b916d05b83c17", + ".git/objects/f7/5040b01c41763d0879d1e32f78a358dd0a85fb", + ".git/objects/f7/5e58bc7fe4a911c8c8f8f2ff3b5128ff1ba687", + ".git/objects/f7/6024489dbd64b86eac0df01d3c846f723de266", + ".git/objects/f7/6d6ea8ab922579720e8ed1d48cc7b15da88c60", + ".git/objects/f7/6e3a68fa79b4827e4a109e4c745bb226d7c9de", + ".git/objects/f7/7179e44419db49c9f88ea0c17c9f666001cdd9", + ".git/objects/f7/74a78f2918b03f0714337c970af57c31955938", + ".git/objects/f7/77035451445d5271a7104bc0ce13099a834d8e", + ".git/objects/f7/821810068155049cd157defe8cd6a102527a39", + ".git/objects/f7/a424aff96feb256b9c0cbfee68dae598f50f85", + ".git/objects/f7/a6ae01fb91c60ba1e8d05dedf211b235fa4220", + ".git/objects/f7/af4405c7ab42b118f795bb65203c6a40ec9e7f", + ".git/objects/f7/af881b2997c3c89fd700385e6fc5f9400d6130", + ".git/objects/f7/bf56d3d21e0f5f4f7bb41b75f3f1f2c6cfa0a2", + ".git/objects/f7/cca0059bfbf0705a955f80f74db9fa6544d4ec", + ".git/objects/f7/ce061248792941e5594811c2f9444049e1e264", + ".git/objects/f7/e22f29a5de44277dd155cadef71da43d9a2278", + ".git/objects/f7/e9bf6cc8500ac579d86755eba357fcaf90b514", + ".git/objects/f7/fce9e83b0ed14946f299b0b6b975a1e58c4bea", + ".git/objects/f8/09bbaf8fbaffe62e88dcee709fe7c96f1a3520", + ".git/objects/f8/16a119f17a90fd8b0372acf660e91be0120c8f", + ".git/objects/f8/1ca008bc0f6b75f97ff39398a1783d23f3cd96", + ".git/objects/f8/1eeda0020342469ed7b808d8502d40dc1358f1", + ".git/objects/f8/41caedf350ded04637878b8cb51498b94d7ed9", + ".git/objects/f8/611cb8685716da0ef7b035934716496c93adbf", + ".git/objects/f8/6260ec31a17034d0a8eee3e3da688ccd1533b7", + ".git/objects/f8/657449bdd150e3c17d011fc378c66652d3f299", + ".git/objects/f8/6577caf7e6d5ba59af90bba2fa7d641813bef8", + ".git/objects/f8/8101e8ef3d7707b1baa3bcc9b36467b11413bc", + ".git/objects/f8/b6259c0e8823708ad73020ba45109b1b4643e9", + ".git/objects/f8/c76e37492508abc98309cf83b0a7301f4dcc39", + ".git/objects/f8/d7d3ef65a1fba5bdee6dcfc7ec7ca05dd37dde", + ".git/objects/f8/d98fc855e4cefc65ba697c4a1e19437ab6a558", + ".git/objects/f8/e0b14c5a1e389b1dc4fe2367db658095058e88", + ".git/objects/f8/e9c7122f390d1c35c2d237259a9ebe90b3731e", + ".git/objects/f8/ec83d4bf515b9aeebe71d26694ecd911544990", + ".git/objects/f8/f1a1c81a9581c57653a6bc81b962dafb2317d1", + ".git/objects/f8/f50f27b565e80af02a1bf08ee84a6f04fd1720", + ".git/objects/f9/1ee401db59cc08580a957c8076b00a0973d7a9", + ".git/objects/f9/2b7ee4d40b32846126d3012e99667ff4f18206", + ".git/objects/f9/318877b4e786d0a0ffac7a4b10ef5138fde917", + ".git/objects/f9/36d350100b7ec3bbaec1e0fceeda6998f02adc", + ".git/objects/f9/3cccdebaef5c96901169735aa337f7377118c1", + ".git/objects/f9/4a6610a092fcc52e430cf1b89ca4f01c67ead7", + ".git/objects/f9/4cf6728fe1d624d3f1c7042d03afab606e2fe2", + ".git/objects/f9/50cfbd443437e0aa60a3e2082401574ad32f68", + ".git/objects/f9/5fece1a3dd27dac34babad5b486939792e6b7b", + ".git/objects/f9/63fe62a9d39d84d6571adcc8a5136eb5e5a7b9", + ".git/objects/f9/657fb6896848e633cb2ffa24e9a5c1b8a92a3b", + ".git/objects/f9/7153049c3c3b973c054a4dc303ba0a3db22043", + ".git/objects/f9/85675bda8da431514ca755d35c737244da15fb", + ".git/objects/f9/876c8a41915a2516a79070ee650ab530891051", + ".git/objects/f9/8d823cb5f9e4c75b2a1bee0e7a4a48ed42fc19", + ".git/objects/f9/9a5ddff0b108864b1b7ba924ce09fae561f527", + ".git/objects/f9/c03a51fe731476cfd39b528656b7f9d7648789", + ".git/objects/f9/c52ec64766bab5f1253363fe34067fb03af743", + ".git/objects/f9/cb98eab2e2e53c1ffb25e5dff646db81c7cb5a", + ".git/objects/f9/e5ca9afba215084c9f2880c3694acda93a8972", + ".git/objects/f9/f2ea8fde7f46e0c855d5dd133ec4e16ec965b5", + ".git/objects/f9/ff91990209a1223a9b140c363531eeacd7966b", + ".git/objects/fa/1d3a31df411fc016d82cf95ace668a7016df8e", + ".git/objects/fa/25c5c9246f8616354d01a8abf6702a6f5891d8", + ".git/objects/fa/35fd3841620b324f8e39072222de2b9f07de71", + ".git/objects/fa/38ea2d5352794889bc29ec08f37713058f661e", + ".git/objects/fa/3f3c44e0caab4953d324b2f863f4f04333cdef", + ".git/objects/fa/436e2e9fa3c664d79174bff67137844d428738", + ".git/objects/fa/5b8071b223c02bd2732f627f8a00089e8167e9", + ".git/objects/fa/71dd56369f0dde1f4f6382dc053b1806583fd8", + ".git/objects/fa/76f497e2e5881ef71c05073f52f4d414525b60", + ".git/objects/fa/8ab34221bcfdf6bc032e9e48c1e9102f355226", + ".git/objects/fa/8dfd6c378e69c5367e51a5483beec0ea50ebdd", + ".git/objects/fa/968bf8d9963abb8dce1a71e5963b75a76da69a", + ".git/objects/fa/972552abc365b52941f280bed8bfeb2fbd38b0", + ".git/objects/fa/9b90b0e8e4f9a604920c7809bbd133eef83a64", + ".git/objects/fa/ac32a7a9ce7f38546e81bb8e1d53209b48dd4f", + ".git/objects/fa/bedc149314761e9a9b59c6f0aa04ad42809362", + ".git/objects/fa/c1415cbf7aa01bd668155f4ec699c6cb75b749", + ".git/objects/fa/c268cc3a535b7e7488ad410df6d5c7bfaf9cde", + ".git/objects/fa/c7497a0e70a38ffed1772a544615b42571aa0d", + ".git/objects/fa/cda986c2d9a3d203722e8cc8dff745c6f110b1", + ".git/objects/fa/d7638d0cf808c7987ccec3b17e658655d0c404", + ".git/objects/fa/f068dbbdfd2dbed7d94a89fe8fe15b73b7f1c1", + ".git/objects/fb/02446950cc18b6fb7585429f69041a285c5640", + ".git/objects/fb/0c5faee30f0e170c54327b6e901cbfbc8e3b15", + ".git/objects/fb/3dc3c64d3cea9c7249c3d8e1ed010ea81e6979", + ".git/objects/fb/41b8fbfad932d826af929d8c4a674a205775d5", + ".git/objects/fb/49c631596c5615a963c3dcbadcc1cdd4ac70e6", + ".git/objects/fb/526e44ac3558de0e977c1022f95d9ffc59cfbd", + ".git/objects/fb/8a7ec48e6a0bf738b5859ae3d94a97aef1f32d", + ".git/objects/fb/8e1cc615eedbbba8075a5c592e0a64f6ac3a5f", + ".git/objects/fb/8e2949b07458b38861975b371e849014b07b94", + ".git/objects/fb/9887c39ec29609c0389d046f0448f308a4825f", + ".git/objects/fb/ba25d3ddc11794c48f26fb17d38f13fe9575f0", + ".git/objects/fb/c9530078667c6c4f073a5759bd2593871cb2fa", + ".git/objects/fb/ecd26dc450e459641032d8c1e5cdfd3c770aa5", + ".git/objects/fb/fbc18a68b7a7002be255b34e1ba787039208b8", + ".git/objects/fc/0bc390177a08b11fb67a12bab44b36865a6c2d", + ".git/objects/fc/1a8ce86a98642cc913f2483c7827ffa90e9dc6", + ".git/objects/fc/1c3cdbb931813f774312f538c52f9e36833fde", + ".git/objects/fc/241fa037e862d1a755a59c6551f5490216f702", + ".git/objects/fc/27f34bea943d5331dff2e0cd54ee0d6fdd8ae8", + ".git/objects/fc/2fe90392e989da796358dbe68a5b73764b2d6f", + ".git/objects/fc/4ac7cccec440e41d493839613b5069a0b294b9", + ".git/objects/fc/4f8b704a28ff021373bd9c628dbf29e33a1e79", + ".git/objects/fc/51779e83fe71073658b92ff531321941b45fa2", + ".git/objects/fc/51c13233c49528e914a75e1493164678a7d5ca", + ".git/objects/fc/610dc44fc32b3f10afb2f9549dcd802fc732c3", + ".git/objects/fc/66d6378df04bde130981764f41236dccb396be", + ".git/objects/fc/68a3d1249dfdccc84e94bcdecaa56a1d80f063", + ".git/objects/fc/78023eaefef2fad2e561e321b1d45cfba495c0", + ".git/objects/fc/7f3c9132d43cb57b190a24e22a6c41a00371e8", + ".git/objects/fc/848d149bc807aaf1184c7190ecf846871a5805", + ".git/objects/fc/84dae93df2b81ba1e713fd6af05d2c6355c514", + ".git/objects/fc/87fae6d8e1e4f50ba87268f2b0498b3c02d838", + ".git/objects/fc/9d33dae80017d5eb3a74405cd957aa633795d8", + ".git/objects/fc/acf0e54db754aff225b6a52e4aee19150c11e5", + ".git/objects/fc/b831ac91bcf240ac5ac85c28ac15ee7aa6398c", + ".git/objects/fc/c19786ed93e8cd30cff521f805b79441e7b819", + ".git/objects/fc/dd4b09c34f04454aaf0f3cfa62d7efd1074698", + ".git/objects/fc/fec077127e7a10a088d5ba8e7b31ec4d2449bb", + ".git/objects/fd/032390bc412389e375a9f5f0474c8676523ea4", + ".git/objects/fd/0c141b8c603340acf62b382479ab9a005f8893", + ".git/objects/fd/0e4f03d83769daca9c7b3252ffcb14bce29960", + ".git/objects/fd/1c345eb7e2693f4fff7d3416f319f76c462643", + ".git/objects/fd/20f808b61bc679f2194600fb5426c61372656e", + ".git/objects/fd/28fc25415757184e5f9cd1a4d1a4af2ee1ff4d", + ".git/objects/fd/35b7aaf0776a2672f860e6dfad121663065fc1", + ".git/objects/fd/52cb8cd1623c815ef2f4062fedb0dc0b3d4b1a", + ".git/objects/fd/580f390e0aec47dda1692ee8733f80478085f8", + ".git/objects/fd/5fa763724715291b5170e649c861ce67cb1e2c", + ".git/objects/fd/7280da9b9599b88344a218a71498be79991415", + ".git/objects/fd/8a6c1e1060057c03f27374b19dfb572a3933f4", + ".git/objects/fd/8ebdbcb5b0c2777039d7b9992ded161305187a", + ".git/objects/fd/a18f95e3ac8e34555a6b004c1ea5f73eff27eb", + ".git/objects/fd/ad36cb9a5b9de3090bb582b82767c0a53c4a7b", + ".git/objects/fd/d36be68d21df4634ff68ad516b125200f88ee2", + ".git/objects/fd/d990c95adf75fb6224889f3407985661c87660", + ".git/objects/fd/e7610226b0654b2383c7f5038661a29a498396", + ".git/objects/fd/f9d05403065ad3a8b4d69ed2bba8302bc11b7a", + ".git/objects/fe/1ae1a8415cfd5318b8db4d4f853a5ce2e4b499", + ".git/objects/fe/23e76bb95d2ebc7fd03d472d4bfb817dd7d26f", + ".git/objects/fe/2b0a303d99334228df7a2dc4b6e81cf966695c", + ".git/objects/fe/31d065d03c702d71aff3133285a59b2bda64ff", + ".git/objects/fe/32fd21d8131ad599127efd5a182701144c274d", + ".git/objects/fe/334dad0f6da681ff0a7ba95bf9f574a5e41fd3", + ".git/objects/fe/39218baf826ca38ad89070b8f4f759feddf35e", + ".git/objects/fe/414da20e3de08ba232e365d5b51c2e24a54c51", + ".git/objects/fe/4796fe84828b9f80e4dd959b74d29aa6c462c5", + ".git/objects/fe/53d87aa9258c34ee226a42a150f3d484886f27", + ".git/objects/fe/65a1ff388380f360134da0b1591467f05a1356", + ".git/objects/fe/722373646b711c63c3bf4a00e9fb9ebe48acd7", + ".git/objects/fe/743e5d085665fc91bbac07366fa32c717f5666", + ".git/objects/fe/7943aa0f936495b68590009abd855fb1348ac2", + ".git/objects/fe/82ef9801df372430dce0ee6cba300dbc643347", + ".git/objects/fe/83747d0eb5f939fc19ab83eb6b8b2e89cc7e6c", + ".git/objects/fe/9098d36ea166e6e2e4b518a987b245ef6909ed", + ".git/objects/fe/9b454c376756df899a9cd00d63a39e8c30bd04", + ".git/objects/fe/9cd535db21bee9ce81e370da9aee57b4839aa2", + ".git/objects/fe/b2f918ece9e0aebd5d8563550de9e076dea4cf", + ".git/objects/fe/bc786ca0353fc1b6f9bce2fa5a89138942459d", + ".git/objects/fe/c1608dd4a8ce9bb63513a509811161d62efb22", + ".git/objects/fe/c1a1fba61a6c6db34a0eba5640064e7ade2c5b", + ".git/objects/fe/ca8877efea10526952ccc5e22eca8aee27871a", + ".git/objects/fe/e3abb71c518e6853406014b39cb4f2b89d9fe1", + ".git/objects/fe/e5a255cecef5ea8e9463a8d65c083d015f323a", + ".git/objects/fe/fead0a0d54dedea1a075b7a3b546c346d9fde5", + ".git/objects/ff/02fec7a80117f867562f521fce1bd9fb737ef6", + ".git/objects/ff/0f2b74e71478957541aeb526d82be4823f1fe6", + ".git/objects/ff/1453e82ac69fda0b699c8073bad2a2a7a5bd52", + ".git/objects/ff/19b09d373ce4ed2a0922398e1c2b18aaa26a70", + ".git/objects/ff/1aa1d816be16aea48df39aae28a149fb3c8a1a", + ".git/objects/ff/2a30c1f9062ad84bd9c2d5f4a3850edc8de61b", + ".git/objects/ff/3996673e9a8f78f0e1d300e6747da8152d19a9", + ".git/objects/ff/3d9e3b658670ba9f54e77d265134ef93fe6c33", + ".git/objects/ff/3f61925bf5d297fb45cd82bc738a1f305c1aba", + ".git/objects/ff/413223392b80592e96386f033c430024bf854e", + ".git/objects/ff/4760863ee4a1bc5aa074bea0f95ffff2f2a7ca", + ".git/objects/ff/47987a671a67c561db5c21d46fc36262b799be", + ".git/objects/ff/49a0363fef32213188433658c1b67adc0708ae", + ".git/objects/ff/4c5f38bac9a58817fe4a699964ea103330a3ea", + ".git/objects/ff/7dcd9a454bee035b13f96c7b6a0909b0a2a78a", + ".git/objects/ff/9505c4541722732a25a1fa2bc82e77a31fd7e3", + ".git/objects/ff/a6119cdc1711b4c36cd177ec853192b5dbb7d1", + ".git/objects/ff/ab9f5bfcc155c33c3f288fd08939db9e649232", + ".git/objects/ff/b434154afa80b457a51c0c4a38f01a220a1182", + ".git/objects/ff/cc06256e31ecc37b58a2e0fb0ac9e7ae34eee6", + ".git/objects/ff/e23d5a14cb0949bf4aea8f879ac1eff0a1882a", + ".git/objects/ff/e34bb065c9965aea99907327c37edc4756fefa", + ".git/objects/ff/e5689b1ecb6bcdd065bf10f8159370fe99e1c1", + ".git/objects/ff/eb8bb604d6888efd98e0304a35527f47c648ca", + ".git/refs/heads/docs/github-public-data-plane-policy", + ".git/refs/heads/main", + ".git/refs/remotes/origin/docs/github-public-data-plane-policy", + ".git/refs/remotes/origin/main" + ], + "source_root": "/home/sev/ION - Production/ION_CODEX", + "total_bytes": 66707236, + "version_line": "V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_GATE" +} diff --git a/ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json b/ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json new file mode 100644 index 00000000..b4cfa4d7 --- /dev/null +++ b/ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json @@ -0,0 +1,76 @@ +{ + "accepted": true, + "added_files": 2, + "added_paths": [ + "ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip" + ], + "allowed_removal_parts": [ + "__pycache__", + ".pytest_cache", + ".mypy_cache", + ".ruff_cache" + ], + "allowed_removal_prefixes": [ + "_tmp", + "tmp", + "scratch", + "ION/05_context/current/_tmp", + "ION/05_context/current/tmp", + "ION/05_context/current/scratch" + ], + "allowed_removed_files": 0, + "allowed_removed_paths": [], + "baseline_manifest_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "contained_removed_files": 0, + "contained_removed_paths": [], + "containment_move_prefixes": [ + "ION/05_context/archive/containment/", + "ION/05_context/quarantine/", + "ION/05_context/current/containment/", + "ION/06_artifacts/containment/" + ], + "containment_moves": [], + "files_after": 5583, + "files_before": 5581, + "findings": [ + "added_files_recorded", + "no_silent_loss_gate_passed" + ], + "generated_at": "2026-05-05T04:40:14+00:00", + "modified_files": 0, + "modified_paths": [], + "new_full_zip": "/home/sev/ION - Production/ION_CODEX/ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip", + "packaging_verdict": "PASS", + "policy_version": "V118_NO_SILENT_LOSS_CONTAINMENT_POLICY", + "post_manifest_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json", + "previous_full_zip": null, + "production_authority": false, + "protected_paths": [ + "AGENTS.md", + "START_HERE_FOR_ANY_AGENT.md", + "pyproject.toml", + "ION/REPO_AUTHORITY.md", + "ION/00_BOOTSTRAP/", + "ION/01_doctrine/", + "ION/02_architecture/", + "ION/03_registry/", + "ION/04_packages/kernel/", + "ION/05_context/current/", + "ION/07_templates/", + "ION/08_ui/", + "ION/09_integrations/", + "ION/tests/" + ], + "protected_removed_files": 0, + "protected_removed_paths": [], + "removed_files": 0, + "report_id": "trunk-preservation-report-1afa63771f63cc26", + "root_confirmed_after": true, + "root_confirmed_before": true, + "schema_id": "ion.trunk_preservation_report.v1", + "source_root": "/home/sev/ION - Production/ION_CODEX", + "unexpected_removed_files": 0, + "unexpected_removed_paths": [], + "version_line": "V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_GATE" +} diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json index 708efea7..b7d968e6 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json @@ -1,6 +1,12 @@ { "created_at": "2026-05-04T22:21:32+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "superseded", + "reason": "Sev re-entry/onboarding behavior is now represented in the ChatOps extension and bridge surfaces; this stale request must not be the next runner item.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json" + }, "live_execution_authority": false, "objective": "Create a short Sev browser-carrier re-entry checklist using existing ION owners. Goal: when a new ChatGPT Browser chat connects to ION MCP and is told callsign Sev, it can restore continuity by calling ion_status, ion_tool_manifest, ion_carrier_onboarding_packet, ion_context_compile, ion_daemon_status, ion_swarm_status, ion_agent_queue, ion_codex_work_queue, and recent receipt/message tools. Reuse existing carrier profile, onboarding, context, template, cockpit, and receipt owners. Do not create a parallel identity system. Return with CONTEXT PROOF, TEMPLATE ACTION PROOF, touched_paths, validation, and next moves.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json", @@ -9,6 +15,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-04T22:21:32+00:00" + "status": "SUPERSEDED_BY_CHATOPS_REENTRY_BRIDGE_WORK", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json index 5b6d25ee..daefdadd 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json @@ -1,6 +1,12 @@ { "created_at": "2026-05-05T01:50:47+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "superseded", + "reason": "Current branch contains the ChatOps hardening, sandbox return, and topbar continuation work; this broad request should not run as a stale duplicate.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json" + }, "live_execution_authority": false, "objective": "Continue the ION ChatOps Browser Carrier Runtime work from the latest browser conversation.\nInspect the repo, use existing ION gates, run focused validation, and return CONTEXT PROOF,\nTEMPLATE ACTION PROOF, VALIDATION, and RESULT.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json", @@ -9,6 +15,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T01:50:47+00:00" + "status": "SUPERSEDED_BY_CHATOPS_BRANCH_WORK_PENDING_TASK_RETURN", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json index ff2a30c1..c60c4309 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json @@ -1,6 +1,12 @@ { "created_at": "2026-05-05T02:09:28+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "invalid_placeholder_archive_only", + "reason": "Created from placeholder/template YAML residue rather than a concrete bounded objective.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json" + }, "live_execution_authority": false, "objective": "State the exact bounded work for local Codex/ION to perform.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", @@ -9,6 +15,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:09:28+00:00" + "status": "INVALID_PLACEHOLDER_ACTION_ARCHIVE_ONLY", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json index d2f8b943..b18a5012 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json @@ -1,6 +1,12 @@ { "created_at": "2026-05-05T02:11:06+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "invalid_placeholder_archive_only", + "reason": "Created from placeholder/template YAML residue rather than a concrete bounded objective.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json" + }, "live_execution_authority": false, "objective": "State the exact bounded work for local Codex/ION to perform.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", @@ -9,6 +15,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:11:06+00:00" + "status": "INVALID_PLACEHOLDER_ACTION_ARCHIVE_ONLY", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json index da68676b..c0ab411e 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json @@ -1,6 +1,13 @@ { "created_at": "2026-05-05T02:22:53+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "superseded_duplicate", + "reason": "Duplicate ChatOps hardening packet superseded by a later request and by current branch work.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json", + "superseded_by_request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json" + }, "live_execution_authority": false, "objective": "Verify and harden the live ION ChatOps Browser Carrier Runtime after successful extension smoke and corrected re-entry injection. Inspect the latest ChatOps smoke receipt, extension parser/schema, daemon bridge, Sev re-entry context generation, and flat MVP action shape. Confirm that ion_action_example is ignored, placeholder action IDs/objectives are rejected, user/onboarding blocks are ignored, and concrete assistant-emitted ion_action blocks produce approval candidates. Document the confirmed flow: Sev emits YAML, extension validates, Braden approves, daemon records or executes, ION writes receipt. Add or update focused tests for re-entry injection, flat create_codex_work_packet parsing, write_file_draft smoke parsing, placeholder rejection, user/onboarding ignore behavior, and receipt generation. Do not create a parallel authority system. Do not use MCP as the execution path for this task. Return CONTEXT PROOF, TEMPLATE ACTION PROOF with parseable result and touched_paths, VALIDATION, and RESULT.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", @@ -9,6 +16,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:22:53+00:00" + "status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json index 37b63bda..d0e6a717 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json @@ -1,6 +1,13 @@ { "created_at": "2026-05-05T02:26:51+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "superseded_duplicate", + "reason": "Duplicate ChatOps hardening packet superseded by a later request and by current branch work.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json", + "superseded_by_request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json" + }, "live_execution_authority": false, "objective": "Verify and harden the live ION ChatOps Browser Carrier Runtime after successful extension smoke and corrected re-entry injection. Inspect the latest ChatOps smoke receipt, extension parser/schema, daemon bridge, Sev re-entry context generation, and flat MVP action shape. Confirm that ion_action_example is ignored, placeholder action IDs/objectives are rejected, user/onboarding blocks are ignored, and concrete assistant-emitted ion_action blocks produce approval candidates. Document the confirmed flow: Sev emits YAML, extension validates, Braden approves, daemon records or executes, ION writes receipt. Add or update focused tests for re-entry injection, flat create_codex_work_packet parsing, write_file_draft smoke parsing, placeholder rejection, user/onboarding ignore behavior, and receipt generation. Do not create a parallel authority system. Do not use MCP as the execution path for this task. Return CONTEXT PROOF, TEMPLATE ACTION PROOF with parseable result and touched_paths, VALIDATION, and RESULT.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", @@ -9,6 +16,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:26:51+00:00" + "status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json index 0723147f..bac16a74 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json @@ -1,6 +1,13 @@ { "created_at": "2026-05-05T02:27:34+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "superseded_duplicate", + "reason": "Duplicate ChatOps hardening packet superseded by a later request and by current branch work.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json", + "superseded_by_request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json" + }, "live_execution_authority": false, "objective": "Verify and harden the live ION ChatOps Browser Carrier Runtime after successful extension smoke and corrected re-entry injection. Inspect the latest ChatOps smoke receipt, extension parser/schema, daemon bridge, Sev re-entry context generation, and flat MVP action shape. Confirm that ion_action_example is ignored, placeholder action IDs/objectives are rejected, user/onboarding blocks are ignored, and concrete assistant-emitted ion_action blocks produce approval candidates. Document the confirmed flow: Sev emits YAML, extension validates, Braden approves, daemon records or executes, ION writes receipt. Add or update focused tests for re-entry injection, flat create_codex_work_packet parsing, write_file_draft smoke parsing, placeholder rejection, user/onboarding ignore behavior, and receipt generation. Do not create a parallel authority system. Do not use MCP as the execution path for this task. Return CONTEXT PROOF, TEMPLATE ACTION PROOF with parseable result and touched_paths, VALIDATION, and RESULT.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", @@ -9,6 +16,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:27:34+00:00" + "status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json index 7494e5b7..5dfa6b2c 100644 --- a/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json +++ b/ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json @@ -1,6 +1,12 @@ { "created_at": "2026-05-05T02:29:44+00:00", "latest_return_packet_path": null, + "lifecycle_disposition": { + "classified_at": "2026-05-05T14:58:21Z", + "classification": "fulfilled_by_current_branch_pending_task_return", + "reason": "Current branch contains the requested parser/schema, daemon bridge, re-entry, flat action parsing, receipt generation, topbar, and validation work; a formal task-return can still be recorded separately.", + "receipt_path": "ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json" + }, "live_execution_authority": false, "objective": "Verify and harden the live ION ChatOps Browser Carrier Runtime after successful extension smoke and re-entry injection. Inspect the latest ChatOps smoke receipt, extension parser/schema, daemon bridge, Sev re-entry context generation, and supported flat MVP action shape. Document the confirmed flow: Sev emits YAML, extension validates, Braden approves, daemon records or executes, ION writes receipt. Add or update focused tests for re-entry injection, flat create_codex_work_packet action parsing, write_file_draft smoke parsing, and receipt generation. Do not create a parallel authority system. Do not use MCP as the execution path for this task. Return CONTEXT PROOF, TEMPLATE ACTION PROOF with parseable result and touched_paths, VALIDATION, and RESULT.", "packet_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", @@ -9,6 +15,6 @@ "requested_by": "chatgpt_browser_connector", "return_packet_paths": [], "schema_id": "ion.chatgpt_browser_connector_codex_work_request.v1", - "status": "QUEUED_FOR_CODEX_CARRIER", - "updated_at": "2026-05-05T02:29:44+00:00" + "status": "FULFILLED_BY_LOCAL_BRANCH_WORK_PENDING_TASK_RETURN", + "updated_at": "2026-05-05T14:58:21Z" } diff --git a/ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json b/ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json new file mode 100644 index 00000000..c0d9064b --- /dev/null +++ b/ION/05_context/current/chatgpt_connector/queue_hygiene/2026-05-05T145821Z_chatops_public_landing_queue_hygiene.json @@ -0,0 +1,87 @@ +{ + "schema_id": "ion.codex_work_queue_hygiene_receipt.v1", + "created_at": "2026-05-05T14:58:21Z", + "receipt_id": "queue_hygiene_2026-05-05T145821Z_chatops_public_landing", + "operator_confirmation": { + "chatops_extension_topbar_placement_live_verified": true, + "confirmed_by": "Braden" + }, + "purpose": "Remove stale or duplicate ChatGPT Browser/Codex work requests from runner-active status before any clean browser-to-ChatOps-to-Codex smoke.", + "authority": { + "production_authority": false, + "live_execution_authority": false, + "git_push_authority": false, + "deletion_authority": false + }, + "policy": { + "no_silent_loss": true, + "files_deleted": [], + "request_packets_preserved_in_place": true, + "active_runner_status_removed_only_by_status_transition": true + }, + "owner_surfaces": [ + "ION/05_context/current/ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json", + "ION/05_context/current/chatgpt_connector/codex_work_requests/", + "ION/04_packages/kernel/ion_codex_queue_runner.py", + "ION/04_packages/kernel/ion_chatgpt_browser_mcp_connector_contract.py" + ], + "dispositions": [ + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-04T222132Z0000_create_a_short_sev_browser_carrier_re_entry_checklist_using_existing_ion_owners_.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "SUPERSEDED_BY_CHATOPS_REENTRY_BRIDGE_WORK", + "reason": "Sev re-entry/onboarding behavior is now represented in the ChatOps extension and bridge surfaces; this stale request must not be the next runner item." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T015047Z0000_continue_the_ion_chatops_browser_carrier_runtime_work_from_the_latest_browser_co.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "SUPERSEDED_BY_CHATOPS_BRANCH_WORK_PENDING_TASK_RETURN", + "reason": "The current branch already contains the ChatOps hardening, sandbox return, and topbar continuation work; this broad request should not run as a stale duplicate." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T020928Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "INVALID_PLACEHOLDER_ACTION_ARCHIVE_ONLY", + "reason": "Created from placeholder/template YAML residue rather than a concrete bounded objective." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T021106Z0000_state_the_exact_bounded_work_for_local_codex_ion_to_perform.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "INVALID_PLACEHOLDER_ACTION_ARCHIVE_ONLY", + "reason": "Created from placeholder/template YAML residue rather than a concrete bounded objective." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022253Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "superseded_by_request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "reason": "Duplicate ChatOps hardening packet superseded by a later request and by current branch work." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022651Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "superseded_by_request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "reason": "Duplicate ChatOps hardening packet superseded by a later request and by current branch work." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022734Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "SUPERSEDED_BY_LATER_CHATOPS_HARDENING_REQUEST", + "superseded_by_request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "reason": "Duplicate ChatOps hardening packet superseded by a later request and by current branch work." + }, + { + "request_path": "ION/05_context/current/chatgpt_connector/codex_work_requests/2026-05-05T022944Z0000_verify_and_harden_the_live_ion_chatops_browser_carrier_runtime_after_successful_.json", + "previous_status": "QUEUED_FOR_CODEX_CARRIER", + "new_status": "FULFILLED_BY_LOCAL_BRANCH_WORK_PENDING_TASK_RETURN", + "reason": "Current branch contains the requested parser/schema, daemon bridge, re-entry, flat action parsing, receipt generation, topbar, and validation work; a formal task-return can still be recorded separately." + } + ], + "validation_after_transition_required": [ + "regenerate ACTIVE_CHATGPT_CONNECTOR_CODEX_WORK_QUEUE.json", + "run kernel.ion_codex_queue_runner and verify queued_request_count is 0", + "run kernel.ion_status", + "run focused and full tests" + ] +} diff --git a/ION/05_context/current/chatops_bridge/receipts/chatops_bridge_operation_20260505t044017z_export_safe_full_zip.json b/ION/05_context/current/chatops_bridge/receipts/chatops_bridge_operation_20260505t044017z_export_safe_full_zip.json new file mode 100644 index 00000000..b0c360d0 --- /dev/null +++ b/ION/05_context/current/chatops_bridge/receipts/chatops_bridge_operation_20260505t044017z_export_safe_full_zip.json @@ -0,0 +1,6164 @@ +{ + "actor": { + "callsign": "Sev", + "carrier": "chatgpt_browser" + }, + "approved_by": "Braden", + "created_at": "2026-05-05T04:40:17+00:00", + "failure_classification": null, + "files_touched": [ + "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip", + "ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json", + "ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json" + ], + "live_execution_authority": false, + "operation": "export_safe_full_zip", + "production_authority": false, + "receipt_id": "chatops_bridge_operation_20260505T044017Z_export_safe_full_zip", + "schema_id": "ion.chatops.bridge_operation_receipt.v1", + "status": "completed", + "target_refs": [ + { + "path": "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip", + "provider": "local_ion", + "role": "safe_full_project_zip" + } + ], + "validation": { + "result": { + "accepted": true, + "baseline_manifest_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "excluded_generated_paths": [ + ".git/COMMIT_EDITMSG", + ".git/HEAD", + ".git/config", + ".git/description", + ".git/hooks/applypatch-msg.sample", + ".git/hooks/commit-msg.sample", + ".git/hooks/fsmonitor-watchman.sample", + ".git/hooks/post-update.sample", + ".git/hooks/pre-applypatch.sample", + ".git/hooks/pre-commit.sample", + ".git/hooks/pre-merge-commit.sample", + ".git/hooks/pre-push.sample", + ".git/hooks/pre-rebase.sample", + ".git/hooks/pre-receive.sample", + ".git/hooks/prepare-commit-msg.sample", + ".git/hooks/push-to-checkout.sample", + ".git/hooks/update.sample", + ".git/index", + ".git/info/exclude", + ".git/logs/HEAD", + ".git/logs/refs/heads/docs/github-public-data-plane-policy", + ".git/logs/refs/heads/main", + ".git/logs/refs/remotes/origin/docs/github-public-data-plane-policy", + ".git/logs/refs/remotes/origin/main", + ".git/objects/00/04eba928bdca5abd27df164df36d4ad8cb8286", + ".git/objects/00/06d1f988266f86ffdb301a995c9f095612ac17", + ".git/objects/00/08b98617b62e2bd6e5b76e9a696996a350881e", + ".git/objects/00/08ee3bbed770bd8c1418d14b1cead0b10e644c", + ".git/objects/00/16c2789664483dba47dbcf56e1ca01f757e123", + ".git/objects/00/1b6c95de1d5a4d900dd1c0c3621dc9734405de", + ".git/objects/00/1d713bfcd7bf18bd840c67a99c65cb8973b7fc", + ".git/objects/00/203dba51661791c965da4bb40530b85ebb63dc", + ".git/objects/00/22addb738b26dc684ce4326cf4fcb47186d27e", + ".git/objects/00/2722f1faff6da44dc042e057cea80553b05bfb", + ".git/objects/00/4cefbed166e54297361394c2e6c01edc3a47dc", + ".git/objects/00/53997b5164040c18deb4f200ded1fba8e7d732", + ".git/objects/00/583bfed85de8908e58f4be9bed53ab1b2684ba", + ".git/objects/00/5a755856718307ec70037321009f25c2260bf8", + ".git/objects/00/611f0a00081efbe94d63a712594a744c3234e7", + ".git/objects/00/629f702974feccaab9393fb930a7065bb4f300", + ".git/objects/00/7240e17e570cfba9739ea5d454fe50d3cedb71", + ".git/objects/00/770bef631b3c7810696bfd925fa50cada2e819", + ".git/objects/00/85ca33472bf11615c91aafb891ea974519c549", + ".git/objects/00/88254519eccca82753a0f936c826bfcf39407a", + ".git/objects/00/a4cea208014e4f11ee95b34a841e30ee391dbe", + ".git/objects/00/b816089c1be52521251da44ea071e30cccb903", + ".git/objects/00/b91bb4353e87c166fba9ac1df27185a4526f95", + ".git/objects/00/ce3d41d6826364ac28c64b28340ab51e19f7bb", + ".git/objects/00/e6906373ef99f1cee604825c59bf8d479e5705", + ".git/objects/00/e9fac9e84b6de5b016a447cd178e81b9ca2bf6", + ".git/objects/00/eefd3fa0a9339a99c7ebb27084c0e52129b9ab", + ".git/objects/00/f21c86160c1316fba9199868e53d7ae55d43b3", + ".git/objects/00/f2446937f8e30242eddc92c7612668a2e22e13", + ".git/objects/00/f28d4bf81dba21dafc1ecf3405eced59f5f5c1", + ".git/objects/00/fccee83ce443f80208c0a32e1e99a0196a9a7e", + ".git/objects/01/1f661b7d248bd294fefe30af823367582b0884", + ".git/objects/01/2292c3c9b105d28ab55abcd9e4eb0ead1f56f6", + ".git/objects/01/2ee2c8bd81defabba1f87aa19cb2755a1ac58d", + ".git/objects/01/355ebafeeb452ab0d6860c2239c1fbc26a22b8", + ".git/objects/01/3b71a56450c8a711a3e7e61bb89739062dd5a0", + ".git/objects/01/44802df9025077161c03fe082325de947ed870", + ".git/objects/01/47e45e0a4cfaee56ada1cf973c2a55f6358b8e", + ".git/objects/01/4ab50d4d726f5c18d17cebd1aefdbd75e73fc2", + ".git/objects/01/5262809e6d3f82d41c2e8668e6808f4dde5236", + ".git/objects/01/526e4ea6312d560b9960fba9ee4c14c0833717", + ".git/objects/01/5a5816ae87482748a5ff52e530ea4397ca286c", + ".git/objects/01/6debca6d4981390ce82196c80aceaa160e1704", + ".git/objects/01/8bcfe2fc554b6726bee2a1c2559cad1fd1eb2a", + ".git/objects/01/a423bab8f27f052cd6c55d528b1f75a750499c", + ".git/objects/01/a9b77eb2eff109fc4a199637ff7f8cc6315f0c", + ".git/objects/01/aeb1802a4a24759da96fe5fe912a1e070fce80", + ".git/objects/01/b34a42d8859548e7886d2f60b23cda5bd7168c", + ".git/objects/01/bb9a3340d48b0ad0eb755f4f1c64ec47928b3b", + ".git/objects/01/bc0b7ad145ad5f2b20ee8f443c89ffadc2618d", + ".git/objects/01/cf574a4ae40717b67816ba4ed74d4467f218bd", + ".git/objects/01/d0262204b816bf121f99715cb9c2d7147a2caa", + ".git/objects/01/d9d89f21d4df800b412f83a66638c6959338e5", + ".git/objects/01/ddd65bfe5ff8f99f467350454d8ccbbe14fa23", + ".git/objects/01/f0848596fa25b82c78b45bca67ad81d8bfdbbb", + ".git/objects/01/f262ae0f1741810c9a6fb9c6656aed13af72b3", + ".git/objects/01/f7a5a90e82e9ff82889f7b89c567533ccbf40e", + ".git/objects/01/fca76a66ff5cdf9f8b4fc88974a0a9df084269", + ".git/objects/02/10fe11bfa1b2b052af35ab27f025ad9711d42a", + ".git/objects/02/17fcd746879903ec9f6815e03574da453985b7", + ".git/objects/02/26b4254fb81e67fa28601f46907b20ef8ed3eb", + ".git/objects/02/37a5400ef11d8060586f87a5fa4b763c6155d6", + ".git/objects/02/3ef64c4c68f13d17761f9c44f65faaf8ac8e59", + ".git/objects/02/44d0a336e0214068d910af6adc9e0a6276a34f", + ".git/objects/02/4c38cfb01d9991f32ec0f043d476ca7ccb387d", + ".git/objects/02/4f4145214c5b27ae14eae0a32dcb4b35c1c331", + ".git/objects/02/58d1e4930fbf386eb8ac884a8330aab632a281", + ".git/objects/02/59837e3798f0cdbc219621079080d243cbe24d", + ".git/objects/02/5cb1c90b1de927b9a3b65c86e14e28d1aca609", + ".git/objects/02/70a93d87a35e95382beb658428e84bb2f356e3", + ".git/objects/02/817c127110d4990891dd648d265ce59bd241c4", + ".git/objects/02/86befc33a4fb8d74f9eb1d4aa8d22a4cac2cbf", + ".git/objects/02/88c7bd2bf58f5896787c8f2213b83dc07dba14", + ".git/objects/02/91d483539979ef755a774bc60e966f842d7952", + ".git/objects/02/a95e3db1ca482288231a0dae2a7d22fbde505a", + ".git/objects/02/ac1ee02e76c11a65ff165836aeeda3790a0758", + ".git/objects/02/b067753d4160d90f5c1626c9c3ec6dcd7a19f7", + ".git/objects/02/c48af12ab0c31b90220fbed81e5af4ee08ee31", + ".git/objects/02/cf846db7b186dbd1d3022b85786e4723ba01a6", + ".git/objects/02/d717da669b3417fd90a6c2368959c113903556", + ".git/objects/02/d82b938fe5c6b02585e0cae2c7da0b991e43a1", + ".git/objects/02/e2602b602f8b26d71a39e755e36de00b7dd143", + ".git/objects/02/ff79f8cfd25dbff90335bb5b70487c49c50cf3", + ".git/objects/03/000e8ffe0c0b430a4b7e9d364fd24355f13068", + ".git/objects/03/040ff85ac52d67bd1b81fd083f336df6756a31", + ".git/objects/03/05c61ceb92da8bfbb4e58c4255efd7eab79471", + ".git/objects/03/0de9e984ff01d06b9e2ff422fb2a91144e70b5", + ".git/objects/03/123b5997e82434f330d7772f1583941b498886", + ".git/objects/03/2762f40a633e73a259cec9c3699afc7f31f617", + ".git/objects/03/38bfa59a627fac24b76c4e7b666ffb9a3a4c3c", + ".git/objects/03/4691f869f51215ceee5104e3ccc06bd44dab1e", + ".git/objects/03/5ed7fb6a415e53749f68085b2e2ea4df240bea", + ".git/objects/03/603d85d6590d13757d3c0e5153118a0d79c66f", + ".git/objects/03/6b14ae58d629c8484b61f62e8c819a87be4223", + ".git/objects/03/870d4dbac840d5cb628cf2b6aadc58c096e94c", + ".git/objects/03/8fb256a084dd0b6833877ef9659cb817d126f0", + ".git/objects/03/b6e26c632a9368e08f50899d468f75474fda1e", + ".git/objects/03/bdb76a6c95eab5b7b53fb049f6c21f78c07713", + ".git/objects/03/dd96672606b9b0e39933cd5ea8ba9ea4100399", + ".git/objects/03/df54442c6900aa1dea5559640325e6b8ed7df4", + ".git/objects/03/f1ca0e7188b432fed6f9ad1bd87cb4c2977f7e", + ".git/objects/04/0083ebb79046afd0d4a97d9bb68599481e6e64", + ".git/objects/04/0f507cfcca8ddf5c3d4adf50e87f13c39a60d3", + ".git/objects/04/23dc0623a65c5778a447af3a21d627c07269f4", + ".git/objects/04/26460375d7b9462037baf18b5be0a7d144c599", + ".git/objects/04/57529321475c7c7c277ee310247a4db810df75", + ".git/objects/04/580fd19a9e2fbe1d596c1747730eb3c65a8195", + ".git/objects/04/5f1c15eb51b5a7c16e29999a3c7d391e6db967", + ".git/objects/04/6bac00252458a5f1eb572919cfd0e8fdad3eb2", + ".git/objects/04/6f5711fa66dc4ae3537b36ef34d6c98daf8e73", + ".git/objects/04/6fdb532d3ff5c5956dfc245d08b5771a341d33", + ".git/objects/04/75288d1682358938a0583a99bc263d0d0924e7", + ".git/objects/04/7b596ea4ac5f2f9f2f07982a22db407556a394", + ".git/objects/04/7b6f0162801bbb2447aa04396b226ce510f072", + ".git/objects/04/7dc7afb8b9dc73870239a187cc4b4fd64ebda0", + ".git/objects/04/8a0e8e732e7da55318151062d04c5e900fc19e", + ".git/objects/04/8d0cd4e88fadd12b490915b3ae1b4a1b7e8aac", + ".git/objects/04/b102e385e761ff7378c706404c9f0e7468eb7b", + ".git/objects/04/b3461907b4c791e70f9fdb6003a53f2a49e5a0", + ".git/objects/04/b8d49619c838ce64b033b37d9cd257d1cb2e07", + ".git/objects/04/bf6fbbbc69f04ab70dd111a698b81b3dc8e641", + ".git/objects/04/bfe61e9eb3893fc3734ce6d208b77494eccc6d", + ".git/objects/04/d2fe5a25d83fae7cc891fad3518045e51cb1c4", + ".git/objects/04/ddc5b828a0587c36e785b311b68d020804fec6", + ".git/objects/04/e0a6ceaeedd087d383c2327e2f97d853b77992", + ".git/objects/04/e7325c9d05aec41de729f7f261fe897c51dd3f", + ".git/objects/05/057e1d328ab5c5de3a7f47efbcd22f07a01bf3", + ".git/objects/05/14b3708ece0acb15028e409a97cf1072ded8c4", + ".git/objects/05/14e6d5fd0e9b20c1b7eae50e511e4ec499562f", + ".git/objects/05/14e7263dafd42bc03aba0cfa1bd3b22381a7e6", + ".git/objects/05/2f82565de6fe8eac5e4cd4ebdf606bbe5c8db8", + ".git/objects/05/388736d562226646fa5879a80ea93c3a8a27e0", + ".git/objects/05/427b440ab6618df0797495edd95295f845d500", + ".git/objects/05/4e1d2cc612e858df0b7518e9c91ff425453c58", + ".git/objects/05/5dda548abd227c7a57adffa49aeb26588f7102", + ".git/objects/05/6a15f662ad270cbd6f114533650ca21f4af175", + ".git/objects/05/6af11f5d8c59dfebb929f026906655b572bafe", + ".git/objects/05/76ab85b9360f6c5fc4c74b21c20e9c41ce8a9c", + ".git/objects/05/7ee663805c6eeb34677f4d1b9594f58826879d", + ".git/objects/05/88e0136632a31ee6bd5aae94e927fc0bd709e5", + ".git/objects/05/89055019c176e12fe9e45bbf220277725950f0", + ".git/objects/05/ad3e6e14d2e987f5eb2e03d8552cbc1bac5404", + ".git/objects/05/af220b27d8ab7faf149d28cd368317f8a6e332", + ".git/objects/05/b54bac5fd232dff0fa2387a8c1348483d3b0a6", + ".git/objects/05/ba1b3287f36d92bf0d3bf42c1965debfcff97a", + ".git/objects/05/cf1df71a62e9084536f6595dcb8edcdf18cdde", + ".git/objects/05/e426f2c08fbb3985557645c8c43afada9e0b2f", + ".git/objects/06/14442914789ca4a94a06c8082babbb423344b9", + ".git/objects/06/1526389486a76a8e40f649e0a5f5d1e6bc8004", + ".git/objects/06/318a50dd59d73a28ac158a1d4bcb197c951442", + ".git/objects/06/329d9b2ead4b54dc960b42da20c59b18ba8c62", + ".git/objects/06/5eea468d404e379f98a6e34a244eb7e1e1efa1", + ".git/objects/06/6cb02137769521f114b22beb85c9fa88e4b412", + ".git/objects/06/752c0d4774d1194f9c3d08ba158a777acd8adf", + ".git/objects/06/921e87e0530cd39d426c4ea9e7ad3e5a1218cf", + ".git/objects/06/b3d10ff82fce1feb08b2de900d161887698ca1", + ".git/objects/06/bdc04a2d3c6cd2c11bc019bc784b3459fe734a", + ".git/objects/06/ecb0ce4a48c7459b7c909d50572f1dcfba1890", + ".git/objects/06/f3706f5cd7dd1beff900d3b7e70c40ef4efb3f", + ".git/objects/06/f66ee0dbd5de58c9faaf555b6680172606f8c5", + ".git/objects/07/14904b09a9ce40ea178b19c2182fb8ffde8519", + ".git/objects/07/17f208f8ea134a92f67d552017c2e8604afdb9", + ".git/objects/07/23147f0fb4699fef3776e3f2b2885e362e7f6a", + ".git/objects/07/35c7c09293a64a416fc2bb804dba3e3af6e74f", + ".git/objects/07/3c66f41c9ad94073cdf156e803254ad7c7ceaa", + ".git/objects/07/4f43ea50e84ebc1b4a5a10e3519abc745462f1", + ".git/objects/07/594a3d9cf755aea6d86e6e577d043c61e2b972", + ".git/objects/07/6651516180a463b5512b56ae6f7cd5b7e3ba8b", + ".git/objects/07/67b4973e157ac7de25832ec6c6c416130d6d39", + ".git/objects/07/92523c4b01723378ba40f397977d010f6a9fb5", + ".git/objects/07/97ef62472c25f4ffb580bfdd6016af7273ef68", + ".git/objects/07/9ec1e227e0eeb7fad6771fd55dfea6af5a8601", + ".git/objects/07/a40e5b948799166dea683f4295521f415fed79", + ".git/objects/07/b25b838e43b6b826cdbbbe7a2dcdc53f369cc5", + ".git/objects/07/c36446223f29b4c6724aa714d460af49e9e63d", + ".git/objects/07/d1d4616552a18ef8ab08da9aeae4a23331b171", + ".git/objects/07/d3f4678993ca75c238c4f9f1570a6ad066fcb5", + ".git/objects/07/dfd242f47582af172827ea7278750c50ee734f", + ".git/objects/07/e01df17fb6382e129c507c5a1d38d9a02c7137", + ".git/objects/07/f2bf2c43a6d5da3188579b5d0966c4d0bfb8ca", + ".git/objects/08/023a8bde8a71bf9bcdbb75f3699fcfa3bf34bc", + ".git/objects/08/0403147c3b9ed36dce972f6d328b09914c58e8", + ".git/objects/08/0631db89a1ebc8bad0db804cc1eb68773f7595", + ".git/objects/08/0ed380d6f76aff36756ce556c52d0377c74376", + ".git/objects/08/19fc7300ac923e184b5d3a3a39e422914ea6d5", + ".git/objects/08/2380087180d939f0a9d4599dfa088030083928", + ".git/objects/08/36833926148c954ad79e92a8425905a1088396", + ".git/objects/08/40dbbf7ae3ea407cfa6b4321f8a038f71fc25d", + ".git/objects/08/44d8c324f87fa4acbb82c546362ad92bf80fcd", + ".git/objects/08/58c233c6d8f7bfcc0ac93d33d525880277a51d", + ".git/objects/08/62f4809a721829407406246d7263f3be4a389f", + ".git/objects/08/72fda2827ba45ebedb4535de8fec255d362c98", + ".git/objects/08/7397a0eadf36ef2fe62c9adbdef200313a117f", + ".git/objects/08/7488267a6d28d562f3e56408726069ae731241", + ".git/objects/08/7604f526d2f7c6a04e650265f388a22f546fed", + ".git/objects/08/7a7d4f8b90a93a2a649941945192d6e2bc9bba", + ".git/objects/08/84a617fc72a413fa8bdb4c2831d29989fa3188", + ".git/objects/08/8571d277992a2d05d996c978ece33a33fe77dd", + ".git/objects/08/8e13a7efa05d1355fd4299d288d00cf12dea07", + ".git/objects/08/90101d28f112af126aff13c812b12790249bb2", + ".git/objects/08/94c89f02bad6ba5b0d49367496dcfee5601030", + ".git/objects/08/98fbe59d010a1a913f3edebd534a3bfca3ae65", + ".git/objects/08/a8516e76ad2fa2ae925d1ad0ca80b7fd9e6ccc", + ".git/objects/08/b9954e1284717c61a7c56bc38903e32db8e5f9", + ".git/objects/08/b9e1452eea18ae2b20480c8721198eee01d81e", + ".git/objects/08/c6003635e76ed78bf45964b01fde5ecc355be6", + ".git/objects/08/eb0ae93475b1c99fdb5429345e8780605796bd", + ".git/objects/08/fc0da3257504f39493d797c8eba35d8d04f315", + ".git/objects/09/083086f200ae1aba68c8b2bf291ca6efd4c0f9", + ".git/objects/09/123f9dd3aa08fb90e34105416f16ba121566f0", + ".git/objects/09/33fe1d5f85406af82b0a418a51dc81b59edb2b", + ".git/objects/09/37fe3c6c59baad250f5ad3eb8c35be6a97af78", + ".git/objects/09/7314180a79425a40886df6bdd54a2c219feba3", + ".git/objects/09/8aaeb28037c90b3eaae98667292672d2d5789e", + ".git/objects/09/8ce84cdd7bdb77e63741a3b3b76913ffebbd7d", + ".git/objects/09/a55ea8f0834cc3fd288716c78fad429e47f795", + ".git/objects/09/af9387aebb544abf2d4cee6f88059ff37166fa", + ".git/objects/09/b4f24032eaeee861bc736e3c04c8a7778ca435", + ".git/objects/09/b520ad15df82a7bab3e1ba27170dcb9785204f", + ".git/objects/09/c2ce8d7ac0400fd62b7c1e54f0972986b4114a", + ".git/objects/09/d3f0e931bf8eca13cec6a6aa6a5dd9a44fbf34", + ".git/objects/09/ddc42483ba382803a4842e639e42f53ef0f17a", + ".git/objects/09/e5580ef56ae25da8e5b150234142fa72ebb59b", + ".git/objects/09/ebb90393f6df03f395c02fb2c250e1491c80d5", + ".git/objects/09/ef3e37ae70796ee72c8fa24199b3a1bbba7cab", + ".git/objects/09/f22bbcfb1514bba2e0fa76812f00f0618d8d61", + ".git/objects/09/fc7868a6542c0107097e67d57e387df78677a5", + ".git/objects/09/fe5282b8b4cf07f0ed54113192e5950fb16d8a", + ".git/objects/0a/0acb5c01c7cd9c0358b29c76a682120686fc51", + ".git/objects/0a/10b17dd08a5dc93ac51cf2738a3f7e69d55a2c", + ".git/objects/0a/1ce570145132409be056eff634328c985832c3", + ".git/objects/0a/2b26e2c9f16fb27b54d85c595d288b07ba9709", + ".git/objects/0a/499da85e02ce2c8f9aed367e5e4fa888cc3e51", + ".git/objects/0a/53fae1e39917b7b47f2a1d0a14c46632b3fbb8", + ".git/objects/0a/57e5d1f386842041a4f35ce3124b9f89b0d0d7", + ".git/objects/0a/5bb48fda18ff9d39dd34a57990a4c626d1e970", + ".git/objects/0a/5e295ddc84df66df5a79abbc6c1bc5f3e5aff6", + ".git/objects/0a/80aece851a9b09920fb0ac25265298e5598502", + ".git/objects/0a/916181c9536e27245911b0c9a48342500dc9c5", + ".git/objects/0a/b9e6e3bbb69be486d7bba47a8fc197d0c562c3", + ".git/objects/0a/ca2d7cb326879b8edff2bc24a9f53d9139563e", + ".git/objects/0a/d3b0e13f597ea3a64d5776647b0f7ecd2098bd", + ".git/objects/0a/d8565839aa4559982eea1a3e13c866e6ecf3e3", + ".git/objects/0a/da6f0081e73a285199585c4d1bf961857a777e", + ".git/objects/0a/ead837e419b435f58d625237240a1ea2914a2d", + ".git/objects/0a/edede1176eb1a76070a3a1a316a820ad9c4580", + ".git/objects/0a/f0e65aa64c52ceed0af578365474ac63c23d64", + ".git/objects/0a/f39b69f119c26b5083c3c8dcfe59179def75a1", + ".git/objects/0a/fa066ce2a1581997af054f0e73a057e7c25525", + ".git/objects/0b/1b414f64618117313caebe94cd999a4f78420b", + ".git/objects/0b/38adf8370b53178251df5c1f116b8354ff53df", + ".git/objects/0b/3f693959b28042db4cc6e6fa39bc2a98e08ee6", + ".git/objects/0b/5fb392a933cb6f68000cd07de7e5607e5a70b8", + ".git/objects/0b/69a10d820c056d7beb0ddf56da3f80cc990c33", + ".git/objects/0b/81abe2bcacd1078bf6b1223eac83cec78bcf0b", + ".git/objects/0b/95e5e1e46e3879839912fc5f66c7da14888526", + ".git/objects/0b/a338f722592427396d28655965acba2d96cecb", + ".git/objects/0b/ab4aa982d70807d27fef356ebd919b69c3334d", + ".git/objects/0b/b55f6e9075832a36c04f994151ea08393917fc", + ".git/objects/0b/b5c2f9f9665ccc594b785cc5b17a5c29d5bdb5", + ".git/objects/0b/c0bfd3b6510271e08145707fb6a3e04b665160", + ".git/objects/0b/dc741bb891e190a5c9f60c3eea92887770468d", + ".git/objects/0b/e45ef610f4e946c1a9946c0aa8e3df0ffc9891", + ".git/objects/0b/e4d5ec145fc3145bdefc1eca1a0a11c502a4c0", + ".git/objects/0b/f7f89e22a782b9e9830a0615d20f9e66f925db", + ".git/objects/0c/09ce9b20e831c6352099680955f08a17a1a013", + ".git/objects/0c/113d03ac3105a28ad490d044c5826d16c24f01", + ".git/objects/0c/20d983e4695cb46a43a311ee205173946a71ce", + ".git/objects/0c/3dfb3e38abb6e8a9cb5262cd49162bda592187", + ".git/objects/0c/481efd477d09293b9ab103123c70a9e55ffaa8", + ".git/objects/0c/487f4d9b9fad2d4512793d6ac23867fd248aad", + ".git/objects/0c/498e090a4ebc58903799efe96b344b4cd916fa", + ".git/objects/0c/5f7b14cc0ae097867668a3e7447a278760771b", + ".git/objects/0c/67620d720c60caa8230433710051040cff5a45", + ".git/objects/0c/69ddd370b70e720112f21e9f45443adfd55e7d", + ".git/objects/0c/799d1a0cfdfd3d61ae8139c54901c52fda01b1", + ".git/objects/0c/7ae49c698304424d55007dd488cef3fb1afab7", + ".git/objects/0c/842eb34774ffae12a34f5184c5158e14378ab4", + ".git/objects/0c/87ce0f338d07450d3ff590b6d7eb7ffa13b618", + ".git/objects/0c/8e755d761d5477948b62e46e2058492cc4b3c2", + ".git/objects/0c/98d8669dae2975daa4a893a4c5ce0f4a85e971", + ".git/objects/0c/9c443b3fe61923bbeffec9b598c1db43a9ae4f", + ".git/objects/0c/affbaa0a8347508475752f6ef75f831b89be37", + ".git/objects/0c/bd5ce30cd3e91c867a0a96add53a37c2699c74", + ".git/objects/0c/c48e553cee11358ada9568fc3928f9a4b9da14", + ".git/objects/0c/e8bb66982fd85f3efdc5aeafffefa60924e972", + ".git/objects/0c/f3b7ae326d7437dd98f74b1bb5b5d8ebf1b573", + ".git/objects/0d/0738974f8fb1cd1ff723986374d7dba735219a", + ".git/objects/0d/0a91c39ccc072e08f9b3a153b4b384752accf2", + ".git/objects/0d/2067f2e56bf2f883854150a90d99c899b5ebfb", + ".git/objects/0d/36509217b2da56dfa52a1a5b2d8f89c8e0b6a6", + ".git/objects/0d/37c417cdae432d68662a880c3ba796a299b7e7", + ".git/objects/0d/4c7bce3b553590d2769eb6f6e73cb08c9ac09f", + ".git/objects/0d/4f9521c06a3299e4eb3ada440ab4f1ac20705f", + ".git/objects/0d/51ed992d7276fadb80923d5156f81e70e460bb", + ".git/objects/0d/5639bfd6214f5996b426036d9cedf881018f97", + ".git/objects/0d/5c073a09889a077c53dfae2bdea79dfbfb4365", + ".git/objects/0d/5c819c9ab493b286c1d390abf89774aac79208", + ".git/objects/0d/80173f2b3de58686ffc4a5caa81949eb450401", + ".git/objects/0d/96b5ec1de91f10972cb11b95d7afd0a0889bf8", + ".git/objects/0d/9b4e7d5ed9a344e06959291d91d0219ed7234c", + ".git/objects/0d/9cb5daa2540bb85d2a8a8cbc1fb24d14c17a70", + ".git/objects/0d/aca4a6eb4928a7f901146819e8dd951aaa62b0", + ".git/objects/0d/bcc0b324785fad8411f20474225574a80add73", + ".git/objects/0d/d598f7c67ecd4e3f876b42d2985cb404eced97", + ".git/objects/0d/ffb6ee230ba9aba390c5c6faefc2024cf7a2db", + ".git/objects/0e/07873c3f5492164849d477f01a03c03ea1e187", + ".git/objects/0e/15bfddb5087bc6a284b46f5372c3221c87772b", + ".git/objects/0e/48cb6fcc9f36af70b6e2f1abd1f76926b67eb9", + ".git/objects/0e/5213850f0bee8e705dfff4f514b2b9d678d701", + ".git/objects/0e/53bc2ae4fbfd27545301ae4b7cfbb79b49679b", + ".git/objects/0e/5b50f8ab75fa48f82f4313a8e02b51d8cb8382", + ".git/objects/0e/5ec1a8388587ae76868760c2f954b4a1f06fb9", + ".git/objects/0e/77b68767da411d46919482f503137e29dac1bc", + ".git/objects/0e/7c034725d6559165d605ce8e6e46aac640c3b4", + ".git/objects/0e/83015f2af70b7233038d1e9ea62a410bc266df", + ".git/objects/0e/8fbd1de14d7e0fa870953732b13c07ebade24e", + ".git/objects/0e/b7c8f505ca6e7471faed0e4e158bfb9b6671a5", + ".git/objects/0e/bc1edf245b4c1a7d01b39e8153f5e2ae8d65f0", + ".git/objects/0e/c82124e03e6c1a3febf8f98e8449b974e2559c", + ".git/objects/0e/e4c914ed34801a29e9996cc953fb7dd08d7957", + ".git/objects/0e/edbd20e21503ac5415f70783d66114df982743", + ".git/objects/0e/efdf833b44988fbb1558afc850885c3a83f467", + ".git/objects/0f/11b1fa702066b5823e3e46c1c9c98cfd5510d9", + ".git/objects/0f/15a823f91ec95beed9712f4a3e5c56061c44c6", + ".git/objects/0f/1da260a9608d3787249ca0843c6dcad60ff729", + ".git/objects/0f/31bda43aa988d81e57c5d533c09a8bd44d87e9", + ".git/objects/0f/36309edf0bcec3a32e6c2bf98ea9ab580f96be", + ".git/objects/0f/39d8b473da6d363d7457f0cacdae51dd2d7be9", + ".git/objects/0f/486c49c95027395dae17dfe947681409bf2cfb", + ".git/objects/0f/599f9de081d1b94a6901cc45717156b6332945", + ".git/objects/0f/61999190b9b1f06396833b808a8da4fc7392c8", + ".git/objects/0f/640e33d1ecd8374ad0e0cc97ac1d160903d0b8", + ".git/objects/0f/6caa0ac050bcd81973900f0080e6c67ee824d8", + ".git/objects/0f/6e30e08c035f7981ea5e5fb63215a26bf8b8dc", + ".git/objects/0f/70fe5949c9ab8e6f27003a173a7031141d2583", + ".git/objects/0f/768aa895101f845b9e7e4258e29ef17d66fe3b", + ".git/objects/0f/ad81020f66cabf1565e4ea93ce6d4ae9b9fa74", + ".git/objects/0f/b25dc17d2ed7e2e3a54a4cd9dd31cd60380935", + ".git/objects/0f/b72db5810f6d5310bda972a47388c797123da7", + ".git/objects/0f/ba9b07b2e76b9c3b99fc807fc1374c7f5311dd", + ".git/objects/0f/d2cb024b1c571e472a6ac4b8b3192ccf0318bd", + ".git/objects/0f/f436a8968aaf844947f488ba14eb274020af0d", + ".git/objects/0f/f828f72736685c1667a2a355ffc161462d79cd", + ".git/objects/10/0031c5af36797b0741fccc0690956900bea62e", + ".git/objects/10/0127a40058596f2c2b758b7d91ea1876305aa8", + ".git/objects/10/02105778b86dfb878c8b8556d1a8d7bb9361cf", + ".git/objects/10/0799551c858d4af10526f569178e5435915363", + ".git/objects/10/100cceb6732cfe3c801c4cd119fa7bb7b001d5", + ".git/objects/10/20fd25c39f4d54eb9b1997993695aa0edbd7e5", + ".git/objects/10/3839264872bf9ad915a83cb86a3c4aed035014", + ".git/objects/10/559d8ae6dc3d94ddd47639392d2e4eb3064f22", + ".git/objects/10/5a462e838e091d6dc210c1136dc44d3ce65aad", + ".git/objects/10/5a64428010a0c3bd9d6ef94ba51bd55dffbdf5", + ".git/objects/10/5c2a04527ead06e4f8debeb932cf6992d19e4c", + ".git/objects/10/911369b482fad01fe8b27a018c3d8abc38070c", + ".git/objects/10/a79ce4f17966319c581fafff61b834dd74001e", + ".git/objects/10/b1204f4ca7cf641e1294916e9e2cf22eb09e8b", + ".git/objects/10/bafeda55b7738c2e4d4bf2772db910df42d170", + ".git/objects/10/c5076196f31a6085fde902ab5df6521c1b29c8", + ".git/objects/10/d5393564f912e11ed3e431485c0af0f3ac5a00", + ".git/objects/10/d71bbf3995e210be89a5b9e8da39d00f6a1131", + ".git/objects/10/e28b4b6b17c58740bdf3bca2946eca18082ae2", + ".git/objects/11/068bb590c80577161acb8a064559ca90c7ffd1", + ".git/objects/11/07caa89b2a661e283eaaf51431642b94a7c5a8", + ".git/objects/11/08afd428ee607da838789b57735ff44a3ffd28", + ".git/objects/11/0d68bed303118f420d5554123e606cf6a13917", + ".git/objects/11/1413791e3312c82dd01fdefa74091a7698038a", + ".git/objects/11/1d156071f0b78102ee89d5a45645b83d344bc2", + ".git/objects/11/2090a3aaf85d97437cb14e173c7db0354ac81d", + ".git/objects/11/33ac85bb8aa2e284594387f62bb341e947fb71", + ".git/objects/11/42886826552dd71e322b71d7bd45978d405e79", + ".git/objects/11/44f0d6956017cb05573b6b4b87ae25c76e467d", + ".git/objects/11/5fe3c60d8949cce8d126e541b479b6663d7af5", + ".git/objects/11/7b787f79db730a739100b5e8889b1d1c885edc", + ".git/objects/11/815a6eeea0eb9e4d115d467b1fe58388409e8a", + ".git/objects/11/942e9ba14588787cd6107117de0e04ec551ad7", + ".git/objects/11/9d76e1df31c2a9a1b42864dd77aa210742c9df", + ".git/objects/11/cc1309d3dc7ffd363dda52c9253d10dc58b452", + ".git/objects/11/e4f6076d232291316b6b77be8b86cc0f8f6c50", + ".git/objects/11/e652058ce2a712d0db1b7b62814bbb7df5eee1", + ".git/objects/11/eaa30255aeed9b9b9871c7424076ec78440fd1", + ".git/objects/11/f5521aca9b5d73ee5b3e838581f082a3332e20", + ".git/objects/11/ff81349c753492e9299ecc77c91e0ed51b80d3", + ".git/objects/12/29ab682e30b982bc5ef415abfe3d214883c724", + ".git/objects/12/36c236c32f1271d634f9d09a3ca3c32ff76e6e", + ".git/objects/12/37ae6aec131fca430db1c5ff282a5eabdf8dfa", + ".git/objects/12/3be677a54d0e526f88399c752d422297b2b9b2", + ".git/objects/12/489f6b88adc6ef5613795899713b75e543f813", + ".git/objects/12/5156b303fea4de890ebf46300c055305c09271", + ".git/objects/12/57b7923d6f432cdbba27bb6318ede5facceed2", + ".git/objects/12/665ebfc785d13bc2466ce97966825519a4648f", + ".git/objects/12/6723f8c5c5535bd884ea94391baabe3d17be59", + ".git/objects/12/6b16d039d2100fb651714e48c304f3e61cb28c", + ".git/objects/12/6f694b92731c309031241d67cafe99241450b0", + ".git/objects/12/78643155803dcdef4250b833cf070b86728a38", + ".git/objects/12/78d3e6d5ef8be005d8065abd63ca4cbdf1c50d", + ".git/objects/12/7d006a07e6f60a889f1b12aecdd1ae83b8933e", + ".git/objects/12/87646d5022ae53edc50373edacde60c49e14e7", + ".git/objects/12/9455a22da8ce12a5bc3422a23263a8625c684e", + ".git/objects/12/9c5e675e3b300253dd99a93c36c69fea9f37c6", + ".git/objects/12/b3c12abbfc97a2fa08359e1e1fb329ed2797dd", + ".git/objects/12/b41cee3bed02f27b0c01db6d281243c04e9c36", + ".git/objects/12/b83ca6527f3d34fb8d6ce6efe5ba51a55da54f", + ".git/objects/12/b8b94213cf33d9453b5130d4f02805d3313cea", + ".git/objects/12/c64fea997d3fe57cb16f1818320b6f9abbd263", + ".git/objects/12/effd41ac640cc5a31aef611c25bde528654783", + ".git/objects/12/f1117b6a8c745951f0deca3e9113cd4830bbf0", + ".git/objects/13/0c86909590198fa6ffd42526c5f95730c49bc7", + ".git/objects/13/16fb29e608ea9e9ca71f4118a4e98a6548fb56", + ".git/objects/13/24ab61f116109a450906ee8c66d57cc8345205", + ".git/objects/13/4c3bfbf86da5305ed79ee558d4d80983a6a920", + ".git/objects/13/5565693eee44d8aa44553f20a9bf237e79a91e", + ".git/objects/13/7200fd82823977c616eef6078cab66fbff81be", + ".git/objects/13/7c07c65ceea9a13558850c2b4b3a9788c7dc94", + ".git/objects/13/7ef83a4294872b050dd834a1454801c458bfff", + ".git/objects/13/a8210997ce6d06ac177b0035288caaabd7bb89", + ".git/objects/13/c19298a77ed722d9816b2e2dadce8c0241832b", + ".git/objects/13/c61c39ca2220295aceb5ff19b4ed436e378096", + ".git/objects/13/cda91e90d75f49042ab92726ea54240e8bac36", + ".git/objects/13/d9f9e3ff41f4414dd433c66267ff6fd7a78b47", + ".git/objects/13/e167a7ebaba4d866f5e860b8a99326fc766fb3", + ".git/objects/13/e4a146090312f8e3b5c413784c929d1365066c", + ".git/objects/13/ec06aebcf5913547e27543a1808fad3d5c7064", + ".git/objects/13/ec4798556396ec58c5a28dd96ab40dc93ec1e7", + ".git/objects/13/f025f49d23db2345e0fceaad83268cb00e4de5", + ".git/objects/14/0948b2b8931e66a690c06ff2668467c41e01f7", + ".git/objects/14/17562d909049028783e632ea756ed930044c90", + ".git/objects/14/206a2feefab3b626a911412f11e403f95cd520", + ".git/objects/14/418ea46556a80c16ea25f935aab31eb9478c1a", + ".git/objects/14/479dd4805b4197ce516744cfa8bd89f08e57d8", + ".git/objects/14/4929919953b189e0d807f8f6f656cd70cf335a", + ".git/objects/14/51a80e49694e8f5ce9a6d016549b6527dc1461", + ".git/objects/14/5713b927146800af4e542332fed85d849a30a7", + ".git/objects/14/6f3cb1f095553643ac2ad0b6a32a0ba0097d80", + ".git/objects/14/70757aa6b47414a42783933b89cbe6191b31c5", + ".git/objects/14/7577d36f8e60499e05a4827976787e8b177d73", + ".git/objects/14/77889ec43fcba959d0952c3dac3180a387c610", + ".git/objects/14/81069e7693ef23db0cafca86d066c40973a6cb", + ".git/objects/14/84bb0e53b0d20da5fa12fbe764b66faa141d5a", + ".git/objects/14/a3ba82978b3760e7c846ae0ac8f063ef09ce3d", + ".git/objects/14/ae6f5d51deca1d9327d5d29e9c7baebe005086", + ".git/objects/14/c32c1b181dfe380abc0764eccaf70c6814de8d", + ".git/objects/14/c3526e609379ae4a1e63744e0ade6a1e752530", + ".git/objects/14/c944813a3e11bebb97280a71ffdfdc7fb5dd70", + ".git/objects/14/dbc663cd847a41c86cfcba5b73e48d96b62d0f", + ".git/objects/14/dcc32cea7f4ac074dc3efbac5387733df4a1e9", + ".git/objects/14/de64ad611621ede3fb241d882c09f5c6b8ceed", + ".git/objects/14/e872d28ef58150b2b03899bb0a2932a964ff6a", + ".git/objects/15/00abe2087bd2bc3b9dbd11832fee10fb47f9bb", + ".git/objects/15/087308a461cac6ed437946773af9c53363759a", + ".git/objects/15/0f91d0d14ba7cc952f1fdd0723e97538996c78", + ".git/objects/15/12bbc4ed5e28fb6d213f313835780801214b4b", + ".git/objects/15/13ac28dcd8d0ef659de0a8d3964a96012e42bc", + ".git/objects/15/23e55b793843a2c562b772603c49c75e1dec27", + ".git/objects/15/2473a841835a306ca2ab3f123348ce2cdb6f79", + ".git/objects/15/6ad49c8738bbcdd6c617a7069ceb508b99ea84", + ".git/objects/15/75a4f51dcbd9612574e4a085260caf026617fd", + ".git/objects/15/76ae20137709b4078fa9c41746be05a0a50eb5", + ".git/objects/15/83484e998fcb96c313ee8fcafaff307e6138bb", + ".git/objects/15/8dafb013f9c0e0a76e92c11f77b71bb67be8a5", + ".git/objects/15/997806e388bc817684a9f8053e75414fcea321", + ".git/objects/15/a717121b8ed6fc523b2889a6cb71be40354850", + ".git/objects/15/b4b5746527de854e324af4476101383780a980", + ".git/objects/15/b9a916a564e290d6d4f93df27292a99b8c29ac", + ".git/objects/15/c5beac9f628212d8be495538505408f590f54b", + ".git/objects/15/d64a62cb4bafae9908ec3543953c618ea51d1b", + ".git/objects/15/e0a85fbaa2b37c39d198cac01eccdf6a42f2da", + ".git/objects/15/e7566117b846bb4fd3b9ed23ce9204f6ecf5d4", + ".git/objects/15/e7938e2526df5757308d68bea01766c42542fd", + ".git/objects/15/ef47e57e80c66fe1cec68cf9b014ce064de18e", + ".git/objects/16/1084ce3f43e4a18fca1cff303e23aeb92bc4dc", + ".git/objects/16/130a773d36af6c2a6dfbb6d90c1da1f3006828", + ".git/objects/16/18f7046ba7e2c77742cf62b59937ad8a282e53", + ".git/objects/16/1adde47d2a809d880dcc4810ad9b52a19fa4dc", + ".git/objects/16/2504f11caf76780d608c88312f2cf798689188", + ".git/objects/16/2661183ad1d6e23336b7574e641bfdf7e9d994", + ".git/objects/16/2afedcf8b69006d7d172ebcd5a03f8ab21c0cb", + ".git/objects/16/31b9243662b0bbf2d027bd33cfc81487cb1a60", + ".git/objects/16/33f00e7e17a1504890c2e39384031c11602051", + ".git/objects/16/3e1d45f3724c4fc31d1c052351e4dd8247be20", + ".git/objects/16/489af39b408dabd059f759f053f0b5031f9e49", + ".git/objects/16/48de84848a4093fdc3a2625a82c1f4f2c827b1", + ".git/objects/16/4f3624f2225764efd7a0277847aa23dc131a85", + ".git/objects/16/58fc7c3639c7b7ba161246e792a0686de53cce", + ".git/objects/16/6193352e0b7bf778a2b03b4a07bd9766548c76", + ".git/objects/16/974c56f0d3be1343ee8140b7829a84454ce41a", + ".git/objects/16/9859b4e84786d58e665b2e183d94a3e20eda54", + ".git/objects/16/9c83cba534d34e4f88cc0aa28e724010814bb1", + ".git/objects/16/a37863af1034807153882d96208ff5fcc58e82", + ".git/objects/16/a610fb1f84200cd80fc79e3e347cfcea595f8a", + ".git/objects/16/b1261911648ee780e6b454ee5d56827a7b17dd", + ".git/objects/16/b774b9352e69aca9faf5505b063e93371095d8", + ".git/objects/16/ce0b2b03976d18e626fd78b21865d53c348fd2", + ".git/objects/16/d5bbd088fad3a9fd6020f4450d0988b19f8ad1", + ".git/objects/16/e3ac5a376bbd9fedbea42c6ec16760002f81a5", + ".git/objects/16/e95192e4e0d201f55daf32a96c62543b577ced", + ".git/objects/16/ea87135a8157a735da29ce79aaa52404f2114c", + ".git/objects/16/edc10a22c09fd49687b457f3144c970ec42d9a", + ".git/objects/16/f4971e23bab16d15745a90bd0613fcc01c0a2d", + ".git/objects/16/f906356b1139dda7914c7bffbacd1e6c8487b5", + ".git/objects/17/0388e0914355cc46ca9a62e05c42cfad0ae39c", + ".git/objects/17/06f1a7b7a1f89329e6ec67248ed2dc37460036", + ".git/objects/17/0a2b70d8314ed5e916edd69724fd8d46a0eb55", + ".git/objects/17/1599c0ede3c709956915af806ad0fee4ac9092", + ".git/objects/17/1cf3a4214620101611180bc2132a7c90a39625", + ".git/objects/17/22c3134e7d1712d0da4b3ae12723527c92cdcf", + ".git/objects/17/2eb87219c0b3bc55f2884f32adb05326244627", + ".git/objects/17/4d2729af1690014d263e67669c2ed6d0b1a20e", + ".git/objects/17/4f9f3804c9d0307e4a7e548ab5d3aa84a67ca9", + ".git/objects/17/5ae3f40ad5cb41e46a1b39c5825ef58efc2a97", + ".git/objects/17/6f537b1d6f7f48d5f43bfd5cf8a721a82376e5", + ".git/objects/17/7133c4ec782a080182bac7ed3801a6923fa336", + ".git/objects/17/7f43f12cb00f44afb88c95281068f5ae7e5751", + ".git/objects/17/8ea7c8432928713653064ef557bf4e6937f94e", + ".git/objects/17/96bd57bb3c155fb2a76ccc28f0f92af2be7ee2", + ".git/objects/17/a8a063da985864988b16c6a1ee117626f9ed28", + ".git/objects/17/b0a21cdbbb8d7d7f0bfa590ed9d56094220a10", + ".git/objects/17/b1c4b71710f05b6b6767b45ea701e046c7fd04", + ".git/objects/17/b3e267cdd3c89d0360981e7c232279863a98aa", + ".git/objects/17/bb6be2b16c32c94a4754999be100a5bb18ff84", + ".git/objects/17/cc94761edc11ebb135d0bbb7e197b5e33aa948", + ".git/objects/17/d3b3c2a7f298cc9089a368ef1c4596927aec8e", + ".git/objects/17/d81364bef8afca2ab917a45a749b59ef33c53e", + ".git/objects/17/d950cb04fa20dad0697bf7750c40301dbabec3", + ".git/objects/17/ee4579df3f6cf8f85e9c10483aebdb3c088374", + ".git/objects/18/25d52ec936a43b9348333ee55d67f8df38f325", + ".git/objects/18/2bf985e4c407f7c5f093735845c7f62cda3211", + ".git/objects/18/3173a09cc882b50ef2402f574c5355ee55f328", + ".git/objects/18/3b24654bd3b75abb28c86b857398020cb8f1e5", + ".git/objects/18/434cb4258e2968f943fbef99c07c9e8eb2ffb5", + ".git/objects/18/6e510231c004be881b4d5aff4b593cc40369dc", + ".git/objects/18/7472b0815b6348921eaf3ccf1249f16c1bf11c", + ".git/objects/18/7c1d817e54bed0e2fb60b928d528ef37795357", + ".git/objects/18/7fcf797cfea19d48beb411d118cbc1ef4802e9", + ".git/objects/18/9d457a7bfc54d664baadabc6795c5ea30f7857", + ".git/objects/18/a01eee07bcb3140c759088f1c8cce304e06c88", + ".git/objects/18/b4362c0d9441ae77b01d7db51f08095a98411a", + ".git/objects/18/b95b23c3e2a9979072718a54317efcf62055e9", + ".git/objects/18/be400c1df362e319a86991f06dbfee7f3f633b", + ".git/objects/18/c0fd5e13f6df589f9806b420428f7e0e2eafed", + ".git/objects/18/c25b89c0208dc8eb3394dab90bc91f52e6b2e8", + ".git/objects/18/c78d768389ef091273bf3a9a3a8d57bdfe5d54", + ".git/objects/18/d61fadf2b36b34a24a96f4c4eefd8d61c18363", + ".git/objects/18/d705c1bb0576e5ebd2ed6d460cb0522889f0b6", + ".git/objects/18/d792fbd908f3400d1d7712ed476516eb5e45db", + ".git/objects/18/dd7490b21828c208342d2d0c10ba8872ae4727", + ".git/objects/18/e2898d5cf0ea2228d8eea8e9daa172c44c6064", + ".git/objects/18/ed3d1070840ca936d19e449cc784fe7230023d", + ".git/objects/18/f21198ed7bdce78f90e6ee7fb4b29255312923", + ".git/objects/18/f69592723e1ac59f4ab089b093af7dd687933d", + ".git/objects/19/1b5dd1842f952e7506f2d552e4aca8fce3632d", + ".git/objects/19/21cb593d50878bc81bb946ea9534c2d94029d5", + ".git/objects/19/27b9d2c7b392c8234008bd25d572f576ab26e0", + ".git/objects/19/2e03fda20b53fd543e2fa5738bd4a9267790c1", + ".git/objects/19/2f629bc598a09f5cf75c89cff03985f7702ae2", + ".git/objects/19/502b4e9606085bb00f8f64f706891b08f349f6", + ".git/objects/19/543b7d5de91ba3253cae8691fef2a2e2febe3d", + ".git/objects/19/5f44f4ee0d739aea18b8919bbee3c35a0c9b33", + ".git/objects/19/6293db619c08e6f44481e21819e293ce19ade8", + ".git/objects/19/633f7fd963c50410dbd10edd2c920b91362c55", + ".git/objects/19/7507b996c91d1ab19cfc7b6149c6edd6defea1", + ".git/objects/19/78bc21068a34fa0c716f2d21b8cab08b1b1ee6", + ".git/objects/19/8349e6bffefc08a018a1a6a76b923ad735c977", + ".git/objects/19/8a23a95404125fcf170e0bde9f638ffa03a623", + ".git/objects/19/8c62ff99b09e24aeb75fedc3c7ebd2fa385ca4", + ".git/objects/19/961a83950fb970c6851956bc65f1580157b67b", + ".git/objects/19/9a2559c162ef9735a6e5c6dc954ca866f38e12", + ".git/objects/19/ac0a83c9641e0a80082297742b30a92abb5539", + ".git/objects/19/ad56b87e11b4358cef9d6732fa0e90d7ef81ed", + ".git/objects/19/b683fddc825d497c6b3e473687d38b191ed30d", + ".git/objects/19/b90b3195f6b2760f151cc518a28e602fc36056", + ".git/objects/19/baf5272997cf06ac6139628f2ed8bf71294d81", + ".git/objects/19/bee909788c10eea18c514f4c56d9400e0e5714", + ".git/objects/19/d666b740eceda622250984da697291646b256a", + ".git/objects/19/ded0fa251c203f78c4a7ea6d954d2f64b1f389", + ".git/objects/19/f02998baddfb62c53fdc3eabe95d40eec2f595", + ".git/objects/1a/0aa439eadf8f0aa868429802c9c14c6388f7ee", + ".git/objects/1a/0ee93077009b4c92d9d2771c9428c8d9c16955", + ".git/objects/1a/1a252befbdeab13310ccfb8d029abdc0248892", + ".git/objects/1a/22eb010b2b15721ec161e8c37886e040e7ceb5", + ".git/objects/1a/2cab21a4c5a9cff92b76757f7098d267dc32ce", + ".git/objects/1a/5b7fa9bf8d2a13d683d7870856d3f8c417d476", + ".git/objects/1a/5ddc0ef09f3ada546ac586720e76dc405a1cd7", + ".git/objects/1a/5dec660f69fe43c21a7c4ce3da3ee0c5f41169", + ".git/objects/1a/6af1198d7aac6e527e02f296cd96f565a1275c", + ".git/objects/1a/81e3d0674ba74dc454ee39e94aaf52dc133268", + ".git/objects/1a/860a7ab079859676c8d4d4a288e294f65eff19", + ".git/objects/1a/8c0f9577d6e66c7dde7656c8a68fcef581b691", + ".git/objects/1a/9f6dfcea6a63d14f6e83a3d28b188ff6c5153c", + ".git/objects/1a/a1c84decc8f20f6655d5617ae79eb9496a1b70", + ".git/objects/1a/a942c0bf55e91eef0e44ca9914dae78d9fd82a", + ".git/objects/1a/ad634e1f7645733477bed518032ebd018c0e26", + ".git/objects/1a/b048023bfb3380fe91c4911a8b40f38f20fb8c", + ".git/objects/1a/bffa2dc1ba66039b7bf318968dd01ec644fade", + ".git/objects/1a/ce7ce79c8f758a1a5a18966272d1a6c52cb010", + ".git/objects/1a/cf874ad66a40b28223ba68a70f602e0d723206", + ".git/objects/1a/cffc61886d6465be53d60d3e2100511be953e0", + ".git/objects/1a/f36d09dac57bf8888da697c89e1ee01d350252", + ".git/objects/1a/ff02e90cc033f460f1d25eaf02599ac6505686", + ".git/objects/1b/2249f40105411003022a9f91be075e195cda2a", + ".git/objects/1b/286cb9c4a533f6736383007f84c356cc66bdbf", + ".git/objects/1b/3fda8b119ac0b304040a04940b08359509ab3f", + ".git/objects/1b/4125f3fb1d3aba16320062fa4405fa0ce118ed", + ".git/objects/1b/47984f544229f55c9240ec5dfc3362fff21a10", + ".git/objects/1b/515562efd6455c1103d5941f5856bf6a670dd3", + ".git/objects/1b/6ade04fcb0f534e0ab3bec9ce3a0eafbfb1565", + ".git/objects/1b/727fb7a16236fa73a6ce5286e5d38b5bea1eec", + ".git/objects/1b/85b556139b73c06d855d0b9e503f4043458f25", + ".git/objects/1b/876ebef74c79f2e525aa163855f0332757d83d", + ".git/objects/1b/9b1b41ffbe3a937c298366ada6cbf33e20f1e7", + ".git/objects/1b/9f95cce2ef96c5c517d986f1da53d9130a992f", + ".git/objects/1b/a40b0cdc4fe6f08af8e57c69ed5927968c4ad1", + ".git/objects/1b/a6f75b8968d5f7e05c9be99de2118c8bf39357", + ".git/objects/1b/acb402a5a9ba43ea4ebb5ddb249f33e94fb7f0", + ".git/objects/1b/c6814db8639da81dadf78a9a295efa394e9cbc", + ".git/objects/1b/c71cb5a0d238f41a54e755cc0a202c22636967", + ".git/objects/1b/c7b58d0d854358b47b7f96725ec7b55058406b", + ".git/objects/1b/cc3f7023c11a5ed237e0e33958bf9b8441c789", + ".git/objects/1b/d4a041a5ded4e97a3e83a71fe50fdd09db56f6", + ".git/objects/1c/02db929a03289b00f748a3a27ff9247b7fab37", + ".git/objects/1c/0c2e7ebaef1e701f14be054b9a2236e02b2055", + ".git/objects/1c/1245906af06fc111250403ab8187beb31b2f66", + ".git/objects/1c/25299c3e47270d368f50854068c22ba716e668", + ".git/objects/1c/33ef4132721c30ed1b853313faaa9015628de2", + ".git/objects/1c/45c25d2f738221981efc39423d50c6a36649ab", + ".git/objects/1c/755b0e33f4817924b93c487161a2f26daa5f6f", + ".git/objects/1c/7e497f424885c9ae43ea1faaff230442dd03f1", + ".git/objects/1c/8be3f9f26a8409137afe8ecc7060448a895481", + ".git/objects/1c/95aab3a34f9cdfa2cb73985acd30bfb71a794c", + ".git/objects/1c/a68bb282563e5f141fe91af035d68ced57405b", + ".git/objects/1c/b169764e33fbf8778519a4f74c854dc318555f", + ".git/objects/1c/cb881fa23187e8805544b860185c1d3ddd78b2", + ".git/objects/1c/d566bc6390f7bd8d187b4319cad6ef40ed3b23", + ".git/objects/1c/dc81485a3d3a0684ec2ccc82ad11da14b61b85", + ".git/objects/1c/e47f922c0484db3d89ef458f48e7b105510608", + ".git/objects/1c/e66e9e3dac9394478afbb47e67f5e08473e6f9", + ".git/objects/1d/09d93396160f7be658c3097c486ce21acdcbcb", + ".git/objects/1d/0aa3de809aafc03680cfa3bd07c1b0699c69b1", + ".git/objects/1d/0b50b94111ef18d9e4b404ee07960ad01c8d79", + ".git/objects/1d/3a5a7217d0936fcfa9371f2de9b021badd2d20", + ".git/objects/1d/3ceaf3903fe9db412a776733e41f19a77cc8b2", + ".git/objects/1d/40f905e4871113e6e184d12892b7b1b7ab85bc", + ".git/objects/1d/455d76cf748c71b76b6e6045ddb35564d0e2b3", + ".git/objects/1d/4a0b0e772b34bf5e6dbb3f7039c1bfb983a88e", + ".git/objects/1d/523b40c692cae02a4af5d77818f672421312bd", + ".git/objects/1d/679826eacb214c7837faf33aec8f724f60abbb", + ".git/objects/1d/68d90d87a9b2f722359c7b136fd10e9a2e7ea9", + ".git/objects/1d/6957be8d92e0945e760abbb2c3a92ff508264f", + ".git/objects/1d/6a312c223ae344aa7ee483885ba4934f1a7526", + ".git/objects/1d/6c51ffcfdf55d1fc36be33807bc869e2469637", + ".git/objects/1d/767253e7f07056e9e49dc3da82927ec7cd36cd", + ".git/objects/1d/86c4668c1c838a78bdcf2e52f8a923ed4f38f9", + ".git/objects/1d/95838a6581aa59200acb1534c07288c7f95bf1", + ".git/objects/1d/97e996c1e3975287cf16538570a365011d6b9c", + ".git/objects/1d/aa12a3b13ae3f40730fbfb614fd5661322d60b", + ".git/objects/1d/b127c0ab3a0012912c8b4ebf2e53b6dfec8893", + ".git/objects/1d/db387bdd8f7d0f590e5d3660f583306d0f19b6", + ".git/objects/1d/dd7d89127997b5094b704661094ec37dcc26c4", + ".git/objects/1d/dfb3b1d51202dfad2a484a09eb02f1cddc9bad", + ".git/objects/1d/e43d84a6ffe36760fc70632f8efef37ff90278", + ".git/objects/1d/e5e448f117167a366df15caa1d40cdb5c44755", + ".git/objects/1d/eb126f185da90ee99ecda3f4a3ace3cb8e709c", + ".git/objects/1d/eb2e275200721c7944a7474f4fc4b30be81887", + ".git/objects/1d/ee44b47f4a0b61e1e4ad6384dadf2a8952fc42", + ".git/objects/1d/f0c2265267b11c31fff6d98961231c2d315bc7", + ".git/objects/1e/0230d737f7fb2f8e3ba69c81364a37a4ae1c2e", + ".git/objects/1e/0be7d63bef3784a9733978e90487ed95e95bd1", + ".git/objects/1e/126c14dfa0f575d2a96848e56fcac8e5903bea", + ".git/objects/1e/16baf9bd178777be16f5b33458a1b8a46d0987", + ".git/objects/1e/1dbc09ceeebe9d34116a5a8d93d3f13205396b", + ".git/objects/1e/27f6680733c000b57fcd4be29b01526e467c5a", + ".git/objects/1e/2d63a78cfb344f9a971009b40c9bf6d870f75b", + ".git/objects/1e/365387eb941439c796bff4bc676816c49df50c", + ".git/objects/1e/48783136705abf798104fef7d970727eea2ece", + ".git/objects/1e/4f237163c261d0379b572d3af4ada425fc0226", + ".git/objects/1e/5a77a85d4f13d98dbfbce2cb327769676b559b", + ".git/objects/1e/6c9299fc532e37a73b1787fa2df9aaf20cf2a0", + ".git/objects/1e/6cf568504ab04f46b723d8dfeb3740b4b8ef83", + ".git/objects/1e/95b9ce765de8dd9b7da4e35254522b65c1e523", + ".git/objects/1e/9943473b3d81e479a71fc57587559f65746343", + ".git/objects/1e/a6e6e69a1b803d4f8c3f6548d49503f35a3223", + ".git/objects/1e/b1a68d261045c447de2c7bc87724cfd3b9d9f3", + ".git/objects/1e/b8eec278bcce71515bfcef45c28998519dcbf4", + ".git/objects/1e/bf92e71b51c529d9179154151c831c3f8e952a", + ".git/objects/1e/e7a63d8a09e29e11b698ae470ff622727ff804", + ".git/objects/1e/f9d931ba1960b9a87719428c2bac8b2f993cdf", + ".git/objects/1e/fb6bb2d1bb15c6f60afe4821aabf35cf01b5f7", + ".git/objects/1f/0205f68603e1d135cc8738571e63d7b0c9555d", + ".git/objects/1f/36c47306ec31f9a65d91ae73416713ae59fb80", + ".git/objects/1f/5111905db8f486a041fc41f87503c3e91f9c1a", + ".git/objects/1f/681bbedbc91923fc8b6345904cbfa4730290e3", + ".git/objects/1f/6a46c1b559439ce7c2e1b602de108ebff95a29", + ".git/objects/1f/701985fc8bdbc3b159c1b95f9d56f31832d978", + ".git/objects/1f/87866eaa888ae3a2b85a31e4e7feeaae4cc8c2", + ".git/objects/1f/8a145cc766b6b6d8b0e9a0c55d023fb27becad", + ".git/objects/1f/8a8708b14f0950b80f030a9461fc73c0f66360", + ".git/objects/1f/8f6b866e62f3177b2e4f53fa6c3d3a0e27d05e", + ".git/objects/1f/dc4f466d2e26bcf57376a4ab198d38d28f72b3", + ".git/objects/1f/f301e0ea6479d87d184bd1a2d5618e8a858bb2", + ".git/objects/1f/f733fefd6051e865ef7aac5f2f57e65b5d8580", + ".git/objects/1f/ff43e4bfe0fa6267480f40c9eabd691215ac59", + ".git/objects/20/00d20fd2aecbab24707241610b0a69a8d7540e", + ".git/objects/20/074b237a8de655d7bd3990b221689f4423ad30", + ".git/objects/20/0930fd9deae585d7308deb17e3a5774d1d949f", + ".git/objects/20/12c58c8efea2f76543f4056329fe0fcf10e127", + ".git/objects/20/16e2d5aa9d0977e1327ad40ed109e032c506a7", + ".git/objects/20/197d158fa7a55634b6f62eb37715e8703888a5", + ".git/objects/20/2d478ce4d617b58d0939dab66e447e6f96e660", + ".git/objects/20/2fe0938e20ea45e18d6db314a7d2be4ac567a3", + ".git/objects/20/4db031454a859a93d92c0190b18d53bbfa5f99", + ".git/objects/20/5ac1724423d31d01da7b75248f30d5aefbb2f9", + ".git/objects/20/6fd1fcf76c8901cf7ea39d5e2947aa7326bff1", + ".git/objects/20/72f84250deecb48d6ae8a1814d8faf5161ed1a", + ".git/objects/20/77354c23762228b4917e2733759041a60284ab", + ".git/objects/20/7fd43a814502079f643da395977513b4a08bb8", + ".git/objects/20/81d0c5d05fd50db6fc9ee2b11e250816623a1e", + ".git/objects/20/8de26e745f1a6b70bc8aff33dfb15e7b06adab", + ".git/objects/20/95ef480f16aead68770c85eb3b42009806777b", + ".git/objects/20/95f6d40dae7caf760c57af05766b3026c28034", + ".git/objects/20/9bc56f3edc9a613778488dfe969c4b92e15522", + ".git/objects/20/aef09a481faac39711b6a6f31975dcedeb4bd4", + ".git/objects/20/b2ce0998797cb99c8f9717632806ef96a18a1b", + ".git/objects/20/cdcb2bdf9ac1f0461ca18b5e01c0a1240969e2", + ".git/objects/20/d719c77d7bf8063da3472f1d252a80208b540f", + ".git/objects/20/dc5e1b1b615a1c6af131f401ac3d687f4b1f55", + ".git/objects/20/de363097afc752b3ea2592ecced2579e309f30", + ".git/objects/20/e91f8065d9107b4c720130d28837283944d758", + ".git/objects/20/eb6d0ab7757e797d8c7116e68a8005be2a1aa7", + ".git/objects/20/ec1ca06e95b08562d7336701666038da63746d", + ".git/objects/20/fc9b296a68b070c26e252ce835fdfb10a258d2", + ".git/objects/21/09839f643a3070be9fbea594fa5730be27e164", + ".git/objects/21/0ac48e599c2946cab029eacbe3615d5ff082c5", + ".git/objects/21/127da3dcec5602caab87e78e0baf13807db483", + ".git/objects/21/13b63d0adec2b83dc0f9eddf3e75053027bd33", + ".git/objects/21/17c581187f7df6be653c2e47edc657a16ed70a", + ".git/objects/21/1831bcb27b45dd58a8ac204e2990be16abd85f", + ".git/objects/21/1be13a72b0424448c102324d9f0cd1fc7da026", + ".git/objects/21/2b1488dbb4aca770a050f45ae2b9cd211491c1", + ".git/objects/21/2bd18e7dc016b0a6d128ed73789c9ccb2d152e", + ".git/objects/21/34ef04dfe59640ca804b97070d92ed26fa644c", + ".git/objects/21/4a61b1b357ee85c1f8015087f7300bfa99d9b3", + ".git/objects/21/4e550125fda860d4963845a6f6ed0643a94098", + ".git/objects/21/5be9f4dcaf384dbc100c6ef64ea45d2d3365bb", + ".git/objects/21/5dfefdba986e5ca184fd2a5b1bb779e3471fde", + ".git/objects/21/6547478a44955c0fc34ab469ad96616eaab855", + ".git/objects/21/65e286c49adff98529adc59dc07a6fa196c6aa", + ".git/objects/21/816d129bf7a34187382483af2e64a43b8546c3", + ".git/objects/21/859dfe030f31c66ed8bc303c175a363fcc7554", + ".git/objects/21/a038218e698c34b132368c95a1a6034643b58e", + ".git/objects/21/af6673533ad165968aefe1dca2b60ad925de54", + ".git/objects/21/b306fc70bd56f4366f7d6c2c3b02340d5ad874", + ".git/objects/21/b972a13735993fe16c8dbbdef6f9176e10fc58", + ".git/objects/21/c051c25fb7d34200adc8063d929b2667e20290", + ".git/objects/21/c322e78c624ddc92d4008ebdf03ede280170fe", + ".git/objects/21/c9eb639c3738404edf86f6aa8355b2832674d2", + ".git/objects/21/ca4b85e51c1152cb98beda4abb16cab0357800", + ".git/objects/21/fa680b7286f3fc4688b7fa8a60a4afa88518b7", + ".git/objects/21/fb7088f72224fb9b0e3e6c45f9b454038efa66", + ".git/objects/21/fcdb779676fc61d9d8e2d6eb8e0df3d282e705", + ".git/objects/22/13a9a4cb3bf55fdf5939a2cc5d86ffbe536eb1", + ".git/objects/22/178f3750afd5d0bc20e605801b9315dcc387e8", + ".git/objects/22/18bf97ebd19f8973d41d3ce248d7ccb8d96f53", + ".git/objects/22/2f92c4fe1cce9142a4a4693c3fe3e73ea626f9", + ".git/objects/22/4609bb92ef83ea150de5d7ba24b43c5220b2fc", + ".git/objects/22/4df383ea9315406f6e2165972abf8e1298b83a", + ".git/objects/22/58ea82d359007e5193726fc3ab363a557c0e4d", + ".git/objects/22/59c2811e088a0779b5a8e940402be3a5274d59", + ".git/objects/22/5b6c8f17f99b433b03daad51ac23ee8e3b1d99", + ".git/objects/22/68601052db878bd95490f9eac6f2b3ec8cfb87", + ".git/objects/22/9413edf0f8239957cd092dad30135f36bf109f", + ".git/objects/22/a9ba60cb3e98e1f071e28c10a84a9002e167be", + ".git/objects/22/bba7c00e190ddda7d093940af593ff8a24a00a", + ".git/objects/22/bef1778edcb0bafa18926eb7b6adf6cfcc72ae", + ".git/objects/22/c03728b032c72b6546051a35a51fa9a28cad26", + ".git/objects/22/c22b97d7941928f7b6fa1b7f22242e60c52e05", + ".git/objects/22/c33a5dc62bc4c8dc4ca1676b17f324abfc51f0", + ".git/objects/22/cb686129e78fb714d8aa9f804d9fbd7f9bb126", + ".git/objects/22/dbf5bbdafe47866f93dcd3f4acb3998fe4ceb1", + ".git/objects/23/058cdefe5beb5fe945eab596442dc641f12f53", + ".git/objects/23/06a02073c4649f4ed53351b0e7e8a9348df827", + ".git/objects/23/0995a1200c5d8c86ef7a2190909495f4c23a80", + ".git/objects/23/168109a2484c25a0d7eabb42782a536b81eedb", + ".git/objects/23/1e8600668f655596fe79fe34d7b3a59fd839c0", + ".git/objects/23/1f3d16dc60dcc4d734b187de2148d9162f9b39", + ".git/objects/23/24d14e905850a4a52fe2920871edbc2233e2c4", + ".git/objects/23/2504c8de01c594a5d83e11da1a0f048174fbc7", + ".git/objects/23/2d9501ebb9c0a45dbaf880548ea41fc19db7c8", + ".git/objects/23/3641307f44d6f18b80760b91a66cd42b085c0b", + ".git/objects/23/62dd2c59565f8a0f0a0d3bdfeac71572b72150", + ".git/objects/23/6d5788e00d0894475a7d76f0a3cdb09f64b87a", + ".git/objects/23/88bbd34fde24b28331546644bb73416b2e975e", + ".git/objects/23/8a83d001de70095606ba9e93ac89fdf5fbf85c", + ".git/objects/23/948c071f5a1e4fac0206c53e5d01a0bc481d5b", + ".git/objects/23/a56421b272ebd10b4e17b21378a99379412418", + ".git/objects/23/ba150cbcb039d656724fbb235d54aa71280386", + ".git/objects/23/c54390110d6a160293b2fb97126464447dc771", + ".git/objects/23/c661580e9eb7eff9e4020b5d159e5f37a2d7d2", + ".git/objects/23/cc21f7c908fb6255165d1b26db4d292c2078ff", + ".git/objects/23/d53ffc0fab071a4e898f473f38cc6b3469f6b8", + ".git/objects/23/dd3ad145d8e5e1f732d4dadde4676dc725af15", + ".git/objects/23/deec5e6535fc718a7171a00e0defc824df88eb", + ".git/objects/23/f486c06f4a483a0c3bb3ae6e3f6782ab506ece", + ".git/objects/24/0eb780e15fc7af89794a1e24c014eb14aead56", + ".git/objects/24/1137070581f9c84b01dd71ae2a0347882f4b95", + ".git/objects/24/2e2803b40936b0e3a1d0477023e8c1e272ad97", + ".git/objects/24/361fd0f80f5a6831af054126f1e5fd81e3e0f3", + ".git/objects/24/39b3efdef2d7eed0f6246c86a10caba4968811", + ".git/objects/24/433e3cb654417c90a6bb82b2c86b2701cc77eb", + ".git/objects/24/461cd02504e030528adf63a0aa71cceafa5371", + ".git/objects/24/4bd85ed7a00ef596ea677edbbfa65f8e4fdf51", + ".git/objects/24/73992be123977ffccc3e00b9303a1c74fbb354", + ".git/objects/24/74ade10ff4a64b8a5a6adb4cc1e5bef963a05c", + ".git/objects/24/77476e8ccf7e606dfc6a1d278dd949f11a6722", + ".git/objects/24/7cefaabdceddcf33c2939acbcfa7a53470db5e", + ".git/objects/24/7f7ccede5be5b348c77530ab2bfa0e3eb6809d", + ".git/objects/24/8e5790a0b5229b9447594e34179cd6dca449ee", + ".git/objects/24/baaab6df49044bc068d008c194b872648c18a4", + ".git/objects/24/ce1a146f335ef547a2dbb2ce7f87631d7ce9b7", + ".git/objects/24/d61fecf5d95bae43acf6922bd2155340efe6a4", + ".git/objects/24/d72f82fbbf6cb415409cb103558c55d4fb71fb", + ".git/objects/24/f1432d6aaaef8800be79bd70488f9368bdd4fc", + ".git/objects/24/fdd933b4b0df064625822bab8e889bcb2e12de", + ".git/objects/25/101c2c43a57cf3d003b7db83b6a00c4e8a4c5c", + ".git/objects/25/11a291ed021239a3cf5ac5941fb8fc33b8567d", + ".git/objects/25/146eba48a48c10b9349beac2768f9af7e5425e", + ".git/objects/25/189368034b6e2f46a67f61ec11d00ebf6cefbb", + ".git/objects/25/228e589f404ea9782a0baa692e3d38989fc911", + ".git/objects/25/265fdbca9d14fdc9eb30e6e3b578874d1ed30f", + ".git/objects/25/34ba12c99320b49c508932ca774882ba7281a6", + ".git/objects/25/3d41870088dcc24ff5b4b0c66ed5552d17afe5", + ".git/objects/25/47be07282ce149cc094d2918bf91b9ea05a10f", + ".git/objects/25/493e89e6e2d9bfdf398aa442866693ac3c2e16", + ".git/objects/25/5a017c5dd5079532be8349846c8292dcbf8aa5", + ".git/objects/25/6066b2095d4b14168316c2c0546e74e236c71c", + ".git/objects/25/60fd41c53220036e3969416aa3b0576e3f85a5", + ".git/objects/25/61f4ac7627de0319732d31e912c65a4572b543", + ".git/objects/25/72a4dafd6aeb1aeb1e30b66ecd665faad93143", + ".git/objects/25/a754324bced8f0ae7343ccc216ba619fab2a17", + ".git/objects/25/a9900609e6f9a2a153a7cce8b4a8e445752e6d", + ".git/objects/25/aedaf6e6a2a9bda45b850166f5a83411269fe1", + ".git/objects/25/b5024440439c5d76ffd413d0c04e08e3dbf06a", + ".git/objects/25/b773c4188e47c70fd6e33335a51485c38772f7", + ".git/objects/25/bae6dfa5320600c449fb6a7ec778e09623085f", + ".git/objects/25/e0f9c6aec109c80e24d91c39abb24b6b927981", + ".git/objects/25/e197bfcea907fc6b326e46ab348e7447382d8a", + ".git/objects/25/eaed9ac5edd1cf1464607a9e7111900d62abc6", + ".git/objects/25/efae553801a37331470afad8bef45a8f10c802", + ".git/objects/25/f972daa19c671d176a3768912e4513ddecc2e8", + ".git/objects/26/0d287b9b2795eb49adf9079f318ed69c765e5a", + ".git/objects/26/10c98ab87466918dcf903650ae3d7baa91ae2b", + ".git/objects/26/1ed1ed1d11bbe59fa0a632c6a85c0c08e6fcc3", + ".git/objects/26/4315aea8a9f3d9ca403347465e70c77689f061", + ".git/objects/26/46802bcb15ed68bec19f55ffbe687dadf8431e", + ".git/objects/26/4ac064dca07be6d8bbf927d0923eb538ee9541", + ".git/objects/26/5b04e2d044828674d3e0c729310180e0ddb823", + ".git/objects/26/5bfa499c8101f05b72b80f868ac55435a7c535", + ".git/objects/26/5ffba6b270507e5dd1efab84d4415a8b3215b3", + ".git/objects/26/623358f168ead8283f3949a7e6a35f6c60477c", + ".git/objects/26/65f9501012a0828221d62b4ac727170c407b09", + ".git/objects/26/688f22c661ffa71f904746d9f7f0d501173e59", + ".git/objects/26/6895e955209fe995b293c866ec13fb33282b08", + ".git/objects/26/70566d20e026473392d3616152210e83c8cc00", + ".git/objects/26/972ffbe610c91a9bed543d889be698a9e16208", + ".git/objects/26/9a02250b76f1042e5d3a2d87ff63f1c8d061f5", + ".git/objects/26/9e3789b8bd6164d80362a00c980639f74db05c", + ".git/objects/26/adecb7d8cbb148b5f85fb638cd8b090e1d3dce", + ".git/objects/26/b31342d71cc0a5b98c6b5106486c110259fcd4", + ".git/objects/26/b418ce742ce4c243e4f1cc6d8d02d5a4c75a0c", + ".git/objects/26/c39a0d16d8fddc82a18024391063a0237730b9", + ".git/objects/26/c40df9c4b2829d1bd89bd3c6c25c2a6f13235b", + ".git/objects/26/d63a7c73586395aeb42b358a6a41759beee13a", + ".git/objects/26/dafd84b62af0039313d4bafb7e5e4d6444ac8a", + ".git/objects/26/f8fb069877fcabf2f396d5e6325c83560887c9", + ".git/objects/26/fd488d7db6a8e43abe84715a674f61b67e1c2e", + ".git/objects/27/0563891f84b8d5d239fbd61b8376588d5f53be", + ".git/objects/27/1bd75d353dff1c3fc6c2beeaae866cd111afdb", + ".git/objects/27/272607e7b37f3b08df3d65ebacfe4040eabab3", + ".git/objects/27/357a3ac9957131b01199ca2274850810b76659", + ".git/objects/27/362678737b70aec9a1c5d6a44fa50f74750ca2", + ".git/objects/27/3762534dd8cf5ec3eef5b910ff77b31cc36aa4", + ".git/objects/27/3b097f3431e8f743ff31b567828eb1956d8eb4", + ".git/objects/27/425d045600bf2f18226b8d2a59bd71e61fdc77", + ".git/objects/27/451e7c5571eda0ed9394571fc1b7b4830caaba", + ".git/objects/27/597267e7c66f102f5b2b029880ac79e307a6ae", + ".git/objects/27/5c9b082e6ff31b3e64980f29250d94b4330a5f", + ".git/objects/27/5d32c194c9b32ff08166bb4e1be2ddb340d11c", + ".git/objects/27/5e8b1611677aa253d986947b36930719d624ec", + ".git/objects/27/62eb192cb92d71eebfb1631af420a30556e402", + ".git/objects/27/6471a11b2c1a503ed5dbccd01d62877b1263ae", + ".git/objects/27/7399d239e743e0332932d6376308a43c207fd4", + ".git/objects/27/7cb15a08b41cf214975637d98611875a547f1e", + ".git/objects/27/86398889f1ccefe908c9cff1ee67f37f665faf", + ".git/objects/27/8a06118bde490f43de49f13ef53427892da29e", + ".git/objects/27/8a2e1ce965976352081d6e5cbf07a76ca6fcc2", + ".git/objects/27/8c89528e521dc76d0d7db9b040e531b2991b7b", + ".git/objects/27/a947fe335e956f3bbd1af0315cbff84287a330", + ".git/objects/27/ae2268de38ebaac2c2dfedb13355b7bd85c3e0", + ".git/objects/27/b043af0e9a644fb9f1c88fb3c0494b832f15f8", + ".git/objects/27/c7a51b4481d9cb2994e36371d7c3f8943ec970", + ".git/objects/27/db1a55ced4855e7fe3c3df2964870b41fe2ae5", + ".git/objects/27/dd3260435412ad5b4dfe60820a57233a002a59", + ".git/objects/27/f1c9e49571d1e26567ae556f164d73ed7947c5", + ".git/objects/28/04b30af7fe3ba5e45f8e9275b6099267435f31", + ".git/objects/28/21e991c28c044008cb89312ca92a149355d504", + ".git/objects/28/251f4a11274337e0811740e0dadf26b88b75a4", + ".git/objects/28/27c565b7463a208bcd7cb3a23556e80af0d0f1", + ".git/objects/28/2e8c0d8b21792f15f059bb4a7fcd76b962ea6a", + ".git/objects/28/32317d35384dac4e66ab476faf25a46e0dfcf4", + ".git/objects/28/34e4ab752d67ebd345b372eef03999afe935b7", + ".git/objects/28/429f4f68a7f2ee406d4f459250e71f6974bda5", + ".git/objects/28/4e9befa17ce21306176163d80284381e3eda8c", + ".git/objects/28/54c6bcad05a9ec5790c246b5118574ac6a837d", + ".git/objects/28/5e80995deb04e054cb70b5b10a816784a62935", + ".git/objects/28/64335b02d2b06c80a6be194624d729f1b9df0f", + ".git/objects/28/6687b697f26d5d1c007eb051d9746bd0b0bb62", + ".git/objects/28/78ab833fa7a69acd60446fd5557248a3c674df", + ".git/objects/28/7ee9a3c4f95630f4fbe277d12ee90225d5484d", + ".git/objects/28/99b9d5c866449884a12fb3d07a188df14cb47e", + ".git/objects/28/a09adfd3e8140f993bf07f64e3cf11c8c086fc", + ".git/objects/28/a2a4e3156889d6e769d356a30089c89fe7481b", + ".git/objects/28/b22fe87a29d71c64e978080f5e0142d34d4dcd", + ".git/objects/28/be0c9d7c66d28496d0399ef71d6ce17ed6afe8", + ".git/objects/28/cd352524d9e74b864f239ea2df6850357aa02a", + ".git/objects/28/e98ca49ff11713d6624a84e3499af0d95907ab", + ".git/objects/28/eb20b252472ddd5e925effe2a981adb118b720", + ".git/objects/28/fc6066a6fff15479024a09d7a164a48269c42a", + ".git/objects/29/11c42b00b85f638149e5d4b364c9cf2bdd3715", + ".git/objects/29/1742fd72ce43aa9756724246ddb4188d00eb1c", + ".git/objects/29/1984c5df68259b1b0cb2e2928fef4dfd1d8b63", + ".git/objects/29/20109e0a73af9f8d4abddc20c59dd4f44e5eaa", + ".git/objects/29/20e75d942d6fd812ceff7c4d02f7e83ef78de0", + ".git/objects/29/27d2912f9a465549ab6e8f7c795787af5fc0a9", + ".git/objects/29/294a222dd301a5c1e09f5fce5430adfc495ed5", + ".git/objects/29/364e57660e23774099b5cee0bd21434dffb198", + ".git/objects/29/3cf982c0dacc9ffd32839eefe9dbf387ea9334", + ".git/objects/29/3d152f9d8b30222392b677a927ae99157de888", + ".git/objects/29/5244276f82f6730467686f310bace7ffb5c8f3", + ".git/objects/29/82f0f9fbc21a85c2982e03a3118915fe9cd086", + ".git/objects/29/8b901f0aad508827dbe105689ef09e6afcaa4f", + ".git/objects/29/9556c7ab581f2c9d8bce927b502c5ce2b28bb7", + ".git/objects/29/988651069785a9ff8c964dc0f49c590dd33fdb", + ".git/objects/29/a72ffc8b92d473eefcab585a1d6fad21944b67", + ".git/objects/29/b05ad45d9f215a317d0680a697d1dea987c458", + ".git/objects/29/b07580b89f5a01be270f1c4d8ed336ed64105e", + ".git/objects/29/b5b6e81f77378b3de8ff7fa4e1d76462b2a5ee", + ".git/objects/29/bc388931089ba095621d785d122175c67fbd4d", + ".git/objects/29/c412a6fc4268cbbd4f8ec9b312fa0a9a987742", + ".git/objects/29/c96a216dea759fe6a80bee05c4799520bfe618", + ".git/objects/29/d6b9bfa03bfb41b693cab0ddf6eec3b7e092b8", + ".git/objects/29/e57ac2473730368e97b35f99a6840a8abd2208", + ".git/objects/29/e85572d0d118b089072c76e16d8a2c8b9ae24d", + ".git/objects/29/f7feb53eb2e462e672e7960f99e55a6276df31", + ".git/objects/29/ffb68e8b44946eaab4b5ce90c1faf1f73e2b40", + ".git/objects/2a/0c75a01d36298b314f4edce817ac94da823a41", + ".git/objects/2a/0d034f29bc93a8c5f045a3456ba49a7a23a6f8", + ".git/objects/2a/1d35205e65765448b60952cef172f7fc9fd185", + ".git/objects/2a/1dedcc70e1b7b46de8107f0be830fc199d6a24", + ".git/objects/2a/209aa89c543a030c29424d40019825814920b7", + ".git/objects/2a/32b2f59ef616b34b5c4c128c86bd26f7b8dfc4", + ".git/objects/2a/33d199ff4dcaf189ac2cab081af7ced4fefcc7", + ".git/objects/2a/430746a4d2fb9ed2ae551a53a6fb6f0408888b", + ".git/objects/2a/554dcbd81510bf5ed6440fb967fea723231bc0", + ".git/objects/2a/560a4046f07017868566abda4581d7e8ee80e2", + ".git/objects/2a/614061ce774003181aa17f2fe922a7dc1a8df9", + ".git/objects/2a/7858b16d9dbf17e52102fe6d9c89c579071103", + ".git/objects/2a/86f2bab881f3c0018e214d23c1ad47bf102445", + ".git/objects/2a/8f83883a58904943be9f925b13b7d2133e2983", + ".git/objects/2a/93e11f90dd59b38108e70fa521bb8994631515", + ".git/objects/2a/9e8337d48207237442453f55c7b649e901446a", + ".git/objects/2a/a442dedfb84b44b841ded16897e0938e465326", + ".git/objects/2a/aa39177a2f061307d3fb536738bb6e382a252b", + ".git/objects/2a/abee75498c0c8f20d3dfa7f3205b8ac47f7fce", + ".git/objects/2a/ac8de135bdb643f276493aaac4d7cdb5f4469c", + ".git/objects/2a/b39f3769dce284fe507864beb8539c7b90ffb4", + ".git/objects/2a/d0eb543929d8772d656745e8539dbde8de1e1f", + ".git/objects/2a/d28ab1306fb581adef74ca82d6e6cd4e51e870", + ".git/objects/2a/d298a959b094f7ade4b9717916d74da0d84484", + ".git/objects/2a/d321655f1eca9894d011aafe42712999cad45d", + ".git/objects/2a/e3f9a76e35e10d67e4cec762ac9f1320c120aa", + ".git/objects/2a/e43b0f1e66f12f6535a28d817d7ef9c45c5191", + ".git/objects/2a/e6b4d50c03c0473e46a15581e8791e050c8f37", + ".git/objects/2a/ed1b53920cfffc454abb01351d41aab197942d", + ".git/objects/2a/fc195bea7082b1b444ddadb0c341fed178f807", + ".git/objects/2b/0005a8a823894c9a2d1f4f2990b5e3f29abd90", + ".git/objects/2b/1c0f7a9a8ab2b5796781939a8312355b18b73d", + ".git/objects/2b/354746fc2e8efd0bb8c3c92662e78552cad65b", + ".git/objects/2b/35c1c3f48ea6818cfb28e52003873481d44e2f", + ".git/objects/2b/43f8b8163357a3072b68eb8343081a168b6577", + ".git/objects/2b/4718217b533c007cb9c828cc1c40de63b03609", + ".git/objects/2b/535c7fbac6ed63257d33e58298c2e43492c0ea", + ".git/objects/2b/562b2850194d9dad53d64858207090291cb4cf", + ".git/objects/2b/699216539649afcfbfa9a9bae5890cc515478a", + ".git/objects/2b/6b19ee516b5828e648766b5f80308c6f33e096", + ".git/objects/2b/6bc18e2082a45c7e7a956008075b85854a3667", + ".git/objects/2b/7f41dc5e0444793c1c082ad8589b6863939aeb", + ".git/objects/2b/830e1c2eb1f3459a65994230c413df04464771", + ".git/objects/2b/83eecaeb747d52dd000667d8bf142b61908a7c", + ".git/objects/2b/87cc2ce56021fd1c18f08a10c4c87545bc8824", + ".git/objects/2b/a131c53f6ee08a6acef630b30992b634ee4d2a", + ".git/objects/2b/a135af32aaf197f8bba902cc478a562b50c579", + ".git/objects/2b/a4056be7f3fdff6f269940f30d1ddf0f9ad794", + ".git/objects/2b/af4b9cb676552076262018002660e41446c4d2", + ".git/objects/2b/b5921fdace1e557390242a8282bd93fc042a73", + ".git/objects/2b/b667bd822c592a372ed7d03baea21b19194f74", + ".git/objects/2b/b81607c4a4de1c3bf7c052740b56d20498fea5", + ".git/objects/2b/bc2bf49efafc46d76e45f8863e06ba9d3baa42", + ".git/objects/2b/bc4453539f54fd68573adc57859fc508181633", + ".git/objects/2b/bf47d5d82010f9ade303738ddc2109372977d4", + ".git/objects/2b/c0a98e7117400f3d331f2d4b320d877f4e5748", + ".git/objects/2b/c25ae3785f759fe2f2e965f1ed31c34d006a5b", + ".git/objects/2b/c420642f7b848a4a61af041bfefd37c59be2d9", + ".git/objects/2b/c6d192ef45210f9622c3f3afaa77627ba2e0fc", + ".git/objects/2b/ca6914bcea67474317348758d8f06dbbf02516", + ".git/objects/2b/d5f071c1c4df074b44cd45419397d5d74c5505", + ".git/objects/2b/d9921fa2d57963bb981b080bffc5a07a9b6263", + ".git/objects/2b/e6308e4198e01ed5386466cf080a32f4231553", + ".git/objects/2b/f4d792f46e9385e54093f1b32461b2b6f53b79", + ".git/objects/2b/f7f259d18f3a6f83411d44669ad1fab9bd90a2", + ".git/objects/2c/0a01d2461f591b34de6a595d6f209909680a32", + ".git/objects/2c/0a38fbfb41be4b4aeed431990e13ad34ecca52", + ".git/objects/2c/10ed7941e63179b76d15e311c20a4588647720", + ".git/objects/2c/1d668db4ef6e423796cfd03b270aca311bff2d", + ".git/objects/2c/29d4808cd5aede031e6fd08d23c45aa6c19c00", + ".git/objects/2c/2eaa9a0f1b8d7207b60e5cb747ae4bf85bcdde", + ".git/objects/2c/372c4980220db160b8754c054ecec79061834d", + ".git/objects/2c/4bc936c98a17ea6927fd5d3507cc669e91c559", + ".git/objects/2c/6b96a6d2cb53d51a19a5a3661a457e6d0a409f", + ".git/objects/2c/6febdc7b4fc063b4a2849f96e025fda57297fd", + ".git/objects/2c/70660fd9c980629d642420357253ebf3300952", + ".git/objects/2c/74a580412116d71a964367808c8ea2f57c57c3", + ".git/objects/2c/7adcb39c036154a2fbf17868b8c5cbb8874fbc", + ".git/objects/2c/7b9dc632eea249e5c831232dd4459e1196b0b5", + ".git/objects/2c/7fa1efd5bf71b86592f39d93c9d1607744781d", + ".git/objects/2c/83e173c4e2a15bd741df15165b496f27ffd0ea", + ".git/objects/2c/84fd1250bb6fcbdc46bc66c5a2af30a73f2283", + ".git/objects/2c/86a6dc37fd32b86aeb8e7338a13f944de6c8f7", + ".git/objects/2c/ab31cc6892275d411bb386d0fd9443d986fae0", + ".git/objects/2c/ae63fe6600e78aa96b51c0c67c06f68c4d4a1a", + ".git/objects/2c/bd7bfc0f60f7a11fafe116abe47b06aedcc3f7", + ".git/objects/2c/c018e9011b1f04ba10f909dd01fdff2fd3a8f4", + ".git/objects/2c/c7b37c830233027dd317a446144c3ad813c5c2", + ".git/objects/2c/d30b26d54db369bb2036f0670eb4f52e9ad875", + ".git/objects/2c/dc45821d29d05a97718c7d4de73bcb34cbff49", + ".git/objects/2c/f546859964657337ca899b24d4d0fd19fbeda5", + ".git/objects/2c/f91accc93fc6cb7fb960a0830464eb5ac09499", + ".git/objects/2d/0029e03928a62080d80d68de6914f6ed0c5ce3", + ".git/objects/2d/0c783f52a0f5e1bbe367bec85059f760811e43", + ".git/objects/2d/1aa429037acfdb432458c0d75ef0c8e8dc81a4", + ".git/objects/2d/2e2838ca9c969fb733b2d762cd9e5c000722da", + ".git/objects/2d/3feae879335b893446be4ee2e3c52902547080", + ".git/objects/2d/4d6eb796298e0cb7e483a9dd1f56adca1a6dc3", + ".git/objects/2d/59c7e1d8e67432cc4eea38b581d39ccccc8711", + ".git/objects/2d/7cb5ff9962d61c7e6c696ae6c328af0ca7a495", + ".git/objects/2d/7d81aa8c8b32a16a4650e14d96c188c85f3b20", + ".git/objects/2d/7fceb4a2e360523e35c4dfb9c5b67418d04878", + ".git/objects/2d/86b65a7a2b227509603174b8f905e3098305a5", + ".git/objects/2d/ecc89d4a17d1aa84551f06907bb12378f48312", + ".git/objects/2e/03826ea7b50e5eee0b54cc818d48db934919e1", + ".git/objects/2e/08d6c6a216d14e987daeedb8b4e4532bce1a81", + ".git/objects/2e/0faa301fab59546ba757a97038b2d687dc0392", + ".git/objects/2e/14582125dc91e342171ec89fc7161cc554a85d", + ".git/objects/2e/161a9cc1141ffbfabf16c07ef1e16f6075d8b0", + ".git/objects/2e/1b58d5a6ac5d6e27c230309f080e07edd9a838", + ".git/objects/2e/1ea27286103142f70bc8b7e0e7c974c8e62c8f", + ".git/objects/2e/268a046ac63c3d6b33f98ba4adfc585aa3e127", + ".git/objects/2e/460ca418a0a85f2fe946df5f3abeb6e4e64bed", + ".git/objects/2e/50419fc20e2c04d6de16d0bfe592265ce6f357", + ".git/objects/2e/5c4f4ab6597f9d2e3e21a41f92addc01cd4a0a", + ".git/objects/2e/616dc4b3253b040c6e05456ca8064cf936b0b9", + ".git/objects/2e/72a15dcbaa831da25efdb0442b1338650b7571", + ".git/objects/2e/aa4cf509067b93b4ae13a73042cc157972468b", + ".git/objects/2e/ac21864c489ffb4a22cfa59020e4753ee799e1", + ".git/objects/2e/ac43375867d7dcafc6592f6a853b68977f301d", + ".git/objects/2e/b21c68542881bed0c218d25fb33078603e8947", + ".git/objects/2e/b502caded77d43996ceed94594cb7a3eef2039", + ".git/objects/2e/da0f226143f8dd7551b3cfc9568a847e0012c6", + ".git/objects/2e/e03ed7572fc1cc665ee6d917d032d4f6330fc2", + ".git/objects/2e/f208e6ab3395155b6ee13dd92e03a4c4b43072", + ".git/objects/2f/06dc7963e4147f35844d3a1fada2169d83f972", + ".git/objects/2f/14667883cd92fba5139c0229a828e76484df5f", + ".git/objects/2f/2a414c5748702aafeccac7592f12a01f3432ec", + ".git/objects/2f/2d16abec5e5097666dd981453b2a4cee2ef33e", + ".git/objects/2f/30ac6e95e43349c8d4f0f5b6b7e18df3a9e5f5", + ".git/objects/2f/4b3979c883ab06789cd92f6d37a2074d8b51bb", + ".git/objects/2f/4f999bdf277a695e0d4a3adf63eab3e918dc3b", + ".git/objects/2f/5473faaf700d6aa7c9d721aefffc117069b260", + ".git/objects/2f/5dd7a3a9abe77180a72c99a770b5f79aa13df0", + ".git/objects/2f/692525051d49c92d2548e1339365611e8b77af", + ".git/objects/2f/6957816a8c733d354203ddd522d8b07a335b60", + ".git/objects/2f/78895ef1939102e414f68974466e7252035964", + ".git/objects/2f/926a91270e3324097de59562ad9e447328a430", + ".git/objects/2f/928a200b2c5bfe8be5e223d9d9a72062acc4af", + ".git/objects/2f/99aecafda69491316f6c07735900ec420aa2af", + ".git/objects/2f/9a4f848739b45e16ee3aad3141800dafb0fcb1", + ".git/objects/2f/a63f02ef12c44c58df31aa81deabc67cc3ed57", + ".git/objects/2f/a8988660ed2ec1e34ae0aa43653d402c3dc5f2", + ".git/objects/2f/bd464413a887df5e348afbb830480263be9520", + ".git/objects/2f/ca62a6d7a32be3600d438f17bbffee7cb1f1ce", + ".git/objects/2f/f98c8348cc2b36fef97fa3158bd6ec581643c1", + ".git/objects/30/14b3019bf08c8fff76243c0079fc3169324929", + ".git/objects/30/1a7c1d72d713d017890fd96e67884e4c0903f7", + ".git/objects/30/1f5ab596312585991593169f739ca9bd2428f5", + ".git/objects/30/235bbaea45c08fa503637e2b5ed2aaeb081cdf", + ".git/objects/30/236bc27dcadf3af7db8f7c8cf486b52b1fd7d0", + ".git/objects/30/25c3aeb4891fb815d792cd94660cd002d9b1e2", + ".git/objects/30/3ecd1529ceaa5b7d5792202eed7723bdfe3d3b", + ".git/objects/30/4116b5a8140c16f0294964e8841f1cc1ce86af", + ".git/objects/30/4afe335e92f883952fdca3c2a35e15d10b5482", + ".git/objects/30/4f464cbf9dbc2306639b4d92baf3caa4dfcfde", + ".git/objects/30/738c9755d9b5c05a5c2038f1daf5c1ffff61ab", + ".git/objects/30/7a5f95d32cabff5e5d2ea9072cc64bb2f9bc5c", + ".git/objects/30/8cf9316f1ea6a2a88c0f179f66af902ba1db5f", + ".git/objects/30/8ff885e3271dfff9d650dda3f3c4c8730987fa", + ".git/objects/30/c5a20edfa0acda89edd0bc24fc6530e84def75", + ".git/objects/30/d9a6ef30617c46f5364fe8ea35a18f6c5b943e", + ".git/objects/30/f33f5f1a835a6690f567cc4d837599cd11e216", + ".git/objects/31/03d8a28e6289e6494b3509df7408e08033aa78", + ".git/objects/31/0a018afee47f759e95077eaf70e07aa61ccaa6", + ".git/objects/31/0e3f902ba307f626f4874d56a8e0ac2b6d1d7b", + ".git/objects/31/18c456be06574b5e4745e5d169d08111f95d2f", + ".git/objects/31/1a8a224d0293ae784901ecbc57f772f96fac44", + ".git/objects/31/2137c2a2df31c66ec4e1cc1e6d64e2496a33d4", + ".git/objects/31/2dca1eac394bdde2a73a9e685b83f8497a84f1", + ".git/objects/31/6145a17b9efeac917152726331244c183f9828", + ".git/objects/31/7aede73ae23fb94e0ca7254ba4b6ea81e8a00d", + ".git/objects/31/8405ffdf613b586f788db7fe5ac794c607e4cb", + ".git/objects/31/967526ace70aef1fc00fa317ec749fabfe9481", + ".git/objects/31/970a9a903f65308c6bd576ecf93365bca409f6", + ".git/objects/31/a3f6aae188779fef617ca020b207ce7e7ded6f", + ".git/objects/31/a8f5ccf2c9c067152d7d534688b850167a24eb", + ".git/objects/31/beeaab4286afc19a76e94e6c3bc1200e274a10", + ".git/objects/31/c9f686006354ea22057693b5549aacaa8188ae", + ".git/objects/31/d6b259f9b7c301a46356711a5b0c39a841392f", + ".git/objects/31/e5596b1c5912fb631ea5c52e29d1bf6a45c7af", + ".git/objects/32/014a5d77615a26e15b31fabe574f282b2bac17", + ".git/objects/32/030c101a82afaa6b256152ecd8d10bae9749ba", + ".git/objects/32/1c7f6cc798dc650f397924f1a09a1e9312eac5", + ".git/objects/32/22e44afcc7e5e0e181d1b127dfedcb4f295ef9", + ".git/objects/32/29ebe1c94240e048f6292e73841a1f344de8f9", + ".git/objects/32/2c45b158e8e1c6cbf4ecd3030c79a382bfc9ed", + ".git/objects/32/304efbca8dec1150902a34c37ba08d2353d291", + ".git/objects/32/42e72e7be83a399f653cc0e3d80c085dd554cc", + ".git/objects/32/485305575adc9db97cd430f163486d7bd8906d", + ".git/objects/32/511bf1bfd27758b0355c9bf266e706084ec97d", + ".git/objects/32/51a0e07422fa475ff5b6d76663dc3c00fe7d4b", + ".git/objects/32/6284896e048189b3946468baf99e48bbeea925", + ".git/objects/32/6b903d1ed7d92e91f52323583d7c897b87bf92", + ".git/objects/32/7b89dd5f0b353e5e95f9af3c37688e272792be", + ".git/objects/32/7f18cbbed2963d493af16265beb249bbc1e9c9", + ".git/objects/32/8941aa544fdcc34f8bee46b37b10d5a925bad4", + ".git/objects/32/94a667a948d505f778fd572df5f75ec6a161b1", + ".git/objects/32/9e3378510911d2c55c2ca09eab56e6d1697c98", + ".git/objects/32/9f940b3843ba589c9548b50ccc5b97d9b29171", + ".git/objects/32/b2f735c414e6f118f819f876c07ae717ab0d05", + ".git/objects/32/bb67fd8e2c1298df9f025a953366b735037a54", + ".git/objects/32/c336ef4b029edac14fc3f505b9b51262b98eea", + ".git/objects/32/cd8555b17f09e4f29f2d686dad520829da4bdb", + ".git/objects/32/d48707a41623279d47d287e0e7e1b0f7ba55fa", + ".git/objects/32/dee7f66e49e448b845fe30aea67f83765c8e2c", + ".git/objects/32/e036f0c066898bbd872ec4d3e12b9dcd29121a", + ".git/objects/32/ef9b90131f89ac5d56eecb020958ca6ce10f6c", + ".git/objects/32/f00b3f907a541a1aa81af7216aac4ec188a974", + ".git/objects/32/f08557e3b31df01dd1c3413cd26a064c010513", + ".git/objects/32/f553eb00f7e278f1c6250ef7bcd98f917dfe8f", + ".git/objects/32/fcdf73b94ce8b3d82563b358bb89a4a75998f6", + ".git/objects/32/fe25a871cb7ba6953c61f496bfdd3979f84b31", + ".git/objects/33/05363a96b0f387d49d1d50879e06e3863128ab", + ".git/objects/33/0b7c22feb9ca82a64aeb873ca65b4aa8090085", + ".git/objects/33/14cbf802fff0fa8882220995ee968b263b0c37", + ".git/objects/33/273d762f46c5ca3f1520cf9a85ee0459432cb8", + ".git/objects/33/278a2f36ad241bc82dff9c4b29919180d50215", + ".git/objects/33/2981f5806ec0872c603b5d40722fa612050ad4", + ".git/objects/33/2bafbe236c70381d24a7ec07d8139203bfe139", + ".git/objects/33/3786ee94f624c2f91a9d0f7ae567fc9c9dec76", + ".git/objects/33/3f0ab71267435ac61d408fac3da3d6ccb1c7d5", + ".git/objects/33/42254f5192bb95a74233f62c0026f3470c2182", + ".git/objects/33/5823ab7e7ad7d1c60697d9dc9e943ae58c38f2", + ".git/objects/33/63093adb632ebd6f6cb3a8f0ac4243f20e9067", + ".git/objects/33/6a97c2645b64477cd456534ffe957c5ac9a289", + ".git/objects/33/77d2c4517c8d14c5827286488f8b995fb74c69", + ".git/objects/33/7aa19285afa7f84b951a61c243245007261d6b", + ".git/objects/33/7db720b8480c41c5557e9a898ffeb428a016c6", + ".git/objects/33/8aad19e87be67b7ecd4d086d316e59a6898de1", + ".git/objects/33/8d0ad4bec9dd2bc56d32e355cb3918ec0af609", + ".git/objects/33/9b6253fc8d9e665f4c716919a319a8339f19ed", + ".git/objects/33/a6cb8b5402e48838560fc429eedc4e2aab7547", + ".git/objects/33/ad5b64d339f04a24d138d3820b2cfa9d58f683", + ".git/objects/33/b80489f48c8964107fd55a44e5cadff4c72c8c", + ".git/objects/33/b9eb3b477c0112fba07e9fd45764e7cd556820", + ".git/objects/33/bafe5c29f5c25a35f93eb126a989bceb7217ea", + ".git/objects/33/c6c80a8c50f7609badc8a2e89b2c3f6c099949", + ".git/objects/33/cf42f9779bfb291b27349e27b78bc6904c51bc", + ".git/objects/33/d2194d956bbe73027f0cec67355b049e3cd60c", + ".git/objects/33/dc37f36fc6b298ad24a8f9dd5c02c55285b3c3", + ".git/objects/33/e3f11eee008ec63ebfff5a37e53f76b1a67316", + ".git/objects/33/f0dacee53a92ec28112b128d6948777b2e70e6", + ".git/objects/34/1d128cb4541d5851740fd18e058ded51ad9c78", + ".git/objects/34/1eea49720b8fe4ef95869366e05b418a242652", + ".git/objects/34/21a306f2729d4dc43ecfadac82efc367df81c7", + ".git/objects/34/2ad645b35e59054af62b527b8f8e22bb3c0553", + ".git/objects/34/31f04d400387e3999ba60c124150bbdbccf830", + ".git/objects/34/386cfe053c9c709c8e90a919302d19c8acb1da", + ".git/objects/34/3d26c0d9cca06adf118e3363b341cc7cdecbb9", + ".git/objects/34/3d3974ac4a3b98419870126a194dd543208044", + ".git/objects/34/5db80147dd4580260bbbfcc2d4a8159d8fe908", + ".git/objects/34/76dec6dc1c912dc1d5098a329cf59fd8f443d7", + ".git/objects/34/7e20287a5e8b758f1798cc85bf9a5ebbf0213e", + ".git/objects/34/82affbe5785ff657640781fb83621a61f27a1a", + ".git/objects/34/8d14fce1c9763b27b09a0f0a342c2f046b019c", + ".git/objects/34/a01fff0b5138da6265eab075b3de9ad171878a", + ".git/objects/34/a4e77caf94f497ab9b4d168d074de5d7c0f248", + ".git/objects/34/af67ff18883b5721619384b4ed56bd1a4c684a", + ".git/objects/34/b48fb09c2f7ffe53db20b14f4de7b5bf1a869c", + ".git/objects/34/b5c3b4e7001f6c11e6cbc9f58d5a4a78a98fee", + ".git/objects/34/bd8a0815f0d4b083a3cdde593cf3b4211bee99", + ".git/objects/34/c0f6a33160a815a20436d91f60b7137e25161e", + ".git/objects/34/c2cc8d44b36e880382ca1397cfad0dcdb0e738", + ".git/objects/34/db9deae47b234350e96fd94607c92118b65654", + ".git/objects/34/ed9b607ad338ea1c2cfd73f04bb218d9eb1d2e", + ".git/objects/34/f15402c87f65aa926924e493d35aeaf26ba59f", + ".git/objects/34/f300a09c329bac2a2fc410878970deb60b7cd3", + ".git/objects/34/fc410303aea9dfdc046efcc4d1f80f66d30c51", + ".git/objects/34/fee5dc78bd8f874eeb9a6edb457eb6e2260ba7", + ".git/objects/35/042321c480359dd5e6ed803d4088f65161c276", + ".git/objects/35/2159d351066648a50ac7c9ba1cc311f2bb414b", + ".git/objects/35/2270daec450c3cc3422acbd9379a5491843d21", + ".git/objects/35/2923e4ef5600aff077ae7e8caeafe7c900c2b3", + ".git/objects/35/2978b65e19886116d1201e9978c4df1e29ebf6", + ".git/objects/35/310512bc772600239d1ffb59352d2f696d4264", + ".git/objects/35/3e31811fa743ad08fa672aa3e218679b81d375", + ".git/objects/35/52ca05e480aff3808015fbfdc522f7a848997c", + ".git/objects/35/6232e3416ef087b98d14ff8093889906e15dcb", + ".git/objects/35/7d090230c5b090749d26033a0ee525baba2521", + ".git/objects/35/870f2e5096ffe15fee7914137c6812cff48fff", + ".git/objects/35/a5833afdbfef4f43b00a809355f23b231dfa56", + ".git/objects/35/a7040650072a5d9cad9827e9623d61859a7424", + ".git/objects/35/b3733bc976c0a6bb2fccb327aec1136eb67eac", + ".git/objects/35/b5a298f6098837bec4e907aebbcf1e748bfbb5", + ".git/objects/35/b90c86940fa09d3784ef21e6fb3262bf3b7008", + ".git/objects/35/b9b7ca467ab48edba53e78a6abe3bbe3ecb9f2", + ".git/objects/35/c9c0f7ab7943726f469db6ebf18b785fc2239c", + ".git/objects/35/d57aa5103f979c2a64f1dccd2df61996598143", + ".git/objects/35/d9a66c37caacf5d4d73a6672f85f4d6f523deb", + ".git/objects/35/e65b33361f934b43f957180454eae58c5f789f", + ".git/objects/35/ed2868663e77b2983ee1f7e9c8f6dc8f552627", + ".git/objects/35/fb4f312bc9255124a1d8d3600bb9cdfdec51c3", + ".git/objects/35/fd5d435a62b0f1392183b03d10bf857e4ca772", + ".git/objects/35/ffe478b299eef1e294829e3aa9758595017fda", + ".git/objects/36/1c822bfe5efb19494ef2b571ce340aa78073ac", + ".git/objects/36/2d2c99ad3dd85396578a44307746b93dc855c9", + ".git/objects/36/5518966662f498958d178b6e3c7aa64fc6daa7", + ".git/objects/36/6297a106060793df78ed832021342b34ef9f1a", + ".git/objects/36/745a75a89b9f3cd6223e938f6018c172bca482", + ".git/objects/36/7ad12758e6e8c593f34bff37076fcc214ca416", + ".git/objects/36/8202d8937217c8ffac26866217b13b063acc92", + ".git/objects/36/93bfb1bc57795f4b42a710caba4028f209bba9", + ".git/objects/36/99a2f2fca09f5fb308a728207431dd7f92a2df", + ".git/objects/36/a33fd8ba59aa671b5fad7e9f23f795a73d68ba", + ".git/objects/36/b4e01de766fd515028a8da2f7d71c7791099b0", + ".git/objects/36/b729e9fb25c255256b1beb76270fea5d8edd49", + ".git/objects/36/be0b28aacf652c03a5ebdbc33135c48b4515b0", + ".git/objects/36/c9da406dc82b5e5b41a1ad47bc28ef15bf74d0", + ".git/objects/36/d686e5f93354e5acd966e2eb7549207f13d7bf", + ".git/objects/36/ec52f575af793e913fefe7e35b0cbfb26c72b4", + ".git/objects/36/f8c06c7c5b1a7edefd89e40c442fd66d807ce5", + ".git/objects/37/0ded2a6cfcacffb4514e8f40eae59580726943", + ".git/objects/37/18211d115cd6a3cb79e0427a7f183b2418bbfa", + ".git/objects/37/1dc878783f0c86eec5173ee94186570c9328cc", + ".git/objects/37/1f09f2ef8477480c53a3abd850fab309021634", + ".git/objects/37/3ad125bca5f566ff6ff27a8740bef496fd42e1", + ".git/objects/37/4955b535dfce2d67d60da8a9d2fc806cd40f90", + ".git/objects/37/4dbade44741fff7d066c998e75d9d0d86e0964", + ".git/objects/37/4e3e841eb0f6bcd78b416604f49c67afa5eb85", + ".git/objects/37/5178b358b2fcdadf29837ea1739daf652cbd6a", + ".git/objects/37/5312c1191699c1083ac15edcb7b248110712eb", + ".git/objects/37/5c42a164458cc9663a594c38c0901d1f96d777", + ".git/objects/37/6acfc32ece8d1be64e6e22f2222c5720727be7", + ".git/objects/37/71ad2357afd1b70764f708ed31691ab4af919d", + ".git/objects/37/7257099a1bb8deba8875c6035b6ee1dafc6a75", + ".git/objects/37/726a399e1edc8d8827a6817d722340a5a5bd37", + ".git/objects/37/86bcd85be5cf023b08e8531311d33d40a2f87f", + ".git/objects/37/86db592408f6b95a7c9457ca6d1f7c682b00bc", + ".git/objects/37/8e83dc0991e125e20ec3950e2f3a036d531fa9", + ".git/objects/37/9c95517830fd5fa644d0e9f9b4b24e67a26024", + ".git/objects/37/a54434fb15afb7ea44a8a985bae89385c1cf54", + ".git/objects/37/b38a3f2aa49aebd8a452802515a75982a307d9", + ".git/objects/37/b43eac9ba37e73f9339a7f04703bd8c657bc44", + ".git/objects/37/b63bda775153c4c449fe9d69237013e40e1c09", + ".git/objects/37/c2ae5cb8e7e40b847f6b7a3331ac370766616d", + ".git/objects/37/ca0dda37c22d740b26b4459c66d0b016802d9b", + ".git/objects/37/cf93f75fa9b79274c7952231c355824d47a319", + ".git/objects/37/d8cfd1a8856c140553b9a6fcf6c5e4188564d5", + ".git/objects/37/f467b1c7df3069e1fe464bb906505a7e7a84f2", + ".git/objects/38/05103fec4cadc1dcb3b06d78296199dfccb561", + ".git/objects/38/0bee34d2c7f646a6872649c65950fca589c649", + ".git/objects/38/0ddfcc26d95f86f2abc9347a3c13d608f6ef8c", + ".git/objects/38/0de8542a5ee2895a4752474346d18b5d5ce87b", + ".git/objects/38/0f1dce9936718e43891c0dd81e1f24bb8154a5", + ".git/objects/38/1de881a19aea4b93a45e0504e659a48d712c07", + ".git/objects/38/26fb3c5eb61978186c74dacc25e15cc15eb930", + ".git/objects/38/40704ea343cee2db95ee8e43d4fe3097545d4f", + ".git/objects/38/45e755c13f6fe1335c3a18ac09626ea5022ecf", + ".git/objects/38/4a366cbb5f9f2a51c8f2285217ceab72b43f8f", + ".git/objects/38/4e1eea156e243fe8bbb3773cb21aab7155bc19", + ".git/objects/38/561d241ee7c2a07d8582fbba2a9a4695f1c2c9", + ".git/objects/38/5ed4acde6f5723cbf3203f29e412d98a717576", + ".git/objects/38/69f958e5c1a9fc7e29fd675b11cf8ef55f60a9", + ".git/objects/38/7cc4ffa26e018f52f2c78ae7c894082cfd2a23", + ".git/objects/38/87c63d5449bd5205efd55b453a42dbde87fa85", + ".git/objects/38/a50a80e3bb8d53f3579d8efc5411f595aa5eb5", + ".git/objects/38/a8cc491f34a633e2ada9dec39f9755bac5c2f1", + ".git/objects/38/abaf5baece4ca4821ee7ab7660a4fcd50f20af", + ".git/objects/38/af9ff9dbbd52e8ff5e7d795a2acd2f874c971e", + ".git/objects/38/b3bc67cc1af118f827bebd7afc9706833441ee", + ".git/objects/38/bd8242ee471863a32043ab67279e4facc9a998", + ".git/objects/38/c5be256d48613e534d3fd41de052757ca3f7da", + ".git/objects/38/daca4cc6c6083ea08526333adac8cfc7f21f47", + ".git/objects/38/e055e491696d3ebcc5cb6f16405a37fa79c8c7", + ".git/objects/38/e42a1129cd7cecf417418701857b3fd9105a42", + ".git/objects/38/f7c5954806b98d7b6303a6ec05b3f3833064b9", + ".git/objects/39/389bfe78fe1ab38589e09ca62efaddae582c71", + ".git/objects/39/3ad7cdc24fabc111a14959815ba92e0e025697", + ".git/objects/39/3f6c1c7983f150c7830afd921a1bbd232e04a8", + ".git/objects/39/45b4d19a7d2ed169d03f1804fb9e236d349808", + ".git/objects/39/4ad33deb985b61051a41d2002d8d915bb21136", + ".git/objects/39/66be0ee5cafb71284f877b6bee3d2b5318c603", + ".git/objects/39/6c2a1ec818b78d4538e118e3cd48025cea8fab", + ".git/objects/39/7890886dbe8a43c446a4bed3aa7e0e8e417a29", + ".git/objects/39/86c18d76a1a3038f7d3fb39a6f516f48fc78c3", + ".git/objects/39/895da3793fd076c7f00fa0e0b8e7d3cc6a527d", + ".git/objects/39/924c7b22f15fe2cdc3de296e9ab43edb0a4f48", + ".git/objects/39/93255846a4cc9471e53426d4a209c8c5578dac", + ".git/objects/39/988d3f6a7c1ee4409cad0212f55788441b5374", + ".git/objects/39/b68cb025e26a0cc0e785887a269b42b532720b", + ".git/objects/39/b83e664b9fdac9628eee56cbf275253d1834e7", + ".git/objects/39/c2ad9e55bae66b6f894c8103364f310a932f51", + ".git/objects/39/cd64f368f5385641a68b463029a87b3ab5db70", + ".git/objects/39/db1a9db7c2aba04e54c962161deee560e8ae81", + ".git/objects/39/ebaaca7efabdf6b2b35291751c303755aa541f", + ".git/objects/39/edbba955c658b89f9da7d00544a25dabbd5738", + ".git/objects/3a/1857fa276fa90ec2ba2a69b5d113ac03acef6c", + ".git/objects/3a/1be64c10f349f41a6ec270c6c34756c9462685", + ".git/objects/3a/1e1711138705afbb612f573118b68a74061548", + ".git/objects/3a/314e5739bcf45dffb038639d7eb5513219c735", + ".git/objects/3a/5d98f434c4f28a48ae6e76b931bbc7fa296200", + ".git/objects/3a/62265ddf34361aa3c59e9780d2a4b8a8f64785", + ".git/objects/3a/8f69d6fd9fb09684c385e49f5917e64b786fee", + ".git/objects/3a/8f97d6a0fd5790c21100d5c2b5bca245290fc1", + ".git/objects/3a/902eee65efc5804ff4cca19e39c4d502b108b6", + ".git/objects/3a/9693bb66ec7cd777cb7908daeb803dec66b853", + ".git/objects/3a/a983318d8b94259ec5e9b3d2753b8327ce118c", + ".git/objects/3a/af9d115ace570666826e0ac4484e8fd9aeb0ab", + ".git/objects/3a/b3d6a7bd7d4452c34af08e049dc615f76a3ea4", + ".git/objects/3a/b69284cdc004d1fe31d0b41e978c7b908afbdf", + ".git/objects/3a/b7053f292ff42190433600e5c84f33aa1a4a1d", + ".git/objects/3a/c99eabb0d2dfad9fa502d6a01fdb716a0d5135", + ".git/objects/3a/ca12a3345fba087180d06271a0f7fd9e807b4c", + ".git/objects/3a/e04e53bb06f49bfcbd7a5c1a71cb1fbd677719", + ".git/objects/3a/e14f94b2a4caf5e1328f599c6ad4344aa22692", + ".git/objects/3a/e2c1101813101c89a933e0a0a3c3ab2b7dd9a6", + ".git/objects/3a/ed67bc4e41a89aee80eae260efd4cfd5db557a", + ".git/objects/3a/ee7b6811d1f3ee608a76226f249db58ad04714", + ".git/objects/3a/f941c23942a1da474712648fea9e9c5ea633b7", + ".git/objects/3b/0001eae5da25a37cb9ce0d112e06d6a6c0011e", + ".git/objects/3b/02b370a81bcc2f6efcf7308ac38627704fa688", + ".git/objects/3b/054505bb43a82e80cf47e47e94a3b5de7cccb2", + ".git/objects/3b/0b4c12a988ebf0b66859fa2417230cdd4784ce", + ".git/objects/3b/0c35e69d04946b532f288a0e1aa055e4c11061", + ".git/objects/3b/0c54e1282ec510e760ef26861130f419ad4cd1", + ".git/objects/3b/104fda52811653619e8e15e672a976690bfd17", + ".git/objects/3b/11ab4e94c8406ca4a59b2ff58f517ea8900f31", + ".git/objects/3b/1475bd0272a3632c4e3516edb53dd41746a633", + ".git/objects/3b/1b485bc7cf15116f19532fad81a1efac6ffad6", + ".git/objects/3b/2461233d74090389e9136342afe514131fe3a5", + ".git/objects/3b/3288fccf82a5db2e2bfc64668a68a5f0422728", + ".git/objects/3b/35f1680c45a3cf284f6d80caaee99a388cc904", + ".git/objects/3b/3965ac7806a47e1468fd09957f5fb0b1207d1e", + ".git/objects/3b/45b9c307f2a85aa069ad4cf35cb13892e3d106", + ".git/objects/3b/6c671a42c3e3dc36efc64bb54c4566bf98f4c1", + ".git/objects/3b/6c6a3f8f7ffcc631145ee2df31431473ceb819", + ".git/objects/3b/77424a86462c4980d79fe5f19d8deb24d94b17", + ".git/objects/3b/779324d21970ed4fddf846fb5677eeb39f7ec5", + ".git/objects/3b/7a41a644b39166ba6f1909ca513702f272ff55", + ".git/objects/3b/803079bb6ffdd5270a47db775af9c4b9c04d7a", + ".git/objects/3b/8218b4c39f4313bb514c07a93b19edba4ad87f", + ".git/objects/3b/868c121be69e20ab150640a9f1e4686764bffa", + ".git/objects/3b/aa08dc58932c0d3e1e2051d98862f5907622d9", + ".git/objects/3b/aac812554dc651915793cf4b74a2b73f001835", + ".git/objects/3b/b9d4b1bf02c5ca91fcd841de0ea01ba995d13f", + ".git/objects/3b/baf1345bb73162dc54022b438159e9b14f44ea", + ".git/objects/3b/cd39c6959da4e52c48d6955508148cf4f1eb5d", + ".git/objects/3b/eba0ecfa826fced50ed8068c754b2ebdd9f29b", + ".git/objects/3b/f16182b4792652833fb2ff91b74508e22b0e2e", + ".git/objects/3b/fe7a165b84c5137e375573fe30b125ad3de521", + ".git/objects/3c/03990a2d16ec6be2b1d16d5493cd453e3d86b3", + ".git/objects/3c/0b42cf50d320ee1796b72ad775fe1731facd09", + ".git/objects/3c/325a60d1bec03a738997f8b574a6ac64544d29", + ".git/objects/3c/3c1595293f5a049bfd562cbd38b78d2083f8db", + ".git/objects/3c/3c5f87c3ce09a9ac76b018ceeced03df2c8c83", + ".git/objects/3c/45aa6b022c5279b0c03fef32252620e5c0af24", + ".git/objects/3c/552089c77b195f45d3cf6f106ce5e75c1bd255", + ".git/objects/3c/58fd0556899fe198b45a940a207f21628acf86", + ".git/objects/3c/6e210c4c228e53739be9bf560a68f7118e125c", + ".git/objects/3c/837ee1c43ff840cf1dd8cc8e70a0dbfdd9c2b2", + ".git/objects/3c/84fee5094b09d2c08061e4907a5e9c7b652ccb", + ".git/objects/3c/9f63bd52545fe5722ee787845f2a1044f87373", + ".git/objects/3c/a032d0e366753a19582ad14e3ac081f0d9e9af", + ".git/objects/3c/a28e694cc1e9e9a737c7ed01db542a5f62a3ca", + ".git/objects/3c/a5f95fdea5cf6dad62b3343c0fb91b96fc05b1", + ".git/objects/3c/a9cba51bda8738a73b4a98902251923970d78d", + ".git/objects/3c/aafb540b61f0968d8560e1566ac0efffbe468d", + ".git/objects/3c/b39d447d6dc09793d321c9f6d6c2b4484bbd13", + ".git/objects/3c/b92a4f1ee39c3869b582a903d93e0b693db091", + ".git/objects/3c/c55b10fedeb035e9983b9f59e5491e4639ed9a", + ".git/objects/3c/cdd9cc494658b5ebe1cf7c2b8f473bf208b910", + ".git/objects/3c/d90f66f7008d24dde5f6f16d404697c3da6739", + ".git/objects/3c/db24a737552d17b5afb8e87c0c659934f8b4e5", + ".git/objects/3d/0dc091c96b14d5381b69ff0eb592e5f8abdbed", + ".git/objects/3d/185d75b89a2c681c6eec38b58b0f04d8419d8c", + ".git/objects/3d/294aea50771836e19f43e2cb537f8286be70a4", + ".git/objects/3d/322b8c21f9589ceda2ac0e9311a94db7d9ad76", + ".git/objects/3d/36afcd1ecc00853cbe23b3d91d4b0bdf8f1cb9", + ".git/objects/3d/397dbb48be6c1c0a05ace1bb9da869a297880a", + ".git/objects/3d/41b1ff10ebec6f5931e027529104c7e35dd836", + ".git/objects/3d/4e98aaa6ef537643932b538649a9feccfd490b", + ".git/objects/3d/556782f88fb97bb262f2034830adc4d8b67b9e", + ".git/objects/3d/5750b6d65f76902cb8d509abee41741a9af964", + ".git/objects/3d/60fcbbf35af4414bbbf946ad2a92419c0c14b3", + ".git/objects/3d/6bc565b78d35159eb33e46c26e94c75789a529", + ".git/objects/3d/6bf638715d077b6066faaa00300777f53525a6", + ".git/objects/3d/6dd6964c5f54f12836f2e7e89f5f8e1387dac8", + ".git/objects/3d/6e04322bd2f3d9822ef5f19b7ccfbfee159d19", + ".git/objects/3d/71f96a469abb820ae8ae91d7b7c2121a01a39e", + ".git/objects/3d/782dee1874a0efddd7bfad3d4f96ee8e6400c1", + ".git/objects/3d/814f84c4b56defced9577c9a820b2ae16d642d", + ".git/objects/3d/829949fd9773980627b42ee6827ee40bf4ca9c", + ".git/objects/3d/89ac8cf5fd84e16c79af8f01477f51c5b1e438", + ".git/objects/3d/d485994f5772922f8379126cfa6b41c71a28c3", + ".git/objects/3d/dd4a85158a07b45a4cdf15f8bf0c37a68a6a0b", + ".git/objects/3d/f051a0633380e44cbe3ff6c6348906667b01b9", + ".git/objects/3d/f10410f7d3cbf42ffe0d7bdaaf752638cc8170", + ".git/objects/3d/f367ff09ed83501d3ecd5a1f77a9964432e76f", + ".git/objects/3e/0856e944f7ea4d1ff5b98931b780ead3ea4dc8", + ".git/objects/3e/150ae26b5aced1d8f5ce6b2014b987460fa73c", + ".git/objects/3e/9144e9e0d58476050d26f116ac94afa553ca6e", + ".git/objects/3e/91fb9d56c9d694d4b0ff6dc585687614933884", + ".git/objects/3e/936a17597d8d2e240ca392f2eef0a7a04d25bb", + ".git/objects/3e/ab64016255a2fe4db82d37c00cb2af9f7296c4", + ".git/objects/3e/b7c48b1a065805e1e281a44c1e4c0613116b75", + ".git/objects/3e/bd211d9f16dfbec4bdd2e1cd9cbbf9c7a58534", + ".git/objects/3e/bffe48ae25cffcd1e76a1bac2e89ffa34d6602", + ".git/objects/3e/d90a39d46aee3c6fc894dd695bc57625c7d239", + ".git/objects/3e/e784bd6a63329a26d6d05e1ba80c91d94cba40", + ".git/objects/3e/f5975559f50df7d37752fb45cda5d0c6c527a5", + ".git/objects/3e/f959d8080fe1d8b3c68da17a552055bb412dec", + ".git/objects/3f/03aaca95957e58c0bac9985b46622f0f6bbe7f", + ".git/objects/3f/15a8934238c783506b977a3d22d05fbfa7b622", + ".git/objects/3f/20a02e4a69be176f9c03054a9fece2eccd6d33", + ".git/objects/3f/22eae3f9269fd2c478ee870a0003ff2acb1f76", + ".git/objects/3f/27ba5f5a900b4502c2ccb679896c596e91cb94", + ".git/objects/3f/356ed3b9c6d357ec136c9c6df6810e840db16b", + ".git/objects/3f/525d441c04f7995e1001137a92153a5ae34489", + ".git/objects/3f/5871d7774bfe2ee6840a4ac3b06f0630fd18e7", + ".git/objects/3f/76ddf8b9b8e1a90759c8a291bfd72383efbe04", + ".git/objects/3f/7ae6f40cc544db379d680c369f3387fbc361aa", + ".git/objects/3f/a663e9c537c34888f8914d252ae2a235333fe1", + ".git/objects/3f/ad44d17cd56022c052e97cc19e2d70b4b37396", + ".git/objects/3f/c9f717f75547c774a725f5eed4631ff323ec5a", + ".git/objects/3f/cb5d8ec8787bbf6baade8f10846fb7401d401b", + ".git/objects/3f/cc6f34a1500921a121bfb32da67c8b92f8683f", + ".git/objects/3f/d83d48b996595c491713cc8478edf7e2378c3c", + ".git/objects/3f/d8ef320bcb571e0f08988c8dfcd4af871a5360", + ".git/objects/3f/e1a820236b8982980df01e09a66281dd70d875", + ".git/objects/3f/fa71d41413ad760b81c88d6ed11d7eb99fd4e6", + ".git/objects/40/08abd67c337f74456005f3d75c4c14ea2a4adb", + ".git/objects/40/106b0064f1fd6647edd7df855980cd7d11ce15", + ".git/objects/40/23aef3209755e5648c8ecccac7027655769a72", + ".git/objects/40/245063f7862323d9af10f18042a0d38f0c98ae", + ".git/objects/40/381b52054d837878e241cd625f962aad7a627b", + ".git/objects/40/3901f2d3351cde4256eef4312f70e7b6d3fd3f", + ".git/objects/40/47a2312b2352b95a35c1053a688a61b880a7c9", + ".git/objects/40/5698d36557511a75d71c4e3d68a47a63133a78", + ".git/objects/40/61af83f04a3618a70b600cf3c0a9a504bfbff5", + ".git/objects/40/6702c8ecd5c23866aacd785cd7c2e8dd8e1bea", + ".git/objects/40/838e5ed0831863fc814b5185fc9f13313e8d13", + ".git/objects/40/8541c96790c215c1eea6e21b65bf0781a1a75b", + ".git/objects/40/8e6c22b25a472b36766769a99a0acb6deee122", + ".git/objects/40/9087480421f545f042131935ea567b91e99791", + ".git/objects/40/91d96664fa8130a172fed4f7e2e7ec98425794", + ".git/objects/40/a31c33051606574b287956589bf514dc946a7a", + ".git/objects/40/a9262ad0495cf54684d162bef3f9f9dc1b67fb", + ".git/objects/40/bb80896aa0330f6eb166a6f9277773c36dda51", + ".git/objects/40/c054d3eb20a92e2c11b7560bd7815f494ed276", + ".git/objects/40/c7185e93ba2bf2441d608a1454664ebbd6c757", + ".git/objects/40/cab46cb5848abf44d08dbbde1ec7bfa0c63123", + ".git/objects/40/e763c9ac9db196dd13018388a8c9463c920b6e", + ".git/objects/40/f476c041db49f3ec097385385a7c2c1d99a553", + ".git/objects/40/fcb6529d8d0df65aa981b77cc364f562b99ec9", + ".git/objects/41/0a400ec54d4905ef5d58b25d20e6bd3035cbcc", + ".git/objects/41/14cfba7e9d18154278deccaa82c2bd55731fa8", + ".git/objects/41/1906b48257a32b5170d1513e39b4bddd8360ad", + ".git/objects/41/3757491cf1bc94e9fcbca846435a13ba26a58c", + ".git/objects/41/398293f6c0339ea34c04b7a1e1240edcc459bc", + ".git/objects/41/4332c732f9067749e32a33f139250366df35af", + ".git/objects/41/507c5951dc6e70e75471cf4380afd9e1368c71", + ".git/objects/41/55491a9ce792ec9a7f3d456bf46fdee0d629d2", + ".git/objects/41/57a1cea28dc83f3ef5a57c962ea76d30c58eb5", + ".git/objects/41/66a97308412524a2440c7803e7998a1c20d13d", + ".git/objects/41/6a652d807b458984c8db7c7cdeb2365ceb77c3", + ".git/objects/41/6b0daac994955d6360f83ab29b6b67fb5d06a0", + ".git/objects/41/7b4c6d91405a7ead935fce861fe7d2b636c356", + ".git/objects/41/8449272171f691d7ad4f9dc2aab941543bb9c8", + ".git/objects/41/8983a91940dce1978f449e279a6e95de83aa5b", + ".git/objects/41/8e19449ad3f2ad6983c18295aae324ecfd4894", + ".git/objects/41/92d745962ef96b5d2f3b5d0e20442c0275c525", + ".git/objects/41/9cc4a9acbcbb6ef07ae16ce6292109b694bcaa", + ".git/objects/41/a8e6ab9000d1c222ae2c833d9237c6b3f03e17", + ".git/objects/41/a9a166d5f11cee5f7ec5bd39009f5590136976", + ".git/objects/41/ad58aaa7f7487b32a5911ec9d64573b6473c34", + ".git/objects/41/b5ce181cb2d793723531bca17927d07d9d6c02", + ".git/objects/41/c5977bd322d8d6d84a74fd5bf94dbd744ef85f", + ".git/objects/41/cdb9b628ea0b0a2c96364d2a28202efaf5c891", + ".git/objects/41/dbc6e3a610c21feed8a33ba8cff9a519a47746", + ".git/objects/41/dd7cabfc7bfa6bbf37f3973fa3ae63861e7598", + ".git/objects/42/0c9b6b7c7e8bf729bff1c3fcb9e7805b29b686", + ".git/objects/42/143b4d9e840a90fb4041901bc68e33e4905071", + ".git/objects/42/21d31761a9d10abf3383d3db3b740444f1412e", + ".git/objects/42/268c42a8b3705a37efc57c51211e822a00d14b", + ".git/objects/42/26fe625011b4bd7db0fd0ee9ed6ebec52335dd", + ".git/objects/42/2f31d777dcab3532319a3bfaeaf2535766f341", + ".git/objects/42/5282aa14931305ea977563118f4df985fb427a", + ".git/objects/42/5928915dcae1e363f6052f53f977d402adc3ab", + ".git/objects/42/5a298470549cdd7124b4c925a51d6fc837a881", + ".git/objects/42/62bfc4bd79681b5c5e5048870ff2c56c261e46", + ".git/objects/42/6f5490772b93303a6229464dfa35ee03794805", + ".git/objects/42/771001720fac98c72f150ed551ea06dc5e5c92", + ".git/objects/42/77ee2054c84f3c8561c4d2b1b381b015205ce1", + ".git/objects/42/82d7bbd178ab4d64b9fb2da25bc4b4094ef6e8", + ".git/objects/42/86a68b362d8f760f0930bdb4cd71f3622431a5", + ".git/objects/42/8cc656c14c653c5d667b5dae5c1f86bd22be85", + ".git/objects/42/96645b9769e446be1b993db36a39dfa7c08ccf", + ".git/objects/42/a72e6bcbf820bcaaef38544cd5519f3c8780a2", + ".git/objects/42/aad7cf15a5f6cc9e51f9b99aeaa80ac93325f0", + ".git/objects/42/cfac0670d7007ffdafd839248afec779eeee4a", + ".git/objects/42/d45337bb9d8b936bb8eecbc647b3faf88cb513", + ".git/objects/42/d680ef7743fa20a6736a692ec8fcd548043aba", + ".git/objects/42/ed90d564745c1127eefabb4277d2ff6e15671e", + ".git/objects/42/edfaa7bd57d35029a8b49faa85a5531cb755fe", + ".git/objects/43/05ef50cb3cf3425ce0b7affb5342f906373239", + ".git/objects/43/103d648ef82fc10f64808bdd9c1c19705098ea", + ".git/objects/43/1675de8499858537346ac1ce9f5feb8604d383", + ".git/objects/43/1eaedf37d63f8772fa5621b1898d7dd3d65347", + ".git/objects/43/223398a5351e9e9e93c25b527be0eb17acaef2", + ".git/objects/43/480963f83a658e607c84c835dc8b441f7fd4cb", + ".git/objects/43/549f65dffc9a8bc27f11dee516e9f01a04331b", + ".git/objects/43/59e38b575091f1f47895a47b083ed90b0806e3", + ".git/objects/43/6e966a668c438e9d6b68568c8f74e119e79c28", + ".git/objects/43/71142906be4a18c01a940d2dc710c56498bca6", + ".git/objects/43/732f94de0c12fc49d7de8b6292bea75a6eef59", + ".git/objects/43/85e61172dd321ab3700939b2edc34c0f646e11", + ".git/objects/43/8f654271d178ea01c8d3fd61cf583a89cedfe2", + ".git/objects/43/a908bb6d9f2b3a276723c39baa47b8237c9184", + ".git/objects/43/b1f2fc036434a957708e74d778cb4715e94d89", + ".git/objects/43/c72211af8b2564ab4bcac610c21640c71cd86c", + ".git/objects/43/c9006d69bbe97bcb3b4fe0debc360e399bb605", + ".git/objects/43/cd40a10eaa45a15be4c651655984722b23045d", + ".git/objects/43/ce040faa8f30365309960f01a3e7742d317221", + ".git/objects/43/ddc6d1146ed52d431dfbfcf0872e23fd38b04c", + ".git/objects/43/e07343d3fb249bd7e17e95e2396d4151c01ded", + ".git/objects/43/e5664dbe4359cded265fc122cb2a4b1353b13a", + ".git/objects/44/1806b2ba6519fa5ec88a3c6bc2b256e6ee715c", + ".git/objects/44/1bbf1f3f5605813e866486514fc6741cf5d434", + ".git/objects/44/1c7b43a335a44b6b190496f80642bb15891600", + ".git/objects/44/3736339eee2a6f46fb8851bb2bb35ccde39cb9", + ".git/objects/44/5263a9eba055d3d3553861ec6fa0d16ca3465e", + ".git/objects/44/53350319b2b959b50bcbc73e62b10cf2ffa6b6", + ".git/objects/44/6caa8c194202e9c94ed0744d0bc7efb15a5c08", + ".git/objects/44/795124f63e8e1742425019c52e7397c6e1fa38", + ".git/objects/44/bd1e7d94a4882e79504484546c58090f522d96", + ".git/objects/44/c153eafeae1dae58eb26cc84b1d8de57922fd8", + ".git/objects/44/c31ec44d38e8ae177073647b5016fa56e75974", + ".git/objects/44/ca4e9a0a97dacf430fdb21f10a6101b2344ad4", + ".git/objects/44/d01cae8e6618fbfb3d65dd3e169dd8ebbb8048", + ".git/objects/44/d3ff731c5d6d55759284feac9138da8b74eb23", + ".git/objects/44/e5387010c59c76c2b52325f9fb24d8dd9241d3", + ".git/objects/44/f934359533ac3455f0ba846472e0323d1a8175", + ".git/objects/44/fdc5288b26625f25cd04fae2516d8d44fa3cbc", + ".git/objects/45/111a785da63f0e746526c8aed702d5adcf6461", + ".git/objects/45/3e2523a58ec711cd808a51e8180051600e394b", + ".git/objects/45/43378b6b82e7c31021cd736e12e091664490d1", + ".git/objects/45/4650cbe2e62cf1acd45084f0402f5fbe541e7a", + ".git/objects/45/54d231668d8487ac9628381ca0fb87be21819c", + ".git/objects/45/5aeefe9505c872609a2e149f46495a11adf109", + ".git/objects/45/6a9583dab21760ce30e0d2e087d3cf960d2b63", + ".git/objects/45/6c596315ee9a28d1db5b37beb635653f0745b7", + ".git/objects/45/6e8a9e38bc2cc1ea0334a7d51679fb1995c582", + ".git/objects/45/72eca6a761176d87a5886a775d2cdf862930c9", + ".git/objects/45/88c8d076798b2451320b5364f688a1149189a8", + ".git/objects/45/c6f70fb472a889975ccab33fb6803098d9c1ce", + ".git/objects/45/dbec5b046e849183fb94eeb0181cfa11be2497", + ".git/objects/45/eb5fdb857d39691f7ed48b2e07a1eed5abab27", + ".git/objects/45/f41e064194be568b48fff58e4d7f9b881f9e96", + ".git/objects/45/f8a59b6b9c5cfb7692b4e93d4c526ebbecb8ca", + ".git/objects/46/02af167486a6700ba7cfaec3f1b614d4b1872c", + ".git/objects/46/1235ac67df38657c931b6f40c274a2fc8f4b5d", + ".git/objects/46/16841c356870ffad23c50df82d4ab3fb1ab5a7", + ".git/objects/46/24b00e4462b917d0a71f7c7da8c4b01568fafb", + ".git/objects/46/2c250427a67e2321f6b3b2d384fe72eb96182e", + ".git/objects/46/336091ad697431ba8b51f10fb241f0891aed31", + ".git/objects/46/41612e36406c72597b15201aab6f9a35262287", + ".git/objects/46/426264427acc158a32e6575d96125ac8bcfa7e", + ".git/objects/46/42d05d7189871c47e84684882dc82355c37b37", + ".git/objects/46/4af0319f8529a59389d8be6bfefd0387127361", + ".git/objects/46/4d1b30dc74d9478865bfaaacf7a6bf4935051a", + ".git/objects/46/50bce71e03473fa42b852778f0ac64a906f2c8", + ".git/objects/46/5678cc307a8afbf24f5ba3eb6fa1c615d48b5b", + ".git/objects/46/5789ef5296ad9de2b352ae4d0eed8e2e6446aa", + ".git/objects/46/64c504996368b8769b760cc987223a35c209ae", + ".git/objects/46/64f027192e9a221ecacd74543f2132a74fd2ed", + ".git/objects/46/68641e14b318c7f68db8c4b0921a673f871999", + ".git/objects/46/6c8ce069b68d77a902b3be6134c452d208279c", + ".git/objects/46/6fe2766a741bc59f835b04a0e281173c11ff23", + ".git/objects/46/734e2391cff332624a415783b9613099906407", + ".git/objects/46/8707c9e1977a102186d2de09bc16599c508276", + ".git/objects/46/ad01d3aa82be28257de33496b3deae450cbfb0", + ".git/objects/46/b398e277010caaceea0f8ba9fa19a25d961e16", + ".git/objects/46/ba9c1b17ee5b411f33b421477459701801a1db", + ".git/objects/46/c02734405dec58fd6a8beb84cebe0126a98fb4", + ".git/objects/46/c0d144d89fcff588ce85f99548158460778eb5", + ".git/objects/46/c7413524d7d6756d0498b9dbcde48b80f8534a", + ".git/objects/46/cea771b47509cccef1554ae46e505e93d6fd0a", + ".git/objects/46/f1e10e92b55bbfd0960d1b77aed9f295afe2bb", + ".git/objects/46/f43ad20a5a4b219333f4ebcb7194c296d88ded", + ".git/objects/46/f736c13c301a9a5bf883c29e90c20d3fb648c6", + ".git/objects/46/fa16ba53d9f020d901918847f4b34b6bf20aba", + ".git/objects/47/08ba3c7c49e887d9ffc2ccb7a6fc63bf5d82d7", + ".git/objects/47/1a2bab954630e0838cca1f6e9241cb6eb03901", + ".git/objects/47/1f6ddcccfbb5912f5a7ccc92fc01eeced93738", + ".git/objects/47/2d2b3977394d4c35e8d667df726978effe9f9b", + ".git/objects/47/44dc45c251f0bb72f464b0ca1bc6355d85d907", + ".git/objects/47/518df5453163817e6012d26d887210c8804447", + ".git/objects/47/5f4759987ac40815c572619e4a9cd568de4d9c", + ".git/objects/47/66edf1034921b810543f717fb35efe193f6b7d", + ".git/objects/47/897437b789645866617948c742949f4e6c603d", + ".git/objects/47/94834a3cbc9cec143ae232a73e6bff8cb2ca54", + ".git/objects/47/94fa86f6f828a6f914e6f2dc76210496804479", + ".git/objects/47/999407f8a38178dc7dd197255a22c4adee38e0", + ".git/objects/47/9f97bc1df95c0a1a83a5d83cc9e1a451e98725", + ".git/objects/47/aa743a2aa1bba310a973e0c9b95c68a7010bc3", + ".git/objects/47/ab1ae240ef5ccdc4224ec6b35d7e96050d09c3", + ".git/objects/47/ad58dcca6ef3f1bf2295a6b40f8601d0f8a04d", + ".git/objects/47/ba908d3854efdac4a2d263e779a35f924451ef", + ".git/objects/47/ccb88598b18507847a5d84871f53e038e9a861", + ".git/objects/47/d57025a7731672d6ef91995ae925e0b6962b50", + ".git/objects/47/dbbdca66de84d9dd2a3e1087344e3fc7c79dbf", + ".git/objects/47/dfe7abad5222cd3c3367cd812eddfc1f261abb", + ".git/objects/47/e00d9e2711dc16c8dcd3b48da5dce91dab0eba", + ".git/objects/47/e671d289a95271467bcc9235eca2946402e2fe", + ".git/objects/47/f3d5b933ee538c8f188fe724573ad81cd74ada", + ".git/objects/47/ffffcafce8918ca378cf1655ab0f086e56c4b4", + ".git/objects/48/07972fada52a7b6ff44868fc9c53c3eb6273dd", + ".git/objects/48/138852a16663fe79464c44409c35b5b3136ba1", + ".git/objects/48/176d8da25166772ff5f386383e8776a03192f7", + ".git/objects/48/2971670d92998fd24149782086a7e42b9f6208", + ".git/objects/48/4bd5e459877ec3bc148667516756487f634a0e", + ".git/objects/48/52cc9b80640d9682241e08bac7839f618f4a95", + ".git/objects/48/5ad8afef0ca5b805fdf71613af7182036f8a9b", + ".git/objects/48/63bac800bdaf252dd7eea87c87f2dfed2100b2", + ".git/objects/48/77fa3f7498f8de91aa06cd818a1e73180bd294", + ".git/objects/48/83d6452a7f0fdbfd4f4a38c1140b932673d906", + ".git/objects/48/a6eba836a5e17cb0a1ed2fe274ddc39d4d9399", + ".git/objects/48/a7662359b8f08227c70a420dd16dac3c59b3d8", + ".git/objects/48/b2d82e6712e8ed0b3f0f4d475d230c38313909", + ".git/objects/48/c769b94894faf4360664e96dec2b3f307a134e", + ".git/objects/48/c8d8dc13a1bf3d6601e520c6e7f33629040a9c", + ".git/objects/48/cb188ae5f4445365f0a29e2e8ae77e835fc279", + ".git/objects/48/cf67e55d0e1f6aead54253d27e721d4c3b15c0", + ".git/objects/48/d1deb2494c229db35243747d01fa8b460f113a", + ".git/objects/48/d9d13daadb49b5806d43d8001b78555bb32d44", + ".git/objects/48/f71a7a9b9a3fa6887b18c6fd86349e8ed19951", + ".git/objects/48/fcab763e12c37f2f1b8511c77180a316717826", + ".git/objects/49/00a7e4f89615a2dffddd407b54e63cdea8a78e", + ".git/objects/49/016732f6f348771d8e6001f019f61c403c406a", + ".git/objects/49/0ae95c77ddda35d782c59038bded54513f56f3", + ".git/objects/49/15e5f0cf3e9d3de103c1c3f5d573838f71d40b", + ".git/objects/49/22030338ef1d845e349eee005e899cbe12213e", + ".git/objects/49/2cd11ae0219d5e86e908965211e521a21141f9", + ".git/objects/49/2ce710311dfb4077b46210ca9664a88129337d", + ".git/objects/49/2d650bd70a8c45ad8b5a9d1f4c0d0583f2f682", + ".git/objects/49/3ed37ca46255e7dcafa14c63d73701bc767add", + ".git/objects/49/4374826fd6ba0716009770dff84d8dfe32e825", + ".git/objects/49/4819fc0d6801e1a43c8e13786b4ac6f8f332ee", + ".git/objects/49/48d00db2563dc0e0d15de2639201b992e76c96", + ".git/objects/49/58f2fdae7d210dae8865bfff2effb38cb56ad4", + ".git/objects/49/60bf3a7adc1b2e719dfd7fec1873f3fcce5100", + ".git/objects/49/66f9ed8dcef546ea18697dc6f7cd9082205141", + ".git/objects/49/6f577400a50a3506a38a77e17cea8a2b4c2b12", + ".git/objects/49/73bc66ca7f98ca32c29b4538d749145f3b744d", + ".git/objects/49/93c0899a31322fd00c4a4381651b4cd1c7acb1", + ".git/objects/49/951cfec1a7f2cd6cd596fcf532511765b937de", + ".git/objects/49/9a4edb3fe41500ce14b7a649841738c9d2347d", + ".git/objects/49/9b884e99f1d72696b1df72756317980de57fac", + ".git/objects/49/c00f534f46a0e967f8ace8e52f8cb3f5cbae01", + ".git/objects/49/f7372b98a7af421cdfe3a3485a7b1316f63566", + ".git/objects/49/fd43dd20331ca1c9646dafab1bd3f505abad97", + ".git/objects/49/fe54b16b5be19501911783b89ecc685badee35", + ".git/objects/4a/0529c59f7ecb3637f5b64fcc1f47530121cb17", + ".git/objects/4a/3018dbc2c7abfc2941cbb9204be5bc83311a0e", + ".git/objects/4a/356c5713964d70d1f808cb3c24b2b7746c7204", + ".git/objects/4a/41f77db4a8c3b8c6d2185d94ecdfc5bae44cb0", + ".git/objects/4a/4b605571e01dbcba99bb50589ac145c06d2c86", + ".git/objects/4a/4fea7219403ea7b13d2c43a85e35c02d27118b", + ".git/objects/4a/5506e97810ae8d53fbc584560dc7b6d66438e5", + ".git/objects/4a/6e2abf2168183a76819abdf40283e753974489", + ".git/objects/4a/758225b5ea103d4a9e0ce2f032297a3917be93", + ".git/objects/4a/7981b2b380cfe83455293bebb0568452301beb", + ".git/objects/4a/7abda9f0691bab5d122151c04b6ac12ce082f3", + ".git/objects/4a/7db228ca3c4de1db3197a903a1418dd0c1ac12", + ".git/objects/4a/7e32c63d28bf2962862757f9333090a85d20c9", + ".git/objects/4a/96e704f67ce5e6fbfeec70c1fd01f26fac607f", + ".git/objects/4a/99fee3760fa40ffac67a100b4010b306824311", + ".git/objects/4a/b9dc1a71c0a98472b20a0ca343140809c6aec1", + ".git/objects/4a/dbf63c7c0cce5767829b596d8193dce16fe3d6", + ".git/objects/4a/dc9ac66114b5b7eb43d738494d808ec7f91685", + ".git/objects/4a/e5754e228f4fb1d3fe90f723ad68acd0b1c7ce", + ".git/objects/4a/eb821513ae7739f95639b92ff5cf9cada43c91", + ".git/objects/4a/ec0b81647562002b8b7ed921af9a9461e7de03", + ".git/objects/4a/f788d533e4974569b82d81e6e0ce267d414352", + ".git/objects/4a/f8bb21d7f4bcf27057afa999c615f6977e0b11", + ".git/objects/4a/fa0c0d9123c2e41660da6f66471ca933488571", + ".git/objects/4a/fde4a07e25b2222a1ed59654ec5a4cf7141883", + ".git/objects/4b/12942b17ae97fecd9ffc16ae273d46d013e124", + ".git/objects/4b/3075c5cd4fd08ec51c9e7501700b6a0bfe61b3", + ".git/objects/4b/33f64ce827b84a1c7632cd14c7ab75cec4d7a0", + ".git/objects/4b/34daef9aba4469772d4fb0c7a620098605dc98", + ".git/objects/4b/3a701efdbe57bd273351965be71a600d0df83e", + ".git/objects/4b/46b4cb12129d4be8fc6dcbd8b8b55adf5f8798", + ".git/objects/4b/4bf59a2878a3b9955edda690290bb8a4633a85", + ".git/objects/4b/4d8c8f6ba2b553efefa15cb8fc3c0255e6c6ed", + ".git/objects/4b/539f93e14480c8d01d5cf69ae10f987f09f7fd", + ".git/objects/4b/620c9e3b726d04df6ad00ceed425d0ad30240f", + ".git/objects/4b/6a927ed0122826598b2bc400778b2e9ceedf96", + ".git/objects/4b/74096949733f06bfd233459db76ae90aa13ef1", + ".git/objects/4b/775ffc3c7ff1831baa8bdba62c1ab78088da5a", + ".git/objects/4b/793451af69105110a0f912f16f77e8a8791eb1", + ".git/objects/4b/7c4c4f2fed35ee45573c1178ef01d776942a1b", + ".git/objects/4b/7ecfcba53240e869a601aef29d70aefa7ca58e", + ".git/objects/4b/9e84b5caf168188cc94ce7cab129f495d16eba", + ".git/objects/4b/a49e2c5125f5fd183d5a1406b165f1b6b2ea78", + ".git/objects/4b/af4efc7b2e4a117ee3e1357d4f542f97452c66", + ".git/objects/4b/c4fc080379cd57f8dcbb8bb7b5b334612f253c", + ".git/objects/4b/e4bae9d48d174310ae02f412b8a22c38466528", + ".git/objects/4b/ea56f32a5f5cc6ba06b47eead976f826a94fc9", + ".git/objects/4b/f36c00489c5720e30212173bd1bad59c8394d1", + ".git/objects/4b/fa8302fc7a81a0d3735b87a7370baf72d006cc", + ".git/objects/4c/00da044e546dc6249398936b6f408dfa9c7602", + ".git/objects/4c/0207899da1e6e959bbbd184c1223542317bfcc", + ".git/objects/4c/0e22251ca2a33e088714a5231a11d85476c14d", + ".git/objects/4c/2521c1e2d63c74df1c9c7b019d57e8707e06e5", + ".git/objects/4c/2590902a4cd8dd823109c758c62530f236cb10", + ".git/objects/4c/27f206bc3a7ad84be9667fa3d4e4e5574faa21", + ".git/objects/4c/30cf01eba98be96239f9729eb873530ec611f9", + ".git/objects/4c/3895c889d4df8b95639ab351a4323b8d4c6952", + ".git/objects/4c/3927cc516bd00003c553071010f8229d323d97", + ".git/objects/4c/614549928f7f2a9952b4f9219ae457c7a761b8", + ".git/objects/4c/74611a49c10bffefdfe9fd035a18a4286f6479", + ".git/objects/4c/82c81c9ddb448d5c7aa280112f2ec35350c16d", + ".git/objects/4c/842d92c14c676a00af5728a419d4aa22017c37", + ".git/objects/4c/8c2b382f5f2083032ae4a3fd8b07dfa4091ba7", + ".git/objects/4c/8c3f07234b1df752a0301db9686dcd282258e9", + ".git/objects/4c/9674cb42779b739ad9a20f9f4e7ed6f3b7ec38", + ".git/objects/4c/9a1ff153c25b4a17b63c9b3e786716e3beecd0", + ".git/objects/4c/a8d0a76ae84aa410ec92160c3df1983e97a650", + ".git/objects/4c/b05a758a7a7acb4f0bb316a45c3aa9d6d4c5e5", + ".git/objects/4c/b8fcd9f8d0ae5dcae1102f585beed7a5546822", + ".git/objects/4c/b9c76ec13cf5c70feece043ef7680caaa1edaf", + ".git/objects/4c/cd98c81cf01caec9104509e0ff3e2a58dbc768", + ".git/objects/4c/cf68e8d97557a4ab52345b29574f16c0775f95", + ".git/objects/4c/ded4bb585da6bf37d7af2337843413887e7db3", + ".git/objects/4c/e0af15b8bde6bab3cfce8d61783b61d9cd915f", + ".git/objects/4c/e118d77ada2b64ea99baf54b0b69b568d26958", + ".git/objects/4c/e2908962f424b8657cedf06e5c74372fd28dcc", + ".git/objects/4c/e47158fe559644fd46b8e50ecd7820518b1346", + ".git/objects/4c/e80a5b6500442a6e2ec8f289adad575a969900", + ".git/objects/4d/066c1f81adde2a248a0c88f5d30fd845d1638b", + ".git/objects/4d/1caa7e0bba565a78717498d4816b7f08a8e46f", + ".git/objects/4d/1d3adbf631b8996a751086f659333061d5fa66", + ".git/objects/4d/2bd42137bcad90c4a0e8975cdc13a9302a623a", + ".git/objects/4d/2bfbb2f72048ce15571baf68cb6ee29ff0e493", + ".git/objects/4d/42955c6a4832ccf7d6d177d51c6460e5b132aa", + ".git/objects/4d/5821179aedaa564d29df288aa708f7db78277d", + ".git/objects/4d/5d031aeb5118058abfeeb78942001049616338", + ".git/objects/4d/5f93c87b7c59bdb768fcd74d9c173ad66516ba", + ".git/objects/4d/77ff4394ac8778bf3a886c9c414db72e965381", + ".git/objects/4d/7b6df31eae1a86e7a26b66a3965a708910816a", + ".git/objects/4d/86e7be540c8723472af30e7ddf0e28edbfe4ef", + ".git/objects/4d/8e97a69d4b2d2b5dfcfeda903358c72895a28b", + ".git/objects/4d/a0907b6a31f5d2308e68a50a7f1b53a3148c17", + ".git/objects/4d/a95882a6debc75e3045c4fed3055c95d3007bc", + ".git/objects/4d/aeea24a5c0c1b76947154fcd9e4567a79d1bda", + ".git/objects/4d/bd4441b83ffa320476b00e0bf660914e432ba5", + ".git/objects/4d/c6ad32b53e3dff5500ea08436c46288e3d5746", + ".git/objects/4d/cb8bf6fc6d6c901a50fb70f5e4e70144b224e3", + ".git/objects/4d/ce5279c6ea93f4915ecba35ac0251cc02fac77", + ".git/objects/4d/e6ddfd781ac788c149694676292021aa459bee", + ".git/objects/4d/eaa0c6439a2d8b21e1aa3aa02f19dabf0ea3d9", + ".git/objects/4d/eefc9c07343299905d1a01e0dd9256d7f3d7c1", + ".git/objects/4d/f991522fd50cb754bb0dc164c26084f7b4dc83", + ".git/objects/4d/faaf90df7f6233c798030d2aa7c89f864162bf", + ".git/objects/4d/fc5ee775e63fcef0dca9cecd4476b0422d1c9c", + ".git/objects/4d/fff5006bbed2c5072249af9f0b2c0d9c50d0da", + ".git/objects/4e/0a2ba876519987ae2fde688491a641dfe2eada", + ".git/objects/4e/116295fefd6480fa1c67a079bfe84ec1dd19b0", + ".git/objects/4e/1c30e04bc73e6d4b0594e40177c0c229667a9d", + ".git/objects/4e/22c765df6792cb42c9456d3dd18eee7c8c20ce", + ".git/objects/4e/2a00f4d252bea597f6d70fa5c34ed6849009ff", + ".git/objects/4e/36e4c99273414dc2a15e62606b3e90260c4215", + ".git/objects/4e/57f0137273f2a1dc51c611545cb02f562e8084", + ".git/objects/4e/706b7b9764c17f6af333b5f4738e9f75a05110", + ".git/objects/4e/75faa6dbd867eae278b605a10e85188cbdda3c", + ".git/objects/4e/81ec7d631ead981821aa5204a41f65eba03a2a", + ".git/objects/4e/8ab5d4ab827b89a4d7ab79dd7247013c631215", + ".git/objects/4e/8b7b5577e2d3994ee34b96449df180e5de044a", + ".git/objects/4e/905e9f85245a701e5b020821d6d11910b472d5", + ".git/objects/4e/a31fd4f1f4ea30dac5fc7f2bd31f8a457849a3", + ".git/objects/4e/adae9a716ad243199b8c054439b4f3e217bf1d", + ".git/objects/4e/b30a29f683a5829710746e32c199251dce32ca", + ".git/objects/4e/b769d301fb9d26d0396d64f7bc35999a8596f6", + ".git/objects/4e/bc7e11949186269f2a02a2febcf37ae32870eb", + ".git/objects/4e/e6876dcd9decc1de010ed2057ecf28f9758e68", + ".git/objects/4e/ea5f5e6d86e4a92f049e936d8efb917cf01807", + ".git/objects/4f/13501c7aebc264df5ea850b3799541b17bbb13", + ".git/objects/4f/19ab22fa5fdcd1319fc99b595b851444abca62", + ".git/objects/4f/1ae444b3240f8205303471ad84008db92e6e06", + ".git/objects/4f/2782dab27435c3357a005f9b20d04d445f67bc", + ".git/objects/4f/29ea6a576f4174ed0c3cc6ac75a4f60d44cc4c", + ".git/objects/4f/2dc512c0201a71eb1ab109d10c7e981fa9e941", + ".git/objects/4f/38bfb3b1c6b3d93c26643eed4f302debf17ba7", + ".git/objects/4f/5e5a415f062e0f13b280529477da504f4a68b7", + ".git/objects/4f/62a8d27c18e70c5a26e381cee686fc462fe4e7", + ".git/objects/4f/698a4aff3f569528f09febba30ec0fdf686048", + ".git/objects/4f/6da68870871f00d457aaba61941f53fcac46dd", + ".git/objects/4f/807396149499e2f2e6429862f13cf248ecc9f8", + ".git/objects/4f/82988d9c39cdbe3425a903be487e00b759d522", + ".git/objects/4f/adb8451632439714e3b486cca870cb57e91232", + ".git/objects/4f/c657d1469196f0efcd6ad487108e2e56fff312", + ".git/objects/4f/d8a5e72b067a70b646a7bb3022bcf9b0151e39", + ".git/objects/4f/de740aecd5372f3a0d2f581475f494d9a6220e", + ".git/objects/4f/df17af2e5f6f316fbd3c783194ed250d5e0351", + ".git/objects/50/001ec6362406d2daf1bbdee650ab3d2f64a78b", + ".git/objects/50/2624333854e4ba3e9354d7d11a9cd6c8f34bcc", + ".git/objects/50/28850d812bf767bcc8ae087bb16c493f615744", + ".git/objects/50/29bbe0a626b18f88af30f97be59fafebdb4046", + ".git/objects/50/3b304b42da178ba26f680fb40d0eeebf226917", + ".git/objects/50/546f578abaaab61ca8f1488f9382f88889b65b", + ".git/objects/50/5a1c667257b79feff654fc30864765a1942efb", + ".git/objects/50/64ca33170bdf9989bd7edd88d370ab19d6012f", + ".git/objects/50/73e25a1a2bb7dbfebef63ec3878c1561913402", + ".git/objects/50/7deca340f1d77b608e7ee9d95ba5e7e66df9ab", + ".git/objects/50/897546d8a249e8e546e105b9f9665b1a6ac9ea", + ".git/objects/50/93a3c5576f6b644a490839f2cac7195068817d", + ".git/objects/50/993894f3ea8b72fba02210c8529bebba5575ed", + ".git/objects/50/99e4c737c7ac9773de683b1af2a44566ab7cf8", + ".git/objects/50/a2cfb41bad7f08458c9b05b66f1d999779dcc6", + ".git/objects/50/a3cd23e894af02e95faf01d66785d43a26bf35", + ".git/objects/50/a5ae23c969632a9bb05aa6318037574e47a4c7", + ".git/objects/50/a9be6ecb90b93bcd550edb21f942adf40c4fab", + ".git/objects/50/ad433c04f6f14b319fa79d576e34957f03ca4c", + ".git/objects/50/b08a1ddc15f825706397b3dfa32b9b702996c2", + ".git/objects/50/b7c3943371a6f18bb89338db282113b7dc7585", + ".git/objects/50/bd5c3c5d98448cb035af16efb75e8c20028c99", + ".git/objects/50/c23284e55419431c3974ad462093e750d4426d", + ".git/objects/50/c4a4e1d460aa2ffd27aac29907283fbb2079d2", + ".git/objects/50/c67d3977c1c8b3eef40e591720b35b7db9c5f7", + ".git/objects/50/c6b0b69f8ed8b23043a0c2c15cc550ee71d71b", + ".git/objects/50/e53bf4c1e4a74f8009fb59f4663a949f4ebdcd", + ".git/objects/50/ed55a5095d69bda78f657e592973b25fdb3e9a", + ".git/objects/50/fbb4f73f583ea4107b46e22218efc9af84f6ea", + ".git/objects/51/0397156f04aa3a7857d2ec3fe8d3d2b5890117", + ".git/objects/51/0ee765cddc94d76d27a272410a0b68ba292f11", + ".git/objects/51/0ef05931f92727113eb8762d4607c9c8200de7", + ".git/objects/51/10e41bb2636e77d453e314ebfacf59b99df9df", + ".git/objects/51/16e3e0c757c3c42c561aebe77eb0a0f55cdce8", + ".git/objects/51/1ecf1e966746624e5a707084fd0c3d0039937d", + ".git/objects/51/203463190a5b5bfb8c692c445b44ee97d974ae", + ".git/objects/51/2c1b8049e15c21dae1f3c32e7fcb266ea900ce", + ".git/objects/51/36bb15d6ad230db2c35a42abefd6d08198c118", + ".git/objects/51/4f6e04900e67ff58c409e9f891f68b5228506e", + ".git/objects/51/56e5ea5962fe769153b7bf2bad619324add8dd", + ".git/objects/51/58ba88ca5488c7da7e27fbc6df6dc8d28daab0", + ".git/objects/51/5e58d185100d23c176f08a36bb38e79bd2a3c0", + ".git/objects/51/5facee30271921ba589aeda2e7bc91ca62e7de", + ".git/objects/51/71bda9ebd87a4491eac154d5452b40c95e6627", + ".git/objects/51/79d7c18edc2fb46724415aeb5b7d7cf2c1970b", + ".git/objects/51/802f5d406bdb1e9d805a8d96b21e042724e931", + ".git/objects/51/87b0a63a24702cba6c3d63a8af679a765dba3e", + ".git/objects/51/8fd89afc7013fc8d367d889e52aa0f27683d2f", + ".git/objects/51/a922ee5b53ca81c4fa07c4179f6f2b81a4d423", + ".git/objects/51/b4d25ff61f57fc36b01aab6cc278aa7b784a48", + ".git/objects/51/c815196a2d734521e0ae85fcacb28668504570", + ".git/objects/51/cbcc62492b8bf891379791946e2467d0dc680d", + ".git/objects/51/e5751a00af88442c3c4e98c73ce59ef6909859", + ".git/objects/51/ebd6ff2a17d74c5c5ee3df241bc83544b51313", + ".git/objects/51/ee6471e08992419ba99362668ece4cecea06b1", + ".git/objects/51/f2777683edc4f4dec725c28c6ccfdda1292688", + ".git/objects/51/f5895575dc91d9910f6491607c40e5f8430e8f", + ".git/objects/51/f8cb51136b58329c06fdabae81d8a9fc9677e0", + ".git/objects/51/ffbc284ba574415f75ab5898a523a961c39d9e", + ".git/objects/52/19da4ca2f1bf8981c95c2271defe0f871561d6", + ".git/objects/52/2ade8e9620e9cd83a77a600b2d0fb0097bf6ee", + ".git/objects/52/2decb09c07caf7df33b9057888da8e761f4e87", + ".git/objects/52/31473b00bfa3fa3888a8f75bee0ddd16fb7dc2", + ".git/objects/52/35fddff2b12e492c287e3e1824af43a31c20c1", + ".git/objects/52/3acd48ce7817dae090bb632000790f7855e4c5", + ".git/objects/52/3cf576eb3ab9ce7a84ee17978e2efb49f0f11e", + ".git/objects/52/6b8974835e788577062b20647c489898f517dc", + ".git/objects/52/6cd55a5ca728cea1b8940f83e00a506361e8a8", + ".git/objects/52/81213e38ab3aab55bc0262d9a94d8436134d43", + ".git/objects/52/8552374521397637651e9a15079bd64091a8e6", + ".git/objects/52/934894159228bba2cda35b964e26edd8d08dc0", + ".git/objects/52/975cbb8fe9b8dfb8ae54f0508e564ef6dc4b42", + ".git/objects/52/9b839df46910e22c4239b7045fc861816e30e5", + ".git/objects/52/a0cac793946b3f48fef434d65443cbf14c1af4", + ".git/objects/52/b7e83b942249b7576000834166bf72456e4350", + ".git/objects/52/b900600258baddd86c60afeadb363da1cb380f", + ".git/objects/52/ba21d4c87739948b99ba86ebcbaf9d84cb6606", + ".git/objects/52/ba99777980c8a5e71c9827e1fd72375fefd42f", + ".git/objects/52/bfae8caf51f9cbf75241ea55ec80cb7510c099", + ".git/objects/52/c29a0b15100bd712f235ffee0d42946b7f2927", + ".git/objects/52/c32f99a43a036f3f2484cee2370b7fa686d453", + ".git/objects/52/c450c455522f2feab14c5091c80ef3bbacc948", + ".git/objects/52/dbb4ee1cdf7ebc9d5bff286f805430bdbf8d60", + ".git/objects/52/de58f73527b100dc45a251174a71565905ef4a", + ".git/objects/52/ed44f64bc0eeed61c319d65b14d99cd544ee85", + ".git/objects/52/f106dd7f97bc0a7e86c42d076b0da2eaa7f32a", + ".git/objects/52/f289822c69878098bd3200e5129cd29adfa8f6", + ".git/objects/52/f517980f7744207c365d6047ba2505902e5bd5", + ".git/objects/52/fbb43c23b7a212c5a2bd951aed3be951b7a6f2", + ".git/objects/53/15af50d55f524d6c66c76cec84a97bbf4ee4dd", + ".git/objects/53/294ed6577f045deb2c1d358ee1dfd7519961d0", + ".git/objects/53/341265741fc3bf8d5b47ea6a1cf3172b3cc0ea", + ".git/objects/53/34537a843cd860d0d5e937b995d426c686ab04", + ".git/objects/53/570d71d090b1699efdf97989184a55f06a9974", + ".git/objects/53/59316eb2d38c779b32a13a90b70782cacaacfa", + ".git/objects/53/636f1e3156961446f99f0eaedc454886e897df", + ".git/objects/53/64ef0b91fc24472006821f5eb1136dcbd4fec5", + ".git/objects/53/6ac766363aebb1c6c62f42e6d2eedd4ab276ee", + ".git/objects/53/7930c1e0c84b18d68de99e4ba088c132a53c66", + ".git/objects/53/86012b7a6bc16f5eb4b63ec8d55772a10cba04", + ".git/objects/53/8af58bbbdbc3ec5faba3c87a671b8802383044", + ".git/objects/53/959628fe63f2c51c1f770c672b4cefa47213c5", + ".git/objects/53/996f0d2b96c521ff077a7cf96430737fd07479", + ".git/objects/53/bc0d5adea00e2d06b2fdb15f460415d3966cc7", + ".git/objects/53/c5f1207d303f01dc9a947e4a81d2f614e2aee5", + ".git/objects/53/d9b718c0bc2ce4b9129f55e8636b4625e5d51d", + ".git/objects/53/f9a335c51095c110ac7a6327c0b4c780ffc854", + ".git/objects/54/1266f7121235abcfc3444018f5e7fed8d51608", + ".git/objects/54/22edbd06286c031e6145772f1c0a4bb810a0e1", + ".git/objects/54/2f54863c5525f20eba32ff97812341a200a4f0", + ".git/objects/54/30b5832758846193388c3949718ba6c693afe2", + ".git/objects/54/343323c382f916cce7ae28fcf8650e498b5def", + ".git/objects/54/34e811684d3bf9e9e8a6ba704c60be4f71b76c", + ".git/objects/54/437964acfa8ffdf26c15f6fd3763da868aeb7e", + ".git/objects/54/4e4bf4c4ef8b79068539f8f90821ef38a8b4b8", + ".git/objects/54/63834ea95aa35a44d7bf3961841932dfd17842", + ".git/objects/54/64c9cfea2af71a02e3c3a1d7b14ec14657b509", + ".git/objects/54/6968b452c73aa84dbb63581b7fc4593b53e5a9", + ".git/objects/54/78f22af6aaff7b4ee5cd0e789ff1cb631564be", + ".git/objects/54/7a485922de797b7b6a487e99f0114d4e21c733", + ".git/objects/54/97140887c0db8e9da1af2aff6fac3569715bb7", + ".git/objects/54/9c768fe8cdeefd2862ddee816605129ab22bb4", + ".git/objects/54/ae858cf796abc5a5a2f24c1056d3b0412913dd", + ".git/objects/54/b16d697365c30fad0e4a4e03187ed4ccfa6779", + ".git/objects/54/c1b2e6f019bc2d6ea83ec332c433e1b909a376", + ".git/objects/54/ce73099ab1a79b4a07e0479b0b218c69a685f7", + ".git/objects/54/e8a7231a718c756003be22456a3ef2fb15e42d", + ".git/objects/54/eca2c8a3d70f34b2566e796d54ee487b6411f2", + ".git/objects/54/f47198543eaf2b20e75ce55e3ca81bea896c4d", + ".git/objects/55/02013f8985d2ab98a6910cdea09373bd958d74", + ".git/objects/55/0a9eecd076ea705cefc8a36b00cdc7b90254c0", + ".git/objects/55/254865bbc413b8592277a1bba80412e1b8fc7e", + ".git/objects/55/283938633ef9f7d2b07331bac8487ee6d2b598", + ".git/objects/55/2a7eaac23e3db26df72fa4ebaa4a46d2eb87c9", + ".git/objects/55/2b23730c74105c72d13b7e1f364a63906bf382", + ".git/objects/55/31e441119bc6a9d27faf81962f46d57f2bcbac", + ".git/objects/55/3c4de0de3a0a7d0a3e02bd5694a7425b327454", + ".git/objects/55/42309684a8f27691202032713ed54c8dde683f", + ".git/objects/55/4f8382001eb0a83426739fb19b1dad2a7d694a", + ".git/objects/55/5c86df3a1fd507c4606d582d779b2b3a2d798a", + ".git/objects/55/6c6512f5aa6784ff87fd49021d2bf15dcac175", + ".git/objects/55/77fc45821a156c5e92f187417e644028fd692d", + ".git/objects/55/78f5ca24efdce22a8463ed7a3fbcf5f2f98ce2", + ".git/objects/55/82456b7c4c8e6cc02d0a45c4b65a2f93d5fbef", + ".git/objects/55/84fbe78a80413c22cb18e5c3a09a9bf225889d", + ".git/objects/55/851e131552a2afc69a0dae79b4d44517f3dfdb", + ".git/objects/55/97703c364df22db22fd9bb1742d97d3c6a0eb4", + ".git/objects/55/9ccfa9136a0d00798a119786063e53b76237af", + ".git/objects/55/9dd393de32fbda50da6f26eb6efb2ee8a88c19", + ".git/objects/55/ab98ac45e33e4c06073a7a6d6d964251a1d56c", + ".git/objects/55/abe63a64ca89502db2cb01f491d969323a9e2b", + ".git/objects/55/da24a62ca746ce16629631efd4a15a3e589133", + ".git/objects/55/f63627c36824e65965f535af599ed8e0b244f4", + ".git/objects/56/1327944ee3751d92244552154c6c5c44ad7955", + ".git/objects/56/1331be2ced15548183747aa3b7f75b99d8d60d", + ".git/objects/56/16e3079106d1d25f75b3b4c3d6aebe82e455c4", + ".git/objects/56/19e36ec2f3a357aca5e8ba72312cb4396f1dae", + ".git/objects/56/1d7751dade3f8dbc42f12095798e082fd45a99", + ".git/objects/56/1f3c426f7729e89af363bb672ba45d0613d730", + ".git/objects/56/21f8c28dacb1c4dd0642fdb35659230e0cbe48", + ".git/objects/56/2bb0c3060b6fa2624b83301b61fd15c59cc119", + ".git/objects/56/2c35736583798fef3231f53a4f1aee1f93bc0d", + ".git/objects/56/308c91da2a12bd5bc744be77249722a4c0bbff", + ".git/objects/56/34264984908a5713dc35edd0ff46ac928b96c9", + ".git/objects/56/38f66f17aac9f1c6e801fe162c94526cecc558", + ".git/objects/56/4dcab1a6a2f965cd6abb38f906dc4e414654c2", + ".git/objects/56/506aec16571814f2f2845e3726be77d8641b75", + ".git/objects/56/645bab6b7dee40a6d3525992fbe71914a4fb4b", + ".git/objects/56/8f9a907d49ff2a07de4e52206c48f4e3fb55ae", + ".git/objects/56/924d41f6017d84006ab1ec1ac843450f96d5ac", + ".git/objects/56/9600d167667ef07471c25e7b97b92e9e95d52b", + ".git/objects/56/99667f4fe4cb9233c19b696409e296b4347c6e", + ".git/objects/56/9b9c254a85812a976255f6886e6791228cfa22", + ".git/objects/56/a152c4e4ffda62c0cb549279817f07fabe5582", + ".git/objects/56/a77fd2dedb7084c9fdeec68dd0dea2c99eade7", + ".git/objects/56/ab7eed86c491e1a0f68c0ae98b5f9a3d3b6c73", + ".git/objects/56/af708c261aaee54be0ce179293ef132971ee14", + ".git/objects/56/b0f6d29917470d00d3d0888a5db9ecf569e52b", + ".git/objects/56/b66219d5516744c85ee015ff4ab2c7b9ed5096", + ".git/objects/56/e932d73aa120fa1ba870fc736846d598d54fa3", + ".git/objects/56/edb7c244a5fe9cf4b7fc3f0da9efd69de4ec2f", + ".git/objects/56/eed3c94400825d10186b4f7cded78c8eeba242", + ".git/objects/56/efe67febcad652fc114d83a1f54d86633347e8", + ".git/objects/56/f5bc0058b1cfc7f9db4ca3c13a3e1c3512b232", + ".git/objects/57/0ca0ccc729ab4f26492a37e9aa378f6ce1ba61", + ".git/objects/57/21b9d98d87e244631e7dca0e7270202b22fbc2", + ".git/objects/57/24b194d354e4d800e4334e72d5e564a01e09b4", + ".git/objects/57/320d1534466d9534b7cb591dd1305e0c382b30", + ".git/objects/57/44a060182d7c2740179c127e41fce72af634fb", + ".git/objects/57/60a14894b1c7c77168e39af32628ef431eb2d4", + ".git/objects/57/62be83129e8383f54606093925794da528533d", + ".git/objects/57/6525448b1c3ecf9f5fcc7a6e54bd2f4870db44", + ".git/objects/57/68eff4e5d5f1cabb5b2c5953607281a503999a", + ".git/objects/57/6c9daba28e976dac888478c98e6dc099eb88fb", + ".git/objects/57/76026211f31b9b4333b1227a5bbbfd785f0737", + ".git/objects/57/8bb8b189c5a918fe29c35ee2c4f85af0ff5200", + ".git/objects/57/9999596b4dd262fd24f00cb0f0b801b1cf3381", + ".git/objects/57/d24fa33359e9edc0d67fb701dde786c33e546e", + ".git/objects/57/e3093982b7954d41596b8531f47efff69abdf8", + ".git/objects/57/ee19722043b0e5561fe3111a7d8771af8ed213", + ".git/objects/57/eea56a0065de5e777d1e8eef728fb9df82480d", + ".git/objects/58/099f10f8aa11850892d6acd2ba8bf4646f5857", + ".git/objects/58/0b52614c4e40db03867dd770278f39fe5ec994", + ".git/objects/58/0ffcad690b1498ab61b6f1a8cab0fa9f1d3796", + ".git/objects/58/1e5c33d96db4764ca7c004e783873aa2eb1d8f", + ".git/objects/58/1fcc5c5e4d222c524a44f77c4d0d6452a01759", + ".git/objects/58/1fd6a856072891a76d6c4625924d1e46e86faa", + ".git/objects/58/415a0b5dc72b71d4910844dc6bf3e124359816", + ".git/objects/58/42a7c131ac99a2f6a5eae69eb6c9557717efec", + ".git/objects/58/4644158870d5f0c0c332ceecbaf1a989d3ea90", + ".git/objects/58/482b1d82e8efa3019be42132b342570536aeab", + ".git/objects/58/65217a4cc9ed5587e19b193c39e44ee9415e8d", + ".git/objects/58/6aacbceb74d82bfa95deff7d0aa416ce4f15e7", + ".git/objects/58/78419c931afbb930c0f631aebb9711691cda93", + ".git/objects/58/7b7e3c37d87a4f40dd2466af1384b7ff04b112", + ".git/objects/58/88401adbaeea6c04ca5f903dbc0fe59207f50b", + ".git/objects/58/9376f0766c808873bce89cb4aad497b613481b", + ".git/objects/58/9a8cd36119c5856ad3c882f106ac5e4bf70b0b", + ".git/objects/58/aa99a63e0068ac81cd02947670bcf15d96079f", + ".git/objects/58/acdf959614b888979cc0c5d2e122f1155ca278", + ".git/objects/58/b6d79b1d05e5f118e7b78b48f8a1ebec51ac4e", + ".git/objects/58/b844463a68a09f705917132396b6519986873b", + ".git/objects/58/b9c22dd3fcac363b07162dcbd65c30931055a6", + ".git/objects/58/bf4663c1ad6b044f78f4880029a8dadc166f01", + ".git/objects/58/c20d45e8c2237e09d65f9b592094f8fad48bfb", + ".git/objects/58/c3eff264da6c1a31183d52193f854cd69409e7", + ".git/objects/58/c482d58de0b33073f0c5454fbaa6f994026db6", + ".git/objects/58/d334bb1a8b1f4f835f784fee35c9aa0fe3ea94", + ".git/objects/58/db22f5ec4459fa3a4cccb354fd88b26569b60d", + ".git/objects/58/dc978b11116af44631ef22d1b9b4a9dd6bdd0b", + ".git/objects/58/e21151024db4b496d6dabbbec1b5641c435222", + ".git/objects/58/ed56d4d8c0dd98b105cd08b4622ee9df1c8c52", + ".git/objects/59/071a77ad908ba387cc1822538d92d806cb6d06", + ".git/objects/59/083c9d2da5b2727cc89997cd1348eacd255452", + ".git/objects/59/1e77c1d09e7fb0b1d4f5f1208fdc059d37a935", + ".git/objects/59/210e9fe9e77368c9e73547c2dd382da11c8f68", + ".git/objects/59/2ee06ce30beb5b376d7dbf3f697a907755dd60", + ".git/objects/59/303e723a9b79909b1e94478fb779ba95b15855", + ".git/objects/59/3949565c1e715af657549ffeca5d8adf1a222a", + ".git/objects/59/3c41618451b9df53888b6b290ff79a78a0298c", + ".git/objects/59/49b6e88de57530c98a3a9c6d85e81d3a4abcde", + ".git/objects/59/69c5ab5688c9376a528bd0e38f6d1da9bb08a3", + ".git/objects/59/721bc36b8f72f819d237754bf7395ae5611b27", + ".git/objects/59/7a30d37e384df7aa20cc908b9ba95a03243ee1", + ".git/objects/59/884c09c8985d158445fb0b7a86adbaf0796d49", + ".git/objects/59/8d5a38fa6595e11b7cb95b9d7668aa841a296e", + ".git/objects/59/ba41843715dcf2af35639d09b7f3d9c92380ee", + ".git/objects/59/d29d0f4a3d0beed92229c04c1b96efae2b9fdc", + ".git/objects/59/d2b601b49e90d8ade5e43e3ca77e8cb7a2ec92", + ".git/objects/59/d4bf7b3592e7d0bb434b42682bc62604e23c71", + ".git/objects/59/d78e775449cb5c5833fb8ae53b549bc05c4f7a", + ".git/objects/59/f0fc2ee794694c9d85351bfa5b044e6ef9cfba", + ".git/objects/59/f42c0669d1dd17b2580b794fbacf8a9c797ced", + ".git/objects/5a/05731bb2a1ce51f2cb0cc04c76f64bc9412fec", + ".git/objects/5a/0d68f946fde3b630f11a518b1cf67e9cdc9d95", + ".git/objects/5a/2067778dafa7f0ec217d229d5751ae32c8254b", + ".git/objects/5a/2354cde8a435b518a8d246eaea3ba76496b379", + ".git/objects/5a/2a1740f037642f9a58b7f73ff60076b16789e4", + ".git/objects/5a/30e3494d84ae870b7f7bbb082ca7a5a83ad938", + ".git/objects/5a/336306dbbe21bf5a091c618d51fa6abfe12911", + ".git/objects/5a/3c43dbfc84ed7f4a13257912e6e898bb1c611d", + ".git/objects/5a/418aed2d06d5a4ad644bfff346ea16b9a1f598", + ".git/objects/5a/423ef81a843bfe9ab40b7f5a04528564cdc69c", + ".git/objects/5a/478c3e22cd5cc84d7b2dbc6348c3ba3b829971", + ".git/objects/5a/5179f6d66f8e6243f16def9e6b3c7ac60a1bbd", + ".git/objects/5a/56b087c0f7a3468a0f2d116733784d80aa2472", + ".git/objects/5a/60c3d4e67a3eeb16a2c326f2f49970c09b0a4d", + ".git/objects/5a/620234a3448c11754c4cb987845ae126469115", + ".git/objects/5a/6ed824c9e682e495b643dfc55f0f59a6d50d7d", + ".git/objects/5a/80c23cbf332275f8155e42dc8fef27dd6f9776", + ".git/objects/5a/8accad2b0852d878d585fd2a67dbf961bfe6b3", + ".git/objects/5a/96b99cbbc1a0bd6f61c961501a6cc27b744d6e", + ".git/objects/5a/9c8485ad6dfb5c554bf94dabdf86fce0fd73d6", + ".git/objects/5a/9d3cf975d685dec87c2ec466cfdb86ad5c8007", + ".git/objects/5a/adb5dfb565bfc53ac252d94cfdce09e8f8f7c3", + ".git/objects/5a/c513782e74513c8a1ebddf62415570e42eaf80", + ".git/objects/5a/c81d1118ed3827c478d6478a395b7cc51e4678", + ".git/objects/5a/c9b1a5b526cf5ac16d24dc0a928bdbdef2ae7f", + ".git/objects/5a/ccb279e2fe360fc6f527d6c28326584773c961", + ".git/objects/5a/d9c34b317c13e8382b0c409c930d23a5d1e335", + ".git/objects/5a/f2aec1b5d128885b7847b09afaa571df801300", + ".git/objects/5b/121fdbb2a0dea27ddfc52aaeccd3e39dbc871d", + ".git/objects/5b/1a24795828c16fda65798d7c37c41778ae1a89", + ".git/objects/5b/2150e0332b7ddc0a5d02f68eef6417fab318d0", + ".git/objects/5b/21a172e3c4f3765ce759d5d75ec86abc63ef30", + ".git/objects/5b/22418e020a983805ef57c1a073dc20cc36301a", + ".git/objects/5b/2600699373621a5cb0c4a23dea3e9c4f2467ff", + ".git/objects/5b/265062e53880912a9b41bf3459df1a64bcddb1", + ".git/objects/5b/2da425ae46f638de55a449608e7cfa74d907ba", + ".git/objects/5b/345216ed805ea524963262e75a6db0680fcdb4", + ".git/objects/5b/4896d6eba6e5d0bfb3be133160ea729e5ff9f1", + ".git/objects/5b/498cc360f26747287627fe810f925ec3938cb7", + ".git/objects/5b/4c0b30478f349bf31aab8e57d7eab13234a5d1", + ".git/objects/5b/4e7caf15100abad8104518ef0e3e241f7c8714", + ".git/objects/5b/59664ac9ff5f5b84b9a7eddae01656c7ee4a0e", + ".git/objects/5b/59a1fe93f623dd04cc0e364a35565c164a0087", + ".git/objects/5b/5ba0cec92426f0e7bd4dc6013592b523886ed9", + ".git/objects/5b/5ebbe3c81c9c5626047f78bee23ac51528481a", + ".git/objects/5b/63f2240b9b8bb00b353f248319eb7eaf152f72", + ".git/objects/5b/6774fe01c3a3e412581c405a2d874c57f8b611", + ".git/objects/5b/67fcf6b6c9c3be96b2c95ef86ecf9b30d83c40", + ".git/objects/5b/6bc2cc226b1b7d7347e734cf144d1e169cb4e3", + ".git/objects/5b/6c2cf9d3d4e4fb301c778cef158e08cc05045a", + ".git/objects/5b/6d25ee724cc0ba531b62b31b355112f0c7af5a", + ".git/objects/5b/7458152a43de31308f0fa84915a29d9035cdd4", + ".git/objects/5b/b357ea9917804f667fce5ff491335356be2af5", + ".git/objects/5b/bb4c538409fd18ae55fc52740cb606bb95af78", + ".git/objects/5b/c1a50521abe6d5eb101f335dc3dcd62c98cc81", + ".git/objects/5b/c1f0622e16a92ed096250dbceb54e7b45397c9", + ".git/objects/5b/d3ec343465386d728e6d808884e32652945a2c", + ".git/objects/5b/f47c71627aa1920b70810902cf58e55c1a96d3", + ".git/objects/5b/f6a1a9e0e6cbcd5fed8ff6efb4a9ec0da0de47", + ".git/objects/5c/03bbe1c6baa00631b37fb9ec509b898156895f", + ".git/objects/5c/1640e8725cbefcbaa9d361ad1abfbd65632b88", + ".git/objects/5c/1f55fdecfa72694169088afcba1fb6082dcb10", + ".git/objects/5c/2863107d71b76458bc252f247e8b230bceb227", + ".git/objects/5c/34c1ac0d40794227a9ac2080bde88c47fdf1df", + ".git/objects/5c/51585c40f2eeac3d7b6b7083d530855cb70714", + ".git/objects/5c/7af833fef784a2073d7de5772ff29c9dcef5f9", + ".git/objects/5c/998ba749c66e7305da94d2a258aa02058ca2cb", + ".git/objects/5c/9b9075c503e57ca3315adbdbe88f6ffc7e172f", + ".git/objects/5c/a6f388d803d394fd69bbb25feab6f13917385e", + ".git/objects/5c/ace7ab2a22725a00c81a765b84f140f57f681e", + ".git/objects/5c/ae1ad7b2a027e530890fda8e4f87966b94f71a", + ".git/objects/5c/b1fb5ceec74caa5024cb77c0bcbdb4aed1edf7", + ".git/objects/5c/c709ca00fd76f119aa6d104026d2aa39517b9c", + ".git/objects/5c/ca752eb8512b4f27345eec949b0215d045f53e", + ".git/objects/5c/cd52f6fb32fb23b4c01e3bb574f014a4fa9b82", + ".git/objects/5c/cdc4430b77fbd89199c9a1f515405757bbe19a", + ".git/objects/5c/d80c47c04afeb50f36260d9878799beca23bc2", + ".git/objects/5c/eaa7c5b82402587759a4ac6dfc1387a5471666", + ".git/objects/5c/f1e4db7511eb4cc9598901b95821a548f577d5", + ".git/objects/5c/f7c84b51848295f03afe570d2a0a83263c5149", + ".git/objects/5c/fe7f212bf4f038ce4332b9f06762315e373170", + ".git/objects/5c/ffd02368e654000ad5657326e70cbd6882b087", + ".git/objects/5d/050bf8a7fa440e92cdcbad6c3d93e58c3fe14f", + ".git/objects/5d/084fbdd262180ba6bb90552fe6bc490958fbfc", + ".git/objects/5d/1a17327950df3d34f453dda6906d42d2b1562e", + ".git/objects/5d/28f535d9be08e5beac569760ee914b38db9148", + ".git/objects/5d/38cd0a274d9d53ad23383da9f6f32adcdc1520", + ".git/objects/5d/3aafcc26da767d83cbb6393e94453424d4445b", + ".git/objects/5d/48359b8ed2a4c8cd1d42f58884e2638238bb97", + ".git/objects/5d/4b142cc0e11e37a0af879ef9eff72f05def1ff", + ".git/objects/5d/540105ad6385bf1cddc00eda866786331915e6", + ".git/objects/5d/660844f1352c2ac14d0f800171a6d1e540485d", + ".git/objects/5d/8338c0d5223ee54535e316111a2ca31eaba6a8", + ".git/objects/5d/83f14d0e485bca5a370051da9bc4e04cef3b6a", + ".git/objects/5d/867a6d760b151d9c6b8a78961a360aa61e2519", + ".git/objects/5d/87982051ed9475c1fd5471506931a2454411ef", + ".git/objects/5d/a8be53a50fb3996e21a3d8c33299c47bf0884f", + ".git/objects/5d/acd4009a8ec03b712c628efd15b9777c976f7b", + ".git/objects/5d/bb8bc4c1db6d5af11858a1e112ec74794ea463", + ".git/objects/5d/bf69db0fc303f56e8dae7deb48d84679631a06", + ".git/objects/5d/c01a8be0d1d2f101135c99a69896a4547a2a0c", + ".git/objects/5d/c41a777ca2e4855a044ec1dbd68907fbef3ebe", + ".git/objects/5d/e3accf1ed2d048be2025c93896355d7c067475", + ".git/objects/5d/f215114655afed14df586667875caef275c8d1", + ".git/objects/5d/ff22d139c63828f781f716e25057969307ae92", + ".git/objects/5e/07a194ff1597b51da7c009959132d0c9fc55fa", + ".git/objects/5e/0c058ac64414e022609830fa1748656dc93052", + ".git/objects/5e/0db8b960be5bd61167e654924d95912222b6d8", + ".git/objects/5e/1209b609137c9f77ececcea02ed5ac7a7adadd", + ".git/objects/5e/13d3a028f96aa49c9680509471a80cc5a0389d", + ".git/objects/5e/1d217a8125eb6d457395ae5a7a3628eb4425cd", + ".git/objects/5e/2b3aec1d9b7d78de8b4e1e33ff42504f2daca3", + ".git/objects/5e/3243ad3059d9cf0d62ec42760517f48545cafc", + ".git/objects/5e/3b6f99967652625ae172085cf22a9e8919b6bb", + ".git/objects/5e/41561547ed9b7e5a6b529403704581aaaff4fe", + ".git/objects/5e/471ca3b94087e7db6f99d475049f5281f17c9e", + ".git/objects/5e/4a67a68349ff99cb77e4e7accaeca54c5e6726", + ".git/objects/5e/4f8dd3e1f733541e5ba7655c6e8d97a15db8af", + ".git/objects/5e/6398a6e58e370c7b658639425023046aa60eb5", + ".git/objects/5e/698cb5a656e01d6e9ab97ba7bafc16d678e2fd", + ".git/objects/5e/7fdc4908f98b0d37388fb51695c7215e9e1009", + ".git/objects/5e/8beae6b12dccd8066ae51306eddd52f80a4176", + ".git/objects/5e/91e8ae224482a8c1ad87f8e486ec9ee1164261", + ".git/objects/5e/989a5ff0a183fd9c7908625edc7ea5d56a23f7", + ".git/objects/5e/af8ac580bb6e9a1df59db0c8f82a90c21de4c8", + ".git/objects/5e/c35296f6b552fcac47814605f3b199d6e75f6d", + ".git/objects/5e/cb62b507591d807e9d85af563477dda2b0f93a", + ".git/objects/5e/e96cf4d0a27dcad890dbaa6faf114f507bdd3f", + ".git/objects/5e/ed714839a74ff21e3bb4371e2227cc6cc0887c", + ".git/objects/5e/f9220dec71d8f24e92704bba1b8fa96b2f9151", + ".git/objects/5f/041790de67c0fdb03dc6f23b0fd39b7c9e9a24", + ".git/objects/5f/0da0c1aed64f1792079132b473181830d6ec25", + ".git/objects/5f/19970dc53357da537fb3cbfe65ed91a586e094", + ".git/objects/5f/25b9ab13793252217024537436a57664ee5c5a", + ".git/objects/5f/41ce3b516a63ef53039211aafad8d6debbad5a", + ".git/objects/5f/5cdfee935887ac38c04ae96ac5051eea741a54", + ".git/objects/5f/60a868aa1622776afca0e2be390b304c914179", + ".git/objects/5f/6aee2752cae3d7369990fd9d27540ddf79fd3c", + ".git/objects/5f/79bc823abe4e7af7de12b03be9542d794964a9", + ".git/objects/5f/7ce2ed5876927e251a0394f3a95ae0dfed2f15", + ".git/objects/5f/84957513738517fd722edb3c31adaa68d52aa5", + ".git/objects/5f/9253a5534f8d63af43789bbd77f7fd34c38da6", + ".git/objects/5f/a72a79f8c6e22a29b8a62600b00bd047a9b205", + ".git/objects/5f/acd8ee2fe7304f86b4108e661579a921066bb8", + ".git/objects/5f/c0b62216fcc98d3104d3b557ba52456dfbb1db", + ".git/objects/5f/d2346175fe610b18d11f502ad813483cf11b34", + ".git/objects/5f/e0c49d9e34355fccbb503724a3f2cf971e22a1", + ".git/objects/5f/f0a75b6687ed872542d394f2a8eac87a599b27", + ".git/objects/60/00c7b92039f3891c48f5947954b63c0a4a460c", + ".git/objects/60/0a80e93856c0765c983f02908e41b0309169e6", + ".git/objects/60/0bf569dee46233797731909fd869547e037481", + ".git/objects/60/1781017cef0f0f857cfc7654eee145191f569c", + ".git/objects/60/2798adc96cdedf2fe0971dfe52d44dc06a0fa1", + ".git/objects/60/2ea4e90e3266512059a913ba86b84057e43247", + ".git/objects/60/40c5785b9b7a141f48cb60e3a5a89adcbea7d8", + ".git/objects/60/41bbf97fd29df472e9d65e58733b7365f0c86a", + ".git/objects/60/41e92fac63cf34d3da92e0eff53c55c2b20cdb", + ".git/objects/60/4258c5adde81e67c7b97e285154fc483b71641", + ".git/objects/60/458edafbfe683c2d5057f757ef61e3039a8153", + ".git/objects/60/4aff4f58d880a9de33149a246646c685d04e6e", + ".git/objects/60/4faceba3daea01ed739b151b899d7eaa894257", + ".git/objects/60/68f7530ccc859f52e55d573aa69f35c0572990", + ".git/objects/60/6ad534c98c71bc3327d0ef54148f8f25098f6f", + ".git/objects/60/8837879826565d2a7f55c62dbf3fe33e35684b", + ".git/objects/60/8d5dda2e8ea444126057e30963cd6ac76382d3", + ".git/objects/60/a7e0c308a397e0184586f0f31006cfc256c9ab", + ".git/objects/60/b4313ba8d455071ad711eb320707f34eea6518", + ".git/objects/60/c58123de47b7e2b1cbc48237626abccbeeec12", + ".git/objects/60/dee6706baf1d29a6a79ffeb014127209c3f107", + ".git/objects/60/e40986b0a76a068a8165e198b4fcf131c6cb9f", + ".git/objects/61/17f8636fa1eb9004aff8cb136fba201b22bb95", + ".git/objects/61/1a0231bd8f88ab9fc4019127f2ac614dfbe131", + ".git/objects/61/1a6721d38d3eb6e1884120a80b68bc3ceb8244", + ".git/objects/61/2478e8e2cd3b9526c4c190f9bc7636f41c35b9", + ".git/objects/61/254a6422dd6ac5b89f72f95383d09947fd1089", + ".git/objects/61/32ab01c4557694a78e385417c0ea133261f27c", + ".git/objects/61/590536df668f793b2eb0ce5efcfad5819b1eb8", + ".git/objects/61/5a98f4cf70ca4b0028d72ec212b38132f77337", + ".git/objects/61/5bbebc300b9ea8c9bb57f36a4f2a27f21cb20a", + ".git/objects/61/6872c6c0b5f228c1f5547d4a9ef9dc0cd94e7c", + ".git/objects/61/6c612e611cca20a9835a8fc9171f74b731992f", + ".git/objects/61/6e881b008123a7cb96d99523d28cb332e58862", + ".git/objects/61/81744f839bbe810ea3bdd320baac964effb8e5", + ".git/objects/61/8bfdf52c5b25d25112e1c7e0eea1128ebab97e", + ".git/objects/61/a332660b013603cdaf68e8f6b2ad14929128bd", + ".git/objects/61/a37c0f19187bcc6b9c19da184b8b269cce58c0", + ".git/objects/61/aaf30437dd4f3a888df1d52ac379e4fe04270b", + ".git/objects/61/af5a06183439325d2782c53dee348969834348", + ".git/objects/61/bebeba369c204c251ac74b918c1e467407a188", + ".git/objects/61/c13cb55cc43801944c5b0133129ccb185b6894", + ".git/objects/61/c1f225828b29834c8710101046ef9f516f2b01", + ".git/objects/61/c6306cba1c50fbc996b483f51aa3e36164f8e4", + ".git/objects/61/e0bf5c66d322f8d24826109ce3c7e5bd64fb1b", + ".git/objects/61/f4ade4613d274adca7f230196347d728ade6dd", + ".git/objects/61/ffdd7aba1de9513572379697ba152038f44a27", + ".git/objects/62/0ee97fd63bc1858f6a7c80927d3cacd7bc31ee", + ".git/objects/62/1aee050f83ddf726c9adb0292fef8fcf612f46", + ".git/objects/62/249d07a12f399bab9e824ade42a37ac45513e2", + ".git/objects/62/3afd1759d2542c6e4170b4a50118a013f1ea1c", + ".git/objects/62/473e0505b6edc73c8ded6e52a105de7bd5d3d4", + ".git/objects/62/5890c979e56867548e27c65bbca41b519a5750", + ".git/objects/62/61b040dc6ac63553c1b9d22d37ad5990b38eaa", + ".git/objects/62/6425b8d3dab5595c90f576ccc4e9ede5c60ec1", + ".git/objects/62/6adc40b2e71482ffc1e63a39e0223787a4b14f", + ".git/objects/62/77c2e456a14fde3078aee4e51abe57519596d6", + ".git/objects/62/7cf2111cb66b7ea14ccc59cd69ab249fb40e03", + ".git/objects/62/8eed49c65a7c45fe3ecaf4997547bfdc2a67a8", + ".git/objects/62/b0fadc50e915acc0e3b2982bf7f5e133babecc", + ".git/objects/62/b15be60d08f9f3f6179c9e3cbe7dd94199f221", + ".git/objects/62/c09c7f77469df690d204d609dc3e794b9a6742", + ".git/objects/62/c375ebc7ffee6751ad961d033b63deb76155d4", + ".git/objects/62/c77a44914913d00835e530be00984511d34d1b", + ".git/objects/62/cf51d4b008664db876abe17c80dffc8e908655", + ".git/objects/62/d238d97401135110afdfc4fe2130c5a9cfaea6", + ".git/objects/62/fb7984d8f549a783bcde0de4c7532411ff01b8", + ".git/objects/63/25e5fb5ebf2d78ae78f4c552fce21ad06351e0", + ".git/objects/63/2dfb78bc13b0e1713b1a80535403a3510671d5", + ".git/objects/63/351c9a68799ef2431d68a1064c67dc83232b94", + ".git/objects/63/3a191a3bce76ee672c0fd4e26a36399557e1ea", + ".git/objects/63/3b41c1c50085ebe6a1cbdc20391fd9211bc1fc", + ".git/objects/63/5e97a0cc470b78f131218183ef7f2efb7b53d7", + ".git/objects/63/63c0482072d65c0c91dd4157f3c00c25cd9f32", + ".git/objects/63/6aef7cae9459d8a71fb52516be11a3476994c4", + ".git/objects/63/70781584071ad9b2e5ee378251d2764bea33ac", + ".git/objects/63/71ba88de8192d68f71e4740f1564ddeeacb5e9", + ".git/objects/63/7415c0c2a3dfe3541842debce336445f8eb53e", + ".git/objects/63/757e76ef29d97264e5621494f2aea85ca96ab9", + ".git/objects/63/8fe7efaa022766783103968c421de289aebf6f", + ".git/objects/63/96c321364d63dcfd22686c767d3dde3ab1c306", + ".git/objects/63/9af403b58b0c99c728d5d0757f22bc358be94c", + ".git/objects/63/a2238e1685180e29d04d55f99f2ef453ff76fa", + ".git/objects/63/a5b78a79eed53cc6d5bffa7c9708bee579de18", + ".git/objects/63/c5e213ab4d996788f3a3819da397c4cc8411a2", + ".git/objects/63/c8e4b27dde632045751f83f984ee889947b002", + ".git/objects/63/ca40fda8d921aa0f4f3db4987393ccc7b4b65e", + ".git/objects/63/ce941b30f4fed489aba9721c6c93d60d00a492", + ".git/objects/63/d17df4e06c1f394d6807ef3e8e03a278b44b79", + ".git/objects/63/ecfea4cce1dabf860c525e9fa319237519bc5f", + ".git/objects/63/f40363b5036691bf7267092a97bb5c0c983a3d", + ".git/objects/63/f60586165c222e02f9d96800c5feb44425e358", + ".git/objects/63/fd2dbf50f3f41ac3d98614b84fe7c84d5c7446", + ".git/objects/64/0ffaee52663c4d567ce521b02d5452aad11989", + ".git/objects/64/1779be5aafe6d5449d3cc832e302225947a59f", + ".git/objects/64/18f7b29c7534105df6cfa2845505dbd4f65db8", + ".git/objects/64/2299ec9f2c0a05ef39d0f9f54b1ca8adb1c9d8", + ".git/objects/64/2a8b99e2c77e4017ef8a90a219bbafce8798a6", + ".git/objects/64/32610bb63409df56f86285f260c0ec8aa939ec", + ".git/objects/64/35bb82e0ed14448c13330da2a54dec17780706", + ".git/objects/64/38a0fac77d4323c818bd720f1df44034a7fc47", + ".git/objects/64/3c6f962ebb38ee80b655b499d215b1ba910521", + ".git/objects/64/414e4727d42b5f24eaa0ce422aa7a3daac0830", + ".git/objects/64/4417e09629e9f200b88756b2b87e4fff0b46c0", + ".git/objects/64/44e467ac89e18afffd0a39ba5dca47e8a0f968", + ".git/objects/64/64471b789fd3dde43068a13048e3884064c393", + ".git/objects/64/688ad10bcfe0ef81d32edbe6326d321f3a2a5c", + ".git/objects/64/7018540f1006c3fcbfaad46be2b71d497c3793", + ".git/objects/64/8680b06c4bd8dcf071d1e4eb9b21dfe0588bab", + ".git/objects/64/8c89a21207c12d3e43014fd00fbd79165a3f76", + ".git/objects/64/909b79ce4db8eac364406bf05de9d58bc17d4d", + ".git/objects/64/9630d5aa92ce3003995fc9a441242fbe632f0c", + ".git/objects/64/9703d80dfa21e086eeea7f3a0229b1ee785234", + ".git/objects/64/98c16e71ab5c3e142ef0a0c59259d3cf34da4b", + ".git/objects/64/a0f5e7f6cf0bf5a0378e0852b289a66af4a971", + ".git/objects/64/c44985ef0d9a1fb70bb2a0a96bf8f45cf78757", + ".git/objects/64/ce16ef067aa66e59305f5a5fcf022e6f8a0b19", + ".git/objects/64/d633003d746d2e43b420670e3620ca5a0fefdb", + ".git/objects/64/da219a00ef495d801d0fd72ce4c1410913c582", + ".git/objects/64/e2f8c438cf9039ef7faeadcf88992f51f509df", + ".git/objects/64/ef58b92e49a928ffdad92f7d42910090771f3b", + ".git/objects/64/f895f63eaa1bbb781653c0829b1c54d3fd3087", + ".git/objects/64/f8c9328c82ae6ec0e8535cd1593fa625155a54", + ".git/objects/65/03eab907028e91dce6090a3396c42a3eafd935", + ".git/objects/65/0cca78fc6279ae8e9055582b5cb2f8f8b121c3", + ".git/objects/65/0ce66665dffba169fb14bcff090712dd198e66", + ".git/objects/65/105959b99d29bb05733aee6027fe29a0bdc0d4", + ".git/objects/65/112d39e1d953a5c2f9b9b622edc045de5ba35d", + ".git/objects/65/2868c21e1802b70767b93656027b1280da0829", + ".git/objects/65/2f63838ab964ba971fe802dabc70c749f18ff9", + ".git/objects/65/3bc79273787aedecb7fed3bc7c924299f80ba2", + ".git/objects/65/3d2852a0cdaac007d4514ce4714f04d0c5051d", + ".git/objects/65/5379e3bc30b7d878ea26cb491b7bfd43cf62d1", + ".git/objects/65/578619b76cf3706232e913933b44efc8b32d8a", + ".git/objects/65/608afd279849a449f1b2f9a64d57d27ea1cad7", + ".git/objects/65/64ec1a96002e69650f8487710dbb1dcf8045fb", + ".git/objects/65/6ba48eac1f40772ef4e724872ee9f8296d7c72", + ".git/objects/65/6d7c71cc857a1a8a2043a437f444aa1edbd2e5", + ".git/objects/65/78e363bcc76e6c82098fe33813091433a1bba9", + ".git/objects/65/8b778b00a481d7473f488941afc3d21fd288e6", + ".git/objects/65/8d0446b02197c2ac91e0c51d29ba29d7b185c4", + ".git/objects/65/8f58dc7337208d16c9059e6b29bb918baca04c", + ".git/objects/65/a8921b8a6e6b2ffadde95994053f0ba6d4fa06", + ".git/objects/65/b287faa640ca1b7bf03927ea70f01495b52160", + ".git/objects/65/b6768004ae0df22d4e432c988a162b6256baeb", + ".git/objects/65/c5926678315aaeb35998525465d49bb8c8e7d7", + ".git/objects/65/cabb361973b4263dedc884f39041a0845aebff", + ".git/objects/65/d287f0052545b93bf74c15b29d7feb6b00a209", + ".git/objects/65/d37405018cb5adcf1d7b870ade90a49e12a58b", + ".git/objects/65/d4a2f822a4769beffbfb169e80f68a4a50d4b6", + ".git/objects/65/e9d5c3e820be0177af564a2fac5fa8e7dda47c", + ".git/objects/65/fbcd8e942784369a3773a84219fec4430d8981", + ".git/objects/66/071bf34279736bf886a9a7f2010d8d366ff787", + ".git/objects/66/0ea5b8ae4c650815f18e7fd0ffbf40a833d0c8", + ".git/objects/66/183cfe77985580882b4780a37dafdf1774adaf", + ".git/objects/66/27178b8e1f2fdab0ada62c9282a6a438adc153", + ".git/objects/66/447397514d0423f141193e9be59f97cec8ddbe", + ".git/objects/66/4b0d6b3c48c85ca7eff5d184b4909e55f919f2", + ".git/objects/66/4b83a3e96c7146a4c4917c49443259493df196", + ".git/objects/66/6a387929c1e7dd31889a26ee5a26c7dbece468", + ".git/objects/66/6dab6986a676ec81741eb238b954e723cc78da", + ".git/objects/66/755f2d84078a3589b0f2e991ee3110e4f425c6", + ".git/objects/66/7cf4814fd6f4d53d6125413318ac709752db45", + ".git/objects/66/7e7ab8e09531e9707255b4865d8324649d881a", + ".git/objects/66/82e9e0d60606f135238f850b203e3881038e36", + ".git/objects/66/b6a13202402ec8b48c73afcb3758b29a9be1f0", + ".git/objects/66/b9e63245fe48cd84e094836863805e90149814", + ".git/objects/66/c3a9b5187ff1c4b012d7e5a6bb1d42b2c082b6", + ".git/objects/66/cc1bd83cb8bf6170e57fb363e78878024bc64e", + ".git/objects/66/d62e01eb9474963141306367eb5bc563b4ca27", + ".git/objects/66/d76c0f30c3bb0e3d45b25df9edb7f40e5d4ad2", + ".git/objects/66/d8f3a3d39f69a66737d4a3d70ed44d60c96582", + ".git/objects/66/d98d71a26cb41681740c6c825082054863a6ee", + ".git/objects/66/e7ff6e980684256aae57b615603d9f305ad6fb", + ".git/objects/66/f078947ce0bd7b00740379cbe23cb3168793fa", + ".git/objects/66/f1deb7430893015460207da5f9af492db74006", + ".git/objects/67/0422d9842cb3d587bc41fb06e859e037507029", + ".git/objects/67/0aa27a06a2df88674b126d02051c4a1caca8e9", + ".git/objects/67/0db134163753ffcddea49fa07dd23c273e75f5", + ".git/objects/67/0fe031d4ad7daaaf376b5507be92f794cb90fc", + ".git/objects/67/2241926c311919923da9ccc06c3641ca184fed", + ".git/objects/67/3dd00b1872734d6890c5e6406d7398786ce5b4", + ".git/objects/67/443118f23a92fce351ac6e87e48cc478f93967", + ".git/objects/67/546eb7b256a29a06b6876ef6869da4d80f729a", + ".git/objects/67/5df0c99b54b9df746283996dd8d7c072fd5f59", + ".git/objects/67/62d53cddc1603d5a1846ae5bd66b95b9be2549", + ".git/objects/67/64a762f45b672c32a793c5cf94e9b0b3a73d68", + ".git/objects/67/72e2e8429e2ba060816e30c1dfa907bffa61e9", + ".git/objects/67/77acabf9408a192be2ca7a47401148e4cf2f11", + ".git/objects/67/7cbcea89fd7be908743e78998cadfc3358a514", + ".git/objects/67/7dc878cffbb187b38057b912331cd303d152a4", + ".git/objects/67/8398666226e81357f33a27632d10ee6e0a1322", + ".git/objects/67/8a6a9b787b753e60b34ee1762fede71373b01e", + ".git/objects/67/94d19d6f813f98de3585760a8c446c50a46bb1", + ".git/objects/67/a157bb966acdc8b8cfd29ab68d92dc7a8aa8b5", + ".git/objects/67/a8eec9ff7311ea84607c676ea29cecb5b45e53", + ".git/objects/67/b8702ddcfe6ba7cbafb6602101b271577dd64b", + ".git/objects/67/d219062615249f771fcd32ee8fcfe754eb4c87", + ".git/objects/67/d5e417a54724fcd5f9f8e011a86afd6c3e19ac", + ".git/objects/67/e4b6dd056eb16dd61a6f06ac2e4fba969b5a02", + ".git/objects/67/ed4fe0425c225a0b9ad99273e0e056ae70a300", + ".git/objects/67/ee242e4666a0261c30da679e05d32f6553097c", + ".git/objects/67/f2cb6eb495c0118a141f2d59fdb4f2c0f96e1a", + ".git/objects/67/f46ae5d9fe46d75849b14662a7c0378345b832", + ".git/objects/67/ff4a521fe932d38eec61e2df102317675927f4", + ".git/objects/68/01135f2af48818b0cd31eb3cf1249a83522f17", + ".git/objects/68/1c0f3ce65bff3dc01aa75a49cc65e5d86f1c79", + ".git/objects/68/1e99b0d9de998129ce6c7b1ed2c32ff8a7fcde", + ".git/objects/68/1eb97a7b948781f3aad6188a32ee2e74337b94", + ".git/objects/68/23c390d2900b8a48c314d4b2b817747079f68c", + ".git/objects/68/27eb07bcedde20c21320b7daf7202372e36919", + ".git/objects/68/3acdae938ccf4879b728852ff820dfe09885fd", + ".git/objects/68/419f6fc5855336e09b764b30bcb35b07367f15", + ".git/objects/68/503cf3cde6839936b1e43fb738bf1d11e8987c", + ".git/objects/68/5cfd02a26b66443e3f4e4693f63dfe9516b93f", + ".git/objects/68/7aa9f8fe4685a4a7427a57b67e53413668ee11", + ".git/objects/68/7eff86be9a5d95a375f25525a81c517b173671", + ".git/objects/68/825fa77f9d5420e1ce303e21a4dabe3fad1917", + ".git/objects/68/82afa1e2a5aa915192dcfa95a6fa8bb9a0928a", + ".git/objects/68/8528c7ee540d15351d27ef09e24a08ce16b156", + ".git/objects/68/8c6926e02f98f931fc1c4952c11fafe547608f", + ".git/objects/68/90e91169a9a541942c6c7813cc1215397d5c05", + ".git/objects/68/9bf99f98a8d39800806cc226cbf76dda5c1105", + ".git/objects/68/9dbb9bdb92bbde1fae77f90ceb8ca669ba1d89", + ".git/objects/68/a1e6abc8a07a02c92fb1e98e7905f898d98a52", + ".git/objects/68/b1bddcf519e354afd713cbe40ca09a6dc3cddf", + ".git/objects/68/baf3ac2fa56866eb669ad94d6d418973c18344", + ".git/objects/68/c58d8eb5ff9555f90164a99cf5aed92418a025", + ".git/objects/68/c8c5778c19dd99d133e3c16782184911bdfb55", + ".git/objects/68/c8f39ef0d374afa4a1b8aaac50c7b65c0c3940", + ".git/objects/68/e536a94d870b27107d7a33a7e5e53be708fb56", + ".git/objects/68/ea94478b48adc4576560c72d446bf60ee2eaa7", + ".git/objects/68/eb0b4e39134814d66595b7f288a02c5e8f9b77", + ".git/objects/68/ecb03ce5154288ad67eef2cb722fc7ba17d602", + ".git/objects/68/f0b456ccb0252b833320d14223df34d2c7477f", + ".git/objects/68/f62ce395ce7e6df3520f8f714d56a39314e333", + ".git/objects/69/14f964fe2e08a9e55d601a2df6d5de9d49a5d8", + ".git/objects/69/1723757e71c64ef26f8f18f2b727a8c5a1f61c", + ".git/objects/69/31413a85aec621dc9550912b70d24410d1d7cd", + ".git/objects/69/3eee84421202a8feb595cadec3e911aabae665", + ".git/objects/69/5588beb284c9dd705ca8c7659451ccdc2fbb41", + ".git/objects/69/62d7effe49b44cc1aceee09db494adb6b88058", + ".git/objects/69/745ac9bb8641aa51d17f0325b91f46bdf31de0", + ".git/objects/69/774b9374d3e326ca9dcfdb2efa88b3a2f321a0", + ".git/objects/69/812f5378f7a186b9b8b30cf2df64b4a4cafa00", + ".git/objects/69/945dec2aa502871d43686aec68d4b9e3fbbda9", + ".git/objects/69/a413450b87978b95782ead35b0c7828f813301", + ".git/objects/69/b3c9f51bdec1fb788958f11bb13aeef23ce5bd", + ".git/objects/69/d8dba6e6d9fedcfeaffe404008944b52dacaaf", + ".git/objects/69/d919bea469442256721bd452228460c08c03ed", + ".git/objects/69/df1c496acf6a64ae96cf3d1923abd2c2306f8d", + ".git/objects/69/e4be7dac98fe72b8cc3156ab4c1fa21669b224", + ".git/objects/6a/110a7505983e959347ce4b0dd688c7eb3914d0", + ".git/objects/6a/139fe72f8a36d4fe735fe862e012d0424fef0d", + ".git/objects/6a/13adf97cba767df4b1b179df36b741d87a7e62", + ".git/objects/6a/19c6196f56c9d020f156a904a355a568f254f9", + ".git/objects/6a/1ccf8c624fbf54777ae1c748d9eeb1470957d0", + ".git/objects/6a/21c5a154d3afd2b9d39dc5626e28a6b6295b96", + ".git/objects/6a/3de23a64440c58cd6146b0ced83223f82155c3", + ".git/objects/6a/451306a216b503c6b397d309223c568477302b", + ".git/objects/6a/51a0833cfdcccfe5a42ee57bae2fdc0d7c54a8", + ".git/objects/6a/5f776a02223ff1eb153fac1c8ea6b6ea829385", + ".git/objects/6a/78cad49fc2b828ec9b9adebf23dc87dabdc874", + ".git/objects/6a/82d5716a62dc3fb3ad77366b5e02398acb70d2", + ".git/objects/6a/88a68c4caf74fa9d62dc2c5dd4d08c423e32df", + ".git/objects/6a/8993e7a469d60af69d46a5eb16806676c69a86", + ".git/objects/6a/8c4d04c920573af1d39e31557db017754908bf", + ".git/objects/6a/8d82fb13f6ee3da7c8fecc6ae12fef7838e67c", + ".git/objects/6a/95d53a15c4ef0a6ed3be0b332f3071edad99b6", + ".git/objects/6a/9eb337833de0ab7d26be86c6ef7c27e9ba5be9", + ".git/objects/6a/ad4d48f02a89c427ce75c40f5a02804001d8cc", + ".git/objects/6a/b54473158a8a7b4d627940ac4ded2b429b14e8", + ".git/objects/6a/bef2c2f0238319c53b0fa05dcdd1cbda47d3df", + ".git/objects/6a/cfafb7e088e4aab5b73f67bee254a5e475f393", + ".git/objects/6a/def303bb4225628305f2115722862876c8ac38", + ".git/objects/6a/e10182e8ac42f27e9c22c03b4c61393ee385bf", + ".git/objects/6a/e10670716de2f4f7b5833ae17cdd3e834d87b6", + ".git/objects/6a/e27e07a2f5d2a45e6bc8e6a72ca175a0a494f2", + ".git/objects/6a/e7c7cb5a1aa910a2289b54225ef67ff5350c71", + ".git/objects/6a/edc3908b173ea2af5207dbfb84442873b78eb6", + ".git/objects/6a/fefc119efaf4420bbfc8bc1a796985f8b8ed33", + ".git/objects/6b/0186b12f63eeb9bec3b4529c32f6cf1ce0df3f", + ".git/objects/6b/037bf9da82786399d3f2ccf0210e1bc6f1ad85", + ".git/objects/6b/2a7d4a16da00925cae546c74f18082b569d5eb", + ".git/objects/6b/35a6848b171f40c2532e8220266eabc5bbb4f4", + ".git/objects/6b/36caa3e84bae58347c84527a75ff1f82b8e540", + ".git/objects/6b/3b761491b1ee555b885950b97bd7257ea8c45f", + ".git/objects/6b/3c7846a199f736846b7a5adab45259674b777c", + ".git/objects/6b/3fe5f6ce416509c488c38495d592120cebf433", + ".git/objects/6b/488e9f645fe850f47988db55baecd92f0d2e0d", + ".git/objects/6b/49e6264c47fee92be6847aa762d7801e65a2c7", + ".git/objects/6b/5238b07f690e2639f39b0ae806b9a0909948a5", + ".git/objects/6b/65463ce0606742d7fd7d0c29173820f0db5c0e", + ".git/objects/6b/6bf9b9ceb8a63481ef39ccd0936daefc051574", + ".git/objects/6b/77f8e977c46378592d72c219c2dd90e0c64044", + ".git/objects/6b/7a67c01a27106845e84f581da727c7b3cb101c", + ".git/objects/6b/843b369aafa539906a557dfb8ea7f12dc88e92", + ".git/objects/6b/908e7ad137a664d81d40a439b3916b6622ad96", + ".git/objects/6b/989f17e7dc8dd5183ef39dda4734e86e16b3a3", + ".git/objects/6b/9c4fb679dcdd0b818a3902788d9f70d154534b", + ".git/objects/6b/a2beebebcf33fe4f04fbb349d63c750ab75ac7", + ".git/objects/6b/bb4f2db05bd92a6c125c257ac332ac1eac4144", + ".git/objects/6b/c10d5126cc08fff70622d241c6dc506e7985b1", + ".git/objects/6b/c7bd58bb84f5a91277d0adeba77a5e1b59bc21", + ".git/objects/6b/dc74d50d3396959c7860ba16d5339e1825de54", + ".git/objects/6b/e131f2570fd3aef89a0e23f198878eb01956b6", + ".git/objects/6b/e4b82b68400443ae1634a37d045dbf97f1959f", + ".git/objects/6c/0f60a0f205043502d7f8b3300d869e05969f3e", + ".git/objects/6c/11aace7ee8bcfa8251cc69451ac2d3ac04bc1b", + ".git/objects/6c/20c460895b4271eb560cb606e1e8527dabfe76", + ".git/objects/6c/26a297ba590ebdfb22b3daccdbfa986c2ed64c", + ".git/objects/6c/6a914e82ad0ea96c7942752ae46046681308bd", + ".git/objects/6c/7f3227e71e8c73d2e6328793b2d47159c54eee", + ".git/objects/6c/8ff7cc8dc35d2d3d472e8e116a6df30471a0fa", + ".git/objects/6c/9678b8e51b866fc12295257445ee85d5b89d7e", + ".git/objects/6c/994ef5b6989564db3c60fb87cb036b48120c8f", + ".git/objects/6c/a3a6df7619df7d946f83bfff465e19952857f2", + ".git/objects/6c/a87d619a1258296d17d967957350f23c1cb6c0", + ".git/objects/6c/c4e3d331bac09a99480d4ad34dee3cf9f92a5f", + ".git/objects/6c/c4f73150d970fd49afef0d66b2c89129f4dcee", + ".git/objects/6c/cb4ae4ffd1d0c057a4e8715993fb1cd716ee08", + ".git/objects/6c/e299dc16830ec1908d963631aa7d69be6a9443", + ".git/objects/6d/0faba014e98434a32f0d847f585f5208a94a23", + ".git/objects/6d/30dad406af962e07d27580abaf2f769cdd477b", + ".git/objects/6d/30ee73be77f0d36fd94b07f0e13907d41db440", + ".git/objects/6d/39c8e825f17ec6e57be3a00b9962bfa0eb3d4b", + ".git/objects/6d/4bae9e578dea4622463813b1779732e6198313", + ".git/objects/6d/72bf8723aac0a2d62746c41bac856c9c447a21", + ".git/objects/6d/7711f5b661e911d0272b00ac6233211482feca", + ".git/objects/6d/79681569e5c2867ef48ea1bb6c5068d49ba6fd", + ".git/objects/6d/7c1add01789a5ee077f2b692d914e3e1086700", + ".git/objects/6d/8021dd56ddfacbcfcb4baa9aef359612dc87cb", + ".git/objects/6d/8253a35a4d897ba868994395bde92f979c7ac6", + ".git/objects/6d/9884b904688adbe83e65b434e9c5c670cdc092", + ".git/objects/6d/9e6a82e4e59d42cb030c1a367b783c7ef03360", + ".git/objects/6d/a28f65414dd076f89a7d920dbd463830ccae1f", + ".git/objects/6d/a993b5ace9726f453ca9ef6c6fbb2256401a4b", + ".git/objects/6d/b24115a483a1983550e84a507d0a9fbf120b44", + ".git/objects/6d/bc73de7f5230672bdc1585a2923ce6f0d90ac5", + ".git/objects/6d/c41fd59cad9480fdd292951966120be7e601bd", + ".git/objects/6d/ca6e4340539e848efc68bc01c4ca5033fd4899", + ".git/objects/6d/cd5433d178d8f34921cd9ebe87bab24a61a00c", + ".git/objects/6d/eda4a30a52fd4f77dd6881c2d095928481f423", + ".git/objects/6d/edb1f54ef13872e7a24fede0ef7008ae15132e", + ".git/objects/6e/079076953780cd682c8d4d7e07e344e3209af5", + ".git/objects/6e/083c31d5578693beb554219d017dfc9a8602df", + ".git/objects/6e/0bfd8960278cfe1f455bc0030c15bfc04034ae", + ".git/objects/6e/0df80a176315a6220fb7a9f041bea8db29d441", + ".git/objects/6e/1f687183df98ee0c21bbddb0619ced33c9ff08", + ".git/objects/6e/2572ad59fc0c6838729130c5b900bf9d724692", + ".git/objects/6e/3c6a5f8f7a4bffb9886f549a837b73850d696f", + ".git/objects/6e/44d6ca7486ffb510b866c43356168ec75e9266", + ".git/objects/6e/4606ef7607f5605afa55166bcf709e40eb3e93", + ".git/objects/6e/4b79226cd229212bfef88e215cdb791149bc4b", + ".git/objects/6e/4f66cc43d1b938446b7922ba86bce0e0c812a1", + ".git/objects/6e/5f1fa2983df9274810bff1ca867806f0e761a4", + ".git/objects/6e/600a988073b0d63b0f2edb2b3970609bd237e3", + ".git/objects/6e/6427f64d8f0158e620424157928b077f4e1bde", + ".git/objects/6e/6ba804611c36ea390c2562847a0faaac4d40fa", + ".git/objects/6e/7a7fd579c3666c0e4aaa1c52eaeaad78a2ee45", + ".git/objects/6e/8f113ac046d4677795f25d9007f6f55f6e2e3e", + ".git/objects/6e/90edbf093413f0343798d5cc2c1710eaffd11d", + ".git/objects/6e/91ef6565eb4c86bf351057ae93345756a161cc", + ".git/objects/6e/9ceebd7638801b45cfd9b5e38ce89ad0b1e749", + ".git/objects/6e/a98eadab700d946f499b1fef04dde6f5e01963", + ".git/objects/6e/b2178255ad54453f0caba24b205f62762420cd", + ".git/objects/6e/c017d170dc4c832349baba5c733dd8f6832ca1", + ".git/objects/6e/c871b23832de3d2842fbdc6943a5f2ed61872d", + ".git/objects/6e/d3506d5d2958bf3a640984c18d4e76eae74945", + ".git/objects/6e/dabda6e3664376db3953e8cdd7b26de3b9e1bc", + ".git/objects/6e/dea5f9ad843ad8526c4272d07885fca8065217", + ".git/objects/6e/e3e07e250c05aa720e29bf6e5ac1b642fed7a0", + ".git/objects/6e/ed947e8eabb5373fbfecdc0bca637dc0cbca99", + ".git/objects/6e/f6298a65bbb181e18ebbcfcaed38e3e34635d9", + ".git/objects/6e/fa34f921641058c2b324b65818021e82a6826f", + ".git/objects/6e/fc6ae807dd9faee1d72fad3c2ffbe5e43ed583", + ".git/objects/6e/fcf63d9f8106d078bb31fd995c8eaeabeec742", + ".git/objects/6e/ff3bae50b48150fb01ae86b20855cceb0dbf6d", + ".git/objects/6f/03846c73185272f4e664dbd629e95222659dea", + ".git/objects/6f/07ce1138ca099ac0f0419541544baa51cb5425", + ".git/objects/6f/1c19c92fb172db0e2d83daa73920941b80fd53", + ".git/objects/6f/1d4d324979521a1e28e0d5fa7473917fd1a837", + ".git/objects/6f/22be12392e2dfcaaeda01b48b411c29137d9f0", + ".git/objects/6f/2cf3de82f04f9e3eb60f61c84b0246d56eeace", + ".git/objects/6f/2e3b0d87400cd5974c990e929c3df1d77e470c", + ".git/objects/6f/34861514b0b8020190eb25577bad2827ce48c6", + ".git/objects/6f/458f731941024fd9d8f3d371a14693e4305f2f", + ".git/objects/6f/4822df435be818548c82b58ce80dc84ed768ee", + ".git/objects/6f/51fdbae2a95472de0b14f68b004097b243443a", + ".git/objects/6f/6089acf7331328429b7129f1833ab4f7aa8efa", + ".git/objects/6f/63cafee63c04d12da8b0d08ad84b0d78e48d9f", + ".git/objects/6f/6b9170a53ae3b0ffa0f320206ebed9e8c8bd53", + ".git/objects/6f/6f44ff73781b43fecc34e35dfad52ec88831d9", + ".git/objects/6f/6f85127b7763dfcffc78b00f7eb7d3f60c0520", + ".git/objects/6f/78b14e7d7f51eede3f2d3bebd482fe3b384ae3", + ".git/objects/6f/7c74d6419e75bd5cc619a155984c2f533bc82d", + ".git/objects/6f/89830e2c359182d6770c6a892a279178ab4563", + ".git/objects/6f/920b8441f0e2364c376ce0716ef1e7ec4ce02e", + ".git/objects/6f/a08e1310bc3c78a5dc497a97cd83fb91923bde", + ".git/objects/6f/a7977cf25986b44338a11f669e304c7711933a", + ".git/objects/6f/a7a82efd4dee799a6b705f30c6b23d12e235f6", + ".git/objects/6f/ab7e86431de2661fc535b9122335cbbf074841", + ".git/objects/6f/bc78ccc9f767aa3de49589873d0cb033ba515c", + ".git/objects/6f/caa2c3ec543d27f4eb5f9c15ad552f4d4bb8f1", + ".git/objects/6f/cfbe99375e512c14835e3b79c6696f12412329", + ".git/objects/6f/d17d1c1ab3df50e882ae91c61e1a94278db488", + ".git/objects/6f/de056726b8a802541411a888afd07ea41486b7", + ".git/objects/6f/ebbb2f2bcfdc6a76592003bcd53ad6073ca805", + ".git/objects/6f/fb67393b6408ff0fd0349b12ca6a0bab2b6df4", + ".git/objects/70/0096bf3d827bf3ac3b6dbe277b0e963ef7ac9e", + ".git/objects/70/051e0a92be4378397b2317923b1d7eefd23fe1", + ".git/objects/70/0bd8634c22d4bc5f10873afdb12202167336eb", + ".git/objects/70/185a3923c34f0481f7cfe455367d0d514771a9", + ".git/objects/70/1c7a8eeca026ffd83cceae4ea8c0dbaaf1d473", + ".git/objects/70/4b9ca5a9a32561c9657ba629bc587f15760295", + ".git/objects/70/4faad166e7e0b639e39bb0879f3b0a64212dfd", + ".git/objects/70/520ecbfb50b30ebcf9cfb49578ac4ef0aaefe9", + ".git/objects/70/557e295633f0b63c2f5f904455becb0c15bb36", + ".git/objects/70/6447d19f3fd8ad496d71752fc38ad770d0378f", + ".git/objects/70/655a219c1d9d8421d767a310f699646b885c99", + ".git/objects/70/8b977afd6f19c0b78eb523fd360eec1a479c45", + ".git/objects/70/8efea74cf2d6580a89f1a1e4db9773ce2a3c02", + ".git/objects/70/95f572205452a0bd6e0fa74dd30e4953207a33", + ".git/objects/70/9da8c320d394eae6797b08f25da5a569784300", + ".git/objects/70/a737bbf1ec49d9a3d07727f426fe4f64db54de", + ".git/objects/70/b58095f9878169ccd99d93977dac9c7e7218b2", + ".git/objects/70/b7760522b6e3838ae9e23d408712359038937e", + ".git/objects/70/c2f6d03b851a283d4f010a76932c71d7cf7d36", + ".git/objects/70/e11d160e886fdd79f46b391feeb815f31501d5", + ".git/objects/70/edcb9b9f63d7f5b17d23687b1aaaf6133fa82c", + ".git/objects/70/f6b31afe3e4bce867b8e9f81e8fae72d79f0e2", + ".git/objects/71/0149e51e1de61ce9e1b0cb6de1e30a0ba6504e", + ".git/objects/71/02b2ffdf37d6cc0c52b677b49cc0a600e88a25", + ".git/objects/71/03a5a05ca77ec7f22a0c10f723a2b4a48d4a03", + ".git/objects/71/0ee4ded6ef5fa1f2449912d7ec472f10d484c0", + ".git/objects/71/11f68e2bddc489f6da5b4494991ed13fce1de1", + ".git/objects/71/1655bba0e0722b950b97c2ada3ad9edc17aa08", + ".git/objects/71/26fef142d29eff6a33fb219c8c343a33b13976", + ".git/objects/71/3122dcd740523f71048c79b10880ec61f58447", + ".git/objects/71/34c43966d7eee2c0e307a71c283e8b82ac1a3a", + ".git/objects/71/399af0eac6230f54d54423ea79afb3ae4707c6", + ".git/objects/71/42932128a206f4379207ade2449d6374aa52f6", + ".git/objects/71/48e61614094fbc11cdf08574f4d34e08c910bf", + ".git/objects/71/4b958946680ce39cec20773fa9f360884b632d", + ".git/objects/71/545a67ba3b9d06ceaa896faf9e1272094e6a50", + ".git/objects/71/5c687cf8345a4eef890ad50eaf94acb09c48f7", + ".git/objects/71/6fe9739c04e88d313e98e1716a45e494c2e562", + ".git/objects/71/75387852d25a3164da99f10c7d8a2621e60b1e", + ".git/objects/71/a806223d0bf3d903116d718b1b54fa88f7c065", + ".git/objects/71/d480003e895978872784635076b6e2bea692b9", + ".git/objects/71/d9c6cf5724b720b5c3b57b6fc61dd01fa51b76", + ".git/objects/71/e6251accbc3e0cb2748bd7e96983ca7d1fedb2", + ".git/objects/71/f6f69f1c82503f1a3a7fe360f3b0e7b787e7ed", + ".git/objects/72/29387b743e6604ecdb9540b46afb8dc0af45fa", + ".git/objects/72/34ad7c00d94699b9b187ad22622f2376670e1c", + ".git/objects/72/3ccc070c1b65a864e67df9e0d44a7e89f76099", + ".git/objects/72/3fb367dbc77cd28fdf1b6d091b653b2d9d31c2", + ".git/objects/72/4343e40fbe02ea9fdfd87f92ac892cd1bbb5ac", + ".git/objects/72/5a2f6faf8a657fa85f047015e2cb25634a4596", + ".git/objects/72/5d0686891c18e70bf5811feb4ee5d389c89fef", + ".git/objects/72/8ca3d2c4f27853a528a90ec1ba4e4aa92cd51e", + ".git/objects/72/8effc58570a1a517f03150b6a2f792329b8805", + ".git/objects/72/a296132a3fb7e25908ce7b037fc843e7dfdd90", + ".git/objects/72/a6ccecdb94cb37656a33836bb3084a68ebbb96", + ".git/objects/72/b6ea588657b5c01fbe80ed002abd000341a484", + ".git/objects/72/bac7ca3081534db1509524496d9855461dc9ac", + ".git/objects/72/c675ed377c6cc1f89863374a200c0ee4bcc250", + ".git/objects/72/cbbff54484af28ace95dfd9c3be51729b105f4", + ".git/objects/72/d5072396aa875292ed6dff36fde7c5ccbc99f4", + ".git/objects/72/df2e1e5e234e3f1ef4b7d11eaa31ba36769f62", + ".git/objects/72/e3d5cbae30705912581711a58d3e12f1e34e03", + ".git/objects/73/1289a90df507ce5a7ef1fbf0cdf53908891e1b", + ".git/objects/73/1b55e16e4ff7d981c15ecd5253bf455f2da552", + ".git/objects/73/501f2822f518920961fdcf00b6fa619533060e", + ".git/objects/73/5cecfa7e1e32a0edba2180e32910a221aabf07", + ".git/objects/73/5fbf34067bcbb8b9b8e2db13746cb2165a7798", + ".git/objects/73/68c3ace7d9984cf4655a12df3958e7b0618d1d", + ".git/objects/73/69ee944e01f439916828002ede7d404ec037e5", + ".git/objects/73/8aeba88f2c500d244c36eb2bb9808d39308788", + ".git/objects/73/8b7ab1883ab4efdcb77520d1835054456a7c11", + ".git/objects/73/8c64199f4844b7ebc929d64738c53efa5a6fd0", + ".git/objects/73/95b957c94a1730892a484e15276dc79a3a293a", + ".git/objects/73/a51662050d68aa57046c5b48a0bed9d9860761", + ".git/objects/73/a6e7c5d34f3176015dc33e8c964be957774838", + ".git/objects/73/acbe2de6d60a5dee1a3852140a85a8e7b94d01", + ".git/objects/73/b7941c61134327c7457ce8b531afa1a6e1b76e", + ".git/objects/73/d6c0a9ad639b5387d03e3c4a2138a29bc0a9c9", + ".git/objects/73/d70a5dcf221c9306d4faeea14b770f10fbc38d", + ".git/objects/73/d98ae82b133cc5df863ea2c25dd38359272345", + ".git/objects/73/e7fefc91951c4cdd2eddee131490fd83024c4e", + ".git/objects/74/001c2b374566212ed002fb400d0e9d58ae8015", + ".git/objects/74/0486663e1b8e121896931fcc68037b91beff48", + ".git/objects/74/0e65d58d6d436e42229a11f50a185226e15cd9", + ".git/objects/74/11c425a775396bfb42da7ae3a203dca7af3fba", + ".git/objects/74/1f67115f0c865456110779144f442cc628b210", + ".git/objects/74/29b5ebd1248d0f751e9d47568bc208ab219b08", + ".git/objects/74/2d32771f684817e25c528272871f6c3e39d618", + ".git/objects/74/383a26b76b3529a24d9540d3589f9d73e8d139", + ".git/objects/74/5326249b06e4948fd3b34009aa6ca83229aa84", + ".git/objects/74/69bdb2411f1d900325440eec5688bb0281b82f", + ".git/objects/74/81173a2919d58c02cca87e9cc55e88ef28729d", + ".git/objects/74/90e3db4ccb433846728f1d8e30f989d4673955", + ".git/objects/74/94e5b7c97d981b6a182ec75ed54d68f10e87af", + ".git/objects/74/b3f06b0e5efb6252fbb3d07192edb3e090bf56", + ".git/objects/74/b817ecea3b0e5b52f1a6110c03be1e194c94be", + ".git/objects/74/b89e8a3a4d8ff3d4329eadce41f5794a5a2450", + ".git/objects/74/c6ba82af345885f7a367e594b217a6a96d9551", + ".git/objects/74/cfe602f1324d9381facb23da94b220dc3f3a8a", + ".git/objects/74/e8498c23bf728f9ea8cacbc0df6936e80db3fb", + ".git/objects/74/eccabf72da7abfcaa4a92e64c6444103937eb3", + ".git/objects/74/f9eb9a960744c241a08f0abc68e14f1470cd2e", + ".git/objects/75/081f70221718b8751eb68f1d876b6aa591d459", + ".git/objects/75/09d8a867324a80f940dceb503adc3fd9cfcc82", + ".git/objects/75/18a9b724db86df171fa860ded21a433eb6d038", + ".git/objects/75/260162a97a1179f32f94ef0b589f75263529fa", + ".git/objects/75/2a4a56174e3f0d96b4fe5e3c929a62c6d34a96", + ".git/objects/75/2f2ddadc6d4eee8152ea046ba32fd6c0cb9070", + ".git/objects/75/386ee2066e2200844c5cd422c4932c0032d764", + ".git/objects/75/3f81d3e36c5832a8645d6e5e338f5b5c33340b", + ".git/objects/75/539c3b5c2f9933a7553c067b7df84cc812eba4", + ".git/objects/75/6f1adc5e05d4d3625b59bc25744fd2d86586d9", + ".git/objects/75/7d0aed0735d45c6d1c85e4ac26d948206bd0c9", + ".git/objects/75/82e7911cde0fada29a6eaf599dc8cf68dcdce5", + ".git/objects/75/84834f93e7e2af87163b1b079305ce906f0b84", + ".git/objects/75/9a304446209e619b1e1d498a8618f1132c5d59", + ".git/objects/75/abc0b0c3d013979a940218adbbc0e1c2c87d56", + ".git/objects/75/af26262f5d58115cafa8509b731855b74f0648", + ".git/objects/75/b1a5b97fbd6b518369fd2cee1adda0002477c0", + ".git/objects/75/b54d46794c768c2d7349d41d7b5e49fa9caf23", + ".git/objects/75/b7899d5881a4cdd2e2f7f8da6b56e27d7811a7", + ".git/objects/75/cb1f6ccd3d410e6d836f234fb1618cf6104cc2", + ".git/objects/75/cdb8734b7ca4eba3fe646109dfe680e6967794", + ".git/objects/75/cef7792c8bfab18400be0906086482c1cee951", + ".git/objects/75/cf173d87bdb59640ae7b8b1fc36f8d76980c24", + ".git/objects/75/ef0acff85fb0b87dbd83c97f43e83d161e738f", + ".git/objects/75/f02caea1e69a344be0b095907fceeccaf83c44", + ".git/objects/76/017c5915c6409b2816fb515b1f43073a65046d", + ".git/objects/76/02a282acd5deee42d67f28dc793329d7c1d3f9", + ".git/objects/76/1c19d9e86240b1b597e1c51eeba7b8c4acd612", + ".git/objects/76/30f775b39b841ded5ded8ab6df2775296169a9", + ".git/objects/76/378335f8db9101fc57d71f4e0e3bbf152bf6ff", + ".git/objects/76/4dff29fd5b94494d82188cf53b58bec4cbf4a7", + ".git/objects/76/59f49cceeb70ad5cee283dbe1a952ceaa714f1", + ".git/objects/76/6058a2fa632f0c060a8f1995ba413f1522f5fb", + ".git/objects/76/ae3cdc5ab4ca0fe1e893a52b20951de7b4b27a", + ".git/objects/76/afd09532acf707821e4f991ce231677dcb61e3", + ".git/objects/76/b4303d44cb42833b489e119e885aa6bfafcdb1", + ".git/objects/76/b53bb95232e6e60a31221ea51f727cba566458", + ".git/objects/76/d2378e1f52dffba6ff97d7091a6315755c3cb1", + ".git/objects/76/dbf64e5e87162d3fef3a444a3bd606f2619abf", + ".git/objects/76/e270731bd3aca7ca5874a54ca592481d84dadb", + ".git/objects/77/07508189edf29bdf2c6003ddfeb543e97e94ab", + ".git/objects/77/19af0464710da6f7d1910c6d78e621ebe90f53", + ".git/objects/77/1c601aa0f502d35ef901cd6cf0c32f9fe72456", + ".git/objects/77/31e8573731ae29ab8cf63dee19e6b39c1a66d3", + ".git/objects/77/32f4fc3d7c810988f82b56f217f35d6bbdb311", + ".git/objects/77/4043a418136dd2d5b267049d3654431dbdcf34", + ".git/objects/77/43b0987631432b7cfd54e539daa0340821aa6e", + ".git/objects/77/4c473e773fcd921589dc6562c17fc23d630394", + ".git/objects/77/5259b776fcf3b1dfb4af54aa9849ccc3076ba0", + ".git/objects/77/5959357c03b94eaf62a26c51e53fe87afc2b26", + ".git/objects/77/5e3a3c682a2bfb25772cf58e17c7894cbcacbe", + ".git/objects/77/5f37e7deb83f37ff42060356330cb1dbfcee7c", + ".git/objects/77/61b699c09eaaee0611611d303eaf3150b0ef18", + ".git/objects/77/65258bc1272e5e262aed48a2865e89cdab061c", + ".git/objects/77/6ade3987f74a539d3ea74493d1b1c5e7f4a410", + ".git/objects/77/73076c6c867aee6dd76127fd630cdbebbafc5b", + ".git/objects/77/7e49fd6bbc87e06d70cd1d61c1d192a7eaa573", + ".git/objects/77/953dc9a7be52f55e489fb28ead1ef3fb7c63a3", + ".git/objects/77/9adcfd201dd54193dca6ca430bf99a800d3011", + ".git/objects/77/9e3f5b2d7e36eb4278d61bdaec8299653a0ee2", + ".git/objects/77/9f6838b3de0d0bf3722d17149a55c1878542e9", + ".git/objects/77/a48e1593dbd8ed981bff9b17418b880878e607", + ".git/objects/77/a75a7842c5b2bc9a9262fd1ed271a84937b126", + ".git/objects/77/b9d1a2caa1277afdc7978ff4b6cbef08c68bfd", + ".git/objects/77/e425d3f26c0e8f591191934d223619162d3c50", + ".git/objects/77/f5b572b49c50e00845f460cc16b3a64b584f60", + ".git/objects/77/fa538fab46ff4e0c9fcd6cca4db81e1aed7209", + ".git/objects/77/fd0969e51a1fd45a6fceca711f671e34e5106a", + ".git/objects/77/ffae73bf51a607feb16ea2450a1063d811aa22", + ".git/objects/78/11c83710f2942c6f531bad93f8c80f12a0011c", + ".git/objects/78/17d261f80fe143c4de14688896ab93d2a1f9bd", + ".git/objects/78/1a3dfd259fa2b987ef5833488cf46646cb306e", + ".git/objects/78/1bbae62839e14327c38bcb4e51120cc061c14b", + ".git/objects/78/2252a1c9ab0d732ed73a4892e2504570c9c2ba", + ".git/objects/78/3449ba4cba9d6e0f4d73a0d86c16940ca6c16e", + ".git/objects/78/4148ee5be10593b7c0daee10205bf84bd144a4", + ".git/objects/78/48f68170c909674e443b8bf62f7e734a3c855f", + ".git/objects/78/4ce2b085f9423c3959b4c84bf869d444e0ecab", + ".git/objects/78/57f54fad408dbc92d66950af72c3e674d739e0", + ".git/objects/78/57fdf1e6bcedd33b8bb644f41b6ec4d6f859ac", + ".git/objects/78/5b5fb99c26d160807e7f9d38c014dc709445ab", + ".git/objects/78/681c472dc335c4d00a196f98e376f631892298", + ".git/objects/78/7cf61b851450be96f48006f23f124e0f4250ed", + ".git/objects/78/864f1a036f0ee5fad38308ea0da2b7672577d8", + ".git/objects/78/917c97f2790ac796a7867fad23b960d8b26b0d", + ".git/objects/78/98fab82453117075f6b5ba3481cec234dde4f3", + ".git/objects/78/9ca340e08fdb33711ba306f501ea22bab90276", + ".git/objects/78/a1feb6cff13415b05b9e5a2db97caffc3ebf40", + ".git/objects/78/a2414f3cd77a348464c79fbccff0f71a6c86d6", + ".git/objects/78/c539c29e7c8a1ad45d54f3d2463b174b3a896d", + ".git/objects/78/cba3e4a63155172a6881a655c51b4d1973f9b1", + ".git/objects/78/d6bc94a20d5edd811612acfbc1c8d02cf54133", + ".git/objects/78/dbcd7e6058dbac07bb997b56e076da7563ba75", + ".git/objects/79/077e0c7b83b64f126eca581177ebfa2eafaeb5", + ".git/objects/79/281495ab195a01ed2fc433ab8fab7574b29fdb", + ".git/objects/79/324641a3bdba8dfe066c10974fd150788f3067", + ".git/objects/79/32d331c23a330bac688526935106281108f000", + ".git/objects/79/6b66ccb2b1abb09217344612657d4fc8a5cb8e", + ".git/objects/79/8194049629373d869938a0e5f6d86d27f10dfc", + ".git/objects/79/a66440bb3ef95cd28e8206e1f6cc6e61f93782", + ".git/objects/79/a796e6847f342cd80234904fa6f4c51ec529c0", + ".git/objects/79/a87dd4e39c3685a47574726802ead7b557c3af", + ".git/objects/79/aeeb0773cc78ccb210312d7af6b355a6a06de3", + ".git/objects/79/bc04423e9eb3b19405167d70d2ac047691dc8f", + ".git/objects/79/c5a12e33a4c59e04aee195a020d0d9e6f34624", + ".git/objects/79/dc0892f53a629e99c9b0da5631923dd89e30ff", + ".git/objects/79/dd763050808e4dd03a2f8aff13dfa9ca23359f", + ".git/objects/79/e22925005aa12eccf53391ee32788924380655", + ".git/objects/79/f454f83f5425aeed3e3911db0f353b45c0c4a7", + ".git/objects/79/f622499c6a6420323eb857dc1b939dc7eff368", + ".git/objects/7a/18990d84da9230cf7605c1fed2e7a55ef24c4d", + ".git/objects/7a/2d4ebca410678a467d05f365f10653e5b842eb", + ".git/objects/7a/59762aa4e60eefd44eda57b43c3da1bcf66689", + ".git/objects/7a/60f60c9e32dffe78298c7659d4a6790dc824ba", + ".git/objects/7a/71296976f47d70d213b577d1877fc0520466e4", + ".git/objects/7a/839d07f69f6d3ab4939a15b34af457b29d62d4", + ".git/objects/7a/8cde207370c462e844da5d9cf50d0c8c6f3b09", + ".git/objects/7a/8e24f5b715ac0883592eddedc243e82d72079f", + ".git/objects/7a/90197be8a72a65519b279ce856839553c9c066", + ".git/objects/7a/99cf894bc007571aa5311e5c72aa75e6de6c81", + ".git/objects/7a/b1c9a19d4e034ad45e101e764a543de3b04ab9", + ".git/objects/7a/b41210f457789f37d80f3fe0d1a97dd5be0cae", + ".git/objects/7a/d4ed637e1e7c6a070138f0d7ebbfa11ebc260a", + ".git/objects/7a/f0510b8e116c3cbefd7caac153c2e0e9544664", + ".git/objects/7a/fabe9d76eccfafd86347594f8efe225bf85201", + ".git/objects/7b/0bebf1ff8077fd726f6dd23cead87b96356fc9", + ".git/objects/7b/13f8b5a7d48a2bdf54e0864e0280e312c02610", + ".git/objects/7b/142a38f6af7a51626ee00664fe874218294b99", + ".git/objects/7b/1a8fd14f100f3bcc7187914f4aaadf9dc74d29", + ".git/objects/7b/235448bebd120551a0130741949e9f50652714", + ".git/objects/7b/26aad85e390e54fdddb4d5f2a51ac603fa546f", + ".git/objects/7b/3f2e996725d0eaf71fbb200a22b3184a45b8e3", + ".git/objects/7b/4b88f777b89ddfbf4385ece39025c67172f954", + ".git/objects/7b/4f17b6bc9c2aee1a0749a65efe305c8438c2dd", + ".git/objects/7b/58a9219a1d8dcc49b797473a98ec4986dbd40f", + ".git/objects/7b/6499408cb517704651de91d91e1ec12dd06f07", + ".git/objects/7b/65b516b5785122477d870f3855702d0ee096f0", + ".git/objects/7b/7db018fca957e96caaa1ac3afe1ff42552b3ef", + ".git/objects/7b/86ac5b311593f0781b1703a21627fca3feb4a3", + ".git/objects/7b/9dcd56fc6419ceb1e54eb20adb5645296568b7", + ".git/objects/7b/a4d80bbf60441b43ee389cac3aa14d7b0781d3", + ".git/objects/7b/a634edebb26fa27f92dfe76877e51ca6abf1d6", + ".git/objects/7b/a82ede1ad26d1123b5beae901592d73611d8a0", + ".git/objects/7b/b9ffe07b5db6ecb8b26efb74bb6368deabeb0c", + ".git/objects/7b/bb481107a55260c4ac163e8b9939dfd344f384", + ".git/objects/7b/ca565de5b7a831c960b2d17511090d543fba79", + ".git/objects/7b/d1c9979f2e32a53b2d27865b23302b387c28da", + ".git/objects/7b/e63d2dd059b633cd113454f1ae27aae94abe9c", + ".git/objects/7b/eb9330d552b3f25e5d3d101e97069c86e04fe9", + ".git/objects/7b/ed7805104a80c334fa931f15b979568778c520", + ".git/objects/7b/f29801387ed045954038f9d4d77d035d91b202", + ".git/objects/7c/2a3691bb7d5b447e9cb0dfbc882005fb3e1579", + ".git/objects/7c/351de4f1f592e00c02eca21c2055e2e4c038c8", + ".git/objects/7c/38dc7f4ab98191f548165ebf2979ad7af502f9", + ".git/objects/7c/4e8d6d8b521f5628c96becc83a3dc0e69bcd0e", + ".git/objects/7c/5233aac8726fe2f78d3c6d18f779af27aa35e5", + ".git/objects/7c/5662d03179c5f8cf5a4087eeb3427bf85ea6cd", + ".git/objects/7c/575af5eec08e762e6ecdd5cbb9de70600534dc", + ".git/objects/7c/5d9f2e6552f197a7f4a818483eb68a397a1869", + ".git/objects/7c/6bcd743cd06669af07a87831ecb8b857e833ed", + ".git/objects/7c/7363119ed2d8c821bb063a06f11b0bf793b51a", + ".git/objects/7c/76595ada04a35897b6c2f04228d78ab0a694ed", + ".git/objects/7c/84402750346422495814984538be41930e6b89", + ".git/objects/7c/876a33697824db88ed2414ec9c089814eab0c3", + ".git/objects/7c/8e404e32496fd930dc2955c0e007e6b2442466", + ".git/objects/7c/9728c03327c44ed5b78b964157c04b8825bd53", + ".git/objects/7c/a26e9293e9fbc954830dcc35a2b888d153f510", + ".git/objects/7c/a91bef9dbd7fa82ad310ae04eb2c344d6b362e", + ".git/objects/7c/a936485a9e7ecdc8ff7f17adcc0277583c4147", + ".git/objects/7c/ae22908d54bba8325135259187c7c01b6d0025", + ".git/objects/7c/b4dcd0212174f6411ece59f5755ae88c82f125", + ".git/objects/7c/c18f21a694943a8f0f4eb045a2b22e48b8e6ef", + ".git/objects/7c/c333f661f31a6462f5f27f8226c3055189238c", + ".git/objects/7c/ce36dea92954ba0c65cc052e29ae9abeecc180", + ".git/objects/7c/d30481dcb02f042a2ada7224cae9f16ce58ee4", + ".git/objects/7c/d98578a70adf71eeeb9afdacf1659680d9173f", + ".git/objects/7c/e1160bcad2a4eeec821731c0da8644f5cf6eb8", + ".git/objects/7c/ea95ddc275aa53ab83adcbaa905cee041e1719", + ".git/objects/7c/f4f60c3fcbfcaebf461409b1d5750ca2fc5b56", + ".git/objects/7d/05a4f788b2e47e199cf522c048fc273c97a223", + ".git/objects/7d/0cac23808b6798bf6e749e7af187334cfc1fdf", + ".git/objects/7d/1f84687d3f3d2e9e648610ab3b712319afa84e", + ".git/objects/7d/2beba1cc186a603fb6c9096c0e9470b787c901", + ".git/objects/7d/309664ca012706beb6ac632d202c65285f4088", + ".git/objects/7d/3b804c88f0f4720f4bdab2d3d0ccb53e341320", + ".git/objects/7d/44a352fa087abb0d32be1b70be0f02ae003803", + ".git/objects/7d/459e3d1bc2b182d123124dcd4507bd0046a4cf", + ".git/objects/7d/4781592b0c2a958af8e4b23b17664ea07af1bb", + ".git/objects/7d/5237a5668b11445410fdf58926248be65e5fd3", + ".git/objects/7d/68a52cc9105e91e368ba8bf19e8b74411fdb6e", + ".git/objects/7d/6a25c0999954901113738b8db08cda97c390ea", + ".git/objects/7d/7dc19d7d4056d214465b5e2102541cd1ef8ffa", + ".git/objects/7d/8800f4b870144424f002bf42557dc923b11b48", + ".git/objects/7d/89fbc5d6523ad861e4d58dedb1cf69149b32d6", + ".git/objects/7d/982e61fad435332382bee37df5f1aac35bb580", + ".git/objects/7d/a7805c6844626aad07e4ca2202b87c5a2885ee", + ".git/objects/7d/cbca33a71cd0479b7d96e5f53691f88e83c67e", + ".git/objects/7d/e42b39e1c24b635c49ac86e04dd7d607a8b579", + ".git/objects/7d/f76e2588493f9151dbe0078785caf2a952520a", + ".git/objects/7d/fa262592406dadfb914376b1766d64cf23473f", + ".git/objects/7e/0114c44da87f27529309135f68df2653c35620", + ".git/objects/7e/0a4613cc9137797d55649a3851211ca13c18ee", + ".git/objects/7e/1d87e2a078f1b7af19d7237e6c574a4af567b8", + ".git/objects/7e/21920f4202a9633998ba28231f141dd98b90ae", + ".git/objects/7e/222c4a17396b072e18e0cbdef702cca54708db", + ".git/objects/7e/2ea63044780751031df0135bd20df5f9bd14ee", + ".git/objects/7e/3b6c09a153ee76e6a290069f2b14ecffb277e9", + ".git/objects/7e/44d9cbafb54a9e396b9132551ccc711e864fc7", + ".git/objects/7e/6afa7199983c2debb3c3b7597a784a2b59cecc", + ".git/objects/7e/6c848edfbb24c51baa480be5add5d819844769", + ".git/objects/7e/7ba20e6df90f4f8aad18deebccbef605795ba8", + ".git/objects/7e/95e5ec02dba0529f37e8ea14eda58e6f68f58b", + ".git/objects/7e/a3888a1b50eee1198b9ab674eced56b2b75713", + ".git/objects/7e/a85b18704641093cc9a90cb3ab85d4d5e342b1", + ".git/objects/7e/cafddfe6b3f7dca1940009197149efb05a7f01", + ".git/objects/7e/d7d9cb517a8a47aec987bee71ab47a38bbec02", + ".git/objects/7e/d9c3567af7676ae881f8725cceb9f992ab0ce9", + ".git/objects/7e/dd425b863c58c0c9ffdba82fea47d86fd064e2", + ".git/objects/7e/e18f2c29b53e2525f0a6a9d9d19309b3a0b080", + ".git/objects/7e/e5ec42f0d49d0a78be339874f1e8579e0f6878", + ".git/objects/7e/e6ac459e74ac567df772b69d2a89fd9d212e94", + ".git/objects/7e/e6e68e260021b03a782612f2ab528eed379232", + ".git/objects/7e/e847cb048e9c6053e11dc403ddca0c7311df8f", + ".git/objects/7e/ec2b940c369d8a2211a10df17ffcb8e42bc6a5", + ".git/objects/7e/f0b4ff0ca51871807b151c9aab1001387f73d2", + ".git/objects/7e/f3c0a3288c6544fbfb1ba999dc0a948e696d81", + ".git/objects/7e/fe79d87141e12735ad8fa0b7a9f85f86656a21", + ".git/objects/7f/011c6ecacaa92dd1f32a26c641ebb47d9ade6d", + ".git/objects/7f/02846e560a5a7821e5c3a54b06a5e6e0409441", + ".git/objects/7f/09a37682ec6592b907b2fddace2378d1bb4108", + ".git/objects/7f/11cf0fe2fe744b2109de7fc244d627a5f3e85d", + ".git/objects/7f/2c64bfcf14d6abeda3e9a980a400193dc5421b", + ".git/objects/7f/371767fb6b4174d8ea70961d364470b30ee6d6", + ".git/objects/7f/47f7b86c347c024c0a04f73ba6d472fee3cd3a", + ".git/objects/7f/4b2aca303386c1447d767186c6ecf87458636d", + ".git/objects/7f/4e1ea34941509bae79b6f16063e0fc3dbf9c1a", + ".git/objects/7f/59e6fe29d2605c8eb46510c412639969ee05b2", + ".git/objects/7f/5d1d3a32bf52a7e5b9e2dc688bef2a50ccbbd9", + ".git/objects/7f/66ae41254133dd9543618c58651da2d922bef4", + ".git/objects/7f/7694d3454d2e6d5055ef66661e2ab22c10b939", + ".git/objects/7f/76c0ea42bf7d6da9996591a895af962e57a0df", + ".git/objects/7f/8cf7ca007fb463ce8a7828d37783e62a26a015", + ".git/objects/7f/b1812d7655697c4b47465559d15cc7cd1b141c", + ".git/objects/7f/b74717d59f3530396875fa47e4d19292c07b8c", + ".git/objects/7f/c03c37de8ef700070d9597b418ad0bce252784", + ".git/objects/7f/c570925f44089a18420efb0b8b3d891d42d284", + ".git/objects/7f/d2c8006a5a08c05f44b73a30fb58ff7eacc5d2", + ".git/objects/7f/ffbc36d294d2eea7203b643ae3d703e2d54fb7", + ".git/objects/7f/fff8e5b5cc4db6e32e850448440ec49c00aafe", + ".git/objects/80/15fac0e9cac1336294b79c5b9d475cccc45f0c", + ".git/objects/80/19ba4eefa449c7835339d1ef93495887e2519b", + ".git/objects/80/19dd581c158f1bc88883cb95b82be32741e2cb", + ".git/objects/80/2175ddd764ccc583f315f7a503324ea670ce73", + ".git/objects/80/42aadc3502d5d8ac9244bc39d0564d7d8f8dd1", + ".git/objects/80/5b935a76297303bc54a7b98cf786b0587ad093", + ".git/objects/80/5c4c8555e74fe03c6dfd0c6a980189a32a7ca9", + ".git/objects/80/6776cf4855a3c49c9c362db3bf1ea1258b8083", + ".git/objects/80/71174d19ae9859b91e69afb0021772ad520b21", + ".git/objects/80/841cd9ff513ccc90227e6e023629d2ec089211", + ".git/objects/80/8ebdfb884e888937ebd43da5f1ebd7aafef6f8", + ".git/objects/80/92f29e607b61d10dba9ed3266c48f3139f57f5", + ".git/objects/80/9b3704737e4dc871f50e067f4a6771b4ca98bf", + ".git/objects/80/b02cfeb43f3a5b0d71a4b118632a0508d0b4ff", + ".git/objects/80/b28925f2ecffcc96898c256fc522b58301409c", + ".git/objects/80/b3f1078e6e8c3ea372d48b05bdd06933c006d9", + ".git/objects/80/d8034ce3a534c481fe8cb618d03836ebbda33f", + ".git/objects/80/daf71353d7e88fe73672bd6de40bf8e7fc7ada", + ".git/objects/80/db6dd1225f8092e5c662c8468a1d5757b33217", + ".git/objects/80/fdf97eee6bfc22484b126927ce6b1483c9e153", + ".git/objects/80/fec140f63e3288aaa1b8162e2ab8772025c9ae", + ".git/objects/81/02b5ab5a9f1f7b71e093a78e987d4f6ce082d5", + ".git/objects/81/18a964a32c3895c7004f65aa50918f38bde9ee", + ".git/objects/81/20ce85e12b150fe9fc5bceca0265972d9a1d06", + ".git/objects/81/23397037895c3c19002650cbe9f0f585cf0bb4", + ".git/objects/81/2cf1ab2f06f5077a7bfac41154aae3e260e3a6", + ".git/objects/81/3277b1447f3af712f26b25d1dfb34668b12c2a", + ".git/objects/81/32b61a24e952a6eeb87c29a37700b21fdaea9a", + ".git/objects/81/39dd18ae7787c77568c2c44b219b785f9b3200", + ".git/objects/81/52031249d99e50bf0439a6730ea1c55b368954", + ".git/objects/81/59e7ccb1347e90ae373a42c56fbf7cec220e7c", + ".git/objects/81/5f3e52b89c92ba46a57e1c99efbd29b929a585", + ".git/objects/81/789f6d67f04ae63da04519ff1f134e889fbf98", + ".git/objects/81/a0f489ca913074b63a02316b0792b50fc94b85", + ".git/objects/81/ade6420c5555843ca333abd7bdf39d1df2387c", + ".git/objects/81/af4d0a2b5e940831c546b5296d65a058a84a5f", + ".git/objects/81/c98ee7afe360617520cca0111928035d6865f9", + ".git/objects/81/d8e67de6359fd261002be97b054e3c62b9531f", + ".git/objects/81/e6966bb89af5b3e8496f12d97df9d78c0362fa", + ".git/objects/81/e6efb72af53c170401126a97f85278c7895db6", + ".git/objects/81/e8a102cd7d5d6ef706a9ecf2a9fd6697acaa0d", + ".git/objects/81/ee769be8f5249f91b93137e011ecd02028c65b", + ".git/objects/81/fff1e8083616fe161a7b1af4b87d54ba0dd3a6", + ".git/objects/82/004a5c92678ef463df20b84abd06428ea192d0", + ".git/objects/82/042a67326273346e3cc54aff1643385eaddede", + ".git/objects/82/04f65972c95c86be4512f4f2761e6636d23ebb", + ".git/objects/82/07768e33770b0ffb654a6caba0df079da13d75", + ".git/objects/82/0ecada26a44b432318e8c196da670c324a2a5d", + ".git/objects/82/1ce7e4c16b2f99638b1fc34c6ca66e2654315b", + ".git/objects/82/2a9a42e4da4f8dc552c87f97f1b8a14cedca1b", + ".git/objects/82/409e8e27cc36c83e8b8d9eb1a72802adcb61eb", + ".git/objects/82/4bc3eb98cb88051571ca3f3b2c917d1b68279c", + ".git/objects/82/57240354d222c2283add5460bf1e6f32524133", + ".git/objects/82/6293b4b425fed7113b3bf0596c08b8d8506777", + ".git/objects/82/6749bff830da79e7e9c56c7541390311aff23b", + ".git/objects/82/746a8b98e922e80bc25fca0054132693d8f920", + ".git/objects/82/76899c62ee0cb405a3354ebd72e38c25e6ee2b", + ".git/objects/82/947a8c4e8f8075208a1aeccf5788f8e23c708b", + ".git/objects/82/95af8879ac8c7de87f9ca8fb870cabe262b004", + ".git/objects/82/aca02e3b7e99af291847fe88589109c2d359ce", + ".git/objects/82/ad22264e48ec51dbfaabe619432ef8f178d10a", + ".git/objects/82/baef46c1dad08fd9c18929aca5f1c61544c7aa", + ".git/objects/82/c3fc053d766f2366d01c9572642b5b67679a3b", + ".git/objects/82/ca106180d2248a59540b5fe510ec0b73d07a91", + ".git/objects/82/d08dbda8bbde0d6c67564f35e616b0e4064221", + ".git/objects/82/d82bcd9d2596c8e97906334c7582fb1535fe8f", + ".git/objects/82/f0497fb5d8d3819aeae224b80666b1d680bb64", + ".git/objects/82/fa9f32d215fe459209fa5956c49c0ab57ac052", + ".git/objects/83/05291b606384bc6240e5c10baa408a944ef631", + ".git/objects/83/11ebace319a749ea766f55da3842e770d6e975", + ".git/objects/83/24842e4b738cb7ef6bbd5b22980947c63646fd", + ".git/objects/83/24c53c52b195fcecd01abceb0262a8b8a68d9e", + ".git/objects/83/278ad04da027b629dcd7419769d83b67092cd5", + ".git/objects/83/2f30d51b1c4ed5f8295619636c683d9f065c24", + ".git/objects/83/5aa25c07d92d7606a6b3b61c3d6a2ca7a824d8", + ".git/objects/83/637d67e653213134df4464c8d12aec64bf0d8d", + ".git/objects/83/6c053c50999a31929e90ba7042a30a6e76c922", + ".git/objects/83/7f9ec47208067ba1229105f2740658d2515cb5", + ".git/objects/83/9a90bb7a6389941a71ac2f4942028b2dd861cd", + ".git/objects/83/ac44d14daa366d4102e321064991736ab8e356", + ".git/objects/83/b080206acee7e2cd37e3e7692e8afe51323748", + ".git/objects/83/bc82ad86f28bc705477fb2a4af4da35fccd569", + ".git/objects/83/c2cca0efcb3ccf184e4178ceee67ff67c2c222", + ".git/objects/83/d9f2bf58f71f13e4d152bd034f8445492384ee", + ".git/objects/83/e445eafe7e45c2a334bf2cb8c67eb6e9f15e4c", + ".git/objects/83/f743036865336d7ce1ec74d2bf8e082b565d2c", + ".git/objects/83/fb3cda94a4e16f0ffec7a93a6f0bd6afa151db", + ".git/objects/83/fd933c6235124bfb7c1d458b0bed8684492417", + ".git/objects/84/02ee8b833110406c9102a16a42b73bffa8b2da", + ".git/objects/84/0976c7c07324b1f0bb2794efc202a23d71b6e7", + ".git/objects/84/1ae2cf5984072c737b38c90f327acd4c497e76", + ".git/objects/84/39b4bf19aa80fce48334c9124e89df3c54baf1", + ".git/objects/84/5803204b87e46fb51b611a54f747aa9a0e0404", + ".git/objects/84/63ffd42526659c3054e52af9b29f251adcba13", + ".git/objects/84/69ba7260c17b3504878fd6a838c7063d2c6497", + ".git/objects/84/70c30bf420fdef0bab0a93e102b683b4422243", + ".git/objects/84/a3b8dab96b2fad56516b9ff27b88a290c152e5", + ".git/objects/84/b3cda5ea69545226a93702065def4eb379b69e", + ".git/objects/84/b79ac950a4c2ae331ed76ea787c16bf6b68df8", + ".git/objects/84/cd6753833856f094fbd441855429f9dc3bd9ad", + ".git/objects/84/d078daae8a8b1b12a4470d7f7de211f6fc92ee", + ".git/objects/84/d12183bff95171a68b8b02ebaf6d5c0134fa99", + ".git/objects/84/d36166f9305db3eda9716a9ef5d73115860394", + ".git/objects/84/d85055d03f6e1e494f4d168c31f783e7f33b10", + ".git/objects/84/e4f19035264e769e77d66c302ab4a8344d7827", + ".git/objects/84/f4471eeb1fc20febe8f22674819b90fa1786c9", + ".git/objects/84/fbebebf921cf8a95b7bdae5c500aea8afc57fd", + ".git/objects/85/18207d643112afa59b9b577f38aa8d3c76887e", + ".git/objects/85/31e6ec06a03d23e553ee7b33d13c19293349b3", + ".git/objects/85/31e6f7404aa0b0b5a282060e5fe838db44037f", + ".git/objects/85/5a659cf090e35b7bc29a5c5e226d37b2b9481e", + ".git/objects/85/634da94f7161f54f34814aae1399d253fec4a2", + ".git/objects/85/6b8916ee15b9760602dba7445ac2382cc3296e", + ".git/objects/85/795525efbcdf076e747c323caf1d342f6907ed", + ".git/objects/85/7d7926eb891dc1b02afb8e7d4a11228155c2e9", + ".git/objects/85/87e7c89df710386fc3ade71292d2bf40d9525b", + ".git/objects/85/9084b11b422d872de41813ff2abc24974afab4", + ".git/objects/85/99f09b35fce53ed0aa2f8de5c9bc0cff39e826", + ".git/objects/85/ac3758b1e087696872c1c8a311403d0eca0934", + ".git/objects/85/ac8c1ce6ff8b154fdae5830ed0ab33c38e1e2e", + ".git/objects/85/b1a20972bc340a8354f3e67ee7a7b93bf151a5", + ".git/objects/85/babda394d2a05b4ab197c23db56ac484cb52b7", + ".git/objects/85/bf2c8603d87f87f3b5913b5ef4f60baea28987", + ".git/objects/85/dab8409278d3e7010b3bf3eafb4bad7c01c309", + ".git/objects/85/decef4cb9341fc9db2e94355fc1b05e7ef2ebd", + ".git/objects/85/e0c8788a278edf88c2673e1f5ba3d2a7b282aa", + ".git/objects/85/f90a1979788219ce5f7684643fd964e43d3e3e", + ".git/objects/86/04f9cdbe838ab7eedffa1ce24c45ea4ca53420", + ".git/objects/86/172e8309826d8ae2ba7e7cfea611caeec2f56b", + ".git/objects/86/2c0e48953eeebd2ff10e9d7d7919d66c81f529", + ".git/objects/86/35173af3bcdb136b392af8b9683038b33c47eb", + ".git/objects/86/3cf839d83c4572e7ca786c631ce29b6e891c70", + ".git/objects/86/438911b49d48a17b706f30c5b97455a7149b06", + ".git/objects/86/47c8180d3726031eb5450009165f8e624cc310", + ".git/objects/86/4819d8bcaf45d9d31ee81948122d7ef44f3372", + ".git/objects/86/6ccf759ebde70222403b0c146997623b140086", + ".git/objects/86/729d18fcbf649fa61cc64ce73b251c0208af13", + ".git/objects/86/8fa73bebbc602d864d2080ff757e28f7197c5f", + ".git/objects/86/980e16e05991b8f86fde250ecb80f1ee5bcd50", + ".git/objects/86/99125c981810f23682e300d09b60dc774c9f98", + ".git/objects/86/a41caae2e52a487911523de0f0d5e2b8ba001e", + ".git/objects/86/a6c20b5a9dabc59cb339549ec81af6cecc6057", + ".git/objects/86/b5ab192215294a9c0395fc34607ffc4b33a02c", + ".git/objects/86/b6666e3958fef3b008b3015e1dc9f16afe84b1", + ".git/objects/86/bb79b3e41138f52b9884f3af8c496d55d108ef", + ".git/objects/86/c96bdc311509464d6c7d5d6dae7743f7c1e789", + ".git/objects/86/cff01a1809283b799998e88fb70cf7ca4a2c6e", + ".git/objects/86/d15735ca28df1d7cfb4b340cbd5919ea1fb811", + ".git/objects/86/e92277733bcf25e2142de08f71f4da12f3452a", + ".git/objects/86/f4070605d7c3d1bcffbac73ed2bc60930c8541", + ".git/objects/86/f6ff696d8f65076ada63873e8f8fd658c81329", + ".git/objects/87/07b97f7a4455c127cd41fbbd9061df20c16b21", + ".git/objects/87/29c95804175ddc68466df13aa22aca7a646467", + ".git/objects/87/2a6fd49f15d41946446b73ad96086611f1a05b", + ".git/objects/87/3049494919c0f6c00fd3c3f4da6215e63c635c", + ".git/objects/87/3d92e5a199a1afab33ff4b723427190b0ae014", + ".git/objects/87/4090e015ade16746ec3e7513062253d200a989", + ".git/objects/87/4e88975d95f6b0c4d1a7e1b361ae8f7920ba52", + ".git/objects/87/563c96185df161d6282de76a8db3877b586ce4", + ".git/objects/87/5667e291814931159fb8f60e9c8fe25810c70e", + ".git/objects/87/5ec21416f37472fd3d2c2f2662b53fa25da56e", + ".git/objects/87/61e30a990489506b44c3834d9f879d818a7d11", + ".git/objects/87/67471aa3308d58f116829f7d0c94b3941b228f", + ".git/objects/87/6792beb9982a19a462d63c62698cd89effd7f0", + ".git/objects/87/6fcd29028f4b2d4884b3a0a9fe2537cbdd8622", + ".git/objects/87/7bfdf5e23eb9e3d4ba33e292d2eda4581e97c1", + ".git/objects/87/85f46d3cafc0539f4e9f564f0189a7d11cc871", + ".git/objects/87/a76ed2c5169a71bcf14a36c5ad1fb132f2b27d", + ".git/objects/87/ae6ee1c5d36622770653437b7c088182c847b7", + ".git/objects/87/b7fdd2eafd3681842c27ca4dde8808f402a854", + ".git/objects/87/c668c69c19dab095ee92b031019c1a7fdf8fd1", + ".git/objects/87/cfb36d2e5aeffcfca88e7030e142b3dc23faf3", + ".git/objects/87/db336e227906e8da841d138e124431a3706b16", + ".git/objects/87/e3aaca210790c5ac43f3dcea7735a5af663f6e", + ".git/objects/87/ed21cea97d56f3cebf3c49d3bf9d6c765e54df", + ".git/objects/87/f672749e9519eb08723df6e4a8b7cd8e10c641", + ".git/objects/88/09d972ecc3529978d9325501f9deaefa638579", + ".git/objects/88/251b51780494aba5628fc4fd0494736ba288b0", + ".git/objects/88/271f53d714a16df6c2af4b3995842a3d9f9368", + ".git/objects/88/3f14b46faded6bb362fe77a90a96f287ef05dd", + ".git/objects/88/42836ef9b0e7fd6984f99fcf57dbf805ce2554", + ".git/objects/88/4e99bbcf20698193a9130311f10287812c31a6", + ".git/objects/88/7b43dba401266579ba5153cd9bce442b05298d", + ".git/objects/88/8ef7dfc2ba31449d27df32e133f702a1078ab1", + ".git/objects/88/99874e442437fa00f684d8014bde864b670513", + ".git/objects/88/9a70f7e06c7ad865a65f515b2e9d8fd7937fc5", + ".git/objects/88/a714cc1687a20956782ea3501e9b2f2343613d", + ".git/objects/88/a87c9f111e0d01e51149d3941a6a9f62d599c8", + ".git/objects/88/aaf64813adeda20e482a5177d2736adbdf2364", + ".git/objects/88/ae04df3ecaa5df4654be73f693ac200cf5ab61", + ".git/objects/88/bfc2ea28ef74978aa7074806463ad6ffd87f32", + ".git/objects/88/c8eacef72e6e3d6649ab602e411bd6b81d8a41", + ".git/objects/88/ca56b813219485759b9fc9d2fabde1d63e0793", + ".git/objects/88/cd219b0c0345dc99a464f83d205cc06974f445", + ".git/objects/88/e0da9d4d128ee18b9e49da649c74ed02c0db6c", + ".git/objects/88/e4df0ecf327ab92f38fe4c94d629bef60b0a03", + ".git/objects/88/efa9e696d2b276120f9c45c3b21ade845b6a84", + ".git/objects/88/fa87d72c85a5cde44cb8ce8d03c7d838043c92", + ".git/objects/88/ff1b703c19bbb49f3a9abb00bd5549c8560da6", + ".git/objects/89/0a557d90e2b9b4ad1f35923c1fc86791d3a49b", + ".git/objects/89/284e0ca4b30db2a0a4ded867123143a67d5cf7", + ".git/objects/89/3a6f4b0d60281d7c9031fcef8013357947a4dc", + ".git/objects/89/3e3fa7cdca393480c792832678fd7c0ed2ca26", + ".git/objects/89/47a9064d4ccf9d4e80286d922087ae975ee4ae", + ".git/objects/89/52b155e7efa96d3a965fc2dfb2b47082f4787d", + ".git/objects/89/55316a3102dd06baccd488da7f90f667802047", + ".git/objects/89/5b21979eb7694ea60772a30c20f89753424dbc", + ".git/objects/89/6ea8fb9153389abb2fd2bc5360f286a4fcb0a8", + ".git/objects/89/7fd5757f33dd9895c838b96b6a6cdf54bf3634", + ".git/objects/89/8830f041e618e410cca84a429ba8346ea1556b", + ".git/objects/89/9f724a927da19a6d9b2b279a5fefb17bbf05fa", + ".git/objects/89/bf4591f722d58f7f6696617cf9b3d20bda3f70", + ".git/objects/89/c1a5304b650e568b5d4a451e75884643c6540a", + ".git/objects/89/d9213ecbb1be9c02f5f1ed14c20645535404e5", + ".git/objects/89/da33d47dc411bf0a684d402a3587c7601b7e21", + ".git/objects/89/dc9156f48440d02e685e19936e31706f8d4889", + ".git/objects/89/e853c72cd293b318311c16b340577a21dc2d64", + ".git/objects/89/f7484108c0d55686259b393d313e2a78732dfd", + ".git/objects/8a/0cbeeeed90158b631e84a6c9bba43c5387c742", + ".git/objects/8a/16b9212959914289947cae6d3c18cfdc80c74b", + ".git/objects/8a/1f502b3c61a5d4347c1005001ac902422abebd", + ".git/objects/8a/201dcfa61a78c4101cef93295e8f4e1d327f7a", + ".git/objects/8a/20cdd808f3176703bccdc5bc93d1c9e7cf9e0a", + ".git/objects/8a/24491d866c8df7130cc54c84b60559e5f6df5f", + ".git/objects/8a/2537bca87bc09cde45bd469334ca1361255e0a", + ".git/objects/8a/3cee0bb580475b939b11023848e74638d830a0", + ".git/objects/8a/40b0da9d22278eb62c35c7e42141890bde636f", + ".git/objects/8a/610da67f8b7d481a711d02b7014b1014599a89", + ".git/objects/8a/63574639c1708f99663cbf5dc2e048205eefe4", + ".git/objects/8a/81414bd105cb60fa4e579eb29e6fdd92442338", + ".git/objects/8a/909695aee151b3f181caa1e9962ad09ed50424", + ".git/objects/8a/9c501a4aeb60d950012087dd0a4dd68216c2e2", + ".git/objects/8a/c5b3988f2e2210b6bdb04b6647543feccd8524", + ".git/objects/8a/ceb52048235b2ced01fe810db498d1201cdc98", + ".git/objects/8a/d5c527068bde580cb97fa7012a41062635fbdf", + ".git/objects/8a/ee03c9cfc4c96d330bf1c39c84961428dba259", + ".git/objects/8a/f166a470f71d55e5f34d242005e7f05a64af3a", + ".git/objects/8a/f260110726198401dbe0c5891a8ea7eb66de2d", + ".git/objects/8a/f58261dc99e1397cb59cbca43d92e4d5ebe573", + ".git/objects/8b/1c9bb774ff98cbc3c7236ab3104efd82f62759", + ".git/objects/8b/23f0bd55e49abd6475aac8148b2bf970f21848", + ".git/objects/8b/27a1e9de15ac7d32f82de1cda823ca302b320d", + ".git/objects/8b/2d78040e7759a283b533fc79d302a6d77eca36", + ".git/objects/8b/40bbc6ac3e652292503ca380eebea4169d705b", + ".git/objects/8b/46decf6f0d25de905800e467bae19aefd4510a", + ".git/objects/8b/52064d45e28eea198112eeebfcd9e7ec171d0a", + ".git/objects/8b/54f7a48cc578ac0f76a5e10b24d6423acc7e2e", + ".git/objects/8b/605249a952303f1fe33f68884ddc560cc09439", + ".git/objects/8b/663f3842c18e5510998f32b1e6f3d9a153b941", + ".git/objects/8b/67fb4118a8f9a91b06be28a5b4beae7ed80170", + ".git/objects/8b/68a59c589152d9fd8a3fca7b2fccf9775cc14f", + ".git/objects/8b/70983cd061f71f6bc7003bbeedd1c5395f1640", + ".git/objects/8b/7d0dc8a39ec4d124f56b93d7cbac7f8149bf20", + ".git/objects/8b/91967d84caa5455f0055bc691920c6ccbfe414", + ".git/objects/8b/a321d526f650dc3fdfbd4196a7837b01d74b40", + ".git/objects/8b/c892b87cfdafd7a12b1251c767aa412efe8034", + ".git/objects/8b/c92936ad78012a5adab74ae6844c9a655c3f70", + ".git/objects/8b/d667faf317703c5d4cde1c12d51b3e57d3df81", + ".git/objects/8b/dd1845f9f53e92c40614719ca51a6fb4551cfd", + ".git/objects/8b/f47b82872dd6a33b464db78b4c0eafed76340b", + ".git/objects/8b/fdefec29a6fc5c5e3e7466af8c793f72a8fb04", + ".git/objects/8c/136a6e7e27bbe482fda822aa06b9a4ea483e44", + ".git/objects/8c/2a2804e7eb140dda36e7b9117b62986386281b", + ".git/objects/8c/36bf57ba6883c1de20a78ccedc266662f3b101", + ".git/objects/8c/3d717c786e6f72eeb0a396da7230373b194794", + ".git/objects/8c/3f4a592025f0ade6b4f3bd600831d80e62ce61", + ".git/objects/8c/4491ed726bc573218e5a8f3cfeb933dc11fae2", + ".git/objects/8c/765a228588f5d20b98b77fe3012e058587db28", + ".git/objects/8c/a2917517c346e5c1c927837f9095e2b0f37736", + ".git/objects/8c/aa09022c055e8238a4e3dfb162beb50460d33f", + ".git/objects/8c/be1f13f8da2e6e273522aa0e289c90dfa6034e", + ".git/objects/8c/c0cfa95cd565f718f71c9d6adadb53cb33ff5a", + ".git/objects/8c/c9d19a70accc583edebd764592d8b0931e2833", + ".git/objects/8c/d1d11cdda8de408c72ac43e4b9f24d637c0ec8", + ".git/objects/8c/e3e46749fb42ee498377f86b73a36af1e4219a", + ".git/objects/8c/ef01e49e2f6e3816c74ff11052eddf933eb616", + ".git/objects/8c/ef1344ce0fdd92524dc5bb2c1d347e791482a8", + ".git/objects/8c/f6e6d00447964f22e9a5c370c5e76ab594b98b", + ".git/objects/8d/0488a5a4b9d8683a1c0f427748072b7ba1fb7d", + ".git/objects/8d/091393c38e9fd9d57f9e77807216add1279189", + ".git/objects/8d/26d3fbf33143bb3d5d5a473727aedd8bdc6eaf", + ".git/objects/8d/38217e743a1bc6c2517a15212180c754812038", + ".git/objects/8d/5c369ea4a3b24ec214be75cc51f9b870cf2022", + ".git/objects/8d/64e89250e702e658e43bd11e9efffbae0136c5", + ".git/objects/8d/66fc5bd549ede49a4ff6b2e27bcf0193db6121", + ".git/objects/8d/7c50d59301d4ed1a10082b407c5148406436d3", + ".git/objects/8d/80a2dc8f6f23001cfe5d7d4fd2bd018b37ff4f", + ".git/objects/8d/870a6d58d0668efce2681c922a40d2e7933441", + ".git/objects/8d/8f051044d4171eecd108818bb3c87d6ab1c2f0", + ".git/objects/8d/9f820c2db4409c289755848552104228f9b4c2", + ".git/objects/8d/a6eca8dd57d6cded449fbcc1a33e6fea6afc1b", + ".git/objects/8d/a9ce48f72f7c95f14abff1ec1e7f0b04733d89", + ".git/objects/8d/ca6210f1885decbbf81fb657a55105d67fd73a", + ".git/objects/8d/d6d6fcd6f513c503fa0706fb6907e1dc742387", + ".git/objects/8d/e004021e69f6fbcd3a12ed2db843d1a8c9111b", + ".git/objects/8d/e166ebb12f05633cc55e886e3cce6d2bb4fbc0", + ".git/objects/8d/e295d883aa71adfe3eb15c4f9f705cbc05ebbf", + ".git/objects/8d/e534a601d1c28960b01aa14ffd4914976b5dfb", + ".git/objects/8d/f3ed260fb55d5813f60d226da06240b0f96b68", + ".git/objects/8d/fa405aceba4189cb3c43c42109d00b54cb18d8", + ".git/objects/8e/0cb10bc64d8db6768990149532983861285cdd", + ".git/objects/8e/0e8b6e766cde4deb35de3f9f7efbcc555e5cd7", + ".git/objects/8e/11866e422b82c05c1049f39b909641b1907111", + ".git/objects/8e/20f44ede489177cf0196d6a0898288d1781b46", + ".git/objects/8e/302a1ceaf1a929778f1de09deca99d694c8451", + ".git/objects/8e/4bdd6d1b3e8b9969ab62d35d0be4a93a2907af", + ".git/objects/8e/4da8a25ddcfc1e2f02f2b8b4b00e9add388cc6", + ".git/objects/8e/68e756a5fbb525a2d04c78de7aa8c1c4fa68ef", + ".git/objects/8e/6ec99fd4c16c9b2b3a5f853dd2a0b7d29cd8d4", + ".git/objects/8e/7d6e8fa42bee88ebf355477dee996dbeff0d7f", + ".git/objects/8e/94966ed03a18bf3b92a6e47305e74c2b975405", + ".git/objects/8e/99d5d82e5a1fe7468f4b82b2d3768af08a4ddd", + ".git/objects/8e/a6ade5a3523e432b428c0f7a54d5220ecd37e7", + ".git/objects/8e/d00d0124971b3395ae6d1bcfe643b682ee4cf4", + ".git/objects/8e/d53b2b4e994e947abeded1c6381c3fc272947b", + ".git/objects/8e/ee99a96982b9be84640b722e2d0236453e4c72", + ".git/objects/8e/efab666d5c66f228233a6247e947ebbee84cde", + ".git/objects/8e/f0a81f17f59ba15c986292e7f63fd93fb36c19", + ".git/objects/8e/f6e60b1e15241b9cee89429bc46a0164c31e00", + ".git/objects/8f/0251744c922bedd57978309cad46a619545955", + ".git/objects/8f/0ba6931dd4165df67be4dfd0b05cd745c6c0d3", + ".git/objects/8f/6325343d0c99776d2761cc8873e07d1b983905", + ".git/objects/8f/70707ba01d243c8833b1ceff3e4a8a61d7ed26", + ".git/objects/8f/7f10ee961f318ac0ecc2e1a28bb272995cfce5", + ".git/objects/8f/873157582b008b2b150491cfa99bc3926a4a08", + ".git/objects/8f/87745293fa454fa696b831175eee814248568d", + ".git/objects/8f/979b09da3dc11a3c6d26c188dbe401fe26c323", + ".git/objects/8f/9c154aacc6385527d7eed5efdc65f884e2300b", + ".git/objects/8f/b302676d485477b97e82c71f6f15403c9897f9", + ".git/objects/8f/bfc81bad58d3419c490002a51288953f46003d", + ".git/objects/8f/d2a3f143deb294000e58580e572e7f1c8c2dad", + ".git/objects/8f/dbe00f7b04114c3dae2ddedab77aad0b88c004", + ".git/objects/8f/fa1f5deda85ed50de0676d68752892e487ff00", + ".git/objects/8f/fd513e37882f1a68cb179cfa0c8fad4f5d8ad8", + ".git/objects/90/1273dc3ec862f001a89b1b9eeabec0c31f2565", + ".git/objects/90/192e4e294b709f39b505bad6bb1c0561260183", + ".git/objects/90/413743f190a75b1b0cd5da0ab1f11feaa886a0", + ".git/objects/90/477994703c844941809e49677ba40432ed3160", + ".git/objects/90/4802db9e58862db5ee79e81b1d96258bdb1778", + ".git/objects/90/7264b71f8d0492cb3f614357a0534ab7e80fa3", + ".git/objects/90/806fc8d0f29327f7bd225393f7254b89852e1b", + ".git/objects/90/8847c7a97edd025f1863ac289ec79b9fe8bf50", + ".git/objects/90/923edfed7c7ae2618d77d666f56731d23189cd", + ".git/objects/90/98bf53ec27594642d56194d61fad1eb490f8db", + ".git/objects/90/a1560d4cfabeda0f480f9f95f3922e809462a9", + ".git/objects/90/b0225a3233d7e426c16f27cc014d7c0f35845b", + ".git/objects/90/b4b92f7b927e9d67f4a20b2e1dbb320a960543", + ".git/objects/90/b6b24c3f973e05c709be43975d40f322d047e6", + ".git/objects/90/b77220349b740cc74777bbd3b874f1372c686a", + ".git/objects/90/c23d5743d8249617600b207b531f75f742bdbb", + ".git/objects/90/c86f177543207475ad27c81e42aa451368e12b", + ".git/objects/90/cd8738eeb5cefd942ecaa35c2bfc431ef1e191", + ".git/objects/90/d4ef089368826eec2c3b17961b6f43bc5f420d", + ".git/objects/90/d8b271927aa7cf6694f62bc5653eca90584079", + ".git/objects/90/efe588bfd564be8ebe067ac85a832f84da1fad", + ".git/objects/90/fab14f3847dcdb842c3e411c1d2c5d004a47db", + ".git/objects/90/feec8aab609f29e63a7b14bf9bd384f187bbef", + ".git/objects/91/07863649eacabc15ce26be202ae336a0e5a060", + ".git/objects/91/2a854a0793c37d1c20cf9267342fa696c3284a", + ".git/objects/91/2d1f6baf9a64cbb4b58827b188e10230eb6f84", + ".git/objects/91/2d5b7481a23657603513ad886b96e9cfc2bea4", + ".git/objects/91/3aef0b11c1359f9abb68e609b7f4f2e2dd1f93", + ".git/objects/91/46044f9ded0a1a34d69dd0aa66422d87c2c54a", + ".git/objects/91/4a02d385abc775b98bf675b5809204ee67bbf8", + ".git/objects/91/67ca49cde0add348e47299bdf879a947ff19be", + ".git/objects/91/6cdf703b2eca09d8baae30449ad7efe14bbdae", + ".git/objects/91/880c6c51421e9f65ae7342e0ce43d80a9ba295", + ".git/objects/91/9313d8d380708a9963e8692dfe1a3c4bf17c5f", + ".git/objects/91/953d31ab2a67943608065b27b512803dbb4ef3", + ".git/objects/91/bbbf97be569a3c05238f9927f1bf96e34a5dae", + ".git/objects/91/cc57acf1e8c8b09d2c48cd58918569fcd665a0", + ".git/objects/91/d01f2666a66fcbe50d337cce38bbe6c2098f86", + ".git/objects/91/ee8090e8adb954a6bb0392e83a2a8de89c9f5d", + ".git/objects/91/f283a333c23b7508535581a3a6b9e37b7aa9fd", + ".git/objects/91/f4f41b5a6b84bcca45694c8e5c7f828c148ac6", + ".git/objects/91/f859d22a367f28d0065ab4d74fc5dec9e8f11b", + ".git/objects/91/ff69406763266948ef509395d64afdb95c76ce", + ".git/objects/92/0de9548e6974fd363eab96508d567a28b2d76a", + ".git/objects/92/1d3d2d9824c847cf07ebeb5521b30a8be6dd0f", + ".git/objects/92/24fae443fd910ebc47ac55e72076bb0e9eca91", + ".git/objects/92/360d857fccd98f4f945199d7b65b5a4e5abf4b", + ".git/objects/92/40040e88b800d0329edc3e687fe4af237f7fac", + ".git/objects/92/41442b12189e642e9de9ec3c81739fbc638a27", + ".git/objects/92/7497a891446f5659ed1b91b243c4247e170ff0", + ".git/objects/92/7d2bfcbc25408ec36d50056b6e550d819818ab", + ".git/objects/92/8dcfcadbb5584453a8186571bae4d5bdb6df41", + ".git/objects/92/9463f5d74432ccfb528c84c595c504f041a00c", + ".git/objects/92/9cbe904950f9fe4c1957d76c35aae1cc0cbd3f", + ".git/objects/92/a43f9c56eb2e45491ceb1b51c2dc42a80a2565", + ".git/objects/92/aba27e69b36d506b41789489a82d12ce05701a", + ".git/objects/92/c08ea0444f8adbd74a9bae627c7321cee48bc0", + ".git/objects/92/d9e05f0002cb0d906f21fff0130531618d846c", + ".git/objects/92/db190b6503e341fbaefa1f297a5f3687545865", + ".git/objects/92/f127759d44053c47183f747127bc6962e12616", + ".git/objects/93/05e4bce3ee902cd91f720b1d7cbcf783c8fc44", + ".git/objects/93/396792e6733569bcba71b32c38db91fc7940fb", + ".git/objects/93/720921082c55d176306e255e28fe461e1c80c9", + ".git/objects/93/89f6a943b5745c08c7d4cecff9749d2a71c329", + ".git/objects/93/96c6200c1f418da1500860615efd091217fe76", + ".git/objects/93/ad63a01d532ec271f2cd7ac2174f4138bf63ff", + ".git/objects/93/b4ee602f706c7f7a6e10a511bfc4a28b66e778", + ".git/objects/93/cc0add1de33c56b246eadd76b4b661ed754860", + ".git/objects/93/d2b407d6fe6f71ec7eb48166ceee2374784792", + ".git/objects/93/d3934b532934768f07807ecedf96b1bdb2fc6a", + ".git/objects/94/1658ce70d0694946bdfb200e315ab3a6f5e06e", + ".git/objects/94/17da7734af904df0b63c4e3ac594c1a6e7c515", + ".git/objects/94/21a5f696f8539701d1e3b86b31c52edc2feb7d", + ".git/objects/94/221b389948f471c2c6f844dab37b99c02962a7", + ".git/objects/94/25926e8e91b591cca13550d0ed647e901c131b", + ".git/objects/94/2916e27532d930ba76c41c79304583f9184dd7", + ".git/objects/94/2d65789e22d92e8c4bd2c85c593eca08ef3c6a", + ".git/objects/94/302d9ea00df05c9dce2eb0dc6dd25310c07447", + ".git/objects/94/35b309393df23082f198128ce6c6be66a3eb08", + ".git/objects/94/3f159b74dbd439354465bff3089b61e8b0254d", + ".git/objects/94/40e75e3241cba15faacf988dd85362f7bf6448", + ".git/objects/94/5a2e8548782d834bd76650a15220a3f10aa41b", + ".git/objects/94/740641e793bc27588c663b12c2ddc2714d8e5b", + ".git/objects/94/8c6f39b06dfc55a4e093f32606950b23605296", + ".git/objects/94/8f15a8a05ce8b1e3a25a8933bf15986b999f9b", + ".git/objects/94/9572de62a90fae4b9bcfe502034304b985ca5c", + ".git/objects/94/95c3ad9bc3b0213015390d7f941ca899a0221a", + ".git/objects/94/b2d31f0b75bdcd99c23c3f2ad08d60c7b36c5b", + ".git/objects/94/b885a492e312ce8395f8dcc710b326e3e88354", + ".git/objects/94/cd236bdc8b5492fde4aa52d5161ec3a8cc0485", + ".git/objects/94/d4fd433365b13f328e497a15d0c7900a39efee", + ".git/objects/94/f1b43a1ca5207d424e39469f63f76206a2d1a2", + ".git/objects/95/01132d67be095456149e5808990e581c2197c6", + ".git/objects/95/06b0150f9cb6a41bd763cabf3f67c0bf2bcf14", + ".git/objects/95/0c513f803f27d259a20ebde846fca44f952a98", + ".git/objects/95/178476aa1ff6ee5ec4dd5016d6b962c17256fe", + ".git/objects/95/1d191a908de31071e229b45c091f8b3dc49e97", + ".git/objects/95/2fa1d83470be621be618fc96cb738a2f4b9f0f", + ".git/objects/95/3a14df13c44b98aea62e2de1ea80d4b9650d21", + ".git/objects/95/3eab9147ead4e6785c530a25059937f5e76a70", + ".git/objects/95/4f4d2e574fdf45652a648020eec71fc97bb3ec", + ".git/objects/95/5a6d9c299a87482c8a47fe15a37fabc894b61f", + ".git/objects/95/6b16d45c65cad9635d323a9915b4009de2df7a", + ".git/objects/95/6d259125404b184b947267d8dee9fb42f7382b", + ".git/objects/95/7783163f96873e3af23886d9faa033d694ee08", + ".git/objects/95/85a8a53899edea13e6b6dd156d0f07145e2d72", + ".git/objects/95/8aa617d16e39a8c9ad4605ab2c35ad2472044e", + ".git/objects/95/974ea135451c7d780128346843d7d71b147822", + ".git/objects/95/ba2d58ebf9a941a0ad734eec20e265834a1d10", + ".git/objects/95/bb7ad10bdc7ed64edb8e5eb1ede3147358c769", + ".git/objects/95/bddb5a4e51b1f696fc64d8285d4e133f4404b7", + ".git/objects/95/be17f1f593d95b85887259564ee61699f164b2", + ".git/objects/95/c93e377a7d8bd27655151a1526be361e062ead", + ".git/objects/95/e61154749b11c5ce096dbd13dea2be751ff506", + ".git/objects/95/f6c77d2d51076b93de9ebd8777e62324dc3f9e", + ".git/objects/95/f6e6c5e90b1c6667807a1331fffdf57e97eca9", + ".git/objects/96/107a208051699fce100475f93307d552ea0a20", + ".git/objects/96/15d98329d103fe98cc78bff5f8930d3320ee45", + ".git/objects/96/236eca7c4ef79ed264c0c84d955edcaff42cd1", + ".git/objects/96/250712a86faa5baa2a67ec306678f0273a0ec5", + ".git/objects/96/256c30ef726e6629801990940103195b55e3ae", + ".git/objects/96/44e886f9c076f54cd69c324818f84796f2ca86", + ".git/objects/96/48fbe3ed3d18ffb4c7906fcc82a3822b63967b", + ".git/objects/96/619e5040cbfaef0b5d0cb195bb34400f61dce9", + ".git/objects/96/6ab1d6ec04f7186cc69b4c4e5cac38633f3d5a", + ".git/objects/96/6b80afd3e0af00412e2bae583f4d56dd7a3ac8", + ".git/objects/96/7dbeb5161c8372ca1249e424539a6e310e1200", + ".git/objects/96/85c021744ab7630817afb8bec3aa75ca1fac00", + ".git/objects/96/92dc70d569b861d5a01da482ad3d373d5a4b1f", + ".git/objects/96/cc0c8748ec3da71d2f84a967a72e0b914d0075", + ".git/objects/96/cd5358861a5daa96de764bbdba620b0a633051", + ".git/objects/96/d32afbcfc42f56a07392a9ef06ba6004a231e8", + ".git/objects/96/d371033543ce988e8a72d911cc259b084de015", + ".git/objects/96/e984d5f1424d5f1ff1d4a53446fcdb3cf672fe", + ".git/objects/96/f8155912ea7c77bdcc7ab53edaec42cee2521d", + ".git/objects/96/f8502d028d2fa959f6c6c1f3f6df81bdd3dba3", + ".git/objects/96/fbdac2bd6552f42cff21ecea9b0ddcab95aa0f", + ".git/objects/97/0a069117766a3f3559d28d333f58db84f27dd6", + ".git/objects/97/398d32b45ccb7221b69ec7a583d7121371399b", + ".git/objects/97/4503185741082ed183c66399f499dbd9aa132c", + ".git/objects/97/47da260f9af9f6f2cec3d20d9775c7b1dce91d", + ".git/objects/97/71a349e351a99ccc2e640bbccf232ebd99a1de", + ".git/objects/97/771112249d8e2da76d2477c719baa313d0c413", + ".git/objects/97/7a92d9e159b8393e3c526e6bb241d4dd5b388e", + ".git/objects/97/8152123a5af83101bab9f5d238b132bfa66bcf", + ".git/objects/97/8798721ab6ae18712ec4fdce1a63c44d49f7a3", + ".git/objects/97/8864fd61e2b54637ae364a46f39a3ed3379fbc", + ".git/objects/97/8bbca964a83fd63b3f81c674881b771e0ef875", + ".git/objects/97/94d103a82da39ebfb94326bb3f1303cd8f99b4", + ".git/objects/97/9642f3227f695307e8cdac988e718b104cdd8a", + ".git/objects/97/97f8fb8a85f485341ee17bbbab9008b7fea824", + ".git/objects/97/b00ade5f68c3335f6ff6a9619eccc7c8b3be9e", + ".git/objects/97/b509066341a4c16a3ffc1ff1e98356246b890a", + ".git/objects/97/c577e5ebbfeb72fa83d774b8bab00322821717", + ".git/objects/97/f0b8a6791dc756b3d83ed1467d0e820326d8f7", + ".git/objects/98/062e624704ce0e01e2b3d8e4ace77d94f6b32b", + ".git/objects/98/146c26878f26ee2d7fff41e4f23e7578baa08b", + ".git/objects/98/19152a69ae7d3661f1d9986147990e46692860", + ".git/objects/98/1b9a2983b567c9e61c613e5de9f5f6b0b73b05", + ".git/objects/98/2c7d942829f34e68e91b93e2a04ae2a4063531", + ".git/objects/98/2e14e4cac1b95bd8bcc328ab23fa26ea3614e9", + ".git/objects/98/2ebfe14b88d135e291bbb149f71cdfce28122d", + ".git/objects/98/3e76eacb39c2991dbacd48579e983bb657dedf", + ".git/objects/98/4ff3ce739c14c0fcaa86b1ca21dc16410f14d1", + ".git/objects/98/55a17bf4266c6155be9dae4b141439e0bb8a13", + ".git/objects/98/677e85c4076ef7bf7056e835d07161e48da014", + ".git/objects/98/7623cc5810422af3e77afb4f3b75a0d38b06b0", + ".git/objects/98/836d3917fbfa0f0b3618b4546a1f1429c3fd02", + ".git/objects/98/9d14908c22db6c237e4c5ada4c8b41bbfc901d", + ".git/objects/98/a5905a9af817cae7c70be8bda4011d4b1a71f3", + ".git/objects/98/aceeb285a6a7a2d69fa084fde6fc2ff2eb7122", + ".git/objects/98/bff3f2cb22a15161487a09b2935ae2d8ddf0b9", + ".git/objects/98/c1b5d91398088f6cb3d89a9a1c2ad5f50dde28", + ".git/objects/98/c34c09e5d910ccc3030da2fdd7fd2882ce3f6b", + ".git/objects/98/c6317c31eea289849598dd740a54f7ddf7d121", + ".git/objects/98/c634d80408a00b7cdb23fad5df7a8afcb556d2", + ".git/objects/98/d1ead6791f6487818878e43711cb77100c0faa", + ".git/objects/98/e9eaa1dfbcae1f1a38c466d4515f9d60054c21", + ".git/objects/98/ea9abe6c620caee62e34888f4b786abdd3070e", + ".git/objects/98/fb7a46889409e2ea071a15520d0c3e0da83f19", + ".git/objects/98/fe5c6b8dcacadba8324a3a928d1c1b35b64cb8", + ".git/objects/99/0854cdcac3b2e5ab8eab87e648a13defa5f5c7", + ".git/objects/99/3f0ac8193f3f09df0ffe189dd8763585872d9e", + ".git/objects/99/4db618a4b924863a66ee3b133787211930f606", + ".git/objects/99/56f542b93783f4f3fa40ad38df739b8e367557", + ".git/objects/99/5db4b0e3e6a0e27e9f80567ee2bd6d90a07b7a", + ".git/objects/99/6006785338ccaee912b8e1ebed0e09a2ff439b", + ".git/objects/99/613838a9fb82a09d3c1fe240a811360c3b5b5e", + ".git/objects/99/65a13931408fb6ee37f9b822b48b004f21bff2", + ".git/objects/99/65b090317742b60a58c6c204e14b7ecc159334", + ".git/objects/99/7508315a69f6b532d2d53ae016939a0b2c95b9", + ".git/objects/99/8c2ac9f0288416b1d541a3abaa387fd3f6c87c", + ".git/objects/99/aa0c75c65a40f1e0115f8b087790cc44aa411b", + ".git/objects/99/aa7d2a1944a9f162967cbbbab38d8d06080722", + ".git/objects/99/b59254408d1e5ddf01e14e56ee79281490c649", + ".git/objects/99/bd026acc26b7906b9b43f1fdb3118ef5a9f5f7", + ".git/objects/99/bf06d684e23ad29e179ceb1cff30915979566d", + ".git/objects/99/da2d073fa15d0013ea0bd6775870f78a35b048", + ".git/objects/99/dcc90ccc63373a1805b78ff4a08de289029503", + ".git/objects/99/e3b38625ffc9f8a873af94894f2637efb54905", + ".git/objects/99/e6b8aa315bb7e38f7f697299e07e1da9d312f1", + ".git/objects/99/f279b0988b9f642e930d99268f762392ad805b", + ".git/objects/99/f5dfabbff5fefa21bbd794881b1017ced03908", + ".git/objects/9a/01398f7d059e884718fa4ae67513861845fa9c", + ".git/objects/9a/0752c7e5017a4e545ccc3b6baa3ef11d20bf6d", + ".git/objects/9a/0b07418ee95983f783a8747dc5ce4132970fe6", + ".git/objects/9a/1836bc64aa09671e5f8eb9b1df7a217cd7dcaa", + ".git/objects/9a/19eb4e9a1dd360dc5f4df7d0082109e6d5108b", + ".git/objects/9a/1d156b5bfa7d2ef6497d2b0667eecb5f520e32", + ".git/objects/9a/222b5078c4690d8b69392c175769a3be5abb13", + ".git/objects/9a/27b6fc530246b5df4189eef30b44c8308fabbb", + ".git/objects/9a/3331696b3a74403b189d44eb89473200fb0c5f", + ".git/objects/9a/420ec3d5ab8c202c84eb09e0f8d0017d100bf5", + ".git/objects/9a/496fc46f5f38f966fadfa8d9d486d411742629", + ".git/objects/9a/6221e3b17baa7ef7a7a3a4e0c92775076ff73f", + ".git/objects/9a/639cbc342d4db989a4be8875eea482c9865b27", + ".git/objects/9a/6dc269314c71651ce75e2fbb2f65a2d01adf43", + ".git/objects/9a/709a88b656bfd823d9e75fc45ee7901b3a1de3", + ".git/objects/9a/716b582521720b13a3404201057f67494a8790", + ".git/objects/9a/7f008437ca0a1a6126755388814fc6006a9037", + ".git/objects/9a/84b3ade583171207ee473f7eec83f27c92f0ec", + ".git/objects/9a/88a3576d8dd3fccca9f100c03bec197e829990", + ".git/objects/9a/9e1a4d28cfb6e1d0081ba8e8d03eee00428f51", + ".git/objects/9a/9fb309e2459408502618b692542ac0cdc61683", + ".git/objects/9a/bc4fb8e7ac328ddc32820f94525d33d9fb7667", + ".git/objects/9a/d79ec2a43e7d4c3d4e9ffdd7ca57b4ba8340ef", + ".git/objects/9a/dc06b9578c112e37d4a631083469198704c941", + ".git/objects/9a/e2dff3899ae2af17eb713c1cdc1a9dffc52227", + ".git/objects/9a/e5f536ef70662efc7bb20dabb7c837f637afb7", + ".git/objects/9a/f27e6e28539fdd3107ddc39c47da26e2dce930", + ".git/objects/9a/f5523556e3939e9c75ef2672a1644d7d5602e5", + ".git/objects/9a/ff1188e84364dc3520d1088280ec2a3334872a", + ".git/objects/9a/ffea2b076465a48cd16c42fe27e90b678719e8", + ".git/objects/9b/02f9ed7762763e341e9acaaa45bd8fc5ce44f9", + ".git/objects/9b/03a4f60f0badcf5e38d1be773d18138bbe31e8", + ".git/objects/9b/059d561900aa0f974f550f167fd8b085b28eea", + ".git/objects/9b/24035a03009d7bbc0547ea2cbb32f5d2f9c4e3", + ".git/objects/9b/31ee66f22306cdefce9782d2991cde2a1709df", + ".git/objects/9b/33e84abb783567f435ed2ef4c9991136d8259b", + ".git/objects/9b/44286f2c4c07db498c6f380c1bdddc4c87882f", + ".git/objects/9b/5f386b236dcca4cdfcc2be1cad88b7fc0a2397", + ".git/objects/9b/5fae2119fa30ec9071f6771ea8df652d76e4c8", + ".git/objects/9b/7e0dac002cd6b5f7d3527aa7b191131647fdfa", + ".git/objects/9b/88994250be94918027a92f30379177b05fb4b4", + ".git/objects/9b/906b216d620c6c6458346a1ab1fa3dc33025b3", + ".git/objects/9b/926c0b3669dac5bd668fef6bf775198be8594b", + ".git/objects/9b/9b0bf7baaa85fca7e6c41abba42f6bc2ab9343", + ".git/objects/9b/b1b38e0ca5ff9ec34bdfa15432f399b2ebeaa7", + ".git/objects/9b/bd62025b1b6056bfbcae28416099a99f557692", + ".git/objects/9b/c5c26862940e74767215d446abce48fb167cac", + ".git/objects/9b/cee610b562db0c6593284f92c79e84b805c6fa", + ".git/objects/9b/d9391ff99c83009dfffa978245e36095310a24", + ".git/objects/9b/de2f77026267eee6114b6655f8cde3ed75809b", + ".git/objects/9b/e34fc7750b860d870eb82deb4684def0453d0b", + ".git/objects/9b/ef1bcf8191b5aaff7c1838baa623b668da02df", + ".git/objects/9b/efe7b74eff8d26413e3e507a375d20f626256e", + ".git/objects/9b/fa395a30df10b68b550b2b9aa8a556fb37b3fd", + ".git/objects/9c/02e2d08b9a0e7774fc1b6eef32d53d9d2b49ce", + ".git/objects/9c/0a9192f05a0e43789319e0978dd109decb534b", + ".git/objects/9c/10d82dfdb20887db4bfbc4a1031a833d8a7514", + ".git/objects/9c/157f7b3c4199d264affe7f6b6d19eab12db9b8", + ".git/objects/9c/1f1ab34e63fde16e781789de5bd5e24f617f1b", + ".git/objects/9c/1f3cc84e8f16535dcabae586e4b7214a406a25", + ".git/objects/9c/3cfd9e68c101d2faa11b96d2dd761b88041e6f", + ".git/objects/9c/62f82123054fe658720690e3eb7ad85205b812", + ".git/objects/9c/66905ed2df13088ce3062fa8fef12a8873e105", + ".git/objects/9c/8f0fe12f10d11ad90ce902f0e7eb767efc36fd", + ".git/objects/9c/a37512bb643478a59d3816686aa24bd45f9118", + ".git/objects/9c/e1efa20aed615a3caa422fd2d6d131ad972f98", + ".git/objects/9c/eb540c1659299b97cf8b3d089dc4a669312523", + ".git/objects/9d/016454116d967f148f804290ea17e135e84df0", + ".git/objects/9d/031aa7b9f8bac9d43c5de206ed7789c6550bd7", + ".git/objects/9d/16de8d01fdb6924797c4b8525c3ab6be65bf38", + ".git/objects/9d/2f97456f1c08b816d4f31d3c8a20069205897c", + ".git/objects/9d/357cc45aaa61bac2bd7f19662024352212dffa", + ".git/objects/9d/3e1f477c3b859193e5a02124b5d52dbf69510a", + ".git/objects/9d/54ca38905e375511edc26268916454b44e6d18", + ".git/objects/9d/567d6fba88ef85a44027f794cba55c0bb2ad5d", + ".git/objects/9d/5aacb1c584f831cb3b5224a0391a6f5dd2c5eb", + ".git/objects/9d/618c43ce8e8ee4bcb04f5fe33df3935432e1fe", + ".git/objects/9d/6b5f61a02545ad918d624fa242a3555ece25cc", + ".git/objects/9d/6c576417878f7cc2723b5a67191c155f9e5da1", + ".git/objects/9d/8771dde3cb76050000d412a818fbb7bc024bf4", + ".git/objects/9d/97e5ab523dd0432dadc6b4e5c85e7ea5ce7905", + ".git/objects/9d/99a380ad425bd9ef7ce80238455baf5f8bf0ea", + ".git/objects/9d/ad3ce13b114121d268c432f3acb42a64dba6a8", + ".git/objects/9d/ce5104c7082feb9189e843cbdc17441db8dcb6", + ".git/objects/9d/cf755beb077b5c5291527c4629a1bcaa10a022", + ".git/objects/9d/d9c51026a18929788a8cb2e0ddec7b6f004659", + ".git/objects/9d/ddd340edcacf6fe05ff71fd1c9480730d7e147", + ".git/objects/9d/e32875326eba14990d75cfc27a4e30ed1c2ba1", + ".git/objects/9d/f3b00c4edde7e135b5564a8f402db56c830f9f", + ".git/objects/9d/f813aad5fe6b66d0af99b99fa24124a0f6ee3c", + ".git/objects/9e/1792adb033d3769543720a828b13334f8b902d", + ".git/objects/9e/183107d50f9f0ddd472f539bac1f06637aa466", + ".git/objects/9e/18f12a4a24ea3977a20dd0b648cbdc2ff26291", + ".git/objects/9e/246179886bb6dbaf4181e7a126420d1ffbbff0", + ".git/objects/9e/475cacdcbff2d8bff41e60161180e0ed5475ce", + ".git/objects/9e/59e5e20320fb8cdc3e8862ba3f485c59bbb46a", + ".git/objects/9e/60f5624c0a638c9f53d6610e741b516c655f75", + ".git/objects/9e/66dc68935b1212b0dab3f2a0cd60786fb0dfa0", + ".git/objects/9e/681f9f40958a1af2f85ad0b8cdab79a255aad6", + ".git/objects/9e/76a2f6e7921d7112492332bd3da72c5013dd9e", + ".git/objects/9e/8434294bdb266f7b163827f50b13c601f5f6d0", + ".git/objects/9e/85050a68d93173f4722471ffda014f95438cc6", + ".git/objects/9e/87b8a7eeefbe01f5b5f8a074b78663ef5a643e", + ".git/objects/9e/8889f64e7f30b5f1a03e712369ae2f41d2c2c2", + ".git/objects/9e/8d88a94d5cbae7ae2f0ebbe1a083235a09aa1b", + ".git/objects/9e/9027608d5ddb4b0b0ce541d33dd50278358588", + ".git/objects/9e/9d100c475f85ce0ed8f9fa765914c697d24648", + ".git/objects/9e/a52b03260575526488b1c522007dc9773b8529", + ".git/objects/9e/a5dce6d64c6857e7cc3da87221afcf7c9b5a94", + ".git/objects/9e/a7ba6fc14ba69790a2ecb619063f8708c7984b", + ".git/objects/9e/aa292a37e6c14e490696ed751a65744c08da5f", + ".git/objects/9e/b1c867f0838a148040c7222f933fe00a5e01c6", + ".git/objects/9e/b69873ac3ebcdb3a892af542ee2529614f8f3f", + ".git/objects/9e/c95a1d1e7a1e4f49f58a567f3a2061f29a9ac4", + ".git/objects/9e/cd040dfb39b22dfce529a25510526f544314dc", + ".git/objects/9e/d4dff8b0d41950e2410234993414d5507a134a", + ".git/objects/9e/d5c67e9bcca1ff926eea1ce04e19b0ebf2c357", + ".git/objects/9e/dcb3bc3c8efd9720904d88fe5cbea863d7501c", + ".git/objects/9e/e73b49bc86c7c15a7d65d989f7100d33b711c7", + ".git/objects/9e/e9d22a59a581755bebe25e79deac176810a5b0", + ".git/objects/9e/fa95aa187871c9fad9d79da953d5cc2fa1018a", + ".git/objects/9e/fd7d89a196bdddc9e8c80052e0bf413a1b33b3", + ".git/objects/9e/fe63a1ffcb8321f71928c124e759ef19bc0940", + ".git/objects/9f/018ca9c80f341ec7581809813adb7b67cdbd69", + ".git/objects/9f/033b9a727e480bde02a34965bca84f24b1eade", + ".git/objects/9f/16e874df622bee7913bee5c15660031224700a", + ".git/objects/9f/1784ac104a942599b4802e0589f87ef234bdce", + ".git/objects/9f/1ace715d4023385116f6902e4d2cafcf81858e", + ".git/objects/9f/1fb5b82272b3ad64a66ac220c5f62128a00fbe", + ".git/objects/9f/23e7e9a8c27ea3def0e5a5f600b44c0e5a389f", + ".git/objects/9f/25f562e2a20ab151feb596cf79f59840527d74", + ".git/objects/9f/421b96f72be1d3b658cdd988fbd34c3fdb3728", + ".git/objects/9f/59d6cf6334cdef12e28f212ec37320f62791ed", + ".git/objects/9f/5b77bc6f1aeb9d78f2e45618b2e26d70119ade", + ".git/objects/9f/5e64428b1e82edb71691b6869567fe182db41a", + ".git/objects/9f/67bd95124d205e0d3a8bbcf6b3a4cc0ce16713", + ".git/objects/9f/681329e7b93e8cd8bdd643c54e20fe1c2a9450", + ".git/objects/9f/806ce6778cb769a2dd660d36e1c94bc34299ca", + ".git/objects/9f/82b2f2b47d859e97dcd2d6e59120e1bdb9b064", + ".git/objects/9f/88f38d5cbdb48ea2f0fe4c407c80a4ca6ac1fc", + ".git/objects/9f/8eef3b014ccf23d71d2e82452293ab55b5e556", + ".git/objects/9f/9316ee300393f719805c2117bda87e60388dae", + ".git/objects/9f/a19bc89bda512247c7b21ec44e3563148ffdc1", + ".git/objects/9f/a2c7d4303ef39e5170844b1b688d69cdf9f49c", + ".git/objects/9f/a4e7d12817bc2c5d65054fad366fcdf29b4b43", + ".git/objects/9f/af8b774a48282e059a4623d8deffaae3d08ae2", + ".git/objects/9f/b54f790528708e26b5ef5ddfbc55c8f904f580", + ".git/objects/9f/cb3a0f56902be08e4acd78a843a2732b3cdf29", + ".git/objects/9f/db13fb19d5a340d794f9fc3c007b8ee20317e8", + ".git/objects/9f/e61a0f9d3cbcc6763753517b73480e8940a0e6", + ".git/objects/a0/04f05f38153db0c04ee1c1b1dbbe0b5878f26c", + ".git/objects/a0/09caa8f305bef748bb129f5d14395da6caf43f", + ".git/objects/a0/09f899c9f082cb6c2ea32255f8d72d9a13f2ba", + ".git/objects/a0/14c3652de4b0b9e0ef3fcdb5d2f8c7001233e3", + ".git/objects/a0/601b5fe758bbd10007d74f289359886b44a994", + ".git/objects/a0/682912c5c70928d698f574215dd06c36767bc6", + ".git/objects/a0/6c775a076fd205384f6e0b6fd0761b1e316d7e", + ".git/objects/a0/75e62452ee7fdc4114197cdee6ad6374a3e7ba", + ".git/objects/a0/75fbeee3244f6618cebbf262d6ca8463395d69", + ".git/objects/a0/8215ecb36de014aa9e67d9a74578a4e4bb793b", + ".git/objects/a0/92e613191af3f95e69d0337622108cda916905", + ".git/objects/a0/9aa9964d2b5e1e807121de22067c447ddae09c", + ".git/objects/a0/a80bf18689de617ccb2e7ac6d4fe2febe01ded", + ".git/objects/a0/ae909359405ce7756c99b16a54035fe0267472", + ".git/objects/a0/c4d8858769ffb1a37cb0568261d7fcfc8e0b24", + ".git/objects/a0/d3cf8ab833b8eb5fb4d3b57d385f87eae78ef2", + ".git/objects/a0/e35564b8107a254065dd80e1b5011186dc283a", + ".git/objects/a0/f0b3b9c07b2bbe160bf96adaf8957755c9e10d", + ".git/objects/a0/f285b6ff7d02da6d69f9189fe18ce6fb00ad2b", + ".git/objects/a0/f66ec3e04424135f60224955e3c2e955d39355", + ".git/objects/a1/18718af0df5548034dafba26b620950ba10f59", + ".git/objects/a1/216a8485c3835e2e782196883748163837db3f", + ".git/objects/a1/24b2e1ec58f24dfaece95bdc13baa84d747591", + ".git/objects/a1/28bf4adfc4ae2a0bb28d2ff280217e506c00b0", + ".git/objects/a1/2fc1d0b6e8ef4da7d3cbe3595638e5ca2ffba6", + ".git/objects/a1/3221381798ac14d16c41242fe738728f0a795e", + ".git/objects/a1/33027e6e2de4bbcc79c86c6b1b18a9d41e009c", + ".git/objects/a1/6130082dd33b8c2b570cb1fcd7eba24aba48ca", + ".git/objects/a1/68d20d29daf702725cfaf83cc2e82edb1cf59f", + ".git/objects/a1/6bf5c8b5658ae6dc24fb41b02e154eb775b8a8", + ".git/objects/a1/84745e103756b8a51454733e3e7dcd5f9ea740", + ".git/objects/a1/86e5f0b2710c282ded465a88af16981a309825", + ".git/objects/a1/8815ff60196ed8d971df7f1229cfa38b6001e4", + ".git/objects/a1/89c507f11f0b09711e8943a0737b0c57f5ce90", + ".git/objects/a1/8f97f1a8a60f8a250cf69f7392f2309d6e64e2", + ".git/objects/a1/90a367432f5dfd65519748c0cda8c80d275a10", + ".git/objects/a1/adc8edbdbf13336d1e1381197c1262c66d7df2", + ".git/objects/a1/b006c2747c3de660e956eab7fd101375370c3f", + ".git/objects/a1/bd2b27315863312fafbc88c78ae77e51b34622", + ".git/objects/a1/be138a1d60d638543d5e8fcfcf8e524dc6ab95", + ".git/objects/a1/e01529da97ac1e1bd7938637a07b55b5b10aab", + ".git/objects/a1/e7b7e00d3298d6dc8040521d2df8080c81ba90", + ".git/objects/a1/ec745c47ad8d70a2fb31dd0c4f5bed6d2f29bb", + ".git/objects/a2/0466f4a3898d26ad3de3f0fbf120540d51213f", + ".git/objects/a2/13663f16ae67e7fe4ce6b388d5615f093ee1bb", + ".git/objects/a2/2341a3b4c20b59e93e0b9f205b753adde10c85", + ".git/objects/a2/249438c737cb2e97065d3a3a8dce4c11af58d8", + ".git/objects/a2/306e7a1f29908b29b7dab50b916ae55f1b53cb", + ".git/objects/a2/3309add894a79a8052122f982a3149d224ac51", + ".git/objects/a2/5fcd803dcf363550604a12622a4b7371f159ef", + ".git/objects/a2/60fcb40b7e4916a381c97e25537fd6e2b12795", + ".git/objects/a2/686a8b3e67607330f96dd128b59e3c13de4a43", + ".git/objects/a2/6933a88069fcac5ca0a603b3a9bc20ad99bea4", + ".git/objects/a2/76a0fab845a6b485ec862d6a992abf3e59457a", + ".git/objects/a2/9e238cae160544a5a4d977d7b2c7ed2ca8d417", + ".git/objects/a2/a709de300a12dd85c6a9cc16646685791c412f", + ".git/objects/a2/a904df18b2a4da5893a06adc7682e4e38c6ade", + ".git/objects/a2/afd71ef403d6b3470e0e87f460ff7a600dab96", + ".git/objects/a2/c5bff709fd08ad7d2bfc79769db57e1d4b4974", + ".git/objects/a2/e3da64d2c362e5a4bef89e0303af2fda86e76f", + ".git/objects/a2/e9277d9b3ef63dbe0e4293510b732d70b17ddd", + ".git/objects/a3/01b4e2a4e753fefde55a93d08aaefd9ccef52e", + ".git/objects/a3/2200a606b81195017cf031df6f04672cf31ee3", + ".git/objects/a3/23446e69961c85111aae7ad0080b315615f12c", + ".git/objects/a3/287f4fd92939e74039d5c6fdc5cab3fc8b0d22", + ".git/objects/a3/30f4fe714982244d359fcb891a577f899bca87", + ".git/objects/a3/3cf504416409d93d06791644f967b5a927b56d", + ".git/objects/a3/45aa4a3b3c26a487f8b3c48e88d26428eaad32", + ".git/objects/a3/47a932ecfeae19a58f82cbd67194affe688383", + ".git/objects/a3/497692a16a3453e321ebc92d7841ef2580b00b", + ".git/objects/a3/5592d01f86286158b857c85628459f26b36526", + ".git/objects/a3/57acfb5ccd23467efe71d0fcbb440e99a11c5f", + ".git/objects/a3/64a74aa4f02dcc768937b7206e23c2f343c274", + ".git/objects/a3/681de629bfaf281e33eb6cd1fed5f8cef71a97", + ".git/objects/a3/6b7f2033ff39e40d005a35adf77fb065218046", + ".git/objects/a3/7631b8129623dd8f6b384e22c08cf8a3001f84", + ".git/objects/a3/83347a0ff6bc6965ce9abb807755d72f541f9a", + ".git/objects/a3/871c4b9f252ab3943b7cbdb0c804120b75a398", + ".git/objects/a3/8eb6bfc2446995528aa1d965f029a6c24cc58c", + ".git/objects/a3/90ecd38b2e0e25c9e6013276645fd82c378931", + ".git/objects/a3/92cc8f465df5e94bc48e7c535e0f054adc2083", + ".git/objects/a3/a3dd74da018c0a42c9b59c030921de52668efd", + ".git/objects/a3/a829f017499a0779fc19cff0287bf3d172624f", + ".git/objects/a3/cf844b2d9bdf756dbce44dfa3798edd00d9ffb", + ".git/objects/a3/d2c53969385b8d02ccd09dd05382d7d010a2ac", + ".git/objects/a3/d604736ed95e07526eb7611c239f296b8cdb42", + ".git/objects/a3/e14e89e91dcfcf729dfa83a763aaa89d08f8e7", + ".git/objects/a4/01b885b0e347f564b9aee4d5aed95b60f884be", + ".git/objects/a4/15cac671a58a6ccbf865ddde47a163f47d7196", + ".git/objects/a4/2f6f2c3fb9d0cb7501d5dd8aa3fa69c9c142ed", + ".git/objects/a4/326a9c80b097d252be04975ee661fd6e656a80", + ".git/objects/a4/3b46287c28d3fe73d5664e7a2d5a6ef42482a7", + ".git/objects/a4/4679995f9fbf20fd6f0c8037f6e8ccdee2cb08", + ".git/objects/a4/7207de289b8084e7fa76a51fe2a9a699858e3b", + ".git/objects/a4/73e35366df19b7cc6d386d94ce62176891ac61", + ".git/objects/a4/751f84adc0920c1c7bb6d12753ef39dc66ac82", + ".git/objects/a4/7a45f0eb522042dcccb41382934f4273b19912", + ".git/objects/a4/7a63dfb4e4d74e009629765befb7e92ab11199", + ".git/objects/a4/822a211e1266e8d8d2c88624b7960efc374e7d", + ".git/objects/a4/83e7d86ee52cfbd1b62980e9d394586a0b1ec1", + ".git/objects/a4/928674b4387b05e567449dd21acc1373faea51", + ".git/objects/a4/95389ffd3b6aeab196d5ccd27ea0f6224a9525", + ".git/objects/a4/986da5599c29e420ca98c13b40306ebd1ac1ff", + ".git/objects/a4/9c87172c7be71d9b4d6a1db1e929aefb657ed1", + ".git/objects/a4/baf99b5831b975efb5d2b4c97986ab5b59a7e1", + ".git/objects/a4/cc87f52c21b4c809911a89d3c5a7135a4f485b", + ".git/objects/a4/cffed1449b9cf7f283d9c0b23be60c1edabdc3", + ".git/objects/a4/d5d476a8c0dc04f62b9cc57254d64f8df2c72e", + ".git/objects/a4/ec0e23f02b5412582000d3155d3ce10bb5e3eb", + ".git/objects/a4/f7859476a438e68d9a078dc8a2de080c424479", + ".git/objects/a4/fb93cfd736914a42ed5255beff052a8cfb36b1", + ".git/objects/a5/03f56073c41729cc48bb68a5d6ad8c5f3fa353", + ".git/objects/a5/08700c8cce04e5fac3e603305608d4433027b6", + ".git/objects/a5/13fee1757830857ed0f2e13fcf249641784627", + ".git/objects/a5/27325a4b69e36b5bfe04b530ddb9739b84a520", + ".git/objects/a5/35627d64f64c3b60a114a94f58cfa155822752", + ".git/objects/a5/4e15fadedf210ffd900690fe4778e1cd520079", + ".git/objects/a5/5cb6b641b897cd6c0866da6c82fa541b81e353", + ".git/objects/a5/5d0b13fa40a253c946e47eba71a9d41e7e1e97", + ".git/objects/a5/7025a40f5661832c0a7de1b6370c69f45bda77", + ".git/objects/a5/7b28a2e54045f463cff72de95cfc696128f7cd", + ".git/objects/a5/8cf84e8d8fbc8a865cf785e06864e8239726b4", + ".git/objects/a5/a933bff5f47a83c59e4853392ed8235a139d19", + ".git/objects/a5/c996a5fe004d6a85710083400f57393a2e6bf6", + ".git/objects/a5/ca43ddb2253b3172eee43bc067bc5940e12382", + ".git/objects/a5/cd5be4a024f870eed8d614ead2c76713b0831c", + ".git/objects/a5/ceca8ef26614969a85302cfcacc0d225abf475", + ".git/objects/a5/d0c24d225707277fe30f7d224c23bc575c1cf5", + ".git/objects/a5/eb6a70e102ed8a1fd1d1721fbc59ef4044c10b", + ".git/objects/a5/f011779d24b3b9ddbb74f21abb20f97724936d", + ".git/objects/a5/fe3b4b59ca53dd09fb0cc21ffa5f599dbf99fc", + ".git/objects/a6/04361d912e87c1e1215ae408876ef835843381", + ".git/objects/a6/17af2358f3528daa68400c05b2ebfaa2607d57", + ".git/objects/a6/1ad551bbb07ae455cc640fa6cdb08e4f71d8b0", + ".git/objects/a6/313a4106d3e9dd755d0defaeeb1d129bb48055", + ".git/objects/a6/391ce901bf343ef37cec23a58c6849d18eb6b9", + ".git/objects/a6/42f25854ab2e6608117387fcf909ffc5386a64", + ".git/objects/a6/4689ae83b3d2a331bec8f24e97b16c9a2c16bf", + ".git/objects/a6/4b4b6991c39953c719f9e4cad1741c14d033ae", + ".git/objects/a6/5d37403f592184d6ca60e12a4eb1a3553975f8", + ".git/objects/a6/5fb56f776f91fd0a96e370780c7861ceea8e69", + ".git/objects/a6/643854853bd66aa597b06f58adbd6417604fa4", + ".git/objects/a6/6b81db7aa77d8e319b3654ca9c5fdfee542862", + ".git/objects/a6/700934a79eddafdd7dacb137b3d440a369d087", + ".git/objects/a6/7968ad2bd9cf5a0ac2c556d1b47b0cadec654a", + ".git/objects/a6/815ba5aeadbdc2b4cbbd694edbd6d711a5c44b", + ".git/objects/a6/8447d341d02ddcc380c0e105ec4536e01dd500", + ".git/objects/a6/8b222773854afc98885e054df3321e8a3228e2", + ".git/objects/a6/8f33003566ddc7d7cda4ed9c300ed5b395128a", + ".git/objects/a6/a28d32b22b9c8e98a7127ca8aae26b06b39404", + ".git/objects/a6/af7f9385fb1891fed0ea209caaecbc14b3905f", + ".git/objects/a6/b8d68d7e479f5a83dca04b722d2b14654153ff", + ".git/objects/a6/bd322d22071d300d913e465b2f259cf70392c2", + ".git/objects/a6/ce32670a4d05dced6785a96d5a73a067e50c67", + ".git/objects/a6/cf82211783eb4e436a032bcd5b80bc3a797de5", + ".git/objects/a6/dd312a47815d8979d17f78f784055b1f79bb72", + ".git/objects/a6/f18fe0d21c87fe75920e6cd8635035276232ec", + ".git/objects/a6/f4ccd6e4cdf79ebace0ee16ba417b3505fa891", + ".git/objects/a7/0a61c4f30b4b930ccfe256a76f98154423321d", + ".git/objects/a7/1aefd11f67efd9573c768b06c5d640ed50fa0e", + ".git/objects/a7/1fad8183014200c0ff4dfa57d137a8bdd8f83b", + ".git/objects/a7/279a243d0713c7bacf38fa9133545b7686a45a", + ".git/objects/a7/2fc23ca6efd5d8a2979ce287eda90356b6b709", + ".git/objects/a7/356f8d5fe4995427471ea4bc5329306abdf663", + ".git/objects/a7/4a9433db914d3c4b9118ea7e3782e2c281ba5e", + ".git/objects/a7/6301b23ee84ed5cf86d3359e2b4e8848bea701", + ".git/objects/a7/769e2e6ce95f1eedc8f18a7f97ef69efa4bd63", + ".git/objects/a7/790e3e308d8a57288b5ec4d075f4d635fd10da", + ".git/objects/a7/7ca2185d9983cd6bbd5ab396e5ef9e9184e7d3", + ".git/objects/a7/7e07cce35cd336b9ca658cd5105121590cde39", + ".git/objects/a7/911ccc74b61e0743466fe41a1b92b36a1ae773", + ".git/objects/a7/9894a34160c5d753029e6dcef34751a5df24f9", + ".git/objects/a7/acf4e4af45e6a6673538bf0177e451124cc55b", + ".git/objects/a7/b1fdfe0c7c1ca910d3247361127e5e0f824d5b", + ".git/objects/a7/bbb82069c06e5f6f0b3273f4fe1817cfa3a7ba", + ".git/objects/a7/bedb329a032c1389544847e9420274f4ba3a2a", + ".git/objects/a7/c96f7f2b36f149224c2521b21d53b8de0e3cc4", + ".git/objects/a8/26b94f8ab9ab33192f10dbf7712d7ad4cb97d6", + ".git/objects/a8/41c6036e8a4677966c371dfeecd76641813018", + ".git/objects/a8/42ce1986d3d0a84a44c4dbae33e61ae72bd359", + ".git/objects/a8/43b82786c1e3faa55f9534be93ade75d808d4a", + ".git/objects/a8/4dee9b7aee4680736068d050c68ea3edfba644", + ".git/objects/a8/4f89ec2ff9b8dbcee1d06aed19175c6e267094", + ".git/objects/a8/54448d922d58214e6e0263ca6b8a5973d8ce57", + ".git/objects/a8/5461d503c843a8aee2fb51f67dc946c8c21809", + ".git/objects/a8/5a81b6b775f0b1f28a3f15e6de40942bcefa2e", + ".git/objects/a8/63063b33e8636e7df4250937596f6aa37ffd11", + ".git/objects/a8/7a417065f3b9ac04e1c644335f945004a25b84", + ".git/objects/a8/85916ffb83a7e2bb91682266b51e5ac8508e0c", + ".git/objects/a8/863a8b38748b0bbaab0bd4829126b0ebab5334", + ".git/objects/a8/86c8b269cb8394c58043e4f8d34fc3da964a17", + ".git/objects/a8/894f50cf50c1037fda366275dfdeab8fca3f5f", + ".git/objects/a8/895cab40b89843a8fe55a2b9891da9d9bbc200", + ".git/objects/a8/8aaea09f060151f2fe37a9937401cc08082a62", + ".git/objects/a8/9493dd6017b371bf87edff0472b5081c5222a7", + ".git/objects/a8/94d497122bccedec7a365e80d354fb3999bb6a", + ".git/objects/a8/99b373c658013fc65d7cb3af2fb4863e04b68b", + ".git/objects/a8/ad36d18b398588ec37e865c80a2444f0462939", + ".git/objects/a8/b63358a52648acde8dae74faea788edeeb8059", + ".git/objects/a8/bbf7f64bcb03b1969b58a1e52e491134cc0d15", + ".git/objects/a8/bc335b59409af913cee2e0b7b68efee000c12a", + ".git/objects/a8/bd4599f26e09ec7f5eb9404b7d8bf69458eae7", + ".git/objects/a8/c1f4b754fc50bc76c9ab86da05bc0e6a30e352", + ".git/objects/a8/cce61f8bab7c1f042d189b86818eee894475e4", + ".git/objects/a8/dd4bbfb5e2014e422f5d0a0046f65ff861f43c", + ".git/objects/a8/e87ea9151760a7eff3dacf4d5b4222f8903904", + ".git/objects/a8/faa674831795e5aa595fb2e43c1d96990b2117", + ".git/objects/a9/04513d392ab20cc08eea23962346d85e0a5d39", + ".git/objects/a9/0cf819aaf28dccf792cb58c45883f71f812d00", + ".git/objects/a9/12368d34cd79decd949a9dbccf857174927c79", + ".git/objects/a9/24d756921e56913e3b17f57797e0bbe73a6c7b", + ".git/objects/a9/25adbd73ed43ab26a5216f7c1db3f6098ffcd9", + ".git/objects/a9/382a937597c87c4ac2c95086981bce78eb1ff4", + ".git/objects/a9/3c14ec5985dfebc7ad08a1f44edcf37971b0a6", + ".git/objects/a9/3c9a4678d6e3961614a8e90214618d3045aaaa", + ".git/objects/a9/3ec68d9d428548a9415bbfa7c76196c3fc0aed", + ".git/objects/a9/5adc13d19a5ca768393ef00ba5d367fe97b152", + ".git/objects/a9/6a26e2a447bb0a4c045a3e79eba0182ae3e28a", + ".git/objects/a9/6dc4f6cb0589fdaff337cbab86e59c2bd1033e", + ".git/objects/a9/74a2c70e634bf8a1189a9734f94abf17d7f436", + ".git/objects/a9/94b45dd08201d7626cb9de5585994f3794627e", + ".git/objects/a9/a7f170f469d53af613bccbbbbe8d764346ae94", + ".git/objects/a9/ff78b37055fdeb8a3f6ee6b87a6603d3c38145", + ".git/objects/aa/01c7cb80f8cbffa59ee038f158ec648190bd05", + ".git/objects/aa/1193c61318780d4dac128dc8aeb5f10ca0fc77", + ".git/objects/aa/174042ed0a4fae22bba5f4074bfc0a364db395", + ".git/objects/aa/1ecaf9098775352ecffa9b60513e1a262491d6", + ".git/objects/aa/34c0c110995b04dcba1b7f560d85c94d23be41", + ".git/objects/aa/35c4ff65f2f0e96fd0bcf2fdb54b670d188701", + ".git/objects/aa/4c4926e354b1de7f71c7b84adc60dd012ebc7a", + ".git/objects/aa/5b5aea6d33751b9b1e03292b196c4ddda3972d", + ".git/objects/aa/636669686929595c4c9404b1456bc1d6539038", + ".git/objects/aa/6b3aaeda11446eb1cddbe87a2f9d87c9b83eb5", + ".git/objects/aa/6c421a135e5fd438c0fa7fc581ef69bd0b9215", + ".git/objects/aa/71a2e96779393160d3fcc0eada422ca72bd46f", + ".git/objects/aa/776d7fab6acf432d38871f05c448eb9ad5d51c", + ".git/objects/aa/8e00add1577b8f42c153cc809af1a03e31f0aa", + ".git/objects/aa/972066d3b102bd0ec5d9c7d4186f401cfa4af3", + ".git/objects/aa/a1b988d6eb58a0074c22bdba00ad8c9efe6e2e", + ".git/objects/aa/a9c881405fedc37fbd90d529f19b9517d44a28", + ".git/objects/aa/af6dbc8aacf19625b54d9ae629af2bbc8051fa", + ".git/objects/aa/c1269e74a5a58db108a7eeae32333f669b8b05", + ".git/objects/aa/c5cb1270ddc8aa836812835a407797fd84f3b9", + ".git/objects/aa/ccbe5e21e51573dc843a9d33bbb29f4d949190", + ".git/objects/aa/dc9ec3b35afe6c0960c9ff60aff43f7ca16412", + ".git/objects/ab/081c8e52e8425ac980f2238db7a891e9072b8d", + ".git/objects/ab/143fd2e5342107a2f20f89b8f89a6617f033aa", + ".git/objects/ab/1519929be1f8c000fae46f7808e260bcaea8b1", + ".git/objects/ab/1deeef47524feccafd609ea4a511abddc62e80", + ".git/objects/ab/1f80b2a8ec769d6567e051470d8754c3233881", + ".git/objects/ab/2db6c7535f009900d222b0ed6753274c703166", + ".git/objects/ab/31f7ee3370af478ba34600f28effefa8c566ce", + ".git/objects/ab/332f15f4aa7ff4b54318de44d0e917bbcbeb15", + ".git/objects/ab/33aac4a60ffe5678d3e8ad8dd4cb78d7f3e15f", + ".git/objects/ab/48899a40231918bb6f2c1e3a6e27d594c5dfeb", + ".git/objects/ab/540d5418c40dfb486f24eb01e6e8006ec02bc7", + ".git/objects/ab/566d2632bb24c0dafcf3b332d2edfc19381bcf", + ".git/objects/ab/56e73fb763b2c728c3fd0f9ee8c7cc88d89250", + ".git/objects/ab/5d5ce3617ca6928ef9e537aedc7ed5e3077f48", + ".git/objects/ab/60252d44aef4927e730814d93ae0f53e7b614f", + ".git/objects/ab/623aab95629ea844e7f3f9cd1d13a9f281099e", + ".git/objects/ab/81a132fea28a070a00bf455f9322202b6cd279", + ".git/objects/ab/8577b3947e94b6a004350dbde7095e63437270", + ".git/objects/ab/8862d596c2896b82870c08583c4aed0b873d21", + ".git/objects/ab/a6c82332d186a91b79a00c8f9b629eac7febf3", + ".git/objects/ab/b22a5c3c12b4122631512183e897fe5eeb85c2", + ".git/objects/ab/b61133daa7a682c85cb9a0448e26532988bd94", + ".git/objects/ab/d5affed29d9ee18a01ccf3241893f245211a9f", + ".git/objects/ab/f7cdb03d7271f3f05de949db22cb6d22165e44", + ".git/objects/ac/1b74931cf45c6c87daf16e32ada90d29306ccc", + ".git/objects/ac/29319f6d17976260ee62832cdb805ca1a06f6a", + ".git/objects/ac/37a836020be8a272dd8d01b7e3554c432caedf", + ".git/objects/ac/37c403f3cd604000c7d28f477e9e4f2164e056", + ".git/objects/ac/393c8cb59071e53aa2bec78b0214cc3ca28ced", + ".git/objects/ac/4788b482dc27785c1c4c09d57cf9ece1434eeb", + ".git/objects/ac/4b71485f61016b8f251172e177109381b4bed2", + ".git/objects/ac/58e01dd6608dddebd59decfbabef0abd9610f9", + ".git/objects/ac/7ed88401bc0244e808570a4251f26cf9353bcb", + ".git/objects/ac/8365149506ffd30b399af261c2e3dcd8fdf352", + ".git/objects/ac/84a65e507da50fce0db9f80df15a91a180b3e4", + ".git/objects/ac/8734e0c38202da1c2ec36e4766b92c460a33f8", + ".git/objects/ac/94b36f057cbb0ab466a87aca7f97e76cf7dc6c", + ".git/objects/ac/9f1cda0ee72b85d0229fd2fe70604d6363a6a2", + ".git/objects/ac/a2d376e63f93ab000a73b0f512f0ed721adc35", + ".git/objects/ac/ae7dc28b0015bd01d5bea01799929c2a194ef3", + ".git/objects/ac/bacd303cfb65b596a26e43393bd0687e1932cb", + ".git/objects/ac/c1e0328840df9b57cad4a6511bc2c00ebfdad7", + ".git/objects/ac/d44de6d4d08cce572cf171a2a5abae01de66d8", + ".git/objects/ac/dcbcb530110435c3520d5bc441084ea15dc1c5", + ".git/objects/ac/e5ec32ebfe09ef26a3cf6e68201e2d3dc0e6bd", + ".git/objects/ad/0508cc52c6226a4b58bd10ea93f85c16e25daf", + ".git/objects/ad/093bc1eb35ba688b4d30c1cb679dcd9cb5361d", + ".git/objects/ad/0ca862397abd1807f0d0cb6e2c84d981231bbc", + ".git/objects/ad/484bc9ec53c3409068109a46f8636dc8366b17", + ".git/objects/ad/51e62afd1f7a5bdeb97f85a7301e36a4f6f282", + ".git/objects/ad/5d40472893af6663fbb8c210dce36c7ddeac32", + ".git/objects/ad/6764bc1b28ecf7f6cad613a667b82247d3ddb7", + ".git/objects/ad/6fa8f94cc2262325363e9fb590213f9e66f04e", + ".git/objects/ad/74d7fb0708011ec1b04b6494204bf855258f50", + ".git/objects/ad/7fb65bafcc8b58998997cc98beea3f0c33118a", + ".git/objects/ad/87ef09ade869008b23506787cfe358b1afb483", + ".git/objects/ad/8c2eb4958bf082ba2662bf2774b741a0536997", + ".git/objects/ad/9aa78ba74a820ce46fb4552443bc6feaedff09", + ".git/objects/ad/ecdda887c7b873d71216bc892d47c103e63b18", + ".git/objects/ad/f0038452a4aa9f15b3c6c34079ac9db8fec996", + ".git/objects/ad/fa5ead244dbe9840a3bbdd7c90b74cbf011045", + ".git/objects/ae/04a74c7b1df365c15d2028d73564a6a0b79af8", + ".git/objects/ae/0a47dd97495e8bcf793ed1c254117bfc22f7db", + ".git/objects/ae/0b8da42cddae5b355c0b756b3e39c07b082a41", + ".git/objects/ae/0ef72e8808e666e59f85cfe9bd1c20b34428ec", + ".git/objects/ae/406e7f269824a419ca61cce693b5939aadba9c", + ".git/objects/ae/441e347eb2eb3c4eff286cc643c2faf36bb5a2", + ".git/objects/ae/58708a5bc335a2f257c4183ef8c96d2a7816da", + ".git/objects/ae/69dcb678c9e0dccd771cee659748fdaf01cd8c", + ".git/objects/ae/7cb79ff75cec5dce617b2db64f03984dcedf27", + ".git/objects/ae/7fb85d5d24f7a46781cee0bf4000307ecaf107", + ".git/objects/ae/a97d2231649943412483820105b51768e8249b", + ".git/objects/ae/ab260af4c6aaab7d370358328b7c4c94266aa8", + ".git/objects/ae/b4736649091406b67d0be25e81b92eef1be4b8", + ".git/objects/ae/b8f6acc0f55733118d9c21ac6324cec07552a8", + ".git/objects/ae/bb63bbcba68bed37d0662b3774cd6a742ce73d", + ".git/objects/ae/bd523f04f0775676d116668139bfb731e4499f", + ".git/objects/ae/c99e84a30101d2523bdbbb321d185f889b98c7", + ".git/objects/ae/d58682612c56a3a4c914d63be4faf295229942", + ".git/objects/ae/d9badf183fc6ce0029599a5178a1ff7793c42a", + ".git/objects/ae/e0ce4b3ccf9bc27a6ffc22ea8fb33d824f627c", + ".git/objects/ae/e2c055124fd93516b0d477327458787f78bcc5", + ".git/objects/ae/e9a0b404f23d4e0ccd4166bdfac5e9979008b7", + ".git/objects/ae/ebccac5f8fcc7e861a0f3073148911b0380f91", + ".git/objects/ae/f1825fb913868bcaf80c93e508288cbb24ed1b", + ".git/objects/ae/fe8ce0773b8e7a69c6e482fdb6291316d40d5d", + ".git/objects/af/19cb91a0d259cd761c856977669954513476f5", + ".git/objects/af/1c51c89155fe7e6bf382e3755ab706fed53abe", + ".git/objects/af/1cc9349ea11ca190567bae15badc6e42674e62", + ".git/objects/af/260bc315378be475efd71dd61b5ee87432c656", + ".git/objects/af/27f66d4ed29e5bcbbf850db877bb829d3e3c2f", + ".git/objects/af/30f65054b2e86ca45505534fe79476b5e0cf8f", + ".git/objects/af/334e2c93cb318cb06c9529f1763cd4f7eb1c5a", + ".git/objects/af/56d421f642ffdce90c349dad1565dd693038a2", + ".git/objects/af/5749840a6fea5a1cefa1a82e94830e4f4fcb7b", + ".git/objects/af/63577b6998f6fc1efa77933f756db9f4650960", + ".git/objects/af/67732122ec386b863671b5cb92e0bb695cfb36", + ".git/objects/af/6e25bab06ee930ed9d743c6e272aff94566517", + ".git/objects/af/88395db13cee7238057fb29e0ba3e4f3e1db5d", + ".git/objects/af/8c34dac651d6d26eb72e18af497157edba2c0e", + ".git/objects/af/8d65a30d7d8200e3c6190d7689a12e03a98639", + ".git/objects/af/8e5668b46193d453d6895f878e786214c13ce6", + ".git/objects/af/90c5d17058af24bc5dd4f17b0eeb1ab9839670", + ".git/objects/af/9238c3c9ac70358cf68144298d6a7a61aeeaed", + ".git/objects/af/a4b27726dcb7ae9af8876136c6a06631ded5f0", + ".git/objects/af/ab67e13c7881e05300e7fdcffdff8ca868d701", + ".git/objects/af/b0327197e363983c2d2fc44eb24a59a0e71643", + ".git/objects/af/b84ffd6ed14fc514a4fd5dcef74ea2d07b9fdb", + ".git/objects/af/bb4d25f16cf95e41ba205629bfb87385d2638c", + ".git/objects/af/d528166e1d992c70e4cf98b21f17abffe08aa0", + ".git/objects/af/d8568e1939e6a835ab9ca378023f10c0fba8f9", + ".git/objects/af/e3b4450d71beea96684cb8287d631a8027b530", + ".git/objects/af/e84eb344a883a5ea4030c8a192342f95921229", + ".git/objects/af/f59c0e83ca97b5d0bedb34f0d0f5558e677607", + ".git/objects/b0/0d8092f8930a04bdfc24851046436ccc08b916", + ".git/objects/b0/3658dc9fc6d3bfc887b079ac4157e5d1db3b06", + ".git/objects/b0/5371bb72b02b2f035aafa323e4a0795485f9d8", + ".git/objects/b0/702c928d0785ff2f813bd98af79d398ae1578b", + ".git/objects/b0/7501b324d93ea087e6d0a38773bd2352642f87", + ".git/objects/b0/76e274cad6c8ef12ac1076e52894d220cdfc5c", + ".git/objects/b0/8f5b61a3afd64234c41f9f3a8dc2af78713e35", + ".git/objects/b0/90bcf081e96a76ac0ecdbad4da7c7cca561290", + ".git/objects/b0/9a5cc34968a7e9ddbbeda0ccbf8e23e01947ee", + ".git/objects/b0/9cff5cd726b074c0b6042dacf5a7b59511ae5a", + ".git/objects/b0/a11416a17371c54bc0b7e3abefd33986233b12", + ".git/objects/b0/a848d1cadf7e0a59c99e92212629edaa0d1fd9", + ".git/objects/b0/b8a011d119fcc9140f3263ba56c1db1eaa1e77", + ".git/objects/b0/ce73b45d891fcc99da9039c2a5d413f5ae2334", + ".git/objects/b0/e759f72762fa9b3bf6dc7a88dbd1387f7aa745", + ".git/objects/b0/f981d1992004fc9cb822aecc19f6d9870a8d90", + ".git/objects/b0/ff6f0c6910255a74d45f2068bc31503cea3fb0", + ".git/objects/b1/06a22c73d0660f8609842d9b9cbd0fa5c0668a", + ".git/objects/b1/06b84d5f034186513696a830173a2d70c627a7", + ".git/objects/b1/1677ec0f97c304cbf9cc42b3574478a2b2b9f0", + ".git/objects/b1/17a4e8ff2365227d4a9ff5480fd02431527669", + ".git/objects/b1/17a7f9712c9bfbf1a47c1dbbf568d1e2c4200e", + ".git/objects/b1/2a227e5b019fcbe14b46af7014176f6d713785", + ".git/objects/b1/2aa2e0a95593ee2e7048020aaa4f6ecb5d77bf", + ".git/objects/b1/2ccad66b07ac17906389ac02dfc760de0a5d68", + ".git/objects/b1/2d7532a5e7f4601b4281900a5e65bb66adbbd1", + ".git/objects/b1/3ce3f7e32be35c6467dcc5f9207974a5641c78", + ".git/objects/b1/56800703683445823c74891a7afd880754258b", + ".git/objects/b1/63a78736b7b4026171ad5796b535e544b1f21f", + ".git/objects/b1/71e4f00f6e3fe01b0aee0aae33760846d65f9c", + ".git/objects/b1/76563d6867b52ea1ce210fd52d121e50bf63ae", + ".git/objects/b1/818330fa22da28ec6b6eeb7698d7c3a631b233", + ".git/objects/b1/87c47cf018637bd23676e436ed5d92a47bd4d4", + ".git/objects/b1/9328705d1ba08a75144a58607b52cc3fd46bd0", + ".git/objects/b1/97cdb7b071c113b715f28b26d319d21914649a", + ".git/objects/b1/9824256585c251182f6c7e439fa297fd257ecc", + ".git/objects/b1/b3deb347edc9ee702efc995694d9e296bb54db", + ".git/objects/b1/b64c6db68a6a13f8dc41b61a223b5c702e45e5", + ".git/objects/b1/b9bdcdcf7907aadb817fb3b071b7f2bfb27aac", + ".git/objects/b1/c021446bc643d0c7cf272d02237dda778f91ae", + ".git/objects/b1/c5d0f30191d5b4f1c570f35163dd9bb2ebaf56", + ".git/objects/b1/c9fec3b80cee7d150ac54cc42ab198f30c2340", + ".git/objects/b2/0423401b1c8d74f76becba9fac3656deb23ae5", + ".git/objects/b2/044dad2ccc3825cf407d3c6004cb5ce0261ace", + ".git/objects/b2/22b291dae3b1abdc94069dece4eca8166920c0", + ".git/objects/b2/369466f823ea0d5e24f8027c2ff2160bedb23f", + ".git/objects/b2/3f5a02cd4c6302cf3d75503a942e3bc9ccbe22", + ".git/objects/b2/4a280c299762f45c485229523200d98751bcea", + ".git/objects/b2/5011c5b5a3d14d9e06909e286c48fad36f90f3", + ".git/objects/b2/55496233e6cb6f71d77684cddcc676cc376e5c", + ".git/objects/b2/56d982c7f2d965b842688db1d52e6fbdff3553", + ".git/objects/b2/72d72b913d7381cda1e0c2200aaece6291c72e", + ".git/objects/b2/745b9d0681cfb72025b3374468fcafc51d20a3", + ".git/objects/b2/831a813febdc0805144d119cff852c2889ed78", + ".git/objects/b2/851dde4af5c1314ab9bf9b641ed2c830adb0db", + ".git/objects/b2/99f8aabf9a1129f9b5be345df1aeea80aea648", + ".git/objects/b2/b1b562bbf3a48bf00e6736cda98c30539eb228", + ".git/objects/b2/b421bd3ab73e5a90856770000301368354b446", + ".git/objects/b2/bc005ed52d04e933759c29f94795419886e2fa", + ".git/objects/b2/bcb0665efec51d10f2ba132bfbca42cc7826d0", + ".git/objects/b2/bea30f6f3721fb7a9232a56b38b0d43488f720", + ".git/objects/b2/c05f9ccf125f458b8678aa95d4f015121ffd3b", + ".git/objects/b2/f9e07c374d1bc3d1b87089b87a60758f0cf272", + ".git/objects/b3/0c691bf23a285578f4adc96a7b60906f8f6f2c", + ".git/objects/b3/10f31accb988cb38b4e4888a817e204d9d52c7", + ".git/objects/b3/2b3f256343f15b75efc2bb17b3a8582426d914", + ".git/objects/b3/2fcc4f1db03622c63a0dc7f7df7954f8e84adf", + ".git/objects/b3/3177ecab9ca3e394ddca622c5c1717256828e4", + ".git/objects/b3/31cfed6057e3a72f911495cb8cb3e248defcec", + ".git/objects/b3/3e006188d9cbedd300dcfdc31ca5eb9436e617", + ".git/objects/b3/4ef03605176f82ef895c2a1374442f040d83c5", + ".git/objects/b3/53420c7c6e73d5e77b483082bc9f7857535b66", + ".git/objects/b3/55792d189669e6642b5b9d7bd65795cffc79b0", + ".git/objects/b3/58e1f5a3b0ebe9a0cfc5e7eddfabf33d165e0c", + ".git/objects/b3/5cf99acedb608ea02d676f97d02faed8d0ad90", + ".git/objects/b3/632572b575dfc591a9fa2f2c8a43601005e891", + ".git/objects/b3/6eba3284367e9549d55eb3fd6361e65278e93f", + ".git/objects/b3/7bdc076f4ecbdef8e6da9678df4e47ca559578", + ".git/objects/b3/8624d89e69a1fde6204d2639a85fd75bc8daaa", + ".git/objects/b3/bec834e6cb3063387c3be20dc975e81eb9f4ac", + ".git/objects/b3/bfbb0bf89c61507a51589ba45b83ac52d0bba8", + ".git/objects/b3/bfe731f3c88b1fb52c7410f1bc7ee4b65b7248", + ".git/objects/b3/ddeba4ad8fcd01afe02596d6649cf8e2d05b3c", + ".git/objects/b3/e679730aa2b49e7b19bdb361a6ef4d432c1c67", + ".git/objects/b3/e788e788bd91206270f351b2d045b5e5f8bcfd", + ".git/objects/b3/f674969b5682c2a3338d90812f4752441e03d9", + ".git/objects/b3/f6b5d201c10c3783012c4e700a9fd5e84c4d44", + ".git/objects/b4/08d2c61c52f001617d17ea91b17ce5ec093862", + ".git/objects/b4/0d740a449520e116185fefb7024dabf0b56c37", + ".git/objects/b4/1c219b007e9d4d8cb275b3d981da42aa7fd1a9", + ".git/objects/b4/2218c37710a9e5537324e72849c9f149b18ecf", + ".git/objects/b4/299cbfbcc7e123a60713c918c85bbf1fc9481c", + ".git/objects/b4/380038e7181bf05306648534e0d16338efc401", + ".git/objects/b4/3d1342e23de6f09e40679fb6ee34c43dec0e26", + ".git/objects/b4/3f88e065cd0122f7a0f83388b42ae8f56a2d27", + ".git/objects/b4/4701b86f3986416ad19a51f2b7c66bb4cdfd56", + ".git/objects/b4/4a9d8ae6f9a0101c58d029182c93f997c15b67", + ".git/objects/b4/501a470fc26400f566144851b42997bf25ff38", + ".git/objects/b4/5b3e711aa7d4ab78c6d0edb752b01eed97104c", + ".git/objects/b4/6cc76c427a77b15a9434534d0de907f734c392", + ".git/objects/b4/6f1ed5d9a5d00957d286c5571141ba017b824c", + ".git/objects/b4/7769c4b57da1b24a1999cbc1cf79abfb855288", + ".git/objects/b4/7d01c4f4ba1bf8b3446e4961862915075fea3a", + ".git/objects/b4/89f028cb9aeedb9dafb5f34f7d76d8d81127d7", + ".git/objects/b4/99d8d5dda1e3b367e257a47051c08097c2a3f9", + ".git/objects/b4/b837c146ab290a49ba12d8854c76b44681e4c9", + ".git/objects/b4/b898095e3a8f748eb01a0835e148b7548b4ae5", + ".git/objects/b4/d2668c68367e169d0c36e47444701ce70be5d9", + ".git/objects/b4/d284053039134ef64ca247508761f4ba219c74", + ".git/objects/b4/d4c990f0f5a0e8d75e6c194ef4de84ecd3ed2e", + ".git/objects/b4/e49c29fffe92f54573930abfb906b203549c7f", + ".git/objects/b5/001108857a6620d75318ce7a8252900c04c574", + ".git/objects/b5/04f70481fdcf123883b60a144563dbd3e5927e", + ".git/objects/b5/2978d4713e19dc31b49683835ec0ef90153a68", + ".git/objects/b5/2aa9a6eaae14fc13e0969dc83ac16c3a7b35fd", + ".git/objects/b5/2f990cc6e530e8701b2ba479009062997532b6", + ".git/objects/b5/48b05c924f310e15e7500a545f7cb0fd0a36b7", + ".git/objects/b5/4a98db95969367cdee2733625ebdcfd8f4f49f", + ".git/objects/b5/4cdcf2d1a1bb128bb7c918f90878ca47a903d5", + ".git/objects/b5/4d7e3e764b43903ebb81e11cb284a4aa688c7e", + ".git/objects/b5/5be2c3dc2bb4cb5c467d2aa4144bf00a42d3d7", + ".git/objects/b5/65ed7a7ffb9d3af9111128902dc7101f4def05", + ".git/objects/b5/69690414000606efb3059bbcd6a2db84776aa7", + ".git/objects/b5/6a040277080af01b41c0a4b9da39fa1973296c", + ".git/objects/b5/6b4c8fa7346a9adb8199aaa52f21415ce7738a", + ".git/objects/b5/7781ff29d8d84f15c64318a2aca9b9f3143560", + ".git/objects/b5/858061c5d987673c77faeb7000f84d3b666498", + ".git/objects/b5/85905be9c961495df3a8926804f9e28ddef2e6", + ".git/objects/b5/8e145e0c8e2020c9f914beefaa9f6a7db60bf5", + ".git/objects/b5/8eca491d0e03feb9514d8bc785addbd0c9ee64", + ".git/objects/b5/90fe5c03e1f79d8d55014167d57cfc2140bed9", + ".git/objects/b5/99ac7991d142f242add19e6fb92711e8d61647", + ".git/objects/b5/a672f8d3d30fb32d2d551580cb77f0a9761c91", + ".git/objects/b5/abd9bbc1df4852f5bfa6744a917a9b85bb5346", + ".git/objects/b5/b7c535ae04d750dde4dd9f96ca5d2f83be758b", + ".git/objects/b5/c1afb656a29cd7130cf01495a2435a92f6c0cb", + ".git/objects/b5/d4e1f3c61b709ffabf35a70a87a93fc160d41d", + ".git/objects/b5/df10e4ab50c171ac86503d6325c6ee44969a62", + ".git/objects/b5/e1a9e510a07e22de35a303a1a1b0d9f2834aea", + ".git/objects/b5/e2381c8fba4e03a25209bd2d4160728cfe3874", + ".git/objects/b5/ecf604ccd1855f59c3937f61dd4276e18d9454", + ".git/objects/b5/f693d4ab290ec7965d58214cd432bc9de0be07", + ".git/objects/b6/066561f057afd6c90ebaa757e4e54b56ab204f", + ".git/objects/b6/078530f4de92d371e467c76645e67d98a8a941", + ".git/objects/b6/09c5a2587ca4512d11200a37849f8893eda8a4", + ".git/objects/b6/14be04057402934897c2a4287a6db706481790", + ".git/objects/b6/20df306883c9f75e041e5caee135af74ea8bb8", + ".git/objects/b6/4285dfffe5a819d12a99b810f09f5d4051ea54", + ".git/objects/b6/571e05bb8fa814d50e249c9133aa1b4513ad88", + ".git/objects/b6/66bd7077ba1dba2076f234e69282b543925083", + ".git/objects/b6/697c05b84d66e45c154fa7ef1d6214cfa710fa", + ".git/objects/b6/6ee723f395f2fc9d9aba9ee89c5d03a111c1e2", + ".git/objects/b6/7dd0963bf5fb4d4b143ec05f1f058c3789f391", + ".git/objects/b6/89122cf14c93b655816d946be77d9f49df6d3b", + ".git/objects/b6/9437fc959e4ce354c4166edf4874761a7c4160", + ".git/objects/b6/965ed86a58db623008c25162b497cc1f1e5298", + ".git/objects/b6/a328945f9539c53f0008bff8936ed76bacf79e", + ".git/objects/b6/b100763fd056befbb60181c5716cb754c93fa9", + ".git/objects/b6/d6e8c24c176de7b0c04383dc7dd75a77a95e2d", + ".git/objects/b6/df14b0d7f16098b046ff4ecfdac9b496309d01", + ".git/objects/b6/e58e510ddfa258dead644e1b8ce6888e241db5", + ".git/objects/b6/f44ad83e0bb5bd30cff0b4d8fb4a3fd921d277", + ".git/objects/b6/f84f30ec111195e3c210e7f53def1ae660a3de", + ".git/objects/b6/fbb46e2fddb99b79413d70fc435d7eaee1d878", + ".git/objects/b7/0e1ce42d8614156c9227a36172257092743bbf", + ".git/objects/b7/133e53545c34c65e6534db777b31183022d6eb", + ".git/objects/b7/232d7525319a9061ac1da544dc4e6605526764", + ".git/objects/b7/3629ab14ec111a49b3f973c45bec5fa9cbbd4b", + ".git/objects/b7/38ddb5c9b50a6b45bc80d5672e856b502994aa", + ".git/objects/b7/391746ec92d41f18ef27488e633abaacb39776", + ".git/objects/b7/3cd90f1bae609c62910ca32b4a79cd765e2049", + ".git/objects/b7/3ee20d5d7ada99c85fa08f3b00f5b0cc2817da", + ".git/objects/b7/48ad2d2903271d769442badea1c4d587113436", + ".git/objects/b7/4afc5fa6f794ddb3168166c3715db9a157bc9a", + ".git/objects/b7/511f7916c8d89723b566b881728281e88d6024", + ".git/objects/b7/57c082faf4d1c3d94c1b1a343923aa5cce7bff", + ".git/objects/b7/68fc1ba501a95a85380f8da5d145aab7343c81", + ".git/objects/b7/6d824993d62a8c5741feaf5e471874d5609808", + ".git/objects/b7/823f385efc3836805aca46f1b444fc44ac0b91", + ".git/objects/b7/856361b232c10210509d75ff3da0787dea9599", + ".git/objects/b7/8755d1d0deb32167bf88c64f14774edcbb3a77", + ".git/objects/b7/9d85474d19e844b54a2c9e286a37820c3ca847", + ".git/objects/b7/b385041374d6d232c7d41c7f896823ed730423", + ".git/objects/b7/b5ede41f290ca571a041c2158e0f4b28560f89", + ".git/objects/b7/c57831b413fbca0dd36474a1202c18b73dba22", + ".git/objects/b7/ca4ad915f7a6edcda840028fd02e1f99f9bcd4", + ".git/objects/b7/d312bcc1dc075b572565df53570425014542b1", + ".git/objects/b7/e9e4f46f0bed218af94a3b436efeb3251c7efe", + ".git/objects/b8/2b16462133228d9dd555ae3df6f9cc82effd43", + ".git/objects/b8/2d07440513335691825757b691fc4ca3c74211", + ".git/objects/b8/3ad823ced777808c791f2dc70515fce5b8d864", + ".git/objects/b8/3da0c25795f78aab0390a4f3223c8d4b085ced", + ".git/objects/b8/41384ccb72bad7a3753c7af73a1accdc5c719b", + ".git/objects/b8/41f043a843ffdcfbc21dca9dac4e195dd1e756", + ".git/objects/b8/48b16175f970c4c5d55e86d6ac795139fd5af5", + ".git/objects/b8/5960de41b2a777f234e159b1c420f68609bfc2", + ".git/objects/b8/5c5f329eaf90a19703a4216f138bf016f22b2f", + ".git/objects/b8/71a3ab0de8919cec59a112f2e49365a5cff58c", + ".git/objects/b8/85db0c24a40d6e5c55b692853a88446fd46c32", + ".git/objects/b8/8c1baa8b182691e14c00bcc27b64dd46bf88fe", + ".git/objects/b8/95ae326c5e258f09a1999a9413b6a3716c8d4d", + ".git/objects/b8/a9006afb043e0f46845b0af5717fba06c8404a", + ".git/objects/b8/a9c1749076fd2ea2c4291d77674bc89e3d3fdb", + ".git/objects/b8/aee66247782bb4f5652665a09aa8434d1b9207", + ".git/objects/b8/c08585aa8b5f158e781d882985aa81ad2a0bf3", + ".git/objects/b8/c9992ca06c8e82cce25113a0fd34dd85c60cd2", + ".git/objects/b8/cf2ed58feca4b5362b940ea24029e1090934d6", + ".git/objects/b8/e23f34d925ada15c27197ac63604b90f687f42", + ".git/objects/b8/e783b029e12995e209e8b2e645b160c118153e", + ".git/objects/b8/e83fca0eeedb8250a95c9ef2205740539b10fd", + ".git/objects/b8/f0cd786860008840cd5d94262df5110ff72c7d", + ".git/objects/b8/fa6ab42de64633d44e0318d15e2161610b38d2", + ".git/objects/b9/100a947ec1938566e1c7f8bddef1c3f026864c", + ".git/objects/b9/168493d5947aa86c8f653f58d8c390964efb85", + ".git/objects/b9/1e6a94780fbe39675667163f32d07db9a74b9e", + ".git/objects/b9/2dcea5a761bcb5d48835122490d430909d6e4b", + ".git/objects/b9/31c06abf26ef25c1aa7ece93740fc704c6057d", + ".git/objects/b9/32224778ed8a1e0a73c2ae91866e0d8303216f", + ".git/objects/b9/49aef3c4206f016b4c64d51b9201960b005341", + ".git/objects/b9/5b02be9653a9755a47ffd8262673f39b1eb42b", + ".git/objects/b9/5bef33208c0c441f31c955d8f50b3d6e0ef876", + ".git/objects/b9/60f2fc84eb6f1b5df8ccc38066c1365ca0b857", + ".git/objects/b9/6dc6977a07d11134af4ce63c26fe9884a5693d", + ".git/objects/b9/76d823bf8b86b7f7cc8c712064977e2ce15d28", + ".git/objects/b9/8b20834096d92baef9d7925186d6097c1e9474", + ".git/objects/b9/8fa694623a83af275801d326d8e1aab193edc9", + ".git/objects/b9/928f0f342ef56368e953bfb91ca15219ec5ac3", + ".git/objects/b9/95df76d11e9922dd4f66b68f499519ddd28721", + ".git/objects/b9/a87884c2ee6f90054c3159460c07f54d645bd1", + ".git/objects/b9/b4437f1222c599d65fc6e74efaefb43f3a75b3", + ".git/objects/b9/bad957fc26c96527f27526f5e0ba0df3346c5a", + ".git/objects/b9/bd7291e143e9fc675454da612c69c176457cf4", + ".git/objects/b9/becf0daf4c0f59de53d18d2df19e55a090f06f", + ".git/objects/b9/c3c20e7a2cb38059fda7c88007d800d62898ac", + ".git/objects/b9/c778123431ac766966e14b8e281fa418afdfbd", + ".git/objects/b9/d611f2eb74f989e9999f40bd29ad62ce2d9130", + ".git/objects/b9/da880a337dcd1337c149062e49cd67d52ad476", + ".git/objects/b9/db48309ed53e450e63d8a8bbcca54d63b70212", + ".git/objects/b9/fd9a91304c93f1567f49e6ab10fa3178929a0e", + ".git/objects/ba/08d827b691e792bf62e1021f3eee130d1a661c", + ".git/objects/ba/0998449e0505de0143254583e6ad3d10ae44d7", + ".git/objects/ba/14c1d1e76e793e8e46c0ee7ffc784739d33640", + ".git/objects/ba/214e719c1fddc2f4bd8aa4574f06cbaea8dec4", + ".git/objects/ba/347255991c8349b4f4c0068e785c3b15934005", + ".git/objects/ba/4996400e4c88824bf6e2233f4ea32adb887945", + ".git/objects/ba/774b59b544a5c852868846ff6e9e46f18f2dee", + ".git/objects/ba/79c74edda64b32c061068da7ec12e4cffadc9b", + ".git/objects/ba/a30c2c629cf512f2ea834ed708d5a8958e81ea", + ".git/objects/ba/a7b311acd60bbb21d35542156665404c03078a", + ".git/objects/ba/a953105e91182fa1e00fc4ea3a4f01a374f369", + ".git/objects/ba/c300c1a3da36acce7c8750a4d8bdcd1c379656", + ".git/objects/ba/c4775fc6c40d691c57d1d3ce88e7927d33bf49", + ".git/objects/ba/c639a39166d95bdf29ed56f8e5ea9044962def", + ".git/objects/ba/c6770100aafa69cbee2e08a4743793e0202ba2", + ".git/objects/ba/dace233a8ebfd3f2cf54cb615bf8d5c51807b1", + ".git/objects/bb/0bc779c0676937d74b18b753d2cdb601d1c450", + ".git/objects/bb/356ddcd48b4ef439e2d263829ea416023c6c5a", + ".git/objects/bb/3b6b6f1126f982101aa7979478e4069933310e", + ".git/objects/bb/3ceeef3b77158fdd9756df08665551e603af6b", + ".git/objects/bb/424bdb105af7b44b42868c81e85e444ed24487", + ".git/objects/bb/46b8cff14aca5661b43bdc74725b79d27e0d0a", + ".git/objects/bb/4830d1217ffdbfbd3187f73c1b3dabba35245a", + ".git/objects/bb/4d32ba02655ef42275cdf34ed78c2f7ea85bf9", + ".git/objects/bb/53c93e62c2ef15e673a78dd95f058590e71513", + ".git/objects/bb/630cbd57a9951a7a627cd1dce2dfe6eb66a4e5", + ".git/objects/bb/6c19cd2a5997407901e61ef6df34c4635f44a9", + ".git/objects/bb/839b0482d9ea085010dbfdffb1d8425cc2b22e", + ".git/objects/bb/862d42763a68a17bd782147a288d0e77ebb74c", + ".git/objects/bb/9abd2f8344e114e1963171ab535fe155678837", + ".git/objects/bb/c1c228f262c8511a3ac38adf3f146540e67060", + ".git/objects/bb/d06d55b2d604d6ff928f69236065ec92b8a9c3", + ".git/objects/bb/ddf8bedea0d62420b27a4e463c70a035ac13c5", + ".git/objects/bb/f83f6e7c48a6685da341753c8914ffe956ef37", + ".git/objects/bb/fea5f1992d9522d2b65b7ae5cda4c82c71c91c", + ".git/objects/bc/0a85b63791c91c4c2c4d7552489ea9e2493a60", + ".git/objects/bc/11898f04858412c47fe351727fa64de5b41c63", + ".git/objects/bc/12f2a66f05411289c7b401da0fcfd94f6bc7ef", + ".git/objects/bc/192206587e29da0bf78218e05393b56bbcaa0b", + ".git/objects/bc/1a2a7d4ec04d1629218475b9bef8ccc69bdc78", + ".git/objects/bc/1af21c48a95916fd0e94ec3668c482da60be83", + ".git/objects/bc/1ce48632611dc68633e4575b86b2114e42247e", + ".git/objects/bc/234dfffba6821ed52ca536b738d28b37e3f30e", + ".git/objects/bc/34090636c89bb894c8d6562546650d4b004255", + ".git/objects/bc/377bf46ad423c9e3b83b29e3c23153a30e1136", + ".git/objects/bc/4cf768fa0b621aea93a2ecd2be93bf07e5d86d", + ".git/objects/bc/4e93e0348ab619572da689c7f36387257f388a", + ".git/objects/bc/4fd2f8cc65bdb739097cdf6f813fb482793343", + ".git/objects/bc/51b14c4d2e919d0dea80f4cc100c3fcadad1ed", + ".git/objects/bc/5d80f14162df2382bdc73fffd8e1b218819d93", + ".git/objects/bc/5f998e8debea94cd67fe86de0bde136464e6cf", + ".git/objects/bc/73d9232b876b7542fd95ba009ca95a1424e37a", + ".git/objects/bc/8668f68c20703a5ab6d0287acbae464e8fb388", + ".git/objects/bc/8e2f65cb5049a41bf432cc21d2fda5aa5ee2b7", + ".git/objects/bc/a84ab49375ffe4b210aea213038f82c95d1f91", + ".git/objects/bc/a86688f6cd9baaee3b34185e3a7437f7eb496b", + ".git/objects/bc/a944b7ee46ea4ac27200bf2b6464e6fcaefa62", + ".git/objects/bc/ab6d98aa42c1ddc88eb6bce5f6681993929efb", + ".git/objects/bc/b93910b7705ae16506a6d20006d69871dad580", + ".git/objects/bc/bd41b020276393203054d5edaaacd5c129f22b", + ".git/objects/bc/c3d98ccb21fad7b5d054cc820618b8d864c087", + ".git/objects/bc/cef1091c4efc6d125276c03a2834c2c76add21", + ".git/objects/bc/e9ed97e6e96a8473f77179fdb073b5f9ca9c56", + ".git/objects/bc/f47dbfcb90ea7316d71975aaa971068a5ef612", + ".git/objects/bc/fa26ce902935da6d3145cf709eff044ca6c729", + ".git/objects/bc/fd0fda74d52c59af3fbb91a5ea41d0879c4833", + ".git/objects/bc/ffc3af9cf24e088eaebc439e1d0c3c685ee3f8", + ".git/objects/bd/14ca4f34bc7454f0493bb9a2baefe87b484801", + ".git/objects/bd/22bcddaa4e8412ae1221f9b79ca9f91566499b", + ".git/objects/bd/242944ce6eb750e87eae7f9c8a26add6cb52cf", + ".git/objects/bd/2cbe8779144274c7b6a7a482b5f7eea5b4dd64", + ".git/objects/bd/34fb5ab2302b1475d264328ce01ab5614863f9", + ".git/objects/bd/39be8eb9067f295a85d143a4ac909a057b44ee", + ".git/objects/bd/3c48c5d31818544fb733e3ddb0e9b3b75a9cc9", + ".git/objects/bd/54f169731732e45f984c2d68984cd26dfa2cbc", + ".git/objects/bd/7074ad3d3e36e3bfa942b5f88751946e6bb495", + ".git/objects/bd/792a9dc80e4ce2e249ee47ecf51e18c0c05673", + ".git/objects/bd/793f8a6ac84d6a8c3a1ca4e4caf8cc4eaadb28", + ".git/objects/bd/8d5ceb207219259abb758034797bcc1eae7e75", + ".git/objects/bd/a336f20bcf2fb2cdfcf76490b5e2a88096f0f4", + ".git/objects/bd/ad9214e69d8b7cabfc1e682793907e75ac8312", + ".git/objects/bd/b80fd432c541eb988951a770667b224a53787c", + ".git/objects/bd/c89029dca8a464429c7feb4833c1c427e289d4", + ".git/objects/bd/db242309fa895b45a6969c0c753cbf6414a6fc", + ".git/objects/be/06a765d6d45f25a5bf7330b716ecff991ae007", + ".git/objects/be/0d04bdd7ea5f6eb37cebd4955d06039e83587b", + ".git/objects/be/0ee8d36095b99fca01298ece83ca60befcd094", + ".git/objects/be/1f734cab53d058d411b238f67d7112e5912341", + ".git/objects/be/3505aba37d84cfc189209d688402c91485b9ab", + ".git/objects/be/41e30fa777e8f1a622820c62edee98136ece2b", + ".git/objects/be/42e74377545ac868ef9fcaca0b11aaaba155ed", + ".git/objects/be/4e629e0a1ceb1147c2aff23695a5e644813ddc", + ".git/objects/be/7469076d59f8b7774041f8549b121e0d1d157d", + ".git/objects/be/828bb168cef3814fdf88706ac6aebcc98e6475", + ".git/objects/be/863e33d27c3278c6baa1c316fa0245a4cbcf84", + ".git/objects/be/953cf1cc2affbe0c96c76814837b6d2dbeb01a", + ".git/objects/be/9d7f2ecf3621406588bd46125d66873e5f4c04", + ".git/objects/be/c2109f0c40d5585b63f12a261c2fd454bcd63f", + ".git/objects/be/d521ab1716b748f14f384cc3aa1264d541a6b6", + ".git/objects/be/d9cc2979ddfc1b820e31165a7e19c550e47b8a", + ".git/objects/be/f6f4e8e785f0c9d60af5d8440f40712d6c4b1e", + ".git/objects/bf/0c7990c37b3e1f7662297a390c01a292db11d2", + ".git/objects/bf/0e0d048083014032af66eef5fc545969d3b4ea", + ".git/objects/bf/1dc267726c9a47dd885d647b90f5a7a2a1078a", + ".git/objects/bf/25eb6f191ffd7364f89bc2fa4a7214147257d2", + ".git/objects/bf/32d02f6a813a0a77b5baae0dd7f909c1676f3d", + ".git/objects/bf/55bde3f9c0211d9a90b8db00833e25bc66e683", + ".git/objects/bf/58626fc8a6e677a92c3c8b4f4ba8d745c220bb", + ".git/objects/bf/63602a41af6703b58adafac7bd48dac477dbab", + ".git/objects/bf/7183d8e1ed55fabfa11144877e207aa8e2e872", + ".git/objects/bf/7d5991e68806972700711b5963ffedc8c6784b", + ".git/objects/bf/8514804ab5371fe0099fa5d22f945c0161f207", + ".git/objects/bf/93329195c55bd8f64a8dc8ed89c65f3cca2139", + ".git/objects/bf/97f5052c5bf1e0f9b781d745e317b3de62c179", + ".git/objects/bf/a416ddaeadda8f9ae1286025f7ca5d3bb179af", + ".git/objects/bf/b0b084fdd2473023a6f2f6c7aa527a88d825e2", + ".git/objects/bf/b128dc0d7560626f87ad92ed5a312431f4c5c2", + ".git/objects/bf/b12e11f46853883e2f1b3f4e49d990f88e0e22", + ".git/objects/bf/b24b533c5097174afe93ff5bd6b93e45d8422e", + ".git/objects/bf/c8f83aca0527d3e8a22f1ae4568920298b9bd2", + ".git/objects/bf/cbd8360a99edfa1ef35c63d1c0d090bdf29431", + ".git/objects/bf/d088f82533b48a6aae3af249acf4a91bfe85b1", + ".git/objects/bf/d930edb292962f6224e3fdada6e84429aea8fe", + ".git/objects/bf/ea64c7375defa31681b2ee624c30188b344368", + ".git/objects/bf/f14cebf1a8739164699d3920b6be7221cd5a2a", + ".git/objects/bf/f326ff5a881d6c686c975e4e2d7c987b417662", + ".git/objects/c0/0ef11b433c6aee101181e6c7baebeb81bf9d97", + ".git/objects/c0/1a60509b81fd3cd4cc00520849fbab5dc19818", + ".git/objects/c0/1ce6145eeae73cbf060886abb8e3e331b0cbe8", + ".git/objects/c0/234c875f18cef516af5ed5f59d2f21e777bbf8", + ".git/objects/c0/27471297c27fda105fa0276220b3611fc23ab3", + ".git/objects/c0/344a5f3522f30d15cf0531071b360ff4fce366", + ".git/objects/c0/374b90a7c825254008b00a23fac15b448dfd5c", + ".git/objects/c0/4dafa5635fa3d09a080d59ca06ba991af1c239", + ".git/objects/c0/57541579528a07e7fa90c10a7346e59bbaf9fd", + ".git/objects/c0/58b60b670e96de60b194dabc7ccb4c192d718b", + ".git/objects/c0/58c028b7a3b3f2b568a721734dea721723cd6d", + ".git/objects/c0/5db8c721e59921d92079b6255376e3becfc369", + ".git/objects/c0/643c660fb811179dfbcd742004c87b1a92a228", + ".git/objects/c0/6de4bc915197c91c0d52e21ad2d9fb4d5bd079", + ".git/objects/c0/70e02a151bf9ab0ee3aadbc9c2275f5ca694c9", + ".git/objects/c0/7293673aaae656c4542524c86eac2a8ca9b640", + ".git/objects/c0/79821face982f706515d6bb4a473676f8a0aca", + ".git/objects/c0/868d83dc76b9fe894a6cdec32240ad93f01d4d", + ".git/objects/c0/8974ca3516f4d01d832e71eaac50a32bc03783", + ".git/objects/c0/a1dffd07429bf3c5fd6dfb46636a6017d744eb", + ".git/objects/c0/bf3f2338622118344072417c9812b571beab24", + ".git/objects/c0/bff052a091022778295706c2d01666839c465e", + ".git/objects/c0/d1eab38c7f0997b718fc17513fd01dc750ed00", + ".git/objects/c0/d2a53e39ed6fa07e014de427e265c18180d706", + ".git/objects/c0/db4ccde3844a9066be1eefdc9fa76b4c4fbb61", + ".git/objects/c0/e0c7e8c91d0c66f02ed4d8b42a54de62cfea9a", + ".git/objects/c0/e44be12cc66d9b43b236d077c40ff950f49195", + ".git/objects/c0/e4952b70d514ff60ef914c7ed0a9e92d491d94", + ".git/objects/c0/f01c85ff26eabc1a33adfa32dabd849914b00f", + ".git/objects/c1/01b19dfa2d9a076de5b3b7f180c9002f5e3643", + ".git/objects/c1/0487b6720bf8ebc7e3e3588a939634a16fae94", + ".git/objects/c1/1648f42523fbdb56872f74dfc262e3d400be93", + ".git/objects/c1/2ae0fa72c264a2cbedf676f2a6073da8d36d39", + ".git/objects/c1/2fb62b9d6475fc85be3790fff818806c03a131", + ".git/objects/c1/34c91635adcabd52ac66e9ce78ac856aebbae3", + ".git/objects/c1/52aa19d17a3151e2d67f8dbc19a569f8628474", + ".git/objects/c1/6ae321a8afb6fb5d7a27a271a9d0a340a6b3a1", + ".git/objects/c1/6af39c71c0c32b19d905e8eb4b4a3f4a623d25", + ".git/objects/c1/6bdfbab46d2937dd49460aaf95dec2048057d5", + ".git/objects/c1/777d6ef8d81dec1026ebe673567135a5f566e5", + ".git/objects/c1/79dd57ffc83c10b5aa4c128eb5633ae6d0c6d3", + ".git/objects/c1/7bac49aa1e5fecb0631ac74d1361f603c2827f", + ".git/objects/c1/7bd92324f210ff185facc60dd99b2b84988755", + ".git/objects/c1/80a6521cf64dc48737539cf8e12df13d4f30b8", + ".git/objects/c1/8310d3c9edd4935e389192509dc8ca5c94b26b", + ".git/objects/c1/8f47a0bcbe4f040e366a8f7b8c380c2b6e5344", + ".git/objects/c1/91ea6694f61ba7bda2ef2479af416f96d1d8d9", + ".git/objects/c1/9c088032dcbb31dfb2f3ce92183ac9e48269ff", + ".git/objects/c1/9f9a48e46dec577a3e9a1035d4ebeee9f50559", + ".git/objects/c1/a4c96b06e2ee00855a4eed95ead03659ce7397", + ".git/objects/c1/b39cba396c4399c5dbfb22a4eda1108271e813", + ".git/objects/c1/bc60dac59234a7b06dc9f411d2ad964c394ded", + ".git/objects/c1/c492a04ceeb5f5f8d1f50637924ff93aa52d0c", + ".git/objects/c1/c7c86a8a615822c8969ecf84c910a67b40813f", + ".git/objects/c1/cc84fd99f06d265549d3fbc3f1c7fc943f4f64", + ".git/objects/c1/d507b6605b17fcfd656f1d9f67bd66d621b5e7", + ".git/objects/c1/db0bffe5bdfb46f47222ad07b165365f744e4f", + ".git/objects/c1/e2798886179d9cbf8a6f35a19ed9a55558ca77", + ".git/objects/c1/e6557114b447ce6a1cd1309225d249b1a286b5", + ".git/objects/c2/0959f77c538511e7a154a4955d337758c491ee", + ".git/objects/c2/345f33c3e92509fba4b38fca98e1b2daafb2bf", + ".git/objects/c2/4fca830adde5825894b28646213490c4919d18", + ".git/objects/c2/523694b742e99ceb18a0c752d50cdfaf373f2a", + ".git/objects/c2/55b47972a733a0eb189aeaa2b5cdfe20039770", + ".git/objects/c2/8da4872ef72bf67fe059d792aec1ff49cc91e4", + ".git/objects/c2/aea9afb009af9cb58c831b40bc91332e30878e", + ".git/objects/c2/b2c672e2516942790465d5fba2b0640f4c8840", + ".git/objects/c2/b3981bdb13675a646ee2dae898a3a8807e9e6a", + ".git/objects/c2/b6698e9d1ec630a7faa77b8064c985b065a95e", + ".git/objects/c2/b6e552cc2359bcefaafaaadffea246de7c4042", + ".git/objects/c2/d12b6d9e3497b3fe5f7cbea4051580e74cebb4", + ".git/objects/c2/d25fc003a2caee0762cf1e4660bf2651f258d1", + ".git/objects/c2/f3aa31b95f39aeca3fc292bb340928372e1f48", + ".git/objects/c2/f652509e8d4c30b515a45a948d15d1378a6ce2", + ".git/objects/c2/f79ff4308170d0101b7cd7de187654b8aad633", + ".git/objects/c2/fe1feaf2c4935c477d8c5285db4dde7fa7bad7", + ".git/objects/c2/ff61ac2ccb77ae9b4b0e40c2251d4d724b255e", + ".git/objects/c3/1e7345a1fa6294aa0a08595376644c1ae09f16", + ".git/objects/c3/36cca093757d861364c5c3bfd5c7b5604b7013", + ".git/objects/c3/476498b75204c69d3a98ea75513e1b51fab406", + ".git/objects/c3/4de329cdef6244b2c3673cc3f6be77530bf030", + ".git/objects/c3/53682641005ec12da0bfdc3189b7d6fe3ea0c5", + ".git/objects/c3/6108bedc4ee75827c7a37313a18ba426510593", + ".git/objects/c3/696d6379d87800f18f02a3c07158b4f6e328ca", + ".git/objects/c3/6d086db3068931adee2d39b057c63369d9f0b9", + ".git/objects/c3/72dfc5915bab6237403332b19220ed9b07d8b5", + ".git/objects/c3/834e0a9b291925f5ebc1a172956b758240c2d0", + ".git/objects/c3/96164537462e573bafc22258f405f364700bda", + ".git/objects/c3/a1c1a46240f83281934ae587945224ef3d4c2f", + ".git/objects/c3/a59b1e4443491dd415cbe2a9bc97615eacfa77", + ".git/objects/c3/bd6befc708bd69f34e9aad78b78afb37276926", + ".git/objects/c3/c35359efcd8bb3b6c20ca9e1eb73281a33cac4", + ".git/objects/c3/cdf7bc2943a1770486af8354f234daff51769f", + ".git/objects/c3/d775cab306ff0940a6e3ca69e3608a377ed793", + ".git/objects/c3/dec1ac59fcd57cf68693e8257f00feb3595df3", + ".git/objects/c3/e2ddf41b0d52dbab4750bf11ba2143e333cc4a", + ".git/objects/c3/f74f091162e91cb839bde0ec62a1f7bef984cf", + ".git/objects/c4/0cc761103b4ad21c1760784070f27225ed02b8", + ".git/objects/c4/0d948ba58e70719c2e5353dc318e613d03ec36", + ".git/objects/c4/1530c4eab73b3cf4e8bfe957ccd564a5a6b65f", + ".git/objects/c4/2015bfc647a5fc8e5af7e2540b2fc6343d6859", + ".git/objects/c4/26f64a2db4a3b3c78b97d42c4aeacc7d9d5da1", + ".git/objects/c4/2ad21c0ecc39775255af95faf7fa97381d49f7", + ".git/objects/c4/51cb44d68384fbbd57c5613129d08d846bb41e", + ".git/objects/c4/789a04647cf4dc7f4c28407a0e2e7daefb26f0", + ".git/objects/c4/7d1ebcd6c8534976023845ae7f332a6ab202d0", + ".git/objects/c4/8efd00b873c526ada31353f0063faf87958d2c", + ".git/objects/c4/92f4a07e09049ea73dadcf674ba963904b2775", + ".git/objects/c4/9e1bae05f6d0b18701f4803c6a9cf646e88e74", + ".git/objects/c4/a45e316755d083d965d6c151f56619467542da", + ".git/objects/c4/bf0ce2424b2a6a571924330f5010de2b7092dc", + ".git/objects/c4/c6e7a499f66d575d53b4eca02e33a40a50a765", + ".git/objects/c4/ca3d4d1ce6f30a07ba07b4237441f4153d40bc", + ".git/objects/c4/cba983cf61644ffb7d66171c828884f60d5423", + ".git/objects/c4/d6be7dec326056971c7899169b038eaee0f8ef", + ".git/objects/c4/d740a2931b7ee8e1de37be6491b26c572b991b", + ".git/objects/c4/e6535ce50f214b095f84a98f0def4d2bdceb14", + ".git/objects/c4/e700d1221ab3962cb1c316c95ce777c4ab73b1", + ".git/objects/c4/f38ac2c6fe1f88ee2365b2d263076756863034", + ".git/objects/c4/f8d9dd56a684965caf35a545fc3757504f22f8", + ".git/objects/c5/01cc7134fa8e3057bfee7d4674d590abccffe7", + ".git/objects/c5/157719e40198974611f468b8f63b95e5afc234", + ".git/objects/c5/192f24c33c05daa30622265a471ed30cc27f49", + ".git/objects/c5/26e8fe6f00074a5d16b2fedcda294934be6fb0", + ".git/objects/c5/29bdb8e87288504e0deaf185c1e5c0cefe6e9f", + ".git/objects/c5/3364119181c61e1f63962d1c1419d1c7ee410e", + ".git/objects/c5/3a10622145f43f28a0da4c694a82d044e0acd4", + ".git/objects/c5/43e35050d186677005354f6619b9efc61d1b76", + ".git/objects/c5/4f5c3d5b865af75be95134c68c2896dffcad7c", + ".git/objects/c5/71055b13cc210a1ed14db4870100bd5b6874f8", + ".git/objects/c5/8722458bc40a7d9196da94b6cfe1cb34068fda", + ".git/objects/c5/9457784d0930fcf6fed82509382b8b3eb7d664", + ".git/objects/c5/94fbf049846270bcb6a184a0d7e02217187b7f", + ".git/objects/c5/9db4294a1f2257c037ae5b4d248c08c481ba2b", + ".git/objects/c5/a647a9d2c96939886cdbc2f2973c22fa507e47", + ".git/objects/c5/bdb8ca0aead3293bc7289723a1e2968c9b7a5f", + ".git/objects/c5/c740b9b761220c1e401a9bbe206fcb7ba514ab", + ".git/objects/c5/d440ed00cf31a1b86b77690c0be16c5c5bc16d", + ".git/objects/c5/dc53871ef0d1c9f92384e234c500463cd55dff", + ".git/objects/c5/fb0df5f537cd8d3ba73a3414be87fff265c114", + ".git/objects/c6/1aebb84ab961d1f81483f9417c3490ae943893", + ".git/objects/c6/1fd981bf85d9c44549d9f051117e64ff86abfc", + ".git/objects/c6/23056646e0a6170d53429e8384088dc622ee88", + ".git/objects/c6/26b85b69445603bc033b1e5f99a12693fdfee8", + ".git/objects/c6/37bbece69804fec7795e265b9c5bdb7ea68db9", + ".git/objects/c6/45add3875c6dc936cb69d63b40da5c6d46a65d", + ".git/objects/c6/4603c7eb04065de0dd4c712bf7618f79a5bac2", + ".git/objects/c6/53b9fbdfda008d708018521c54f0ec597902d8", + ".git/objects/c6/6166f4d0c1d1377542a2e905813067425a4e9b", + ".git/objects/c6/7a84c9047a85608ac3b2f3b09170dc3d563ea5", + ".git/objects/c6/891bd84e7bca4ac4f12cd07acc3dac2b92e74a", + ".git/objects/c6/9a22daca033ca796a3925af47133e224b90f10", + ".git/objects/c6/9e5cb14cf85fd92aff3afbb2ace4f6b7e7b8be", + ".git/objects/c6/a7b57e80411617ac2c3f1f67d4661e3b72ea2d", + ".git/objects/c6/b01e81f0bfb5d66605955072625e4649be8f4f", + ".git/objects/c6/c1af3e2cf0b1c2adce8d927e9f2acb517f5f74", + ".git/objects/c6/c9bc4704fe7db92214fbca23e1777ce639107a", + ".git/objects/c6/cb0bd71ae34a83a15a933fa7ee077fa461d456", + ".git/objects/c6/d0bdb985108e98d64de23ed37ff66237327794", + ".git/objects/c6/d1ee10f93092ca8e0732c74d2ab93fe50b636f", + ".git/objects/c6/f7f9bd6651a061b0b6d3c7aa7871712e5fee08", + ".git/objects/c7/0071ed947cfd06577b9498568ab9586cc189aa", + ".git/objects/c7/137f2df256b153e3a356b947856d852688f117", + ".git/objects/c7/1696158c7b1aa05591c9f65758a810e195ecb5", + ".git/objects/c7/2b62ce03a03bff95ce825a1c713a791fa2d0fc", + ".git/objects/c7/3523b92d97d5bba31fa6c13f9ccaacada37a04", + ".git/objects/c7/3caf888ed74d7958e3db4e0be76fb712d3ae6f", + ".git/objects/c7/3cfd1fd227c107e12ce814594606e5782d29ed", + ".git/objects/c7/4e256a0f95837c231db5c3e413bf1e0dc7fce8", + ".git/objects/c7/4ee06c8bc4974cc6eb8ca344fdc79f4858bd3e", + ".git/objects/c7/53006279fca1de1c5e9bd2d3406e4dc07cf3ad", + ".git/objects/c7/5456ceec5cd212f974b2eb88e1dc0fff5bdd87", + ".git/objects/c7/56d984e01f53e55119eac8bcace254d5cbc51a", + ".git/objects/c7/571307dd03e03edeb18a149cf933157ef9d9f4", + ".git/objects/c7/573ef46eb18bd80d1030abd4327e089cdc7cf9", + ".git/objects/c7/6be128e9ce9da034131fc71cdf41af8337676b", + ".git/objects/c7/7e69501ba3f696cae9d8bdcf4085abe6f9d708", + ".git/objects/c7/8b873e0916f097b7cf0167b259b3fdfa1ec971", + ".git/objects/c7/8c7c540291176dd488f6f35e22c23a81d5d683", + ".git/objects/c7/97980b6c7fe90675596e5f3e5a9d8029359881", + ".git/objects/c7/9b85e9726f85d51e8b9494c2a19017cd0dd2e2", + ".git/objects/c7/ad6319da732af51f6a530b9355eeab9634d1ce", + ".git/objects/c7/c373d00f46079da5d62460ed479899680a4f7d", + ".git/objects/c7/c808391c6d95c1568881687a99c283f03b6761", + ".git/objects/c7/c89f4e386e29a8eec611fe342dd2c529b726bd", + ".git/objects/c7/d174d2f1ec1245cf09399405b19c7c2700baa9", + ".git/objects/c7/d80f389beb4890170bfa2634177d93e2dda62b", + ".git/objects/c7/dfae2236b8fd7026a3d947f01ed28baa0006c8", + ".git/objects/c7/e9ee43362cef39bb1bfc7a6126ae4ab531560c", + ".git/objects/c7/ea9c19a70a05e3060ac9013bef844c0665b35b", + ".git/objects/c7/ec90ca5b478326f470ce278992313f3376a38c", + ".git/objects/c7/f9b3b36431eb716f55c6c6e4cfde21de05fb79", + ".git/objects/c7/fda459446938fa66e1605cb43447250248b557", + ".git/objects/c8/0155346e1e534de375d91d2e0baab6a86d6510", + ".git/objects/c8/040fe2436f378d53df46ac1cfe68c38c58d2ae", + ".git/objects/c8/17827cb66091188f3d7dd2bcb826b66a7f035d", + ".git/objects/c8/1e3a20c7949153cec485b8c97a330f98cc0ce8", + ".git/objects/c8/1f429201fe55ec51ef54424d9e7fd9366a85e7", + ".git/objects/c8/572d31ad28e2ae0bdf15c1859a4a0f54c3d64f", + ".git/objects/c8/590b799da1d90356faf4cdf13bf15bc58d0513", + ".git/objects/c8/7166ffdcb00b8c2df15ea6a09e99b5170e7b4b", + ".git/objects/c8/7462012a201bbb91d0ff28d99aacd62bed9310", + ".git/objects/c8/8f40120ed8f0ed0f4a8328a61770ebf2a44316", + ".git/objects/c8/9bfb0163190bbbc3c12d59b87955addcb1a32b", + ".git/objects/c8/a38e85fa4261d6dd0fab610b745888274c54f4", + ".git/objects/c8/ad0ca5359ec89059f5794ab8e168c0dd68fde1", + ".git/objects/c8/ba0269dccdb6cdcea446b748326ce9d06b5c46", + ".git/objects/c8/bd5dbc080534426058f17ad2e92e2e8e499685", + ".git/objects/c8/e5f35ba95c3debc111419fa20f2668e3da10cc", + ".git/objects/c8/f813681665730c858686d5178d75ba6f2566d4", + ".git/objects/c9/027304a47eccfdf4331a1f961b2e88815b0630", + ".git/objects/c9/09698e5019924fa4fdee145da85e0f892a50a1", + ".git/objects/c9/1c8e65ec06f137658bc71c43e4f8b5c5906c55", + ".git/objects/c9/23cd0736491d93f8d9101ea7c751aef14b4952", + ".git/objects/c9/4521519264d0c2f53a5a8aac354e1a8c61f53e", + ".git/objects/c9/47f564d7fae4b4289875bf67ec3788f49db6d0", + ".git/objects/c9/51ff23873192ef3498d182821b85203c6e910a", + ".git/objects/c9/573b9842b7a8e0967c4bc36875816dbd705996", + ".git/objects/c9/67ada0e8f6e8fc2ede7d5ae2feab45e2e6e1a3", + ".git/objects/c9/8bc617edfe362ebfc983db4aff1838a18cd783", + ".git/objects/c9/8eee2f8cde2cc8760d9b33930bba8c682df4b8", + ".git/objects/c9/aab2948b7c3e168949701c570177033a3525b6", + ".git/objects/c9/c68498440dc1230ac309fe61bf8e840c50d14a", + ".git/objects/c9/d62dbb732323988fb7546b22cd5d3668132808", + ".git/objects/c9/d85d44f721e7e22d1fa79feb3a86568eeee704", + ".git/objects/c9/d9258008ea198dbfc785b1a0bb23f67d5e51ba", + ".git/objects/c9/ee788b9fc8b8d7b35222c7c580e632ed13d07e", + ".git/objects/c9/f2fbeb6914ac4d7108e7ca2b5ee5ed92566973", + ".git/objects/c9/f74bf3a6e752322cb356b36fb448dafb7862ad", + ".git/objects/c9/fec040d987c73dc07e4b72b59d7f3577617fa7", + ".git/objects/ca/06d332cec9224be15919cc8c400260989df489", + ".git/objects/ca/07ff06fee4605bc7899aac8b265bab87ea13ea", + ".git/objects/ca/16b9d4cdbefca19a301f5c487ca6b07e05d88b", + ".git/objects/ca/30ca0a77f0ce8c9a24ddfe40df327862ad3d78", + ".git/objects/ca/3b47c88251d4b06e7a9e7182c7134386e4a362", + ".git/objects/ca/475a9e60d3e90b13ee37348cf6cca1b4d5f5c4", + ".git/objects/ca/49d8d5e3a2bf05557658505e32eee3bd818074", + ".git/objects/ca/4d7b8d42bff8aa9f27f42c767bc553ae91988e", + ".git/objects/ca/55dc4b1da95db61fd9d6fe8ef88a134e959df1", + ".git/objects/ca/56352df4e098fb8d406a5bf3d1c7741a439632", + ".git/objects/ca/5682d457a73d3021d3aaf44534645b1584bced", + ".git/objects/ca/624c5f1d38287103a580af1333d888cd1d2a55", + ".git/objects/ca/7877534333d8a6f4410b86cf755933f5541818", + ".git/objects/ca/7cc678914e12f326d4cb39c4dc3ab7e7662020", + ".git/objects/ca/832c5fb55de74c8a47f8c87c7c8cb71354e8be", + ".git/objects/ca/88ff318aed6607f7e1cf576cb323df0b13b47c", + ".git/objects/ca/bc2a88cd590451694cec51cf0906f801ae61b8", + ".git/objects/ca/bda1e1d9081dbd1b74f3e0607ca3ab3876a218", + ".git/objects/ca/c98eda4a21b7231f988a6123b086b1883f8943", + ".git/objects/ca/d22b9dc0da56e6ae14c6d00cc544b6762fa1ae", + ".git/objects/ca/d26fa7b647e55f19d34a121a7ddac71976d7aa", + ".git/objects/ca/eaff1043be43cfd06a06ef4d72f2d9ecddc4eb", + ".git/objects/ca/f9e5fa4ae5f402a0b24b0d32d8adf55ffc14c5", + ".git/objects/cb/02092fdf09ceeca7ba72b8dd627721e6a95521", + ".git/objects/cb/051c2479dde4486926d9d6560ff6dfcf408c4c", + ".git/objects/cb/0d42c8e272755fbb53cb128d05bce532932a17", + ".git/objects/cb/131ec2207720215cc8d256e449aa389f7dde0d", + ".git/objects/cb/2b1382cca9dcd4037e4cf6dc784eea79ca0b49", + ".git/objects/cb/3bbbc17858c25596e9ec482d16ed0e2319ae88", + ".git/objects/cb/3da7a645a090d6f2588840a0dad1331753e1f5", + ".git/objects/cb/54bdfcf47e0297dc1ac97540538602c2290a71", + ".git/objects/cb/98bb01e8c3dbeb0e1a5ad4e4c34334ee48dc40", + ".git/objects/cb/cba3780745fbdc481043356c5a5fe42948e864", + ".git/objects/cb/ce9ea376e7ea76a9141a92756d5e4686a33987", + ".git/objects/cb/e4380f962b6e1286236e445b9151990c73a991", + ".git/objects/cb/ee806504295facb9139c2dd4b26cf7bf606ee1", + ".git/objects/cb/ffc74d963b52846de8cb8338b168d54dd2c0bf", + ".git/objects/cc/00eac387fa4734a750eea2f852b933f6a5db6e", + ".git/objects/cc/1cac788f0499908d711ba3c5ef0f17e81a69a5", + ".git/objects/cc/244361596ae612d304ab94d297784a5ce9ee01", + ".git/objects/cc/28306287e2fcf887f5a2422ecd6fbcab5b7f6c", + ".git/objects/cc/31846927c5964c76fc9f9821b7288f66f7ea23", + ".git/objects/cc/3a0f504d6e95afdb2d357cc7df2c4e6909e701", + ".git/objects/cc/41b9bc35163bd89526540f6e1a053ce681007c", + ".git/objects/cc/4a6795169bcca114a4de32aa664e20e081e005", + ".git/objects/cc/4df1343cf545f3411cf493d028f05f46c1c886", + ".git/objects/cc/539a3422b197f0ecf4164933fd0917b4f0b0ef", + ".git/objects/cc/60080f353752570ab45f90423fb35cdf2b75d2", + ".git/objects/cc/66cc7fb9272cd7103421caaf4a28a6712eb5ed", + ".git/objects/cc/69c3c276b7a4b859a4122877aa136f74087d70", + ".git/objects/cc/7d3f655fb0680e427a7ee58c657b5cb8f08fea", + ".git/objects/cc/841811d14c514f69acd8c99eb1a79346a6e6d5", + ".git/objects/cc/84e78c2acd2324f0a8f24b36e7fc199466e55f", + ".git/objects/cc/93c4fd583adac3adbeaaaa2faa11fbfbd7bb5d", + ".git/objects/cc/9b7c9d3aae5e02959550c19bc57def93afbc3c", + ".git/objects/cc/9c22ffe0049c35798e3022b3774a6ccf40692b", + ".git/objects/cc/aa1453e54b3dfd90d6c7043a4cfe2db2c7a279", + ".git/objects/cc/b346cfbf2ad903475d80559c20b17aa98fa580", + ".git/objects/cc/ba04795787516e0172a73f2b6561f6557e8465", + ".git/objects/cc/c8bf04a0df3918f78eb39702b1156b12bad067", + ".git/objects/cc/cc00d12c9bb609b315e03862f39922d87f6617", + ".git/objects/cc/dc868a69fb05421e97f5bd92d4e2cade47a23e", + ".git/objects/cc/efe8a3f7c7e4a13eb9f57928248c17b8105bb9", + ".git/objects/cc/f7dc0f62a8b1ff5ebb4f77e564ace602087b9a", + ".git/objects/cd/0800b3c70ab04845415d46866f84ac1bb29115", + ".git/objects/cd/0aa820408840e1808496877caec98c52a2c176", + ".git/objects/cd/127555d26c3cf99c6807a64bf56a930ed41935", + ".git/objects/cd/1b73a0cb9d02e88fd349c95bc93a121eec6c57", + ".git/objects/cd/1d68d5c0b9584e8684fc0ee4146aa5d8ae7f4d", + ".git/objects/cd/28bec9764d636ad3dc8fa32afa0e97ac86e35d", + ".git/objects/cd/50cadac73018780bc541b7d38ed3e82f1584c8", + ".git/objects/cd/56b09bdc48a796a255071fcd9be4473da6ac56", + ".git/objects/cd/57990105cdd733cd4097de24aaca2e3610f9c2", + ".git/objects/cd/59e8b7156f6847d545f1e0e2a71a4a646a0aee", + ".git/objects/cd/5a80685625dba303f879dbea12173e3a8bd2df", + ".git/objects/cd/5cbfd4ff61096a06c5aeb302a79e711287420b", + ".git/objects/cd/5ef452cf518b4a27bf41233243ac1fc3f5a78c", + ".git/objects/cd/65453526009303d13e9f8d69718a8f1386352f", + ".git/objects/cd/69d8078530bbac61e22809fcaff63c2eeb80ac", + ".git/objects/cd/77a15489555e68c5d47a2ba393543475422a4b", + ".git/objects/cd/78a67b3ac9711fcbac44b6acc56a7ef28ddc81", + ".git/objects/cd/890d85a41509afb7bd5463a10ecb9a88659efd", + ".git/objects/cd/8fa398ed70dee4c9a571268413a03e804a6c11", + ".git/objects/cd/97844cd96bc56abdfe7c5f3cb2a1a3e0ab27cd", + ".git/objects/cd/a6456ba462fb4e4fe01b561935dd0487fc6439", + ".git/objects/cd/ab1f6a1e558c7c576cbbcd1a61f6190bef57a9", + ".git/objects/cd/b2393efbeb7c645e9d3a3ed9fb0521ea62390e", + ".git/objects/cd/b9114b8cd76fcbf87699ccd0c7bb38ae8eb08a", + ".git/objects/cd/bd5773b8fc9f4b87a8086ef7ee966708911287", + ".git/objects/cd/cd774eb9bc6482b7d4597e449765bb252462a5", + ".git/objects/cd/d36274176b2d2d3fd8528c3cbab99865d6934a", + ".git/objects/cd/e405ebf563bce26e9ea00d2b27acb5eabbea5d", + ".git/objects/cd/e9609b445568ae9113fff35643e37529f69e55", + ".git/objects/cd/ea0733877a46fe3f8e36f6dfc646f262d4a6cc", + ".git/objects/ce/01a168b2a59f8713750de570bfa7f60e8bed89", + ".git/objects/ce/0749fc0501ef633637e964f814896009fe5d56", + ".git/objects/ce/15384496759c09080e81a252c567988ae14db2", + ".git/objects/ce/1ee0ef78d29082dbe95468f861cb81672b7276", + ".git/objects/ce/26d96cfdb8665e357521bb711dbf383fb1af7c", + ".git/objects/ce/3c33e92cc39f75cc8fbdf3cbd96c5f3698a086", + ".git/objects/ce/6901450a743b96bf5f0287f120a63536683a1e", + ".git/objects/ce/6aa7abdebfb508730e6c25202bb5b96c5f7cec", + ".git/objects/ce/6f81a873002e2449985ba037b8918041b45d10", + ".git/objects/ce/71fd877bbe4a1115403a63d0af076c2e392fc1", + ".git/objects/ce/76d97e78fcbb581abeccd4081f6f3f0e78ac7d", + ".git/objects/ce/8093a2a621239d5e97be43a3fc83c05c24b8f9", + ".git/objects/ce/8b8f55866899f28ba6d5b51b5ebfefb88758a3", + ".git/objects/ce/954c3f567625cf8720a7d7bf478248dc04490d", + ".git/objects/ce/b46913ab509c50a41761ba4f5b8d74081f0ce4", + ".git/objects/ce/b4a2da5c7e067bd34bf4dd72e85b59d1d4587e", + ".git/objects/ce/cc29b2b1092761ba908e5c7eb269a2e558d875", + ".git/objects/ce/d22f215cb5f0d05d00c93fa2ae23da4f96a884", + ".git/objects/ce/d6ec1ade280af87b1bd1a60b22ecab4fba6577", + ".git/objects/ce/d9635e26b36fdce9bdc0e0242e6ff4ba96d9d0", + ".git/objects/ce/dc0b852b16e2ac9030370f6c4211de1f53f047", + ".git/objects/ce/e70026e46624d5c832a9a6321a4ef6e5817757", + ".git/objects/ce/f647d937d6a1cb735d77d5c3805fa4d3bfd715", + ".git/objects/ce/f9acadceb63734659fe985d12c22d8156fb1b5", + ".git/objects/cf/072bc0834cd69437a258306d79ef06d3499994", + ".git/objects/cf/091716e24a823e7315770e3a7a5068f469e184", + ".git/objects/cf/2e23bb4f9427058c4769938b05500ef350aa82", + ".git/objects/cf/4b4e339e05e9e0a9036ebf695def25f6be0306", + ".git/objects/cf/61eb39d7181a5ea6a5f1721ab1ad36e4dfac3b", + ".git/objects/cf/71d70be0f41dca2f5233930fdfefb9f6436fdc", + ".git/objects/cf/71efda189edac1999e49dedc192996a6c1cd2d", + ".git/objects/cf/72e252c59b337f97afbd7123f0e3fb0e3463ba", + ".git/objects/cf/73cfe0bd4f32140faac6c16cd3d00f2fc90a48", + ".git/objects/cf/7a31a7ab04dcf302d5c3c73c26be0d404b5bef", + ".git/objects/cf/8ed4af4fb0786d8d95d6ea6c48c65281a11eb6", + ".git/objects/cf/9aed228add7e7fa9403383f8f13eb1834b2f25", + ".git/objects/cf/9ef941dacea66c53553ecd51b3debf9e788f4b", + ".git/objects/cf/a194edd64352c29b84a5c635fccac28532daed", + ".git/objects/cf/accac1413cb511974c3730eb03edb1f0674c59", + ".git/objects/cf/adb5173cc9d08959854f3ad290db51e4931a8a", + ".git/objects/cf/affbeb42b39199217d77c9e05e6aa2347505a8", + ".git/objects/cf/c6ad65f4ad05b55201bc959d263fcc5c084bb6", + ".git/objects/cf/d3c941450b9c012c427654f8cb0592e617e5b2", + ".git/objects/cf/d3f539ab44cc7c441a873918cc0d37850504a2", + ".git/objects/cf/db703faed762ac765ce85d6f863670d22c676c", + ".git/objects/cf/e5a89526c0c51a93d7e917c7e3650202592baf", + ".git/objects/cf/f30b049dad84b512db5bf3babb89325a22db46", + ".git/objects/cf/f99232f3921a7ea598c69778de99cd4a3d79cb", + ".git/objects/cf/fff3ff51d45d97f2a20cdf8e08bb155671ad15", + ".git/objects/d0/08ae4c9ba6e595d2ebdcdab1804e05053e3291", + ".git/objects/d0/0ffbb999e0f5f05278eabc171fbfce38b567c9", + ".git/objects/d0/1aa6efe35579890cf2ee0a0eb9d6df05b36c88", + ".git/objects/d0/1aa8b67409c2dd2059dfce00ed0b11153be954", + ".git/objects/d0/1ed0ad5323452838f4a6619fd96fa06086ea66", + ".git/objects/d0/356def6852f04c870a2c5c0d5f649d6e0b104e", + ".git/objects/d0/35f44e3867fd842a65e31402858919447aea57", + ".git/objects/d0/3fe07c8971c6470bc679f923400dbc7414a119", + ".git/objects/d0/4c44b70e5d5cda010059dd63d61de1ea598058", + ".git/objects/d0/4e57ddd84f07dcf7283ee41da9224f582cccc0", + ".git/objects/d0/51e4e0e4e6d8263555cf1382a022a58824403c", + ".git/objects/d0/6382b967402758ab02525a6442dc34152168bd", + ".git/objects/d0/6f9e6da3280071e4c5d2231c74eaf23cab315e", + ".git/objects/d0/77d1fbd9b986a4620dde7dc4fec0b0e93dd81c", + ".git/objects/d0/7c67e7d5b6c4a4cb97003e9ea61e795aaf0512", + ".git/objects/d0/8e7368f50e831a184018bff38ce091a31ca5c2", + ".git/objects/d0/8f72b6e8624936ec179412387cc19f4dc84f30", + ".git/objects/d0/8fa9e173b0c71395a490fead11005225816eba", + ".git/objects/d0/953fa7ecf3fc99935deb7435f988f4a899e606", + ".git/objects/d0/9882715ffe7307460dc0bb0f59ed16b0383c4d", + ".git/objects/d0/98ca8eefcbd7fe3eda724b94fee5f489d4b6bf", + ".git/objects/d0/9f79adc66cf398a18bbf6a6af377b72b198189", + ".git/objects/d0/a53016e1df560807ecd32946baa08d841c3dd1", + ".git/objects/d0/b2d91c4282adc929bdcf24fb8a43d7512fe21b", + ".git/objects/d0/eea2b300ad5e24dd750bec5233aa16e3bc7354", + ".git/objects/d0/f0b7bab470c8db754077ac5489c9e583b2d8c7", + ".git/objects/d0/f926c08ace378e088ed18eaea0f424afb1db10", + ".git/objects/d0/ffbf5cedd2161a6eed63060c01ffedcf6912aa", + ".git/objects/d1/05504e7c96e2557734dec0c3a2fd9d87c6782c", + ".git/objects/d1/066bb1457789f459ad5a30af9711a2e46e3588", + ".git/objects/d1/091720e6b0ea90f618f8574a773dc109886b10", + ".git/objects/d1/0dc92d756a825f7ea93b96dcf4a4b3f02608a8", + ".git/objects/d1/0e46bbfb9056a66f2e191baf39734cc00f9c7c", + ".git/objects/d1/145d606bfebd2911eb3c7548968ae36ba99179", + ".git/objects/d1/1729a13efffc068680c0287bdb836fdc5b5321", + ".git/objects/d1/2cb6928bf7c1d3b3182020f829be07ced59cd1", + ".git/objects/d1/38292c5ce025c35e3689aecb7186dd1fbb2856", + ".git/objects/d1/3bc436c73cefa3a32448410a98c13882a869bb", + ".git/objects/d1/5a3f76bfb53bae74d8d4b89c32d0faf327a03c", + ".git/objects/d1/5cb3a5d6f2bc48b568d387c7aa983d17dc467a", + ".git/objects/d1/698386e089e5965d51b94ad830c092655debb6", + ".git/objects/d1/70b3201238b8e1b81634bf25d48000a8dc5bb0", + ".git/objects/d1/73bdbb7d9c22bf8b4e9f8d5ab52c1a858f541c", + ".git/objects/d1/7e7e5986481f801df4cf0b09118d6d552b3083", + ".git/objects/d1/8b398c8627eff363f933fc0759adc568a043dc", + ".git/objects/d1/8e60493d6033381c7146549311963b93efddaa", + ".git/objects/d1/b71bde468dcec4b4ac4700eaeb32c9331791e0", + ".git/objects/d1/c6c66d3ba588960e6ddcb5717688bbf5706d52", + ".git/objects/d1/cc22c6ea64ca3f6d967c130cc3cc0ae1225cf8", + ".git/objects/d1/cfc6efbd55345a34353dfe9a3214a9e38a2346", + ".git/objects/d1/d5eb7223406a9492a1eb32749219912aedc25f", + ".git/objects/d1/e135edc13f1a80d2ac22653566c70b2f3dcc5d", + ".git/objects/d1/eab8ab69d82f2e9f2e9f5ce96fa91e7765fb39", + ".git/objects/d2/0dbbd2a4f5e81d1410061a7db7d1a13e3ce6a9", + ".git/objects/d2/1a72f66e35b3dc05c788cc7af5a66b3ac5c82f", + ".git/objects/d2/20928307fa2598d8b59b409abf64458fbad392", + ".git/objects/d2/290a50b4e790a531412d63ea3444d52244659c", + ".git/objects/d2/323f3c9d77f7fdb25ea89c5537fedfc23d9b92", + ".git/objects/d2/3adb9d58c6790cbfc05156aeb49be6fc9e0ace", + ".git/objects/d2/3de1c5205ec8484e84f405ef199f126aab5f99", + ".git/objects/d2/41f1ca4b8f5302f88b2f24b9271cf07d1d8b28", + ".git/objects/d2/4a2fbbd676c3d2b6a22001e09ab0a66c92f3c4", + ".git/objects/d2/51f5c86fb17d7a0a02d676287e97bc4b782507", + ".git/objects/d2/701f53d2f49d40d3a3ae83071ddb3bfd2560ec", + ".git/objects/d2/7cb041b41d5dd1713ffbe8ecdc21d5618ea49e", + ".git/objects/d2/92bfc4ffb6bed23653b3f29736d2c70c0f49e6", + ".git/objects/d2/a45a5e5aabdb53e059c3ef17320495e2cfa7a5", + ".git/objects/d2/a665ab7669eb3a565f2474146da425781a2054", + ".git/objects/d2/a68bb11253e0e85f3bd10136c5e1b2b8bc6648", + ".git/objects/d2/ae80b8a6a465c66a5b3283e2f20eef1b6faa85", + ".git/objects/d2/b8f5c3c70be0e885ef577285e76b5e54b611f3", + ".git/objects/d2/d8afb4cf08e227b7d4ab1c9e2ab66ed6846f73", + ".git/objects/d2/dc167dad3d4f24faabeca87782aea0a8373033", + ".git/objects/d2/f8b943f9d2c15dfa6287ff06b6cadb756d1757", + ".git/objects/d3/0066c171b1c0767a9f8db3916f4471a7c75e68", + ".git/objects/d3/0c0ddbf0b20d064ea255f872c93817f1ad0f74", + ".git/objects/d3/26d39ec6fa62546dd7d08b68481289e7820dbc", + ".git/objects/d3/2d30911e5fb0b755c37a1d203668b1383c2bd0", + ".git/objects/d3/37edee01c4079490081bcb5023bd2a2f6341ca", + ".git/objects/d3/3ac2b57f1fa4ef56f77ec7a37f92beaf6bfebb", + ".git/objects/d3/56087724cb2f351f365513cfd4865b6e0950fc", + ".git/objects/d3/60efe059c19a7ac314960949ebf590397b4d7e", + ".git/objects/d3/6735d545c14eb326caf68f6dae1741934ad5bb", + ".git/objects/d3/693c224dff27d162eda0b309790bbf65a3e7d0", + ".git/objects/d3/6a2889fdde9b79f18c2087dc7fa94c932bda80", + ".git/objects/d3/70001d6bb942ca3c2943fb06bb653670177d92", + ".git/objects/d3/700839cdf12c293ec673d3d31e9042ef91c9f8", + ".git/objects/d3/70ad034f4108ac22c75c0c46f92f697c512731", + ".git/objects/d3/729b57b47e67389041fcc40cce3a6a7b4f8be5", + ".git/objects/d3/7d74b6970b7ee942950ffa1b6e6ca6824f3bac", + ".git/objects/d3/8d95e87e7c87375903863b64c3fe6f4feab35f", + ".git/objects/d3/a30744de753b1b46f0e005f92fc4ea333fd76c", + ".git/objects/d3/a35df6a2be8d18855eccb6b074103e830367ad", + ".git/objects/d3/acc75af3562731ceac33dec4a0cd3534611466", + ".git/objects/d3/b11714e1dd668ebe7d4ea1e35af0f4c0ed14a1", + ".git/objects/d3/b957b60f49838fc3d9ad275fd650b28b9d7614", + ".git/objects/d3/caec656146d1ee51e1fb94a6996235e1f5024f", + ".git/objects/d3/d7262ebe4975d2c9ea711d0a4e8d22ce5c691f", + ".git/objects/d3/d7511a7dd16caa0b49fa2f12ee2ea0d6c4f0ee", + ".git/objects/d3/e123e2d2f18815c7cda113d1b9b5277520d8a1", + ".git/objects/d3/e48784d1aa5cc41cc83628cda84734b2a13e30", + ".git/objects/d3/ffae405b5f6d49082ea98469e87a0aba4f880c", + ".git/objects/d4/174364b64226684a0939d51d82c35d826e3466", + ".git/objects/d4/176fa6d2dcdde181cb1ea256887965bb3f2c5a", + ".git/objects/d4/186e9e5455b64ef98b23a08745b993cc97a2ae", + ".git/objects/d4/1e0a768bd22845c591c8a41d8626cb920ed954", + ".git/objects/d4/207ebdbc5dc33f0787d313a7ef44055d03903e", + ".git/objects/d4/2b51f2efa328fc8e2c25267b040a8572c1998a", + ".git/objects/d4/2e9fb26184b37c0c3b0e30e66039440240e25f", + ".git/objects/d4/3e41b73be1ff16c4667b40433319dde25332ca", + ".git/objects/d4/3e908924c42b2112122832797b8d70bb51962b", + ".git/objects/d4/5fd57d4d5ca474144c5651ba7b16b1c9f77cbb", + ".git/objects/d4/78c136ce4790f58d3e859eefca44ae9bcbd9ac", + ".git/objects/d4/917a69080eff282bb96e82a18e5570b1a4540d", + ".git/objects/d4/ae421de3f21e03cc779c7224106ae366376a31", + ".git/objects/d4/b29597d415bd9912e4bac6e23d58f9714063ba", + ".git/objects/d4/bb1551913de3d07f5f4320321bcb0df92bf2d1", + ".git/objects/d4/d2d1641cc2863718ecfb56c5b29dd98977bc31", + ".git/objects/d4/dd84fa838fc0aacd79b6d03cf89ae57ddd1f20", + ".git/objects/d4/f1355b17f45e885e908350d1ac303c423d89f5", + ".git/objects/d4/f5264fc9a59ade3a2b219f6120094d921dfbb1", + ".git/objects/d5/18e64720d566205cd12c00b494f86a5553db2a", + ".git/objects/d5/25ba3dc8b7a6db73704e02859f56abdc1ef415", + ".git/objects/d5/28bea89f81b0c3d7975fc9e63ffd20fe4f146d", + ".git/objects/d5/3105e5941ca873072778f2f912dd2c85398d16", + ".git/objects/d5/365814fea8d1f7bbcb8f26e4f7b551a3e07c86", + ".git/objects/d5/37c1c423d4a97d87bf1fae30bca8ed8febab2a", + ".git/objects/d5/4e2616fe1537a523075753581e670ed9103f12", + ".git/objects/d5/5930848faf459643c28717e2188a81762efa2e", + ".git/objects/d5/7e10e313e36fb79e19018f2cee06a4ac0114c9", + ".git/objects/d5/813cc1affd1dc7e03370b8508f3750ad29c672", + ".git/objects/d5/84020edbe6625ef16729255d4d1edd0488f5f1", + ".git/objects/d5/9c7ada1460f52860265a88111a2a614d2e62d4", + ".git/objects/d5/a97ddf73b6425e2199d6ef002222067b109321", + ".git/objects/d5/d44ac495e38bf87e95dc3e80d912d3d00996cf", + ".git/objects/d5/e38343cbfa494457faae68093130380e854506", + ".git/objects/d5/fcc1d45736a5d26cc7b8a37a90406c2787dc9f", + ".git/objects/d5/fdb25b0cf6d870bfdbba4253744c2dd779e7e3", + ".git/objects/d6/08ca090533633b080597b069bfb4749429e57e", + ".git/objects/d6/1dddbfd460e5421222879f6b0be952bfedca12", + ".git/objects/d6/3e3f978a4163324ebf53f7d4a5138617313469", + ".git/objects/d6/5036cbe334769208df6e206a7442372bec67fe", + ".git/objects/d6/6324310794c27a53b69783e4a4c22374a9a7f9", + ".git/objects/d6/67275bfe9143639a7d6df846c2c57b1a3ba852", + ".git/objects/d6/694d26c977e53edf24a9a42eba35d8625aab24", + ".git/objects/d6/6a724799b8849c86ddd57c5a5917100ede7f09", + ".git/objects/d6/72139f8beaf6e2cfaafd605292680cc32aa510", + ".git/objects/d6/83bc59dde81a3ea67151f33a755f302ad44399", + ".git/objects/d6/872d5bee406197a2a3738b61f85470ca630b4b", + ".git/objects/d6/a0d4bb2702ad332057d6e7d81a759cec3736aa", + ".git/objects/d6/a67f7d4ff39b5dac983431ad819ede7e350b60", + ".git/objects/d6/a96725c29846646da64f78eab0e571022289fc", + ".git/objects/d6/ad2c6469aa3ed4de93cbfd94d892d8c0ca1c1e", + ".git/objects/d6/d732770aa163ee6b039704c31f57037247922e", + ".git/objects/d6/e89b3a9510a721abfab0b32876a35d9908bc6e", + ".git/objects/d6/ee8d749617a867a418c1808a78465f305be660", + ".git/objects/d6/f28c4bdb51efad3c15d15255aac797cce6898b", + ".git/objects/d6/fe0195fd258cb9ec64e5f64545bbc05ac645a2", + ".git/objects/d6/fe1963dc99a8fe736b3625b303fdabe0a965f0", + ".git/objects/d7/0ae96964834a334988d6b29c6b689f133cf731", + ".git/objects/d7/2cdb89319a9432336c19fb5fc2d14ce58fea7a", + ".git/objects/d7/38ddf335ad9f6fe026334e5845ab3485bba02f", + ".git/objects/d7/3d97066dd61194e5b88a9c1738093ca39565ee", + ".git/objects/d7/4396624b3f3e35b8a03bcfac3adf5ba25fa471", + ".git/objects/d7/53de291bd41aaf8437179017e35d37158c0921", + ".git/objects/d7/58e9fde55e717e691d626ca8c67aa78d828184", + ".git/objects/d7/694a27b0004dae5f1da214faaa82f12142d36c", + ".git/objects/d7/6d9839d6ddd928d9fbfd01070f5a2fffbb97de", + ".git/objects/d7/714ae825d34a1b14720605aad452345b1dfcea", + ".git/objects/d7/90f81581bf97cc5c1fe11133307084bb6809c1", + ".git/objects/d7/912e589f9d89b05362d2c2dc508166b3b9b869", + ".git/objects/d7/932aeb66feb1e3899165df93ecc29d886608ab", + ".git/objects/d7/a99cdd5e5ec32a6f1071a092edfb2db17da81e", + ".git/objects/d7/b047d4a5b641a772ea1ad416166d18d2fede6f", + ".git/objects/d7/b0808fd3169b4d6ac9cedb470ff74b574fd2fe", + ".git/objects/d7/b1968dbdb4b9e8b0aea0b944ddd813b2fc8439", + ".git/objects/d7/b42ecb97593a825127669a7da73191b9ae3959", + ".git/objects/d7/b8914dc8fa350090009adf1003b7e870609d32", + ".git/objects/d7/ba337c35063a65ec05c45b4f1fda6b3a0ef617", + ".git/objects/d7/cf318f5bc1478cb4f20d93dcfb77df80861d90", + ".git/objects/d7/db40d371a114128fe488c572807c6bac7bbb49", + ".git/objects/d7/dc322c8de4d626eb2c92d23928e4693f1e4cc3", + ".git/objects/d7/eb62c89fc27c8d8c447a812e6b11899ab45ea2", + ".git/objects/d7/efdf44b1c2ca327ba29f77437cc0abe1baa331", + ".git/objects/d7/f2f96c33461c098b22e442be3c185b6f8a3e10", + ".git/objects/d7/fbe4920758af82aa6ee51ee617c4cd347217a2", + ".git/objects/d8/023fd04075183455ea1163f35b939c1d1afb5e", + ".git/objects/d8/0c718bffc96372b47e4608f55236209e6e152e", + ".git/objects/d8/149f1cb6889c64912a5935b6ab4f373313a2b3", + ".git/objects/d8/1bf888e03eb24ec14074db3dcb1e2e14e69dc7", + ".git/objects/d8/1dddb4234fbadd249461e4ff23b927ada469d6", + ".git/objects/d8/2434ff21c81dde9794f727b0e112b85b6128cf", + ".git/objects/d8/33236230376a762b03b3c0524b2821bac06c93", + ".git/objects/d8/462cdc48e5ebcbd11c866deba757a70f4d35e3", + ".git/objects/d8/4c4543ff1f03b3114ac1151f153fb3dedf22c4", + ".git/objects/d8/4cb9328819dc0c1f8b1a1f9dc31af34c319641", + ".git/objects/d8/52442fcfa8d8ac032bcb5f5ff49c2c5361ca45", + ".git/objects/d8/70ce8813f9756292338c6fde2133690a814f32", + ".git/objects/d8/76f58d36a30631d98218e852f2038796f49ae6", + ".git/objects/d8/86b5b4f9db5f93bd6a422ac2520ec6a0dfb2ec", + ".git/objects/d8/9d5de7d8283a6a2e43803c01d5d1e7206310dd", + ".git/objects/d8/b4d778f261128a15856b316313109013c3a570", + ".git/objects/d8/bbcbdc7379908ad59df95b4130cb1da08df584", + ".git/objects/d8/ca46683f1c93b47086b31c5b493d64d70cbc38", + ".git/objects/d8/d6f00f6d367b44f008d11e9e77b0d7dbc19745", + ".git/objects/d8/dc04585e2a4bf1ae5bc02c9d83c071e186933b", + ".git/objects/d8/e7e18090f57d71fd20b63307c574ee44319499", + ".git/objects/d8/e95342b32378a3cbcc381109ea24706895ee2e", + ".git/objects/d8/ea0961fbd0b9b4f61c533ff7e1162d91d098f1", + ".git/objects/d8/fd933f6c2a633e0be6f545b65b6a23b3305613", + ".git/objects/d8/fe854b2c1f5ad221c3c7f79d2a48dcdfa6f584", + ".git/objects/d9/00d2b5019d464c52096fc6df021c2cb92a7b40", + ".git/objects/d9/112ae5165bbaa13e00504e5520a09dcd45d775", + ".git/objects/d9/1383bf7863c3289cfc128a073847d9a4f8529b", + ".git/objects/d9/1cb8372a2dbfc8791d83be6ff63b16cb6bcf60", + ".git/objects/d9/1e854be8b7ebc133600b4e6e45a5cac3773ab7", + ".git/objects/d9/2f03653e5b3df4c5957b1eb8e3901691ea1a38", + ".git/objects/d9/3982d4c6db86fdfce65b0fbbc24f1a1eca3f01", + ".git/objects/d9/42de780e178afda732a432ba09523c7753a212", + ".git/objects/d9/48c7a747574eb38c93dd616e7c0a333da2ef3b", + ".git/objects/d9/4bddf7467a7940bd6c39e6482114b92b63857c", + ".git/objects/d9/4eb1d23ce84ac38e1041dbbb4a3945ecff23d4", + ".git/objects/d9/5e88e4092e2f17781de2f33408f3451e71b741", + ".git/objects/d9/7d4193b7030ab2077ca055e87dbb7352fbb32e", + ".git/objects/d9/81c86f27050319b5703c786ddd47cb7c184883", + ".git/objects/d9/839cc8eccc3eaa1e3bc77fa87f25b8c253afab", + ".git/objects/d9/939014aab9c2697a71c6e708a9e22318f23e26", + ".git/objects/d9/a264c9ed010919c741504cc3db3df0cdff3a7e", + ".git/objects/d9/af4b28ec2a6f6a7e682d69e475ef56a2818c0e", + ".git/objects/d9/c29c6271606f53ace1840b4d8df7b61ed2e0ff", + ".git/objects/d9/c7d1e84c90b47502dfb5ef9036877b6238be91", + ".git/objects/d9/ca24341e1390e4c8b2d02b8075e4ab14eeac2e", + ".git/objects/d9/d4cf49311bf3e4bf952c2ff9d0d8b2e820e519", + ".git/objects/d9/d8cf464e9760897d3d7ab41c1e2518bd10c2f8", + ".git/objects/d9/e989cfb441f7661d76b5811e0180bfe5543453", + ".git/objects/d9/ef81ac00da2b31b28a865d0a12f056c0d72e69", + ".git/objects/d9/f9ec4cda32a729aaaa30bfde1d43f2f2d46124", + ".git/objects/d9/fd43a04300d4c7f0b6b9c777d0ff6223bd8675", + ".git/objects/da/09a976c6338e0531b55102f34f3478422d03bf", + ".git/objects/da/0f92db14465723060e8911d7c2d26de737f7af", + ".git/objects/da/117ea3404597189db0dfc36321d47f71cdb538", + ".git/objects/da/144b7098edd1c3820e55ff4f3de237550297d0", + ".git/objects/da/1a1b67025be6bb023a40180b04a7b9560c0297", + ".git/objects/da/2c21ec108c82dde62b2d3a5083c6cc392ab95c", + ".git/objects/da/360149d26c13c107f9fcf572ddc90ffe705fd0", + ".git/objects/da/5869c2b0fa65c0625203f486f061ffd31ca42d", + ".git/objects/da/5d98497554e018ac5e2ddb11e1932b6f7f3ea0", + ".git/objects/da/5efb9b7e3656ce0243dcc25dd40d65be786f20", + ".git/objects/da/62a4a1ecf90b85fd2b3a90be0a8aa7e5fa4e1d", + ".git/objects/da/65cb2a45915842fe60285c50ebfc7d29857c2d", + ".git/objects/da/6681c6cff652071dd1c7d0c9719fe418b59725", + ".git/objects/da/68676b70719901326d0df83cb8b2bb2992e82a", + ".git/objects/da/6dd741649285db0ddd2afe02a2217456abaa8c", + ".git/objects/da/709704def60199e6006385202ef2cfa7610026", + ".git/objects/da/997cc3b92e5730f688573165d9ae3fdf500355", + ".git/objects/da/9d22cf74ef94904ab9ba1d6cb522cdf7c3b943", + ".git/objects/da/9da09976c4caf58053821a168223318aaa7ab8", + ".git/objects/da/a5d3294f43e307596fba5da8ba25070999c76c", + ".git/objects/da/b696d0b9d570cd366d213aa6a386ecfefd13a1", + ".git/objects/da/c0b68ea4d3e1817ed523dfe71cf4043e19fbd9", + ".git/objects/da/d0790aa7d0cd859ae0a1386588d345942ff9be", + ".git/objects/da/d7ee1b0244fb7181b3e3551fcc2e87f2299422", + ".git/objects/da/dbf2b4f64fe3acfd1eee851d5ad51099349426", + ".git/objects/da/fa098cf07f8c072e7f6bec6acf63c738e5394a", + ".git/objects/da/fd86b61711571b544cdbf452f70fd04d707686", + ".git/objects/db/03678379227956df18dd9f01625e061381c8e3", + ".git/objects/db/115df0dc28fb01c005a888b1587e7be49dc6dd", + ".git/objects/db/183af15f900c7e3d274b5a09db4439010dbaca", + ".git/objects/db/1d180f8909e0c5ad9247ed1ed1c808182f4061", + ".git/objects/db/1f2e7ce641e224093800dc1847c6a79ee0aded", + ".git/objects/db/2231493ffdf83883db9ff78d173b6ad59c8cbd", + ".git/objects/db/27f9cda26cd9a8aee1196c126adf2b0c079c2c", + ".git/objects/db/2ce2542b36a26ca1373b77a7025fa6cdf72aef", + ".git/objects/db/2cee1349d2e135eb9ca120cdb1319d0bda91a6", + ".git/objects/db/2ec5182b6afd4d28ef918fcc1e32278d20cfbb", + ".git/objects/db/3b636d511cbea775aa3b5b4a8071cc0ad4a9bb", + ".git/objects/db/4759bb502455227a3e0b91f77ac49463688208", + ".git/objects/db/4fc690bfa26e62fccfda426cfd9f878c85330a", + ".git/objects/db/6142ba8083d7f3b1e4a98facb97285fc484419", + ".git/objects/db/844fa18547c2e35b85073047b56f6ce3453d51", + ".git/objects/db/8c05ee3b8a087a318efc3bf7562f07334910a8", + ".git/objects/db/8dd012f1e3445a1061a5daab2be9cc227f121d", + ".git/objects/db/9cf460efbba0bc1a8305a04a7755f6ea839310", + ".git/objects/db/a572913e086e226b5a1bf0c65292e77508d076", + ".git/objects/db/b99fcfcef2b8864df8a94a7aa88f23f0da569d", + ".git/objects/db/c0ca669e546caa67cee9b5e5edc3d7521a6416", + ".git/objects/db/c4bad24652401b0ac6b192a3c30c1adca35b2a", + ".git/objects/db/d520d41c5fd066461b8ea2ccdcef7c2d64a9fa", + ".git/objects/db/d99059b24dc9bf3e932d5f3fe718e93d57227b", + ".git/objects/db/f7bf27ea2f74f51922875d5628bec424286278", + ".git/objects/dc/03b1b3afc2b91ac69f10c9603079a1b2afa41f", + ".git/objects/dc/232273078bd4fbce71cdb43abe22f44d092998", + ".git/objects/dc/26a68dda222a2d722d42a29d4883c01244b26d", + ".git/objects/dc/2cfb753d0a1e25e1ce80d11ac4c3dd5a50f639", + ".git/objects/dc/39e1ee6bc4608c9def44d8a14faac410c54e24", + ".git/objects/dc/40ce15328056d8e89bd8ad1c35428d01663e38", + ".git/objects/dc/41f3bd9d151fe995ba79cb372d0ff275813a7c", + ".git/objects/dc/45640d7c9cded19c4311e41f1379aa70ced959", + ".git/objects/dc/478213bf19d4292111b5eea695eaa5d2e227f7", + ".git/objects/dc/4c116ceb68cbcd55a9b63a7ce8f3fef8f3c312", + ".git/objects/dc/50ec29a765465fc0e15c30999aa869632d5c2a", + ".git/objects/dc/53a5f06a2aeb5e5a6e1e7b66280fc6de2c78af", + ".git/objects/dc/6c2bbf37f218599880ab9f45ed6b97102a0657", + ".git/objects/dc/76398fa8336f95dff0dc1b3bb12b7c9c458bb5", + ".git/objects/dc/7a1021aea945275510320ba7fab77d8d2de082", + ".git/objects/dc/7ed8e50d67ea6048f3b3680fc63c9c848ed407", + ".git/objects/dc/81c5b51516257074058bd39af82e0681fc057e", + ".git/objects/dc/846de78528f4af5c473265a85f99e1c57b4560", + ".git/objects/dc/8b0e323b82eb629dc1393d7aaf067a6ed00c59", + ".git/objects/dc/974064798fecb641b444214d831df38a1ac2e8", + ".git/objects/dc/9ae26b3792ed1da350b04baeabdf4badbf3529", + ".git/objects/dc/a8dd2b763e0fcd8c8ce4ea9752ba2178a9afbf", + ".git/objects/dc/b030076bfe0ac2fe89603354222c791f922347", + ".git/objects/dc/b7e61ed61ec5469f58dfd329ea6d7ea3006361", + ".git/objects/dc/baffb58b67eb56a258294f1b6b202918f0b2eb", + ".git/objects/dc/d0cdcb189d1eed193c69676fa1db9d64bb50a6", + ".git/objects/dc/db96c6fd46f20430e2ab540bd4ba7ac2c52328", + ".git/objects/dc/eeecb9f55c4ab236bf3ab4c7b28e373af17e1a", + ".git/objects/dc/fd2c58b2b24c2bfde37044e431fd48af7170ef", + ".git/objects/dd/1dded2a05d1f8418c9d11c68d7e5b68686062a", + ".git/objects/dd/1ebd30f12ea5e0b06f6c410dbffeae4d48fad6", + ".git/objects/dd/27384a22b6fd091237f493b5c2afb7615cd5ea", + ".git/objects/dd/3d7a78ab572ec65337026d9f3ce4a7c515181c", + ".git/objects/dd/521548a1f741be7a0f601f2e700df3835b8872", + ".git/objects/dd/5a4483ced8c4d5329958b501e9a17125a8bded", + ".git/objects/dd/6c274b1a5ded93f1d09c499617653857c85dca", + ".git/objects/dd/8c289b4805ccdcba6d453cb2af3270332b52fc", + ".git/objects/dd/90e9d0adc21494203899c49c7bf1473a2ffe0f", + ".git/objects/dd/9f0c098b16c9dde27e723a33aaa0b460ba5998", + ".git/objects/dd/a60971e77d0d19e7b3b91decca90537fd2184d", + ".git/objects/dd/a6918e110221813b59eaadc806a22fb8a889aa", + ".git/objects/dd/b63f85e83a2a566a609b53de6eea55b618101a", + ".git/objects/dd/b95147d3b2faf6526ae48be2711b59c16da47e", + ".git/objects/dd/ccb739a0a22deb8144b24d7f807217c5cc3186", + ".git/objects/dd/e9e81b0cb457549e1ebab896ff5d13d737b4a3", + ".git/objects/dd/f408a758f7ee589620c77d5f1fe4b976c24678", + ".git/objects/dd/f7fa2f02931d5c3cf87e5aa38f414f70309e2a", + ".git/objects/dd/f9ae70c6cdbbc036615f62e7aec0a898820412", + ".git/objects/dd/fc8d34e1aaee8e9cb2c5174f2b7a6ab5d3ac2f", + ".git/objects/de/00dabfc64611ba2a52209b33cbf47770f4c582", + ".git/objects/de/17baf5861e8cedee2e17d7649ebde3eceb676b", + ".git/objects/de/1a5c64b82185c6c8e38caa451a297a6a39c2a6", + ".git/objects/de/1b1502f2f9d98a57c9e56a8248bd0de34283ee", + ".git/objects/de/2745b7e4ff7971ec5e6e47bcc2efc2ac2cb803", + ".git/objects/de/308ee5cb889f58944d0b9e2b07c78af86b7f4d", + ".git/objects/de/3932c5a8cc1da148eacb688db41c8a83d8a9d1", + ".git/objects/de/446c31f4e0ca4c0f25906a0f5731dcdbcfc0bf", + ".git/objects/de/56a2ae3ffc39e0bdfc962e3a10d6623c007677", + ".git/objects/de/630cb2b067d68be4b9ecb1c7f82b3b47913aa0", + ".git/objects/de/76caa1e9cd30efa27546170c8327d6bf8ef8fc", + ".git/objects/de/7af1e6d446b9a27d6e6ec95a2e2c3f8f9f3efb", + ".git/objects/de/7b76f2e8a4f2552c31d8282d1119928d886df8", + ".git/objects/de/8af0a9abf21d41cb120e46ac5715f0fc98067a", + ".git/objects/de/91190aae4e800fc8eb8e899d7eda39cc14aed4", + ".git/objects/de/91d544aedeafc9424fc0429058b62c31d9af43", + ".git/objects/de/957b3b1fc4138ce9c9f2d829fbebe477541f16", + ".git/objects/de/9b18b18259c434b0f18d809a655807cf4fd673", + ".git/objects/de/ceb508779db9a5fb66a2a90f5a78bcf3440226", + ".git/objects/de/d76f94d5e79250da914b5732f1a46758f077eb", + ".git/objects/de/d9e60df610c08a0c97d57c22a03c7a19842d61", + ".git/objects/de/e67c6627c879fda23a98395815120f7d41c796", + ".git/objects/de/ef6498569c7eec812fa8975d71ff85efd6e313", + ".git/objects/de/fa630a71160cb425220ad08a905ecaa92b0bca", + ".git/objects/de/fbb9708f90ffc2e543a8b0d797f6f511536b43", + ".git/objects/df/09d1c41d50ecd70a15f6ba83169f46cd544083", + ".git/objects/df/0d8500253e6c978be5670316032d3595812d39", + ".git/objects/df/0e192bcbd428c3c2f6e44762df1ac3ee14858d", + ".git/objects/df/12bf4a6f7e2c94c30e383f05ee573bd6841c90", + ".git/objects/df/1bb1bdaae44b1ed9cbd7958af4d43a91e2863b", + ".git/objects/df/35592cbaaa6c70db12cd51e206af5474dfdea3", + ".git/objects/df/3eed6472624dd05ff6a1025734aeebea4b27be", + ".git/objects/df/52eadf42bbce3525419b276f98a8f82ee0cb8d", + ".git/objects/df/58965140e023aae416d533bc1c2f6773246ba6", + ".git/objects/df/5ddc946b7fec650216a53b6381d226e3d7594c", + ".git/objects/df/6057197c613a32c0630f19c1606ea1366e8d57", + ".git/objects/df/60819a85722f85439345cb4a4d8990a8efbe66", + ".git/objects/df/67a59a5d7bd069f0197cfd4f15f2415b44875c", + ".git/objects/df/70b4643c4f77fe38c138d4b7f70ea9047e0daa", + ".git/objects/df/86725bfcd13c69cc240e260a2f1113c71340fa", + ".git/objects/df/891c5c3ad17491f15544efd5603de6fe956bff", + ".git/objects/df/8f522fc1330096606bc8ff25a2f0502a67d8f4", + ".git/objects/df/9945f8a33aa6ce29249808ebac003919fee322", + ".git/objects/df/9d040c421e529454a24f81eb454048011ff46b", + ".git/objects/df/a07cba2263759650ef82d27b14cfef9b766045", + ".git/objects/df/a39f4f62daf820fa46d693e8a803b399f08772", + ".git/objects/df/a8e6b573f5393c18ad16056d087c1c87e1ddb2", + ".git/objects/df/ce2b187957ae1c84b709cb55c57c2cdc6a3891", + ".git/objects/df/ceab696bfd763e2ac160bf05303efc76c5b942", + ".git/objects/df/d514ace513ac7f1dd6d53e9a17bb0a3273cd00", + ".git/objects/df/d86612354ca39820c4890debc0e06860201167", + ".git/objects/df/e667f711cc6f63b72130a756d3b40e8d9e5b02", + ".git/objects/df/e6ff1b0c14b3490fe3ee9bf6faa6c194639ad9", + ".git/objects/df/e79c8a5f2d62012b1d5b91c1d19b857725a9c3", + ".git/objects/df/eac180daf7f096711a1413fdc19a8197b7cd2c", + ".git/objects/df/f1d9a425a5f18d45e78599ed35366817df0bec", + ".git/objects/df/f340e35fe6581b2ea88f6561871edf47440146", + ".git/objects/df/f69b250a0f8a51aaf5711e2d7fc1af23083952", + ".git/objects/df/fcddaf2f39475d3396dd154df275eb40e7e7b2", + ".git/objects/e0/17770d274fbea21d9798bd6eb6a7ed2e005641", + ".git/objects/e0/17a7121501adbcb20f425959e4bbcdab4c2603", + ".git/objects/e0/1a2e00911d2531583cf0fe098c937f1f273695", + ".git/objects/e0/1e4a2d40c3f9387337d30251b01c3690c5bec5", + ".git/objects/e0/2f7fbe876bf968a43901767aac2796b874c1b2", + ".git/objects/e0/551769f996b9360393cc61be1aad5848854784", + ".git/objects/e0/656031942001d945b0903783741174538024e6", + ".git/objects/e0/6c501e7bed007c323a79590f09886c05964e0e", + ".git/objects/e0/6dbb43c2329f5f8507e2d7b6c68201f725c660", + ".git/objects/e0/a5f103e2ee5675355906a41b8b9841df90b561", + ".git/objects/e0/a75586565a62f432b199e663c9a07149f9ce68", + ".git/objects/e0/b5d98fa24a300899c3677a1cdd83369f9fd673", + ".git/objects/e0/b66b9f1db513972107f9b248b9100d55edd7d8", + ".git/objects/e0/bc574a503b83910a2615aac88bcc9a5a65ef77", + ".git/objects/e0/bfe104c36fa8673a27c594ec32cf1b1a4d2c7d", + ".git/objects/e0/c238cba9696ef62177d89f997be9e7c035a269", + ".git/objects/e0/c43896904ae6b912b9e31e4ea0ede1347df71f", + ".git/objects/e0/cb0d448452d440b9eb3ad2333a9fb49850e46b", + ".git/objects/e0/d7bfba02978d621b7548907a4de51e6dea2d04", + ".git/objects/e0/f2315bdaa4317f45b2a2d3ef6e414812d2f92c", + ".git/objects/e0/f9d59039308f31bf2a0f17e63f919b33549c67", + ".git/objects/e0/fa6fd154997598e744f32b9973fb456ece3285", + ".git/objects/e0/fa9155a04d4ed74f12c35c25613d8b24a5bd38", + ".git/objects/e1/1404e1cfa30c1f151834f0142060d71e43c026", + ".git/objects/e1/14eb07c249567a804c8f8003a4e911e26d4b2a", + ".git/objects/e1/21914311e7627c3758e963f83ef78c7d61a584", + ".git/objects/e1/22ca37eaf7ce6bb385a574a45750ea4c9f3574", + ".git/objects/e1/26bf23d7ccc9533b5faad8a736c832df454458", + ".git/objects/e1/28669a463104f27c7db5c87e51723c7e670469", + ".git/objects/e1/3bbcc7b1515ca0bec8e746c71ba24d17ea18fd", + ".git/objects/e1/41dc338ec7bff6bd35ebe3a409ef1238fd5ff9", + ".git/objects/e1/4ce03d8a438cbffcee6f92ab581143b5db40ed", + ".git/objects/e1/4d1ddee6e4611c197804393414cdd0107f27b0", + ".git/objects/e1/4d242c84253f1b113c20ebb19525ec883987d4", + ".git/objects/e1/637e329b59e61114743c8a3df9bb6aae582884", + ".git/objects/e1/7b8a6aa6218e81cd3a811e36236d6c5ae2d8c7", + ".git/objects/e1/884423620faed9a9982583eedeb66a49ec14c0", + ".git/objects/e1/9149fd235820943e3b06c16b621a1531944328", + ".git/objects/e1/96774d300cca4f24933f63d1d78442ff1c5b4f", + ".git/objects/e1/978224f7d31b528004aae42686a463706a87e1", + ".git/objects/e1/9e9ed9ea21a0f3bbcc5a59604dc2163ec851ea", + ".git/objects/e1/a63de35720d9b45f3249be256c29613df5a28f", + ".git/objects/e1/b15cb1a49961e7c32f4412e20699a7eaed4dc2", + ".git/objects/e1/cf7e581b80c91aa3c100f11e80b2231eb63bb1", + ".git/objects/e1/d08fc7259293000c5e64616408a55726e34981", + ".git/objects/e1/d99208fc014f98187b6e6ac5d33b72f5c81690", + ".git/objects/e1/de1734993e12c18d83d904cf3b12afde5f1d16", + ".git/objects/e1/ebcdfe97676d588cb25da45bd406e11a32a4ea", + ".git/objects/e1/ec75767cdbb24d33932c54cfad7a31da672bd9", + ".git/objects/e1/f97c3249175f9f77b9b2250f923fc1ef275ba2", + ".git/objects/e2/0434f46561d1eaa4767f03b18dd526919e72ad", + ".git/objects/e2/0bf432a9a234686ca9ee4a48af9034079f94f4", + ".git/objects/e2/1f622b18c5bab1dc57b27574fec7783646ed4e", + ".git/objects/e2/606e413c2000d9a85092d83a01d10a8ea35b1c", + ".git/objects/e2/61ec5af47f3746288af6720208e9a222859b8e", + ".git/objects/e2/67f9d74bed21b3a6d1664060cbf20e02486f1d", + ".git/objects/e2/822ca14734cc952bbe71f918f1ebd00241cbb8", + ".git/objects/e2/82c02bd5bfa4a38dce5a825c35d619ff247ba7", + ".git/objects/e2/9413591dca4c8e2ee538030f3357f196e1b955", + ".git/objects/e2/990e08a08888dbd35a91860d6280aa506096d8", + ".git/objects/e2/a6ef1ff8a7b0a9e96238e9cc2ac6e03afc2663", + ".git/objects/e2/a7c6346e9a19b458e03de34be60c865e53b87f", + ".git/objects/e2/aed7609f47b6751aa6b7dd04343caf5abd004c", + ".git/objects/e2/be7fb65525b54f0c96a57787d7a1a7a86269b2", + ".git/objects/e2/c49dcf83510236566b3c1a725791e44907c0a4", + ".git/objects/e2/ca832c7b2b74385d86ba02bde91d62b70f71db", + ".git/objects/e2/d157b7f11b088e8da826238485f8893eab3633", + ".git/objects/e2/e73b0d2bde02c7d2694c4ece3b1deea0e6c9de", + ".git/objects/e2/ecf2a59fd9298ce4ac0324da33904cb5b78b0d", + ".git/objects/e2/efc2ba8a4bb29ec3e0f07eb18d55bc519b01ca", + ".git/objects/e3/05bd6c08ae7f5cff8fedb81b919cbecd20aee7", + ".git/objects/e3/0a12e5dec99def7c5657a986048b478e3a609c", + ".git/objects/e3/0f62c494f04e8e021c8b4a989e5951a16a547c", + ".git/objects/e3/136736b2adf6bee66da25f1e60514b994d1205", + ".git/objects/e3/1c268f19538d629abf40dccfa15fa0aec91045", + ".git/objects/e3/2626ad7b75746fe6ca3aec34b2b9c7f0adc4af", + ".git/objects/e3/341398df4638ecb029d3021f999700ab176cd4", + ".git/objects/e3/3853aa3e3f206160aa80372fb31b621f145a1d", + ".git/objects/e3/44c33ba700760bcaec4ce2c11d5079c194f525", + ".git/objects/e3/4524f48d4173e6b8e6745d92607395993fc3f6", + ".git/objects/e3/4e5c719ff8b03bfa9eda8fe09c0feaf479b190", + ".git/objects/e3/54cd2e815d2b1147f3844d9819a271f5ace1d2", + ".git/objects/e3/70e36e009358e49622cc78a9b51564a3e74079", + ".git/objects/e3/a3248a3fa3eeabeb45c0c255b7e0656d8abf53", + ".git/objects/e3/b795b390c678f81ccf6227696b535b3f4f0cc7", + ".git/objects/e3/c30e5be48a9f2436e8a1a989b7a23e312f6a28", + ".git/objects/e3/c8711ea52bfb77240b0ac3df3614ec6555eeb6", + ".git/objects/e3/d630ea38d26ea8e2176e322fbfb23cd8750ad8", + ".git/objects/e3/de38e1c29e0c9fcf002b2c334430af10d42c34", + ".git/objects/e3/e233ed3684841b3eb98da74edb317743b22aa7", + ".git/objects/e3/e4c55b9f80eea9ea9ac6007426eb2a5cbce5f8", + ".git/objects/e3/e55eab0cf5c37588309e480d2158a8cb12a6de", + ".git/objects/e4/0d71c9c91c52cc7975cdd2ce8d308377b7becd", + ".git/objects/e4/15dc6ebafb25bf7242f6b3e8351b538870ff05", + ".git/objects/e4/206fa4fcd1463e84323692d520876b6be26e0d", + ".git/objects/e4/21cf791608552801b5e9126d74e3debf5079bc", + ".git/objects/e4/3d3f955ecb274efa14399bf9abe907628b0001", + ".git/objects/e4/434fd70d53fb1e00484e1517729714eda91123", + ".git/objects/e4/51d05ac6d895892480ff9c27978f80a3918e80", + ".git/objects/e4/55b23ea8eda92bb045e69848902712e82b48c0", + ".git/objects/e4/6353e819c94f54a0da7a30c2cf31f89eae8ee4", + ".git/objects/e4/6e3b4f6794fd53f4ea1f9124f0a4d837aa61c6", + ".git/objects/e4/70cb06f05fc8526878527ab2b090717e356609", + ".git/objects/e4/793c780a3656c40df0d6332abb4b76e10ddf60", + ".git/objects/e4/796d4d48eb989d946a23291d85d228793afa22", + ".git/objects/e4/7cbd29e4f339b777d4ec6f1a81869ec45d223a", + ".git/objects/e4/89927abcfb122b43f8ca6e163d5286d4084449", + ".git/objects/e4/9a00f91ae0b913eb8292d7bef6f042e366356b", + ".git/objects/e4/9f4ae1c9ca6c30aa7064a3b3434d924693c11c", + ".git/objects/e4/a96c5ed6eb5f09144071ace1db2a23a3630d29", + ".git/objects/e4/afcf5d518cb457d5eb0bac88b14e63126c0d0b", + ".git/objects/e4/c76637f696b27a78a21c93767eabca0102f99e", + ".git/objects/e4/c77891d1229789f3a68cf2118209154762317a", + ".git/objects/e4/ce4b377e22c80cdb5730238c12fb02b126188b", + ".git/objects/e4/d454e8f05ae423862465aaca1cf648c925fc4a", + ".git/objects/e4/d57f86c242d910ce41df4a116de970f37379fe", + ".git/objects/e4/e096d84d381ff3bd582c90732a9e93f78e51d1", + ".git/objects/e4/e83d31f9241b2d8c5d31acc4f43468073dc28c", + ".git/objects/e4/e85ae3376860f58cbbcd5770f4a475e45cbca4", + ".git/objects/e4/ee74e95f182b0fb6032a679a3715cf142ab3ce", + ".git/objects/e4/f3b9f140da052bc19fbf775e602644a4b9edc6", + ".git/objects/e4/f482aac38c64e93d858bd0656b76e2e896c9ba", + ".git/objects/e5/0d4499a59e3f479052c43c7da5784a0019aba8", + ".git/objects/e5/0ef35de519bbad63f47b8f8c543fa589865d4c", + ".git/objects/e5/0f8322a49750dd995ebaef9278dfa1d156feee", + ".git/objects/e5/1734ba50b4bda0f9bf72b3d153833597298b22", + ".git/objects/e5/283291129735b0c8978b41254b9b9617bfef91", + ".git/objects/e5/2e8a3455a55bbd24ffbddb00327c282dba1e45", + ".git/objects/e5/45e99ef1be2017eef67a3949e8798f43056ff8", + ".git/objects/e5/5b81e04615a6f10e7fcc961c51c32257d92fbe", + ".git/objects/e5/5ed718b08d68f2dd12461a7b4e1c22d7166fcb", + ".git/objects/e5/6446c6a0459e41d9478b782ccb5760eced902c", + ".git/objects/e5/6bbb31384864b421b1d948a9cb446ac1db560a", + ".git/objects/e5/6ec718fe27b676b0fde8e24814b0819f43e233", + ".git/objects/e5/79e7f2c901a177d1bb3cedeace79a89b1978f4", + ".git/objects/e5/85bf95f65705ec5342c3e649c6243e80432415", + ".git/objects/e5/949bd5a02d133a8923d5fc5041c2c898575c68", + ".git/objects/e5/97a376f5e3e8a9f83936adc6bc773a1dce777b", + ".git/objects/e5/9e227d5e579bc07022bce1c5568a0c3d2b8c88", + ".git/objects/e5/a4282721a3f8effcee5e9d8efcb9843a8c02aa", + ".git/objects/e5/a614b0f9877fd5f12e16597afa9f3004f34f08", + ".git/objects/e5/b03fed784d8ac37735fd603267cb4d1ee9117c", + ".git/objects/e5/b6d07b0cf120421dda6c620c62da9488a1d383", + ".git/objects/e5/b9a71d07596fe75c966855154702ce21cfe7d8", + ".git/objects/e5/c090cd993120854cec315e8711316bee63e341", + ".git/objects/e5/c611c7d8f179d6561ba64f4712a2dadb36e919", + ".git/objects/e5/c7e13ad9939b1bc6542b2aeb88ac69fd90fbb0", + ".git/objects/e5/da0735cd2e38da6e4035a3e132a2b630c0b665", + ".git/objects/e5/dd6be56d9a75c42573142b0d899f3afbc97ef8", + ".git/objects/e5/dda4df7d0d2c04f91e6f6322446340f43c8e0d", + ".git/objects/e5/ee3a3cd089e5807df89f59ee4d1d33787cbdd8", + ".git/objects/e5/f088251c2596ddcfa5d11dc0038a5bbb3982ec", + ".git/objects/e5/f926783a17897f48a577e002f3b89125c703f2", + ".git/objects/e5/fcee632646ca2d50dbf26d1550e33aaa19dfe8", + ".git/objects/e6/23d2d965de1591e4156a1d175cc1ea298b6825", + ".git/objects/e6/27a88ea6d27db79ea11d1840da7f5595978e14", + ".git/objects/e6/3771572dd8da48c9bce77a7714dee4701f1eaa", + ".git/objects/e6/3f2c07289c8a0c687de17fa40dd3c5c3b3b060", + ".git/objects/e6/428e66cccd364280d4e4fd85bb9ace738e363b", + ".git/objects/e6/42ba2cd4daa011df4f42042b87a201e298f9cd", + ".git/objects/e6/4851566874cad9adbdb91411cf38a092f0b68d", + ".git/objects/e6/4a46e8c9589e9f3d5a770436cedce8971ec83b", + ".git/objects/e6/52ffc729971a522d32f5a89069ea195dda65c2", + ".git/objects/e6/550953d5ee8e00f6101c11069d9c3145252582", + ".git/objects/e6/5fac2de13f4f6c007b0bef744e4f6345653593", + ".git/objects/e6/6571c5d301031be15e6ae57c9425fbb766efa8", + ".git/objects/e6/810a17b78431a2bbcfb9409aee58f6f30c44ed", + ".git/objects/e6/90135e16748d8bb0746ad83caef776a4713a40", + ".git/objects/e6/91c3de53389af16ab7335d6620dfc29732f792", + ".git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391", + ".git/objects/e6/a1e29d87750d9a57a185e7369800dc54391a45", + ".git/objects/e6/aaf74a4f5057d4d0107e282ecda51ab20da611", + ".git/objects/e6/adcee0a94b62ff22cc70b93883e434c60ded91", + ".git/objects/e6/c13568bb8e1ce96fcc45ce7be521f466b97f5a", + ".git/objects/e6/c164aa338415d8ded9ec78e25389d352f14332", + ".git/objects/e6/c57d3cb1df45509086895f6d491ae1b237d405", + ".git/objects/e6/cb3cd44eb3db9b7e15f2865178c6212d34224c", + ".git/objects/e6/ceb21b054e0d6489f3c50e73e886cdfb641088", + ".git/objects/e6/d02ea5d8bde71b1118e03a3f00bc61a3252a7c", + ".git/objects/e6/d3f18978a70688aaf31d4dc159da4e07b9b353", + ".git/objects/e6/d7af2225d6eba2dfd2c37d4a50468c5820b498", + ".git/objects/e6/e597ab51df67fe8281215ee7cf32a2ff9d5734", + ".git/objects/e6/eb22b562edb6a098e4e7680ee30bc1df008378", + ".git/objects/e6/fa1905f54548f95df735bc3edb9d8b5e2ffa57", + ".git/objects/e6/fb8dbee7952e3464c1e4d830c008bbc4f2863d", + ".git/objects/e7/3722ad0fc291e3564657e7d13b9409df721775", + ".git/objects/e7/39e37985de5a2914201a348f87ea9029f20d65", + ".git/objects/e7/40079c0f781d2e66b607ade0818ea9202dc028", + ".git/objects/e7/4c3c004f236fa64cf25412a6b8138abc3a0f77", + ".git/objects/e7/5a4c7866d8553e3bed5fde660b7ed55abac3f2", + ".git/objects/e7/5c69bf9576c69e7ded44313ab71e625e567335", + ".git/objects/e7/605420adb5e25161f8aca54eba2fb33bbd022d", + ".git/objects/e7/66d7abc4367aafe88f378c332db90cf4760340", + ".git/objects/e7/68a7c897a73f78d888aa3a225858b07545ecb0", + ".git/objects/e7/6c4a897490c8657d5d5644df3c33b1723c3c8c", + ".git/objects/e7/6e03aff9fd22876723221cf23ea7ee2bbdf2e8", + ".git/objects/e7/75cf8b441670b24ab0cac3c07ceee5946c8c36", + ".git/objects/e7/8308ba2d72ab6a04ea0a7ed61576b1c19ddf65", + ".git/objects/e7/a26774ade9669767872952e13be37f32720bd1", + ".git/objects/e7/a58cbc61685a3baa934480c1889c353ee9d049", + ".git/objects/e7/aa5af5de7ebe0b4ef9bc8329beb1b06ca12f78", + ".git/objects/e7/bb8a23966706b104d3aa8eb27aeac93e990dc4", + ".git/objects/e7/bd602c6a6eb010aade65bb796c4bdbc840bb58", + ".git/objects/e7/ca6053d8e9ec325f8572e676a4b2c9a91753c7", + ".git/objects/e7/dbb8c2dc9384127ccf7ae97562a30bbec3f6c2", + ".git/objects/e7/e2a56cd60a7fea20c7bc839cfb59db00ac70d4", + ".git/objects/e7/e3da92e94478c6316e176b8f8e6cbc07c76ef1", + ".git/objects/e7/e8784729ccb009086a2a90406f3c4c18d26ef4", + ".git/objects/e7/f5438cf1c106a11fe0bb2c13e4a2f58df8f632", + ".git/objects/e8/1c3c72f0f233c7894889e94b01f0470edb79e3", + ".git/objects/e8/22ff0fd381d929a51c2ccff8d0950384b80b26", + ".git/objects/e8/259036b2af9b7fa6eb9700662f9afd7774e834", + ".git/objects/e8/2ec0f7f7c4c3811417173fe98be616fdb3b866", + ".git/objects/e8/3c944a3d73fdc6bdacd237ce5098ff96bd6719", + ".git/objects/e8/41aaa45077942c7fc8ae613774a1970ce911dc", + ".git/objects/e8/50b6129febc5c968a49d9cc482f77d154551b3", + ".git/objects/e8/5aa0687d9d0212de1701e874679a02a69216a9", + ".git/objects/e8/68370d2aa3eb2152911b94267ce49f6d7a61b2", + ".git/objects/e8/77d7242c21f342fbf55f9c4fb0459f2b907b55", + ".git/objects/e8/84531860c78c67f21b237891e6c1985e1f5a37", + ".git/objects/e8/8b886b29c46b2f95b819dcea520ec33facf425", + ".git/objects/e8/97219820e6c7b7af98bfe64324101bbd6593d5", + ".git/objects/e8/996d685bab9c84205f50ddde103d485996e13c", + ".git/objects/e8/9a5499a1d1e88da9f0a5bf56ceabeccd5227cf", + ".git/objects/e8/a5b9faf12111ca5a7f347920830632a9cbdfd5", + ".git/objects/e8/aa9a7b8839de3f2b8a86a497c923b812c3f49c", + ".git/objects/e8/afecc016b40308c91b96b2521cfa02097ae30e", + ".git/objects/e8/b9d02ff0c8741cb7c02675beaa1d819d45c161", + ".git/objects/e8/be586a17f9b102dfe719fde8031fb79cbd8b77", + ".git/objects/e8/c26897aaab990c79833ec4b72af7f0f99db700", + ".git/objects/e8/de2accc441e8ef5697a7d35c4f468daf21bd87", + ".git/objects/e8/f4ddc87afbd81189cf67e2d94ab90a74f77fbf", + ".git/objects/e8/f9fbceb8e69f85465d91efcdc6973b58e6a887", + ".git/objects/e8/ffdcebea35e39414e2b7c2446d5b14ae01d840", + ".git/objects/e9/0240b2a4a60d5293d6e05f8abc643854e050b9", + ".git/objects/e9/14fbcbc338bcd32c04a6b656bbb65bae0cdac4", + ".git/objects/e9/2ab0ef7cdee6a01c7d6f325418a0d1aacdd0b4", + ".git/objects/e9/2c2bf7d002811b45eb4bd948f382cbc89b3305", + ".git/objects/e9/3686a71edb5e8e4068303154328548a5fc0273", + ".git/objects/e9/390e9fa038487b5fb9f92016f731e04778224e", + ".git/objects/e9/3bbf89b65a7136f7d03cf8f6b169b502fb5cce", + ".git/objects/e9/5799952de73d12605091879c9b68681c46411f", + ".git/objects/e9/5e8577e0464c8ee7bfb1b84cdf779bf3c7a1d9", + ".git/objects/e9/6b13117bfcc933445a415c67cec5cf1046e131", + ".git/objects/e9/6e39c3fa05aa10ace833d8265c36b9f673e13e", + ".git/objects/e9/8503b0dc3ac08c204b729a56059b385e631a52", + ".git/objects/e9/8e9a8e6585fe8b4fd911efd1f6da2127180d31", + ".git/objects/e9/927fbda81fc57f53697e0dddf76ebc91067948", + ".git/objects/e9/9c9bfef36cb15630cfe26916edd03fc2e7f0ad", + ".git/objects/e9/b5cbd982b1a31b4a8a3a64583b854adb64ade4", + ".git/objects/e9/be79102158ea1ba183e7976c71205c9b6be0b5", + ".git/objects/e9/bf720b4dfc1e8167e7c6139d1f55877abe3c83", + ".git/objects/e9/c3147a401389fc7ca79e86ad8a8157cb15bc9d", + ".git/objects/e9/c6282b08639eb44d732c03d0f85177e82a4209", + ".git/objects/e9/d3aeb49f5b2bdd11e3df9cb67b7b1fd33d82ca", + ".git/objects/e9/df1fbbd29d3a39a81cce6c94a836b9f76a131d", + ".git/objects/e9/e2c571430c8b76ece02ce63513647e104fbe95", + ".git/objects/e9/f70070f447a5647b728c2dae82a943a151c0a1", + ".git/objects/e9/f956b1e5c73927ded6d383135c9ae4738e772a", + ".git/objects/ea/03fdeca6f50cda0ef668a3a64a209fc4185975", + ".git/objects/ea/132c6cbcdab9f62b57cec36baaf535a74f9b1c", + ".git/objects/ea/158bb0ae4f97386b4aa7cd980f0ae502eedc5e", + ".git/objects/ea/1d9b8fe78b7f8bb4706246f97bc936f993cccd", + ".git/objects/ea/33f93a1a6618ec3305536eba6e89866924f63f", + ".git/objects/ea/3865825283979fb67ea7e8e21522bd9ecdad9a", + ".git/objects/ea/3e9e0530a908207e68997b3769f9fa34bd9a1f", + ".git/objects/ea/45f918e8ba0e98ef2802ec87e5df80f8d53c66", + ".git/objects/ea/4708ae8eeacfd5f15f9bfe261b441e9748edaa", + ".git/objects/ea/5261228a3aebf2f54dccb8ad9c670aafd9c725", + ".git/objects/ea/75570126f4a54a46102c2fbef67ed34185cf32", + ".git/objects/ea/800c9c7b1083da7302bb964afeafb1f15a1a73", + ".git/objects/ea/83a49cf520e20c25c609bc7a57f5b7fda7022f", + ".git/objects/ea/840b7a4e228381a95cf0cd4db4c919f2aeebbc", + ".git/objects/ea/854f9c7d5d3252ab25a95abd50b99f529b7007", + ".git/objects/ea/a049341443da1cd650c8f811e04dc5d4b68e7a", + ".git/objects/ea/a69430911d0a40cb173390d24f9c1730fa3c26", + ".git/objects/ea/a97155822d0ba2efd8598b02b8136c034e0ee7", + ".git/objects/ea/bee2446cbb428fd4520e4c8508f64e3f3df163", + ".git/objects/ea/c94ee142f8c5bbfe58976367a38a463370f1c1", + ".git/objects/ea/c97ec95d99eb9971a83ac4a7e56c04dd9dbc54", + ".git/objects/ea/cdd495a0e7fc967eea53f114d5460a1844ac5e", + ".git/objects/ea/ce37ceb94dcf022545e5a70c42340e3135f377", + ".git/objects/ea/d009b7ff85dc28298524703a53706cf42fc3da", + ".git/objects/ea/d972ec81b280abca6ed28b35bfc512771231dd", + ".git/objects/ea/dea9d1dfe7f0058fe1ad29d32377be74bf1c7c", + ".git/objects/ea/f4fd9d307ac3d24bb05eca84c499863a0193b8", + ".git/objects/eb/22d96971e982a65018cb6327a6d0151c257797", + ".git/objects/eb/2eb2b6039ec391ab53cb958ce7ac87bcfb5617", + ".git/objects/eb/3dae5aa0404b407d8ede7a7d0576416af03cbe", + ".git/objects/eb/42144e5a4cb8231b9306b73023060edabcf008", + ".git/objects/eb/422e9546d6ff4144511b8b8d96127da3585d9e", + ".git/objects/eb/578bc9fe1bfba0cdf09323c22b4696e47bf57f", + ".git/objects/eb/5a0e96b84760ae075a7aaea62dba6618a7e8fa", + ".git/objects/eb/7083436711a4857b6d5de654e58ad452600b9c", + ".git/objects/eb/720da55ddbedf1aff96e4089931c1e246d8954", + ".git/objects/eb/89b3bbc553528722cb819d12c094ab6f218583", + ".git/objects/eb/8bdb3eeb372c54ddbf103e5f0d4e72bbe7c8d3", + ".git/objects/eb/8c6e2ce3c21c94151b877670ba30f4f8af1ce7", + ".git/objects/eb/a15e64fe68a932b8ce5db20756809cf7eb8487", + ".git/objects/eb/ab8d329977d4153fa71329a92e71d321591eff", + ".git/objects/eb/b25675bbb381173bb51885b653438cc4cf7db1", + ".git/objects/eb/ddf95a899e5b34bd3e781f6cf6e6d8522569c0", + ".git/objects/eb/ebb48ba7900951ea9fcc37c8f2702081a16526", + ".git/objects/eb/f13a4401b34abdb18aa45f379b28844a77eb30", + ".git/objects/eb/f30c28251221ab12d161d4ed63fcad0f61afe2", + ".git/objects/eb/f6c0ca2c20e6dbc69e5277e789eafbafd2a177", + ".git/objects/ec/0522aacfef703a56be27efd1aa5a348882d4cf", + ".git/objects/ec/06870a3d8c018bdbba4bb8b9a01a58fc2b86c8", + ".git/objects/ec/1bdb496d366cc007bc3dbe854cf5df3617a0de", + ".git/objects/ec/1dbf5d1eb10fc3c08f2b54589a3b00438e1c79", + ".git/objects/ec/2aee0e78e1140e1f6fcd759e87b65005cae4c0", + ".git/objects/ec/2d25e96265b3eda5700ec3dcfaefa2288243d8", + ".git/objects/ec/3cbfa77eeb9cac271026db530a3e146b80ce62", + ".git/objects/ec/41ca314a6ee0778186827972fd5adfa00fa231", + ".git/objects/ec/459ee9c8e78db2a8c3028e29c07bece478c319", + ".git/objects/ec/5b2175eb2d6bc2bf38a529efb5ebcc9b5dbfa7", + ".git/objects/ec/6d02264c0f553942c213fbd8812698b5dc29b2", + ".git/objects/ec/78fe592e447776de5dd6f663a1592329de9303", + ".git/objects/ec/79fcf4e9bdb1f31b12778934f3b90eb3dcfe3c", + ".git/objects/ec/8869b19248e6490aa96c87701c6e719d00880e", + ".git/objects/ec/914e1cfc5465da49b94ee1a5b18dfff4427f17", + ".git/objects/ec/99765bf9e297879b5bd467fdf35d1bb28abc64", + ".git/objects/ec/9f60cde89cc32a65d85cebd32303905e1d3dd3", + ".git/objects/ec/a2ca4fb649a331f22d6d946c6eb664145d6b22", + ".git/objects/ec/a893d5c6bacf9203dc7272744f99703152c07e", + ".git/objects/ec/bcc09d7764527eef34aa8ad309d55a688b6824", + ".git/objects/ec/ca16622145b72f4959a108b0e53fd926d3e670", + ".git/objects/ec/ca828748a52cd940bb3912c72dabdd4cffd7d8", + ".git/objects/ec/d6164a9c7e91df2fdf789151ff06798daa8ce7", + ".git/objects/ec/e790a8fe1e2a998d7fd9b586cf02739a0e0883", + ".git/objects/ec/ed979c97385f6e3dae061d4bde809a693ae6c9", + ".git/objects/ec/f4bf04b3d2c59ff14d3c2268b94bb9544ea470", + ".git/objects/ec/fce729763196b60bafc76ec0884f0c831ca52d", + ".git/objects/ed/09cc746c2992e61ec9c10ae4a419b6b8f4cf37", + ".git/objects/ed/0b890dedff6c6c007df03db1b2de3433a93b3a", + ".git/objects/ed/23c57dc60bf04c9f1f0f3c2a46b5d407008290", + ".git/objects/ed/27a51bb73fba425d80a51b367ebfed060c60d1", + ".git/objects/ed/2ab2bffdf193f704062ae44e8080f177f0387b", + ".git/objects/ed/3e72a27c5500b91feec9e267b47b0329b53663", + ".git/objects/ed/4b190ab44d3803568e55b9cefe76cb6db8186d", + ".git/objects/ed/4bedb2926a5342b369218274cda22997ac862f", + ".git/objects/ed/5067c9c96fbccd3e0a107edf52f56815aa8600", + ".git/objects/ed/51cb2f3239d271e7bfdc1ef750fd9a755636c0", + ".git/objects/ed/54a79460a80a6a798f689446696eb1b525e418", + ".git/objects/ed/5ba011c995c647f5aa0656206609b271ba908e", + ".git/objects/ed/6e0f46f37eab96c485afdddf1f12153977e8cf", + ".git/objects/ed/809fa83ce3b5be8b6cebd5e8487a648e231aa8", + ".git/objects/ed/8f3531f68d6227d88720f40cccc39345dff9bc", + ".git/objects/ed/b77807be559d01539492d20e1fec20037656ec", + ".git/objects/ed/c6ddc72136c9ec12977e6b792508ebe5ed15dd", + ".git/objects/ed/d418c1d1cb89eecdfe5a40712998a1e6288cb5", + ".git/objects/ed/d927cdcf5662883fa457238c1a1f841c1a06db", + ".git/objects/ed/e9237ce3f96424c90d0e1b9547c7f38e6854a3", + ".git/objects/ed/f1fa4966ee8e4b5d133612ed2ebf8e16ef78c4", + ".git/objects/ed/ff90dd75ecb744e19553c49015dfbb33a5ef78", + ".git/objects/ee/013e94564f3bce0cf2c3fbf29807ae7d52a65a", + ".git/objects/ee/03e44029c403ae4337dfb6a08c28965a78e78e", + ".git/objects/ee/08535d12c44006890bd38c3e13d48056c2c2f8", + ".git/objects/ee/0f3bb1843904709e1a5c1001a77abf6df77b11", + ".git/objects/ee/1bef36a831530d638e644b11f5bfc4ecf15b05", + ".git/objects/ee/2c17d3a9b46e8a3e1b438be6f18f93813cac7f", + ".git/objects/ee/2f7b978aca5510a360b1c3c2afd7cb312fdfdf", + ".git/objects/ee/322ce1984ab9c6df0ce1a459dc7026e5bc597e", + ".git/objects/ee/344ed23b4d5cfa81f10c4f91bbbb59747ced35", + ".git/objects/ee/52d6bae1a216756466923f487f184a62001a43", + ".git/objects/ee/53cc3ec82a1a103e8c2d23f2529b8b3ab22ab4", + ".git/objects/ee/542f157591d81938bac8e7a0f79f7c99191f7a", + ".git/objects/ee/5aee4a069d45824741aab88f1924cd2285a436", + ".git/objects/ee/642a795771086bcd505916f34f96ccbd4e95d7", + ".git/objects/ee/700a965c1e93b83918261ef5b7d59486b0111b", + ".git/objects/ee/84f8cdf108669307eed2e6fb99f57be36b9f53", + ".git/objects/ee/894d6a7812957b50b0f76d4df3def5eaa4ddd3", + ".git/objects/ee/93f9b3b40999961d6700116b719ba7e4472400", + ".git/objects/ee/97702e35500f5a02c0a9148179c9c4c0ac17d4", + ".git/objects/ee/9a5648f46d0852e06e6545581b7b6eefd15b06", + ".git/objects/ee/b88ef29730f9389a65c756c8cbe2112edc53e7", + ".git/objects/ee/bacb56b9705c550ae81546cdf6fb201748e9e8", + ".git/objects/ee/c2d83232a6fedb7399f2e32238d46307d4c7f1", + ".git/objects/ee/d7764c72fc84221663a0b4c9b8b170c621946a", + ".git/objects/ee/d90bf07520729dc54912dc254666d71c9d28b6", + ".git/objects/ee/dbbb37d90e1074efb2e16e2c8ac97ac117a15e", + ".git/objects/ee/e0881ea2eaa4c5c1d18a479a8b7803d72ca8a4", + ".git/objects/ee/e978c3c9809dea4ba5a413369e03d5ccdd1164", + ".git/objects/ee/fc32d18d4580d3daf930843fb5062a0069dc6a", + ".git/objects/ef/0036fa183578278e6b016b7fcbe1471e651235", + ".git/objects/ef/08d932ad436ca1de7a3bacfbdce922a4ecd9c2", + ".git/objects/ef/0ca410762afe3654e69039003ff120e058a8cc", + ".git/objects/ef/11d3371303a8551157407f1c6ca532960318eb", + ".git/objects/ef/1fd2d7b7e4a3c3d2ac8c77b941f342a2b2ad05", + ".git/objects/ef/21dafd5290498e6a1f085a1b97db02b81d1ffd", + ".git/objects/ef/2b900f28bc29b6960cf3261659396b345d70a2", + ".git/objects/ef/2b909a8cd1341e0120b3dc902aa7376edf1b9e", + ".git/objects/ef/2c087652b2f52ec69530deed745ac535e2d414", + ".git/objects/ef/373f10c8e4278dd655362ecaa97ce2d96c6e67", + ".git/objects/ef/490c763d1f91f85ad9c41adfecc585ec02f416", + ".git/objects/ef/4b9146a5f81bddfd0d5dd6cfd8057ded8afb58", + ".git/objects/ef/70939c42fb4ec6c97483663d3427685931b2f4", + ".git/objects/ef/7ced4a1e3c699bf9e7a079f6a69bafc39b0e2b", + ".git/objects/ef/804049edf6e6cb6f074823590e306c1ce0d837", + ".git/objects/ef/89f7d7e81c3ee5706262c43a62a0baef4aedfc", + ".git/objects/ef/96939f47cf2887d6d50d5ef46f618a219a70e1", + ".git/objects/ef/9b15353a0866cf38f4f33fb180cd19ba6ff2bd", + ".git/objects/ef/b4175fb30d24558718f2913232e8d66326c908", + ".git/objects/ef/bed8b4526362d9b4eb4b149a081e8ab0d590d4", + ".git/objects/ef/def9ea6d073f26622ffd2528cc964aaeaac1ba", + ".git/objects/ef/e83d67356f2c59df114092a998dc0c5779b0b2", + ".git/objects/f0/0011a8325fc59eb02e9acffb4f01b6bffba27e", + ".git/objects/f0/0c1cb11b496d00e92a48fecd42f364548793fe", + ".git/objects/f0/0f404d253005b5dcc7341087219a3a66c5a3f7", + ".git/objects/f0/1e32ccedd54805f8d4edd5af6ab64137b3a930", + ".git/objects/f0/276a0515541aed622162eafd275de5c28899eb", + ".git/objects/f0/292234f4606df65714d3b368d1f95926db78d4", + ".git/objects/f0/3043d2e32f3be2b86e6cc3bdb4a29205a2ab15", + ".git/objects/f0/34c2ff133fe79b649f6adf99eb4670ffa54089", + ".git/objects/f0/3891c636026584eb95b7bfe0d796e10a0f8d17", + ".git/objects/f0/42c072d9674894736cd3eb2ccffa77b4c7f3f3", + ".git/objects/f0/6c7f6227ef8589ff16089698cde12ceaafd8b7", + ".git/objects/f0/79b3e2f2c45085421fc11292de1529cc5a7d62", + ".git/objects/f0/7fb671b0908a331dd918cc9d19acc289e74823", + ".git/objects/f0/873ec11b28cccfaa5c7b8aa8fe88c3f72d2396", + ".git/objects/f0/8d27987b5153e411e73b77cb570ff5415ef2e0", + ".git/objects/f0/9ad85ace283746e27171650a11fbc345e81a9d", + ".git/objects/f0/ba9fd4ae9158725ca55f8d2b9aff1e996dff87", + ".git/objects/f0/bf7601be7028da76edb26af5426ab713a1108e", + ".git/objects/f0/c3f80b7fe52e7b66cf9e0ad2d149a8f19e8916", + ".git/objects/f0/c8b8756a6b5b3e9c6c01609de5541a7ccda0c0", + ".git/objects/f0/e4020ba89e84f7ab90b063d9ab229d06d8aaf8", + ".git/objects/f0/f1ca6ba313190d825fae061f6fedc483cf38e3", + ".git/objects/f0/f52828be1b0d783e3af8d2af67d5f3377f5cd8", + ".git/objects/f0/f9fbc56b7d5a7a750ad85d099dc15046faaf33", + ".git/objects/f1/0940afe17b0fbf6033a8397ab9e090713d20f4", + ".git/objects/f1/0a169581c987e759f906550c7d4c4aff3abc0c", + ".git/objects/f1/13506a057a779cace4fcaace2c2d5070785d56", + ".git/objects/f1/2b8c6e5f1cdcb5d3aa04dea59ae8277d11936a", + ".git/objects/f1/3e23f6a1ebab0aa1a4dc10311e3d3cf1443e67", + ".git/objects/f1/4ff2c672ce39db370cc0ee53ad7ed600701fb6", + ".git/objects/f1/5a5c86eb194f44441c0b095a7728bf23a7d3b3", + ".git/objects/f1/619f342ca0e845272dc875c7473a889e7f658e", + ".git/objects/f1/6440eb4586072d1d58ad985c28af3b58338fd7", + ".git/objects/f1/6cff43fd0fe2cbca3070933d951fa477768b2e", + ".git/objects/f1/7e2e25cd136d2c66d9704e1aa3e3007d68df2f", + ".git/objects/f1/7ef99592b49d2ca8b17f6b64caf44a67be5b03", + ".git/objects/f1/852b00d41d0ca0b1c08625415833629088dbc9", + ".git/objects/f1/8895e99bc3605dfde2219d84317c2005a13aad", + ".git/objects/f1/8db2d9f1c1757b0dc4a7976a7eab0bf4fad240", + ".git/objects/f1/911d79965cd0078316d56500ec7553f8ee46da", + ".git/objects/f1/96dafd3060c83be67a800e10b6b898196efdcb", + ".git/objects/f1/98f456b47c6b8876875bf86fdae2a3c235fcec", + ".git/objects/f1/a094834f091ee76b167c4b24afeffa4eacb45e", + ".git/objects/f1/bdbebee5286c0cbe1c2bdd75ec0414b8829410", + ".git/objects/f1/ebfe3a60d30f1331d240ae4c8514cf749c4797", + ".git/objects/f2/08af9ada21c314c524021974b2214994011f00", + ".git/objects/f2/23593611f7c145e6f8ac65a2a916d77f2a1573", + ".git/objects/f2/243879b58527c982d8a76cbfc3baaf4a45a66d", + ".git/objects/f2/34e2f6c6b6f8d782f9d1766aa31e3e78e0944f", + ".git/objects/f2/40b32d9c75104a12e02704a35b86c8c4cd2a7c", + ".git/objects/f2/461aef5f2f39268bff89f27b2f607d8a7d52ee", + ".git/objects/f2/53816872931a1153c51d8b545e8a0ad25a806f", + ".git/objects/f2/54fe3e92d1e69da4df8dab4e3f435d76ccfb2c", + ".git/objects/f2/55864ee5046a77979556a3ac0e9fb24774693a", + ".git/objects/f2/55d80c3f7a4e6c9563aca5e4521794f94025c5", + ".git/objects/f2/5a273bfe3e59576ee7c767f114adc9c371a673", + ".git/objects/f2/62cc6c7abeb77b3f7b7b79a4564290d2fde559", + ".git/objects/f2/63430b4626e55e7ca26f585f6ae6a35363e114", + ".git/objects/f2/651f77e09878315986525b2120860bc9694516", + ".git/objects/f2/6558fac759564e359b6c0ce163041fc9428399", + ".git/objects/f2/6e7d3fe6b8fada1b16895727f5abaa6afa0013", + ".git/objects/f2/71276c15b867033a885b54abe41acbb20f3a97", + ".git/objects/f2/780a43ea22a922da809027d78f3883bfa3fd26", + ".git/objects/f2/7b90b99c9cdbc5cf2db1f6e0228421fedde073", + ".git/objects/f2/86a29db2da210b358831e16e4fe2284348a45c", + ".git/objects/f2/8f6b64964717de620d440a41a699237a562243", + ".git/objects/f2/90bac639936a8f0465ed713cf286486b8c1e10", + ".git/objects/f2/b3780605af58a2987646bc81329d381a35c780", + ".git/objects/f2/b3c618dd767549b14026ac4e5c2db022809f96", + ".git/objects/f2/b55e5d184033ecfb8e55e8a3fa5efed75d747b", + ".git/objects/f2/badde8a1297be112049d01d387f1bc125aa325", + ".git/objects/f2/ca97af56221b4443d778976a7e9f3d8044673c", + ".git/objects/f2/cc74608ac8d7da73d79ca8b093cc6eaf9ca719", + ".git/objects/f2/e3ba253eae7d022067fa7244cb0eed37d20194", + ".git/objects/f2/e7bd79b056ccee0400607cf78cc289bc330ce4", + ".git/objects/f2/ef55f59457ee52886e04cb6d9ee1a0c0541603", + ".git/objects/f2/fb77f7809806d3e4798f4d143c40c842a5c552", + ".git/objects/f3/085d130aabb2d3b4d20f6f7c59e82acce74561", + ".git/objects/f3/088fffb2e6201813c5b5b1ca9c780df4ec17fc", + ".git/objects/f3/0b9473850aee161af8524a8c2ebbe73b34d27f", + ".git/objects/f3/170192a2a0805682a891e6a093fbf1987cdd36", + ".git/objects/f3/188a0428d673a3d483649078b9ab5c3ccc45a8", + ".git/objects/f3/1c89109e1f96ffe8753b8d3c1f2321ce8cead8", + ".git/objects/f3/1e48c26079941a5b766ab3c63c199d8591fedb", + ".git/objects/f3/2809b5556234745bbd64345001a4cd0754674f", + ".git/objects/f3/2e87b16e61fb8aee72a69f9b3628470cf888bb", + ".git/objects/f3/32aab5c20f9c7c9a7eceed6b6b47f127200b9d", + ".git/objects/f3/34746feccdb22f4a8f1897fa00a64389f62865", + ".git/objects/f3/54d43f71b00cd3b513f58e40cb989bea0bb044", + ".git/objects/f3/583647443b34ea31760be0bcaa67cea5ee72c6", + ".git/objects/f3/6496a4541ea26312f23bd0e7d4ef57cfe2051d", + ".git/objects/f3/65eb1cf05541408d61974cb8d2deb8f2e746f4", + ".git/objects/f3/66f27f6c7f765315f51a04e08fb66093779a09", + ".git/objects/f3/6b709f4772877f0d40c6710f3866ecc0b2a541", + ".git/objects/f3/6da20149fa6bd1b6342930496317487ac48a7c", + ".git/objects/f3/74fb292610818533dbf67d08a63227242cd765", + ".git/objects/f3/78a28db04584423d18a3782a152e8aa5e31266", + ".git/objects/f3/857bd6d2b7c02246e705c50ef71bccfb34c464", + ".git/objects/f3/a5f4253d30fbd82457936b3d0d95e79516196c", + ".git/objects/f3/a5fe25b2b8d738b07a9f695724923a16457d50", + ".git/objects/f3/aee953ed4498e7ea9a2505b8ad7ec6b062bcbc", + ".git/objects/f3/b238fa49711785809b4d5c04ae4602c61b415e", + ".git/objects/f3/b6fd9b7036da8a42a11f7579e4fe3ec90ebb45", + ".git/objects/f3/b73e08c204482864acedf3bcde878d3ba00dd5", + ".git/objects/f3/c50f8ccdd7f5b9540b69f742dd343a9eef47eb", + ".git/objects/f3/cca35c462a617d1fc811d0a252c929a1fb4ad0", + ".git/objects/f3/e758bb3aa9ffca8522123e88d00600f7fd4b19", + ".git/objects/f3/fdd8fbbb632c2fb860b4a6e213cd564ce0e795", + ".git/objects/f4/19ada40341ae32943c5754ca23d4d5f05fdc1b", + ".git/objects/f4/230c51242b85a6a710a753d8978d9c904ad6c0", + ".git/objects/f4/24794c839938865aead6315359748cd8dff19a", + ".git/objects/f4/24c7a2ce3958f8dca12646b43549d99e3dbb7e", + ".git/objects/f4/291929b41519d7c232ccfbc044e73a8d02e004", + ".git/objects/f4/2b0b4be90df197693145efd1b64e6fe7c243c0", + ".git/objects/f4/2e442edd7db72f7661bbc7b961cea9003a0774", + ".git/objects/f4/381d947fc87e8d68780b4ca88c7ef817ba9f04", + ".git/objects/f4/3f14f29a8ed1bf85e4321180a61fd83dffce53", + ".git/objects/f4/57ccfbf8e56cec9918a55ab00fbc252072027f", + ".git/objects/f4/6fd5c8999d49e1c7ea818ecfbf88e24852e242", + ".git/objects/f4/81a13e167c0e5e7fe57ec98dd40e8dc1c3ba0b", + ".git/objects/f4/98f37029b6b8882a7560333df84af3f8753bf0", + ".git/objects/f4/a9f5e044fba9e0bd8c8953dd59dd206eefc125", + ".git/objects/f4/ae335f47c20f8ebb83f879784a22eedd9aafe4", + ".git/objects/f4/b1730d633450ac0f58324a21d62db8916ecf20", + ".git/objects/f4/b479800d303023d20ce5364b58d92087572d63", + ".git/objects/f4/b784dc2ee9654c0ad97e0eaa9fad82aa49ac66", + ".git/objects/f4/bdbb7f6a264dc6738d07195165e452449c9b7b", + ".git/objects/f4/c8d51ea022c55bc5f8ef7f03ebe9228a1d114f", + ".git/objects/f4/dcb3a1f392f1c9876984afd88dd459cae42dd9", + ".git/objects/f4/e12e66fc1218314e6c4a1feedeb997497cbcc7", + ".git/objects/f5/12b7e0aa4809a842a19c125354809d560a90bc", + ".git/objects/f5/281bd6bf946e36eb13bd5abde2a901b98c2884", + ".git/objects/f5/2a97424b9e40e183ca0b6fef392fa572811edb", + ".git/objects/f5/2f806100b4946646ca720855efaee7bcbf496a", + ".git/objects/f5/32e549a82ac88b94d54a882a8f4f3c1531e77c", + ".git/objects/f5/413ea8a7a4a38075666640268fb5bf166c9e1a", + ".git/objects/f5/425038677d93362cf7666e3268006d19c2598d", + ".git/objects/f5/4366aaef4b6d36e267c128a6f46eee22b27037", + ".git/objects/f5/48fab5ae52db4c87716cf64ed8bd2871088c24", + ".git/objects/f5/4a21d0205fc29d37b56829a8aa5035d516657f", + ".git/objects/f5/53299e3fecbb967383339e70921cdb29c41404", + ".git/objects/f5/5f335451f3961dc59d9cfeb4af6f5269776175", + ".git/objects/f5/61c798539ac7e67fcd335dd9605203397ce595", + ".git/objects/f5/9adb81ed04e0163b050b96ed48361215006dcc", + ".git/objects/f5/a345eaf6e28d78009fb77eb10e871c6379f8f7", + ".git/objects/f5/b13e92766ae1f4933f07387012b1b8724b5e0b", + ".git/objects/f5/b23c998fbd6bad02ce1db3256417004c07c2d3", + ".git/objects/f5/bbebfa3da5416dbcde7902fc98791ecfce0ff1", + ".git/objects/f5/bd0b5c9d00e3c35fb8a268ce1cae70cd0fcc4c", + ".git/objects/f5/bf0bbd9c427b87a3c2e0f3cbf8880bb2cbba22", + ".git/objects/f5/ca7ef7bea5460353f506da4b87a1e74bd37dfd", + ".git/objects/f5/ca948213273ad9d88c9e22022d735ccd78e554", + ".git/objects/f5/dcf13a50e40411c6eaa5ed58153bbca0e1aef4", + ".git/objects/f5/e6554106903a5196e1c16ee365855ee8dcb9ca", + ".git/objects/f6/11fc02443f61d3fc9712cacad9328203caf8dc", + ".git/objects/f6/133b6444426f4f4c27e93ae22fcc2aae4dbbb1", + ".git/objects/f6/1a00ae7d1a825bb175d3f4fa0b37256f509145", + ".git/objects/f6/1f602854771fe3c26fbd45cf6a35a096e41b1e", + ".git/objects/f6/265b721eb4f24daf541abbfd8626657ccd8579", + ".git/objects/f6/278178ee445d24d8d0e74ad04ec9c1703079b8", + ".git/objects/f6/3081c439228e3f0325189e8cfb74e383e83848", + ".git/objects/f6/3df7a0b747df78b10fca41ef0c0e4b59591f20", + ".git/objects/f6/454aeb1f9f19d4cbf461d5fac297a86a9a16a4", + ".git/objects/f6/479cd6090bfa96a229364ff8000d36d864f239", + ".git/objects/f6/4871b3ff8887858be33d1a2e9b6c8d10715f0a", + ".git/objects/f6/5375de56ec57d307bc3dfe585d9f3b26c641ce", + ".git/objects/f6/574e56a0e92a5d23ebadae39450a9e8e8b5599", + ".git/objects/f6/75d97921d9a9aeab14a8288f672c4c95eec9eb", + ".git/objects/f6/983b849421ac65b4e5b4bccca9eb0aaa1667bc", + ".git/objects/f6/a54afdf7bcb5f55417196e94e8a8fd47eb46c9", + ".git/objects/f6/b5edac2d060332e2c375ab3eeb39de77566981", + ".git/objects/f6/c8b01143a36e62cc5b069dadb4014d6c45c788", + ".git/objects/f6/c8fcc3daf663acb810bacd0029e2a2df7d7135", + ".git/objects/f6/dc37988346e4b36479105cc1a20f75488f187c", + ".git/objects/f6/df06920b3dd283cfa11da5146d8fd4e65de3bc", + ".git/objects/f6/dfa833a87015eceb6e47e22b92b023c371df92", + ".git/objects/f6/e253d2421e6f726f143f9dc6d8a35434f6b13d", + ".git/objects/f6/ef30cd3faaa8b075a8f354a51d3093291e1451", + ".git/objects/f7/07e24f51c55ee9d71853df399a5a1dc410615b", + ".git/objects/f7/24af1ce24e66caf31ced56b340e756b164f31b", + ".git/objects/f7/31bcc1395792bf57baa29ee7bc5359380151ad", + ".git/objects/f7/34bc4a816a7d698f9ae55387794024ae7ee5da", + ".git/objects/f7/3e4bbbb6b1644fd609fc39c738d1b9eda9032d", + ".git/objects/f7/400330d41eb58c2a8689e4217640d23a209d57", + ".git/objects/f7/4143e1f9c57d769ab0e26a5c3abb3666ee0eca", + ".git/objects/f7/438ea045f759c44970460eca0b916d05b83c17", + ".git/objects/f7/5040b01c41763d0879d1e32f78a358dd0a85fb", + ".git/objects/f7/5e58bc7fe4a911c8c8f8f2ff3b5128ff1ba687", + ".git/objects/f7/6024489dbd64b86eac0df01d3c846f723de266", + ".git/objects/f7/6d6ea8ab922579720e8ed1d48cc7b15da88c60", + ".git/objects/f7/6e3a68fa79b4827e4a109e4c745bb226d7c9de", + ".git/objects/f7/7179e44419db49c9f88ea0c17c9f666001cdd9", + ".git/objects/f7/74a78f2918b03f0714337c970af57c31955938", + ".git/objects/f7/77035451445d5271a7104bc0ce13099a834d8e", + ".git/objects/f7/821810068155049cd157defe8cd6a102527a39", + ".git/objects/f7/a424aff96feb256b9c0cbfee68dae598f50f85", + ".git/objects/f7/a6ae01fb91c60ba1e8d05dedf211b235fa4220", + ".git/objects/f7/af4405c7ab42b118f795bb65203c6a40ec9e7f", + ".git/objects/f7/af881b2997c3c89fd700385e6fc5f9400d6130", + ".git/objects/f7/bf56d3d21e0f5f4f7bb41b75f3f1f2c6cfa0a2", + ".git/objects/f7/cca0059bfbf0705a955f80f74db9fa6544d4ec", + ".git/objects/f7/ce061248792941e5594811c2f9444049e1e264", + ".git/objects/f7/e22f29a5de44277dd155cadef71da43d9a2278", + ".git/objects/f7/e9bf6cc8500ac579d86755eba357fcaf90b514", + ".git/objects/f7/fce9e83b0ed14946f299b0b6b975a1e58c4bea", + ".git/objects/f8/09bbaf8fbaffe62e88dcee709fe7c96f1a3520", + ".git/objects/f8/16a119f17a90fd8b0372acf660e91be0120c8f", + ".git/objects/f8/1ca008bc0f6b75f97ff39398a1783d23f3cd96", + ".git/objects/f8/1eeda0020342469ed7b808d8502d40dc1358f1", + ".git/objects/f8/41caedf350ded04637878b8cb51498b94d7ed9", + ".git/objects/f8/611cb8685716da0ef7b035934716496c93adbf", + ".git/objects/f8/6260ec31a17034d0a8eee3e3da688ccd1533b7", + ".git/objects/f8/657449bdd150e3c17d011fc378c66652d3f299", + ".git/objects/f8/6577caf7e6d5ba59af90bba2fa7d641813bef8", + ".git/objects/f8/8101e8ef3d7707b1baa3bcc9b36467b11413bc", + ".git/objects/f8/b6259c0e8823708ad73020ba45109b1b4643e9", + ".git/objects/f8/c76e37492508abc98309cf83b0a7301f4dcc39", + ".git/objects/f8/d7d3ef65a1fba5bdee6dcfc7ec7ca05dd37dde", + ".git/objects/f8/d98fc855e4cefc65ba697c4a1e19437ab6a558", + ".git/objects/f8/e0b14c5a1e389b1dc4fe2367db658095058e88", + ".git/objects/f8/e9c7122f390d1c35c2d237259a9ebe90b3731e", + ".git/objects/f8/ec83d4bf515b9aeebe71d26694ecd911544990", + ".git/objects/f8/f1a1c81a9581c57653a6bc81b962dafb2317d1", + ".git/objects/f8/f50f27b565e80af02a1bf08ee84a6f04fd1720", + ".git/objects/f9/1ee401db59cc08580a957c8076b00a0973d7a9", + ".git/objects/f9/2b7ee4d40b32846126d3012e99667ff4f18206", + ".git/objects/f9/318877b4e786d0a0ffac7a4b10ef5138fde917", + ".git/objects/f9/36d350100b7ec3bbaec1e0fceeda6998f02adc", + ".git/objects/f9/3cccdebaef5c96901169735aa337f7377118c1", + ".git/objects/f9/4a6610a092fcc52e430cf1b89ca4f01c67ead7", + ".git/objects/f9/4cf6728fe1d624d3f1c7042d03afab606e2fe2", + ".git/objects/f9/50cfbd443437e0aa60a3e2082401574ad32f68", + ".git/objects/f9/5fece1a3dd27dac34babad5b486939792e6b7b", + ".git/objects/f9/63fe62a9d39d84d6571adcc8a5136eb5e5a7b9", + ".git/objects/f9/657fb6896848e633cb2ffa24e9a5c1b8a92a3b", + ".git/objects/f9/7153049c3c3b973c054a4dc303ba0a3db22043", + ".git/objects/f9/85675bda8da431514ca755d35c737244da15fb", + ".git/objects/f9/876c8a41915a2516a79070ee650ab530891051", + ".git/objects/f9/8d823cb5f9e4c75b2a1bee0e7a4a48ed42fc19", + ".git/objects/f9/9a5ddff0b108864b1b7ba924ce09fae561f527", + ".git/objects/f9/c03a51fe731476cfd39b528656b7f9d7648789", + ".git/objects/f9/c52ec64766bab5f1253363fe34067fb03af743", + ".git/objects/f9/cb98eab2e2e53c1ffb25e5dff646db81c7cb5a", + ".git/objects/f9/e5ca9afba215084c9f2880c3694acda93a8972", + ".git/objects/f9/f2ea8fde7f46e0c855d5dd133ec4e16ec965b5", + ".git/objects/f9/ff91990209a1223a9b140c363531eeacd7966b", + ".git/objects/fa/1d3a31df411fc016d82cf95ace668a7016df8e", + ".git/objects/fa/25c5c9246f8616354d01a8abf6702a6f5891d8", + ".git/objects/fa/35fd3841620b324f8e39072222de2b9f07de71", + ".git/objects/fa/38ea2d5352794889bc29ec08f37713058f661e", + ".git/objects/fa/3f3c44e0caab4953d324b2f863f4f04333cdef", + ".git/objects/fa/436e2e9fa3c664d79174bff67137844d428738", + ".git/objects/fa/5b8071b223c02bd2732f627f8a00089e8167e9", + ".git/objects/fa/71dd56369f0dde1f4f6382dc053b1806583fd8", + ".git/objects/fa/76f497e2e5881ef71c05073f52f4d414525b60", + ".git/objects/fa/8ab34221bcfdf6bc032e9e48c1e9102f355226", + ".git/objects/fa/8dfd6c378e69c5367e51a5483beec0ea50ebdd", + ".git/objects/fa/968bf8d9963abb8dce1a71e5963b75a76da69a", + ".git/objects/fa/972552abc365b52941f280bed8bfeb2fbd38b0", + ".git/objects/fa/9b90b0e8e4f9a604920c7809bbd133eef83a64", + ".git/objects/fa/ac32a7a9ce7f38546e81bb8e1d53209b48dd4f", + ".git/objects/fa/bedc149314761e9a9b59c6f0aa04ad42809362", + ".git/objects/fa/c1415cbf7aa01bd668155f4ec699c6cb75b749", + ".git/objects/fa/c268cc3a535b7e7488ad410df6d5c7bfaf9cde", + ".git/objects/fa/c7497a0e70a38ffed1772a544615b42571aa0d", + ".git/objects/fa/cda986c2d9a3d203722e8cc8dff745c6f110b1", + ".git/objects/fa/d7638d0cf808c7987ccec3b17e658655d0c404", + ".git/objects/fa/f068dbbdfd2dbed7d94a89fe8fe15b73b7f1c1", + ".git/objects/fb/02446950cc18b6fb7585429f69041a285c5640", + ".git/objects/fb/0c5faee30f0e170c54327b6e901cbfbc8e3b15", + ".git/objects/fb/3dc3c64d3cea9c7249c3d8e1ed010ea81e6979", + ".git/objects/fb/41b8fbfad932d826af929d8c4a674a205775d5", + ".git/objects/fb/49c631596c5615a963c3dcbadcc1cdd4ac70e6", + ".git/objects/fb/526e44ac3558de0e977c1022f95d9ffc59cfbd", + ".git/objects/fb/8a7ec48e6a0bf738b5859ae3d94a97aef1f32d", + ".git/objects/fb/8e1cc615eedbbba8075a5c592e0a64f6ac3a5f", + ".git/objects/fb/8e2949b07458b38861975b371e849014b07b94", + ".git/objects/fb/9887c39ec29609c0389d046f0448f308a4825f", + ".git/objects/fb/ba25d3ddc11794c48f26fb17d38f13fe9575f0", + ".git/objects/fb/c9530078667c6c4f073a5759bd2593871cb2fa", + ".git/objects/fb/ecd26dc450e459641032d8c1e5cdfd3c770aa5", + ".git/objects/fb/fbc18a68b7a7002be255b34e1ba787039208b8", + ".git/objects/fc/0bc390177a08b11fb67a12bab44b36865a6c2d", + ".git/objects/fc/1a8ce86a98642cc913f2483c7827ffa90e9dc6", + ".git/objects/fc/1c3cdbb931813f774312f538c52f9e36833fde", + ".git/objects/fc/241fa037e862d1a755a59c6551f5490216f702", + ".git/objects/fc/27f34bea943d5331dff2e0cd54ee0d6fdd8ae8", + ".git/objects/fc/2fe90392e989da796358dbe68a5b73764b2d6f", + ".git/objects/fc/4ac7cccec440e41d493839613b5069a0b294b9", + ".git/objects/fc/4f8b704a28ff021373bd9c628dbf29e33a1e79", + ".git/objects/fc/51779e83fe71073658b92ff531321941b45fa2", + ".git/objects/fc/51c13233c49528e914a75e1493164678a7d5ca", + ".git/objects/fc/610dc44fc32b3f10afb2f9549dcd802fc732c3", + ".git/objects/fc/66d6378df04bde130981764f41236dccb396be", + ".git/objects/fc/68a3d1249dfdccc84e94bcdecaa56a1d80f063", + ".git/objects/fc/78023eaefef2fad2e561e321b1d45cfba495c0", + ".git/objects/fc/7f3c9132d43cb57b190a24e22a6c41a00371e8", + ".git/objects/fc/848d149bc807aaf1184c7190ecf846871a5805", + ".git/objects/fc/84dae93df2b81ba1e713fd6af05d2c6355c514", + ".git/objects/fc/87fae6d8e1e4f50ba87268f2b0498b3c02d838", + ".git/objects/fc/9d33dae80017d5eb3a74405cd957aa633795d8", + ".git/objects/fc/acf0e54db754aff225b6a52e4aee19150c11e5", + ".git/objects/fc/b831ac91bcf240ac5ac85c28ac15ee7aa6398c", + ".git/objects/fc/c19786ed93e8cd30cff521f805b79441e7b819", + ".git/objects/fc/dd4b09c34f04454aaf0f3cfa62d7efd1074698", + ".git/objects/fc/fec077127e7a10a088d5ba8e7b31ec4d2449bb", + ".git/objects/fd/032390bc412389e375a9f5f0474c8676523ea4", + ".git/objects/fd/0c141b8c603340acf62b382479ab9a005f8893", + ".git/objects/fd/0e4f03d83769daca9c7b3252ffcb14bce29960", + ".git/objects/fd/1c345eb7e2693f4fff7d3416f319f76c462643", + ".git/objects/fd/20f808b61bc679f2194600fb5426c61372656e", + ".git/objects/fd/28fc25415757184e5f9cd1a4d1a4af2ee1ff4d", + ".git/objects/fd/35b7aaf0776a2672f860e6dfad121663065fc1", + ".git/objects/fd/52cb8cd1623c815ef2f4062fedb0dc0b3d4b1a", + ".git/objects/fd/580f390e0aec47dda1692ee8733f80478085f8", + ".git/objects/fd/5fa763724715291b5170e649c861ce67cb1e2c", + ".git/objects/fd/7280da9b9599b88344a218a71498be79991415", + ".git/objects/fd/8a6c1e1060057c03f27374b19dfb572a3933f4", + ".git/objects/fd/8ebdbcb5b0c2777039d7b9992ded161305187a", + ".git/objects/fd/a18f95e3ac8e34555a6b004c1ea5f73eff27eb", + ".git/objects/fd/ad36cb9a5b9de3090bb582b82767c0a53c4a7b", + ".git/objects/fd/d36be68d21df4634ff68ad516b125200f88ee2", + ".git/objects/fd/d990c95adf75fb6224889f3407985661c87660", + ".git/objects/fd/e7610226b0654b2383c7f5038661a29a498396", + ".git/objects/fd/f9d05403065ad3a8b4d69ed2bba8302bc11b7a", + ".git/objects/fe/1ae1a8415cfd5318b8db4d4f853a5ce2e4b499", + ".git/objects/fe/23e76bb95d2ebc7fd03d472d4bfb817dd7d26f", + ".git/objects/fe/2b0a303d99334228df7a2dc4b6e81cf966695c", + ".git/objects/fe/31d065d03c702d71aff3133285a59b2bda64ff", + ".git/objects/fe/32fd21d8131ad599127efd5a182701144c274d", + ".git/objects/fe/334dad0f6da681ff0a7ba95bf9f574a5e41fd3", + ".git/objects/fe/39218baf826ca38ad89070b8f4f759feddf35e", + ".git/objects/fe/414da20e3de08ba232e365d5b51c2e24a54c51", + ".git/objects/fe/4796fe84828b9f80e4dd959b74d29aa6c462c5", + ".git/objects/fe/53d87aa9258c34ee226a42a150f3d484886f27", + ".git/objects/fe/65a1ff388380f360134da0b1591467f05a1356", + ".git/objects/fe/722373646b711c63c3bf4a00e9fb9ebe48acd7", + ".git/objects/fe/743e5d085665fc91bbac07366fa32c717f5666", + ".git/objects/fe/7943aa0f936495b68590009abd855fb1348ac2", + ".git/objects/fe/82ef9801df372430dce0ee6cba300dbc643347", + ".git/objects/fe/83747d0eb5f939fc19ab83eb6b8b2e89cc7e6c", + ".git/objects/fe/9098d36ea166e6e2e4b518a987b245ef6909ed", + ".git/objects/fe/9b454c376756df899a9cd00d63a39e8c30bd04", + ".git/objects/fe/9cd535db21bee9ce81e370da9aee57b4839aa2", + ".git/objects/fe/b2f918ece9e0aebd5d8563550de9e076dea4cf", + ".git/objects/fe/bc786ca0353fc1b6f9bce2fa5a89138942459d", + ".git/objects/fe/c1608dd4a8ce9bb63513a509811161d62efb22", + ".git/objects/fe/c1a1fba61a6c6db34a0eba5640064e7ade2c5b", + ".git/objects/fe/ca8877efea10526952ccc5e22eca8aee27871a", + ".git/objects/fe/e3abb71c518e6853406014b39cb4f2b89d9fe1", + ".git/objects/fe/e5a255cecef5ea8e9463a8d65c083d015f323a", + ".git/objects/fe/fead0a0d54dedea1a075b7a3b546c346d9fde5", + ".git/objects/ff/02fec7a80117f867562f521fce1bd9fb737ef6", + ".git/objects/ff/0f2b74e71478957541aeb526d82be4823f1fe6", + ".git/objects/ff/1453e82ac69fda0b699c8073bad2a2a7a5bd52", + ".git/objects/ff/19b09d373ce4ed2a0922398e1c2b18aaa26a70", + ".git/objects/ff/1aa1d816be16aea48df39aae28a149fb3c8a1a", + ".git/objects/ff/2a30c1f9062ad84bd9c2d5f4a3850edc8de61b", + ".git/objects/ff/3996673e9a8f78f0e1d300e6747da8152d19a9", + ".git/objects/ff/3d9e3b658670ba9f54e77d265134ef93fe6c33", + ".git/objects/ff/3f61925bf5d297fb45cd82bc738a1f305c1aba", + ".git/objects/ff/413223392b80592e96386f033c430024bf854e", + ".git/objects/ff/4760863ee4a1bc5aa074bea0f95ffff2f2a7ca", + ".git/objects/ff/47987a671a67c561db5c21d46fc36262b799be", + ".git/objects/ff/49a0363fef32213188433658c1b67adc0708ae", + ".git/objects/ff/4c5f38bac9a58817fe4a699964ea103330a3ea", + ".git/objects/ff/7dcd9a454bee035b13f96c7b6a0909b0a2a78a", + ".git/objects/ff/9505c4541722732a25a1fa2bc82e77a31fd7e3", + ".git/objects/ff/a6119cdc1711b4c36cd177ec853192b5dbb7d1", + ".git/objects/ff/ab9f5bfcc155c33c3f288fd08939db9e649232", + ".git/objects/ff/b434154afa80b457a51c0c4a38f01a220a1182", + ".git/objects/ff/cc06256e31ecc37b58a2e0fb0ac9e7ae34eee6", + ".git/objects/ff/e23d5a14cb0949bf4aea8f879ac1eff0a1882a", + ".git/objects/ff/e34bb065c9965aea99907327c37edc4756fefa", + ".git/objects/ff/e5689b1ecb6bcdd065bf10f8159370fe99e1c1", + ".git/objects/ff/eb8bb604d6888efd98e0304a35527f47c648ca", + ".git/refs/heads/docs/github-public-data-plane-policy", + ".git/refs/heads/main", + ".git/refs/remotes/origin/docs/github-public-data-plane-policy", + ".git/refs/remotes/origin/main", + ".pytest_cache/.gitignore", + ".pytest_cache/CACHEDIR.TAG", + ".pytest_cache/README.md", + ".pytest_cache/v/cache/lastfailed", + ".pytest_cache/v/cache/nodeids", + "ION/04_packages/kernel/__pycache__/ion_agent_invocation_broker.cpython-313.pyc", + "ION/04_packages/kernel/__pycache__/ion_chatops_bridge.cpython-313.pyc", + "ION/04_packages/kernel/__pycache__/ion_github_commit_proposal_receipt.cpython-313.pyc", + "ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json", + "ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json", + "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip" + ], + "findings": [ + "added_files_recorded", + "no_silent_loss_gate_passed", + "safe_full_project_zip_root_confirmed", + "generated_cache_and_package_artifacts_excluded_from_archive" + ], + "generated_at": "2026-05-05T04:40:14+00:00", + "post_manifest_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json", + "preservation_report": { + "accepted": true, + "added_files": 2, + "added_paths": [ + "ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip" + ], + "allowed_removal_parts": [ + "__pycache__", + ".pytest_cache", + ".mypy_cache", + ".ruff_cache" + ], + "allowed_removal_prefixes": [ + "_tmp", + "tmp", + "scratch", + "ION/05_context/current/_tmp", + "ION/05_context/current/tmp", + "ION/05_context/current/scratch" + ], + "allowed_removed_files": 0, + "allowed_removed_paths": [], + "baseline_manifest_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_FILE_MANIFEST_BASELINE_V118.json", + "contained_removed_files": 0, + "contained_removed_paths": [], + "containment_move_prefixes": [ + "ION/05_context/archive/containment/", + "ION/05_context/quarantine/", + "ION/05_context/current/containment/", + "ION/06_artifacts/containment/" + ], + "containment_moves": [], + "files_after": 5583, + "files_before": 5581, + "findings": [ + "added_files_recorded", + "no_silent_loss_gate_passed" + ], + "generated_at": "2026-05-05T04:40:14+00:00", + "modified_files": 0, + "modified_paths": [], + "new_full_zip": "/home/sev/ION - Production/ION_CODEX/ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip", + "packaging_verdict": "PASS", + "policy_version": "V118_NO_SILENT_LOSS_CONTAINMENT_POLICY", + "post_manifest_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_FILE_MANIFEST_POSTPATCH_V118.json", + "previous_full_zip": null, + "production_authority": false, + "protected_paths": [ + "AGENTS.md", + "START_HERE_FOR_ANY_AGENT.md", + "pyproject.toml", + "ION/REPO_AUTHORITY.md", + "ION/00_BOOTSTRAP/", + "ION/01_doctrine/", + "ION/02_architecture/", + "ION/03_registry/", + "ION/04_packages/kernel/", + "ION/05_context/current/", + "ION/07_templates/", + "ION/08_ui/", + "ION/09_integrations/", + "ION/tests/" + ], + "protected_removed_files": 0, + "protected_removed_paths": [], + "removed_files": 0, + "report_id": "trunk-preservation-report-1afa63771f63cc26", + "root_confirmed_after": true, + "root_confirmed_before": true, + "schema_id": "ion.trunk_preservation_report.v1", + "source_root": "/home/sev/ION - Production/ION_CODEX", + "unexpected_removed_files": 0, + "unexpected_removed_paths": [], + "version_line": "V118_NO_SILENT_LOSS_AND_CONTAINMENT_PRESERVATION_GATE" + }, + "preservation_report_path": "/home/sev/ION - Production/ION_CODEX/ION/05_context/current/TRUNK_PRESERVATION_REPORT_V118.json", + "production_authority": false, + "schema_id": "ion.safe_full_project_package_result.v1", + "source_root": "/home/sev/ION - Production/ION_CODEX", + "version_line": "V118_SAFE_FULL_PROJECT_PACKAGER", + "zip_creation_attempted": true, + "zip_creation_performed": true, + "zip_path": "/home/sev/ION - Production/ION_CODEX/ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip", + "zip_root_audit": { + "archive_root_mode": "CANONICAL_ARCHIVE_ROOT", + "findings": [ + "zip_root_invariant_confirmed" + ], + "missing_at_archive_root": [], + "required_at_archive_root": [ + "pyproject.toml", + "ION/REPO_AUTHORITY.md" + ], + "root_confirmed": true, + "schema_id": "ion.package_zip_root_audit.v1", + "verdict": "ZIP_ROOT_CONFIRMED", + "wrapped_required_paths": [ + "pyproject.toml", + "ION/REPO_AUTHORITY.md" + ], + "wrapped_root_prefix": null, + "zip_path": "/home/sev/ION - Production/ION_CODEX/ION/06_artifacts/packages/ION_FULL_PROJECT_V118_NO_SILENT_LOSS_CONTAINMENT_2026-05-05T044014Z0000.zip" + }, + "zip_sha256": "199c59d8aadd2f75b9afe63e15d8d0024995cea39b568ab68c7fcc516bdf386a" + } + } +} From 03d49e28e02bbdd3e127805d8f148942f7d0e306 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:09:55 -0400 Subject: [PATCH 13/30] Clarify role true names and operational titles --- ION/docs/AGENTS_ROLES_CARRIERS.md | 51 +++++++++++++++++++++++++------ README.md | 27 ++++++++++------ 2 files changed, 58 insertions(+), 20 deletions(-) diff --git a/ION/docs/AGENTS_ROLES_CARRIERS.md b/ION/docs/AGENTS_ROLES_CARRIERS.md index 6a8c6cd6..5557d691 100644 --- a/ION/docs/AGENTS_ROLES_CARRIERS.md +++ b/ION/docs/AGENTS_ROLES_CARRIERS.md @@ -33,18 +33,49 @@ improves. The agent's world changes because the governed structure changes. A role is a bounded ION function. +ION uses true names for roles. A true name is not decorative branding. It is a +stable semantic handle used by packets, registries, templates, context packages, +and receipts so the role can move across carriers without becoming the carrier. + +For public readability, each true name should be paired with its operational +title, structural identity, rank class, and domain. + +## True Names And Operational Titles + +The current public map is drawn from: + +- `ION/03_registry/agent_roster_registry.yaml` +- `ION/03_registry/boots/*.boot.md` +- `ION/03_registry/semantic_identities/*.semantic.yaml` + +| True name | Operational title | Structural identity | Rank class | Tier | Domain | +| --- | --- | --- | --- | ---: | --- | +| `STEWARD` | Orchestration manager | `Operative.Interface.Orchestration_Management` | `BOUNDED_ORCHESTRATION_STEWARD` | 4 | Current-phase orchestration management | +| `VIZIER` | Chief architect | `Chief_Architect.Interface.Continuity_Architect` | `BURDEN_BEARER_ARCHITECTURAL` | 1.5 | Continuity / architecture | +| `VICE` | Contradiction pressure | `Conjugate.Interface.Conjugate_Daimon` | `INTERNAL_CONTRADICTION_PRESSURE` | 1.5 | Confidence drift review | +| `NEMESIS` | Inspector general | `Inspector_General.Governance.Inspector_General` | `INDEPENDENT_AUDIT_GATE` | 2 | Governance / audit | +| `RELAY` | Communications relay | `Supervisor.Communications.Sovereign_Relay` | `BOUNDED_INTENT_RELAY` | 4 | Communications and packet relay | +| `VESTIGE` | Systems archaeologist | `Supervisor.Intelligence.Systems_Archaeologist` | `STANDING_ARCHAEOLOGY_DAEMON` | 4 | Archaeology and drift watch | +| `MASON` | Software architect | `Operative.Source.Software_Architect` | `UNSETTLED_CURRENT_PHASE__SUPPORT_ROLE` | 5 | Source / implementation | +| `SCRIBE` | Archivist / utility | `Operative.System.Archivist` | `UNSETTLED_CURRENT_PHASE__SUPPORT_ROLE` | 5 | System utility | +| `THOTH` | Research analyst | `Operative.Intelligence.Research_Analyst` | `UNSETTLED_CURRENT_PHASE__SUPPORT_ROLE` | 5 | Intelligence / research | +| `ATLAS` | Systems cartographer | `Operative.Knowledge.SystemsCartographer` | `UNSETTLED_CURRENT_PHASE__SUPPORT_ROLE` | 5 | Knowledge / comparative systems | + +This table is orientation, not a replacement for the registry. If it conflicts +with the active roster registry or boot files, the registry and boot files win. + +## How To Read The Names + +The names carry memory and continuity, but the operational title tells a human +what the role actually does. + Examples: -| Role | Function | -| --- | --- | -| `STEWARD` | Integration, acceptance, rejection, closure. | -| `RELAY` | Intake, packet formation, handoff. | -| `VIZIER` | Strategy and route intelligence. | -| `MASON` | Build coordination and implementation. | -| `NEMESIS` | Adversarial audit and failure-mode attack. | -| `VESTIGE` | Memory, archaeology, residue interpretation. | -| `SCRIBE` | Structured capture and documentation. | -| `VICE` | Discipline, critique, hardening pressure. | +- `VIZIER` is the Chief Architect, not an aesthetic persona. +- `NEMESIS` is the Inspector General, not a hostile agent. +- `VESTIGE` is the Systems Archaeologist, not informal memory. +- `VICE` is contradiction pressure, not general negativity. +- `MASON` is bounded implementation, not release authority. Roles do not become true because a carrier claims them. They are mounted through packets, context, templates, and return contracts. diff --git a/README.md b/README.md index f8553743..a0db403b 100644 --- a/README.md +++ b/README.md @@ -122,16 +122,23 @@ prompts. It evolves them by evolving the governed structure they act inside. A role is a bounded ION function. A carrier is the host executing it. They are not the same thing. -| Role | Function | -| --- | --- | -| `STEWARD` | Integration, acceptance, rejection, closure. | -| `RELAY` | Intake, packet formation, handoff. | -| `VIZIER` | Strategy and route intelligence. | -| `MASON` | Build coordination and implementation. | -| `NEMESIS` | Adversarial audit and failure-mode attack. | -| `VESTIGE` | Memory, archaeology, residue interpretation. | -| `SCRIBE` | Structured capture and documentation. | -| `VICE` | Discipline, critique, hardening pressure. | +The names below are ION true names: stable role labels used by packets, +registries, templates, and receipts. They are paired with operational titles so +the public interface stays legible. + +| True name | Operational title | Function | +| --- | --- | --- | +| `STEWARD` | Orchestration manager | Integration, acceptance, rejection, closure. | +| `RELAY` | Communications relay | Intake, packet formation, handoff. | +| `VIZIER` | Chief architect | Strategy and route intelligence. | +| `MASON` | Software architect | Build coordination and implementation. | +| `NEMESIS` | Inspector general | Adversarial audit and failure-mode attack. | +| `VESTIGE` | Systems archaeologist | Memory, archaeology, residue interpretation. | +| `SCRIBE` | Archivist / utility | Structured capture and documentation. | +| `VICE` | Contradiction pressure | Discipline, critique, hardening pressure. | + +See [Agents, Roles, And Carriers](ION/docs/AGENTS_ROLES_CARRIERS.md) for rank, +domain, and identity boundaries. | Carrier | Role in the system | | --- | --- | From 4f04454cd626ecb8f55f1a2002892c2dce677147 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:22:27 -0400 Subject: [PATCH 14/30] fix(extension): add safe mode and throttle ChatGPT DOM scanner --- .../ion_chatops_bridge/README.md | 24 ++ .../ion_chatops_bridge/dist/content.js | 266 ++++++++++++------ .../ion_chatops_bridge/src/content.ts | 262 +++++++++++------ .../tests/live_smoke_parser_simulation.js | 81 ++++++ 4 files changed, 454 insertions(+), 179 deletions(-) diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index c16cf851..edf890a7 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -47,6 +47,30 @@ changes. The extension icon assets live in `icons/` and are wired into both the manifest extension icon set and the toolbar action icon. +## Emergency Safe Mode + +If ChatGPT fails to load with the extension enabled, disable the content script +without uninstalling the extension: + +```js +localStorage.setItem("ION_CHATOPS_SAFE_MODE", "disabled") +``` + +Then reload ChatGPT. The content script exits early and prints a compact console +message. To re-enable it: + +```js +localStorage.removeItem("ION_CHATOPS_SAFE_MODE") +sessionStorage.removeItem("ION_CHATOPS_SAFE_MODE") +``` + +Reload the page after removing the flag. + +Automatic scanning is deliberately throttled. MutationObserver events schedule a +single debounced scan over code/YAML-bearing surfaces, ignore the extension's own +panel/modal updates, and avoid broad whole-page scans. Use the manual `Rescan` +button after ChatGPT finishes rendering a YAML block. + ## YAML Subset The MVP parser supports the canonical `ion.chatops.action.v1` shape used by Sev: diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 1b2385a7..80e13a96 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -3,29 +3,34 @@ const inFlightActionIds = new Set(); const submittedActionIds = new Set(); const reportedBlockedActionIds = new Set(); + const PANEL_ID = "ion-chatops-bridge-panel"; + const MODAL_ID = "ion-chatops-bridge-approval"; + const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; + const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; + const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; - const ACTION_SCAN_SELECTORS = [ + const AUTO_SCAN_SELECTORS = [ "pre code", "pre", "code", - "[data-message-author-role='assistant']", - "[data-message-author-role='assistant'] .markdown", "[data-message-author-role='assistant'] pre", "[data-message-author-role='assistant'] code", "[data-message-author-role='assistant'] [class*='font-mono']", "[data-message-author-role='assistant'] [class*='whitespace-pre']", "[data-message-author-role='assistant'] [class*='overflow-x-auto']", - "article .markdown", "article pre", "article pre code", "article [class*='font-mono']", "article [class*='whitespace-pre']", "article [class*='overflow-x-auto']", + ]; + const MANUAL_SCAN_SELECTORS = [ + ...AUTO_SCAN_SELECTORS, + "[data-message-author-role='assistant']", + "[data-message-author-role='assistant'] .markdown", + "article .markdown", "main", ]; - const PANEL_ID = "ion-chatops-bridge-panel"; - const MODAL_ID = "ion-chatops-bridge-approval"; - const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const STYLE_ID = "ion-chatops-bridge-style"; const LOG_LIMIT = 12; const TOP_BAR_GAP = 8; @@ -57,6 +62,17 @@ detail: "Composer anchor has not been evaluated yet.", }, }; + let scanTimer = null; + let scanRunning = false; + let scanQueued = false; + function safeModeDisabled() { + try { + const value = window.localStorage?.getItem(SAFE_MODE_KEY) ?? window.sessionStorage?.getItem(SAFE_MODE_KEY); + return ["1", "true", "disabled", "off"].includes(String(value ?? "").trim().toLowerCase()); + } catch (_error) { + return false; + } + } const SEV_REENTRY_PROMPT = `You are Sev, Braden's ION browser carrier. You do not have direct local repo context unless ION provides it. Use ION ChatOps action blocks to ask the local bridge/Codex for durable work. @@ -182,7 +198,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp document.documentElement.appendChild(style); } - function registryText(node) { + function registryText(node, mode) { + if (mode === "auto") return node.textContent ?? ""; const inner = typeof node.innerText === "string" ? node.innerText : ""; return inner || node.textContent || ""; } @@ -243,7 +260,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return hosts; } - function annotateCodeBlocks(stats) { + function annotateCodeBlocks(stats, mode) { const actionIds = new Set(); const hosts = codeBlockHosts(); hosts.forEach((host, index) => { @@ -252,7 +269,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp host.dataset.ionYamlStatus = "none"; let tone = "idle"; let badge = label; - const text = registryText(host); + const text = registryText(host, mode); if (ION_ACTION_LINE.test(text) || extractIonActionYaml(text) !== null) { stats.yamlBlocks += 1; const parsed = parseIonActionYamlWithDiagnostics(text); @@ -310,7 +327,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp stats.composerControls = controls.length; } - function updateDomActionRegistry() { + function updateDomActionRegistry(mode = "manual") { ensureDomRegistryStyle(); const stats = { messages: 0, @@ -322,9 +339,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp composerControls: 0, lastUpdated: new Date().toLocaleTimeString(), }; - annotateMessages(stats); - annotateCodeBlocks(stats); - annotateComposerControls(stats); + if (mode === "manual") annotateMessages(stats); + annotateCodeBlocks(stats, mode); + if (mode === "manual") annotateComposerControls(stats); setBridgeDiagnosticsDetail( [ "DOM action registry", @@ -332,10 +349,11 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp `code_blocks: ${stats.codeBlocks}`, `ion_yaml_blocks: ${stats.yamlBlocks}`, `valid_actions: ${stats.validActions}`, - `invalid_actions: ${stats.invalidActions}`, - `duplicate_actions: ${stats.duplicateActions}`, - `composer_controls: ${stats.composerControls}`, - `last_updated: ${stats.lastUpdated}`, + `invalid_actions: ${stats.invalidActions}`, + `duplicate_actions: ${stats.duplicateActions}`, + `composer_controls: ${stats.composerControls}`, + `scan_mode: ${mode}`, + `last_updated: ${stats.lastUpdated}`, "", "Automation markers are visual only. They do not click, submit, upload, or mutate ION state.", ].join("\n"), @@ -1344,10 +1362,11 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp ); } - function candidateBlocks() { + function candidateBlocks(mode = "manual") { + const selectors = mode === "auto" ? AUTO_SCAN_SELECTORS : MANUAL_SCAN_SELECTORS; const nodes = []; const seenNodes = new Set(); - for (const selector of ACTION_SCAN_SELECTORS) { + for (const selector of selectors) { document.querySelectorAll(selector).forEach((node) => { if (seenNodes.has(node) || shouldIgnoreScanNode(node)) return; seenNodes.add(node); @@ -1359,7 +1378,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp for (const node of nodes) { const rawCandidates = [ node.textContent ?? "", - typeof node.innerText === "string" ? node.innerText : "", + mode === "manual" && typeof node.innerText === "string" ? node.innerText : "", ]; for (const text of rawCandidates) { if (!(ION_ACTION_LINE.test(text) || extractIonActionYaml(text) !== null)) continue; @@ -1704,62 +1723,136 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp submitPacket(label, parsed.packet); } - function scan() { + function scan(mode = "manual") { + if (scanRunning) { + scanQueued = true; + return 0; + } + scanRunning = true; refreshBridgePosition(); - updateDomActionRegistry(); - let processed = 0; - for (const block of candidateBlocks()) { - const key = `${block.length}:${block.slice(0, 160)}`; - if (seen.has(key)) continue; - seen.add(key); - processed += 1; - const parsed = parseIonActionYamlWithDiagnostics(block); - const packet = parsed.packet; - if (!packet) { - setBridgeStatus("YAML detected but not parsed", parsed.finding ?? "unknown_parse_failure", "error"); - setBridgeActionDetail((parsed.extracted_yaml ?? block).slice(0, 1200)); - continue; - } - if (shouldSkipAction(packet)) continue; - const local = localValidate(packet); - if (!local.accepted) { - if (!markBlockedOnce(packet, local.findings)) continue; - setBridgeStatus("YAML blocked locally", local.findings.join("\n"), "error"); - setBridgeActionDetail(JSON.stringify(packet.ion_action, null, 2)); - console.warn("ION ChatOps candidate failed local validation", local); - continue; - } - setBridgeActionDetail(actionSummary(packet)); - const actionId = packet.ion_action.action_id; - if (actionId) inFlightActionIds.add(actionId); - setBridgeStatus("ION action detected", `${packet.ion_action.intent}: ${packet.ion_action.action_id}\nValidating with local daemon.`, "working"); - chrome.runtime.sendMessage({ type: "ion_chatops_candidate", packet }, async (response) => { - if (!response?.ok || !response?.result) { - if (actionId) inFlightActionIds.delete(actionId); - setBridgeStatus( - "ION action blocked", - blockedDetail(response), - "error", - ); - return; + try { + updateDomActionRegistry(mode); + let processed = 0; + for (const block of candidateBlocks(mode)) { + const key = `${block.length}:${block.slice(0, 160)}`; + if (seen.has(key)) continue; + seen.add(key); + processed += 1; + const parsed = parseIonActionYamlWithDiagnostics(block); + const packet = parsed.packet; + if (!packet) { + setBridgeStatus("YAML detected but not parsed", parsed.finding ?? "unknown_parse_failure", "error"); + setBridgeActionDetail((parsed.extracted_yaml ?? block).slice(0, 1200)); + continue; } - if (actionId) { - inFlightActionIds.delete(actionId); - submittedActionIds.add(actionId); + if (shouldSkipAction(packet)) continue; + const local = localValidate(packet); + if (!local.accepted) { + if (!markBlockedOnce(packet, local.findings)) continue; + setBridgeStatus("YAML blocked locally", local.findings.join("\n"), "error"); + setBridgeActionDetail(JSON.stringify(packet.ion_action, null, 2)); + console.warn("ION ChatOps candidate failed local validation", local); + continue; } - const result = response.result; - const summary = [ - "ION ChatOps receipt", - `action_id: ${packet.ion_action.action_id}`, - `intent: ${packet.ion_action.intent}`, - `receipt_path: ${result.receipt_path ?? ""}`, - `status: ${result.verdict ?? ""}` - ].join("\n"); - await copyReceiptSummary(summary); - setBridgeStatus("ION action submitted", summary, "success"); - }); + setBridgeActionDetail(actionSummary(packet)); + const actionId = packet.ion_action.action_id; + if (actionId) inFlightActionIds.add(actionId); + setBridgeStatus("ION action detected", `${packet.ion_action.intent}: ${packet.ion_action.action_id}\nValidating with local daemon.`, "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_candidate", packet }, async (response) => { + if (!response?.ok || !response?.result) { + if (actionId) inFlightActionIds.delete(actionId); + setBridgeStatus( + "ION action blocked", + blockedDetail(response), + "error", + ); + return; + } + if (actionId) { + inFlightActionIds.delete(actionId); + submittedActionIds.add(actionId); + } + const result = response.result; + const summary = [ + "ION ChatOps receipt", + `action_id: ${packet.ion_action.action_id}`, + `intent: ${packet.ion_action.intent}`, + `receipt_path: ${result.receipt_path ?? ""}`, + `status: ${result.verdict ?? ""}` + ].join("\n"); + await copyReceiptSummary(summary); + setBridgeStatus("ION action submitted", summary, "success"); + }); + } + return processed; + } catch (error) { + const detail = error instanceof Error ? error.message : String(error); + console.warn("ION ChatOps scan failed", error); + setBridgeStatus("ION scan degraded", detail, "error"); + setBridgeDiagnosticsDetail(`Scan failed in ${mode} mode.\n${detail}`); + return 0; + } finally { + scanRunning = false; + if (scanQueued) { + scanQueued = false; + scheduleScan("auto"); + } } - return processed; + } + + function mutationTouchesIonUi(mutation) { + const isIonNode = (node) => { + if (node.nodeType !== Node.ELEMENT_NODE) return false; + const element = node; + return Boolean( + element.closest(`#${PANEL_ID}`) || + element.closest(`#${MODAL_ID}`) || + element.closest(`#${DOM_REGISTRY_STYLE_ID}`) || + element.id === PANEL_ID || + element.id === MODAL_ID || + element.id === DOM_REGISTRY_STYLE_ID || + element.closest(".ion-dom-badge") + ); + }; + if (isIonNode(mutation.target)) return true; + return Array.from(mutation.addedNodes).some(isIonNode) || Array.from(mutation.removedNodes).some(isIonNode); + } + + function scheduleScan(mode = "auto") { + if (scanTimer !== null) return; + scanTimer = window.setTimeout(() => { + scanTimer = null; + scan(mode); + }, SCAN_DEBOUNCE_MS); + } + + function initializeBridge() { + const observerRoot = document.body ?? document.documentElement; + const observer = new MutationObserver((mutations) => { + if (mutations.length && mutations.every(mutationTouchesIonUi)) return; + scheduleScan("auto"); + }); + observer.observe(observerRoot, { childList: true, subtree: true }); + window.addEventListener("resize", () => refreshBridgePosition()); + if (typeof document.addEventListener === "function") { + document.addEventListener("transitionend", (event) => { + const target = event.target; + if (target instanceof Element && shouldIgnoreScanNode(target)) return; + refreshBridgePosition(); + }, true); + document.addEventListener( + "click", + (event) => { + const target = event.target; + if (target instanceof Element && shouldIgnoreScanNode(target)) return; + window.setTimeout(() => refreshBridgePosition(), 60); + window.setTimeout(() => refreshBridgePosition(), 260); + }, + true, + ); + } + setBridgeStatus("Monitoring ChatGPT", "Waiting for ion_action YAML blocks.", "idle"); + scheduleScan("auto"); } chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { @@ -1789,28 +1882,14 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp refreshBridgePosition, rescan: () => { seen.clear(); - return scan(); + return scan("manual"); }, + scheduleScan, }; - - const observer = new MutationObserver(() => scan()); - observer.observe(document.documentElement, { childList: true, subtree: true }); - window.addEventListener("resize", () => refreshBridgePosition()); - if (typeof document.addEventListener === "function") { - document.addEventListener("transitionend", () => refreshBridgePosition(), true); - document.addEventListener( - "click", - () => { - window.setTimeout(() => refreshBridgePosition(), 60); - window.setTimeout(() => refreshBridgePosition(), 260); - }, - true, - ); - } window.addEventListener("ion-chatops-rescan", () => { seen.clear(); setBridgeStatus("Manual rescan", "Scanning rendered ChatGPT code blocks.", "working"); - const found = scan(); + const found = scan("manual"); if (!found) { setBridgeStatus( "No action block found", @@ -1864,6 +1943,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-sandbox-review", () => { requestSandboxMutation("ion_chatops_sandbox_queue_latest", "Sandbox queue review"); }); - setBridgeStatus("Monitoring ChatGPT", "Waiting for ion_action YAML blocks.", "idle"); - scan(); + if (safeModeDisabled()) { + console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); + } else { + initializeBridge(); + } })(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index f18a4978..8b5b6131 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -19,24 +19,29 @@ const reportedBlockedActionIds = new Set(); const PANEL_ID = "ion-chatops-bridge-panel"; const MODAL_ID = "ion-chatops-bridge-approval"; const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; +const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; +const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; -const ACTION_SCAN_SELECTORS = [ +const AUTO_SCAN_SELECTORS = [ "pre code", "pre", "code", - "[data-message-author-role='assistant']", - "[data-message-author-role='assistant'] .markdown", "[data-message-author-role='assistant'] pre", "[data-message-author-role='assistant'] code", "[data-message-author-role='assistant'] [class*='font-mono']", "[data-message-author-role='assistant'] [class*='whitespace-pre']", "[data-message-author-role='assistant'] [class*='overflow-x-auto']", - "article .markdown", "article pre", "article pre code", "article [class*='font-mono']", "article [class*='whitespace-pre']", "article [class*='overflow-x-auto']", +]; +const MANUAL_SCAN_SELECTORS = [ + ...AUTO_SCAN_SELECTORS, + "[data-message-author-role='assistant']", + "[data-message-author-role='assistant'] .markdown", + "article .markdown", "main", ]; @@ -127,6 +132,21 @@ type DomRegistryStats = { lastUpdated: string; }; +type ScanMode = "auto" | "manual"; + +let scanTimer: number | null = null; +let scanRunning = false; +let scanQueued = false; + +function safeModeDisabled(): boolean { + try { + const value = window.localStorage?.getItem(SAFE_MODE_KEY) ?? window.sessionStorage?.getItem(SAFE_MODE_KEY); + return ["1", "true", "disabled", "off"].includes(String(value ?? "").trim().toLowerCase()); + } catch (_error) { + return false; + } +} + function ensureDomRegistryStyle(): void { if (document.getElementById(DOM_REGISTRY_STYLE_ID)) return; const style = document.createElement("style"); @@ -178,7 +198,8 @@ function ensureDomRegistryStyle(): void { document.documentElement.appendChild(style); } -function registryText(node: Element): string { +function registryText(node: Element, mode: ScanMode): string { + if (mode === "auto") return node.textContent ?? ""; const inner = typeof (node as HTMLElement).innerText === "string" ? (node as HTMLElement).innerText : ""; return inner || node.textContent || ""; } @@ -239,15 +260,16 @@ function codeBlockHosts(): HTMLElement[] { return hosts; } -function annotateCodeBlocks(stats: DomRegistryStats): void { +function annotateCodeBlocks(stats: DomRegistryStats, mode: ScanMode): void { const actionIds = new Set(); - codeBlockHosts().forEach((host, index) => { + const hosts = codeBlockHosts(); + hosts.forEach((host, index) => { const label = `ION code ${index + 1}`; host.dataset.ionCodeIndex = String(index + 1); host.dataset.ionYamlStatus = "none"; let tone = "idle"; let badge = label; - const text = registryText(host); + const text = registryText(host, mode); if (ION_ACTION_LINE.test(text) || extractIonActionYaml(text) !== null) { stats.yamlBlocks += 1; const parsed = parseIonActionYamlWithDiagnostics(text); @@ -285,7 +307,7 @@ function annotateCodeBlocks(stats: DomRegistryStats): void { } ensureRegistryBadge(host, "code", badge, tone); }); - stats.codeBlocks = codeBlockHosts().length; + stats.codeBlocks = hosts.length; } function annotateComposerControls(stats: DomRegistryStats): void { @@ -310,7 +332,7 @@ function annotateComposerControls(stats: DomRegistryStats): void { stats.composerControls = controls.length; } -function updateDomActionRegistry(): DomRegistryStats { +function updateDomActionRegistry(mode: ScanMode = "manual"): DomRegistryStats { ensureDomRegistryStyle(); const stats: DomRegistryStats = { messages: 0, @@ -322,9 +344,9 @@ function updateDomActionRegistry(): DomRegistryStats { composerControls: 0, lastUpdated: new Date().toLocaleTimeString(), }; - annotateMessages(stats); - annotateCodeBlocks(stats); - annotateComposerControls(stats); + if (mode === "manual") annotateMessages(stats); + annotateCodeBlocks(stats, mode); + if (mode === "manual") annotateComposerControls(stats); setBridgeDiagnosticsDetail( [ "DOM action registry", @@ -335,6 +357,7 @@ function updateDomActionRegistry(): DomRegistryStats { `invalid_actions: ${stats.invalidActions}`, `duplicate_actions: ${stats.duplicateActions}`, `composer_controls: ${stats.composerControls}`, + `scan_mode: ${mode}`, `last_updated: ${stats.lastUpdated}`, "", "Automation markers are visual only. They do not click, submit, upload, or mutate ION state.", @@ -355,10 +378,11 @@ function shouldIgnoreScanNode(node: Element): boolean { ); } -function candidateBlocks(): string[] { +function candidateBlocks(mode: ScanMode = "manual"): string[] { + const selectors = mode === "auto" ? AUTO_SCAN_SELECTORS : MANUAL_SCAN_SELECTORS; const nodes: Element[] = []; const seenNodes = new Set(); - for (const selector of ACTION_SCAN_SELECTORS) { + for (const selector of selectors) { document.querySelectorAll(selector).forEach((node) => { if (seenNodes.has(node) || shouldIgnoreScanNode(node)) return; seenNodes.add(node); @@ -370,7 +394,7 @@ function candidateBlocks(): string[] { for (const node of nodes) { const rawCandidates = [ node.textContent ?? "", - typeof (node as HTMLElement).innerText === "string" ? (node as HTMLElement).innerText : "", + mode === "manual" && typeof (node as HTMLElement).innerText === "string" ? (node as HTMLElement).innerText : "", ]; for (const text of rawCandidates) { if (!(ION_ACTION_LINE.test(text) || extractIonActionYaml(text) !== null)) continue; @@ -715,62 +739,136 @@ function submitActionText(label: string, text: string): void { submitPacket(label, parsed.packet); } -function scan(): number { +function scan(mode: ScanMode = "manual"): number { + if (scanRunning) { + scanQueued = true; + return 0; + } + scanRunning = true; refreshBridgePosition(); - updateDomActionRegistry(); - let processed = 0; - for (const block of candidateBlocks()) { - const key = `${block.length}:${block.slice(0, 160)}`; - if (seen.has(key)) continue; - seen.add(key); - processed += 1; - const parsed = parseIonActionYamlWithDiagnostics(block); - const packet = parsed.packet; - if (!packet) { - setBridgeStatus("YAML detected but not parsed", parsed.finding ?? "unknown_parse_failure", "error"); - setBridgeActionDetail((parsed.extracted_yaml ?? block).slice(0, 1200)); - continue; - } - if (shouldSkipAction(packet)) continue; - const local = localValidate(packet); - if (!local.accepted) { - if (!markBlockedOnce(packet, local.findings)) continue; - setBridgeStatus("YAML blocked locally", local.findings.join("\n"), "error"); - setBridgeActionDetail(JSON.stringify(packet.ion_action, null, 2)); - console.warn("ION ChatOps candidate failed local validation", local); - continue; - } - setBridgeActionDetail(actionSummary(packet)); - const actionId = packet.ion_action.action_id; - if (actionId) inFlightActionIds.add(actionId); - setBridgeStatus("ION action detected", `${packet.ion_action.intent}: ${packet.ion_action.action_id}\nValidating with local daemon.`, "working"); - chrome.runtime.sendMessage({ type: "ion_chatops_candidate", packet }, async (response) => { - if (!response?.ok || !response?.result) { - if (actionId) inFlightActionIds.delete(actionId); - setBridgeStatus( - "ION action blocked", - blockedDetail(response), - "error", - ); - return; + try { + updateDomActionRegistry(mode); + let processed = 0; + for (const block of candidateBlocks(mode)) { + const key = `${block.length}:${block.slice(0, 160)}`; + if (seen.has(key)) continue; + seen.add(key); + processed += 1; + const parsed = parseIonActionYamlWithDiagnostics(block); + const packet = parsed.packet; + if (!packet) { + setBridgeStatus("YAML detected but not parsed", parsed.finding ?? "unknown_parse_failure", "error"); + setBridgeActionDetail((parsed.extracted_yaml ?? block).slice(0, 1200)); + continue; } - if (actionId) { - inFlightActionIds.delete(actionId); - submittedActionIds.add(actionId); + if (shouldSkipAction(packet)) continue; + const local = localValidate(packet); + if (!local.accepted) { + if (!markBlockedOnce(packet, local.findings)) continue; + setBridgeStatus("YAML blocked locally", local.findings.join("\n"), "error"); + setBridgeActionDetail(JSON.stringify(packet.ion_action, null, 2)); + console.warn("ION ChatOps candidate failed local validation", local); + continue; } - const result = response.result; - const summary = [ - "ION ChatOps receipt", - `action_id: ${packet.ion_action.action_id}`, - `intent: ${packet.ion_action.intent}`, - `receipt_path: ${result.receipt_path ?? ""}`, - `status: ${result.verdict ?? ""}` - ].join("\n"); - await copyReceiptSummary(summary); - setBridgeStatus("ION action submitted", summary, "success"); - }); + setBridgeActionDetail(actionSummary(packet)); + const actionId = packet.ion_action.action_id; + if (actionId) inFlightActionIds.add(actionId); + setBridgeStatus("ION action detected", `${packet.ion_action.intent}: ${packet.ion_action.action_id}\nValidating with local daemon.`, "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_candidate", packet }, async (response) => { + if (!response?.ok || !response?.result) { + if (actionId) inFlightActionIds.delete(actionId); + setBridgeStatus( + "ION action blocked", + blockedDetail(response), + "error", + ); + return; + } + if (actionId) { + inFlightActionIds.delete(actionId); + submittedActionIds.add(actionId); + } + const result = response.result; + const summary = [ + "ION ChatOps receipt", + `action_id: ${packet.ion_action.action_id}`, + `intent: ${packet.ion_action.intent}`, + `receipt_path: ${result.receipt_path ?? ""}`, + `status: ${result.verdict ?? ""}` + ].join("\n"); + await copyReceiptSummary(summary); + setBridgeStatus("ION action submitted", summary, "success"); + }); + } + return processed; + } catch (error) { + const detail = error instanceof Error ? error.message : String(error); + console.warn("ION ChatOps scan failed", error); + setBridgeStatus("ION scan degraded", detail, "error"); + setBridgeDiagnosticsDetail(`Scan failed in ${mode} mode.\n${detail}`); + return 0; + } finally { + scanRunning = false; + if (scanQueued) { + scanQueued = false; + scheduleScan("auto"); + } + } +} + +function mutationTouchesIonUi(mutation: MutationRecord): boolean { + const isIonNode = (node: Node): boolean => { + if (node.nodeType !== Node.ELEMENT_NODE) return false; + const element = node as Element; + return Boolean( + element.closest(`#${PANEL_ID}`) || + element.closest(`#${MODAL_ID}`) || + element.closest(`#${DOM_REGISTRY_STYLE_ID}`) || + element.id === PANEL_ID || + element.id === MODAL_ID || + element.id === DOM_REGISTRY_STYLE_ID || + element.closest(".ion-dom-badge"), + ); + }; + if (isIonNode(mutation.target)) return true; + return Array.from(mutation.addedNodes).some(isIonNode) || Array.from(mutation.removedNodes).some(isIonNode); +} + +function scheduleScan(mode: ScanMode = "auto"): void { + if (scanTimer !== null) return; + scanTimer = window.setTimeout(() => { + scanTimer = null; + scan(mode); + }, SCAN_DEBOUNCE_MS); +} + +function initializeBridge(): void { + const observerRoot = document.body ?? document.documentElement; + const observer = new MutationObserver((mutations) => { + if (mutations.length && mutations.every(mutationTouchesIonUi)) return; + scheduleScan("auto"); + }); + observer.observe(observerRoot, { childList: true, subtree: true }); + window.addEventListener("resize", () => refreshBridgePosition()); + if (typeof document.addEventListener === "function") { + document.addEventListener("transitionend", (event) => { + const target = event.target; + if (target instanceof Element && shouldIgnoreScanNode(target)) return; + refreshBridgePosition(); + }, true); + document.addEventListener( + "click", + (event) => { + const target = event.target; + if (target instanceof Element && shouldIgnoreScanNode(target)) return; + window.setTimeout(() => refreshBridgePosition(), 60); + window.setTimeout(() => refreshBridgePosition(), 260); + }, + true, + ); } - return processed; + setBridgeStatus("Monitoring ChatGPT", "Waiting for ion_action YAML blocks.", "idle"); + scheduleScan("auto"); } chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { @@ -800,28 +898,14 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { refreshBridgePosition, rescan: () => { seen.clear(); - return scan(); + return scan("manual"); }, + scheduleScan, }; - -const observer = new MutationObserver(() => scan()); -observer.observe(document.documentElement, { childList: true, subtree: true }); -window.addEventListener("resize", () => refreshBridgePosition()); -if (typeof document.addEventListener === "function") { - document.addEventListener("transitionend", () => refreshBridgePosition(), true); - document.addEventListener( - "click", - () => { - window.setTimeout(() => refreshBridgePosition(), 60); - window.setTimeout(() => refreshBridgePosition(), 260); - }, - true, - ); -} window.addEventListener("ion-chatops-rescan", () => { seen.clear(); setBridgeStatus("Manual rescan", "Scanning rendered ChatGPT code blocks.", "working"); - const found = scan(); + const found = scan("manual"); if (!found) { setBridgeStatus( "No action block found", @@ -875,5 +959,9 @@ window.addEventListener("ion-chatops-sandbox-diff", () => { window.addEventListener("ion-chatops-sandbox-review", () => { requestSandboxMutation("ion_chatops_sandbox_queue_latest", "Sandbox queue review"); }); -setBridgeStatus("Monitoring ChatGPT", "Waiting for ion_action YAML blocks.", "idle"); -scan(); + +if (safeModeDisabled()) { + console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); +} else { + initializeBridge(); +} diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index 81232d58..f2e4425b 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -161,9 +161,18 @@ const context = { this.type = type; } }, + Element, + Node: { ELEMENT_NODE: 1 }, window: { innerHeight: 1000, innerWidth: 1000, + localStorage: { getItem: () => null }, + sessionStorage: { getItem: () => null }, + setTimeout(callback) { + callback(); + return 1; + }, + clearTimeout() {}, getComputedStyle() { return { display: "block", visibility: "visible", opacity: "1" }; }, @@ -172,12 +181,16 @@ const context = { }, document: { documentElement, + body: null, getElementById: (id) => byId.get(id) || null, createElement: (tag) => new Element(tag), querySelector: () => null, querySelectorAll: (selector) => (selector === "pre code" ? [{ textContent: liveSmokeYaml }] : []), }, MutationObserver: class { + constructor(callback) { + this.callback = callback; + } observe() {} }, chrome: { @@ -191,6 +204,12 @@ const context = { }, navigator: { clipboard: { writeText: async () => {} } }, }; +context.window.window = context.window; +context.window.document = context.document; +context.window.localStorage = context.window.localStorage; +context.window.sessionStorage = context.window.sessionStorage; +context.window.setTimeout = context.window.setTimeout; +context.window.clearTimeout = context.window.clearTimeout; vm.createContext(context); vm.runInContext( @@ -321,6 +340,67 @@ if (registryStats.composerControls !== 1) throw new Error("DOM registry did not if (registryCode.dataset.ionYamlStatus !== "valid") throw new Error("DOM registry did not set valid YAML status"); if (registryButton.dataset.ionControlRole !== "send") throw new Error("DOM registry did not classify send control"); +byId.clear(); +let disabledSent = null; +const disabledDocumentElement = new Element("html"); +const disabledContext = { + console: { ...console, info() {} }, + CustomEvent: context.CustomEvent, + Element, + Node: { ELEMENT_NODE: 1 }, + window: { + innerHeight: 1000, + innerWidth: 1000, + localStorage: { getItem: (key) => (key === "ION_CHATOPS_SAFE_MODE" ? "disabled" : null) }, + sessionStorage: { getItem: () => null }, + setTimeout() { + throw new Error("safe mode should not schedule scans"); + }, + clearTimeout() {}, + getComputedStyle() { + return { display: "block", visibility: "visible", opacity: "1" }; + }, + addEventListener() {}, + dispatchEvent() {}, + }, + document: { + documentElement: disabledDocumentElement, + body: null, + getElementById: (id) => byId.get(id) || null, + createElement: (tag) => new Element(tag), + querySelector() { + throw new Error("safe mode should not query DOM"); + }, + querySelectorAll() { + throw new Error("safe mode should not scan DOM"); + }, + }, + MutationObserver: class { + observe() { + throw new Error("safe mode should not observe DOM"); + } + }, + chrome: { + runtime: { + sendMessage(message, callback) { + disabledSent = message; + callback({ ok: false, stage: "safe_mode_unexpected_send" }); + }, + onMessage: { addListener() {} }, + }, + }, + navigator: { clipboard: { writeText: async () => {} } }, +}; +disabledContext.window.window = disabledContext.window; +disabledContext.window.document = disabledContext.document; +vm.createContext(disabledContext); +vm.runInContext( + fs.readFileSync(path.join(REPO_ROOT, "ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js"), "utf8"), + disabledContext, +); +if (byId.has("ion-chatops-bridge-panel")) throw new Error("safe mode rendered the status panel"); +if (disabledSent) throw new Error("safe mode sent an action candidate"); + console.log(JSON.stringify({ ok: true, panel: true, @@ -333,4 +413,5 @@ console.log(JSON.stringify({ rendered_dom_detected: renderedBlocks.length, page_fallback_blocks: pageFallbackBlocks.length, dom_registry: registryStats, + safe_mode_disabled: true, })); From ad1fc2dd06edacbdac7d489fad818e10767b1ad0 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 12:27:20 -0400 Subject: [PATCH 15/30] Document volatile live-state branch policy --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- CONTRIBUTING.md | 24 +++++ .../GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md | 101 ++++++++++++++++++ ...PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md | 10 ++ ION/docs/README.md | 1 + 5 files changed, 137 insertions(+), 1 deletion(-) create mode 100644 ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 198a23a9..f4fd9e65 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -8,6 +8,7 @@ Describe the bounded change and the owner surfaces reused. - Live external execution authority: false - Secrets or credentials included: no - Direct `main` push requested: no +- Branch trust class: review | volatile / not trusted | stable promotion ## Touched Paths @@ -30,4 +31,3 @@ Describe the bounded change and the owner surfaces reused. ## Notes List known blockers, skipped checks, or follow-up work. - diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 77a04f5a..727f192a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,6 +12,7 @@ Read the public landing page first: Then use the docs layer for the shape of the system: - `ION/docs/README.md` +- `ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md` - `ION/docs/ION_FUNDAMENTALS.md` - `ION/docs/TEMPLATE_LAW.md` - `ION/docs/CONTEXT_SYSTEM.md` @@ -31,6 +32,8 @@ The encyclopedia is reference material, not active runtime authority. - `work/` - `agent/` - `data-plane/` + - `volatile/live-YYYYMMDD-` for public live-state snapshots + that are useful for collaboration but not yet trusted ION state. 3. Keep changes narrow and explain the owner surface you reused. 4. Run the smallest meaningful validation for the change. 5. Open a pull request with evidence. @@ -49,6 +52,27 @@ Use the smallest lane that matches the work: Keep public docs, runtime implementation, and active-state evidence in separate pull requests when possible. That makes review and future indexing cleaner. +## Volatile Live Branches + +ION can use `volatile/*` branches to show the real local project posture to +other humans and AI carriers. These branches may move quickly and may contain +still-settling code, docs, and non-secret evidence. + +They must be labeled as: + +```text +VOLATILE / NOT TRUSTED ION STATE +``` + +Do not treat a volatile branch as Steward acceptance, production authority, or +runtime truth. It is visibility for collaboration. Promotion still requires the +normal packet, proof, gate, review, and receipt path. + +Never commit secrets, credentials, private connector auth state, private browser +profiles, or sensitive live tunnel material to a volatile branch. Live connector +URLs and logs should stay local unless they are intentionally public-safe and +useful as redacted evidence. + ## Pull Request Evidence Include: diff --git a/ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md b/ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md new file mode 100644 index 00000000..3f4d0551 --- /dev/null +++ b/ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md @@ -0,0 +1,101 @@ +# GitHub Branching And Live State Policy + +Status: public collaboration policy +Production authority: false +Live execution authority: false + +## Purpose + +GitHub is ION's public collaboration and data plane. It should let humans and AI +carriers inspect real project movement without mistaking every pushed snapshot +for trusted ION state. + +## Branch Classes + +| Class | Pattern | Meaning | +| --- | --- | --- | +| Stable | `main` | Public stable line. No direct push by default. | +| Review | `docs/*`, `work/*`, `agent/*`, `data-plane/*` | Scoped review lanes for bounded changes. | +| Volatile live | `volatile/*` | Current working-state mirror for collaboration. Useful, not trusted. | + +## Volatile Live Branch Rules + +`volatile/*` branches are allowed to move quickly. They exist so other AI +workers and reviewers can see the live local project posture without waiting for +a polished release branch. + +They are not production authority, Steward acceptance, or final truth. + +Use a volatile branch when: + +- the work is useful for other carriers to inspect now; +- the branch contains mixed or still-settling runtime/docs/code evidence; +- the change is not yet ready to be described as accepted ION state; +- fast visibility is more valuable than a perfectly separated PR. + +Mark volatile pull requests or branch descriptions with: + +```text +VOLATILE / NOT TRUSTED ION STATE +``` + +## What May Be Committed To Volatile Branches + +- source code, tests, docs, schemas, registries, and templates; +- non-secret receipts, work packets, queue hygiene records, and validation + evidence; +- generated artifacts only when they are intentionally public-safe and useful + for review. + +## What Must Not Be Committed + +- secrets, credentials, tokens, cookies, private browser profiles, or `.env` + files; +- live tunnel credentials or private connector auth state; +- private production infrastructure configuration; +- raw AI output presented as accepted ION state without proof gates; +- files that would expose a local machine beyond intended public collaboration. + +Live connector URLs and tunnel logs are ephemeral runtime evidence. Commit them +only when intentionally public-safe, expired or non-sensitive, and useful as a +receipt. Otherwise keep them local or record a redacted receipt. + +## Promotion Path + +A volatile branch can become trusted only by moving through the normal ION path: + +```text +bounded change -> validation -> PR evidence -> review -> Steward/gate receipt -> merge or supersession +``` + +If a volatile branch contains multiple products, split it before promotion when +practical: + +```text +public docs +sandbox/runtime implementation +queue hygiene evidence +extension stability repair +JOC restoration +``` + +The goal is visibility first, acceptance later. + +## Current Practical Convention + +For fast public collaboration during active development: + +```text +volatile/live-YYYYMMDD- +``` + +For bounded review after the branch stabilizes: + +```text +docs/ +work/ +agent/ +data-plane/ +``` + +`main` remains the stable public landing branch. diff --git a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md index cad42886..36eb35d1 100644 --- a/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md +++ b/ION/docs/PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md @@ -109,6 +109,16 @@ system. - `ION/docs/README.md` indexes the deeper orientation docs and encyclopedia. - Keep GitHub framed as collaboration/data plane, not runtime authority. +## Implemented Ninth Slice + +- Add `ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md` for the volatile + live-state branch lane. +- Update `CONTRIBUTING.md` so `volatile/live-YYYYMMDD-` branches are + explicitly allowed as public collaboration mirrors, not trusted ION state. +- Update the pull request template with a branch trust class field. +- Preserve the rule that volatile branches still exclude secrets, private + connector auth state, and sensitive live tunnel material by default. + ## Proposed Next Slices 1. Add directory-local README files for: diff --git a/ION/docs/README.md b/ION/docs/README.md index af4b6856..59feabc0 100644 --- a/ION/docs/README.md +++ b/ION/docs/README.md @@ -33,6 +33,7 @@ Setup and carrier operation: Public repo stewardship: - `PUBLIC_REPO_NAVIGATION_AND_CLEANUP_PLAN.md` +- `GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md` Long-form reference: From 0618a823babfd6ea692857c9c13f906c04038613 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 14:06:57 -0400 Subject: [PATCH 16/30] Refine ChatOps composer cockpit layout --- .../ion_chatops_bridge/README.md | 31 +- .../ion_chatops_bridge/dist/content.js | 318 ++++++++++------- .../ion_chatops_bridge/src/approval_ui.ts | 319 +++++++++++------- .../tests/live_smoke_parser_simulation.js | 9 +- 4 files changed, 425 insertions(+), 252 deletions(-) diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index edf890a7..2ca14676 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -8,12 +8,12 @@ MVP behavior: - parse the strict `ion.chatops.action.v1` subset, including simple YAML lists; - send candidates to the background worker; - validate actions against the localhost daemon; -- show a compact in-page toolbar near the ChatGPT header controls; -- show Rescan and Onboard controls in the toolbar; +- show a compact top status rail near the ChatGPT header controls; +- show Rescan and Onboard controls in the top rail; - fetch a compact Sev carrier onboarding/context brief from the local daemon and paste it into ChatGPT; -- expand downward into tabbed Status, Action, Agent, Packages, Sandbox, - Diagnostics, and Log views; +- render composer-attached tabs and an upward drawer for Status, Action, Agent, + Packages, Sandbox, Automation, Artifacts, Diagnostics, and Log views; - show Codex queue runner status/queue and approval-gated prepare/start controls backed by `kernel.ion_codex_queue_runner`; - request pasteable context packs and approval-gated package ZIPs backed by the @@ -126,3 +126,26 @@ projection. `Diff Preview` runs the bounded preview/check path for the latest return after Braden approval. `Queue Review` creates a focused Codex review packet after Braden approval. None of these controls apply patches to live source. + +## File And ZIP Attachment Direction + +The extension should eventually support sending approved local packages or ZIPs +to ChatGPT, but not as a silent upload path. Browsers do not allow ordinary page +scripts to set local file inputs to arbitrary paths, and synthetic drag/drop may +be rejected by ChatGPT or the browser. + +The intended ION path is: + +1. local daemon creates or exposes a public-safe package with manifest and + sha256; +2. extension shows exact file path, size, hash, and intended chat target; +3. Braden approves the attach/send operation; +4. extension uses the most reliable available browser path: + - user-visible attach picker guidance; + - approved downloaded package handoff; + - future Chrome-extension/native or debugger-mediated upload lane if + explicitly gated; +5. ION records the package/export receipt and any returned sandbox artifact. + +No file should be uploaded without explicit user approval, a manifest, and a +receipt when ION state is touched. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 80e13a96..f2a912cd 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -40,7 +40,6 @@ const PANEL_PREFERRED_WIDTH = 640; const PANEL_MIN_WIDTH = 320; const PANEL_TINY_WIDTH = 230; - const COMPOSER_GAP = 8; const COMPOSER_PANEL_MAX_WIDTH = 920; const bridgeState = { title: "Monitoring ChatGPT", @@ -562,36 +561,42 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } #${PANEL_ID} { position: fixed; - top: auto; - left: 58px; - right: auto; - bottom: 82px; z-index: 2147483646; - width: min(640px, calc(100vw - 86px)); - max-width: none; + inset: 0; box-sizing: border-box; - border: 1px solid rgba(255,255,255,0.10); - border-radius: 10px; - background: rgba(33, 33, 33, 0.94); - box-shadow: 0 8px 28px rgba(0,0,0,0.22); - padding: 4px; - backdrop-filter: blur(12px); + pointer-events: none; } - #${PANEL_ID}[data-anchor-mode="composer"] { - border-radius: 12px; - box-shadow: 0 12px 34px rgba(0,0,0,0.28); - } - #${PANEL_ID}[data-anchor-health="degraded"] { - border-color: rgba(251,191,36,0.30); - } - #${PANEL_ID}[data-expanded="true"] { - max-width: none; + #${PANEL_ID} .ion-top-rail, + #${PANEL_ID} .ion-composer-cockpit { + position: fixed; + box-sizing: border-box; + pointer-events: auto; } - #${PANEL_ID} .ion-toolbar { + #${PANEL_ID} .ion-top-rail { display: flex; align-items: center; gap: 6px; - min-height: 34px; + min-height: 30px; + border: 1px solid rgba(255,255,255,0.08); + border-radius: 10px; + background: rgba(33, 33, 33, 0.78); + box-shadow: 0 6px 18px rgba(0,0,0,0.18); + padding: 2px 4px; + backdrop-filter: blur(12px); + } + #${PANEL_ID}[data-anchor-health="degraded"] .ion-top-rail { + border-color: rgba(251,191,36,0.28); + } + #${PANEL_ID} .ion-composer-cockpit { + display: flex; + flex-direction: column; + align-items: stretch; + gap: 0; + max-width: calc(100vw - 24px); + pointer-events: none; + } + #${PANEL_ID}[data-anchor-mode="topbar_fallback"] .ion-composer-cockpit { + pointer-events: auto; } #${PANEL_ID} .ion-row { display: flex; @@ -633,9 +638,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp #${PANEL_ID} .ion-tool, #${PANEL_ID} .ion-tab { flex: 0 0 auto; - height: 28px; border: 1px solid transparent; - border-radius: 8px; color: rgba(255,255,255,0.82); background: transparent; padding: 0 8px; @@ -644,11 +647,10 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp line-height: 1; cursor: pointer; } - #${PANEL_ID} .ion-toggle { - min-width: 32px; - margin-left: 2px; + #${PANEL_ID} .ion-tool { + height: 26px; + border-radius: 8px; } - #${PANEL_ID} .ion-toggle:hover, #${PANEL_ID} .ion-tool:hover, #${PANEL_ID} .ion-tab:hover { background: rgba(255,255,255,0.08); @@ -697,33 +699,60 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } #${PANEL_ID} .ion-tabs { display: flex; - gap: 4px; - align-items: center; + gap: 3px; + align-items: flex-end; overflow-x: auto; scrollbar-width: none; - border-top: 1px solid rgba(255,255,255,0.07); - margin: 2px 2px 0; - padding: 4px 2px 0; + margin: 0; + padding: 0 0 0 8px; + pointer-events: auto; } #${PANEL_ID} .ion-tabs::-webkit-scrollbar { display: none; } #${PANEL_ID}[data-expanded="true"] .ion-expanded { display: block; - border-top: 1px solid rgba(255,255,255,0.08); - border-bottom: 1px solid rgba(255,255,255,0.08); - margin: 2px 2px 4px; - padding: 8px 8px 9px; + border: 1px solid rgba(255,112,28,0.82); + border-bottom: 0; + border-radius: 14px 14px 0 0; + background: rgba(24, 24, 24, 0.96); + box-shadow: 0 -16px 46px rgba(0,0,0,0.34), 0 -1px 12px rgba(255,112,28,0.15); + backdrop-filter: blur(14px); + margin: 0; + padding: 10px 10px 11px; max-height: min(54vh, 520px); overflow: auto; + pointer-events: auto; } #${PANEL_ID}[data-expanded="true"] .ion-tab-panel[data-active="true"] { display: flex; } + #${PANEL_ID}[data-anchor-mode="topbar_fallback"][data-expanded="true"] .ion-expanded { + border: 1px solid rgba(255,255,255,0.14); + border-radius: 10px 10px 0 0; + box-shadow: 0 10px 28px rgba(0,0,0,0.26); + } + #${PANEL_ID} .ion-tab { + height: 22px; + max-width: 118px; + border: 1px solid rgba(255,112,28,0.70); + border-bottom: 0; + border-radius: 8px 8px 0 0; + background: rgba(32,32,32,0.96); + color: #ffb27a; + padding: 0 9px; + font-size: 11px; + line-height: 21px; + box-shadow: 0 -1px 8px rgba(255,112,28,0.16); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + pointer-events: auto; + } #${PANEL_ID} .ion-tab[data-active="true"] { - color: rgba(255,255,255,0.96); - background: rgba(255,255,255,0.11); - border-color: rgba(255,255,255,0.10); + color: #ffd2b0; + background: rgba(255,112,28,0.16); + border-color: rgba(255,112,28,0.95); } #${PANEL_ID} .ion-detail { margin-top: 0; @@ -739,9 +768,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp margin-top: 9px; } #${PANEL_ID}[data-layout="compact"] .ion-tab { - height: 26px; padding: 0 6px; - font-size: 11px; + max-width: 94px; } #${PANEL_ID}[data-layout="tiny"] .ion-tabs { display: none; @@ -879,22 +907,55 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return Math.max(boundary, 160); } - function applyTopBarLayout(panel) { + function topRail(panel) { + return panel.querySelector(".ion-top-rail"); + } + + function composerCockpit(panel) { + return panel.querySelector(".ion-composer-cockpit"); + } + + function topBarGeometry() { const left = Math.ceil(detectLeftBoundary() + TOP_BAR_GAP); const right = Math.floor(detectRightBoundary() - TOP_BAR_GAP); const available = Math.max(PANEL_TINY_WIDTH, right - left); const preferred = Math.min(PANEL_PREFERRED_WIDTH, Math.floor(window.innerWidth * 0.58)); const width = Math.max(Math.min(preferred, available), Math.min(PANEL_MIN_WIDTH, available)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 430 ? "compact" : "normal"; + return { left, available, width, layout }; + } + + function applyTopRailLayout(panel) { + const { left, available, width } = topBarGeometry(); + const rail = topRail(panel); + if (!rail) return; + rail.style.top = `${PANEL_TOP}px`; + rail.style.left = `${left}px`; + rail.style.right = "auto"; + rail.style.bottom = "auto"; + rail.style.width = `${width}px`; + rail.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + if (typeof panel.style.setProperty === "function") { + panel.style.setProperty("--ion-chatops-modal-left", `${left}px`); + panel.style.setProperty("--ion-chatops-modal-width", `${Math.min(420, available)}px`); + } + } + + function applyTopBarLayout(panel) { + const { left, available, width, layout } = topBarGeometry(); + const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "topbar_fallback"; panel.dataset.anchorHealth = "degraded"; panel.dataset.layout = layout; - panel.style.top = `${PANEL_TOP}px`; - panel.style.left = `${left}px`; - panel.style.right = "auto"; - panel.style.bottom = "auto"; - panel.style.width = `${width}px`; - panel.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + applyTopRailLayout(panel); + if (cockpit) { + cockpit.style.top = `${PANEL_TOP + 36}px`; + cockpit.style.left = `${left}px`; + cockpit.style.right = "auto"; + cockpit.style.bottom = "auto"; + cockpit.style.width = `${width}px`; + cockpit.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + } if (typeof panel.style.setProperty === "function") { panel.style.setProperty("--ion-chatops-modal-left", `${left}px`); panel.style.setProperty("--ion-chatops-modal-width", `${Math.min(420, available)}px`); @@ -923,9 +984,10 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } function candidateComposerContainer(input) { - let best = input; + let best = null; let current = input; let depth = 0; + const leftBoundary = detectLeftBoundary(); while (current?.parentElement && depth < 10) { current = current.parentElement; depth += 1; @@ -933,11 +995,18 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const rect = visibleRect(current); if (!rect) continue; const bottomHalf = rect.top > viewportHeight() * 0.38; - const plausibleWidth = rect.width >= Math.min(360, window.innerWidth * 0.62) && rect.width <= window.innerWidth - 12; - const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(260, viewportHeight() * 0.38); - if (bottomHalf && plausibleWidth && plausibleHeight) best = current; + const respectsSidebar = rect.left >= Math.max(0, leftBoundary - 12); + const plausibleWidth = + rect.width >= Math.min(320, window.innerWidth * 0.42) && + rect.width <= Math.min(window.innerWidth * 0.90, window.innerWidth - leftBoundary - 16); + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(220, viewportHeight() * 0.30); + if (!bottomHalf || !respectsSidebar || !plausibleWidth || !plausibleHeight) continue; + const buttons = Array.from(current.querySelectorAll("button")).filter((button) => visibleRect(button)).length; + const radius = Number.parseFloat(window.getComputedStyle(current).borderRadius || "0") || 0; + const score = (buttons >= 2 ? 0 : 60) + (radius >= 10 ? 0 : 16) + rect.width / 100 + rect.height / 40 + depth * 0.4; + if (!best || score < best.score) best = { element: current, score }; } - return best; + return best?.element ?? input; } function detectComposerAnchor() { @@ -976,17 +1045,20 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const left = Math.max(margin, Math.round(rect.left)); const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); const width = Math.min(COMPOSER_PANEL_MAX_WIDTH, Math.max(PANEL_MIN_WIDTH, available)); - const bottom = Math.max(10, Math.round(viewport - rect.top + COMPOSER_GAP)); + const bottom = Math.max(4, Math.round(viewport - rect.top - 1)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; + const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "composer"; panel.dataset.anchorHealth = anchor.health; panel.dataset.layout = layout; - panel.style.top = "auto"; - panel.style.left = `${left}px`; - panel.style.right = "auto"; - panel.style.bottom = `${bottom}px`; - panel.style.width = `${Math.min(width, available)}px`; - panel.style.maxWidth = `${available}px`; + if (cockpit) { + cockpit.style.top = "auto"; + cockpit.style.left = `${left}px`; + cockpit.style.right = "auto"; + cockpit.style.bottom = `${bottom}px`; + cockpit.style.width = `${Math.min(width, available)}px`; + cockpit.style.maxWidth = `${available}px`; + } positionApprovalModal(); return true; } @@ -1001,48 +1073,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.dataset.expanded = "false"; panel.dataset.tab = "status"; panel.innerHTML = ` -
-
-
-
-
-
- - - - - - -
-
-
-
-
- - - -
-
-
-
-
- - - -
-
-
-
-
-
-
- - -
-
-
-
-
+
@@ -1053,26 +1084,64 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
-
-
- - - - - - - - - +
+
+
+
+
+
+
+ + + + + + +
+
+
+
+
+ + + +
+
+
+
+
+ + + +
+
+
+
+
+
+
+ + +
+
+
+
+
+ + + + + + + + + +
`; document.documentElement.appendChild(panel); - panel.querySelector(".ion-toggle")?.addEventListener("click", () => { - panel.dataset.expanded = panel.dataset.expanded === "true" ? "false" : "true"; - renderPanel(panel); - }); panel.querySelectorAll(".ion-tab").forEach((tab) => { tab.addEventListener("click", () => { const nextTab = tab.dataset.tab ?? "status"; @@ -1151,13 +1220,18 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp function positionPanelAboveComposer(panel = ensurePanel()) { const anchor = detectComposerAnchor(); bridgeState.anchor = anchor; + applyTopRailLayout(panel); if (!applyComposerLayout(panel, anchor)) applyTopBarLayout(panel); } function positionApprovalModal(modal = document.getElementById(MODAL_ID)) { const panel = document.getElementById(PANEL_ID); if (!modal || !panel) return; - const rect = panel.getBoundingClientRect(); + const anchorElement = + panel.dataset.expanded === "true" + ? composerCockpit(panel) ?? topRail(panel) + : topRail(panel) ?? composerCockpit(panel); + const rect = (anchorElement ?? panel).getBoundingClientRect(); const available = Math.max(PANEL_TINY_WIDTH, window.innerWidth - rect.left - TOP_BAR_GAP); modal.style.left = `${rect.left}px`; modal.style.width = `${Math.min(420, available)}px`; @@ -1176,8 +1250,6 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp positionPanelAboveComposer(panel); const titleNode = panel.querySelector(".ion-title"); if (titleNode) titleNode.textContent = bridgeState.title; - const toggle = panel.querySelector(".ion-toggle"); - if (toggle) toggle.textContent = panel.dataset.expanded === "true" ? "-" : "+"; const activeTab = panel.dataset.tab ?? "status"; panel.querySelectorAll(".ion-tab").forEach((tab) => { tab.dataset.active = String(tab.dataset.tab === activeTab); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index 37f8badb..820e0fce 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -13,7 +13,6 @@ const DEFAULT_RIGHT_RESERVE = 250; const PANEL_PREFERRED_WIDTH = 640; const PANEL_MIN_WIDTH = 320; const PANEL_TINY_WIDTH = 230; -const COMPOSER_GAP = 8; const COMPOSER_PANEL_MAX_WIDTH = 920; type AnchorInfo = { @@ -57,36 +56,42 @@ function ensureStyle(): void { } #${PANEL_ID} { position: fixed; - top: auto; - left: 58px; - right: auto; - bottom: 82px; + inset: 0; z-index: 2147483646; - width: min(640px, calc(100vw - 86px)); - max-width: none; box-sizing: border-box; - border: 1px solid rgba(255,255,255,0.10); - border-radius: 10px; - background: rgba(33, 33, 33, 0.94); - box-shadow: 0 8px 28px rgba(0,0,0,0.22); - padding: 4px; - backdrop-filter: blur(12px); + pointer-events: none; } - #${PANEL_ID}[data-anchor-mode="composer"] { - border-radius: 12px; - box-shadow: 0 12px 34px rgba(0,0,0,0.28); - } - #${PANEL_ID}[data-anchor-health="degraded"] { - border-color: rgba(251,191,36,0.30); - } - #${PANEL_ID}[data-expanded="true"] { - max-width: none; + #${PANEL_ID} .ion-top-rail, + #${PANEL_ID} .ion-composer-cockpit { + position: fixed; + box-sizing: border-box; + pointer-events: auto; } - #${PANEL_ID} .ion-toolbar { + #${PANEL_ID} .ion-top-rail { display: flex; align-items: center; gap: 6px; - min-height: 34px; + min-height: 30px; + border: 1px solid rgba(255,255,255,0.08); + border-radius: 10px; + background: rgba(33, 33, 33, 0.78); + box-shadow: 0 6px 18px rgba(0,0,0,0.18); + padding: 2px 4px; + backdrop-filter: blur(12px); + } + #${PANEL_ID}[data-anchor-health="degraded"] .ion-top-rail { + border-color: rgba(251,191,36,0.28); + } + #${PANEL_ID} .ion-composer-cockpit { + display: flex; + flex-direction: column; + align-items: stretch; + gap: 0; + max-width: calc(100vw - 24px); + pointer-events: none; + } + #${PANEL_ID}[data-anchor-mode="topbar_fallback"] .ion-composer-cockpit { + pointer-events: auto; } #${PANEL_ID} .ion-row { display: flex; @@ -128,9 +133,7 @@ function ensureStyle(): void { #${PANEL_ID} .ion-tool, #${PANEL_ID} .ion-tab { flex: 0 0 auto; - height: 28px; border: 1px solid transparent; - border-radius: 8px; color: rgba(255,255,255,0.82); background: transparent; padding: 0 8px; @@ -139,11 +142,10 @@ function ensureStyle(): void { line-height: 1; cursor: pointer; } - #${PANEL_ID} .ion-toggle { - min-width: 32px; - margin-left: 2px; + #${PANEL_ID} .ion-tool { + height: 26px; + border-radius: 8px; } - #${PANEL_ID} .ion-toggle:hover, #${PANEL_ID} .ion-tool:hover, #${PANEL_ID} .ion-tab:hover { background: rgba(255,255,255,0.08); @@ -192,33 +194,60 @@ function ensureStyle(): void { } #${PANEL_ID} .ion-tabs { display: flex; - gap: 4px; - align-items: center; + gap: 3px; + align-items: flex-end; overflow-x: auto; scrollbar-width: none; - border-top: 1px solid rgba(255,255,255,0.07); - margin: 2px 2px 0; - padding: 4px 2px 0; + margin: 0; + padding: 0 0 0 8px; + pointer-events: auto; } #${PANEL_ID} .ion-tabs::-webkit-scrollbar { display: none; } #${PANEL_ID}[data-expanded="true"] .ion-expanded { display: block; - border-top: 1px solid rgba(255,255,255,0.08); - border-bottom: 1px solid rgba(255,255,255,0.08); - margin: 2px 2px 4px; - padding: 8px 8px 9px; + border: 1px solid rgba(255,112,28,0.82); + border-bottom: 0; + border-radius: 14px 14px 0 0; + background: rgba(24, 24, 24, 0.96); + box-shadow: 0 -16px 46px rgba(0,0,0,0.34), 0 -1px 12px rgba(255,112,28,0.15); + backdrop-filter: blur(14px); + margin: 0; + padding: 10px 10px 11px; max-height: min(54vh, 520px); overflow: auto; + pointer-events: auto; } #${PANEL_ID}[data-expanded="true"] .ion-tab-panel[data-active="true"] { display: flex; } + #${PANEL_ID}[data-anchor-mode="topbar_fallback"][data-expanded="true"] .ion-expanded { + border: 1px solid rgba(255,255,255,0.14); + border-radius: 10px 10px 0 0; + box-shadow: 0 10px 28px rgba(0,0,0,0.26); + } + #${PANEL_ID} .ion-tab { + height: 22px; + max-width: 118px; + border: 1px solid rgba(255,112,28,0.70); + border-bottom: 0; + border-radius: 8px 8px 0 0; + background: rgba(32,32,32,0.96); + color: #ffb27a; + padding: 0 9px; + font-size: 11px; + line-height: 21px; + box-shadow: 0 -1px 8px rgba(255,112,28,0.16); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + pointer-events: auto; + } #${PANEL_ID} .ion-tab[data-active="true"] { - color: rgba(255,255,255,0.96); - background: rgba(255,255,255,0.11); - border-color: rgba(255,255,255,0.10); + color: #ffd2b0; + background: rgba(255,112,28,0.16); + border-color: rgba(255,112,28,0.95); } #${PANEL_ID} .ion-detail { margin-top: 0; @@ -234,9 +263,8 @@ function ensureStyle(): void { margin-top: 9px; } #${PANEL_ID}[data-layout="compact"] .ion-tab { - height: 26px; padding: 0 6px; - font-size: 11px; + max-width: 94px; } #${PANEL_ID}[data-layout="tiny"] .ion-tabs { display: none; @@ -374,22 +402,55 @@ function detectRightBoundary(): number { return Math.max(boundary, 160); } -function applyTopBarLayout(panel: HTMLElement): void { +function topRail(panel: HTMLElement): HTMLElement | null { + return panel.querySelector(".ion-top-rail"); +} + +function composerCockpit(panel: HTMLElement): HTMLElement | null { + return panel.querySelector(".ion-composer-cockpit"); +} + +function topBarGeometry() { const left = Math.ceil(detectLeftBoundary() + TOP_BAR_GAP); const right = Math.floor(detectRightBoundary() - TOP_BAR_GAP); const available = Math.max(PANEL_TINY_WIDTH, right - left); const preferred = Math.min(PANEL_PREFERRED_WIDTH, Math.floor(window.innerWidth * 0.58)); const width = Math.max(Math.min(preferred, available), Math.min(PANEL_MIN_WIDTH, available)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 430 ? "compact" : "normal"; + return { left, available, width, layout }; +} + +function applyTopRailLayout(panel: HTMLElement): void { + const { left, available, width } = topBarGeometry(); + const rail = topRail(panel); + if (!rail) return; + rail.style.top = `${PANEL_TOP}px`; + rail.style.left = `${left}px`; + rail.style.right = "auto"; + rail.style.bottom = "auto"; + rail.style.width = `${width}px`; + rail.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + if (typeof panel.style.setProperty === "function") { + panel.style.setProperty("--ion-chatops-modal-left", `${left}px`); + panel.style.setProperty("--ion-chatops-modal-width", `${Math.min(420, available)}px`); + } +} + +function applyTopBarLayout(panel: HTMLElement): void { + const { left, available, width, layout } = topBarGeometry(); + const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "topbar_fallback"; panel.dataset.anchorHealth = "degraded"; panel.dataset.layout = layout; - panel.style.top = `${PANEL_TOP}px`; - panel.style.left = `${left}px`; - panel.style.right = "auto"; - panel.style.bottom = "auto"; - panel.style.width = `${width}px`; - panel.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + applyTopRailLayout(panel); + if (cockpit) { + cockpit.style.top = `${PANEL_TOP + 36}px`; + cockpit.style.left = `${left}px`; + cockpit.style.right = "auto"; + cockpit.style.bottom = "auto"; + cockpit.style.width = `${width}px`; + cockpit.style.maxWidth = `${Math.max(PANEL_TINY_WIDTH, available)}px`; + } if (typeof panel.style.setProperty === "function") { panel.style.setProperty("--ion-chatops-modal-left", `${left}px`); panel.style.setProperty("--ion-chatops-modal-width", `${Math.min(420, available)}px`); @@ -418,9 +479,11 @@ function findComposerInput(): HTMLElement | null { } function candidateComposerContainer(input: HTMLElement): HTMLElement { - let best: HTMLElement = input; + type ScoredCandidate = { element: HTMLElement; score: number }; + let best: ScoredCandidate | null = null; let current: HTMLElement | null = input; let depth = 0; + const leftBoundary = detectLeftBoundary(); while (current?.parentElement && depth < 10) { current = current.parentElement; depth += 1; @@ -428,11 +491,18 @@ function candidateComposerContainer(input: HTMLElement): HTMLElement { const rect = visibleRect(current); if (!rect) continue; const bottomHalf = rect.top > viewportHeight() * 0.38; - const plausibleWidth = rect.width >= Math.min(360, window.innerWidth * 0.62) && rect.width <= window.innerWidth - 12; - const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(260, viewportHeight() * 0.38); - if (bottomHalf && plausibleWidth && plausibleHeight) best = current; + const respectsSidebar = rect.left >= Math.max(0, leftBoundary - 12); + const plausibleWidth = + rect.width >= Math.min(320, window.innerWidth * 0.42) && + rect.width <= Math.min(window.innerWidth * 0.90, window.innerWidth - leftBoundary - 16); + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(220, viewportHeight() * 0.30); + if (!bottomHalf || !respectsSidebar || !plausibleWidth || !plausibleHeight) continue; + const buttons = Array.from(current.querySelectorAll("button")).filter((button) => visibleRect(button)).length; + const radius = Number.parseFloat(window.getComputedStyle(current).borderRadius || "0") || 0; + const score = (buttons >= 2 ? 0 : 60) + (radius >= 10 ? 0 : 16) + rect.width / 100 + rect.height / 40 + depth * 0.4; + if (!best || score < best.score) best = { element: current, score }; } - return best; + return best?.element ?? input; } function detectComposerAnchor(): AnchorInfo { @@ -471,17 +541,20 @@ function applyComposerLayout(panel: HTMLElement, anchor: AnchorInfo): boolean { const left = Math.max(margin, Math.round(rect.left)); const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); const width = Math.min(COMPOSER_PANEL_MAX_WIDTH, Math.max(PANEL_MIN_WIDTH, available)); - const bottom = Math.max(10, Math.round(viewport - rect.top + COMPOSER_GAP)); + const bottom = Math.max(4, Math.round(viewport - rect.top - 1)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; + const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "composer"; panel.dataset.anchorHealth = anchor.health; panel.dataset.layout = layout; - panel.style.top = "auto"; - panel.style.left = `${left}px`; - panel.style.right = "auto"; - panel.style.bottom = `${bottom}px`; - panel.style.width = `${Math.min(width, available)}px`; - panel.style.maxWidth = `${available}px`; + if (cockpit) { + cockpit.style.top = "auto"; + cockpit.style.left = `${left}px`; + cockpit.style.right = "auto"; + cockpit.style.bottom = `${bottom}px`; + cockpit.style.width = `${Math.min(width, available)}px`; + cockpit.style.maxWidth = `${available}px`; + } positionApprovalModal(); return true; } @@ -496,48 +569,7 @@ function ensurePanel(): HTMLElement { panel.dataset.expanded = "false"; panel.dataset.tab = "status"; panel.innerHTML = ` -
-
-
-
-
-
- - - - - - -
-
-
-
-
- - - -
-
-
-
-
- - - -
-
-
-
-
-
-
- - -
-
-
-
-
+
@@ -548,26 +580,64 @@ function ensurePanel(): HTMLElement {
-
-
- - - - - - - - - +
+
+
+
+
+
+
+ + + + + + +
+
+
+
+
+ + + +
+
+
+
+
+ + + +
+
+
+
+
+
+
+ + +
+
+
+
+
+ + + + + + + + + +
`; document.documentElement.appendChild(panel); - panel.querySelector(".ion-toggle")?.addEventListener("click", () => { - panel.dataset.expanded = panel.dataset.expanded === "true" ? "false" : "true"; - renderPanel(panel); - }); panel.querySelectorAll(".ion-tab").forEach((tab) => { tab.addEventListener("click", () => { const nextTab = tab.dataset.tab ?? "status"; @@ -648,8 +718,6 @@ function renderPanel(panel = ensurePanel()): void { positionPanelAboveComposer(panel); const titleNode = panel.querySelector(".ion-title"); if (titleNode) titleNode.textContent = bridgeState.title; - const toggle = panel.querySelector(".ion-toggle"); - if (toggle) toggle.textContent = panel.dataset.expanded === "true" ? "-" : "+"; const activeTab = panel.dataset.tab ?? "status"; panel.querySelectorAll(".ion-tab").forEach((tab) => { tab.dataset.active = String(tab.dataset.tab === activeTab); @@ -680,13 +748,18 @@ function renderPanel(panel = ensurePanel()): void { function positionPanelAboveComposer(panel = ensurePanel()): void { const anchor = detectComposerAnchor(); bridgeState.anchor = anchor; + applyTopRailLayout(panel); if (!applyComposerLayout(panel, anchor)) applyTopBarLayout(panel); } function positionApprovalModal(modal = document.getElementById(MODAL_ID)): void { const panel = document.getElementById(PANEL_ID) as HTMLElement | null; if (!modal || !panel) return; - const rect = panel.getBoundingClientRect(); + const anchorElement = + panel.dataset.expanded === "true" + ? composerCockpit(panel) ?? topRail(panel) + : topRail(panel) ?? composerCockpit(panel); + const rect = (anchorElement ?? panel).getBoundingClientRect(); const available = Math.max(PANEL_TINY_WIDTH, window.innerWidth - rect.left - TOP_BAR_GAP); modal.style.left = `${rect.left}px`; modal.style.width = `${Math.min(420, available)}px`; diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index f2e4425b..969e0ec8 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -232,8 +232,13 @@ const panel = byId.get("ion-chatops-bridge-panel"); if (panel.dataset.anchorMode !== "composer") { throw new Error("composer anchor layout did not activate"); } -if (!String(panel.style.bottom || "").endsWith("px")) { - throw new Error("composer anchored panel did not set bottom offset"); +const cockpit = panel.querySelector(".ion-composer-cockpit"); +const topRail = panel.querySelector(".ion-top-rail"); +if (!String(cockpit?.style.bottom || "").endsWith("px")) { + throw new Error("composer cockpit did not set bottom offset"); +} +if (!String(topRail?.style.top || "").endsWith("px")) { + throw new Error("top status rail did not set top offset"); } if (!sent || sent.type !== "ion_chatops_candidate") { throw new Error("candidate was not sent"); From e90ecabeac6abacf5fbaa25dea1e605fea2f58e3 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 14:22:16 -0400 Subject: [PATCH 17/30] Add guarded ChatOps artifact attachment lane --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 102 +++++++ ION/04_packages/kernel/ion_chatops_bridge.py | 256 ++++++++++++++++++ .../ion_chatops_bridge/README.md | 29 +- .../ion_chatops_bridge/dist/background.js | 42 +++ .../ion_chatops_bridge/dist/content.js | 107 +++++++- .../ion_chatops_bridge/src/approval_ui.ts | 19 +- .../ion_chatops_bridge/src/background.ts | 42 +++ .../ion_chatops_bridge/src/content.ts | 89 ++++++ .../local_daemon/ion_chatops_bridge/README.md | 9 + .../test_kernel_ion_chatops_bridge_policy.py | 35 +++ 10 files changed, 721 insertions(+), 9 deletions(-) create mode 100644 ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md new file mode 100644 index 00000000..f88a9e15 --- /dev/null +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -0,0 +1,102 @@ +# ION Browser File Attachment Automation Protocol + +Status: draft implementation protocol + +This protocol defines the bounded path for moving local ION files, ZIPs, and +artifact returns into ChatGPT Browser. + +## Invariant + +Browser file automation is operator augmentation, not silent upload authority. + +```text +visible target +-> preview +-> explicit Braden approval +-> stale-target check +-> execute through a known carrier +-> log +-> receipt when ION state is touched +``` + +The browser extension may present and assist. The local daemon may package, +hash, ticket, and serve artifacts. Neither surface may upload arbitrary files, +click Send silently, expose secrets, or treat ChatGPT sandbox output as accepted +ION state. + +## First Implemented Slice + +Owner surfaces: + +- `ION/04_packages/kernel/ion_chatops_bridge.py` +- `ION/09_integrations/browser_extension/ion_chatops_bridge/` +- `ION/09_integrations/local_daemon/ion_chatops_bridge/` + +Implemented lane: + +```text +Artifacts tab +-> Attachables +-> Drop Latest +-> Braden approval +-> daemon upload ticket +-> localhost artifact download +-> visible browser drag/drop attempt +``` + +This lane is intentionally allowed to fail closed. Browsers and ChatGPT may +reject synthetic drag/drop events. When that happens, the extension must show the +file name, size, sha256, and receipt path so Braden can use the manual attach +picker or a stronger future local macro lane. + +## Candidate Artifact Roots + +The daemon may expose only bounded candidate material from policy-owned roots, +including: + +```text +ION/05_context/current/chatops_bridge/exports/ +ION/05_context/current/chatops_bridge/artifacts/ +ION/05_context/inbox/chatgpt_sandbox_returns/ +ION/06_artifacts/packages/ +``` + +The daemon must reject protected path tokens and files above the configured +browser upload size limit. + +## Future Native Macro Lane + +If browser-only drag/drop is unreliable, ION may add a stronger local connected +app lane. That lane should be implemented as a separate bounded owner, not as +hidden extension behavior. + +Permitted future mechanisms: + +- Chrome Debugger API, if explicitly granted and visible in the UI. +- Native messaging helper. +- Local desktop automation harness. +- OS-level file picker assistance. + +Required controls: + +- exact target preview, +- selected file manifest and sha256, +- Braden approval, +- stale-target re-check, +- visible operation log, +- ION receipt when state is touched, +- no Send click unless separately approved. + +## Non-Authority + +This protocol does not grant: + +- production authority, +- secret access, +- arbitrary filesystem read, +- broad shell, +- direct source patch application, +- git push, +- silent upload, +- silent send. + diff --git a/ION/04_packages/kernel/ion_chatops_bridge.py b/ION/04_packages/kernel/ion_chatops_bridge.py index e8e43dd7..dcc365f2 100644 --- a/ION/04_packages/kernel/ion_chatops_bridge.py +++ b/ION/04_packages/kernel/ion_chatops_bridge.py @@ -11,11 +11,14 @@ import argparse import hashlib import json +import mimetypes import re +import secrets from datetime import datetime, timezone from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer from pathlib import Path from typing import Any, Mapping +from urllib.parse import unquote from .ion_carrier_onboard import resolve_shell_root_from_ion_root from .ion_carrier_onboarding_packet import build_carrier_onboarding_packet @@ -53,6 +56,8 @@ RUNTIME_DIR = BASE_DIR / "runtime" ARTIFACTS_DIR = BASE_DIR / "artifacts" EXPORTS_DIR = BASE_DIR / "exports" +ARTIFACT_TICKETS_DIR = RUNTIME_DIR / "artifact_upload_tickets" +MAX_BROWSER_UPLOAD_BYTES = 25 * 1024 * 1024 POLICY_PATHS = { "runtime_protocol": "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md", @@ -106,6 +111,22 @@ "vault", ) +ATTACHABLE_FILE_SUFFIXES = ( + ".zip", + ".md", + ".txt", + ".json", + ".diff", + ".patch", +) + +ATTACHABLE_ROOTS = ( + "ION/05_context/current/chatops_bridge/exports/", + "ION/05_context/current/chatops_bridge/artifacts/", + "ION/05_context/inbox/chatgpt_sandbox_returns/", + "ION/06_artifacts/packages/", +) + FAILURE_CLASSES = ( "CHATOPS_SCHEMA_FAILURE", "AGENT_INVOCATION_FAILURE", @@ -662,6 +683,193 @@ def _rel_if_inside_root(root: Path, value: str | Path | None) -> str | None: return path.as_posix() +def _path_from_repo_rel(root: Path, rel_value: str | Path | None) -> Path | None: + if rel_value is None: + return None + rel = str(rel_value).replace("\\", "/").strip() + if not rel or rel.startswith("/") or rel.startswith("../") or "/../" in rel or rel.endswith("/.."): + return None + path = (root / rel).resolve() + try: + path.relative_to(root) + except ValueError: + return None + return path + + +def _is_attachable_rel_path(rel: str) -> bool: + lowered = f"/{rel.lower()}" + if any(token in lowered for token in PROTECTED_PATH_TOKENS): + return False + return any(rel.startswith(prefix) for prefix in ATTACHABLE_ROOTS) + + +def _artifact_record(root: Path, path: Path) -> dict[str, Any] | None: + if not path.is_file(): + return None + rel = _repo_rel(path, root) + if not _is_attachable_rel_path(rel): + return None + suffix = path.suffix.lower() + if suffix not in ATTACHABLE_FILE_SUFFIXES: + return None + stat = path.stat() + if stat.st_size > MAX_BROWSER_UPLOAD_BYTES: + return { + "path": rel, + "name": path.name, + "size_bytes": stat.st_size, + "sha256": None, + "mtime": datetime.fromtimestamp(stat.st_mtime, timezone.utc).replace(microsecond=0).isoformat(), + "content_type": mimetypes.guess_type(path.name)[0] or "application/octet-stream", + "attachable": False, + "finding": "file_exceeds_browser_upload_limit", + } + return { + "path": rel, + "name": path.name, + "size_bytes": stat.st_size, + "sha256": _sha256_file(path), + "mtime": datetime.fromtimestamp(stat.st_mtime, timezone.utc).replace(microsecond=0).isoformat(), + "content_type": mimetypes.guess_type(path.name)[0] or "application/octet-stream", + "attachable": True, + "finding": None, + } + + +def build_chatops_attachable_artifacts(root: str | Path | None = None, *, limit: int = 30) -> dict[str, Any]: + shell_root = _resolve_root(root) + candidates: list[dict[str, Any]] = [] + for rel_root in ATTACHABLE_ROOTS: + base = shell_root / rel_root + if not base.exists(): + continue + for suffix in ATTACHABLE_FILE_SUFFIXES: + for path in base.rglob(f"*{suffix}"): + record = _artifact_record(shell_root, path) + if record: + candidates.append(record) + candidates.sort(key=lambda row: str(row.get("mtime") or ""), reverse=True) + return { + "schema_id": "ion.chatops.attachable_artifacts.v1", + "ok": True, + "verdict": READY_VERDICT, + "max_browser_upload_bytes": MAX_BROWSER_UPLOAD_BYTES, + "candidate_count": len(candidates), + "candidates": candidates[:limit], + "allowed_roots": list(ATTACHABLE_ROOTS), + "supported_suffixes": list(ATTACHABLE_FILE_SUFFIXES), + "production_authority": False, + "live_execution_authority": False, + } + + +def prepare_chatops_artifact_upload(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + approval = _validate_bridge_operation_approval(packet) + operation = "artifact_prepare_browser_drop" + if not approval["accepted"]: + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="rejected", + packet=packet, + result=approval, + failure_classification="USER_APPROVAL_REJECTED", + ) + return { + "schema_id": "ion.chatops.artifact_upload_prepare_result.v1", + "ok": False, + "finding": "approval_failed", + "approval": approval, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + } + artifact_path = _path_from_repo_rel(shell_root, packet.get("artifact_path") or packet.get("path")) + if artifact_path is None or not artifact_path.exists(): + result = {"ok": False, "finding": "artifact_not_found"} + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="failed", + packet=packet, + result=result, + failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + return {**result, "schema_id": "ion.chatops.artifact_upload_prepare_result.v1", "receipt_path": receipt_path} + record = _artifact_record(shell_root, artifact_path) + if not record or not record.get("attachable"): + result = {"ok": False, "finding": (record or {}).get("finding") or "artifact_not_attachable", "artifact": record} + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="failed", + packet=packet, + result=result, + failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + return {**result, "schema_id": "ion.chatops.artifact_upload_prepare_result.v1", "receipt_path": receipt_path} + token = secrets.token_urlsafe(24) + ticket = { + "schema_id": "ion.chatops.artifact_upload_ticket.v1", + "created_at": _now(), + "token": token, + "artifact": record, + "operation": operation, + "approved_by": approval.get("approved_by"), + "production_authority": False, + "live_execution_authority": False, + } + ticket_path = shell_root / ARTIFACT_TICKETS_DIR / f"{_safe_slug(token)}.json" + _write_json(ticket_path, ticket) + result = { + "ok": True, + "artifact": record, + "download_token": token, + "download_url": f"http://127.0.0.1:{DEFAULT_PORT}/artifacts/download/{token}", + "ticket_path": _repo_rel(ticket_path, shell_root), + "content_type": record.get("content_type"), + "filename": record.get("name"), + "size_bytes": record.get("size_bytes"), + "sha256": record.get("sha256"), + } + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="completed", + packet=packet, + result=result, + files_touched=[_repo_rel(ticket_path, shell_root)], + target_refs=[{"provider": "local_ion", "path": record["path"], "role": "browser_attachment_candidate"}], + ) + return { + "schema_id": "ion.chatops.artifact_upload_prepare_result.v1", + "ok": True, + "verdict": READY_VERDICT, + "receipt_path": receipt_path, + **result, + "production_authority": False, + "live_execution_authority": False, + } + + +def resolve_chatops_artifact_download(root: str | Path | None, token: str) -> tuple[Path | None, dict[str, Any]]: + shell_root = _resolve_root(root) + ticket_path = shell_root / ARTIFACT_TICKETS_DIR / f"{_safe_slug(token)}.json" + ticket = _read_json(ticket_path) + if not ticket: + return None, {"ok": False, "finding": "ticket_not_found"} + artifact = ticket.get("artifact") if isinstance(ticket.get("artifact"), Mapping) else {} + path = _path_from_repo_rel(shell_root, artifact.get("path")) + if path is None or not path.exists() or not path.is_file(): + return None, {"ok": False, "finding": "artifact_not_found", "ticket": ticket} + record = _artifact_record(shell_root, path) + if not record or not record.get("attachable") or record.get("sha256") != artifact.get("sha256"): + return None, {"ok": False, "finding": "artifact_ticket_validation_failed", "ticket": ticket, "current": record} + return path, {"ok": True, "ticket": ticket, "artifact": record} + + def _operation_receipt_path(root: Path, receipt_id: str) -> Path: return root / RECEIPTS_DIR / f"{_safe_slug(receipt_id)}.json" @@ -913,6 +1121,8 @@ def build_chatops_context_pack(root: str | Path | None = None) -> dict[str, Any] "agent_prepare_next": "POST /agent/prepare-next with Braden approval", "agent_start_one": "POST /agent/process-one with start=true and Braden approval", "compact_zip": "POST /exports/lifecycle-zip with package_class=COMPACT_RUNTIME and Braden approval", + "attachable_artifacts": "GET /artifacts/attachables", + "prepare_artifact_upload": "POST /artifacts/prepare-upload with Braden approval", "sandbox_returns": "GET /sandbox/returns", "sandbox_diff_preview": "POST /sandbox/returns/diff-preview with Braden approval", "sandbox_queue_review": "POST /sandbox/returns/queue-review with Braden approval", @@ -1195,11 +1405,24 @@ def build_chatops_policy(root: str | Path | None = None) -> dict[str, Any]: "context_pack": "GET /exports/context-pack", "compact_runtime_zip": "POST /exports/lifecycle-zip", "safe_full_project_zip": "POST /exports/safe-full-zip", + "attachable_artifacts": "GET /artifacts/attachables", + "prepare_artifact_upload": "POST /artifacts/prepare-upload", + "browser_upload_limit_bytes": MAX_BROWSER_UPLOAD_BYTES, "packager_owners": [ "ION/04_packages/kernel/ion_lifecycle_packager.py", "ION/04_packages/kernel/ion_safe_full_project_packager.py", ], }, + "artifact_upload_surface": { + "list": "GET /artifacts/attachables", + "prepare_upload": "POST /artifacts/prepare-upload", + "download_ticket": "GET /artifacts/download/{token}", + "allowed_roots": list(ATTACHABLE_ROOTS), + "supported_suffixes": list(ATTACHABLE_FILE_SUFFIXES), + "max_browser_upload_bytes": MAX_BROWSER_UPLOAD_BYTES, + "silent_upload_authority": False, + "send_click_authority": False, + }, "sandbox_return_surface": { "queue": "GET /sandbox/returns", "detail": "GET /sandbox/returns/{return_id}", @@ -1398,6 +1621,23 @@ def _http_response(handler: BaseHTTPRequestHandler, status: int, payload: Mappin handler.wfile.write(body) +def _http_file_response(handler: BaseHTTPRequestHandler, path: Path, artifact: Mapping[str, Any]) -> None: + size = path.stat().st_size + content_type = str(artifact.get("content_type") or mimetypes.guess_type(path.name)[0] or "application/octet-stream") + filename = re.sub(r'["\r\n]+', "_", path.name) + handler.send_response(200) + handler.send_header("Content-Type", content_type) + handler.send_header("Content-Length", str(size)) + handler.send_header("Content-Disposition", f'attachment; filename="{filename}"') + handler.send_header("Access-Control-Allow-Origin", "https://chatgpt.com") + handler.send_header("Access-Control-Allow-Headers", "Content-Type") + handler.send_header("Access-Control-Allow-Methods", "GET, POST, OPTIONS") + handler.end_headers() + with path.open("rb") as fh: + for chunk in iter(lambda: fh.read(1024 * 1024), b""): + handler.wfile.write(chunk) + + def make_handler(root: Path) -> type[BaseHTTPRequestHandler]: class ChatOpsHandler(BaseHTTPRequestHandler): def log_message(self, format: str, *args: Any) -> None: # noqa: A002 - stdlib signature @@ -1426,6 +1666,18 @@ def do_GET(self) -> None: # noqa: N802 - stdlib handler name if path == "/exports/context-pack": _http_response(self, 200, build_chatops_context_pack(root)) return + if path == "/artifacts/attachables": + _http_response(self, 200, build_chatops_attachable_artifacts(root)) + return + if path.startswith("/artifacts/download/"): + token = unquote(path.rsplit("/", 1)[-1]) + artifact_path, validation = resolve_chatops_artifact_download(root, token) + if not artifact_path: + _http_response(self, 404, validation) + return + artifact = validation.get("artifact") if isinstance(validation.get("artifact"), Mapping) else {} + _http_file_response(self, artifact_path, artifact) + return if path == "/sandbox/returns": _http_response(self, 200, build_sandbox_return_queue_projection(root)) return @@ -1481,6 +1733,10 @@ def do_POST(self) -> None: # noqa: N802 - stdlib handler name result = create_chatops_safe_full_zip(root, packet) _http_response(self, 200 if result.get("ok") else 409, result) return + if path == "/artifacts/prepare-upload": + result = prepare_chatops_artifact_upload(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return if path == "/sandbox/returns/register": result = register_chatops_sandbox_return(root, packet) _http_response(self, 200 if result.get("ok") else 409, result) diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 2ca14676..913c8c6b 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -20,6 +20,10 @@ MVP behavior: existing lifecycle and safe full-project packagers; - list ChatGPT sandbox returns and request approval-gated diff preview or Codex review queueing through the sandbox return intake owner; +- list attachable local package/inbox artifacts and request approval-gated + browser drop tickets from the local daemon; +- attempt a visible ChatGPT drag/drop for an approved artifact without clicking + Send; - show an approval modal for Braden; - insert a known-good Sev re-entry prompt into the ChatGPT composer; - keep fabricated smoke/Codex work-packet actions under Diagnostics as local bridge tests; @@ -127,20 +131,31 @@ return after Braden approval. `Queue Review` creates a focused Codex review packet after Braden approval. None of these controls apply patches to live source. -## File And ZIP Attachment Direction +## File And ZIP Attachment Lane -The extension should eventually support sending approved local packages or ZIPs -to ChatGPT, but not as a silent upload path. Browsers do not allow ordinary page -scripts to set local file inputs to arbitrary paths, and synthetic drag/drop may -be rejected by ChatGPT or the browser. +Protocol owner: `ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md` + +The Artifacts tab includes the first guarded file lane: + +- `Attachables`: lists files the daemon considers safe to present for browser + attachment from bounded package/inbox roots. +- `Drop Latest`: asks Braden for approval, asks the daemon for a one-use-ish + localhost download ticket, fetches the file as a browser `File`, and attempts + visible `dragenter`/`dragover`/`drop` events against the ChatGPT composer. + +Browsers do not allow ordinary page scripts to set local file inputs to +arbitrary paths. ChatGPT or the browser may also reject synthetic drag/drop. +When that happens, the panel still provides the manifest/hash/receipt so Braden +can use the manual attach picker or a future native/debugger macro lane. The intended ION path is: 1. local daemon creates or exposes a public-safe package with manifest and sha256; 2. extension shows exact file path, size, hash, and intended chat target; -3. Braden approves the attach/send operation; +3. Braden approves the attach operation; 4. extension uses the most reliable available browser path: + - approved visible synthetic drag/drop where accepted; - user-visible attach picker guidance; - approved downloaded package handoff; - future Chrome-extension/native or debugger-mediated upload lane if @@ -148,4 +163,4 @@ The intended ION path is: 5. ION records the package/export receipt and any returned sandbox artifact. No file should be uploaded without explicit user approval, a manifest, and a -receipt when ION state is touched. +receipt when ION state is touched. This MVP does not click Send. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js index 90507c5c..f1ec98f0 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js @@ -105,6 +105,48 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_artifact_attachables") { + (async () => { + const result = await getJson("/artifacts/attachables"); + sendResponse({ ok: Boolean(result?.ok), stage: "artifact_attachables", result }); + })().catch((error) => { + sendResponse({ ok: false, stage: "artifact_attachables_exception", error: error.message }); + }); + return true; + } + + if (message.type === "ion_chatops_artifact_prepare_latest") { + (async () => { + const attachables = await getJson("/artifacts/attachables"); + const rows = Array.isArray(attachables?.candidates) ? attachables.candidates : []; + const candidate = rows.find((row) => row?.attachable && typeof row.path === "string"); + if (!attachables?.ok || !candidate) { + sendResponse({ + ok: false, + stage: "artifact_prepare_latest", + finding: attachables?.ok ? "no_attachable_artifact" : "attachables_unavailable", + result: attachables + }); + return; + } + const approved = await requestBridgeApproval( + sender, + "artifact_prepare_browser_drop", + `Prepare ${candidate.name ?? candidate.path} (${candidate.size_bytes ?? "unknown"} bytes) for a visible ChatGPT file drop. This will not click Send.`, + "browser_file_upload_approval_required" + ); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED", candidate }); + return; + } + const result = await postJson("/artifacts/prepare-upload", approvedPayload({ artifact_path: candidate.path })); + sendResponse({ ok: Boolean(result?.ok), stage: "artifact_prepare_latest", result }); + })().catch((error) => { + sendResponse({ ok: false, stage: "artifact_prepare_latest_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_sandbox_diff_latest") { (async () => { const returnId = String(message.payload?.return_id ?? "").trim(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index f2a912cd..69aea579 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -1118,7 +1118,13 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
-
+
+
+
+ + +
+
@@ -1209,6 +1215,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="sandbox-review"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-review")); }); + panel.querySelector('[data-tool="artifact-attachables"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-attachables")); + }); + panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -1312,6 +1324,11 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp renderPanel(); } + function setBridgeArtifactDetail(detail) { + bridgeState.artifacts = detail; + renderPanel(); + } + function setBridgeDiagnosticsDetail(detail) { bridgeState.diagnostics = detail; renderPanel(); @@ -1723,6 +1740,88 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); } + function requestArtifactAttachables() { + setBridgeStatus("Attachables", "Reading local packages and sandbox return artifacts.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_artifact_attachables" }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeArtifactDetail(detail); + setBridgeStatus(response?.ok ? "Attachables ready" : "Attachables blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult("Attachable artifacts", detail); + }); + } + + function findDropTarget() { + const composer = findComposer(); + if (!composer) return null; + return ( + composer.closest("form") ?? + composer.closest("[data-testid*='composer']") ?? + composer.closest("main") ?? + composer + ); + } + + async function attemptPreparedArtifactDrop(result) { + const downloadUrl = String(result?.download_url ?? "").trim(); + const filename = String(result?.filename ?? result?.artifact?.name ?? "ion-artifact.bin").trim(); + const contentType = String(result?.content_type ?? result?.artifact?.content_type ?? "application/octet-stream").trim(); + const target = findDropTarget(); + if (!downloadUrl || !target) { + const detail = !downloadUrl ? "download_url_missing" : "chatgpt_drop_target_not_found"; + setBridgeArtifactDetail(detail); + setBridgeStatus("Artifact drop blocked", detail, "error"); + return; + } + try { + const response = await fetch(downloadUrl); + if (!response.ok) throw new Error(`download_failed_${response.status}`); + const blob = await response.blob(); + const file = new File([blob], filename, { type: contentType || blob.type || "application/octet-stream" }); + const transfer = new DataTransfer(); + transfer.items.add(file); + for (const eventName of ["dragenter", "dragover", "drop"]) { + const event = new DragEvent(eventName, { + bubbles: true, + cancelable: true, + composed: true, + dataTransfer: transfer, + }); + target.dispatchEvent(event); + } + const detail = [ + "visible_browser_drop_attempted", + `filename: ${filename}`, + `size_bytes: ${file.size}`, + `sha256: ${result?.sha256 ?? ""}`, + `receipt_path: ${result?.receipt_path ?? ""}`, + "", + "If ChatGPT ignored the synthetic drop, use the manifest/hash above with the manual attach picker or the future native macro lane.", + "No Send click was performed.", + ].join("\n"); + setBridgeArtifactDetail(detail); + setBridgeStatus("Artifact drop attempted", `${filename}\nNo Send click was performed.`, "success"); + await copyBridgeResult("Artifact drop receipt", detail); + } catch (error) { + const detail = `artifact_drop_failed: ${error instanceof Error ? error.message : String(error)}`; + setBridgeArtifactDetail(detail); + setBridgeStatus("Artifact drop failed", detail, "error"); + } + } + + function requestArtifactDropLatest() { + setBridgeStatus("Artifact drop latest", "Requesting Braden approval before preparing a browser drop ticket.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_artifact_prepare_latest" }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeArtifactDetail(detail); + if (!response?.ok) { + setBridgeStatus("Artifact drop blocked", detail.split("\n")[0] ?? "", "error"); + return; + } + setBridgeStatus("Artifact ticket ready", "Attempting visible ChatGPT drag/drop. No Send click will occur.", "working"); + await attemptPreparedArtifactDrop(response.result); + }); + } + function actionSummary(packet) { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -2015,6 +2114,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-sandbox-review", () => { requestSandboxMutation("ion_chatops_sandbox_queue_latest", "Sandbox queue review"); }); + window.addEventListener("ion-chatops-artifact-attachables", () => { + requestArtifactAttachables(); + }); + window.addEventListener("ion-chatops-artifact-drop-latest", () => { + requestArtifactDropLatest(); + }); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); } else { diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index 820e0fce..cf015b66 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -614,7 +614,13 @@ function ensurePanel(): HTMLElement {
-
+
+
+
+ + +
+
@@ -705,6 +711,12 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="sandbox-review"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-sandbox-review")); }); + panel.querySelector('[data-tool="artifact-attachables"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-attachables")); + }); + panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -801,6 +813,11 @@ export function setBridgeSandboxDetail(detail: string): void { renderPanel(); } +export function setBridgeArtifactDetail(detail: string): void { + bridgeState.artifacts = detail; + renderPanel(); +} + export function setBridgeDiagnosticsDetail(detail: string): void { bridgeState.diagnostics = detail; renderPanel(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts index 19accbf4..288ea945 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts @@ -107,6 +107,48 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_artifact_attachables") { + (async () => { + const result = await getJson("/artifacts/attachables"); + sendResponse({ ok: Boolean(result?.ok), stage: "artifact_attachables", result }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "artifact_attachables_exception", error: error.message }); + }); + return true; + } + + if (message.type === "ion_chatops_artifact_prepare_latest") { + (async () => { + const attachables = await getJson("/artifacts/attachables"); + const rows = Array.isArray(attachables?.candidates) ? attachables.candidates : []; + const candidate = rows.find((row: any) => row?.attachable && typeof row.path === "string"); + if (!attachables?.ok || !candidate) { + sendResponse({ + ok: false, + stage: "artifact_prepare_latest", + finding: attachables?.ok ? "no_attachable_artifact" : "attachables_unavailable", + result: attachables + }); + return; + } + const approved = await requestBridgeApproval( + sender, + "artifact_prepare_browser_drop", + `Prepare ${candidate.name ?? candidate.path} (${candidate.size_bytes ?? "unknown"} bytes) for a visible ChatGPT file drop. This will not click Send.`, + "browser_file_upload_approval_required" + ); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED", candidate }); + return; + } + const result = await postJson("/artifacts/prepare-upload", approvedPayload({ artifact_path: candidate.path })); + sendResponse({ ok: Boolean(result?.ok), stage: "artifact_prepare_latest", result }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "artifact_prepare_latest_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_sandbox_diff_latest") { (async () => { const returnId = String(message.payload?.return_id ?? "").trim(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index 8b5b6131..dfeba3a2 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -5,6 +5,7 @@ import { refreshBridgePosition, setBridgeActionDetail, setBridgeAgentDetail, + setBridgeArtifactDetail, setBridgeDiagnosticsDetail, setBridgePackageDetail, setBridgeSandboxDetail, @@ -667,6 +668,88 @@ function requestSandboxMutation(type: "ion_chatops_sandbox_diff_latest" | "ion_c }); } +function requestArtifactAttachables(): void { + setBridgeStatus("Attachables", "Reading local packages and sandbox return artifacts.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_artifact_attachables" }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeArtifactDetail(detail); + setBridgeStatus(response?.ok ? "Attachables ready" : "Attachables blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult("Attachable artifacts", detail); + }); +} + +function findDropTarget(): HTMLElement | null { + const composer = findComposer(); + if (!composer) return null; + return ( + composer.closest("form") ?? + composer.closest("[data-testid*='composer']") ?? + composer.closest("main") ?? + composer + ) as HTMLElement | null; +} + +async function attemptPreparedArtifactDrop(result: any): Promise { + const downloadUrl = String(result?.download_url ?? "").trim(); + const filename = String(result?.filename ?? result?.artifact?.name ?? "ion-artifact.bin").trim(); + const contentType = String(result?.content_type ?? result?.artifact?.content_type ?? "application/octet-stream").trim(); + const target = findDropTarget(); + if (!downloadUrl || !target) { + const detail = !downloadUrl ? "download_url_missing" : "chatgpt_drop_target_not_found"; + setBridgeArtifactDetail(detail); + setBridgeStatus("Artifact drop blocked", detail, "error"); + return; + } + try { + const response = await fetch(downloadUrl); + if (!response.ok) throw new Error(`download_failed_${response.status}`); + const blob = await response.blob(); + const file = new File([blob], filename, { type: contentType || blob.type || "application/octet-stream" }); + const transfer = new DataTransfer(); + transfer.items.add(file); + for (const eventName of ["dragenter", "dragover", "drop"]) { + const event = new DragEvent(eventName, { + bubbles: true, + cancelable: true, + composed: true, + dataTransfer: transfer, + }); + target.dispatchEvent(event); + } + const detail = [ + "visible_browser_drop_attempted", + `filename: ${filename}`, + `size_bytes: ${file.size}`, + `sha256: ${result?.sha256 ?? ""}`, + `receipt_path: ${result?.receipt_path ?? ""}`, + "", + "If ChatGPT ignored the synthetic drop, use the manifest/hash above with the manual attach picker or the future native macro lane.", + "No Send click was performed.", + ].join("\n"); + setBridgeArtifactDetail(detail); + setBridgeStatus("Artifact drop attempted", `${filename}\nNo Send click was performed.`, "success"); + await copyBridgeResult("Artifact drop receipt", detail); + } catch (error) { + const detail = `artifact_drop_failed: ${error instanceof Error ? error.message : String(error)}`; + setBridgeArtifactDetail(detail); + setBridgeStatus("Artifact drop failed", detail, "error"); + } +} + +function requestArtifactDropLatest(): void { + setBridgeStatus("Artifact drop latest", "Requesting Braden approval before preparing a browser drop ticket.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_artifact_prepare_latest" }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeArtifactDetail(detail); + if (!response?.ok) { + setBridgeStatus("Artifact drop blocked", detail.split("\n")[0] ?? "", "error"); + return; + } + setBridgeStatus("Artifact ticket ready", "Attempting visible ChatGPT drag/drop. No Send click will occur.", "working"); + await attemptPreparedArtifactDrop(response.result); + }); +} + function actionSummary(packet: ReturnType): string { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -959,6 +1042,12 @@ window.addEventListener("ion-chatops-sandbox-diff", () => { window.addEventListener("ion-chatops-sandbox-review", () => { requestSandboxMutation("ion_chatops_sandbox_queue_latest", "Sandbox queue review"); }); +window.addEventListener("ion-chatops-artifact-attachables", () => { + requestArtifactAttachables(); +}); +window.addEventListener("ion-chatops-artifact-drop-latest", () => { + requestArtifactDropLatest(); +}); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); diff --git a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md index 7d6e84c9..cb88a1ca 100644 --- a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md +++ b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md @@ -23,6 +23,9 @@ GET /actions/{action_id} GET /receipts/{receipt_id} GET /sandbox/returns GET /sandbox/returns/{return_id} +GET /artifacts/attachables +GET /artifacts/download/{download_token} +POST /artifacts/prepare-upload POST /sandbox/returns/register POST /sandbox/returns/file POST /sandbox/returns/commit @@ -39,3 +42,9 @@ The sandbox return endpoints land review material only under `ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py`. They do not apply patches to live source; `queue-review` only creates a bounded Codex review work packet. + +The artifact endpoints expose only approved package/inbox candidates from +bounded ION roots. `prepare-upload` requires Braden approval, writes a download +ticket receipt, and serves a localhost file stream for the browser extension to +attempt a visible ChatGPT drag/drop. It does not click Send, apply patches, or +upload anything silently. diff --git a/ION/tests/test_kernel_ion_chatops_bridge_policy.py b/ION/tests/test_kernel_ion_chatops_bridge_policy.py index fde67a82..46345f2d 100644 --- a/ION/tests/test_kernel_ion_chatops_bridge_policy.py +++ b/ION/tests/test_kernel_ion_chatops_bridge_policy.py @@ -5,13 +5,16 @@ APPROVAL_TOKEN, ACTION_SCHEMA, READY_VERDICT, + build_chatops_attachable_artifacts, build_chatops_policy, build_chatops_agent_queue, build_chatops_agent_status, build_chatops_context_pack, build_sev_context_brief, classify_chatops_action, + prepare_chatops_artifact_upload, prepare_chatops_agent_next, + resolve_chatops_artifact_download, submit_chatops_action, validate_chatops_action, ) @@ -103,6 +106,9 @@ def test_chatops_policy_owner_surfaces_ready(tmp_path): assert "write_file_draft" in result["supported_mvp_intents"] assert result["agent_surface"]["backend_owner"] == "ION/04_packages/kernel/ion_codex_queue_runner.py" assert "compact_runtime_zip" in result["export_surface"] + assert result["artifact_upload_surface"]["silent_upload_authority"] is False + assert result["artifact_upload_surface"]["send_click_authority"] is False + assert result["artifact_upload_surface"]["prepare_upload"] == "POST /artifacts/prepare-upload" assert result["sandbox_return_surface"]["owner"] == "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py" assert result["sandbox_return_surface"]["direct_apply_authority"] is False assert result["main_policy"]["main_auto_push_allowed"] is False @@ -375,11 +381,40 @@ def test_chatops_context_pack_includes_agent_and_package_controls(tmp_path): assert result["pack"]["callsign"] == "Sev" assert result["pack"]["bridge_tools"]["agent_prepare_next"] == "POST /agent/prepare-next with Braden approval" assert result["pack"]["bridge_tools"]["compact_zip"] == "POST /exports/lifecycle-zip with package_class=COMPACT_RUNTIME and Braden approval" + assert result["pack"]["bridge_tools"]["attachable_artifacts"] == "GET /artifacts/attachables" + assert result["pack"]["bridge_tools"]["prepare_artifact_upload"] == "POST /artifacts/prepare-upload with Braden approval" assert result["pack"]["bridge_tools"]["sandbox_returns"] == "GET /sandbox/returns" assert result["pack"]["sandbox_returns"]["inbox_root"] == "ION/05_context/inbox/chatgpt_sandbox_returns" assert "ION local context pack" in result["prompt"] +def test_chatops_artifact_upload_prepare_requires_approval_and_ticket(tmp_path): + _seed_root(tmp_path) + zip_path = tmp_path / "ION/06_artifacts/packages/demo.zip" + zip_path.parent.mkdir(parents=True, exist_ok=True) + zip_path.write_bytes(b"PK\x03\x04demo") + + listing = build_chatops_attachable_artifacts(tmp_path) + blocked = prepare_chatops_artifact_upload(tmp_path, {"artifact_path": "ION/06_artifacts/packages/demo.zip"}) + prepared = prepare_chatops_artifact_upload( + tmp_path, + _approved({"artifact_path": "ION/06_artifacts/packages/demo.zip"}), + ) + resolved_path, validation = resolve_chatops_artifact_download(tmp_path, prepared.get("download_token", "")) + + assert listing["ok"] is True + assert any(row["path"] == "ION/06_artifacts/packages/demo.zip" for row in listing["candidates"]) + assert blocked["ok"] is False + assert blocked["finding"] == "approval_failed" + assert prepared["ok"] is True + assert prepared["download_url"].endswith(f"/artifacts/download/{prepared['download_token']}") + assert prepared["filename"] == "demo.zip" + assert (tmp_path / prepared["ticket_path"]).exists() + assert (tmp_path / prepared["receipt_path"]).exists() + assert resolved_path == zip_path.resolve() + assert validation["ok"] is True + + def test_chatops_submit_rejects_mutating_action_without_policy_approval_even_if_action_says_no_approval(tmp_path): _seed_root(tmp_path) packet = _action( From 42657a5d4c175df0f3375e051e14f99efaffb480 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 14:29:44 -0400 Subject: [PATCH 18/30] Polish ChatOps composer anchoring and capture badges --- .../ion_chatops_bridge/README.md | 12 + .../ion_chatops_bridge/dist/content.js | 254 +++++++++++++++--- .../ion_chatops_bridge/src/approval_ui.ts | 114 +++++++- .../ion_chatops_bridge/src/content.ts | 150 ++++++++--- .../tests/live_smoke_parser_simulation.js | 19 +- 5 files changed, 466 insertions(+), 83 deletions(-) diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 913c8c6b..1732d7b6 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -14,6 +14,12 @@ MVP behavior: paste it into ChatGPT; - render composer-attached tabs and an upward drawer for Status, Action, Agent, Packages, Sandbox, Automation, Artifacts, Diagnostics, and Log views; +- anchor composer tabs to the full visible composer shell, including uploaded + image/file thumbnails when ChatGPT expands the composer; +- show subtle visual capture borders for composer input, attach/send/voice + controls, selected source chips such as GitHub, and uploaded thumbnails; +- annotate rendered code/YAML blocks with compact workflow badges such as + `ION CODE #N` and `ION YAML #N · valid`; - show Codex queue runner status/queue and approval-gated prepare/start controls backed by `kernel.ion_codex_queue_runner`; - request pasteable context packs and approval-gated package ZIPs backed by the @@ -119,6 +125,12 @@ read/status projections. `Prepare Next` writes a prepared run packet but does not start Codex. `Start One` starts one bounded queue-runner worker after Braden approval. +The Diagnostics tab includes the DOM capture registry. It shows whether the +extension sees the composer input, send/attach/voice controls, selected source +planes such as GitHub, uploaded thumbnails, and YAML/code block status. These +markers are visual perception aids only; they do not click, send, upload, or +mutate ION state. + The Packages tab is for moving context into ChatGPT or another carrier sandbox. `Context Pack` pastes a compact current-state packet into the composer. `Compact ZIP` and `Safe Full ZIP` create local package artifacts through the diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 69aea579..7f84d187 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -57,10 +57,15 @@ anchor: { mode: "topbar_fallback", rect: null, + element: null, health: "degraded", detail: "Composer anchor has not been evaluated yet.", + source: "none", + attachmentsDetected: 0, }, }; + let composerResizeObserver = null; + let observedComposerElement = null; let scanTimer = null; let scanRunning = false; let scanQueued = false; @@ -153,45 +158,66 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp style.textContent = ` .ion-dom-badge { position: absolute; - top: 2px; - left: 2px; + top: 6px; + left: 8px; z-index: 7; height: 18px; - max-width: 180px; - padding: 0 5px; - border: 1px solid rgba(255,255,255,0.12); - border-radius: 6px; - background: rgba(32,33,35,0.88); - color: rgba(255,255,255,0.72); - font: 10px/17px ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; + max-width: 220px; + padding: 0 7px; + border: 1px solid rgba(255,255,255,0.10); + border-radius: 999px; + background: rgba(12,12,12,0.68); + color: rgba(255,255,255,0.62); + font: 10px/18px ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; pointer-events: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; - box-shadow: 0 4px 14px rgba(0,0,0,0.18); + backdrop-filter: blur(8px); + box-shadow: 0 4px 14px rgba(0,0,0,0.16); } .ion-dom-badge[data-tone="valid"] { border-color: rgba(16,185,129,0.45); - color: rgba(209,250,229,0.94); + color: rgba(190,255,230,0.92); } - .ion-dom-badge[data-tone="invalid"], + .ion-dom-badge[data-tone="blocked"], .ion-dom-badge[data-tone="duplicate"] { border-color: rgba(251,191,36,0.45); - color: rgba(254,243,199,0.94); + color: rgba(255,236,180,0.92); + } + .ion-dom-badge[data-tone="duplicate"] { + border-color: rgba(248,113,113,0.50); + color: rgba(255,210,210,0.92); } [data-ion-code-index] { - outline: 1px solid rgba(255,255,255,0.06); - outline-offset: 2px; + outline: 1px solid rgba(255,255,255,0.05); + outline-offset: 3px; } [data-ion-yaml-status="valid"] { outline-color: rgba(16,185,129,0.42); } - [data-ion-yaml-status="invalid"], + [data-ion-yaml-status="blocked"], [data-ion-yaml-status="duplicate"] { outline-color: rgba(251,191,36,0.42); } [data-ion-control-role] { - box-shadow: 0 0 0 1px rgba(16,185,129,0.18), 0 0 0 4px rgba(16,185,129,0.05) !important; + position: relative; + box-shadow: 0 0 0 1px rgba(255,112,28,0.34), 0 0 0 4px rgba(255,112,28,0.07) !important; + border-radius: 10px !important; + } + [data-ion-control-role="composer_input"] { + box-shadow: 0 0 0 1px rgba(255,112,28,0.36), 0 0 0 5px rgba(255,112,28,0.06) !important; + } + [data-ion-control-role="attach_button"], + [data-ion-control-role="voice_button"] { + box-shadow: 0 0 0 1px rgba(52,211,153,0.28), 0 0 0 4px rgba(52,211,153,0.06) !important; + } + [data-ion-control-role="send_button"] { + box-shadow: 0 0 0 1px rgba(251,191,36,0.42), 0 0 0 4px rgba(251,191,36,0.07) !important; + } + [data-ion-control-role="source_plane"], + [data-ion-control-role="uploaded_attachment"] { + box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; } `; document.documentElement.appendChild(style); @@ -209,6 +235,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; } + function captureRectVisible(node) { + if (node.closest(`#${PANEL_ID}`) || node.closest(`#${MODAL_ID}`)) return false; + const rect = node.getBoundingClientRect(); + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; + } + function allowRegistryBadge(host) { const currentPosition = window.getComputedStyle(host).position; if (!currentPosition || currentPosition === "static") host.style.position = "relative"; @@ -225,6 +257,17 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp if (!existing) host.appendChild(badge); } + function captureLabel(node) { + return `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.replace(/\s+/g, " ").trim(); + } + + function noteCapture(stats, node, role, status = "healthy", label = "") { + node.dataset.ionControlRole = role; + node.dataset.ionCaptureStatus = status; + if (label) node.dataset.ionCaptureLabel = label.slice(0, 80); + stats.composerCapture[role] = (stats.composerCapture[role] ?? 0) + 1; + } + function uniqueElements(selectors) { const elements = []; const seenElements = new Set(); @@ -263,7 +306,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const actionIds = new Set(); const hosts = codeBlockHosts(); hosts.forEach((host, index) => { - const label = `ION code ${index + 1}`; + const label = `ION CODE #${index + 1}`; host.dataset.ionCodeIndex = String(index + 1); host.dataset.ionYamlStatus = "none"; let tone = "idle"; @@ -276,14 +319,14 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const actionId = packet?.ion_action?.action_id; if (!packet) { stats.invalidActions += 1; - tone = "invalid"; - badge = `ION YAML ${index + 1} blocked`; - host.dataset.ionYamlStatus = "invalid"; + tone = "blocked"; + badge = `ION YAML #${index + 1} · blocked`; + host.dataset.ionYamlStatus = "blocked"; host.dataset.ionYamlFinding = parsed.finding ?? "parse_failed"; } else if (actionId && actionIds.has(actionId)) { stats.duplicateActions += 1; tone = "duplicate"; - badge = `ION YAML ${index + 1} duplicate`; + badge = `ION YAML #${index + 1} · duplicate`; host.dataset.ionYamlStatus = "duplicate"; host.dataset.ionActionId = actionId; } else { @@ -293,17 +336,18 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp if (local.accepted) { stats.validActions += 1; tone = "valid"; - badge = `ION YAML ${index + 1} ok`; + badge = `ION YAML #${index + 1} · valid`; host.dataset.ionYamlStatus = "valid"; } else { stats.invalidActions += 1; - tone = "invalid"; - badge = `ION YAML ${index + 1} blocked`; - host.dataset.ionYamlStatus = "invalid"; + tone = "blocked"; + badge = `ION YAML #${index + 1} · blocked`; + host.dataset.ionYamlStatus = "blocked"; host.dataset.ionYamlFinding = local.findings.join("|"); } } } + if (!ION_ACTION_LINE.test(text) && extractIonActionYaml(text) === null) badge = `ION CODE #${index + 1}`; ensureRegistryBadge(host, "code", badge, tone); }); stats.codeBlocks = hosts.length; @@ -312,18 +356,53 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp function annotateComposerControls(stats) { const composer = findComposer(); const composerRect = composer?.getBoundingClientRect(); - const controls = uniqueElements("button, input[type='file']").filter((node) => { + if (composer && captureRectVisible(composer)) { + noteCapture(stats, composer, "composer_input", "healthy", "composer input"); + } + const controls = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")).filter((node) => { + if (!captureRectVisible(node)) return false; const rect = node.getBoundingClientRect(); const nearComposer = composerRect ? Math.abs(rect.top - composerRect.top) < 180 || Math.abs(rect.bottom - composerRect.bottom) < 180 : false; - const label = `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""}`.toLowerCase(); + const label = captureLabel(node).toLowerCase(); return nearComposer || /send|attach|upload|file|voice|mic|stop|plus/.test(label); }); controls.forEach((node) => { - const label = `${node.getAttribute("aria-label") ?? node.getAttribute("data-testid") ?? node.tagName}`.toLowerCase(); - const role = label.includes("send") ? "send" : label.includes("attach") || label.includes("upload") || label.includes("file") || label.includes("plus") ? "attach" : label.includes("mic") || label.includes("voice") ? "voice" : label.includes("stop") ? "stop" : "composer"; - node.dataset.ionControlRole = role; + const label = captureLabel(node).toLowerCase(); + const role = + label.includes("send") ? "send_button" : + label.includes("attach") || label.includes("upload") || label.includes("file") || label.includes("plus") ? "attach_button" : + label.includes("mic") || label.includes("voice") ? "voice_button" : + label.includes("stop") ? "stop_button" : + /model|thinking|source|tool|github|drive/.test(label) ? "source_plane" : + "composer_control"; + noteCapture(stats, node, role, role === "send_button" ? "approval_required" : "healthy", captureLabel(node)); + }); + const chips = Array.from( + document.querySelectorAll( + "img, [data-testid*='attachment' i], [data-testid*='upload' i], [data-testid*='file' i], [data-testid*='image' i], [aria-label*='remove' i], [aria-label*='file' i], [aria-label*='image' i], [class*='attachment' i]", + ), + ).filter((node) => { + if (!captureRectVisible(node)) return false; + const rect = node.getBoundingClientRect(); + return composerRect ? rect.bottom >= composerRect.top - 260 && rect.top <= composerRect.bottom + 120 : rect.top > window.innerHeight * 0.45; + }); + chips.forEach((node) => { + noteCapture(stats, node, "uploaded_attachment", "composer_expanded", captureLabel(node) || node.tagName.toLowerCase()); + }); + const sources = Array.from( + document.querySelectorAll("button, [role='button'], [aria-label], [data-testid], [class*='chip' i], [class*='pill' i]"), + ).filter((node) => { + if (!captureRectVisible(node)) return false; + const label = captureLabel(node); + return /github|drive|source|tool|connector|memory|search/i.test(label) && (!composerRect || Math.abs(node.getBoundingClientRect().bottom - composerRect.bottom) < 320); }); - stats.composerControls = controls.length; + sources.forEach((node) => { + const label = captureLabel(node) || "source"; + noteCapture(stats, node, "source_plane", "source_plane_only", label); + if (!stats.selectedSources.includes(label)) stats.selectedSources.push(label); + }); + stats.uploadedAttachments = chips.length; + stats.composerControls = Object.values(stats.composerCapture).reduce((sum, count) => sum + count, 0); } function updateDomActionRegistry(mode = "manual") { @@ -336,6 +415,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp invalidActions: 0, duplicateActions: 0, composerControls: 0, + composerCapture: {}, + selectedSources: [], + uploadedAttachments: 0, lastUpdated: new Date().toLocaleTimeString(), }; if (mode === "manual") annotateMessages(stats); @@ -351,6 +433,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp `invalid_actions: ${stats.invalidActions}`, `duplicate_actions: ${stats.duplicateActions}`, `composer_controls: ${stats.composerControls}`, + `uploaded_attachments: ${stats.uploadedAttachments}`, + `capture_roles: ${Object.entries(stats.composerCapture).map(([role, count]) => `${role}=${count}`).join(", ") || "none"}`, + `selected_sources: ${stats.selectedSources.join(", ") || "none"}`, `scan_mode: ${mode}`, `last_updated: ${stats.lastUpdated}`, "", @@ -983,57 +1068,150 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return null; } + function elementContains(parent, child) { + let current = child; + while (current) { + if (current === parent) return true; + current = current.parentElement; + } + return false; + } + + function lowerViewportElement(element) { + const rect = visibleRect(element); + if (!rect) return false; + return rect.bottom > viewportHeight() * 0.58 && rect.top > viewportHeight() * 0.25; + } + + function composerButtonCount(element) { + return Array.from(element.querySelectorAll("button, [role='button']")).filter((node) => { + const rect = visibleRect(node); + if (!rect) return false; + const label = `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.toLowerCase(); + return /send|attach|upload|file|voice|mic|audio|plus|stop|model|tool|source|github|drive/.test(label); + }).length; + } + + function composerAttachmentNodes(input) { + const inputRect = input.getBoundingClientRect(); + const selectors = [ + "img", + "video", + "[data-testid*='attachment' i]", + "[data-testid*='upload' i]", + "[data-testid*='file' i]", + "[data-testid*='image' i]", + "[aria-label*='remove' i]", + "[aria-label*='attachment' i]", + "[aria-label*='uploaded' i]", + "[aria-label*='file' i]", + "[aria-label*='image' i]", + "[class*='attachment' i]", + "[class*='file' i]", + ].join(","); + const nodes = []; + const seen = new Set(); + document.querySelectorAll(selectors).forEach((node) => { + if (seen.has(node) || isBridgeElement(node)) return; + seen.add(node); + const rect = visibleRect(node); + if (!rect) return; + const nearInputX = rect.right >= inputRect.left - 80 && rect.left <= inputRect.right + 80; + const nearInputY = rect.bottom >= inputRect.top - 260 && rect.top <= inputRect.bottom + 80; + if (lowerViewportElement(node) && nearInputX && nearInputY) nodes.push(node); + }); + return nodes; + } + function candidateComposerContainer(input) { let best = null; let current = input; let depth = 0; const leftBoundary = detectLeftBoundary(); - while (current?.parentElement && depth < 10) { + const attachmentNodes = composerAttachmentNodes(input); + while (current?.parentElement && depth < 14) { current = current.parentElement; depth += 1; if (isBridgeElement(current)) break; const rect = visibleRect(current); if (!rect) continue; - const bottomHalf = rect.top > viewportHeight() * 0.38; + const bottomHalf = rect.bottom > viewportHeight() * 0.58 && rect.top > viewportHeight() * 0.22; const respectsSidebar = rect.left >= Math.max(0, leftBoundary - 12); const plausibleWidth = rect.width >= Math.min(320, window.innerWidth * 0.42) && rect.width <= Math.min(window.innerWidth * 0.90, window.innerWidth - leftBoundary - 16); - const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(220, viewportHeight() * 0.30); + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(420, viewportHeight() * 0.48); if (!bottomHalf || !respectsSidebar || !plausibleWidth || !plausibleHeight) continue; - const buttons = Array.from(current.querySelectorAll("button")).filter((button) => visibleRect(button)).length; + const containsAttachments = attachmentNodes.every((node) => elementContains(current, node)); + if (attachmentNodes.length && !containsAttachments) continue; + const buttons = composerButtonCount(current); const radius = Number.parseFloat(window.getComputedStyle(current).borderRadius || "0") || 0; - const score = (buttons >= 2 ? 0 : 60) + (radius >= 10 ? 0 : 16) + rect.width / 100 + rect.height / 40 + depth * 0.4; + const score = + (buttons >= 2 ? 0 : 60) + + (radius >= 10 ? 0 : 16) + + (attachmentNodes.length ? 0 : 6) + + rect.width / 100 + + rect.height / 44 + + depth * 0.35; if (!best || score < best.score) best = { element: current, score }; } return best?.element ?? input; } + function observeComposerAnchor(element) { + if (typeof ResizeObserver === "undefined") return; + if (observedComposerElement === element) return; + composerResizeObserver?.disconnect(); + observedComposerElement = element; + if (!element) return; + composerResizeObserver = new ResizeObserver(() => { + window.requestAnimationFrame?.(() => refreshBridgePosition()) ?? window.setTimeout(() => refreshBridgePosition(), 0); + }); + composerResizeObserver.observe(element); + } + function detectComposerAnchor() { const input = findComposerInput(); if (!input) { + observeComposerAnchor(null); return { mode: "topbar_fallback", rect: null, + element: null, health: "degraded", detail: "Composer anchor not found; using top-bar fallback layout.", + source: "not_found", + attachmentsDetected: 0, }; } + const attachments = composerAttachmentNodes(input); const container = candidateComposerContainer(input); const rect = container.getBoundingClientRect(); if (!rectIsVisible(rect)) { + observeComposerAnchor(null); return { mode: "topbar_fallback", rect: null, + element: null, health: "degraded", detail: "Composer candidate was not visible; using top-bar fallback layout.", + source: "candidate_not_visible", + attachmentsDetected: attachments.length, }; } + observeComposerAnchor(container); return { mode: "composer", rect, + element: container, health: "ready", - detail: `Composer anchor ready: ${Math.round(rect.left)},${Math.round(rect.top)} ${Math.round(rect.width)}x${Math.round(rect.height)}.`, + source: attachments.length ? "full_composer_shell_with_attachments" : "full_composer_shell", + attachmentsDetected: attachments.length, + detail: [ + `Composer anchor ready: ${Math.round(rect.left)},${Math.round(rect.top)} ${Math.round(rect.width)}x${Math.round(rect.height)}.`, + `source: ${attachments.length ? "full_composer_shell_with_attachments" : "full_composer_shell"}`, + `attachments_detected: ${attachments.length}`, + ].join("\n"), }; } diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index cf015b66..aba724b8 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -18,8 +18,11 @@ const COMPOSER_PANEL_MAX_WIDTH = 920; type AnchorInfo = { mode: "composer" | "topbar_fallback"; rect: DOMRect | null; + element?: HTMLElement | null; health: "ready" | "degraded"; detail: string; + source?: string; + attachmentsDetected?: number; }; const bridgeState = { @@ -39,11 +42,17 @@ const bridgeState = { anchor: { mode: "topbar_fallback", rect: null, + element: null, health: "degraded", detail: "Composer anchor has not been evaluated yet.", + source: "none", + attachmentsDetected: 0, } as AnchorInfo, }; +let composerResizeObserver: ResizeObserver | null = null; +let observedComposerElement: HTMLElement | null = null; + function ensureStyle(): void { if (document.getElementById(STYLE_ID)) return; const style = document.createElement("style"); @@ -478,58 +487,151 @@ function findComposerInput(): HTMLElement | null { return null; } +function elementContains(parent: Element, child: Element): boolean { + let current: Element | null = child; + while (current) { + if (current === parent) return true; + current = current.parentElement; + } + return false; +} + +function lowerViewportElement(element: Element): boolean { + const rect = visibleRect(element); + if (!rect) return false; + return rect.bottom > viewportHeight() * 0.58 && rect.top > viewportHeight() * 0.25; +} + +function composerButtonCount(element: Element): number { + return Array.from(element.querySelectorAll("button, [role='button']")).filter((node) => { + const rect = visibleRect(node); + if (!rect) return false; + const label = `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.toLowerCase(); + return /send|attach|upload|file|voice|mic|audio|plus|stop|model|tool|source|github|drive/.test(label); + }).length; +} + +function composerAttachmentNodes(input: HTMLElement): HTMLElement[] { + const inputRect = input.getBoundingClientRect(); + const selectors = [ + "img", + "video", + "[data-testid*='attachment' i]", + "[data-testid*='upload' i]", + "[data-testid*='file' i]", + "[data-testid*='image' i]", + "[aria-label*='remove' i]", + "[aria-label*='attachment' i]", + "[aria-label*='uploaded' i]", + "[aria-label*='file' i]", + "[aria-label*='image' i]", + "[class*='attachment' i]", + "[class*='file' i]", + ].join(","); + const nodes: HTMLElement[] = []; + const seen = new Set(); + document.querySelectorAll(selectors).forEach((node) => { + if (seen.has(node) || isBridgeElement(node)) return; + seen.add(node); + const rect = visibleRect(node); + if (!rect) return; + const nearInputX = rect.right >= inputRect.left - 80 && rect.left <= inputRect.right + 80; + const nearInputY = rect.bottom >= inputRect.top - 260 && rect.top <= inputRect.bottom + 80; + if (lowerViewportElement(node) && nearInputX && nearInputY) nodes.push(node); + }); + return nodes; +} + function candidateComposerContainer(input: HTMLElement): HTMLElement { type ScoredCandidate = { element: HTMLElement; score: number }; let best: ScoredCandidate | null = null; let current: HTMLElement | null = input; let depth = 0; const leftBoundary = detectLeftBoundary(); - while (current?.parentElement && depth < 10) { + const attachmentNodes = composerAttachmentNodes(input); + while (current?.parentElement && depth < 14) { current = current.parentElement; depth += 1; if (isBridgeElement(current)) break; const rect = visibleRect(current); if (!rect) continue; - const bottomHalf = rect.top > viewportHeight() * 0.38; + const bottomHalf = rect.bottom > viewportHeight() * 0.58 && rect.top > viewportHeight() * 0.22; const respectsSidebar = rect.left >= Math.max(0, leftBoundary - 12); const plausibleWidth = rect.width >= Math.min(320, window.innerWidth * 0.42) && rect.width <= Math.min(window.innerWidth * 0.90, window.innerWidth - leftBoundary - 16); - const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(220, viewportHeight() * 0.30); + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(420, viewportHeight() * 0.48); if (!bottomHalf || !respectsSidebar || !plausibleWidth || !plausibleHeight) continue; - const buttons = Array.from(current.querySelectorAll("button")).filter((button) => visibleRect(button)).length; + const containsAttachments = attachmentNodes.every((node) => elementContains(current as HTMLElement, node)); + if (attachmentNodes.length && !containsAttachments) continue; + const buttons = composerButtonCount(current); const radius = Number.parseFloat(window.getComputedStyle(current).borderRadius || "0") || 0; - const score = (buttons >= 2 ? 0 : 60) + (radius >= 10 ? 0 : 16) + rect.width / 100 + rect.height / 40 + depth * 0.4; + const score = + (buttons >= 2 ? 0 : 60) + + (radius >= 10 ? 0 : 16) + + (attachmentNodes.length ? 0 : 6) + + rect.width / 100 + + rect.height / 44 + + depth * 0.35; if (!best || score < best.score) best = { element: current, score }; } return best?.element ?? input; } +function observeComposerAnchor(element: HTMLElement | null): void { + if (typeof ResizeObserver === "undefined") return; + if (observedComposerElement === element) return; + composerResizeObserver?.disconnect(); + observedComposerElement = element; + if (!element) return; + composerResizeObserver = new ResizeObserver(() => { + window.requestAnimationFrame?.(() => refreshBridgePosition()) ?? window.setTimeout(() => refreshBridgePosition(), 0); + }); + composerResizeObserver.observe(element); +} + function detectComposerAnchor(): AnchorInfo { const input = findComposerInput(); if (!input) { + observeComposerAnchor(null); return { mode: "topbar_fallback", rect: null, + element: null, health: "degraded", detail: "Composer anchor not found; using top-bar fallback layout.", + source: "not_found", + attachmentsDetected: 0, }; } + const attachments = composerAttachmentNodes(input); const container = candidateComposerContainer(input); const rect = container.getBoundingClientRect(); if (!rectIsVisible(rect)) { + observeComposerAnchor(null); return { mode: "topbar_fallback", rect: null, + element: null, health: "degraded", detail: "Composer candidate was not visible; using top-bar fallback layout.", + source: "candidate_not_visible", + attachmentsDetected: attachments.length, }; } + observeComposerAnchor(container); return { mode: "composer", rect, + element: container, health: "ready", - detail: `Composer anchor ready: ${Math.round(rect.left)},${Math.round(rect.top)} ${Math.round(rect.width)}x${Math.round(rect.height)}.`, + source: attachments.length ? "full_composer_shell_with_attachments" : "full_composer_shell", + attachmentsDetected: attachments.length, + detail: [ + `Composer anchor ready: ${Math.round(rect.left)},${Math.round(rect.top)} ${Math.round(rect.width)}x${Math.round(rect.height)}.`, + `source: ${attachments.length ? "full_composer_shell_with_attachments" : "full_composer_shell"}`, + `attachments_detected: ${attachments.length}`, + ].join("\n"), }; } diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index dfeba3a2..d1d4d840 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -130,6 +130,9 @@ type DomRegistryStats = { invalidActions: number; duplicateActions: number; composerControls: number; + composerCapture: Record; + selectedSources: string[]; + uploadedAttachments: number; lastUpdated: string; }; @@ -155,45 +158,66 @@ function ensureDomRegistryStyle(): void { style.textContent = ` .ion-dom-badge { position: absolute; - top: 2px; - left: 2px; + top: 6px; + left: 8px; z-index: 7; height: 18px; - max-width: 180px; - padding: 0 5px; - border: 1px solid rgba(255,255,255,0.12); - border-radius: 6px; - background: rgba(32,33,35,0.88); - color: rgba(255,255,255,0.72); - font: 10px/17px ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; + max-width: 220px; + padding: 0 7px; + border: 1px solid rgba(255,255,255,0.10); + border-radius: 999px; + background: rgba(12,12,12,0.68); + color: rgba(255,255,255,0.62); + font: 10px/18px ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; pointer-events: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; - box-shadow: 0 4px 14px rgba(0,0,0,0.18); + backdrop-filter: blur(8px); + box-shadow: 0 4px 14px rgba(0,0,0,0.16); } .ion-dom-badge[data-tone="valid"] { border-color: rgba(16,185,129,0.45); - color: rgba(209,250,229,0.94); + color: rgba(190,255,230,0.92); } - .ion-dom-badge[data-tone="invalid"], + .ion-dom-badge[data-tone="blocked"], .ion-dom-badge[data-tone="duplicate"] { border-color: rgba(251,191,36,0.45); - color: rgba(254,243,199,0.94); + color: rgba(255,236,180,0.92); + } + .ion-dom-badge[data-tone="duplicate"] { + border-color: rgba(248,113,113,0.50); + color: rgba(255,210,210,0.92); } [data-ion-code-index] { - outline: 1px solid rgba(255,255,255,0.06); - outline-offset: 2px; + outline: 1px solid rgba(255,255,255,0.05); + outline-offset: 3px; } [data-ion-yaml-status="valid"] { outline-color: rgba(16,185,129,0.42); } - [data-ion-yaml-status="invalid"], + [data-ion-yaml-status="blocked"], [data-ion-yaml-status="duplicate"] { outline-color: rgba(251,191,36,0.42); } [data-ion-control-role] { - box-shadow: 0 0 0 1px rgba(16,185,129,0.18), 0 0 0 4px rgba(16,185,129,0.05) !important; + position: relative; + box-shadow: 0 0 0 1px rgba(255,112,28,0.34), 0 0 0 4px rgba(255,112,28,0.07) !important; + border-radius: 10px !important; + } + [data-ion-control-role="composer_input"] { + box-shadow: 0 0 0 1px rgba(255,112,28,0.36), 0 0 0 5px rgba(255,112,28,0.06) !important; + } + [data-ion-control-role="attach_button"], + [data-ion-control-role="voice_button"] { + box-shadow: 0 0 0 1px rgba(52,211,153,0.28), 0 0 0 4px rgba(52,211,153,0.06) !important; + } + [data-ion-control-role="send_button"] { + box-shadow: 0 0 0 1px rgba(251,191,36,0.42), 0 0 0 4px rgba(251,191,36,0.07) !important; + } + [data-ion-control-role="source_plane"], + [data-ion-control-role="uploaded_attachment"] { + box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; } `; document.documentElement.appendChild(style); @@ -211,6 +235,12 @@ function registryRectVisible(node: Element): boolean { return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; } +function captureRectVisible(node: Element): boolean { + if (node.closest(`#${PANEL_ID}`) || node.closest(`#${MODAL_ID}`)) return false; + const rect = node.getBoundingClientRect(); + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; +} + function allowRegistryBadge(host: HTMLElement): void { const currentPosition = window.getComputedStyle(host).position; if (!currentPosition || currentPosition === "static") host.style.position = "relative"; @@ -227,6 +257,17 @@ function ensureRegistryBadge(host: HTMLElement, kind: string, text: string, tone if (!existing) host.appendChild(badge); } +function captureLabel(node: HTMLElement): string { + return `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.replace(/\s+/g, " ").trim(); +} + +function noteCapture(stats: DomRegistryStats, node: HTMLElement, role: string, status = "healthy", label = ""): void { + node.dataset.ionControlRole = role; + node.dataset.ionCaptureStatus = status; + if (label) node.dataset.ionCaptureLabel = label.slice(0, 80); + stats.composerCapture[role] = (stats.composerCapture[role] ?? 0) + 1; +} + function uniqueElements(selectors: string): HTMLElement[] { const elements: HTMLElement[] = []; const seenElements = new Set(); @@ -265,7 +306,7 @@ function annotateCodeBlocks(stats: DomRegistryStats, mode: ScanMode): void { const actionIds = new Set(); const hosts = codeBlockHosts(); hosts.forEach((host, index) => { - const label = `ION code ${index + 1}`; + const label = `ION CODE #${index + 1}`; host.dataset.ionCodeIndex = String(index + 1); host.dataset.ionYamlStatus = "none"; let tone = "idle"; @@ -278,14 +319,14 @@ function annotateCodeBlocks(stats: DomRegistryStats, mode: ScanMode): void { const actionId = packet?.ion_action?.action_id; if (!packet) { stats.invalidActions += 1; - tone = "invalid"; - badge = `ION YAML ${index + 1} blocked`; - host.dataset.ionYamlStatus = "invalid"; + tone = "blocked"; + badge = `ION YAML #${index + 1} · blocked`; + host.dataset.ionYamlStatus = "blocked"; host.dataset.ionYamlFinding = parsed.finding ?? "parse_failed"; } else if (actionId && actionIds.has(actionId)) { stats.duplicateActions += 1; tone = "duplicate"; - badge = `ION YAML ${index + 1} duplicate`; + badge = `ION YAML #${index + 1} · duplicate`; host.dataset.ionYamlStatus = "duplicate"; host.dataset.ionActionId = actionId; } else { @@ -295,17 +336,18 @@ function annotateCodeBlocks(stats: DomRegistryStats, mode: ScanMode): void { if (local.accepted) { stats.validActions += 1; tone = "valid"; - badge = `ION YAML ${index + 1} ok`; + badge = `ION YAML #${index + 1} · valid`; host.dataset.ionYamlStatus = "valid"; } else { stats.invalidActions += 1; - tone = "invalid"; - badge = `ION YAML ${index + 1} blocked`; - host.dataset.ionYamlStatus = "invalid"; + tone = "blocked"; + badge = `ION YAML #${index + 1} · blocked`; + host.dataset.ionYamlStatus = "blocked"; host.dataset.ionYamlFinding = local.findings.join("|"); } } } + if (!ION_ACTION_LINE.test(text) && extractIonActionYaml(text) === null) badge = `ION CODE #${index + 1}`; ensureRegistryBadge(host, "code", badge, tone); }); stats.codeBlocks = hosts.length; @@ -314,23 +356,53 @@ function annotateCodeBlocks(stats: DomRegistryStats, mode: ScanMode): void { function annotateComposerControls(stats: DomRegistryStats): void { const composer = findComposer(); const composerRect = composer?.getBoundingClientRect(); - const controls = uniqueElements("button, input[type='file']").filter((node) => { + if (composer && captureRectVisible(composer)) { + noteCapture(stats, composer as HTMLElement, "composer_input", "healthy", "composer input"); + } + const controls = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")).filter((node) => { + if (!captureRectVisible(node)) return false; const rect = node.getBoundingClientRect(); const nearComposer = composerRect ? Math.abs(rect.top - composerRect.top) < 180 || Math.abs(rect.bottom - composerRect.bottom) < 180 : false; - const label = `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""}`.toLowerCase(); + const label = captureLabel(node).toLowerCase(); return nearComposer || /send|attach|upload|file|voice|mic|stop|plus/.test(label); }); controls.forEach((node) => { - const label = `${node.getAttribute("aria-label") ?? node.getAttribute("data-testid") ?? node.tagName}`.toLowerCase(); + const label = captureLabel(node).toLowerCase(); const role = - label.includes("send") ? "send" : - label.includes("attach") || label.includes("upload") || label.includes("file") || label.includes("plus") ? "attach" : - label.includes("mic") || label.includes("voice") ? "voice" : - label.includes("stop") ? "stop" : - "composer"; - node.dataset.ionControlRole = role; + label.includes("send") ? "send_button" : + label.includes("attach") || label.includes("upload") || label.includes("file") || label.includes("plus") ? "attach_button" : + label.includes("mic") || label.includes("voice") ? "voice_button" : + label.includes("stop") ? "stop_button" : + /model|thinking|source|tool|github|drive/.test(label) ? "source_plane" : + "composer_control"; + noteCapture(stats, node, role, role === "send_button" ? "approval_required" : "healthy", captureLabel(node)); + }); + const chips = Array.from( + document.querySelectorAll( + "img, [data-testid*='attachment' i], [data-testid*='upload' i], [data-testid*='file' i], [data-testid*='image' i], [aria-label*='remove' i], [aria-label*='file' i], [aria-label*='image' i], [class*='attachment' i]", + ), + ).filter((node) => { + if (!captureRectVisible(node)) return false; + const rect = node.getBoundingClientRect(); + return composerRect ? rect.bottom >= composerRect.top - 260 && rect.top <= composerRect.bottom + 120 : rect.top > window.innerHeight * 0.45; + }); + chips.forEach((node) => { + noteCapture(stats, node, "uploaded_attachment", "composer_expanded", captureLabel(node) || node.tagName.toLowerCase()); + }); + const sources = Array.from( + document.querySelectorAll("button, [role='button'], [aria-label], [data-testid], [class*='chip' i], [class*='pill' i]"), + ).filter((node) => { + if (!captureRectVisible(node)) return false; + const label = captureLabel(node); + return /github|drive|source|tool|connector|memory|search/i.test(label) && (!composerRect || Math.abs(node.getBoundingClientRect().bottom - composerRect.bottom) < 320); + }); + sources.forEach((node) => { + const label = captureLabel(node) || "source"; + noteCapture(stats, node, "source_plane", "source_plane_only", label); + if (!stats.selectedSources.includes(label)) stats.selectedSources.push(label); }); - stats.composerControls = controls.length; + stats.uploadedAttachments = chips.length; + stats.composerControls = Object.values(stats.composerCapture).reduce((sum, count) => sum + count, 0); } function updateDomActionRegistry(mode: ScanMode = "manual"): DomRegistryStats { @@ -343,6 +415,9 @@ function updateDomActionRegistry(mode: ScanMode = "manual"): DomRegistryStats { invalidActions: 0, duplicateActions: 0, composerControls: 0, + composerCapture: {}, + selectedSources: [], + uploadedAttachments: 0, lastUpdated: new Date().toLocaleTimeString(), }; if (mode === "manual") annotateMessages(stats); @@ -358,6 +433,9 @@ function updateDomActionRegistry(mode: ScanMode = "manual"): DomRegistryStats { `invalid_actions: ${stats.invalidActions}`, `duplicate_actions: ${stats.duplicateActions}`, `composer_controls: ${stats.composerControls}`, + `uploaded_attachments: ${stats.uploadedAttachments}`, + `capture_roles: ${Object.entries(stats.composerCapture).map(([role, count]) => `${role}=${count}`).join(", ") || "none"}`, + `selected_sources: ${stats.selectedSources.join(", ") || "none"}`, `scan_mode: ${mode}`, `last_updated: ${stats.lastUpdated}`, "", diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index 969e0ec8..475ef079 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -240,6 +240,18 @@ if (!String(cockpit?.style.bottom || "").endsWith("px")) { if (!String(topRail?.style.top || "").endsWith("px")) { throw new Error("top status rail did not set top offset"); } +const attachment = new Element("img"); +attachment.rect = { top: 780, left: 230, right: 300, bottom: 835, width: 70, height: 55 }; +composerContainer.rect = { top: 760, left: 190, right: 810, bottom: 910, width: 620, height: 150 }; +composerContainer.appendChild(attachment); +context.document.querySelectorAll = (selector) => { + if (selector.includes("img")) return [attachment]; + return []; +}; +context.window.__ION_CHATOPS_BRIDGE_DEBUG__.refreshBridgePosition(); +if (!String(cockpit?.style.bottom || "").includes("239")) { + throw new Error("composer cockpit did not track expanded attachment shell"); +} if (!sent || sent.type !== "ion_chatops_candidate") { throw new Error("candidate was not sent"); } @@ -334,16 +346,17 @@ context.document.querySelector = (selector) => (selector === "#prompt-textarea" context.document.querySelectorAll = (selector) => { if (selector === "[data-message-author-role], article") return [registryMessage]; if (selector === "pre, pre code, code, [class*='font-mono'], [class*='whitespace-pre'], [class*='overflow-x-auto']") return [registryCode]; - if (selector === "button, input[type='file']") return [registryButton]; + if (selector === "button, [role='button'], input[type='file']") return [registryButton]; return []; }; const registryStats = context.window.__ION_CHATOPS_BRIDGE_DEBUG__.updateDomActionRegistry(); if (registryStats.messages !== 1) throw new Error("DOM registry did not count messages"); if (registryStats.codeBlocks !== 1) throw new Error("DOM registry did not count code blocks"); if (registryStats.validActions !== 1) throw new Error("DOM registry did not mark valid YAML action"); -if (registryStats.composerControls !== 1) throw new Error("DOM registry did not mark composer controls"); +if (registryStats.composerControls < 2) throw new Error("DOM registry did not mark composer controls"); if (registryCode.dataset.ionYamlStatus !== "valid") throw new Error("DOM registry did not set valid YAML status"); -if (registryButton.dataset.ionControlRole !== "send") throw new Error("DOM registry did not classify send control"); +if (registryButton.dataset.ionControlRole !== "send_button") throw new Error("DOM registry did not classify send control"); +if (composer.dataset.ionControlRole !== "composer_input") throw new Error("DOM registry did not classify composer input"); byId.clear(); let disabledSent = null; From 00fba0ed1ee3698e1b245240aa60a4eda388c232 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 14:51:44 -0400 Subject: [PATCH 19/30] Add local operator artifact attach lane --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 52 +++- ION/04_packages/kernel/ion_chatops_bridge.py | 232 ++++++++++++++++++ .../ion_chatops_bridge/README.md | 11 +- .../ion_chatops_bridge/dist/background.js | 50 ++++ .../ion_chatops_bridge/dist/content.js | 98 ++++++++ .../ion_chatops_bridge/src/approval_ui.ts | 4 + .../ion_chatops_bridge/src/background.ts | 50 ++++ .../ion_chatops_bridge/src/content.ts | 94 +++++++ .../local_daemon/ion_chatops_bridge/README.md | 10 + .../test_kernel_ion_chatops_bridge_policy.py | 43 ++++ 10 files changed, 635 insertions(+), 9 deletions(-) diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md index f88a9e15..5ff756c1 100644 --- a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -32,7 +32,7 @@ Owner surfaces: - `ION/09_integrations/browser_extension/ion_chatops_bridge/` - `ION/09_integrations/local_daemon/ion_chatops_bridge/` -Implemented lane: +Implemented browser-only lane: ```text Artifacts tab @@ -49,6 +49,30 @@ reject synthetic drag/drop events. When that happens, the extension must show th file name, size, sha256, and receipt path so Braden can use the manual attach picker or a stronger future local macro lane. +Implemented local-operator lane: + +```text +Artifacts tab +-> Local Attach +-> Braden approval +-> daemon upload ticket +-> local operator target check +-> active ChatGPT window check +-> approved file-picker assistance +-> no Send click +-> receipt/log result +``` + +This lane uses a local desktop automation helper when available. The first +Linux implementation is `xdotool`-first: it can click the approved attach +control, paste/type the exact approved artifact path into the file picker, and +confirm the picker. It must fail closed if the desktop tool is unavailable, the +active window is not ChatGPT, the attach target is stale/missing, or the file +picker is not detected. + +`Local Attach` is still operator-present automation. It does not grant silent +upload authority and does not click Send. + ## Candidate Artifact Roots The daemon may expose only bounded candidate material from policy-owned roots, @@ -64,17 +88,17 @@ ION/06_artifacts/packages/ The daemon must reject protected path tokens and files above the configured browser upload size limit. -## Future Native Macro Lane +## Local Operator Automation Lane -If browser-only drag/drop is unreliable, ION may add a stronger local connected -app lane. That lane should be implemented as a separate bounded owner, not as -hidden extension behavior. +When browser-only drag/drop is unreliable, ION may use a stronger local +connected app lane. That lane is bounded by the daemon policy and remains +visible to the operator. -Permitted future mechanisms: +Permitted mechanisms: - Chrome Debugger API, if explicitly granted and visible in the UI. - Native messaging helper. -- Local desktop automation harness. +- Local desktop automation harness such as `xdotool` on Linux/X11. - OS-level file picker assistance. Required controls: @@ -87,6 +111,19 @@ Required controls: - ION receipt when state is touched, - no Send click unless separately approved. +Initial daemon endpoints: + +```text +GET /operator/status +POST /operator/attach-artifact +``` + +`/operator/attach-artifact` accepts only an approved daemon upload ticket and an +extension-provided attach target rectangle. It verifies the artifact ticket, +rejects `send_after_attach`, records a receipt for success/failure, and returns +`verification: extension_should_confirm_upload_chip` because ChatGPT upload +completion must be observed in the browser surface. + ## Non-Authority This protocol does not grant: @@ -99,4 +136,3 @@ This protocol does not grant: - git push, - silent upload, - silent send. - diff --git a/ION/04_packages/kernel/ion_chatops_bridge.py b/ION/04_packages/kernel/ion_chatops_bridge.py index dcc365f2..51d7826e 100644 --- a/ION/04_packages/kernel/ion_chatops_bridge.py +++ b/ION/04_packages/kernel/ion_chatops_bridge.py @@ -14,6 +14,9 @@ import mimetypes import re import secrets +import shutil +import subprocess +import time from datetime import datetime, timezone from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer from pathlib import Path @@ -66,6 +69,7 @@ "extension_policy": "ION/03_registry/ion_chatops_extension_policy.yaml", "daemon_policy": "ION/03_registry/ion_chatops_local_daemon_policy.yaml", "github_data_plane_registry": "ION/03_registry/ion_github_data_plane_registry.yaml", + "operator_attachment_protocol": "ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md", "sandbox_return_protocol": "ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md", "sandbox_return_schema": "ION/03_registry/ion_chatgpt_sandbox_return.schema.json", "sandbox_return_intake": "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py", @@ -870,6 +874,213 @@ def resolve_chatops_artifact_download(root: str | Path | None, token: str) -> tu return path, {"ok": True, "ticket": ticket, "artifact": record} +def _operator_tool_paths() -> dict[str, str | None]: + return {name: shutil.which(name) for name in ("xdotool", "ydotool", "wtype", "xclip", "xsel", "wl-copy")} + + +def _operator_run(args: list[str], *, timeout: float = 3.0) -> dict[str, Any]: + try: + completed = subprocess.run(args, capture_output=True, text=True, timeout=timeout, check=False) + return { + "ok": completed.returncode == 0, + "returncode": completed.returncode, + "stdout": completed.stdout.strip(), + "stderr": completed.stderr.strip(), + "args": args[:1] + ["..."], + } + except Exception as exc: + return {"ok": False, "returncode": None, "stdout": "", "stderr": str(exc), "args": args[:1] + ["..."]} + + +def _operator_active_window_title() -> str: + tools = _operator_tool_paths() + if not tools.get("xdotool"): + return "" + window = _operator_run([tools["xdotool"] or "xdotool", "getactivewindow"], timeout=1.0) + if not window.get("ok") or not window.get("stdout"): + return "" + title = _operator_run([tools["xdotool"] or "xdotool", "getwindowname", str(window["stdout"])], timeout=1.0) + return str(title.get("stdout") or "").strip() if title.get("ok") else "" + + +def build_chatops_local_operator_status(root: str | Path | None = None) -> dict[str, Any]: + _resolve_root(root) + tools = _operator_tool_paths() + xdotool_ready = bool(tools.get("xdotool")) + return { + "schema_id": "ion.chatops.local_operator_status.v1", + "ok": True, + "verdict": READY_VERDICT if xdotool_ready else BLOCKED_VERDICT, + "backend": "linux_desktop_automation", + "tools": tools, + "active_window_title": _operator_active_window_title() if xdotool_ready else "", + "supported_operations": ["attach_approved_artifact"] if xdotool_ready else [], + "requires_operator_presence": True, + "silent_upload_authority": False, + "send_click_authority": False, + "production_authority": False, + "live_execution_authority": False, + } + + +def _target_center(packet: Mapping[str, Any]) -> tuple[int, int] | None: + rect = packet.get("target_rect") + if not isinstance(rect, Mapping): + return None + try: + x = float(rect.get("x") if rect.get("x") is not None else rect.get("left")) + y = float(rect.get("y") if rect.get("y") is not None else rect.get("top")) + width = float(rect.get("width") or 0) + height = float(rect.get("height") or 0) + except (TypeError, ValueError): + return None + if width <= 0 or height <= 0: + return None + return int(round(x + width / 2)), int(round(y + height / 2)) + + +def _operator_failure(root: Path, packet: Mapping[str, Any], *, finding: str, result: Mapping[str, Any], status: str = "failed") -> dict[str, Any]: + receipt_path = _write_operation_receipt( + root, + operation="local_operator_attach_artifact", + status=status, + packet=packet, + result={"ok": False, "finding": finding, **dict(result)}, + failure_classification="POLICY_BLOCK_WORKING_AS_DESIGNED", + ) + return { + "schema_id": "ion.chatops.local_operator_attach_result.v1", + "ok": False, + "finding": finding, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + **dict(result), + } + + +def attach_chatops_artifact_with_local_operator(root: str | Path | None, packet: Mapping[str, Any]) -> dict[str, Any]: + shell_root = _resolve_root(root) + operation = "local_operator_attach_artifact" + approval = _validate_bridge_operation_approval(packet) + if not approval["accepted"]: + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="rejected", + packet=packet, + result=approval, + failure_classification="USER_APPROVAL_REJECTED", + ) + return { + "schema_id": "ion.chatops.local_operator_attach_result.v1", + "ok": False, + "finding": "approval_failed", + "approval": approval, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + } + if bool(packet.get("send_after_attach")): + return _operator_failure( + shell_root, + packet, + finding="send_click_not_authorized", + result={"send_click_authority": False}, + ) + token = str(packet.get("download_token") or packet.get("token") or "").strip() + artifact_path, validation = resolve_chatops_artifact_download(shell_root, token) + if not artifact_path: + return _operator_failure(shell_root, packet, finding=str(validation.get("finding") or "artifact_ticket_invalid"), result={"ticket_validation": validation}) + center = _target_center(packet) + if center is None and not bool(packet.get("dry_run")): + return _operator_failure(shell_root, packet, finding="attach_target_rect_required", result={"artifact": validation.get("artifact")}) + status = build_chatops_local_operator_status(shell_root) + if bool(packet.get("dry_run")): + result = { + "ok": True, + "dry_run": True, + "operation": operation, + "artifact": validation.get("artifact"), + "target_center": center, + "operator_status": status, + "no_send_click_performed": True, + } + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="completed", + packet=packet, + result=result, + target_refs=[{"provider": "local_ion", "path": (validation.get("artifact") or {}).get("path"), "role": "approved_local_operator_attachment"}], + ) + return { + "schema_id": "ion.chatops.local_operator_attach_result.v1", + "ok": True, + "verdict": READY_VERDICT, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + **result, + } + tools = status.get("tools") if isinstance(status.get("tools"), Mapping) else {} + xdotool = str(tools.get("xdotool") or "") + if not xdotool: + return _operator_failure(shell_root, packet, finding="desktop_automation_tool_missing", result={"operator_status": status, "required_tool": "xdotool"}) + before_title = _operator_active_window_title() + if bool(packet.get("active_window_required", True)) and "chatgpt" not in before_title.lower(): + return _operator_failure(shell_root, packet, finding="active_window_not_chatgpt", result={"active_window_title": before_title}) + assert center is not None + click = _operator_run([xdotool, "mousemove", "--sync", str(center[0]), str(center[1]), "click", "1"], timeout=2.0) + if not click.get("ok"): + return _operator_failure(shell_root, packet, finding="attach_click_failed", result={"click": click, "active_window_title": before_title}) + time.sleep(float(packet.get("post_click_delay_seconds") or 0.45)) + picker_title = _operator_active_window_title() + if bool(packet.get("file_picker_title_check", True)) and not re.search(r"open|file|select|choose|upload", picker_title, flags=re.I): + return _operator_failure( + shell_root, + packet, + finding="file_picker_not_detected", + result={"active_window_before": before_title, "active_window_after_click": picker_title, "click": click}, + ) + commands = [ + [xdotool, "key", "--clearmodifiers", "ctrl+l"], + [xdotool, "type", "--delay", "1", "--clearmodifiers", artifact_path.as_posix()], + [xdotool, "key", "--clearmodifiers", "Return"], + ] + command_results = [_operator_run(command, timeout=5.0) for command in commands] + ok = all(item.get("ok") for item in command_results) + result = { + "ok": ok, + "operation": operation, + "artifact": validation.get("artifact"), + "target_center": center, + "active_window_before": before_title, + "active_window_after_click": picker_title, + "command_results": command_results, + "no_send_click_performed": True, + "verification": "extension_should_confirm_upload_chip", + } + receipt_path = _write_operation_receipt( + shell_root, + operation=operation, + status="completed" if ok else "failed", + packet=packet, + result=result, + target_refs=[{"provider": "local_ion", "path": (validation.get("artifact") or {}).get("path"), "role": "approved_local_operator_attachment"}], + failure_classification=None if ok else "LOCAL_DAEMON_FAILURE", + ) + return { + "schema_id": "ion.chatops.local_operator_attach_result.v1", + "ok": ok, + "verdict": READY_VERDICT if ok else BLOCKED_VERDICT, + "receipt_path": receipt_path, + "production_authority": False, + "live_execution_authority": False, + **result, + } + + def _operation_receipt_path(root: Path, receipt_id: str) -> Path: return root / RECEIPTS_DIR / f"{_safe_slug(receipt_id)}.json" @@ -1123,6 +1334,8 @@ def build_chatops_context_pack(root: str | Path | None = None) -> dict[str, Any] "compact_zip": "POST /exports/lifecycle-zip with package_class=COMPACT_RUNTIME and Braden approval", "attachable_artifacts": "GET /artifacts/attachables", "prepare_artifact_upload": "POST /artifacts/prepare-upload with Braden approval", + "local_operator_status": "GET /operator/status", + "local_operator_attach_artifact": "POST /operator/attach-artifact with Braden approval", "sandbox_returns": "GET /sandbox/returns", "sandbox_diff_preview": "POST /sandbox/returns/diff-preview with Braden approval", "sandbox_queue_review": "POST /sandbox/returns/queue-review with Braden approval", @@ -1417,12 +1630,24 @@ def build_chatops_policy(root: str | Path | None = None) -> dict[str, Any]: "list": "GET /artifacts/attachables", "prepare_upload": "POST /artifacts/prepare-upload", "download_ticket": "GET /artifacts/download/{token}", + "local_operator_status": "GET /operator/status", + "local_operator_attach": "POST /operator/attach-artifact", "allowed_roots": list(ATTACHABLE_ROOTS), "supported_suffixes": list(ATTACHABLE_FILE_SUFFIXES), "max_browser_upload_bytes": MAX_BROWSER_UPLOAD_BYTES, "silent_upload_authority": False, "send_click_authority": False, }, + "local_operator_surface": { + "status": "GET /operator/status", + "attach_artifact": "POST /operator/attach-artifact", + "backend": "xdotool_first_linux_desktop_helper", + "operator_present_required": True, + "active_chatgpt_window_required": True, + "file_picker_title_check": True, + "send_click_authority": False, + "silent_upload_authority": False, + }, "sandbox_return_surface": { "queue": "GET /sandbox/returns", "detail": "GET /sandbox/returns/{return_id}", @@ -1663,6 +1888,9 @@ def do_GET(self) -> None: # noqa: N802 - stdlib handler name if path == "/agent/queue": _http_response(self, 200, build_chatops_agent_queue(root)) return + if path == "/operator/status": + _http_response(self, 200, build_chatops_local_operator_status(root)) + return if path == "/exports/context-pack": _http_response(self, 200, build_chatops_context_pack(root)) return @@ -1737,6 +1965,10 @@ def do_POST(self) -> None: # noqa: N802 - stdlib handler name result = prepare_chatops_artifact_upload(root, packet) _http_response(self, 200 if result.get("ok") else 409, result) return + if path == "/operator/attach-artifact": + result = attach_chatops_artifact_with_local_operator(root, packet) + _http_response(self, 200 if result.get("ok") else 409, result) + return if path == "/sandbox/returns/register": result = register_chatops_sandbox_return(root, packet) _http_response(self, 200 if result.get("ok") else 409, result) diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 1732d7b6..3cafcb70 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -30,6 +30,8 @@ MVP behavior: browser drop tickets from the local daemon; - attempt a visible ChatGPT drag/drop for an approved artifact without clicking Send; +- request approval-gated local operator attachment of an approved artifact + through the daemon without clicking Send; - show an approval modal for Braden; - insert a known-good Sev re-entry prompt into the ChatGPT composer; - keep fabricated smoke/Codex work-packet actions under Diagnostics as local bridge tests; @@ -154,11 +156,17 @@ The Artifacts tab includes the first guarded file lane: - `Drop Latest`: asks Braden for approval, asks the daemon for a one-use-ish localhost download ticket, fetches the file as a browser `File`, and attempts visible `dragenter`/`dragover`/`drop` events against the ChatGPT composer. +- `Local Attach`: asks Braden for approval, prepares a daemon upload ticket, and + asks the local operator helper to open the ChatGPT attach control and select + the exact approved artifact through the OS file picker. This path is + `xdotool`-first on Linux and fails closed if the active window is not ChatGPT, + the attach target is stale/missing, or the file picker is not detected. Browsers do not allow ordinary page scripts to set local file inputs to arbitrary paths. ChatGPT or the browser may also reject synthetic drag/drop. When that happens, the panel still provides the manifest/hash/receipt so Braden -can use the manual attach picker or a future native/debugger macro lane. +can use `Local Attach`, the manual attach picker, or a future native/debugger +lane. The intended ION path is: @@ -168,6 +176,7 @@ The intended ION path is: 3. Braden approves the attach operation; 4. extension uses the most reliable available browser path: - approved visible synthetic drag/drop where accepted; + - approved local operator file-picker assistance where available; - user-visible attach picker guidance; - approved downloaded package handoff; - future Chrome-extension/native or debugger-mediated upload lane if diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js index f1ec98f0..cd177ac6 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js @@ -147,6 +147,56 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_artifact_local_attach_latest") { + (async () => { + const attachables = await getJson("/artifacts/attachables"); + const rows = Array.isArray(attachables?.candidates) ? attachables.candidates : []; + const candidate = rows.find((row) => row?.attachable && typeof row.path === "string"); + if (!attachables?.ok || !candidate) { + sendResponse({ + ok: false, + stage: "artifact_local_attach_latest", + finding: attachables?.ok ? "no_attachable_artifact" : "attachables_unavailable", + result: attachables + }); + return; + } + const approved = await requestBridgeApproval( + sender, + "local_operator_attach_artifact", + `Let the local ION operator helper attach ${candidate.name ?? candidate.path} (${candidate.size_bytes ?? "unknown"} bytes) to the active ChatGPT composer. This will not click Send.`, + "local_operator_artifact_attach_approval_required" + ); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED", candidate }); + return; + } + const prepared = await postJson("/artifacts/prepare-upload", approvedPayload({ artifact_path: candidate.path })); + if (!prepared?.ok) { + sendResponse({ ok: false, stage: "artifact_prepare_latest", result: prepared }); + return; + } + const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ + download_token: prepared.download_token, + target_rect: message.payload?.target_rect ?? null, + active_window_required: true, + file_picker_title_check: true, + send_after_attach: false + })); + sendResponse({ + ok: Boolean(operatorResult?.ok), + stage: "artifact_local_attach_latest", + result: { + prepared, + operator: operatorResult + } + }); + })().catch((error) => { + sendResponse({ ok: false, stage: "artifact_local_attach_latest_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_sandbox_diff_latest") { (async () => { const returnId = String(message.payload?.return_id ?? "").trim(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 7f84d187..11e070f2 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -1301,6 +1301,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+
@@ -1399,6 +1400,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); }); + panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -1939,6 +1943,75 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp ); } + function composerRect() { + const composer = findComposer(); + return composer?.getBoundingClientRect() ?? null; + } + + function controlLabel(node) { + return `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.replace(/\s+/g, " ").trim(); + } + + function visibleElement(node) { + const rect = node.getBoundingClientRect(); + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; + } + + function findAttachControlRect() { + const rect = composerRect(); + const nodes = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")); + const candidate = nodes.find((node) => { + if (!visibleElement(node)) return false; + const label = controlLabel(node).toLowerCase(); + const bounds = node.getBoundingClientRect(); + const nearComposer = rect ? Math.abs(bounds.top - rect.top) < 220 || Math.abs(bounds.bottom - rect.bottom) < 220 : bounds.top > window.innerHeight * 0.45; + return nearComposer && /attach|upload|file|plus|add/.test(label); + }); + if (!candidate) return null; + const bounds = candidate.getBoundingClientRect(); + return { + x: Math.round(bounds.left), + y: Math.round(bounds.top), + width: Math.round(bounds.width), + height: Math.round(bounds.height), + label: controlLabel(candidate), + }; + } + + function uploadedAttachmentCount() { + const rect = composerRect(); + return Array.from( + document.querySelectorAll( + "img, [data-testid*='attachment' i], [data-testid*='upload' i], [data-testid*='file' i], [data-testid*='image' i], [aria-label*='remove' i], [aria-label*='file' i], [aria-label*='image' i], [class*='attachment' i]", + ), + ).filter((node) => { + if (!visibleElement(node)) return false; + const bounds = node.getBoundingClientRect(); + return rect ? bounds.bottom >= rect.top - 300 && bounds.top <= rect.bottom + 160 : bounds.top > window.innerHeight * 0.45; + }).length; + } + + function waitForUploadChip(previousCount, label, baseDetail) { + const started = Date.now(); + const poll = () => { + const count = uploadedAttachmentCount(); + if (count > previousCount) { + const detail = `${baseDetail}\n\nupload_chip_verified: true\nuploaded_attachment_count: ${count}`; + setBridgeArtifactDetail(detail); + setBridgeStatus(`${label} verified`, "Upload chip/thumbnail detected. No Send click was performed.", "success"); + return; + } + if (Date.now() - started > 15000) { + const detail = `${baseDetail}\n\nupload_chip_verified: false\nuploaded_attachment_count: ${count}\nfinding: upload_chip_not_observed_after_operator_attempt`; + setBridgeArtifactDetail(detail); + setBridgeStatus(`${label} unverified`, "Local helper returned, but no upload chip was observed yet. No Send click was performed.", "error"); + return; + } + window.setTimeout(poll, 600); + }; + poll(); + } + async function attemptPreparedArtifactDrop(result) { const downloadUrl = String(result?.download_url ?? "").trim(); const filename = String(result?.filename ?? result?.artifact?.name ?? "ion-artifact.bin").trim(); @@ -2000,6 +2073,28 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); } + function requestArtifactLocalAttachLatest() { + const targetRect = findAttachControlRect(); + const beforeCount = uploadedAttachmentCount(); + if (!targetRect) { + const detail = "attach_control_not_detected\nOpen ChatGPT composer and use Diagnostics to confirm ION sees the attach/add-file control."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Local attach blocked", detail, "error"); + return; + } + setBridgeStatus("Local attach latest", "Requesting approval for local operator artifact attachment. No Send click will occur.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_artifact_local_attach_latest", payload: { target_rect: targetRect } }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeArtifactDetail(detail); + if (!response?.ok) { + setBridgeStatus("Local attach blocked", detail.split("\n")[0] ?? "", "error"); + return; + } + await copyBridgeResult("Local artifact attach", detail); + waitForUploadChip(beforeCount, "Local attach", detail); + }); + } + function actionSummary(packet) { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -2298,6 +2393,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-artifact-drop-latest", () => { requestArtifactDropLatest(); }); + window.addEventListener("ion-chatops-artifact-local-attach", () => { + requestArtifactLocalAttachLatest(); + }); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); } else { diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index aba724b8..af8764e5 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -721,6 +721,7 @@ function ensurePanel(): HTMLElement {
+
@@ -819,6 +820,9 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); }); + panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts index 288ea945..c36b017e 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts @@ -149,6 +149,56 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_artifact_local_attach_latest") { + (async () => { + const attachables = await getJson("/artifacts/attachables"); + const rows = Array.isArray(attachables?.candidates) ? attachables.candidates : []; + const candidate = rows.find((row: any) => row?.attachable && typeof row.path === "string"); + if (!attachables?.ok || !candidate) { + sendResponse({ + ok: false, + stage: "artifact_local_attach_latest", + finding: attachables?.ok ? "no_attachable_artifact" : "attachables_unavailable", + result: attachables + }); + return; + } + const approved = await requestBridgeApproval( + sender, + "local_operator_attach_artifact", + `Let the local ION operator helper attach ${candidate.name ?? candidate.path} (${candidate.size_bytes ?? "unknown"} bytes) to the active ChatGPT composer. This will not click Send.`, + "local_operator_artifact_attach_approval_required" + ); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED", candidate }); + return; + } + const prepared = await postJson("/artifacts/prepare-upload", approvedPayload({ artifact_path: candidate.path })); + if (!prepared?.ok) { + sendResponse({ ok: false, stage: "artifact_prepare_latest", result: prepared }); + return; + } + const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ + download_token: prepared.download_token, + target_rect: message.payload?.target_rect ?? null, + active_window_required: true, + file_picker_title_check: true, + send_after_attach: false + })); + sendResponse({ + ok: Boolean(operatorResult?.ok), + stage: "artifact_local_attach_latest", + result: { + prepared, + operator: operatorResult + } + }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "artifact_local_attach_latest_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_sandbox_diff_latest") { (async () => { const returnId = String(message.payload?.return_id ?? "").trim(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index d1d4d840..5d9167b6 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -767,6 +767,75 @@ function findDropTarget(): HTMLElement | null { ) as HTMLElement | null; } +function composerRect(): DOMRect | null { + const composer = findComposer(); + return composer?.getBoundingClientRect() ?? null; +} + +function controlLabel(node: HTMLElement): string { + return `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.replace(/\s+/g, " ").trim(); +} + +function visibleElement(node: HTMLElement): boolean { + const rect = node.getBoundingClientRect(); + return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; +} + +function findAttachControlRect(): Record | null { + const rect = composerRect(); + const nodes = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")); + const candidate = nodes.find((node) => { + if (!visibleElement(node)) return false; + const label = controlLabel(node).toLowerCase(); + const bounds = node.getBoundingClientRect(); + const nearComposer = rect ? Math.abs(bounds.top - rect.top) < 220 || Math.abs(bounds.bottom - rect.bottom) < 220 : bounds.top > window.innerHeight * 0.45; + return nearComposer && /attach|upload|file|plus|add/.test(label); + }); + if (!candidate) return null; + const bounds = candidate.getBoundingClientRect(); + return { + x: Math.round(bounds.left), + y: Math.round(bounds.top), + width: Math.round(bounds.width), + height: Math.round(bounds.height), + label: controlLabel(candidate), + }; +} + +function uploadedAttachmentCount(): number { + const rect = composerRect(); + return Array.from( + document.querySelectorAll( + "img, [data-testid*='attachment' i], [data-testid*='upload' i], [data-testid*='file' i], [data-testid*='image' i], [aria-label*='remove' i], [aria-label*='file' i], [aria-label*='image' i], [class*='attachment' i]", + ), + ).filter((node) => { + if (!visibleElement(node)) return false; + const bounds = node.getBoundingClientRect(); + return rect ? bounds.bottom >= rect.top - 300 && bounds.top <= rect.bottom + 160 : bounds.top > window.innerHeight * 0.45; + }).length; +} + +function waitForUploadChip(previousCount: number, label: string, baseDetail: string): void { + const started = Date.now(); + const poll = () => { + const count = uploadedAttachmentCount(); + if (count > previousCount) { + const detail = `${baseDetail}\n\nupload_chip_verified: true\nuploaded_attachment_count: ${count}`; + setBridgeArtifactDetail(detail); + setBridgeStatus(`${label} verified`, "Upload chip/thumbnail detected. No Send click was performed.", "success"); + return; + } + if (Date.now() - started > 15000) { + const detail = `${baseDetail}\n\nupload_chip_verified: false\nuploaded_attachment_count: ${count}\nfinding: upload_chip_not_observed_after_operator_attempt`; + setBridgeArtifactDetail(detail); + setBridgeStatus(`${label} unverified`, "Local helper returned, but no upload chip was observed yet. No Send click was performed.", "error"); + return; + } + window.setTimeout(poll, 600); + }; + poll(); +} + async function attemptPreparedArtifactDrop(result: any): Promise { const downloadUrl = String(result?.download_url ?? "").trim(); const filename = String(result?.filename ?? result?.artifact?.name ?? "ion-artifact.bin").trim(); @@ -828,6 +897,28 @@ function requestArtifactDropLatest(): void { }); } +function requestArtifactLocalAttachLatest(): void { + const targetRect = findAttachControlRect(); + const beforeCount = uploadedAttachmentCount(); + if (!targetRect) { + const detail = "attach_control_not_detected\nOpen ChatGPT composer and use Diagnostics to confirm ION sees the attach/add-file control."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Local attach blocked", detail, "error"); + return; + } + setBridgeStatus("Local attach latest", "Requesting approval for local operator artifact attachment. No Send click will occur.", "working"); + chrome.runtime.sendMessage({ type: "ion_chatops_artifact_local_attach_latest", payload: { target_rect: targetRect } }, async (response) => { + const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + setBridgeArtifactDetail(detail); + if (!response?.ok) { + setBridgeStatus("Local attach blocked", detail.split("\n")[0] ?? "", "error"); + return; + } + await copyBridgeResult("Local artifact attach", detail); + waitForUploadChip(beforeCount, "Local attach", detail); + }); +} + function actionSummary(packet: ReturnType): string { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -1126,6 +1217,9 @@ window.addEventListener("ion-chatops-artifact-attachables", () => { window.addEventListener("ion-chatops-artifact-drop-latest", () => { requestArtifactDropLatest(); }); +window.addEventListener("ion-chatops-artifact-local-attach", () => { + requestArtifactLocalAttachLatest(); +}); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); diff --git a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md index cb88a1ca..6ed862c8 100644 --- a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md +++ b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md @@ -25,7 +25,9 @@ GET /sandbox/returns GET /sandbox/returns/{return_id} GET /artifacts/attachables GET /artifacts/download/{download_token} +GET /operator/status POST /artifacts/prepare-upload +POST /operator/attach-artifact POST /sandbox/returns/register POST /sandbox/returns/file POST /sandbox/returns/commit @@ -48,3 +50,11 @@ bounded ION roots. `prepare-upload` requires Braden approval, writes a download ticket receipt, and serves a localhost file stream for the browser extension to attempt a visible ChatGPT drag/drop. It does not click Send, apply patches, or upload anything silently. + +The local operator endpoints expose bounded desktop-assist status and approved +artifact attachment only. `/operator/attach-artifact` validates a prepared +upload ticket, rejects any send-after-attach request, requires an extension +target rectangle, checks the active window is ChatGPT by default, and uses the +available local helper, currently `xdotool` on Linux/X11, to select the exact +approved artifact in the OS file picker. The browser extension still verifies +whether an upload chip appears. No Send click is performed. diff --git a/ION/tests/test_kernel_ion_chatops_bridge_policy.py b/ION/tests/test_kernel_ion_chatops_bridge_policy.py index 46345f2d..924f70f6 100644 --- a/ION/tests/test_kernel_ion_chatops_bridge_policy.py +++ b/ION/tests/test_kernel_ion_chatops_bridge_policy.py @@ -5,11 +5,13 @@ APPROVAL_TOKEN, ACTION_SCHEMA, READY_VERDICT, + attach_chatops_artifact_with_local_operator, build_chatops_attachable_artifacts, build_chatops_policy, build_chatops_agent_queue, build_chatops_agent_status, build_chatops_context_pack, + build_chatops_local_operator_status, build_sev_context_brief, classify_chatops_action, prepare_chatops_artifact_upload, @@ -26,6 +28,7 @@ def _seed_root(root: Path) -> None: (root / "ION/REPO_AUTHORITY.md").write_text("# authority\n", encoding="utf-8") for rel in [ "ION/02_architecture/ION_BROWSER_CARRIER_RUNTIME_PROTOCOL.md", + "ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md", "ION/02_architecture/ION_CHATOPS_YAML_ACTION_PROTOCOL.md", "ION/02_architecture/ION_CHATGPT_SANDBOX_RETURN_INTAKE_PROTOCOL.md", "ION/02_architecture/ION_MOUNT_CONTRACT.md", @@ -109,6 +112,8 @@ def test_chatops_policy_owner_surfaces_ready(tmp_path): assert result["artifact_upload_surface"]["silent_upload_authority"] is False assert result["artifact_upload_surface"]["send_click_authority"] is False assert result["artifact_upload_surface"]["prepare_upload"] == "POST /artifacts/prepare-upload" + assert result["local_operator_surface"]["attach_artifact"] == "POST /operator/attach-artifact" + assert result["local_operator_surface"]["send_click_authority"] is False assert result["sandbox_return_surface"]["owner"] == "ION/04_packages/kernel/ion_chatgpt_sandbox_return_intake.py" assert result["sandbox_return_surface"]["direct_apply_authority"] is False assert result["main_policy"]["main_auto_push_allowed"] is False @@ -383,6 +388,7 @@ def test_chatops_context_pack_includes_agent_and_package_controls(tmp_path): assert result["pack"]["bridge_tools"]["compact_zip"] == "POST /exports/lifecycle-zip with package_class=COMPACT_RUNTIME and Braden approval" assert result["pack"]["bridge_tools"]["attachable_artifacts"] == "GET /artifacts/attachables" assert result["pack"]["bridge_tools"]["prepare_artifact_upload"] == "POST /artifacts/prepare-upload with Braden approval" + assert result["pack"]["bridge_tools"]["local_operator_attach_artifact"] == "POST /operator/attach-artifact with Braden approval" assert result["pack"]["bridge_tools"]["sandbox_returns"] == "GET /sandbox/returns" assert result["pack"]["sandbox_returns"]["inbox_root"] == "ION/05_context/inbox/chatgpt_sandbox_returns" assert "ION local context pack" in result["prompt"] @@ -415,6 +421,43 @@ def test_chatops_artifact_upload_prepare_requires_approval_and_ticket(tmp_path): assert validation["ok"] is True +def test_chatops_local_operator_attachment_requires_approval_and_blocks_send_click(tmp_path): + _seed_root(tmp_path) + zip_path = tmp_path / "ION/06_artifacts/packages/demo.zip" + zip_path.parent.mkdir(parents=True, exist_ok=True) + zip_path.write_bytes(b"PK\x03\x04demo") + prepared = prepare_chatops_artifact_upload( + tmp_path, + _approved({"artifact_path": "ION/06_artifacts/packages/demo.zip"}), + ) + + blocked = attach_chatops_artifact_with_local_operator(tmp_path, {"download_token": prepared["download_token"]}) + send_blocked = attach_chatops_artifact_with_local_operator( + tmp_path, + _approved({"download_token": prepared["download_token"], "send_after_attach": True, "dry_run": True}), + ) + dry_run = attach_chatops_artifact_with_local_operator( + tmp_path, + _approved({ + "download_token": prepared["download_token"], + "dry_run": True, + "target_rect": {"x": 100, "y": 200, "width": 40, "height": 20}, + }), + ) + status = build_chatops_local_operator_status(tmp_path) + + assert blocked["ok"] is False + assert blocked["finding"] == "approval_failed" + assert send_blocked["ok"] is False + assert send_blocked["finding"] == "send_click_not_authorized" + assert dry_run["ok"] is True + assert dry_run["dry_run"] is True + assert dry_run["no_send_click_performed"] is True + assert dry_run["target_center"] == (120, 210) + assert (tmp_path / dry_run["receipt_path"]).exists() + assert status["send_click_authority"] is False + + def test_chatops_submit_rejects_mutating_action_without_policy_approval_even_if_action_says_no_approval(tmp_path): _seed_root(tmp_path) packet = _action( From 8f6decbd536e0392952ebbd438ad0b56ea07f123 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 15:14:27 -0400 Subject: [PATCH 20/30] Repair local artifact attach and composer drawer --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 20 ++++--- ION/04_packages/kernel/ion_chatops_bridge.py | 11 +++- .../ion_chatops_bridge/README.md | 9 ++- .../ion_chatops_bridge/dist/background.js | 1 + .../ion_chatops_bridge/dist/content.js | 59 +++++++++++++++++-- .../ion_chatops_bridge/src/approval_ui.ts | 8 +-- .../ion_chatops_bridge/src/background.ts | 1 + .../ion_chatops_bridge/src/content.ts | 51 +++++++++++++++- .../tests/live_smoke_parser_simulation.js | 3 +- .../local_daemon/ion_chatops_bridge/README.md | 10 ++-- .../test_kernel_ion_chatops_bridge_policy.py | 3 +- 11 files changed, 144 insertions(+), 32 deletions(-) diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md index 5ff756c1..52abc88d 100644 --- a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -65,10 +65,11 @@ Artifacts tab This lane uses a local desktop automation helper when available. The first Linux implementation is `xdotool`-first: it can click the approved attach -control, paste/type the exact approved artifact path into the file picker, and -confirm the picker. It must fail closed if the desktop tool is unavailable, the -active window is not ChatGPT, the attach target is stale/missing, or the file -picker is not detected. +control using extension-provided screen coordinates, paste/type the exact +approved artifact path into the file picker, and confirm the picker. It must +fail closed if the desktop tool is unavailable, the active window is not a +browser/ChatGPT surface, the attach target is stale/missing, or the file picker +is not detected. `Local Attach` is still operator-present automation. It does not grant silent upload authority and does not click Send. @@ -118,11 +119,12 @@ GET /operator/status POST /operator/attach-artifact ``` -`/operator/attach-artifact` accepts only an approved daemon upload ticket and an -extension-provided attach target rectangle. It verifies the artifact ticket, -rejects `send_after_attach`, records a receipt for success/failure, and returns -`verification: extension_should_confirm_upload_chip` because ChatGPT upload -completion must be observed in the browser surface. +`/operator/attach-artifact` accepts only an approved daemon upload ticket and +extension-provided attach target rectangles. It prefers screen coordinates for +desktop automation and retains viewport coordinates as evidence. It verifies +the artifact ticket, rejects `send_after_attach`, records a receipt for +success/failure, and returns `verification: extension_should_confirm_upload_chip` +because ChatGPT upload completion must be observed in the browser surface. ## Non-Authority diff --git a/ION/04_packages/kernel/ion_chatops_bridge.py b/ION/04_packages/kernel/ion_chatops_bridge.py index 51d7826e..4c39b50c 100644 --- a/ION/04_packages/kernel/ion_chatops_bridge.py +++ b/ION/04_packages/kernel/ion_chatops_bridge.py @@ -924,7 +924,7 @@ def build_chatops_local_operator_status(root: str | Path | None = None) -> dict[ def _target_center(packet: Mapping[str, Any]) -> tuple[int, int] | None: - rect = packet.get("target_rect") + rect = packet.get("target_screen_rect") or packet.get("target_rect") if not isinstance(rect, Mapping): return None try: @@ -939,6 +939,11 @@ def _target_center(packet: Mapping[str, Any]) -> tuple[int, int] | None: return int(round(x + width / 2)), int(round(y + height / 2)) +def _operator_active_window_allowed(title: str) -> bool: + lowered = title.lower() + return bool(re.search(r"chatgpt|google chrome|chromium|chrome", lowered)) + + def _operator_failure(root: Path, packet: Mapping[str, Any], *, finding: str, result: Mapping[str, Any], status: str = "failed") -> dict[str, Any]: receipt_path = _write_operation_receipt( root, @@ -1028,7 +1033,7 @@ def attach_chatops_artifact_with_local_operator(root: str | Path | None, packet: if not xdotool: return _operator_failure(shell_root, packet, finding="desktop_automation_tool_missing", result={"operator_status": status, "required_tool": "xdotool"}) before_title = _operator_active_window_title() - if bool(packet.get("active_window_required", True)) and "chatgpt" not in before_title.lower(): + if bool(packet.get("active_window_required", True)) and not _operator_active_window_allowed(before_title): return _operator_failure(shell_root, packet, finding="active_window_not_chatgpt", result={"active_window_title": before_title}) assert center is not None click = _operator_run([xdotool, "mousemove", "--sync", str(center[0]), str(center[1]), "click", "1"], timeout=2.0) @@ -1643,7 +1648,7 @@ def build_chatops_policy(root: str | Path | None = None) -> dict[str, Any]: "attach_artifact": "POST /operator/attach-artifact", "backend": "xdotool_first_linux_desktop_helper", "operator_present_required": True, - "active_chatgpt_window_required": True, + "active_browser_or_chatgpt_window_required": True, "file_picker_title_check": True, "send_click_authority": False, "silent_upload_authority": False, diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 3cafcb70..9213c25a 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -159,8 +159,13 @@ The Artifacts tab includes the first guarded file lane: - `Local Attach`: asks Braden for approval, prepares a daemon upload ticket, and asks the local operator helper to open the ChatGPT attach control and select the exact approved artifact through the OS file picker. This path is - `xdotool`-first on Linux and fails closed if the active window is not ChatGPT, - the attach target is stale/missing, or the file picker is not detected. + `xdotool`-first on Linux, uses extension-provided screen coordinates, and + fails closed if the active window is not a browser/ChatGPT surface, the attach + target is stale/missing, or the file picker is not detected. + +`Attachables` intentionally shows a compact selected-artifact summary rather +than dumping the full daemon JSON. The selected artifact is the same latest +candidate used by `Drop Latest` and `Local Attach`. Browsers do not allow ordinary page scripts to set local file inputs to arbitrary paths. ChatGPT or the browser may also reject synthetic drag/drop. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js index cd177ac6..ca0c2cb2 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js @@ -179,6 +179,7 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ download_token: prepared.download_token, target_rect: message.payload?.target_rect ?? null, + target_screen_rect: message.payload?.target_screen_rect ?? null, active_window_required: true, file_picker_title_check: true, send_after_attach: false diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 11e070f2..5d1b5570 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -805,7 +805,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp backdrop-filter: blur(14px); margin: 0; padding: 10px 10px 11px; - max-height: min(54vh, 520px); + max-height: min(38vh, 360px); overflow: auto; pointer-events: auto; } @@ -1222,8 +1222,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const margin = 12; const left = Math.max(margin, Math.round(rect.left)); const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); - const width = Math.min(COMPOSER_PANEL_MAX_WIDTH, Math.max(PANEL_MIN_WIDTH, available)); - const bottom = Math.max(4, Math.round(viewport - rect.top - 1)); + const width = available; + const bottom = Math.max(4, Math.round(viewport - rect.top + 2)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "composer"; @@ -1234,7 +1234,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp cockpit.style.left = `${left}px`; cockpit.style.right = "auto"; cockpit.style.bottom = `${bottom}px`; - cockpit.style.width = `${Math.min(width, available)}px`; + cockpit.style.width = `${width}px`; cockpit.style.maxWidth = `${available}px`; } positionApprovalModal(); @@ -1763,6 +1763,37 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return text.length > max ? `${text.slice(0, max)}\n...` : text; } + function formatBytes(value) { + const bytes = Number(value); + if (!Number.isFinite(bytes) || bytes < 0) return "unknown size"; + if (bytes < 1024) return `${bytes} B`; + if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KiB`; + return `${(bytes / (1024 * 1024)).toFixed(2)} MiB`; + } + + function summarizeAttachables(result) { + const rows = Array.isArray(result?.candidates) ? result.candidates : []; + const attachables = rows.filter((row) => row?.attachable && typeof row.path === "string"); + if (!attachables.length) return "No attachable package or sandbox-return artifact is available."; + const selected = attachables[0]; + const lines = [ + `attachable_count: ${attachables.length}`, + "selected_latest:", + ` name: ${selected.name ?? "unknown"}`, + ` path: ${selected.path}`, + ` size: ${formatBytes(selected.size_bytes)}`, + ` sha256: ${selected.sha256 ?? ""}`, + ]; + if (attachables.length > 1) { + lines.push("", "other_attachables:"); + attachables.slice(1, 4).forEach((row, index) => { + lines.push(` ${index + 2}. ${row.name ?? row.path} (${formatBytes(row.size_bytes)})`); + }); + } + lines.push("", "Use Local Attach for OS file-picker assist, or Drop Latest for browser synthetic drop. Neither clicks Send."); + return lines.join("\n"); + } + async function copyBridgeResult(label, detail) { await copyReceiptSummary(`${label}\n${detail}`); } @@ -1925,7 +1956,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp function requestArtifactAttachables() { setBridgeStatus("Attachables", "Reading local packages and sandbox return artifacts.", "working"); chrome.runtime.sendMessage({ type: "ion_chatops_artifact_attachables" }, async (response) => { - const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + const detail = response?.ok ? summarizeAttachables(response.result) : blockedDetail(response); setBridgeArtifactDetail(detail); setBridgeStatus(response?.ok ? "Attachables ready" : "Attachables blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); if (response?.ok) await copyBridgeResult("Attachable artifacts", detail); @@ -1969,12 +2000,22 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); if (!candidate) return null; const bounds = candidate.getBoundingClientRect(); + const borderX = Math.max(0, (window.outerWidth - window.innerWidth) / 2); + const chromeY = Math.max(0, window.outerHeight - window.innerHeight - borderX); + const screenRect = { + x: Math.round(window.screenX + borderX + bounds.left), + y: Math.round(window.screenY + chromeY + bounds.top), + width: Math.round(bounds.width), + height: Math.round(bounds.height), + }; return { x: Math.round(bounds.left), y: Math.round(bounds.top), width: Math.round(bounds.width), height: Math.round(bounds.height), label: controlLabel(candidate), + screen_rect: screenRect, + coordinate_space: "viewport_css_pixels", }; } @@ -2083,7 +2124,13 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return; } setBridgeStatus("Local attach latest", "Requesting approval for local operator artifact attachment. No Send click will occur.", "working"); - chrome.runtime.sendMessage({ type: "ion_chatops_artifact_local_attach_latest", payload: { target_rect: targetRect } }, async (response) => { + chrome.runtime.sendMessage({ + type: "ion_chatops_artifact_local_attach_latest", + payload: { + target_rect: targetRect, + target_screen_rect: targetRect.screen_rect, + }, + }, async (response) => { const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); setBridgeArtifactDetail(detail); if (!response?.ok) { diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index af8764e5..2d526b90 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -224,7 +224,7 @@ function ensureStyle(): void { backdrop-filter: blur(14px); margin: 0; padding: 10px 10px 11px; - max-height: min(54vh, 520px); + max-height: min(38vh, 360px); overflow: auto; pointer-events: auto; } @@ -642,8 +642,8 @@ function applyComposerLayout(panel: HTMLElement, anchor: AnchorInfo): boolean { const margin = 12; const left = Math.max(margin, Math.round(rect.left)); const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); - const width = Math.min(COMPOSER_PANEL_MAX_WIDTH, Math.max(PANEL_MIN_WIDTH, available)); - const bottom = Math.max(4, Math.round(viewport - rect.top - 1)); + const width = available; + const bottom = Math.max(4, Math.round(viewport - rect.top + 2)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "composer"; @@ -654,7 +654,7 @@ function applyComposerLayout(panel: HTMLElement, anchor: AnchorInfo): boolean { cockpit.style.left = `${left}px`; cockpit.style.right = "auto"; cockpit.style.bottom = `${bottom}px`; - cockpit.style.width = `${Math.min(width, available)}px`; + cockpit.style.width = `${width}px`; cockpit.style.maxWidth = `${available}px`; } positionApprovalModal(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts index c36b017e..50c83734 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts @@ -181,6 +181,7 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ download_token: prepared.download_token, target_rect: message.payload?.target_rect ?? null, + target_screen_rect: message.payload?.target_screen_rect ?? null, active_window_required: true, file_picker_title_check: true, send_after_attach: false diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index 5d9167b6..2c3b0db4 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -587,6 +587,37 @@ function compactJson(value: unknown, max = 1800): string { return text.length > max ? `${text.slice(0, max)}\n...` : text; } +function formatBytes(value: unknown): string { + const bytes = Number(value); + if (!Number.isFinite(bytes) || bytes < 0) return "unknown size"; + if (bytes < 1024) return `${bytes} B`; + if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KiB`; + return `${(bytes / (1024 * 1024)).toFixed(2)} MiB`; +} + +function summarizeAttachables(result: any): string { + const rows = Array.isArray(result?.candidates) ? result.candidates : []; + const attachables = rows.filter((row: any) => row?.attachable && typeof row.path === "string"); + if (!attachables.length) return "No attachable package or sandbox-return artifact is available."; + const selected = attachables[0]; + const lines = [ + `attachable_count: ${attachables.length}`, + "selected_latest:", + ` name: ${selected.name ?? "unknown"}`, + ` path: ${selected.path}`, + ` size: ${formatBytes(selected.size_bytes)}`, + ` sha256: ${selected.sha256 ?? ""}`, + ]; + if (attachables.length > 1) { + lines.push("", "other_attachables:"); + attachables.slice(1, 4).forEach((row: any, index: number) => { + lines.push(` ${index + 2}. ${row.name ?? row.path} (${formatBytes(row.size_bytes)})`); + }); + } + lines.push("", "Use Local Attach for OS file-picker assist, or Drop Latest for browser synthetic drop. Neither clicks Send."); + return lines.join("\n"); +} + async function copyBridgeResult(label: string, detail: string): Promise { await copyReceiptSummary(`${label}\n${detail}`); } @@ -749,7 +780,7 @@ function requestSandboxMutation(type: "ion_chatops_sandbox_diff_latest" | "ion_c function requestArtifactAttachables(): void { setBridgeStatus("Attachables", "Reading local packages and sandbox return artifacts.", "working"); chrome.runtime.sendMessage({ type: "ion_chatops_artifact_attachables" }, async (response) => { - const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); + const detail = response?.ok ? summarizeAttachables(response.result) : blockedDetail(response); setBridgeArtifactDetail(detail); setBridgeStatus(response?.ok ? "Attachables ready" : "Attachables blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); if (response?.ok) await copyBridgeResult("Attachable artifacts", detail); @@ -793,12 +824,22 @@ function findAttachControlRect(): Record | null { }); if (!candidate) return null; const bounds = candidate.getBoundingClientRect(); + const borderX = Math.max(0, (window.outerWidth - window.innerWidth) / 2); + const chromeY = Math.max(0, window.outerHeight - window.innerHeight - borderX); + const screenRect = { + x: Math.round(window.screenX + borderX + bounds.left), + y: Math.round(window.screenY + chromeY + bounds.top), + width: Math.round(bounds.width), + height: Math.round(bounds.height), + }; return { x: Math.round(bounds.left), y: Math.round(bounds.top), width: Math.round(bounds.width), height: Math.round(bounds.height), label: controlLabel(candidate), + screen_rect: screenRect, + coordinate_space: "viewport_css_pixels", }; } @@ -907,7 +948,13 @@ function requestArtifactLocalAttachLatest(): void { return; } setBridgeStatus("Local attach latest", "Requesting approval for local operator artifact attachment. No Send click will occur.", "working"); - chrome.runtime.sendMessage({ type: "ion_chatops_artifact_local_attach_latest", payload: { target_rect: targetRect } }, async (response) => { + chrome.runtime.sendMessage({ + type: "ion_chatops_artifact_local_attach_latest", + payload: { + target_rect: targetRect, + target_screen_rect: targetRect["screen_rect"], + }, + }, async (response) => { const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); setBridgeArtifactDetail(detail); if (!response?.ok) { diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index 475ef079..ca6e8324 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -249,7 +249,8 @@ context.document.querySelectorAll = (selector) => { return []; }; context.window.__ION_CHATOPS_BRIDGE_DEBUG__.refreshBridgePosition(); -if (!String(cockpit?.style.bottom || "").includes("239")) { +const expandedBottom = Number.parseInt(String(cockpit?.style.bottom || ""), 10); +if (!Number.isFinite(expandedBottom) || expandedBottom < 239 || expandedBottom > 243) { throw new Error("composer cockpit did not track expanded attachment shell"); } if (!sent || sent.type !== "ion_chatops_candidate") { diff --git a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md index 6ed862c8..108f83c1 100644 --- a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md +++ b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md @@ -54,7 +54,9 @@ upload anything silently. The local operator endpoints expose bounded desktop-assist status and approved artifact attachment only. `/operator/attach-artifact` validates a prepared upload ticket, rejects any send-after-attach request, requires an extension -target rectangle, checks the active window is ChatGPT by default, and uses the -available local helper, currently `xdotool` on Linux/X11, to select the exact -approved artifact in the OS file picker. The browser extension still verifies -whether an upload chip appears. No Send click is performed. +target rectangle, checks the active window is a browser/ChatGPT surface by +default, and uses the available local helper, currently `xdotool` on Linux/X11, +to select the exact approved artifact in the OS file picker. Screen coordinates +from the extension are preferred for the desktop click; viewport coordinates are +retained as evidence. The browser extension still verifies whether an upload +chip appears. No Send click is performed. diff --git a/ION/tests/test_kernel_ion_chatops_bridge_policy.py b/ION/tests/test_kernel_ion_chatops_bridge_policy.py index 924f70f6..13fcded6 100644 --- a/ION/tests/test_kernel_ion_chatops_bridge_policy.py +++ b/ION/tests/test_kernel_ion_chatops_bridge_policy.py @@ -442,6 +442,7 @@ def test_chatops_local_operator_attachment_requires_approval_and_blocks_send_cli "download_token": prepared["download_token"], "dry_run": True, "target_rect": {"x": 100, "y": 200, "width": 40, "height": 20}, + "target_screen_rect": {"x": 300, "y": 400, "width": 60, "height": 30}, }), ) status = build_chatops_local_operator_status(tmp_path) @@ -453,7 +454,7 @@ def test_chatops_local_operator_attachment_requires_approval_and_blocks_send_cli assert dry_run["ok"] is True assert dry_run["dry_run"] is True assert dry_run["no_send_click_performed"] is True - assert dry_run["target_center"] == (120, 210) + assert dry_run["target_center"] == (330, 415) assert (tmp_path / dry_run["receipt_path"]).exists() assert status["send_click_authority"] is False From 1fdd93ffdbfc9c668100fa8033b8657968257b9e Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 15:36:57 -0400 Subject: [PATCH 21/30] Instrument local attach target geometry --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 23 ++- ION/04_packages/kernel/ion_chatops_bridge.py | 129 ++++++++++++++- .../ion_chatops_bridge/README.md | 8 + .../ion_chatops_bridge/dist/background.js | 98 ++++++++++- .../ion_chatops_bridge/dist/content.js | 156 +++++++++++++++--- .../ion_chatops_bridge/src/approval_ui.ts | 8 + .../ion_chatops_bridge/src/background.ts | 98 ++++++++++- .../ion_chatops_bridge/src/content.ts | 116 +++++++++++-- .../local_daemon/ion_chatops_bridge/README.md | 5 + .../test_kernel_ion_chatops_bridge_policy.py | 23 +++ 10 files changed, 618 insertions(+), 46 deletions(-) diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md index 52abc88d..18184dd6 100644 --- a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -53,10 +53,10 @@ Implemented local-operator lane: ```text Artifacts tab --> Local Attach +-> Preview Target / Dry Run Attach / Local Attach -> Braden approval -> daemon upload ticket --> local operator target check +-> local operator geometry check -> active ChatGPT window check -> approved file-picker assistance -> no Send click @@ -74,6 +74,10 @@ is not detected. `Local Attach` is still operator-present automation. It does not grant silent upload authority and does not click Send. +`Local Attach` must dry-run before moving the pointer. Geometry failures are +classified as `LOCAL_OPERATOR_TARGET_GEOMETRY_INVALID` and no mouse movement is +allowed. + ## Candidate Artifact Roots The daemon may expose only bounded candidate material from policy-owned roots, @@ -126,6 +130,21 @@ the artifact ticket, rejects `send_after_attach`, records a receipt for success/failure, and returns `verification: extension_should_confirm_upload_chip` because ChatGPT upload completion must be observed in the browser surface. +Required geometry evidence: + +```text +target_kind: attach_button +target_rect: viewport coordinates +target_screen_rect: desktop/screen coordinates +composer_rect: viewport coordinates +viewport: browser viewport dimensions +page_url: https://chatgpt.com/... +captured_at_ms: current capture timestamp +``` + +The daemon must reject missing, stale, out-of-viewport, out-of-display, +near-origin, or not-near-composer geometry before any desktop action. + ## Non-Authority This protocol does not grant: diff --git a/ION/04_packages/kernel/ion_chatops_bridge.py b/ION/04_packages/kernel/ion_chatops_bridge.py index 4c39b50c..6d1efbbc 100644 --- a/ION/04_packages/kernel/ion_chatops_bridge.py +++ b/ION/04_packages/kernel/ion_chatops_bridge.py @@ -903,6 +903,25 @@ def _operator_active_window_title() -> str: return str(title.get("stdout") or "").strip() if title.get("ok") else "" +def _operator_display_geometry() -> dict[str, Any]: + tools = _operator_tool_paths() + xdotool = tools.get("xdotool") + if not xdotool: + return {"ok": False, "finding": "xdotool_missing"} + result = _operator_run([xdotool, "getdisplaygeometry"], timeout=1.0) + if not result.get("ok"): + return {"ok": False, "finding": "display_geometry_unavailable", "result": result} + parts = str(result.get("stdout") or "").split() + if len(parts) < 2: + return {"ok": False, "finding": "display_geometry_parse_failed", "result": result} + try: + width = int(float(parts[0])) + height = int(float(parts[1])) + except ValueError: + return {"ok": False, "finding": "display_geometry_parse_failed", "result": result} + return {"ok": True, "width": width, "height": height} + + def build_chatops_local_operator_status(root: str | Path | None = None) -> dict[str, Any]: _resolve_root(root) tools = _operator_tool_paths() @@ -914,6 +933,7 @@ def build_chatops_local_operator_status(root: str | Path | None = None) -> dict[ "backend": "linux_desktop_automation", "tools": tools, "active_window_title": _operator_active_window_title() if xdotool_ready else "", + "display_geometry": _operator_display_geometry() if xdotool_ready else {"ok": False, "finding": "xdotool_missing"}, "supported_operations": ["attach_approved_artifact"] if xdotool_ready else [], "requires_operator_presence": True, "silent_upload_authority": False, @@ -939,11 +959,105 @@ def _target_center(packet: Mapping[str, Any]) -> tuple[int, int] | None: return int(round(x + width / 2)), int(round(y + height / 2)) +def _rect_payload(packet: Mapping[str, Any], key: str) -> Mapping[str, Any] | None: + rect = packet.get(key) + return rect if isinstance(rect, Mapping) else None + + +def _rect_numbers(rect: Mapping[str, Any] | None) -> dict[str, float] | None: + if not rect: + return None + try: + x = float(rect.get("x") if rect.get("x") is not None else rect.get("left")) + y = float(rect.get("y") if rect.get("y") is not None else rect.get("top")) + width = float(rect.get("width") or 0) + height = float(rect.get("height") or 0) + except (TypeError, ValueError): + return None + return {"x": x, "y": y, "width": width, "height": height, "center_x": x + width / 2, "center_y": y + height / 2} + + def _operator_active_window_allowed(title: str) -> bool: lowered = title.lower() return bool(re.search(r"chatgpt|google chrome|chromium|chrome", lowered)) +def _validate_operator_attach_geometry(packet: Mapping[str, Any], status: Mapping[str, Any]) -> dict[str, Any]: + findings: list[str] = [] + target = _rect_numbers(_rect_payload(packet, "target_rect")) + screen_target = _rect_numbers(_rect_payload(packet, "target_screen_rect")) + composer = _rect_numbers(_rect_payload(packet, "composer_rect")) + viewport = packet.get("viewport") if isinstance(packet.get("viewport"), Mapping) else {} + display = status.get("display_geometry") if isinstance(status.get("display_geometry"), Mapping) else {} + now_ms = int(time.time() * 1000) + + if str(packet.get("target_kind") or "") != "attach_button": + findings.append("target_kind_must_be_attach_button") + if not target: + findings.append("target_rect_required") + elif target["width"] <= 1 or target["height"] <= 1: + findings.append("target_rect_too_small") + if not screen_target: + findings.append("target_screen_rect_required") + elif screen_target["width"] <= 1 or screen_target["height"] <= 1: + findings.append("target_screen_rect_too_small") + + if screen_target: + if screen_target["center_x"] < 40 or screen_target["center_y"] < 40: + findings.append("target_screen_center_implausibly_near_origin") + if display.get("ok") is True: + width = float(display.get("width") or 0) + height = float(display.get("height") or 0) + if width > 0 and height > 0 and not (0 <= screen_target["center_x"] <= width and 0 <= screen_target["center_y"] <= height): + findings.append("target_screen_center_outside_display") + + if target and viewport: + try: + viewport_width = float(viewport.get("width") or 0) + viewport_height = float(viewport.get("height") or 0) + except (TypeError, ValueError): + viewport_width = 0 + viewport_height = 0 + if viewport_width > 0 and viewport_height > 0: + if not (0 <= target["center_x"] <= viewport_width and 0 <= target["center_y"] <= viewport_height): + findings.append("target_viewport_center_outside_viewport") + + if target and composer: + near_x = composer["x"] - 96 <= target["center_x"] <= composer["x"] + composer["width"] + 96 + near_y = composer["y"] - 96 <= target["center_y"] <= composer["y"] + composer["height"] + 96 + if not (near_x and near_y): + findings.append("target_not_near_composer_rect") + else: + findings.append("composer_rect_required") + + page_url = str(packet.get("page_url") or "") + if page_url and not page_url.startswith("https://chatgpt.com/"): + findings.append("page_url_not_chatgpt") + + try: + captured_at = int(float(packet.get("captured_at_ms") or 0)) + except (TypeError, ValueError): + captured_at = 0 + if not captured_at: + findings.append("capture_timestamp_required") + elif abs(now_ms - captured_at) > 60000: + findings.append("target_geometry_stale") + + return { + "ok": not findings, + "findings": findings, + "target_rect": target, + "target_screen_rect": screen_target, + "composer_rect": composer, + "viewport": dict(viewport), + "display_geometry": dict(display), + "planned_click": _target_center(packet), + "page_url": page_url, + "captured_at_ms": captured_at, + "age_ms": abs(now_ms - captured_at) if captured_at else None, + } + + def _operator_failure(root: Path, packet: Mapping[str, Any], *, finding: str, result: Mapping[str, Any], status: str = "failed") -> dict[str, Any]: receipt_path = _write_operation_receipt( root, @@ -998,9 +1112,18 @@ def attach_chatops_artifact_with_local_operator(root: str | Path | None, packet: if not artifact_path: return _operator_failure(shell_root, packet, finding=str(validation.get("finding") or "artifact_ticket_invalid"), result={"ticket_validation": validation}) center = _target_center(packet) - if center is None and not bool(packet.get("dry_run")): - return _operator_failure(shell_root, packet, finding="attach_target_rect_required", result={"artifact": validation.get("artifact")}) status = build_chatops_local_operator_status(shell_root) + geometry = _validate_operator_attach_geometry(packet, status) + if not geometry.get("ok"): + return _operator_failure( + shell_root, + packet, + finding="LOCAL_OPERATOR_TARGET_GEOMETRY_INVALID", + result={"artifact": validation.get("artifact"), "geometry": geometry, "operator_status": status}, + status="blocked", + ) + if center is None: + return _operator_failure(shell_root, packet, finding="attach_target_rect_required", result={"artifact": validation.get("artifact"), "geometry": geometry}) if bool(packet.get("dry_run")): result = { "ok": True, @@ -1008,6 +1131,7 @@ def attach_chatops_artifact_with_local_operator(root: str | Path | None, packet: "operation": operation, "artifact": validation.get("artifact"), "target_center": center, + "geometry": geometry, "operator_status": status, "no_send_click_performed": True, } @@ -1060,6 +1184,7 @@ def attach_chatops_artifact_with_local_operator(root: str | Path | None, packet: "operation": operation, "artifact": validation.get("artifact"), "target_center": center, + "geometry": geometry, "active_window_before": before_title, "active_window_after_click": picker_title, "command_results": command_results, diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 9213c25a..70769fed 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -153,6 +153,10 @@ The Artifacts tab includes the first guarded file lane: - `Attachables`: lists files the daemon considers safe to present for browser attachment from bounded package/inbox roots. +- `Preview Target`: draws a temporary green ring around the exact ChatGPT + attach/add-file control the extension currently sees. +- `Dry Run Attach`: prepares the selected artifact and asks the daemon to + validate target geometry/backend state without moving the pointer. - `Drop Latest`: asks Braden for approval, asks the daemon for a one-use-ish localhost download ticket, fetches the file as a browser `File`, and attempts visible `dragenter`/`dragover`/`drop` events against the ChatGPT composer. @@ -163,6 +167,10 @@ The Artifacts tab includes the first guarded file lane: fails closed if the active window is not a browser/ChatGPT surface, the attach target is stale/missing, or the file picker is not detected. +`Local Attach` performs a daemon dry run before any mouse movement. If geometry +is missing, stale, near the screen origin, outside the display, or not near the +composer, the daemon blocks with `LOCAL_OPERATOR_TARGET_GEOMETRY_INVALID`. + `Attachables` intentionally shows a compact selected-artifact summary rather than dumping the full daemon JSON. The selected artifact is the same latest candidate used by `Drop Latest` and `Local Attach`. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js index ca0c2cb2..a9250a0b 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/background.js @@ -178,18 +178,53 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { } const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ download_token: prepared.download_token, + target_kind: message.payload?.target_kind ?? "attach_button", target_rect: message.payload?.target_rect ?? null, target_screen_rect: message.payload?.target_screen_rect ?? null, + composer_rect: message.payload?.composer_rect ?? null, + viewport: message.payload?.viewport ?? null, + device_pixel_ratio: message.payload?.device_pixel_ratio ?? null, + page_url: message.payload?.page_url ?? "", + captured_at_ms: message.payload?.captured_at_ms ?? null, + selected_artifact: candidate, + dry_run: true, + active_window_required: true, + file_picker_title_check: true, + send_after_attach: false + })); + if (!operatorResult?.ok) { + sendResponse({ + ok: false, + stage: "artifact_local_attach_dry_run", + result: { + prepared, + operator: operatorResult + } + }); + return; + } + const attachResult = await postJson("/operator/attach-artifact", approvedPayload({ + download_token: prepared.download_token, + target_kind: message.payload?.target_kind ?? "attach_button", + target_rect: message.payload?.target_rect ?? null, + target_screen_rect: message.payload?.target_screen_rect ?? null, + composer_rect: message.payload?.composer_rect ?? null, + viewport: message.payload?.viewport ?? null, + device_pixel_ratio: message.payload?.device_pixel_ratio ?? null, + page_url: message.payload?.page_url ?? "", + captured_at_ms: message.payload?.captured_at_ms ?? null, + selected_artifact: candidate, active_window_required: true, file_picker_title_check: true, send_after_attach: false })); sendResponse({ - ok: Boolean(operatorResult?.ok), + ok: Boolean(attachResult?.ok), stage: "artifact_local_attach_latest", result: { prepared, - operator: operatorResult + dry_run: operatorResult, + operator: attachResult } }); })().catch((error) => { @@ -198,6 +233,65 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_artifact_local_attach_dry_run") { + (async () => { + const attachables = await getJson("/artifacts/attachables"); + const rows = Array.isArray(attachables?.candidates) ? attachables.candidates : []; + const candidate = rows.find((row) => row?.attachable && typeof row.path === "string"); + if (!attachables?.ok || !candidate) { + sendResponse({ + ok: false, + stage: "artifact_local_attach_dry_run", + finding: attachables?.ok ? "no_attachable_artifact" : "attachables_unavailable", + result: attachables + }); + return; + } + const approved = await requestBridgeApproval( + sender, + "local_operator_attach_artifact_dry_run", + `Dry-run local attach geometry for ${candidate.name ?? candidate.path}. This will not move the mouse or click Send.`, + "local_operator_geometry_dry_run" + ); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED", candidate }); + return; + } + const prepared = await postJson("/artifacts/prepare-upload", approvedPayload({ artifact_path: candidate.path })); + if (!prepared?.ok) { + sendResponse({ ok: false, stage: "artifact_prepare_latest", result: prepared }); + return; + } + const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ + download_token: prepared.download_token, + target_kind: message.payload?.target_kind ?? "attach_button", + target_rect: message.payload?.target_rect ?? null, + target_screen_rect: message.payload?.target_screen_rect ?? null, + composer_rect: message.payload?.composer_rect ?? null, + viewport: message.payload?.viewport ?? null, + device_pixel_ratio: message.payload?.device_pixel_ratio ?? null, + page_url: message.payload?.page_url ?? "", + captured_at_ms: message.payload?.captured_at_ms ?? null, + selected_artifact: candidate, + dry_run: true, + active_window_required: true, + file_picker_title_check: true, + send_after_attach: false + })); + sendResponse({ + ok: Boolean(operatorResult?.ok), + stage: "artifact_local_attach_dry_run", + result: { + prepared, + operator: operatorResult + } + }); + })().catch((error) => { + sendResponse({ ok: false, stage: "artifact_local_attach_dry_run_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_sandbox_diff_latest") { (async () => { const returnId = String(message.payload?.return_id ?? "").trim(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 5d1b5570..2b44d9a9 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -6,6 +6,7 @@ const PANEL_ID = "ion-chatops-bridge-panel"; const MODAL_ID = "ion-chatops-bridge-approval"; const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; + const ATTACH_PREVIEW_ID = "ion-chatops-attach-target-preview"; const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; @@ -215,11 +216,20 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp [data-ion-control-role="send_button"] { box-shadow: 0 0 0 1px rgba(251,191,36,0.42), 0 0 0 4px rgba(251,191,36,0.07) !important; } - [data-ion-control-role="source_plane"], - [data-ion-control-role="uploaded_attachment"] { - box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; - } - `; + [data-ion-control-role="source_plane"], + [data-ion-control-role="uploaded_attachment"] { + box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; + } + #${ATTACH_PREVIEW_ID} { + position: fixed; + z-index: 2147483645; + pointer-events: none; + border: 2px solid rgba(52,211,153,0.98); + border-radius: 12px; + box-shadow: 0 0 0 5px rgba(52,211,153,0.18), 0 0 28px rgba(52,211,153,0.55); + background: rgba(52,211,153,0.08); + } + `; document.documentElement.appendChild(style); } @@ -1298,11 +1308,13 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
-
- - - -
+
+ + + + + +
@@ -1397,12 +1409,18 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="artifact-attachables"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-attachables")); }); - panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { - window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); - }); - panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { - window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); - }); + panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); + }); + panel.querySelector('[data-tool="artifact-preview-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-preview-attach")); + }); + panel.querySelector('[data-tool="artifact-dry-run-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-dry-run-attach")); + }); + panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -1979,6 +1997,15 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return composer?.getBoundingClientRect() ?? null; } + function rectPayload(rect) { + return { + x: Math.round(rect.left), + y: Math.round(rect.top), + width: Math.round(rect.width), + height: Math.round(rect.height), + }; + } + function controlLabel(node) { return `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.replace(/\s+/g, " ").trim(); } @@ -1988,16 +2015,20 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; } - function findAttachControlRect() { + function findAttachControlElement() { const rect = composerRect(); const nodes = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")); - const candidate = nodes.find((node) => { + return nodes.find((node) => { if (!visibleElement(node)) return false; const label = controlLabel(node).toLowerCase(); const bounds = node.getBoundingClientRect(); const nearComposer = rect ? Math.abs(bounds.top - rect.top) < 220 || Math.abs(bounds.bottom - rect.bottom) < 220 : bounds.top > window.innerHeight * 0.45; return nearComposer && /attach|upload|file|plus|add/.test(label); - }); + }) ?? null; + } + + function findAttachControlRect() { + const candidate = findAttachControlElement(); if (!candidate) return null; const bounds = candidate.getBoundingClientRect(); const borderX = Math.max(0, (window.outerWidth - window.innerWidth) / 2); @@ -2019,6 +2050,50 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }; } + function localAttachPayload() { + const targetRect = findAttachControlRect(); + const composer = composerRect(); + if (!targetRect || !composer) return null; + return { + target_kind: "attach_button", + target_rect: targetRect, + target_screen_rect: targetRect.screen_rect, + composer_rect: rectPayload(composer), + viewport: { + width: Math.round(window.innerWidth), + height: Math.round(window.innerHeight), + }, + device_pixel_ratio: window.devicePixelRatio || 1, + page_url: window.location.href, + captured_at_ms: Date.now(), + }; + } + + function previewAttachTarget() { + ensureDomRegistryStyle(); + const target = findAttachControlElement(); + document.getElementById(ATTACH_PREVIEW_ID)?.remove(); + if (!target) { + const detail = "attach_control_not_detected\nNo target ring was drawn."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Attach target missing", detail, "error"); + return; + } + const rect = target.getBoundingClientRect(); + const overlay = document.createElement("div"); + overlay.id = ATTACH_PREVIEW_ID; + overlay.style.left = `${Math.round(rect.left - 5)}px`; + overlay.style.top = `${Math.round(rect.top - 5)}px`; + overlay.style.width = `${Math.round(rect.width + 10)}px`; + overlay.style.height = `${Math.round(rect.height + 10)}px`; + document.documentElement.appendChild(overlay); + window.setTimeout(() => overlay.remove(), 4000); + const payload = localAttachPayload(); + const detail = payload ? compactJson(payload, 1200) : "attach_target_payload_unavailable"; + setBridgeArtifactDetail(`preview_attach_target\n${detail}`); + setBridgeStatus("Attach target previewed", "Green ring marks the exact attach target. Reject Local Attach if the ring is wrong.", "success"); + } + function uploadedAttachmentCount() { const rect = composerRect(); return Array.from( @@ -2115,21 +2190,19 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } function requestArtifactLocalAttachLatest() { - const targetRect = findAttachControlRect(); + const payload = localAttachPayload(); const beforeCount = uploadedAttachmentCount(); - if (!targetRect) { - const detail = "attach_control_not_detected\nOpen ChatGPT composer and use Diagnostics to confirm ION sees the attach/add-file control."; + if (!payload) { + const detail = "attach_control_or_composer_not_detected\nUse Preview Attach Target first and confirm Diagnostics sees the attach/add-file control."; setBridgeArtifactDetail(detail); setBridgeStatus("Local attach blocked", detail, "error"); return; } - setBridgeStatus("Local attach latest", "Requesting approval for local operator artifact attachment. No Send click will occur.", "working"); + previewAttachTarget(); + setBridgeStatus("Local attach latest", "Requesting approval after local geometry capture. The daemon will dry-run before any mouse movement.", "working"); chrome.runtime.sendMessage({ type: "ion_chatops_artifact_local_attach_latest", - payload: { - target_rect: targetRect, - target_screen_rect: targetRect.screen_rect, - }, + payload, }, async (response) => { const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); setBridgeArtifactDetail(detail); @@ -2142,6 +2215,27 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); } + function requestArtifactLocalAttachDryRun() { + const payload = localAttachPayload(); + if (!payload) { + const detail = "attach_control_or_composer_not_detected\nUse Preview Attach Target and confirm the green ring is on the attach button."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Dry run blocked", detail, "error"); + return; + } + previewAttachTarget(); + setBridgeStatus("Dry run attach", "Requesting daemon geometry validation. No mouse movement will occur.", "working"); + chrome.runtime.sendMessage({ + type: "ion_chatops_artifact_local_attach_dry_run", + payload, + }, async (response) => { + const detail = response?.ok ? compactJson(response.result, 2200) : blockedDetail(response); + setBridgeArtifactDetail(detail); + setBridgeStatus(response?.ok ? "Dry run passed" : "Dry run blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult("Local attach dry run", detail); + }); + } + function actionSummary(packet) { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -2371,6 +2465,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp updateDomActionRegistry, submitActionText, refreshBridgePosition, + previewAttachTarget, + requestArtifactLocalAttachDryRun, rescan: () => { seen.clear(); return scan("manual"); @@ -2440,6 +2536,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-artifact-drop-latest", () => { requestArtifactDropLatest(); }); + window.addEventListener("ion-chatops-artifact-preview-attach", () => { + previewAttachTarget(); + }); + window.addEventListener("ion-chatops-artifact-dry-run-attach", () => { + requestArtifactLocalAttachDryRun(); + }); window.addEventListener("ion-chatops-artifact-local-attach", () => { requestArtifactLocalAttachLatest(); }); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index 2d526b90..c5772025 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -720,6 +720,8 @@ function ensurePanel(): HTMLElement {
+ +
@@ -820,6 +822,12 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="artifact-drop-latest"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-drop-latest")); }); + panel.querySelector('[data-tool="artifact-preview-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-preview-attach")); + }); + panel.querySelector('[data-tool="artifact-dry-run-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-dry-run-attach")); + }); panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); }); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts index 50c83734..8c4cdcb2 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/background.ts @@ -180,18 +180,53 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { } const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ download_token: prepared.download_token, + target_kind: message.payload?.target_kind ?? "attach_button", target_rect: message.payload?.target_rect ?? null, target_screen_rect: message.payload?.target_screen_rect ?? null, + composer_rect: message.payload?.composer_rect ?? null, + viewport: message.payload?.viewport ?? null, + device_pixel_ratio: message.payload?.device_pixel_ratio ?? null, + page_url: message.payload?.page_url ?? "", + captured_at_ms: message.payload?.captured_at_ms ?? null, + selected_artifact: candidate, + dry_run: true, + active_window_required: true, + file_picker_title_check: true, + send_after_attach: false + })); + if (!operatorResult?.ok) { + sendResponse({ + ok: false, + stage: "artifact_local_attach_dry_run", + result: { + prepared, + operator: operatorResult + } + }); + return; + } + const attachResult = await postJson("/operator/attach-artifact", approvedPayload({ + download_token: prepared.download_token, + target_kind: message.payload?.target_kind ?? "attach_button", + target_rect: message.payload?.target_rect ?? null, + target_screen_rect: message.payload?.target_screen_rect ?? null, + composer_rect: message.payload?.composer_rect ?? null, + viewport: message.payload?.viewport ?? null, + device_pixel_ratio: message.payload?.device_pixel_ratio ?? null, + page_url: message.payload?.page_url ?? "", + captured_at_ms: message.payload?.captured_at_ms ?? null, + selected_artifact: candidate, active_window_required: true, file_picker_title_check: true, send_after_attach: false })); sendResponse({ - ok: Boolean(operatorResult?.ok), + ok: Boolean(attachResult?.ok), stage: "artifact_local_attach_latest", result: { prepared, - operator: operatorResult + dry_run: operatorResult, + operator: attachResult } }); })().catch((error: Error) => { @@ -200,6 +235,65 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { return true; } + if (message.type === "ion_chatops_artifact_local_attach_dry_run") { + (async () => { + const attachables = await getJson("/artifacts/attachables"); + const rows = Array.isArray(attachables?.candidates) ? attachables.candidates : []; + const candidate = rows.find((row: any) => row?.attachable && typeof row.path === "string"); + if (!attachables?.ok || !candidate) { + sendResponse({ + ok: false, + stage: "artifact_local_attach_dry_run", + finding: attachables?.ok ? "no_attachable_artifact" : "attachables_unavailable", + result: attachables + }); + return; + } + const approved = await requestBridgeApproval( + sender, + "local_operator_attach_artifact_dry_run", + `Dry-run local attach geometry for ${candidate.name ?? candidate.path}. This will not move the mouse or click Send.`, + "local_operator_geometry_dry_run" + ); + if (!approved) { + sendResponse({ ok: false, stage: "approval", finding: "USER_APPROVAL_REJECTED", candidate }); + return; + } + const prepared = await postJson("/artifacts/prepare-upload", approvedPayload({ artifact_path: candidate.path })); + if (!prepared?.ok) { + sendResponse({ ok: false, stage: "artifact_prepare_latest", result: prepared }); + return; + } + const operatorResult = await postJson("/operator/attach-artifact", approvedPayload({ + download_token: prepared.download_token, + target_kind: message.payload?.target_kind ?? "attach_button", + target_rect: message.payload?.target_rect ?? null, + target_screen_rect: message.payload?.target_screen_rect ?? null, + composer_rect: message.payload?.composer_rect ?? null, + viewport: message.payload?.viewport ?? null, + device_pixel_ratio: message.payload?.device_pixel_ratio ?? null, + page_url: message.payload?.page_url ?? "", + captured_at_ms: message.payload?.captured_at_ms ?? null, + selected_artifact: candidate, + dry_run: true, + active_window_required: true, + file_picker_title_check: true, + send_after_attach: false + })); + sendResponse({ + ok: Boolean(operatorResult?.ok), + stage: "artifact_local_attach_dry_run", + result: { + prepared, + operator: operatorResult + } + }); + })().catch((error: Error) => { + sendResponse({ ok: false, stage: "artifact_local_attach_dry_run_exception", error: error.message }); + }); + return true; + } + if (message.type === "ion_chatops_sandbox_diff_latest") { (async () => { const returnId = String(message.payload?.return_id ?? "").trim(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index 2c3b0db4..f969c8b1 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -20,6 +20,7 @@ const reportedBlockedActionIds = new Set(); const PANEL_ID = "ion-chatops-bridge-panel"; const MODAL_ID = "ion-chatops-bridge-approval"; const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; +const ATTACH_PREVIEW_ID = "ion-chatops-attach-target-preview"; const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; @@ -219,6 +220,15 @@ function ensureDomRegistryStyle(): void { [data-ion-control-role="uploaded_attachment"] { box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; } + #${ATTACH_PREVIEW_ID} { + position: fixed; + z-index: 2147483645; + pointer-events: none; + border: 2px solid rgba(52,211,153,0.98); + border-radius: 12px; + box-shadow: 0 0 0 5px rgba(52,211,153,0.18), 0 0 28px rgba(52,211,153,0.55); + background: rgba(52,211,153,0.08); + } `; document.documentElement.appendChild(style); } @@ -803,6 +813,15 @@ function composerRect(): DOMRect | null { return composer?.getBoundingClientRect() ?? null; } +function rectPayload(rect: DOMRect): Record { + return { + x: Math.round(rect.left), + y: Math.round(rect.top), + width: Math.round(rect.width), + height: Math.round(rect.height), + }; +} + function controlLabel(node: HTMLElement): string { return `${node.getAttribute("aria-label") ?? ""} ${node.getAttribute("data-testid") ?? ""} ${node.textContent ?? ""}`.replace(/\s+/g, " ").trim(); } @@ -812,16 +831,20 @@ function visibleElement(node: HTMLElement): boolean { return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; } -function findAttachControlRect(): Record | null { +function findAttachControlElement(): HTMLElement | null { const rect = composerRect(); const nodes = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")); - const candidate = nodes.find((node) => { + return nodes.find((node) => { if (!visibleElement(node)) return false; const label = controlLabel(node).toLowerCase(); const bounds = node.getBoundingClientRect(); const nearComposer = rect ? Math.abs(bounds.top - rect.top) < 220 || Math.abs(bounds.bottom - rect.bottom) < 220 : bounds.top > window.innerHeight * 0.45; return nearComposer && /attach|upload|file|plus|add/.test(label); - }); + }) ?? null; +} + +function findAttachControlRect(): Record | null { + const candidate = findAttachControlElement(); if (!candidate) return null; const bounds = candidate.getBoundingClientRect(); const borderX = Math.max(0, (window.outerWidth - window.innerWidth) / 2); @@ -843,6 +866,50 @@ function findAttachControlRect(): Record | null { }; } +function localAttachPayload(): Record | null { + const targetRect = findAttachControlRect(); + const composer = composerRect(); + if (!targetRect || !composer) return null; + return { + target_kind: "attach_button", + target_rect: targetRect, + target_screen_rect: targetRect["screen_rect"], + composer_rect: rectPayload(composer), + viewport: { + width: Math.round(window.innerWidth), + height: Math.round(window.innerHeight), + }, + device_pixel_ratio: window.devicePixelRatio || 1, + page_url: window.location.href, + captured_at_ms: Date.now(), + }; +} + +function previewAttachTarget(): void { + ensureDomRegistryStyle(); + const target = findAttachControlElement(); + document.getElementById(ATTACH_PREVIEW_ID)?.remove(); + if (!target) { + const detail = "attach_control_not_detected\nNo target ring was drawn."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Attach target missing", detail, "error"); + return; + } + const rect = target.getBoundingClientRect(); + const overlay = document.createElement("div"); + overlay.id = ATTACH_PREVIEW_ID; + overlay.style.left = `${Math.round(rect.left - 5)}px`; + overlay.style.top = `${Math.round(rect.top - 5)}px`; + overlay.style.width = `${Math.round(rect.width + 10)}px`; + overlay.style.height = `${Math.round(rect.height + 10)}px`; + document.documentElement.appendChild(overlay); + window.setTimeout(() => overlay.remove(), 4000); + const payload = localAttachPayload(); + const detail = payload ? compactJson(payload, 1200) : "attach_target_payload_unavailable"; + setBridgeArtifactDetail(`preview_attach_target\n${detail}`); + setBridgeStatus("Attach target previewed", "Green ring marks the exact attach target. Reject Local Attach if the ring is wrong.", "success"); +} + function uploadedAttachmentCount(): number { const rect = composerRect(); return Array.from( @@ -939,21 +1006,19 @@ function requestArtifactDropLatest(): void { } function requestArtifactLocalAttachLatest(): void { - const targetRect = findAttachControlRect(); + const payload = localAttachPayload(); const beforeCount = uploadedAttachmentCount(); - if (!targetRect) { - const detail = "attach_control_not_detected\nOpen ChatGPT composer and use Diagnostics to confirm ION sees the attach/add-file control."; + if (!payload) { + const detail = "attach_control_or_composer_not_detected\nUse Preview Attach Target first and confirm Diagnostics sees the attach/add-file control."; setBridgeArtifactDetail(detail); setBridgeStatus("Local attach blocked", detail, "error"); return; } - setBridgeStatus("Local attach latest", "Requesting approval for local operator artifact attachment. No Send click will occur.", "working"); + previewAttachTarget(); + setBridgeStatus("Local attach latest", "Requesting approval after local geometry capture. The daemon will dry-run before any mouse movement.", "working"); chrome.runtime.sendMessage({ type: "ion_chatops_artifact_local_attach_latest", - payload: { - target_rect: targetRect, - target_screen_rect: targetRect["screen_rect"], - }, + payload, }, async (response) => { const detail = response?.ok ? compactJson(response.result) : blockedDetail(response); setBridgeArtifactDetail(detail); @@ -966,6 +1031,27 @@ function requestArtifactLocalAttachLatest(): void { }); } +function requestArtifactLocalAttachDryRun(): void { + const payload = localAttachPayload(); + if (!payload) { + const detail = "attach_control_or_composer_not_detected\nUse Preview Attach Target and confirm the green ring is on the attach button."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Dry run blocked", detail, "error"); + return; + } + previewAttachTarget(); + setBridgeStatus("Dry run attach", "Requesting daemon geometry validation. No mouse movement will occur.", "working"); + chrome.runtime.sendMessage({ + type: "ion_chatops_artifact_local_attach_dry_run", + payload, + }, async (response) => { + const detail = response?.ok ? compactJson(response.result, 2200) : blockedDetail(response); + setBridgeArtifactDetail(detail); + setBridgeStatus(response?.ok ? "Dry run passed" : "Dry run blocked", detail.split("\n")[0] ?? "", response?.ok ? "success" : "error"); + if (response?.ok) await copyBridgeResult("Local attach dry run", detail); + }); +} + function actionSummary(packet: ReturnType): string { if (!packet) return "packet_parse_failed"; return JSON.stringify({ @@ -1195,6 +1281,8 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { updateDomActionRegistry, submitActionText, refreshBridgePosition, + previewAttachTarget, + requestArtifactLocalAttachDryRun, rescan: () => { seen.clear(); return scan("manual"); @@ -1264,6 +1352,12 @@ window.addEventListener("ion-chatops-artifact-attachables", () => { window.addEventListener("ion-chatops-artifact-drop-latest", () => { requestArtifactDropLatest(); }); +window.addEventListener("ion-chatops-artifact-preview-attach", () => { + previewAttachTarget(); +}); +window.addEventListener("ion-chatops-artifact-dry-run-attach", () => { + requestArtifactLocalAttachDryRun(); +}); window.addEventListener("ion-chatops-artifact-local-attach", () => { requestArtifactLocalAttachLatest(); }); diff --git a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md index 108f83c1..67b25bef 100644 --- a/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md +++ b/ION/09_integrations/local_daemon/ion_chatops_bridge/README.md @@ -60,3 +60,8 @@ to select the exact approved artifact in the OS file picker. Screen coordinates from the extension are preferred for the desktop click; viewport coordinates are retained as evidence. The browser extension still verifies whether an upload chip appears. No Send click is performed. + +Before a real attach, the extension calls the same endpoint with `dry_run: true`. +The daemon validates target kind, viewport rect, screen rect, composer proximity, +ChatGPT page URL, capture freshness, and display bounds. Geometry failures return +`LOCAL_OPERATOR_TARGET_GEOMETRY_INVALID` and do not move the pointer. diff --git a/ION/tests/test_kernel_ion_chatops_bridge_policy.py b/ION/tests/test_kernel_ion_chatops_bridge_policy.py index 13fcded6..f7bcec50 100644 --- a/ION/tests/test_kernel_ion_chatops_bridge_policy.py +++ b/ION/tests/test_kernel_ion_chatops_bridge_policy.py @@ -1,4 +1,5 @@ import json +import time from pathlib import Path from kernel.ion_chatops_bridge import ( @@ -441,8 +442,27 @@ def test_chatops_local_operator_attachment_requires_approval_and_blocks_send_cli _approved({ "download_token": prepared["download_token"], "dry_run": True, + "target_kind": "attach_button", "target_rect": {"x": 100, "y": 200, "width": 40, "height": 20}, "target_screen_rect": {"x": 300, "y": 400, "width": 60, "height": 30}, + "composer_rect": {"x": 80, "y": 180, "width": 400, "height": 80}, + "viewport": {"width": 1200, "height": 900}, + "page_url": "https://chatgpt.com/c/test", + "captured_at_ms": int(time.time() * 1000), + }), + ) + invalid_geometry = attach_chatops_artifact_with_local_operator( + tmp_path, + _approved({ + "download_token": prepared["download_token"], + "dry_run": True, + "target_kind": "attach_button", + "target_rect": {"x": 0, "y": 0, "width": 1, "height": 1}, + "target_screen_rect": {"x": 0, "y": 0, "width": 1, "height": 1}, + "composer_rect": {"x": 800, "y": 800, "width": 200, "height": 80}, + "viewport": {"width": 1200, "height": 900}, + "page_url": "https://chatgpt.com/c/test", + "captured_at_ms": int(time.time() * 1000), }), ) status = build_chatops_local_operator_status(tmp_path) @@ -455,7 +475,10 @@ def test_chatops_local_operator_attachment_requires_approval_and_blocks_send_cli assert dry_run["dry_run"] is True assert dry_run["no_send_click_performed"] is True assert dry_run["target_center"] == (330, 415) + assert dry_run["geometry"]["ok"] is True assert (tmp_path / dry_run["receipt_path"]).exists() + assert invalid_geometry["ok"] is False + assert invalid_geometry["finding"] == "LOCAL_OPERATOR_TARGET_GEOMETRY_INVALID" assert status["send_click_authority"] is False From 24edd8c10ad4a482c24f094f08b8066716d97ea1 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 16:18:56 -0400 Subject: [PATCH 22/30] Add ChatOps attach target calibration --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 38 +++ .../ion_chatops_bridge/README.md | 34 +- .../ion_chatops_bridge/dist/content.js | 307 +++++++++++++++++- .../ion_chatops_bridge/src/approval_ui.ts | 121 ++++++- .../ion_chatops_bridge/src/content.ts | 195 ++++++++++- .../tests/live_smoke_parser_simulation.js | 49 ++- 6 files changed, 726 insertions(+), 18 deletions(-) diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md index 18184dd6..794bd2f3 100644 --- a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -109,6 +109,7 @@ Permitted mechanisms: Required controls: - exact target preview, +- operator target calibration when heuristic detection is wrong, - selected file manifest and sha256, - Braden approval, - stale-target re-check, @@ -145,6 +146,43 @@ captured_at_ms: current capture timestamp The daemon must reject missing, stale, out-of-viewport, out-of-display, near-origin, or not-near-composer geometry before any desktop action. +## Calibrated Attach Target + +The browser extension must not depend solely on heuristic DOM discovery for the +attach/add-file button. If the preview ring appears on the wrong page element, +the operator may arm a picker, click the real ChatGPT attach/add-file control, +and store a local selector for that element. + +Calibration requirements: + +```text +Settings -> Pick Attach Target +-> next non-ION page click is captured +-> selector, label, and rect are shown +-> Preview Target must ring that selected control +``` + +The selector is browser-local state, not ION authority: + +```text +ION_CHATOPS_ATTACH_TARGET_SELECTOR +``` + +If a saved selector is present but the element is hidden, missing, or no longer +near the composer shell, the extension must fail closed and request +re-calibration. It must not silently fall back to a broad heuristic and click an +unrelated page control. + +Layout tuning for the composer cockpit is also browser-local state: + +```text +ION_CHATOPS_TAB_LIFT_PX +ION_CHATOPS_DRAWER_MAX_PX +``` + +These settings may adjust visual placement only. They do not expand file, +daemon, Codex, send-click, or git authority. + ## Non-Authority This protocol does not grant: diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 70769fed..2c050809 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -13,7 +13,7 @@ MVP behavior: - fetch a compact Sev carrier onboarding/context brief from the local daemon and paste it into ChatGPT; - render composer-attached tabs and an upward drawer for Status, Action, Agent, - Packages, Sandbox, Automation, Artifacts, Diagnostics, and Log views; + Packages, Sandbox, Automation, Artifacts, Settings, Diagnostics, and Log views; - anchor composer tabs to the full visible composer shell, including uploaded image/file thumbnails when ChatGPT expands the composer; - show subtle visual capture borders for composer input, attach/send/voice @@ -28,6 +28,10 @@ MVP behavior: Codex review queueing through the sandbox return intake owner; - list attachable local package/inbox artifacts and request approval-gated browser drop tickets from the local daemon; +- calibrate the ChatGPT attach/add-file target by letting Braden pick the + exact page element once, then using that saved selector before heuristics; +- tune composer tab lift and drawer height from the Settings tab without a code + patch; - attempt a visible ChatGPT drag/drop for an approved artifact without clicking Send; - request approval-gated local operator attachment of an approved artifact @@ -171,6 +175,34 @@ The Artifacts tab includes the first guarded file lane: is missing, stale, near the screen origin, outside the display, or not near the composer, the daemon blocks with `LOCAL_OPERATOR_TARGET_GEOMETRY_INVALID`. +If `Preview Target` rings the wrong page element, use: + +```text +Settings -> Pick Attach Target +``` + +Then click ChatGPT's real attach/add-file button once. The extension stores a +selector under `ION_CHATOPS_ATTACH_TARGET_SELECTOR` in page `localStorage`. +After calibration, `Preview Target`, `Dry Run Attach`, and `Local Attach` use +that saved target first. If the saved target disappears or is no longer near +the composer, attach automation fails closed and asks for re-calibration instead +of falling back to a random visible control. + +The Settings tab also exposes lightweight visual tuning: + +```text +Tabs Up / Tabs Down +Drawer Taller / Drawer Shorter +Reset Layout +``` + +These write only local browser settings: + +```text +ION_CHATOPS_TAB_LIFT_PX +ION_CHATOPS_DRAWER_MAX_PX +``` + `Attachables` intentionally shows a compact selected-artifact summary rather than dumping the full daemon JSON. The selected artifact is the same latest candidate used by `Drop Latest` and `Local Attach`. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 2b44d9a9..3adf1057 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -8,6 +8,7 @@ const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const ATTACH_PREVIEW_ID = "ion-chatops-attach-target-preview"; const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; + const ATTACH_TARGET_SELECTOR_KEY = "ION_CHATOPS_ATTACH_TARGET_SELECTOR"; const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; const AUTO_SCAN_SELECTORS = [ @@ -42,6 +43,8 @@ const PANEL_MIN_WIDTH = 320; const PANEL_TINY_WIDTH = 230; const COMPOSER_PANEL_MAX_WIDTH = 920; + const TAB_LIFT_KEY = "ION_CHATOPS_TAB_LIFT_PX"; + const DRAWER_MAX_KEY = "ION_CHATOPS_DRAWER_MAX_PX"; const bridgeState = { title: "Monitoring ChatGPT", detail: "Waiting for ion_action YAML blocks.", @@ -52,6 +55,7 @@ sandbox: "No ChatGPT sandbox returns have been requested yet.", automation: "Automation controls are staged only. This packet does not execute macros.", artifacts: "Artifact detection is staged only. No upload or local file movement occurs in this shell slice.", + settings: "No local calibration has been changed in this session.", diagnostics: "Normal carrier flow: Sev emits an ion_action YAML block in ChatGPT, the extension detects it, Braden approves it, the local daemon records/executes it, and ION writes a receipt.\n\nThe buttons below are local diagnostics only. They fabricate known-good test actions so the extension/daemon path can be checked without waiting on ChatGPT to emit YAML.", tools: "Daemon: http://127.0.0.1:8767\nUse Rescan after ChatGPT finishes rendering a YAML block.", logs: [], @@ -815,7 +819,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp backdrop-filter: blur(14px); margin: 0; padding: 10px 10px 11px; - max-height: min(38vh, 360px); + max-height: min(38vh, var(--ion-chatops-drawer-max-px, 360px)); overflow: auto; pointer-events: auto; } @@ -1010,6 +1014,71 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return panel.querySelector(".ion-composer-cockpit"); } + function readNumberSetting(key, fallback, min, max) { + try { + const raw = window.localStorage?.getItem(key); + const value = raw === null || raw === undefined ? Number.NaN : Number.parseInt(raw, 10); + if (!Number.isFinite(value)) return fallback; + return Math.max(min, Math.min(max, value)); + } catch (_error) { + return fallback; + } + } + + function writeNumberSetting(key, value, min, max) { + const bounded = Math.max(min, Math.min(max, Math.round(value))); + try { + window.localStorage?.setItem(key, String(bounded)); + } catch (_error) { + } + return bounded; + } + + function attachTargetSelector() { + try { + return String(window.localStorage?.getItem(ATTACH_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } + } + + function settingsSummary() { + const selector = attachTargetSelector(); + return [ + `attach_target: ${selector || "not calibrated"}`, + `tab_lift_px: ${readNumberSetting(TAB_LIFT_KEY, 2, -24, 48)}`, + `drawer_max_px: ${readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680)}`, + "", + "Use Pick Attach Target, then click ChatGPT's real attach/add-file button once.", + "Local Attach should only be used after Preview Target rings the correct button and Dry Run passes.", + ].join("\n"); + } + + function adjustTabLift(delta) { + const next = writeNumberSetting(TAB_LIFT_KEY, readNumberSetting(TAB_LIFT_KEY, 2, -24, 48) + delta, -24, 48); + bridgeState.settings = `tab_lift_px set to ${next}`; + appendBridgeLog(`Layout adjusted: tab_lift_px=${next}`); + renderPanel(); + } + + function adjustDrawerMax(delta) { + const next = writeNumberSetting(DRAWER_MAX_KEY, readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680) + delta, 220, 680); + bridgeState.settings = `drawer_max_px set to ${next}`; + appendBridgeLog(`Layout adjusted: drawer_max_px=${next}`); + renderPanel(); + } + + function resetLayoutSettings() { + try { + window.localStorage?.removeItem(TAB_LIFT_KEY); + window.localStorage?.removeItem(DRAWER_MAX_KEY); + } catch (_error) { + } + bridgeState.settings = "Layout tuning reset to defaults."; + appendBridgeLog("Layout tuning reset"); + renderPanel(); + } + function topBarGeometry() { const left = Math.ceil(detectLeftBoundary() + TOP_BAR_GAP); const right = Math.floor(detectRightBoundary() - TOP_BAR_GAP); @@ -1233,7 +1302,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const left = Math.max(margin, Math.round(rect.left)); const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); const width = available; - const bottom = Math.max(4, Math.round(viewport - rect.top + 2)); + const tabLift = readNumberSetting(TAB_LIFT_KEY, 2, -24, 48); + const drawerMax = readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680); + const bottom = Math.max(4, Math.round(viewport - rect.top + tabLift)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "composer"; @@ -1247,6 +1318,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp cockpit.style.width = `${width}px`; cockpit.style.maxWidth = `${available}px`; } + if (typeof panel.style.setProperty === "function") { + panel.style.setProperty("--ion-chatops-drawer-max-px", `${drawerMax}px`); + } positionApprovalModal(); return true; } @@ -1316,6 +1390,18 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+
+
+
+ + + + + + + +
+
@@ -1333,6 +1419,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp +
@@ -1421,6 +1508,27 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); }); + panel.querySelector('[data-tool="settings-pick-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-pick-attach")); + }); + panel.querySelector('[data-tool="settings-clear-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-clear-attach")); + }); + panel.querySelector('[data-tool="settings-tabs-up"]')?.addEventListener("click", () => { + adjustTabLift(4); + }); + panel.querySelector('[data-tool="settings-tabs-down"]')?.addEventListener("click", () => { + adjustTabLift(-4); + }); + panel.querySelector('[data-tool="settings-drawer-taller"]')?.addEventListener("click", () => { + adjustDrawerMax(40); + }); + panel.querySelector('[data-tool="settings-drawer-shorter"]')?.addEventListener("click", () => { + adjustDrawerMax(-40); + }); + panel.querySelector('[data-tool="settings-layout-reset"]')?.addEventListener("click", () => { + resetLayoutSettings(); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -1476,6 +1584,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp const sandboxNode = panel.querySelector('[data-field="sandbox"]'); const automationNode = panel.querySelector('[data-field="automation"]'); const artifactsNode = panel.querySelector('[data-field="artifacts"]'); + const settingsNode = panel.querySelector('[data-field="settings"]'); const diagnosticsNode = panel.querySelector('[data-field="diagnostics"]'); const toolsNode = panel.querySelector('[data-field="tools"]'); if (statusNode) statusNode.textContent = bridgeState.detail; @@ -1485,6 +1594,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp if (sandboxNode) sandboxNode.textContent = bridgeState.sandbox; if (automationNode) automationNode.textContent = bridgeState.automation; if (artifactsNode) artifactsNode.textContent = bridgeState.artifacts; + if (settingsNode) settingsNode.textContent = `${bridgeState.settings}\n\n${settingsSummary()}`; if (diagnosticsNode) diagnosticsNode.textContent = `${bridgeState.anchor.detail}\n\n${bridgeState.diagnostics}`; if (toolsNode) { toolsNode.textContent = `${bridgeState.tools}\n\nRecent:\n${bridgeState.logs.join("\n") || "No events yet."}`; @@ -1529,6 +1639,11 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp renderPanel(); } + function setBridgeSettingsDetail(detail) { + bridgeState.settings = detail; + renderPanel(); + } + function setBridgeDiagnosticsDetail(detail) { bridgeState.diagnostics = detail; renderPanel(); @@ -1997,6 +2112,30 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return composer?.getBoundingClientRect() ?? null; } + function composerShellRect() { + const composer = findComposer(); + if (!composer) return null; + let best = composer; + let current = composer; + let depth = 0; + while (current?.parentElement && depth < 10) { + current = current.parentElement; + depth += 1; + if (isBridgeElement(current)) break; + if (!visibleElement(current)) continue; + const rect = current.getBoundingClientRect(); + const lower = rect.bottom > window.innerHeight * 0.58 && rect.top > window.innerHeight * 0.22; + const plausibleWidth = rect.width >= Math.min(320, window.innerWidth * 0.40) && rect.width <= window.innerWidth * 0.92; + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(430, window.innerHeight * 0.50); + if (!lower || !plausibleWidth || !plausibleHeight) continue; + const buttons = current.querySelectorAll("button, [role='button'], input[type='file']").length; + if (buttons >= 2 || /form/i.test(current.tagName) || String(current.getAttribute("data-testid") ?? "").toLowerCase().includes("composer")) { + best = current; + } + } + return best?.getBoundingClientRect() ?? null; + } + function rectPayload(rect) { return { x: Math.round(rect.left), @@ -2015,15 +2154,107 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; } + function cssEscape(value) { + const css = window.CSS; + if (typeof css?.escape === "function") return css.escape(value); + return value.replace(/["\\#.;:[\]()>+~*=\s]/g, "\\$&"); + } + + function cssString(value) { + return value.replace(/\\/g, "\\\\").replace(/"/g, '\\"'); + } + + function storedAttachSelector() { + try { + return String(window.localStorage?.getItem(ATTACH_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } + } + + function elementWithinComposerBand(node, rect) { + const bounds = node.getBoundingClientRect(); + if (!rect) return bounds.top > window.innerHeight * 0.45; + const centerX = bounds.left + bounds.width / 2; + const centerY = bounds.top + bounds.height / 2; + const xMatch = centerX >= rect.left - 110 && centerX <= rect.right + 110; + const yMatch = centerY >= rect.top - 260 && centerY <= rect.bottom + 160; + return xMatch && yMatch; + } + + function selectorForElement(node) { + const id = node.id?.trim(); + if (id) return `#${cssEscape(id)}`; + const tag = node.tagName.toLowerCase(); + const dataTestId = node.getAttribute("data-testid")?.trim(); + if (dataTestId) return `${tag}[data-testid="${cssString(dataTestId)}"]`; + const aria = node.getAttribute("aria-label")?.trim(); + if (aria) return `${tag}[aria-label="${cssString(aria)}"]`; + const title = node.getAttribute("title")?.trim(); + if (title) return `${tag}[title="${cssString(title)}"]`; + const parts = []; + let current = node; + let depth = 0; + while (current && current.nodeType === Node.ELEMENT_NODE && depth < 5 && !isBridgeElement(current)) { + const parent = current.parentElement; + let part = current.tagName.toLowerCase(); + if (parent) { + const siblings = Array.from(parent.children).filter((sibling) => sibling.tagName === current?.tagName); + if (siblings.length > 1) part += `:nth-of-type(${siblings.indexOf(current) + 1})`; + } + parts.unshift(part); + current = parent; + depth += 1; + } + return parts.join(" > "); + } + + function attachCandidateFromEventTarget(target) { + if (!(target instanceof Element)) return null; + if (isBridgeElement(target)) return null; + const candidate = target.closest("button, [role='button'], input[type='file'], label, [aria-label], [data-testid]"); + if (candidate && !isBridgeElement(candidate)) return candidate; + return target; + } + + function calibratedAttachControlElement(rect) { + const selector = storedAttachSelector(); + if (!selector) return null; + let node = null; + try { + node = document.querySelector(selector); + } catch (_error) { + setBridgeArtifactDetail(`calibrated_attach_selector_invalid\nselector: ${selector}`); + return null; + } + if (!node || !visibleElement(node)) { + setBridgeArtifactDetail(`calibrated_attach_target_missing_or_hidden\nselector: ${selector}`); + return null; + } + if (!elementWithinComposerBand(node, rect)) { + const bounds = node.getBoundingClientRect(); + setBridgeArtifactDetail([ + "calibrated_attach_target_not_near_composer", + `selector: ${selector}`, + `target_rect: ${JSON.stringify(rectPayload(bounds))}`, + `composer_rect: ${rect ? JSON.stringify(rectPayload(rect)) : "missing"}`, + "Use Settings -> Pick Attach Target to re-calibrate.", + ].join("\n")); + return null; + } + return node; + } + function findAttachControlElement() { - const rect = composerRect(); + const rect = composerShellRect() ?? composerRect(); + const calibrated = calibratedAttachControlElement(rect); + if (calibrated) return calibrated; + if (storedAttachSelector()) return null; const nodes = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")); return nodes.find((node) => { if (!visibleElement(node)) return false; const label = controlLabel(node).toLowerCase(); - const bounds = node.getBoundingClientRect(); - const nearComposer = rect ? Math.abs(bounds.top - rect.top) < 220 || Math.abs(bounds.bottom - rect.bottom) < 220 : bounds.top > window.innerHeight * 0.45; - return nearComposer && /attach|upload|file|plus|add/.test(label); + return elementWithinComposerBand(node, rect) && /attach|upload|file|plus|add/.test(label); }) ?? null; } @@ -2052,7 +2283,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp function localAttachPayload() { const targetRect = findAttachControlRect(); - const composer = composerRect(); + const composer = composerShellRect() ?? composerRect(); if (!targetRect || !composer) return null; return { target_kind: "attach_button", @@ -2069,12 +2300,64 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }; } + function beginAttachTargetPicker() { + setBridgeStatus("Pick attach target", "Click ChatGPT's real attach/add-file button. The next page click will be captured.", "working"); + setBridgeSettingsDetail("Attach target picker armed. Click the ChatGPT attach/add-file button, not the ION panel."); + const handler = (event) => { + const candidate = attachCandidateFromEventTarget(event.target); + if (!candidate) { + setBridgeSettingsDetail("Attach target pick ignored because the click was inside ION UI or not an element."); + return; + } + event.preventDefault(); + event.stopPropagation(); + event.stopImmediatePropagation(); + document.removeEventListener("click", handler, true); + const selector = selectorForElement(candidate); + try { + window.localStorage?.setItem(ATTACH_TARGET_SELECTOR_KEY, selector); + } catch (_error) { + setBridgeSettingsDetail("Attach target could not be saved to localStorage."); + setBridgeStatus("Attach target not saved", "localStorage write failed.", "error"); + return; + } + const detail = [ + "attach_target_calibrated", + `selector: ${selector}`, + `label: ${controlLabel(candidate) || candidate.tagName.toLowerCase()}`, + `rect: ${JSON.stringify(rectPayload(candidate.getBoundingClientRect()))}`, + ].join("\n"); + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Attach target calibrated", "Preview Target should now ring the selected button.", "success"); + previewAttachTarget(); + }; + document.addEventListener("click", handler, true); + window.setTimeout(() => { + document.removeEventListener("click", handler, true); + }, 12000); + } + + function clearAttachTargetCalibration() { + try { + window.localStorage?.removeItem(ATTACH_TARGET_SELECTOR_KEY); + } catch (_error) { + } + document.getElementById(ATTACH_PREVIEW_ID)?.remove(); + const detail = "attach_target_calibration_cleared\nPreview Target will use the guarded automatic heuristic again."; + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Attach target cleared", "Pick Attach Target can be used to bind it again.", "idle"); + } + function previewAttachTarget() { ensureDomRegistryStyle(); const target = findAttachControlElement(); document.getElementById(ATTACH_PREVIEW_ID)?.remove(); if (!target) { - const detail = "attach_control_not_detected\nNo target ring was drawn."; + const detail = storedAttachSelector() + ? "attach_control_not_detected\nSaved attach target is missing, hidden, or no longer near the composer. Use Settings -> Pick Attach Target again or Clear Attach Target." + : "attach_control_not_detected\nNo target ring was drawn. Use Settings -> Pick Attach Target if the heuristic cannot find the attach/add-file button."; setBridgeArtifactDetail(detail); setBridgeStatus("Attach target missing", detail, "error"); return; @@ -2466,7 +2749,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp submitActionText, refreshBridgePosition, previewAttachTarget, + localAttachPayload, requestArtifactLocalAttachDryRun, + beginAttachTargetPicker, rescan: () => { seen.clear(); return scan("manual"); @@ -2545,6 +2830,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-artifact-local-attach", () => { requestArtifactLocalAttachLatest(); }); + window.addEventListener("ion-chatops-settings-pick-attach", () => { + beginAttachTargetPicker(); + }); + window.addEventListener("ion-chatops-settings-clear-attach", () => { + clearAttachTargetCalibration(); + }); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); } else { diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index c5772025..dc941a1e 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -14,6 +14,9 @@ const PANEL_PREFERRED_WIDTH = 640; const PANEL_MIN_WIDTH = 320; const PANEL_TINY_WIDTH = 230; const COMPOSER_PANEL_MAX_WIDTH = 920; +const ATTACH_TARGET_SELECTOR_KEY = "ION_CHATOPS_ATTACH_TARGET_SELECTOR"; +const TAB_LIFT_KEY = "ION_CHATOPS_TAB_LIFT_PX"; +const DRAWER_MAX_KEY = "ION_CHATOPS_DRAWER_MAX_PX"; type AnchorInfo = { mode: "composer" | "topbar_fallback"; @@ -35,6 +38,7 @@ const bridgeState = { sandbox: "No ChatGPT sandbox returns have been requested yet.", automation: "Automation controls are staged only. This packet does not execute macros.", artifacts: "Artifact detection is staged only. No upload or local file movement occurs in this shell slice.", + settings: "No local calibration has been changed in this session.", diagnostics: "Normal carrier flow: Sev emits an ion_action YAML block in ChatGPT, the extension detects it, Braden approves it, the local daemon records/executes it, and ION writes a receipt.\n\nThe buttons below are local diagnostics only. They fabricate known-good test actions so the extension/daemon path can be checked without waiting on ChatGPT to emit YAML.", tools: "Daemon: http://127.0.0.1:8767\nUse Rescan after ChatGPT finishes rendering a YAML block.", @@ -224,7 +228,7 @@ function ensureStyle(): void { backdrop-filter: blur(14px); margin: 0; padding: 10px 10px 11px; - max-height: min(38vh, 360px); + max-height: min(38vh, var(--ion-chatops-drawer-max-px, 360px)); overflow: auto; pointer-events: auto; } @@ -419,6 +423,73 @@ function composerCockpit(panel: HTMLElement): HTMLElement | null { return panel.querySelector(".ion-composer-cockpit"); } +function readNumberSetting(key: string, fallback: number, min: number, max: number): number { + try { + const raw = window.localStorage?.getItem(key); + const value = raw === null || raw === undefined ? Number.NaN : Number.parseInt(raw, 10); + if (!Number.isFinite(value)) return fallback; + return Math.max(min, Math.min(max, value)); + } catch (_error) { + return fallback; + } +} + +function writeNumberSetting(key: string, value: number, min: number, max: number): number { + const bounded = Math.max(min, Math.min(max, Math.round(value))); + try { + window.localStorage?.setItem(key, String(bounded)); + } catch (_error) { + // Ignore storage failures; the panel will continue with defaults. + } + return bounded; +} + +function attachTargetSelector(): string { + try { + return String(window.localStorage?.getItem(ATTACH_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } +} + +function settingsSummary(): string { + const selector = attachTargetSelector(); + return [ + `attach_target: ${selector || "not calibrated"}`, + `tab_lift_px: ${readNumberSetting(TAB_LIFT_KEY, 2, -24, 48)}`, + `drawer_max_px: ${readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680)}`, + "", + "Use Pick Attach Target, then click ChatGPT's real attach/add-file button once.", + "Local Attach should only be used after Preview Target rings the correct button and Dry Run passes.", + ].join("\n"); +} + +function adjustTabLift(delta: number): void { + const next = writeNumberSetting(TAB_LIFT_KEY, readNumberSetting(TAB_LIFT_KEY, 2, -24, 48) + delta, -24, 48); + bridgeState.settings = `tab_lift_px set to ${next}`; + appendBridgeLog(`Layout adjusted: tab_lift_px=${next}`); + renderPanel(); +} + +function adjustDrawerMax(delta: number): void { + const next = writeNumberSetting(DRAWER_MAX_KEY, readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680) + delta, 220, 680); + bridgeState.settings = `drawer_max_px set to ${next}`; + appendBridgeLog(`Layout adjusted: drawer_max_px=${next}`); + renderPanel(); +} + +function resetLayoutSettings(): void { + try { + window.localStorage?.removeItem(TAB_LIFT_KEY); + window.localStorage?.removeItem(DRAWER_MAX_KEY); + } catch (_error) { + // Ignore storage failures; the panel will continue with defaults. + } + bridgeState.settings = "Layout tuning reset to defaults."; + appendBridgeLog("Layout tuning reset"); + renderPanel(); +} + function topBarGeometry() { const left = Math.ceil(detectLeftBoundary() + TOP_BAR_GAP); const right = Math.floor(detectRightBoundary() - TOP_BAR_GAP); @@ -643,7 +714,9 @@ function applyComposerLayout(panel: HTMLElement, anchor: AnchorInfo): boolean { const left = Math.max(margin, Math.round(rect.left)); const available = Math.max(PANEL_TINY_WIDTH, Math.min(Math.round(rect.width), window.innerWidth - left - margin)); const width = available; - const bottom = Math.max(4, Math.round(viewport - rect.top + 2)); + const tabLift = readNumberSetting(TAB_LIFT_KEY, 2, -24, 48); + const drawerMax = readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680); + const bottom = Math.max(4, Math.round(viewport - rect.top + tabLift)); const layout = width < PANEL_MIN_WIDTH ? "tiny" : width < 520 ? "compact" : "normal"; const cockpit = composerCockpit(panel); panel.dataset.anchorMode = "composer"; @@ -657,6 +730,9 @@ function applyComposerLayout(panel: HTMLElement, anchor: AnchorInfo): boolean { cockpit.style.width = `${width}px`; cockpit.style.maxWidth = `${available}px`; } + if (typeof panel.style.setProperty === "function") { + panel.style.setProperty("--ion-chatops-drawer-max-px", `${drawerMax}px`); + } positionApprovalModal(); return true; } @@ -726,6 +802,18 @@ function ensurePanel(): HTMLElement {
+
+
+
+ + + + + + + +
+
@@ -743,6 +831,7 @@ function ensurePanel(): HTMLElement { +
@@ -831,6 +920,27 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="artifact-local-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-local-attach")); }); + panel.querySelector('[data-tool="settings-pick-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-pick-attach")); + }); + panel.querySelector('[data-tool="settings-clear-attach"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-clear-attach")); + }); + panel.querySelector('[data-tool="settings-tabs-up"]')?.addEventListener("click", () => { + adjustTabLift(4); + }); + panel.querySelector('[data-tool="settings-tabs-down"]')?.addEventListener("click", () => { + adjustTabLift(-4); + }); + panel.querySelector('[data-tool="settings-drawer-taller"]')?.addEventListener("click", () => { + adjustDrawerMax(40); + }); + panel.querySelector('[data-tool="settings-drawer-shorter"]')?.addEventListener("click", () => { + adjustDrawerMax(-40); + }); + panel.querySelector('[data-tool="settings-layout-reset"]')?.addEventListener("click", () => { + resetLayoutSettings(); + }); panel.querySelector('[data-tool="collapse"]')?.addEventListener("click", () => { panel.dataset.expanded = "false"; renderPanel(panel); @@ -858,6 +968,7 @@ function renderPanel(panel = ensurePanel()): void { const sandboxNode = panel.querySelector('[data-field="sandbox"]'); const automationNode = panel.querySelector('[data-field="automation"]'); const artifactsNode = panel.querySelector('[data-field="artifacts"]'); + const settingsNode = panel.querySelector('[data-field="settings"]'); const diagnosticsNode = panel.querySelector('[data-field="diagnostics"]'); const toolsNode = panel.querySelector('[data-field="tools"]'); if (statusNode) statusNode.textContent = bridgeState.detail; @@ -867,6 +978,7 @@ function renderPanel(panel = ensurePanel()): void { if (sandboxNode) sandboxNode.textContent = bridgeState.sandbox; if (automationNode) automationNode.textContent = bridgeState.automation; if (artifactsNode) artifactsNode.textContent = bridgeState.artifacts; + if (settingsNode) settingsNode.textContent = `${bridgeState.settings}\n\n${settingsSummary()}`; if (diagnosticsNode) diagnosticsNode.textContent = `${bridgeState.anchor.detail}\n\n${bridgeState.diagnostics}`; if (toolsNode) toolsNode.textContent = `${bridgeState.tools}\n\nRecent:\n${bridgeState.logs.join("\n") || "No events yet."}`; } @@ -932,6 +1044,11 @@ export function setBridgeArtifactDetail(detail: string): void { renderPanel(); } +export function setBridgeSettingsDetail(detail: string): void { + bridgeState.settings = detail; + renderPanel(); +} + export function setBridgeDiagnosticsDetail(detail: string): void { bridgeState.diagnostics = detail; renderPanel(); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index f969c8b1..71de5d97 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -9,6 +9,7 @@ import { setBridgeDiagnosticsDetail, setBridgePackageDetail, setBridgeSandboxDetail, + setBridgeSettingsDetail, setBridgeStatus, } from "./approval_ui"; import { extractIonActionYaml, localValidate, parseIonActionYamlWithDiagnostics, parseStrictIonActionYaml } from "./schema"; @@ -22,6 +23,7 @@ const MODAL_ID = "ion-chatops-bridge-approval"; const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const ATTACH_PREVIEW_ID = "ion-chatops-attach-target-preview"; const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; +const ATTACH_TARGET_SELECTOR_KEY = "ION_CHATOPS_ATTACH_TARGET_SELECTOR"; const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; const AUTO_SCAN_SELECTORS = [ @@ -813,6 +815,30 @@ function composerRect(): DOMRect | null { return composer?.getBoundingClientRect() ?? null; } +function composerShellRect(): DOMRect | null { + const composer = findComposer(); + if (!composer) return null; + let best: HTMLElement | null = composer; + let current: HTMLElement | null = composer; + let depth = 0; + while (current?.parentElement && depth < 10) { + current = current.parentElement; + depth += 1; + if (isBridgeElement(current)) break; + if (!visibleElement(current)) continue; + const rect = current.getBoundingClientRect(); + const lower = rect.bottom > window.innerHeight * 0.58 && rect.top > window.innerHeight * 0.22; + const plausibleWidth = rect.width >= Math.min(320, window.innerWidth * 0.40) && rect.width <= window.innerWidth * 0.92; + const plausibleHeight = rect.height >= 36 && rect.height <= Math.max(430, window.innerHeight * 0.50); + if (!lower || !plausibleWidth || !plausibleHeight) continue; + const buttons = current.querySelectorAll("button, [role='button'], input[type='file']").length; + if (buttons >= 2 || /form/i.test(current.tagName) || String(current.getAttribute("data-testid") ?? "").toLowerCase().includes("composer")) { + best = current; + } + } + return best?.getBoundingClientRect() ?? null; +} + function rectPayload(rect: DOMRect): Record { return { x: Math.round(rect.left), @@ -831,15 +857,112 @@ function visibleElement(node: HTMLElement): boolean { return rect.width > 1 && rect.height > 1 && rect.bottom > 0 && rect.right > 0 && rect.top < window.innerHeight && rect.left < window.innerWidth; } +function isBridgeElement(element: Element): boolean { + return Boolean(element.closest(`#${PANEL_ID}`) ?? element.closest(`#${MODAL_ID}`)); +} + +function cssEscape(value: string): string { + const css = (window as unknown as { CSS?: { escape?: (input: string) => string } }).CSS; + if (typeof css?.escape === "function") return css.escape(value); + return value.replace(/["\\#.;:[\]()>+~*=\s]/g, "\\$&"); +} + +function cssString(value: string): string { + return value.replace(/\\/g, "\\\\").replace(/"/g, '\\"'); +} + +function storedAttachSelector(): string { + try { + return String(window.localStorage?.getItem(ATTACH_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } +} + +function elementWithinComposerBand(node: HTMLElement, rect: DOMRect | null): boolean { + const bounds = node.getBoundingClientRect(); + if (!rect) return bounds.top > window.innerHeight * 0.45; + const centerX = bounds.left + bounds.width / 2; + const centerY = bounds.top + bounds.height / 2; + const xMatch = centerX >= rect.left - 110 && centerX <= rect.right + 110; + const yMatch = centerY >= rect.top - 260 && centerY <= rect.bottom + 160; + return xMatch && yMatch; +} + +function selectorForElement(node: HTMLElement): string { + const id = node.id?.trim(); + if (id) return `#${cssEscape(id)}`; + const tag = node.tagName.toLowerCase(); + const dataTestId = node.getAttribute("data-testid")?.trim(); + if (dataTestId) return `${tag}[data-testid="${cssString(dataTestId)}"]`; + const aria = node.getAttribute("aria-label")?.trim(); + if (aria) return `${tag}[aria-label="${cssString(aria)}"]`; + const title = node.getAttribute("title")?.trim(); + if (title) return `${tag}[title="${cssString(title)}"]`; + + const parts: string[] = []; + let current: HTMLElement | null = node; + let depth = 0; + while (current && current.nodeType === Node.ELEMENT_NODE && depth < 5 && !isBridgeElement(current)) { + const parent = current.parentElement; + let part = current.tagName.toLowerCase(); + if (parent) { + const siblings = Array.from(parent.children).filter((sibling) => sibling.tagName === current?.tagName); + if (siblings.length > 1) part += `:nth-of-type(${siblings.indexOf(current) + 1})`; + } + parts.unshift(part); + current = parent; + depth += 1; + } + return parts.join(" > "); +} + +function attachCandidateFromEventTarget(target: EventTarget | null): HTMLElement | null { + if (!(target instanceof Element)) return null; + if (isBridgeElement(target)) return null; + const candidate = target.closest("button, [role='button'], input[type='file'], label, [aria-label], [data-testid]"); + if (candidate && !isBridgeElement(candidate)) return candidate; + return target as HTMLElement; +} + +function calibratedAttachControlElement(rect: DOMRect | null): HTMLElement | null { + const selector = storedAttachSelector(); + if (!selector) return null; + let node: HTMLElement | null = null; + try { + node = document.querySelector(selector); + } catch (_error) { + setBridgeArtifactDetail(`calibrated_attach_selector_invalid\nselector: ${selector}`); + return null; + } + if (!node || !visibleElement(node)) { + setBridgeArtifactDetail(`calibrated_attach_target_missing_or_hidden\nselector: ${selector}`); + return null; + } + if (!elementWithinComposerBand(node, rect)) { + const bounds = node.getBoundingClientRect(); + setBridgeArtifactDetail([ + "calibrated_attach_target_not_near_composer", + `selector: ${selector}`, + `target_rect: ${JSON.stringify(rectPayload(bounds))}`, + `composer_rect: ${rect ? JSON.stringify(rectPayload(rect)) : "missing"}`, + "Use Settings -> Pick Attach Target to re-calibrate.", + ].join("\n")); + return null; + } + return node; +} + function findAttachControlElement(): HTMLElement | null { - const rect = composerRect(); + const rect = composerShellRect() ?? composerRect(); + const calibrated = calibratedAttachControlElement(rect); + if (calibrated) return calibrated; + if (storedAttachSelector()) return null; const nodes = Array.from(document.querySelectorAll("button, [role='button'], input[type='file']")); return nodes.find((node) => { if (!visibleElement(node)) return false; const label = controlLabel(node).toLowerCase(); - const bounds = node.getBoundingClientRect(); - const nearComposer = rect ? Math.abs(bounds.top - rect.top) < 220 || Math.abs(bounds.bottom - rect.bottom) < 220 : bounds.top > window.innerHeight * 0.45; - return nearComposer && /attach|upload|file|plus|add/.test(label); + return elementWithinComposerBand(node, rect) && /attach|upload|file|plus|add/.test(label); }) ?? null; } @@ -868,7 +991,7 @@ function findAttachControlRect(): Record | null { function localAttachPayload(): Record | null { const targetRect = findAttachControlRect(); - const composer = composerRect(); + const composer = composerShellRect() ?? composerRect(); if (!targetRect || !composer) return null; return { target_kind: "attach_button", @@ -885,12 +1008,65 @@ function localAttachPayload(): Record | null { }; } +function beginAttachTargetPicker(): void { + setBridgeStatus("Pick attach target", "Click ChatGPT's real attach/add-file button. The next page click will be captured.", "working"); + setBridgeSettingsDetail("Attach target picker armed. Click the ChatGPT attach/add-file button, not the ION panel."); + const handler = (event: MouseEvent) => { + const candidate = attachCandidateFromEventTarget(event.target); + if (!candidate) { + setBridgeSettingsDetail("Attach target pick ignored because the click was inside ION UI or not an element."); + return; + } + event.preventDefault(); + event.stopPropagation(); + event.stopImmediatePropagation(); + document.removeEventListener("click", handler, true); + const selector = selectorForElement(candidate); + try { + window.localStorage?.setItem(ATTACH_TARGET_SELECTOR_KEY, selector); + } catch (_error) { + setBridgeSettingsDetail("Attach target could not be saved to localStorage."); + setBridgeStatus("Attach target not saved", "localStorage write failed.", "error"); + return; + } + const detail = [ + "attach_target_calibrated", + `selector: ${selector}`, + `label: ${controlLabel(candidate) || candidate.tagName.toLowerCase()}`, + `rect: ${JSON.stringify(rectPayload(candidate.getBoundingClientRect()))}`, + ].join("\n"); + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Attach target calibrated", "Preview Target should now ring the selected button.", "success"); + previewAttachTarget(); + }; + document.addEventListener("click", handler, true); + window.setTimeout(() => { + document.removeEventListener("click", handler, true); + }, 12000); +} + +function clearAttachTargetCalibration(): void { + try { + window.localStorage?.removeItem(ATTACH_TARGET_SELECTOR_KEY); + } catch (_error) { + // Ignore storage failures; the heuristic path remains available. + } + document.getElementById(ATTACH_PREVIEW_ID)?.remove(); + const detail = "attach_target_calibration_cleared\nPreview Target will use the guarded automatic heuristic again."; + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Attach target cleared", "Pick Attach Target can be used to bind it again.", "idle"); +} + function previewAttachTarget(): void { ensureDomRegistryStyle(); const target = findAttachControlElement(); document.getElementById(ATTACH_PREVIEW_ID)?.remove(); if (!target) { - const detail = "attach_control_not_detected\nNo target ring was drawn."; + const detail = storedAttachSelector() + ? "attach_control_not_detected\nSaved attach target is missing, hidden, or no longer near the composer. Use Settings -> Pick Attach Target again or Clear Attach Target." + : "attach_control_not_detected\nNo target ring was drawn. Use Settings -> Pick Attach Target if the heuristic cannot find the attach/add-file button."; setBridgeArtifactDetail(detail); setBridgeStatus("Attach target missing", detail, "error"); return; @@ -1282,6 +1458,7 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { submitActionText, refreshBridgePosition, previewAttachTarget, + localAttachPayload, requestArtifactLocalAttachDryRun, rescan: () => { seen.clear(); @@ -1361,6 +1538,12 @@ window.addEventListener("ion-chatops-artifact-dry-run-attach", () => { window.addEventListener("ion-chatops-artifact-local-attach", () => { requestArtifactLocalAttachLatest(); }); +window.addEventListener("ion-chatops-settings-pick-attach", () => { + beginAttachTargetPicker(); +}); +window.addEventListener("ion-chatops-settings-clear-attach", () => { + clearAttachTargetCalibration(); +}); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index ca6e8324..8d08074a 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -153,6 +153,7 @@ class Element { } let sent = null; +const localStore = new Map(); const documentElement = new Element("html"); const context = { console, @@ -166,7 +167,17 @@ const context = { window: { innerHeight: 1000, innerWidth: 1000, - localStorage: { getItem: () => null }, + outerHeight: 1000, + outerWidth: 1000, + screenX: 0, + screenY: 0, + devicePixelRatio: 1, + location: { href: "https://chatgpt.com/c/test" }, + localStorage: { + getItem: (key) => localStore.get(key) ?? null, + setItem: (key, value) => localStore.set(key, String(value)), + removeItem: (key) => localStore.delete(key), + }, sessionStorage: { getItem: () => null }, setTimeout(callback) { callback(); @@ -359,6 +370,42 @@ if (registryCode.dataset.ionYamlStatus !== "valid") throw new Error("DOM registr if (registryButton.dataset.ionControlRole !== "send_button") throw new Error("DOM registry did not classify send control"); if (composer.dataset.ionControlRole !== "composer_input") throw new Error("DOM registry did not classify composer input"); +const profileButton = new Element("button"); +profileButton.setAttribute("aria-label", "BB profile menu"); +profileButton.rect = { top: 930, left: 8, right: 48, bottom: 970, width: 40, height: 40 }; +const attachButton = new Element("button"); +attachButton.setAttribute("aria-label", "Attach files"); +attachButton.rect = { top: 872, left: 198, right: 238, bottom: 912, width: 40, height: 40 }; +context.document.querySelector = (selector) => (selector === "#prompt-textarea" ? composer : null); +context.document.querySelectorAll = (selector) => { + if (selector === "button, [role='button'], input[type='file']") return [profileButton, attachButton]; + return []; +}; +let attachPayload = context.window.__ION_CHATOPS_BRIDGE_DEBUG__.localAttachPayload(); +if (!attachPayload) throw new Error("local attach payload was not produced"); +if (!String(attachPayload.target_rect.label || "").includes("Attach files")) { + throw new Error("attach heuristic selected the wrong visible control"); +} +localStore.set("ION_CHATOPS_ATTACH_TARGET_SELECTOR", "button[aria-label=\"BB profile menu\"]"); +context.document.querySelector = (selector) => { + if (selector === "#prompt-textarea") return composer; + if (selector === "button[aria-label=\"BB profile menu\"]") return profileButton; + return null; +}; +attachPayload = context.window.__ION_CHATOPS_BRIDGE_DEBUG__.localAttachPayload(); +if (attachPayload) throw new Error("calibrated target outside composer band should fail closed"); +localStore.set("ION_CHATOPS_ATTACH_TARGET_SELECTOR", "button[aria-label=\"Attach files\"]"); +context.document.querySelector = (selector) => { + if (selector === "#prompt-textarea") return composer; + if (selector === "button[aria-label=\"Attach files\"]") return attachButton; + return null; +}; +attachPayload = context.window.__ION_CHATOPS_BRIDGE_DEBUG__.localAttachPayload(); +if (!attachPayload || !String(attachPayload.target_rect.label || "").includes("Attach files")) { + throw new Error("calibrated attach target did not resolve"); +} +localStore.delete("ION_CHATOPS_ATTACH_TARGET_SELECTOR"); + byId.clear(); let disabledSent = null; const disabledDocumentElement = new Element("html"); From d5704892b6e0669b1b2d683b8a539d38356dd549 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 16:27:59 -0400 Subject: [PATCH 23/30] Make ChatOps artifact drop zone explicit --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 30 ++- .../ion_chatops_bridge/README.md | 28 ++- .../ion_chatops_bridge/dist/content.js | 206 +++++++++++++++++- .../ion_chatops_bridge/src/approval_ui.ts | 26 ++- .../ion_chatops_bridge/src/content.ts | 182 +++++++++++++++- .../tests/live_smoke_parser_simulation.js | 16 ++ 6 files changed, 466 insertions(+), 22 deletions(-) diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md index 794bd2f3..5139ddf8 100644 --- a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -36,7 +36,7 @@ Implemented browser-only lane: ```text Artifacts tab --> Attachables +-> Attachables / Preview Drop Zone / Drop Latest -> Drop Latest -> Braden approval -> daemon upload ticket @@ -49,6 +49,10 @@ reject synthetic drag/drop events. When that happens, the extension must show th file name, size, sha256, and receipt path so Braden can use the manual attach picker or a stronger future local macro lane. +ChatGPT accepts ordinary user drag/drop over broad page regions, so the primary +browser target is a page/composer drop zone rather than the attach/add-file +button. The attach button remains useful for a fallback OS file-picker lane. + Implemented local-operator lane: ```text @@ -183,6 +187,30 @@ ION_CHATOPS_DRAWER_MAX_PX These settings may adjust visual placement only. They do not expand file, daemon, Codex, send-click, or git authority. +## Calibrated Drop Zone + +The browser extension should support a separate drop-zone calibration path for +direct drag/drop uploads: + +```text +Settings -> Pick Drop Zone +-> next non-ION page click is captured +-> selector, label, and rect are shown +-> Preview Drop Zone must ring that selected page/composer drop area +-> Drop Latest dispatches drag/drop events to that selected area +``` + +The selector is browser-local state: + +```text +ION_CHATOPS_DROP_TARGET_SELECTOR +``` + +If the saved selector is hidden or stale, `Drop Latest` must fail visibly and ask +for re-calibration. It must not silently switch to a risky click target. This is +distinct from `ION_CHATOPS_ATTACH_TARGET_SELECTOR`, which is only for the +fallback file-picker/local-operator lane. + ## Non-Authority This protocol does not grant: diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index 2c050809..efd03d48 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -28,6 +28,9 @@ MVP behavior: Codex review queueing through the sandbox return intake owner; - list attachable local package/inbox artifacts and request approval-gated browser drop tickets from the local daemon; +- preview and calibrate the ChatGPT page/composer drop zone used by `Drop + Latest`; this is now the primary browser upload path because ChatGPT accepts + ordinary drag/drop over broad page regions; - calibrate the ChatGPT attach/add-file target by letting Braden pick the exact page element once, then using that saved selector before heuristics; - tune composer tab lift and drawer height from the Settings tab without a code @@ -157,13 +160,16 @@ The Artifacts tab includes the first guarded file lane: - `Attachables`: lists files the daemon considers safe to present for browser attachment from bounded package/inbox roots. +- `Preview Drop Zone`: draws a blue ring around the ChatGPT page/composer area + that `Drop Latest` will dispatch drag/drop events to. - `Preview Target`: draws a temporary green ring around the exact ChatGPT attach/add-file control the extension currently sees. - `Dry Run Attach`: prepares the selected artifact and asks the daemon to validate target geometry/backend state without moving the pointer. - `Drop Latest`: asks Braden for approval, asks the daemon for a one-use-ish localhost download ticket, fetches the file as a browser `File`, and attempts - visible `dragenter`/`dragover`/`drop` events against the ChatGPT composer. + visible `dragenter`/`dragover`/`drop` events against the calibrated + page/composer drop zone. - `Local Attach`: asks Braden for approval, prepares a daemon upload ticket, and asks the local operator helper to open the ChatGPT attach control and select the exact approved artifact through the OS file picker. This path is @@ -203,6 +209,26 @@ ION_CHATOPS_TAB_LIFT_PX ION_CHATOPS_DRAWER_MAX_PX ``` +Because ChatGPT accepts normal drag/drop over broad page regions, the preferred +browser lane is: + +```text +Settings -> Pick Drop Zone +-> click the page/composer area where manual file drops work +-> Artifacts -> Preview Drop Zone +-> Artifacts -> Drop Latest +``` + +The drop-zone selector is stored in page `localStorage`: + +```text +ION_CHATOPS_DROP_TARGET_SELECTOR +``` + +If the saved drop zone is hidden or stale, `Drop Latest` fails visibly and asks +for re-calibration. `Local Attach` remains a fallback for OS file-picker +assistance; it is not the primary ChatGPT upload lane. + `Attachables` intentionally shows a compact selected-artifact summary rather than dumping the full daemon JSON. The selected artifact is the same latest candidate used by `Drop Latest` and `Local Attach`. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 3adf1057..0514ba8f 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -7,8 +7,10 @@ const MODAL_ID = "ion-chatops-bridge-approval"; const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const ATTACH_PREVIEW_ID = "ion-chatops-attach-target-preview"; + const DROP_PREVIEW_ID = "ion-chatops-drop-target-preview"; const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; const ATTACH_TARGET_SELECTOR_KEY = "ION_CHATOPS_ATTACH_TARGET_SELECTOR"; + const DROP_TARGET_SELECTOR_KEY = "ION_CHATOPS_DROP_TARGET_SELECTOR"; const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; const AUTO_SCAN_SELECTORS = [ @@ -224,7 +226,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp [data-ion-control-role="uploaded_attachment"] { box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; } - #${ATTACH_PREVIEW_ID} { + #${ATTACH_PREVIEW_ID}, + #${DROP_PREVIEW_ID} { position: fixed; z-index: 2147483645; pointer-events: none; @@ -233,6 +236,11 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp box-shadow: 0 0 0 5px rgba(52,211,153,0.18), 0 0 28px rgba(52,211,153,0.55); background: rgba(52,211,153,0.08); } + #${DROP_PREVIEW_ID} { + border-color: rgba(96,165,250,0.98); + box-shadow: 0 0 0 5px rgba(96,165,250,0.16), 0 0 34px rgba(96,165,250,0.50); + background: rgba(96,165,250,0.08); + } `; document.documentElement.appendChild(style); } @@ -1042,15 +1050,26 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp } } + function dropTargetSelector() { + try { + return String(window.localStorage?.getItem(DROP_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } + } + function settingsSummary() { const selector = attachTargetSelector(); + const dropSelector = dropTargetSelector(); return [ `attach_target: ${selector || "not calibrated"}`, + `drop_zone: ${dropSelector || "default page/composer zone"}`, `tab_lift_px: ${readNumberSetting(TAB_LIFT_KEY, 2, -24, 48)}`, `drawer_max_px: ${readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680)}`, "", + "Use Preview Drop Zone before Drop Latest. Pick Drop Zone if the blue ring is not where ChatGPT accepts file drops.", "Use Pick Attach Target, then click ChatGPT's real attach/add-file button once.", - "Local Attach should only be used after Preview Target rings the correct button and Dry Run passes.", + "Local Attach is a fallback and should only be used after Preview Target rings the correct button and Dry Run passes.", ].join("\n"); } @@ -1384,6 +1403,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+ @@ -1395,6 +1415,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp
+ + @@ -1502,6 +1524,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="artifact-preview-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-preview-attach")); }); + panel.querySelector('[data-tool="artifact-preview-drop"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-preview-drop")); + }); panel.querySelector('[data-tool="artifact-dry-run-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-dry-run-attach")); }); @@ -1514,6 +1539,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp panel.querySelector('[data-tool="settings-clear-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-settings-clear-attach")); }); + panel.querySelector('[data-tool="settings-pick-drop"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-pick-drop")); + }); + panel.querySelector('[data-tool="settings-clear-drop"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-clear-drop")); + }); panel.querySelector('[data-tool="settings-tabs-up"]')?.addEventListener("click", () => { adjustTabLift(4); }); @@ -2096,15 +2127,66 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); } - function findDropTarget() { + function visibleDropRect(element) { + if (!visibleElement(element)) return null; + const rect = element.getBoundingClientRect(); + if (element === document.body || rect.height > window.innerHeight * 1.2) { + return { + left: 8, + top: 56, + right: window.innerWidth - 8, + bottom: window.innerHeight - 96, + width: window.innerWidth - 16, + height: Math.max(160, window.innerHeight - 152), + x: 8, + y: 56, + toJSON: () => ({}), + }; + } + return rect; + } + + function storedDropSelector() { + try { + return String(window.localStorage?.getItem(DROP_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } + } + + function calibratedDropTargetElement() { + const selector = storedDropSelector(); + if (!selector) return null; + let node = null; + try { + node = document.querySelector(selector); + } catch (_error) { + setBridgeArtifactDetail(`calibrated_drop_selector_invalid\nselector: ${selector}`); + return null; + } + if (!node || !visibleDropRect(node)) { + setBridgeArtifactDetail(`calibrated_drop_target_missing_or_hidden\nselector: ${selector}`); + return null; + } + return node; + } + + function defaultDropTargetElement() { const composer = findComposer(); - if (!composer) return null; - return ( - composer.closest("form") ?? - composer.closest("[data-testid*='composer']") ?? - composer.closest("main") ?? - composer - ); + const main = document.querySelector("main"); + const composerShell = + composer?.closest("form") ?? + composer?.closest("[data-testid*='composer']") ?? + null; + const candidates = [main, composerShell, document.body, composer].filter(Boolean); + return candidates.find((candidate) => visibleDropRect(candidate)) ?? null; + } + + function findDropTarget() { + const calibrated = calibratedDropTargetElement(); + if (calibrated) return calibrated; + if (storedDropSelector()) return null; + return defaultDropTargetElement(); } function composerRect() { @@ -2217,6 +2299,15 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return target; } + function dropCandidateFromEventTarget(target) { + if (!(target instanceof Element)) return null; + if (isBridgeElement(target)) return null; + const candidate = + target.closest("main, form, [data-testid*='composer' i], [data-message-author-role], article, section, div") ?? + (target instanceof HTMLElement ? target : null); + return candidate && !isBridgeElement(candidate) ? candidate : null; + } + function calibratedAttachControlElement(rect) { const selector = storedAttachSelector(); if (!selector) return null; @@ -2350,6 +2441,89 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp setBridgeStatus("Attach target cleared", "Pick Attach Target can be used to bind it again.", "idle"); } + function beginDropTargetPicker() { + setBridgeStatus("Pick drop zone", "Click the ChatGPT area where a normal file drag/drop is accepted.", "working"); + setBridgeSettingsDetail("Drop-zone picker armed. Click the ChatGPT page/composer area you would normally drop a file onto."); + const handler = (event) => { + const candidate = dropCandidateFromEventTarget(event.target); + if (!candidate) { + setBridgeSettingsDetail("Drop-zone pick ignored because the click was inside ION UI or not a page element."); + return; + } + event.preventDefault(); + event.stopPropagation(); + event.stopImmediatePropagation(); + document.removeEventListener("click", handler, true); + const selector = selectorForElement(candidate); + try { + window.localStorage?.setItem(DROP_TARGET_SELECTOR_KEY, selector); + } catch (_error) { + setBridgeSettingsDetail("Drop zone could not be saved to localStorage."); + setBridgeStatus("Drop zone not saved", "localStorage write failed.", "error"); + return; + } + const rect = visibleDropRect(candidate) ?? candidate.getBoundingClientRect(); + const detail = [ + "drop_zone_calibrated", + `selector: ${selector}`, + `label: ${controlLabel(candidate) || candidate.tagName.toLowerCase()}`, + `rect: ${JSON.stringify(rectPayload(rect))}`, + ].join("\n"); + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone calibrated", "Preview Drop Zone should now ring the selected drop area.", "success"); + previewDropTarget(); + }; + document.addEventListener("click", handler, true); + window.setTimeout(() => { + document.removeEventListener("click", handler, true); + }, 12000); + } + + function clearDropTargetCalibration() { + try { + window.localStorage?.removeItem(DROP_TARGET_SELECTOR_KEY); + } catch (_error) { + } + document.getElementById(DROP_PREVIEW_ID)?.remove(); + const detail = "drop_zone_calibration_cleared\nDrop Latest will use the guarded default page/composer drop zone again."; + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone cleared", "Pick Drop Zone can be used to bind it again.", "idle"); + } + + function previewDropTarget() { + ensureDomRegistryStyle(); + const target = findDropTarget(); + document.getElementById(DROP_PREVIEW_ID)?.remove(); + if (!target) { + const detail = storedDropSelector() + ? "drop_target_not_detected\nSaved drop zone is missing or hidden. Use Settings -> Pick Drop Zone again or Clear Drop Zone." + : "drop_target_not_detected\nNo page/composer drop zone was found."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone missing", detail, "error"); + return; + } + const rect = visibleDropRect(target) ?? target.getBoundingClientRect(); + const overlay = document.createElement("div"); + overlay.id = DROP_PREVIEW_ID; + overlay.style.left = `${Math.round(rect.left)}px`; + overlay.style.top = `${Math.round(rect.top)}px`; + overlay.style.width = `${Math.round(rect.width)}px`; + overlay.style.height = `${Math.round(rect.height)}px`; + document.documentElement.appendChild(overlay); + window.setTimeout(() => overlay.remove(), 4000); + const detail = [ + "preview_drop_zone", + `selector: ${storedDropSelector() || "default_page_or_composer_drop_zone"}`, + `target: ${target.tagName.toLowerCase()}`, + `rect: ${JSON.stringify(rectPayload(rect))}`, + "Drop Latest dispatches visible drag/drop events here. Browser/ChatGPT may still reject synthetic drops.", + ].join("\n"); + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone previewed", "Blue ring marks the current Drop Latest target.", "success"); + } + function previewAttachTarget() { ensureDomRegistryStyle(); const target = findAttachControlElement(); @@ -2423,6 +2597,7 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp return; } try { + previewDropTarget(); const response = await fetch(downloadUrl); if (!response.ok) throw new Error(`download_failed_${response.status}`); const blob = await response.blob(); @@ -2749,6 +2924,8 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp submitActionText, refreshBridgePosition, previewAttachTarget, + previewDropTarget, + findDropTarget, localAttachPayload, requestArtifactLocalAttachDryRun, beginAttachTargetPicker, @@ -2824,6 +3001,9 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-artifact-preview-attach", () => { previewAttachTarget(); }); + window.addEventListener("ion-chatops-artifact-preview-drop", () => { + previewDropTarget(); + }); window.addEventListener("ion-chatops-artifact-dry-run-attach", () => { requestArtifactLocalAttachDryRun(); }); @@ -2836,6 +3016,12 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp window.addEventListener("ion-chatops-settings-clear-attach", () => { clearAttachTargetCalibration(); }); + window.addEventListener("ion-chatops-settings-pick-drop", () => { + beginDropTargetPicker(); + }); + window.addEventListener("ion-chatops-settings-clear-drop", () => { + clearDropTargetCalibration(); + }); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); } else { diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts index dc941a1e..efbfe4bf 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/approval_ui.ts @@ -15,6 +15,7 @@ const PANEL_MIN_WIDTH = 320; const PANEL_TINY_WIDTH = 230; const COMPOSER_PANEL_MAX_WIDTH = 920; const ATTACH_TARGET_SELECTOR_KEY = "ION_CHATOPS_ATTACH_TARGET_SELECTOR"; +const DROP_TARGET_SELECTOR_KEY = "ION_CHATOPS_DROP_TARGET_SELECTOR"; const TAB_LIFT_KEY = "ION_CHATOPS_TAB_LIFT_PX"; const DRAWER_MAX_KEY = "ION_CHATOPS_DRAWER_MAX_PX"; @@ -452,15 +453,26 @@ function attachTargetSelector(): string { } } +function dropTargetSelector(): string { + try { + return String(window.localStorage?.getItem(DROP_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } +} + function settingsSummary(): string { const selector = attachTargetSelector(); + const dropSelector = dropTargetSelector(); return [ `attach_target: ${selector || "not calibrated"}`, + `drop_zone: ${dropSelector || "default page/composer zone"}`, `tab_lift_px: ${readNumberSetting(TAB_LIFT_KEY, 2, -24, 48)}`, `drawer_max_px: ${readNumberSetting(DRAWER_MAX_KEY, 360, 220, 680)}`, "", + "Use Preview Drop Zone before Drop Latest. Pick Drop Zone if the blue ring is not where ChatGPT accepts file drops.", "Use Pick Attach Target, then click ChatGPT's real attach/add-file button once.", - "Local Attach should only be used after Preview Target rings the correct button and Dry Run passes.", + "Local Attach is a fallback and should only be used after Preview Target rings the correct button and Dry Run passes.", ].join("\n"); } @@ -796,6 +808,7 @@ function ensurePanel(): HTMLElement {
+ @@ -807,6 +820,8 @@ function ensurePanel(): HTMLElement {
+ + @@ -914,6 +929,9 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="artifact-preview-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-preview-attach")); }); + panel.querySelector('[data-tool="artifact-preview-drop"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-artifact-preview-drop")); + }); panel.querySelector('[data-tool="artifact-dry-run-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-artifact-dry-run-attach")); }); @@ -926,6 +944,12 @@ function ensurePanel(): HTMLElement { panel.querySelector('[data-tool="settings-clear-attach"]')?.addEventListener("click", () => { window.dispatchEvent(new CustomEvent("ion-chatops-settings-clear-attach")); }); + panel.querySelector('[data-tool="settings-pick-drop"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-pick-drop")); + }); + panel.querySelector('[data-tool="settings-clear-drop"]')?.addEventListener("click", () => { + window.dispatchEvent(new CustomEvent("ion-chatops-settings-clear-drop")); + }); panel.querySelector('[data-tool="settings-tabs-up"]')?.addEventListener("click", () => { adjustTabLift(4); }); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index 71de5d97..637bdc57 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -22,8 +22,10 @@ const PANEL_ID = "ion-chatops-bridge-panel"; const MODAL_ID = "ion-chatops-bridge-approval"; const DOM_REGISTRY_STYLE_ID = "ion-chatops-dom-registry-style"; const ATTACH_PREVIEW_ID = "ion-chatops-attach-target-preview"; +const DROP_PREVIEW_ID = "ion-chatops-drop-target-preview"; const SAFE_MODE_KEY = "ION_CHATOPS_SAFE_MODE"; const ATTACH_TARGET_SELECTOR_KEY = "ION_CHATOPS_ATTACH_TARGET_SELECTOR"; +const DROP_TARGET_SELECTOR_KEY = "ION_CHATOPS_DROP_TARGET_SELECTOR"; const SCAN_DEBOUNCE_MS = 450; const ION_ACTION_LINE = /(^|\n)\s*ion_action:\s*(\n|$)/; const AUTO_SCAN_SELECTORS = [ @@ -222,7 +224,8 @@ function ensureDomRegistryStyle(): void { [data-ion-control-role="uploaded_attachment"] { box-shadow: 0 0 0 1px rgba(129,140,248,0.40), 0 0 0 4px rgba(129,140,248,0.07) !important; } - #${ATTACH_PREVIEW_ID} { + #${ATTACH_PREVIEW_ID}, + #${DROP_PREVIEW_ID} { position: fixed; z-index: 2147483645; pointer-events: none; @@ -231,6 +234,11 @@ function ensureDomRegistryStyle(): void { box-shadow: 0 0 0 5px rgba(52,211,153,0.18), 0 0 28px rgba(52,211,153,0.55); background: rgba(52,211,153,0.08); } + #${DROP_PREVIEW_ID} { + border-color: rgba(96,165,250,0.98); + box-shadow: 0 0 0 5px rgba(96,165,250,0.16), 0 0 34px rgba(96,165,250,0.50); + background: rgba(96,165,250,0.08); + } `; document.documentElement.appendChild(style); } @@ -799,15 +807,66 @@ function requestArtifactAttachables(): void { }); } -function findDropTarget(): HTMLElement | null { +function visibleDropRect(element: HTMLElement): DOMRect | null { + if (!visibleElement(element)) return null; + const rect = element.getBoundingClientRect(); + if (element === document.body || rect.height > window.innerHeight * 1.2) { + return { + left: 8, + top: 56, + right: window.innerWidth - 8, + bottom: window.innerHeight - 96, + width: window.innerWidth - 16, + height: Math.max(160, window.innerHeight - 152), + x: 8, + y: 56, + toJSON: () => ({}), + } as DOMRect; + } + return rect; +} + +function storedDropSelector(): string { + try { + return String(window.localStorage?.getItem(DROP_TARGET_SELECTOR_KEY) ?? "").trim(); + } catch (_error) { + return ""; + } +} + +function calibratedDropTargetElement(): HTMLElement | null { + const selector = storedDropSelector(); + if (!selector) return null; + let node: HTMLElement | null = null; + try { + node = document.querySelector(selector); + } catch (_error) { + setBridgeArtifactDetail(`calibrated_drop_selector_invalid\nselector: ${selector}`); + return null; + } + if (!node || !visibleDropRect(node)) { + setBridgeArtifactDetail(`calibrated_drop_target_missing_or_hidden\nselector: ${selector}`); + return null; + } + return node; +} + +function defaultDropTargetElement(): HTMLElement | null { const composer = findComposer(); - if (!composer) return null; - return ( - composer.closest("form") ?? - composer.closest("[data-testid*='composer']") ?? - composer.closest("main") ?? - composer - ) as HTMLElement | null; + const main = document.querySelector("main"); + const composerShell = + composer?.closest("form") ?? + composer?.closest("[data-testid*='composer']") ?? + null; + const candidates = [main, composerShell, document.body, composer].filter(Boolean) as HTMLElement[]; + return candidates.find((candidate) => visibleDropRect(candidate)) ?? null; +} + +function findDropTarget(): HTMLElement | null { + const calibrated = calibratedDropTargetElement(); + if (calibrated) return calibrated; + if (storedDropSelector()) return null; + return defaultDropTargetElement(); } function composerRect(): DOMRect | null { @@ -925,6 +984,15 @@ function attachCandidateFromEventTarget(target: EventTarget | null): HTMLElement return target as HTMLElement; } +function dropCandidateFromEventTarget(target: EventTarget | null): HTMLElement | null { + if (!(target instanceof Element)) return null; + if (isBridgeElement(target)) return null; + const candidate = + target.closest("main, form, [data-testid*='composer' i], [data-message-author-role], article, section, div") ?? + (target instanceof HTMLElement ? target : null); + return candidate && !isBridgeElement(candidate) ? candidate : null; +} + function calibratedAttachControlElement(rect: DOMRect | null): HTMLElement | null { const selector = storedAttachSelector(); if (!selector) return null; @@ -1059,6 +1127,90 @@ function clearAttachTargetCalibration(): void { setBridgeStatus("Attach target cleared", "Pick Attach Target can be used to bind it again.", "idle"); } +function beginDropTargetPicker(): void { + setBridgeStatus("Pick drop zone", "Click the ChatGPT area where a normal file drag/drop is accepted.", "working"); + setBridgeSettingsDetail("Drop-zone picker armed. Click the ChatGPT page/composer area you would normally drop a file onto."); + const handler = (event: MouseEvent) => { + const candidate = dropCandidateFromEventTarget(event.target); + if (!candidate) { + setBridgeSettingsDetail("Drop-zone pick ignored because the click was inside ION UI or not a page element."); + return; + } + event.preventDefault(); + event.stopPropagation(); + event.stopImmediatePropagation(); + document.removeEventListener("click", handler, true); + const selector = selectorForElement(candidate); + try { + window.localStorage?.setItem(DROP_TARGET_SELECTOR_KEY, selector); + } catch (_error) { + setBridgeSettingsDetail("Drop zone could not be saved to localStorage."); + setBridgeStatus("Drop zone not saved", "localStorage write failed.", "error"); + return; + } + const rect = visibleDropRect(candidate) ?? candidate.getBoundingClientRect(); + const detail = [ + "drop_zone_calibrated", + `selector: ${selector}`, + `label: ${controlLabel(candidate) || candidate.tagName.toLowerCase()}`, + `rect: ${JSON.stringify(rectPayload(rect))}`, + ].join("\n"); + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone calibrated", "Preview Drop Zone should now ring the selected drop area.", "success"); + previewDropTarget(); + }; + document.addEventListener("click", handler, true); + window.setTimeout(() => { + document.removeEventListener("click", handler, true); + }, 12000); +} + +function clearDropTargetCalibration(): void { + try { + window.localStorage?.removeItem(DROP_TARGET_SELECTOR_KEY); + } catch (_error) { + // Ignore storage failures; default drop targeting remains available. + } + document.getElementById(DROP_PREVIEW_ID)?.remove(); + const detail = "drop_zone_calibration_cleared\nDrop Latest will use the guarded default page/composer drop zone again."; + setBridgeSettingsDetail(detail); + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone cleared", "Pick Drop Zone can be used to bind it again.", "idle"); +} + +function previewDropTarget(): void { + ensureDomRegistryStyle(); + const target = findDropTarget(); + document.getElementById(DROP_PREVIEW_ID)?.remove(); + if (!target) { + const detail = storedDropSelector() + ? "drop_target_not_detected\nSaved drop zone is missing or hidden. Use Settings -> Pick Drop Zone again or Clear Drop Zone." + : "drop_target_not_detected\nNo page/composer drop zone was found."; + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone missing", detail, "error"); + return; + } + const rect = visibleDropRect(target) ?? target.getBoundingClientRect(); + const overlay = document.createElement("div"); + overlay.id = DROP_PREVIEW_ID; + overlay.style.left = `${Math.round(rect.left)}px`; + overlay.style.top = `${Math.round(rect.top)}px`; + overlay.style.width = `${Math.round(rect.width)}px`; + overlay.style.height = `${Math.round(rect.height)}px`; + document.documentElement.appendChild(overlay); + window.setTimeout(() => overlay.remove(), 4000); + const detail = [ + "preview_drop_zone", + `selector: ${storedDropSelector() || "default_page_or_composer_drop_zone"}`, + `target: ${target.tagName.toLowerCase()}`, + `rect: ${JSON.stringify(rectPayload(rect))}`, + "Drop Latest dispatches visible drag/drop events here. Browser/ChatGPT may still reject synthetic drops.", + ].join("\n"); + setBridgeArtifactDetail(detail); + setBridgeStatus("Drop zone previewed", "Blue ring marks the current Drop Latest target.", "success"); +} + function previewAttachTarget(): void { ensureDomRegistryStyle(); const target = findAttachControlElement(); @@ -1132,6 +1284,7 @@ async function attemptPreparedArtifactDrop(result: any): Promise { return; } try { + previewDropTarget(); const response = await fetch(downloadUrl); if (!response.ok) throw new Error(`download_failed_${response.status}`); const blob = await response.blob(); @@ -1458,6 +1611,8 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => { submitActionText, refreshBridgePosition, previewAttachTarget, + previewDropTarget, + findDropTarget, localAttachPayload, requestArtifactLocalAttachDryRun, rescan: () => { @@ -1532,6 +1687,9 @@ window.addEventListener("ion-chatops-artifact-drop-latest", () => { window.addEventListener("ion-chatops-artifact-preview-attach", () => { previewAttachTarget(); }); +window.addEventListener("ion-chatops-artifact-preview-drop", () => { + previewDropTarget(); +}); window.addEventListener("ion-chatops-artifact-dry-run-attach", () => { requestArtifactLocalAttachDryRun(); }); @@ -1544,6 +1702,12 @@ window.addEventListener("ion-chatops-settings-pick-attach", () => { window.addEventListener("ion-chatops-settings-clear-attach", () => { clearAttachTargetCalibration(); }); +window.addEventListener("ion-chatops-settings-pick-drop", () => { + beginDropTargetPicker(); +}); +window.addEventListener("ion-chatops-settings-clear-drop", () => { + clearDropTargetCalibration(); +}); if (safeModeDisabled()) { console.info(`ION ChatOps Bridge disabled by ${SAFE_MODE_KEY}. Remove the flag and reload to re-enable.`); diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js index 8d08074a..e3da96e2 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/tests/live_smoke_parser_simulation.js @@ -405,6 +405,22 @@ if (!attachPayload || !String(attachPayload.target_rect.label || "").includes("A throw new Error("calibrated attach target did not resolve"); } localStore.delete("ION_CHATOPS_ATTACH_TARGET_SELECTOR"); +const dropZone = new Element("main"); +dropZone.setAttribute("data-testid", "chatgpt-drop-zone"); +dropZone.rect = { top: 120, left: 160, right: 980, bottom: 920, width: 820, height: 800 }; +localStore.set("ION_CHATOPS_DROP_TARGET_SELECTOR", "main[data-testid=\"chatgpt-drop-zone\"]"); +context.document.querySelector = (selector) => { + if (selector === "#prompt-textarea") return composer; + if (selector === "main[data-testid=\"chatgpt-drop-zone\"]") return dropZone; + return null; +}; +const calibratedDropTarget = context.window.__ION_CHATOPS_BRIDGE_DEBUG__.findDropTarget(); +if (calibratedDropTarget !== dropZone) throw new Error("calibrated drop target did not resolve"); +dropZone.rect = { top: -10, left: -10, right: -4, bottom: -4, width: 6, height: 6 }; +if (context.window.__ION_CHATOPS_BRIDGE_DEBUG__.findDropTarget()) { + throw new Error("hidden calibrated drop target should fail closed"); +} +localStore.delete("ION_CHATOPS_DROP_TARGET_SELECTOR"); byId.clear(); let disabledSent = null; From 38fcbf1105ffc47db5089ec9fdd9b91950226c29 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 16:36:44 -0400 Subject: [PATCH 24/30] Clean up ChatOps synthetic drop overlay --- ...SER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md | 6 +++ .../ion_chatops_bridge/README.md | 4 +- .../ion_chatops_bridge/dist/content.js | 39 ++++++++++++++++++ .../ion_chatops_bridge/src/content.ts | 41 +++++++++++++++++++ 4 files changed, 89 insertions(+), 1 deletion(-) diff --git a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md index 5139ddf8..91ded421 100644 --- a/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md +++ b/ION/02_architecture/ION_BROWSER_FILE_ATTACHMENT_AUTOMATION_PROTOCOL.md @@ -42,6 +42,7 @@ Artifacts tab -> daemon upload ticket -> localhost artifact download -> visible browser drag/drop attempt +-> best-effort drag overlay cleanup ``` This lane is intentionally allowed to fail closed. Browsers and ChatGPT may @@ -49,6 +50,11 @@ reject synthetic drag/drop events. When that happens, the extension must show th file name, size, sha256, and receipt path so Braden can use the manual attach picker or a stronger future local macro lane. +After a synthetic drop attempt, the extension must dispatch best-effort cleanup +events such as `dragleave`, `dragend`, and a delayed Escape key event. This is +to clear ChatGPT's full-page drag overlay if the file attaches but the overlay +state remains latched. Cleanup must not click Send. + ChatGPT accepts ordinary user drag/drop over broad page regions, so the primary browser target is a page/composer drop zone rather than the attach/add-file button. The attach button remains useful for a fallback OS file-picker lane. diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md index efd03d48..6d28137d 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/README.md @@ -169,7 +169,9 @@ The Artifacts tab includes the first guarded file lane: - `Drop Latest`: asks Braden for approval, asks the daemon for a one-use-ish localhost download ticket, fetches the file as a browser `File`, and attempts visible `dragenter`/`dragover`/`drop` events against the calibrated - page/composer drop zone. + page/composer drop zone. After dispatching the drop, it sends best-effort + `dragleave`/`dragend`/Escape cleanup events so ChatGPT's full-page "Add + anything" overlay does not remain latched. - `Local Attach`: asks Braden for approval, prepares a daemon upload ticket, and asks the local operator helper to open the ChatGPT attach control and select the exact approved artifact through the OS file picker. This path is diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js index 0514ba8f..11c2822d 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/dist/content.js @@ -2585,6 +2585,43 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp poll(); } + function dispatchDropCleanupEvents(target, transfer) { + const cleanupTargets = [ + target, + document.body, + document.documentElement, + document, + window, + ].filter(Boolean); + const dispatchDrag = (eventName) => { + cleanupTargets.forEach((eventTarget) => { + try { + const event = new DragEvent(eventName, { + bubbles: true, + cancelable: true, + composed: true, + dataTransfer: transfer, + }); + eventTarget.dispatchEvent(event); + } catch (_error) { + } + }); + }; + const dispatchEscape = () => { + [document, window].forEach((eventTarget) => { + try { + eventTarget.dispatchEvent(new KeyboardEvent("keydown", { key: "Escape", code: "Escape", bubbles: true, cancelable: true })); + eventTarget.dispatchEvent(new KeyboardEvent("keyup", { key: "Escape", code: "Escape", bubbles: true, cancelable: true })); + } catch (_error) { + } + }); + }; + ["dragleave", "dragend"].forEach(dispatchDrag); + window.setTimeout(() => ["dragleave", "dragend"].forEach(dispatchDrag), 120); + window.setTimeout(dispatchEscape, 260); + window.setTimeout(() => document.getElementById(DROP_PREVIEW_ID)?.remove(), 500); + } + async function attemptPreparedArtifactDrop(result) { const downloadUrl = String(result?.download_url ?? "").trim(); const filename = String(result?.filename ?? result?.artifact?.name ?? "ion-artifact.bin").trim(); @@ -2613,12 +2650,14 @@ For implementation work, prefer create_codex_work_packet so local Codex can insp }); target.dispatchEvent(event); } + dispatchDropCleanupEvents(target, transfer); const detail = [ "visible_browser_drop_attempted", `filename: ${filename}`, `size_bytes: ${file.size}`, `sha256: ${result?.sha256 ?? ""}`, `receipt_path: ${result?.receipt_path ?? ""}`, + "drop_overlay_cleanup: dragleave_dragend_escape_attempted", "", "If ChatGPT ignored the synthetic drop, use the manifest/hash above with the manual attach picker or the future native macro lane.", "No Send click was performed.", diff --git a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts index 637bdc57..1bc03a7b 100644 --- a/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts +++ b/ION/09_integrations/browser_extension/ion_chatops_bridge/src/content.ts @@ -1272,6 +1272,45 @@ function waitForUploadChip(previousCount: number, label: string, baseDetail: str poll(); } +function dispatchDropCleanupEvents(target: HTMLElement, transfer: DataTransfer): void { + const cleanupTargets: EventTarget[] = [ + target, + document.body, + document.documentElement, + document, + window, + ].filter(Boolean) as EventTarget[]; + const dispatchDrag = (eventName: string) => { + cleanupTargets.forEach((eventTarget) => { + try { + const event = new DragEvent(eventName, { + bubbles: true, + cancelable: true, + composed: true, + dataTransfer: transfer, + }); + eventTarget.dispatchEvent(event); + } catch (_error) { + // Some event targets may reject synthetic DragEvent dispatch. + } + }); + }; + const dispatchEscape = () => { + [document, window].forEach((eventTarget) => { + try { + eventTarget.dispatchEvent(new KeyboardEvent("keydown", { key: "Escape", code: "Escape", bubbles: true, cancelable: true })); + eventTarget.dispatchEvent(new KeyboardEvent("keyup", { key: "Escape", code: "Escape", bubbles: true, cancelable: true })); + } catch (_error) { + // Escape cleanup is best-effort only. + } + }); + }; + ["dragleave", "dragend"].forEach(dispatchDrag); + window.setTimeout(() => ["dragleave", "dragend"].forEach(dispatchDrag), 120); + window.setTimeout(dispatchEscape, 260); + window.setTimeout(() => document.getElementById(DROP_PREVIEW_ID)?.remove(), 500); +} + async function attemptPreparedArtifactDrop(result: any): Promise { const downloadUrl = String(result?.download_url ?? "").trim(); const filename = String(result?.filename ?? result?.artifact?.name ?? "ion-artifact.bin").trim(); @@ -1300,12 +1339,14 @@ async function attemptPreparedArtifactDrop(result: any): Promise { }); target.dispatchEvent(event); } + dispatchDropCleanupEvents(target, transfer); const detail = [ "visible_browser_drop_attempted", `filename: ${filename}`, `size_bytes: ${file.size}`, `sha256: ${result?.sha256 ?? ""}`, `receipt_path: ${result?.receipt_path ?? ""}`, + "drop_overlay_cleanup: dragleave_dragend_escape_attempted", "", "If ChatGPT ignored the synthetic drop, use the manifest/hash above with the manual attach picker or the future native macro lane.", "No Send click was performed.", From 9334cf709550db3db77834b72f7a15d322c61288 Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 17:59:01 -0400 Subject: [PATCH 25/30] Add stable tunnel plan and connector landing page --- ...TGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md | 55 +++++ .../ion_chatgpt_browser_cloudflare_tunnel.py | 130 ++++++++++- .../ion_chatgpt_browser_mcp_http_preview.py | 211 +++++++++++++++++- ...PT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md | 57 +++++ ...l_ion_chatgpt_browser_cloudflare_tunnel.py | 75 +++++++ ...el_ion_chatgpt_browser_mcp_http_preview.py | 19 ++ 6 files changed, 545 insertions(+), 2 deletions(-) diff --git a/ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md b/ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md index 8f873157..3f1c3574 100644 --- a/ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md +++ b/ION/02_architecture/ION_CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_PROTOCOL.md @@ -28,6 +28,22 @@ ChatGPT browser -> ION kernel read/status or bounded queue/receipt operations ``` +## Human Landing / App Root + +The local HTTP preview now has two separate public surfaces: + +```text +GET / human-facing ION connector landing page +GET /app same bounded landing/app surface +POST /mcp MCP JSON-RPC tool endpoint for ChatGPT connector configuration +GET /health JSON status/audit evidence +``` + +The root/app page is intentionally a safe projection surface. It may show +connector posture, allowed tool names, blocked capability classes, and authority +flags. It must not expose secrets, local credential paths, arbitrary file +contents, shell controls, or direct state mutation controls. + ## Corrected Tunnel Target The older AIMOS tunnel script used an SSE endpoint. V122 does not preserve that @@ -45,6 +61,45 @@ Local service target: http://127.0.0.1:8765 ``` +## Stable Hostname Target + +The `trycloudflare.com` quick tunnel is a development fallback. It is useful for +zero-configuration testing, but it is not the desired steady-state connector +address because the public hostname can change whenever the tunnel restarts. + +The correct durable shape is a named Cloudflare tunnel or equivalent stable +hostname: + +```text +https:///mcp +``` + +The stable hostname must route to the same local preview root: + +```text +http://127.0.0.1:8765 +``` + +If an older Helixion or AIMOS domain is reused, only the transport/DNS ownership +may be reused. The old `/sse` endpoint, old local port `8000`, and AIMOS service +identity do not become current ION connector authority. + +Example bounded named-tunnel launch shape: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages \ +python3 -S -m kernel.ion_chatgpt_browser_cloudflare_tunnel \ + --ion-root . \ + --start \ + --port 8765 \ + --tunnel-name ion-browser \ + --stable-hostname ion.helixion.net +``` + +Before that can work, the host must already have Cloudflare named-tunnel +credentials/configuration outside the repo. ION must not store tunnel tokens, +origin certificates, or Cloudflare account secrets in source control. + ## Required Boundaries The tunnel must not expose: diff --git a/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py b/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py index 9affea2b..9908791f 100644 --- a/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py +++ b/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py @@ -45,6 +45,7 @@ TRANSPORT_LOCAL_HTTP_RUNNING_ONLY = "LOCAL_HTTP_RUNNING_ONLY" TRANSPORT_TUNNEL_RUNNING_NOT_VERIFIED = "TUNNEL_RUNNING_NOT_VERIFIED" TRANSPORT_TUNNEL_RUNNING_VERIFIED = "TUNNEL_RUNNING_VERIFIED" +TRANSPORT_STABLE_HOSTNAME_NOT_ACTIVE = "STABLE_HOSTNAME_NOT_ACTIVE" TRANSPORT_CHATGPT_CONNECTOR_ADDED_NOT_TESTED = "CHATGPT_CONNECTOR_ADDED_NOT_TESTED" TRANSPORT_CHATGPT_CONNECTOR_TESTED_READY = "CHATGPT_CONNECTOR_TESTED_READY" @@ -90,14 +91,44 @@ def connector_url_from_tunnel_url(tunnel_url: str, endpoint_path: str = DEFAULT_ return f"{tunnel_url.rstrip('/')}{normalized_endpoint}" +def normalize_stable_hostname(value: str | None) -> str | None: + if not value: + return None + stripped = value.strip() + stripped = stripped.removeprefix("https://").removeprefix("http://") + host = stripped.split("/", 1)[0].strip() + return host or None + + def build_cloudflared_command( *, local_url: str, cloudflared_binary: str = "cloudflared", + tunnel_name: str | None = None, + config_path: str | None = None, + credentials_file: str | None = None, ) -> list[str]: + if tunnel_name: + command = [cloudflared_binary, "tunnel"] + if config_path: + command.extend(["--config", config_path]) + command.append("run") + if credentials_file: + command.extend(["--credentials-file", credentials_file]) + command.extend(["--url", local_url, tunnel_name]) + return command return [cloudflared_binary, "tunnel", "--url", local_url] +def build_cloudflared_route_dns_command( + *, + tunnel_name: str, + hostname: str, + cloudflared_binary: str = "cloudflared", +) -> list[str]: + return [cloudflared_binary, "tunnel", "route", "dns", tunnel_name, hostname] + + def _read_json(path: Path) -> dict[str, Any] | None: if not path.exists(): return None @@ -283,6 +314,9 @@ def write_tunnel_status( running: bool, local_url: str, endpoint_path: str = DEFAULT_ENDPOINT_PATH, + transport_mode: str = "quick_tunnel", + tunnel_name: str | None = None, + stable_hostname: str | None = None, error: str | None = None, process_id: int | None = None, output: str | Path | None = None, @@ -294,9 +328,12 @@ def write_tunnel_status( "schema_id": STATUS_SCHEMA_ID, "version_line": VERSION_LINE, "method": "cloudflare_tunnel", + "transport_mode": transport_mode, "running": running, "local_url": local_url, "endpoint_path": endpoint_path, + "tunnel_name": tunnel_name, + "stable_hostname": stable_hostname, "tunnel_url": tunnel_url, "connector_url": connector_url, "error": error, @@ -317,6 +354,10 @@ def audit_cloudflare_tunnel( local_url: str | None = None, endpoint_path: str = DEFAULT_ENDPOINT_PATH, cloudflared_binary: str = "cloudflared", + tunnel_name: str | None = None, + stable_hostname: str | None = None, + config_path: str | None = None, + credentials_file: str | None = None, ) -> dict[str, Any]: shell_root = Path(root or ".").expanduser().resolve() preview = audit_http_mcp_preview(shell_root) @@ -324,6 +365,9 @@ def audit_cloudflare_tunnel( active_status = _read_json(shell_root / STATUS_RELATIVE_PATH) findings: list[str] = [] resolved_local_url = local_url or default_local_url() + normalized_stable_hostname = normalize_stable_hostname(stable_hostname) + stable_tunnel_url = f"https://{normalized_stable_hostname}" if normalized_stable_hostname else None + stable_connector_url = connector_url_from_tunnel_url(stable_tunnel_url, endpoint_path) if stable_tunnel_url else None status_connector_url = active_status.get("connector_url") if active_status else None status_tunnel_url = active_status.get("tunnel_url") if active_status else None status_running = bool(active_status.get("running")) if active_status else False @@ -336,6 +380,10 @@ def audit_cloudflare_tunnel( findings.append("v121_http_mcp_preview_not_ready") if not cloudflared_path: findings.append("cloudflared_not_found_on_path") + if normalized_stable_hostname and not tunnel_name: + findings.append("stable_hostname_requires_named_tunnel") + if tunnel_name and not (credentials_file or config_path or (Path.home() / ".cloudflared/cert.pem").exists()): + findings.append("named_tunnel_credentials_or_config_not_found_locally") if status_connector_url and not candidate_connector_url: findings.append("stale_active_connector_url_not_currently_running") if status_running and not active_process_running: @@ -363,11 +411,17 @@ def audit_cloudflare_tunnel( active_connector_url = candidate_connector_url active_tunnel_url = status_tunnel_url if candidate_connector_url else None + stable_connector_active = bool(stable_connector_url and active_connector_url == stable_connector_url) + if stable_connector_url and not stable_connector_active: + findings.append("stable_connector_url_not_active") active_running = transport_state in {TRANSPORT_TUNNEL_RUNNING_NOT_VERIFIED, TRANSPORT_TUNNEL_RUNNING_VERIFIED} accepted = preview_ready if not preview_ready: verdict = BLOCKED_VERDICT connector_state = "BLOCKED" + elif stable_connector_url and not stable_connector_active: + verdict = SETUP_REQUIRED_VERDICT + connector_state = TRANSPORT_STABLE_HOSTNAME_NOT_ACTIVE elif transport_state == TRANSPORT_TUNNEL_RUNNING_VERIFIED: verdict = READY_VERDICT connector_state = transport_state @@ -387,9 +441,22 @@ def audit_cloudflare_tunnel( "required_public_connector_path": connector_url_from_tunnel_url("https://", endpoint_path), "cloudflared_found": bool(cloudflared_path), "cloudflared_path": cloudflared_path, + "stable_hostname": normalized_stable_hostname, + "stable_tunnel_url": stable_tunnel_url, + "stable_connector_url": stable_connector_url, + "stable_connector_active": stable_connector_active, + "tunnel_name": tunnel_name, + "named_tunnel_route_dns_command": build_cloudflared_route_dns_command( + tunnel_name=tunnel_name, + hostname=normalized_stable_hostname, + cloudflared_binary=cloudflared_path or cloudflared_binary, + ) if tunnel_name and normalized_stable_hostname else None, "cloudflared_command": build_cloudflared_command( local_url=resolved_local_url, cloudflared_binary=cloudflared_path or cloudflared_binary, + tunnel_name=tunnel_name, + config_path=config_path, + credentials_file=credentials_file, ), "active_status_path": str(STATUS_RELATIVE_PATH), "active_tunnel_url": active_tunnel_url, @@ -417,6 +484,10 @@ def write_cloudflare_tunnel_audit( local_url: str | None = None, endpoint_path: str = DEFAULT_ENDPOINT_PATH, cloudflared_binary: str = "cloudflared", + tunnel_name: str | None = None, + stable_hostname: str | None = None, + config_path: str | None = None, + credentials_file: str | None = None, output: str | Path | None = None, ) -> dict[str, Any]: shell_root = Path(root or ".").expanduser().resolve() @@ -425,6 +496,10 @@ def write_cloudflare_tunnel_audit( local_url=local_url, endpoint_path=endpoint_path, cloudflared_binary=cloudflared_binary, + tunnel_name=tunnel_name, + stable_hostname=stable_hostname, + config_path=config_path, + credentials_file=credentials_file, ) out = shell_root / (Path(output) if output else OUTPUT_RELATIVE_PATH) out.parent.mkdir(parents=True, exist_ok=True) @@ -438,6 +513,10 @@ def run_cloudflare_tunnel( local_url: str, endpoint_path: str = DEFAULT_ENDPOINT_PATH, cloudflared_binary: str = "cloudflared", + tunnel_name: str | None = None, + stable_hostname: str | None = None, + config_path: str | None = None, + credentials_file: str | None = None, ) -> int: shell_root = Path(root).expanduser().resolve() cloudflared_path = find_cloudflared(cloudflared_binary) @@ -448,12 +527,21 @@ def run_cloudflare_tunnel( running=False, local_url=local_url, endpoint_path=endpoint_path, + transport_mode="named_tunnel" if tunnel_name else "quick_tunnel", + tunnel_name=tunnel_name, + stable_hostname=stable_hostname, error="cloudflared_not_found_on_path", ) print("cloudflared not found on PATH; install it before starting the tunnel.", file=sys.stderr) return 2 - command = build_cloudflared_command(local_url=local_url, cloudflared_binary=cloudflared_path) + command = build_cloudflared_command( + local_url=local_url, + cloudflared_binary=cloudflared_path, + tunnel_name=tunnel_name, + config_path=config_path, + credentials_file=credentials_file, + ) proc = subprocess.Popen( command, stdout=subprocess.PIPE, @@ -462,6 +550,21 @@ def run_cloudflare_tunnel( bufsize=1, ) tunnel_url: str | None = None + normalized_stable_hostname = normalize_stable_hostname(stable_hostname) + if tunnel_name and normalized_stable_hostname: + tunnel_url = f"https://{normalized_stable_hostname}" + status = write_tunnel_status( + shell_root, + tunnel_url=tunnel_url, + running=True, + local_url=local_url, + endpoint_path=endpoint_path, + transport_mode="named_tunnel", + tunnel_name=tunnel_name, + stable_hostname=normalized_stable_hostname, + process_id=proc.pid, + ) + print(json.dumps(status, indent=2, sort_keys=True), flush=True) def shutdown(*_: object) -> None: write_tunnel_status( @@ -470,6 +573,9 @@ def shutdown(*_: object) -> None: running=False, local_url=local_url, endpoint_path=endpoint_path, + transport_mode="named_tunnel" if tunnel_name else "quick_tunnel", + tunnel_name=tunnel_name, + stable_hostname=normalized_stable_hostname, error="shutdown", process_id=proc.pid, ) @@ -493,6 +599,9 @@ def shutdown(*_: object) -> None: running=True, local_url=local_url, endpoint_path=endpoint_path, + transport_mode="named_tunnel" if tunnel_name else "quick_tunnel", + tunnel_name=tunnel_name, + stable_hostname=normalized_stable_hostname, process_id=proc.pid, ) print(json.dumps(status, indent=2, sort_keys=True), flush=True) @@ -503,6 +612,9 @@ def shutdown(*_: object) -> None: running=False, local_url=local_url, endpoint_path=endpoint_path, + transport_mode="named_tunnel" if tunnel_name else "quick_tunnel", + tunnel_name=tunnel_name, + stable_hostname=normalized_stable_hostname, error=f"cloudflared_exited:{returncode}", process_id=proc.pid, ) @@ -520,6 +632,10 @@ def main(argv: list[str] | None = None) -> int: parser.add_argument("--local-url", default=None) parser.add_argument("--endpoint-path", default=DEFAULT_ENDPOINT_PATH) parser.add_argument("--cloudflared-binary", default="cloudflared") + parser.add_argument("--tunnel-name", default=None) + parser.add_argument("--stable-hostname", default=None) + parser.add_argument("--cloudflared-config", default=None) + parser.add_argument("--credentials-file", default=None) parser.add_argument("--self-test", action="store_true") parser.add_argument("--write", action="store_true") parser.add_argument("--output", default=None) @@ -534,6 +650,10 @@ def main(argv: list[str] | None = None) -> int: local_url=local_url, endpoint_path=args.endpoint_path, cloudflared_binary=args.cloudflared_binary, + tunnel_name=args.tunnel_name, + stable_hostname=args.stable_hostname, + config_path=args.cloudflared_config, + credentials_file=args.credentials_file, ) if args.write: @@ -542,6 +662,10 @@ def main(argv: list[str] | None = None) -> int: local_url=local_url, endpoint_path=args.endpoint_path, cloudflared_binary=args.cloudflared_binary, + tunnel_name=args.tunnel_name, + stable_hostname=args.stable_hostname, + config_path=args.cloudflared_config, + credentials_file=args.credentials_file, output=args.output, ) else: @@ -550,6 +674,10 @@ def main(argv: list[str] | None = None) -> int: local_url=local_url, endpoint_path=args.endpoint_path, cloudflared_binary=args.cloudflared_binary, + tunnel_name=args.tunnel_name, + stable_hostname=args.stable_hostname, + config_path=args.cloudflared_config, + credentials_file=args.credentials_file, ) print(json.dumps(result, indent=2, sort_keys=True) if args.json or args.self_test else result["verdict"]) return 0 if result["accepted"] else 1 diff --git a/ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py b/ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py index 68c8c577..757b1f6b 100644 --- a/ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py +++ b/ION/04_packages/kernel/ion_chatgpt_browser_mcp_http_preview.py @@ -7,6 +7,7 @@ from __future__ import annotations import argparse +import html import json import sys from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer @@ -29,12 +30,17 @@ DEFAULT_BIND_HOST = "127.0.0.1" DEFAULT_PORT = 8765 OUTPUT_RELATIVE_PATH = Path("ION/05_context/current/CHATGPT_BROWSER_HTTP_MCP_PREVIEW_V121.json") +APP_PATHS = {"/", "/app", "/ion"} def _json_text(value: Any) -> str: return json.dumps(value, indent=2, sort_keys=True) +def _html_text(value: Any) -> str: + return html.escape(str(value), quote=True) + + def _tool_schema(name: str) -> dict[str, Any]: if name == "ion_read_active_packet": return { @@ -470,6 +476,181 @@ def audit_http_mcp_preview(root: str | Path | None = None) -> dict[str, Any]: } +def render_ion_connector_landing(root: str | Path, *, public_base_url: str | None = None) -> str: + """Render a safe human-facing landing page for the tunnel root. + + The page intentionally exposes only connector posture and tool names. It does + not expose secrets, local absolute paths, source excerpts, or shell controls. + """ + + audit = audit_http_mcp_preview(root) + base = (public_base_url or "").rstrip("/") + connector_hint = f"{base}/mcp" if base else "/mcp" + health_hint = f"{base}/health" if base else "/health" + status_class = "ready" if audit.get("accepted") else "blocked" + allowed_tools = audit.get("allowed_tools") if isinstance(audit.get("allowed_tools"), list) else [] + forbidden_tools = audit.get("forbidden_tools") if isinstance(audit.get("forbidden_tools"), list) else [] + findings = audit.get("findings") if isinstance(audit.get("findings"), list) else [] + tool_items = "\n".join(f"
  • {_html_text(tool)}
  • " for tool in allowed_tools[:80]) + forbidden_items = "\n".join(f"
  • {_html_text(tool)}
  • " for tool in forbidden_tools[:80]) + finding_items = "\n".join(f"
  • {_html_text(item)}
  • " for item in findings) or "
  • none
  • " + return f""" + + + + + + ION Connector + + + +
    +
    +
    {_html_text(audit.get("verdict"))}
    +

    ION Connector

    +

    A bounded browser-carrier surface for ION. This page is a status/UI landing surface; MCP tools remain on {_html_text(connector_hint)}.

    +
    +
    +
    +

    Current Surface

    +

    Endpoint path: {_html_text(audit.get("endpoint_path"))}

    +

    Health JSON: {_html_text(health_hint)}

    +

    Write confirmation required: {_html_text(audit.get("write_confirmation_required"))}

    +
    +
    +

    Authority Boundary

    +
      +
    • Production authority: {_html_text(audit.get("production_authority"))}
    • +
    • Live execution authority: {_html_text(audit.get("live_execution_authority"))}
    • +
    • Deployment authority: {_html_text(audit.get("deployment_authority"))}
    • +
    +
    +
    +

    Allowed MCP Tools

    +
      {tool_items}
    +
    +
    +

    Blocked Capabilities

    +
      {forbidden_items}
    +

    Findings

    +
      {finding_items}
    +
    +
    +
    + + +""" + + def write_http_mcp_preview_audit( root: str | Path | None = None, *, @@ -494,8 +675,36 @@ def _send_json(self, status: int, payload: Mapping[str, Any]) -> None: self.end_headers() self.wfile.write(body) + def _send_html(self, status: int, body_text: str) -> None: + body = body_text.encode("utf-8") + self.send_response(status) + self.send_header("Content-Type", "text/html; charset=utf-8") + self.send_header("Content-Length", str(len(body))) + self.send_header("Cache-Control", "no-store") + self.send_header("X-Content-Type-Options", "nosniff") + self.send_header("Content-Security-Policy", "default-src 'none'; style-src 'unsafe-inline'; base-uri 'none'; frame-ancestors 'none'") + self.end_headers() + self.wfile.write(body) + + def _public_base_url(self) -> str: + host = self.headers.get("host") or "" + if not host: + return "" + proto = self.headers.get("x-forwarded-proto") or ("https" if host.endswith(".trycloudflare.com") else "http") + return f"{proto}://{host}" + def do_GET(self) -> None: # noqa: N802 - stdlib handler name - if self.path != "/health": + path = self.path.split("?", 1)[0] + if path in APP_PATHS: + self._send_html( + 200, + render_ion_connector_landing(self.server.ion_root, public_base_url=self._public_base_url()), # type: ignore[attr-defined] + ) + return + if path == "/app/status.json": + self._send_json(200, audit_http_mcp_preview(self.server.ion_root)) # type: ignore[attr-defined] + return + if path != "/health": self._send_json(404, {"ok": False, "error": "not_found"}) return self._send_json(200, audit_http_mcp_preview(self.server.ion_root)) # type: ignore[attr-defined] diff --git a/ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md b/ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md index 48297167..b1e5fac6 100644 --- a/ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md +++ b/ION/docs/setup/CHATGPT_BROWSER_CLOUDFLARE_TUNNEL_SETUP_V122.md @@ -34,6 +34,16 @@ Local MCP endpoint: http://127.0.0.1:8765/mcp ``` +Local human/app landing: + +```text +http://127.0.0.1:8765/ +http://127.0.0.1:8765/app +``` + +The landing page is a safe status/UI projection. ChatGPT connector setup still +uses `/mcp`, not `/` or `/app`. + ## Terminal 2: Start Cloudflare Tunnel ```bash @@ -52,6 +62,12 @@ Use the `connector_url` field in ChatGPT connector setup. It should end in: /mcp ``` +The tunnel root can be opened in a browser to see the ION connector landing page: + +```text +https:/// +``` + ## ChatGPT Connector Setup In ChatGPT developer mode, create a connector using the public URL: @@ -62,6 +78,47 @@ https:///mcp Do not use the older AIMOS `/sse` endpoint pattern for this V122 connector. +## Stable Hostname / Named Tunnel Path + +The free `trycloudflare.com` quick tunnel is a development path. For a durable +ChatGPT connector URL, use a Cloudflare named tunnel and stable hostname such as +an ION/Helixion-owned subdomain. + +Host setup happens outside ION source control: + +```bash +cloudflared tunnel login +cloudflared tunnel create ion-browser +cloudflared tunnel route dns ion-browser ion.helixion.net +``` + +Do not commit Cloudflare credentials, tunnel tokens, or origin certificates. + +Once host credentials exist, start the ION tunnel runner against the stable +hostname: + +```bash +PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages \ +python3 -S -m kernel.ion_chatgpt_browser_cloudflare_tunnel \ + --ion-root . \ + --start \ + --port 8765 \ + --tunnel-name ion-browser \ + --stable-hostname ion.helixion.net +``` + +Expected public surfaces: + +```text +https://ion.helixion.net/ ION connector landing/app page +https://ion.helixion.net/app same app surface +https://ion.helixion.net/mcp ChatGPT connector MCP endpoint +``` + +If reusing an older AIMOS/Helixion hostname, verify that it routes to the current +ION local preview on port `8765` and endpoint `/mcp`. Do not carry forward old +`/sse` or port `8000` assumptions. + ## Audit ```bash diff --git a/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py b/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py index 6503eab9..150cafce 100644 --- a/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py +++ b/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py @@ -11,6 +11,7 @@ TRANSPORT_TUNNEL_RUNNING_VERIFIED, audit_cloudflare_tunnel, build_cloudflared_command, + build_cloudflared_route_dns_command, connector_url_from_tunnel_url, extract_tunnel_url, find_cloudflared, @@ -51,6 +52,36 @@ def test_build_cloudflared_command_targets_local_preview_root(): assert command == ["/usr/bin/cloudflared", "tunnel", "--url", "http://127.0.0.1:8765"] +def test_build_named_cloudflared_command_targets_local_preview_root(): + command = build_cloudflared_command( + local_url="http://127.0.0.1:8765", + cloudflared_binary="/usr/bin/cloudflared", + tunnel_name="ion-browser", + credentials_file="/home/sev/.cloudflared/ion-browser.json", + ) + + assert command == [ + "/usr/bin/cloudflared", + "tunnel", + "run", + "--credentials-file", + "/home/sev/.cloudflared/ion-browser.json", + "--url", + "http://127.0.0.1:8765", + "ion-browser", + ] + + +def test_build_named_tunnel_route_dns_command(): + command = build_cloudflared_route_dns_command( + cloudflared_binary="/usr/bin/cloudflared", + tunnel_name="ion-browser", + hostname="ion.helixion.net", + ) + + assert command == ["/usr/bin/cloudflared", "tunnel", "route", "dns", "ion-browser", "ion.helixion.net"] + + def test_audit_reports_setup_required_when_cloudflared_missing(): result = audit_cloudflare_tunnel(Path.cwd(), cloudflared_binary="definitely-not-cloudflared") @@ -201,3 +232,47 @@ def test_write_tunnel_status_records_non_authority_fields(tmp_path): assert status["production_authority"] is False assert status["live_execution_authority"] is False assert status["deployment_authority"] is False + + +def test_audit_reports_stable_hostname_plan_without_treating_it_as_active(tmp_path, monkeypatch): + fake_cloudflared = tmp_path / "cloudflared" + fake_cloudflared.write_text("#!/bin/sh\n", encoding="utf-8") + fake_cloudflared.chmod(0o755) + (tmp_path / "pyproject.toml").write_text("[project]\nname = \"ion-test\"\n", encoding="utf-8") + (tmp_path / "ION/REPO_AUTHORITY.md").parent.mkdir(parents=True, exist_ok=True) + (tmp_path / "ION/REPO_AUTHORITY.md").write_text("# authority\n", encoding="utf-8") + monkeypatch.setattr(tunnel, "audit_http_mcp_preview", lambda _root: {"verdict": tunnel.HTTP_PREVIEW_READY_VERDICT}) + monkeypatch.setattr( + tunnel, + "check_connector_health", + lambda *, local_url, connector_url=None, timeout=3.0: { + "local_http_preview": {"ok": True, "status_code": 200, "error": None}, + "local_mcp_tools_list": {"ok": True}, + "public_mcp_tools_list": {"ok": False}, + "public_write_confirmation_required": {"ok": False}, + }, + ) + + result = audit_cloudflare_tunnel( + tmp_path, + cloudflared_binary=str(fake_cloudflared), + tunnel_name="ion-browser", + stable_hostname="https://ion.helixion.net/mcp", + ) + + assert result["stable_hostname"] == "ion.helixion.net" + assert result["stable_connector_url"] == "https://ion.helixion.net/mcp" + assert result["stable_connector_active"] is False + assert result["active_connector_url"] is None + assert result["verdict"] == SETUP_REQUIRED_VERDICT + assert result["connector_state"] == "STABLE_HOSTNAME_NOT_ACTIVE" + assert result["named_tunnel_route_dns_command"] == [ + str(fake_cloudflared), + "tunnel", + "route", + "dns", + "ion-browser", + "ion.helixion.net", + ] + assert "named_tunnel_credentials_or_config_not_found_locally" in result["findings"] + assert "stable_connector_url_not_active" in result["findings"] diff --git a/ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py b/ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py index 20d719c7..53c09117 100644 --- a/ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py +++ b/ION/tests/test_kernel_ion_chatgpt_browser_mcp_http_preview.py @@ -2,11 +2,13 @@ from kernel.ion_chatgpt_browser_mcp_http_preview import ( BOUNDED_QUEUE_RECEIPT_TOOLS, + APP_PATHS, READY_VERDICT, WRITE_CONFIRMATION_TOKEN, audit_http_mcp_preview, handle_mcp_jsonrpc, http_mcp_tool_list, + render_ion_connector_landing, write_http_mcp_preview_audit, ) @@ -180,3 +182,20 @@ def test_write_http_preview_audit(tmp_path): assert output.exists() assert result["verdict"] == READY_VERDICT assert result["write_confirmation_required"] is True + + +def test_connector_landing_page_is_safe_human_ui(): + html = render_ion_connector_landing(Path.cwd(), public_base_url="https://ion.example.test") + + assert "ION Connector" in html + assert "https://ion.example.test/mcp" in html + assert "ION_STATUS_READY" not in html + assert "production_authority" not in html + assert "Production authority" in html + assert "ion_status" in html + assert "arbitrary_shell" in html + assert "/home/sev" not in html + + +def test_connector_landing_paths_include_root_app_and_ion(): + assert {"/", "/app", "/ion"} <= APP_PATHS From 77c4790da664de8967fa4b0011f0c35d1e646bfd Mon Sep 17 00:00:00 2001 From: Braden Date: Tue, 5 May 2026 22:12:53 -0400 Subject: [PATCH 26/30] Harden stable tunnel health checks --- ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py | 2 +- ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py b/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py index 9908791f..26c03466 100644 --- a/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py +++ b/ION/04_packages/kernel/ion_chatgpt_browser_cloudflare_tunnel.py @@ -159,7 +159,7 @@ def _http_json_request( payload: Mapping[str, Any] | None = None, timeout: float = 3.0, ) -> dict[str, Any]: - headers = {"Accept": "application/json"} + headers = {"Accept": "application/json", "User-Agent": "ION-Connector-Health/1.0"} data: bytes | None = None if payload is not None: data = json.dumps(payload).encode("utf-8") diff --git a/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py b/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py index 150cafce..1c7a2428 100644 --- a/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py +++ b/ION/tests/test_kernel_ion_chatgpt_browser_cloudflare_tunnel.py @@ -139,6 +139,7 @@ def test_audit_classifies_stale_status_url_when_tunnel_process_not_running(tmp_p fake_cloudflared = tmp_path / "cloudflared" fake_cloudflared.write_text("#!/bin/sh\n", encoding="utf-8") fake_cloudflared.chmod(0o755) + monkeypatch.setenv("HOME", str(tmp_path / "home")) (tmp_path / "pyproject.toml").write_text("[project]\nname = \"ion-test\"\n", encoding="utf-8") (tmp_path / "ION/REPO_AUTHORITY.md").parent.mkdir(parents=True, exist_ok=True) (tmp_path / "ION/REPO_AUTHORITY.md").write_text("# authority\n", encoding="utf-8") @@ -238,6 +239,7 @@ def test_audit_reports_stable_hostname_plan_without_treating_it_as_active(tmp_pa fake_cloudflared = tmp_path / "cloudflared" fake_cloudflared.write_text("#!/bin/sh\n", encoding="utf-8") fake_cloudflared.chmod(0o755) + monkeypatch.setenv("HOME", str(tmp_path / "home")) (tmp_path / "pyproject.toml").write_text("[project]\nname = \"ion-test\"\n", encoding="utf-8") (tmp_path / "ION/REPO_AUTHORITY.md").parent.mkdir(parents=True, exist_ok=True) (tmp_path / "ION/REPO_AUTHORITY.md").write_text("# authority\n", encoding="utf-8") From 9560f13b8c9fd6017ed84f1f5a6cf20dc78ff6d3 Mon Sep 17 00:00:00 2001 From: Braden Date: Wed, 6 May 2026 14:37:14 -0400 Subject: [PATCH 27/30] Expand ION public docs spine --- CONTRIBUTING.md | 4 + ION/README.md | 19 +- ION/docs/AGENTS_ROLES_CARRIERS.md | 6 + ION/docs/CONTEXT_SYSTEM.md | 11 + .../ION_CONTINUITY_SUBSTRATE_EXPLAINER.md | 1131 +++++++++++++++++ ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md | 317 +++++ ION/docs/ION_FUNDAMENTALS.md | 130 ++ ION/docs/ION_PARALLEL_SETTLEMENT.md | 146 +++ ION/docs/ION_PROJECT_INGESTION.md | 387 ++++++ ION/docs/README.md | 4 + ION/docs/TEMPLATE_LAW.md | 21 + README.md | 641 +++++++++- SECURITY.md | 32 + 13 files changed, 2799 insertions(+), 50 deletions(-) create mode 100644 ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md create mode 100644 ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md create mode 100644 ION/docs/ION_PARALLEL_SETTLEMENT.md create mode 100644 ION/docs/ION_PROJECT_INGESTION.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 727f192a..62400908 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,6 +14,9 @@ Then use the docs layer for the shape of the system: - `ION/docs/README.md` - `ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md` - `ION/docs/ION_FUNDAMENTALS.md` +- `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md` +- `ION/docs/ION_PARALLEL_SETTLEMENT.md` +- `ION/docs/ION_PROJECT_INGESTION.md` - `ION/docs/TEMPLATE_LAW.md` - `ION/docs/CONTEXT_SYSTEM.md` - `ION/docs/AGENTS_ROLES_CARRIERS.md` @@ -48,6 +51,7 @@ Use the smallest lane that matches the work: | Kernel | Python runtime, tests, audits, gates, queue projections. | | Integration | MCP, browser extension, daemon, Cursor, Codex carrier surfaces. | | Context evidence | Receipts, work packets, queue settlement, lifecycle records. | +| Project ingestion | Quarantine, manifests, cartography, domain partition, first context packages. | Keep public docs, runtime implementation, and active-state evidence in separate pull requests when possible. That makes review and future indexing cleaner. diff --git a/ION/README.md b/ION/README.md index 52ed44f6..04b9a9f2 100644 --- a/ION/README.md +++ b/ION/README.md @@ -18,6 +18,16 @@ Important starting points: - `ION/01_doctrine/CANONICAL_WORKFLOW.md` - `ION/07_templates/README.md` +## Public Orientation Docs + +For the public conceptual spine, start here: + +- `ION/docs/ION_FUNDAMENTALS.md` +- `ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md` +- `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md` +- `ION/docs/ION_PARALLEL_SETTLEMENT.md` +- `ION/docs/ION_PROJECT_INGESTION.md` + ## Directory Map ```text @@ -39,6 +49,14 @@ tests pytest suite ## Carrier And Integration Entry Points +- Public docs index: + `ION/docs/README.md` +- Domain graph and fission: + `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md` +- Project ingestion: + `ION/docs/ION_PROJECT_INGESTION.md` +- Parallel settlement: + `ION/docs/ION_PARALLEL_SETTLEMENT.md` - Codex CLI carrier: `ION/docs/setup/CODEX_CLI_ION_DOGFOOD_SETUP_V125.md` - ChatGPT Browser MCP connector: @@ -58,4 +76,3 @@ Run from the repository root: PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages python3 -S -m kernel.ion_status --ion-root . --json PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=ION/04_packages PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest ION/tests -q ``` - diff --git a/ION/docs/AGENTS_ROLES_CARRIERS.md b/ION/docs/AGENTS_ROLES_CARRIERS.md index 5557d691..a35e148a 100644 --- a/ION/docs/AGENTS_ROLES_CARRIERS.md +++ b/ION/docs/AGENTS_ROLES_CARRIERS.md @@ -29,6 +29,12 @@ The domain defines the agent. Prompt text alone does not. As the domain matures, templates sharpen, receipts accumulate, and context improves. The agent's world changes because the governed structure changes. +An ION agent is best understood as domain-local intelligence: an LLM carrier +moving through a governed graph region under template law, proof obligations, +authority ceilings, and receipt requirements. + +See `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md`. + ## Role A role is a bounded ION function. diff --git a/ION/docs/CONTEXT_SYSTEM.md b/ION/docs/CONTEXT_SYSTEM.md index 258bb177..b3bc2e81 100644 --- a/ION/docs/CONTEXT_SYSTEM.md +++ b/ION/docs/CONTEXT_SYSTEM.md @@ -29,6 +29,17 @@ It should make explicit: This is different from relying on a model's ambient recall. +## Context Graph + +ION context is not a pile of files. It is a graph of governed context nodes. + +A file becomes context only when its identity, authority, status, lineage, and +retrieval role are known. The system does not ask which files to dump into a +model. It asks which governed graph objects are lawful for this role, template, +domain, and authority class. + +See `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md`. + ## Inherited Context In ION, the next context is inherited from accepted movement. diff --git a/ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md b/ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md new file mode 100644 index 00000000..964586b9 --- /dev/null +++ b/ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md @@ -0,0 +1,1131 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +source_note: imported from a local Braden/Sev explainer draft +production_authority: false +live_execution_authority: false +--- + +# ION: A Continuity Substrate For AI Work + +This explainer is a long-form public orientation layer. It expands the public +README's claims about lawful acts, context-first domains, templates, receipts, +carriers, and AI-built provenance. It is complemented by focused docs on +domain graph/fission, parallel settlement, and project ingestion: + +- `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md` +- `ION/docs/ION_PARALLEL_SETTLEMENT.md` +- `ION/docs/ION_PROJECT_INGESTION.md` + +It does not replace runtime authority. For active work, mount through +`ION/REPO_AUTHORITY.md`, the mount contract, current packets, registries, +templates, gates, receipts, manifests, and tests. + +**AI output is not state. +ION is the law by which AI work becomes state.** + +--- + +## 1. The Problem + +Most AI agent systems are prompt-first. + +They give an agent a role, a task, and a tool list, then expect the agent to find or reconstruct the context required to perform the work. + +```text +prompt ++ vague role ++ tool access ++ agent searches for context ++ agent reconstructs workflow +``` + +That approach is fragile. The agent must spend its intelligence on orientation before it can begin the real work. It has to discover the domain, decide what matters, infer authority, identify relevant sources, avoid stale context, and guess which workflow applies. + +The result is predictable: + +```text +context drift +stale source use +role confusion +duplicated work +unverified assumptions +weak audit trails +tool calls without durable meaning +output becoming state by accident +``` + +A larger context window does not solve this by itself. A large context window can still be stale, contradictory, expensive, overloaded, and unclear about authority. + +Prompting improves the next answer. + +ION improves the conditions under which an answer may become state. + +--- + +## 2. The Central Question + +ION begins with a question most AI systems answer informally: + +```text +What is an AI output allowed to change? +``` + +A normal agent workflow often allows this collapse: + +```text +model output +→ useful-looking text +→ user trust +→ operational action +→ state +``` + +ION refuses that collapse. + +In ION, an AI output is not truth. It is a **candidate state transition**. + +A candidate transition may become: + +```text +warning +patch +queue item +report +handoff +rejected witness +accepted state delta +receipt +future context +``` + +but only through declared law. + +```text +No proof → no landing. +No Steward decision → no state. +No receipt → no inheritance. +``` + +--- + +## 3. Complexity Reduction + +ION is not valuable because it is complex. + +Complexity alone is cheap. + +ION is valuable because it reduces the operational complexity of long-horizon AI work. + +A large AI workflow quickly exceeds what a model, a chat transcript, or a human operator can safely hold in active memory. ION turns that mass into bounded state transitions: + +```text +intent +→ packet +→ domain +→ template +→ context package +→ proof +→ Steward decision +→ receipt +→ next state +``` + +The central compression is: + +```text +unbounded project complexity +→ bounded executable movement +``` + +ION assumes both humans and models drift. It externalizes continuity into packets, templates, context packages, gates, receipts, and Steward decisions so neither the model nor the operator has to carry the entire system in memory. + +```text +ION increases intelligence not by making the model larger, +but by reducing the complexity of the state the model must safely act upon. +``` + +--- + +## 4. Context-First Domains + +ION is context-first. + +In ION, the domain is already organized. The meaningful data is already classified, routed, and related. The agent does not enter a blank field and hunt for meaning. It enters a governed contextual domain where relevant sources, relationships, templates, authority boundaries, receipts, and neighboring-domain routes are already part of its active or closely routed context. + +```text +governed domain ++ bounded context package ++ governing template ++ known neighboring domains ++ proof obligation ++ receipt path ++ LLM carrier +``` + +The agent no longer has to build the world before acting. The world is already shaped for the act. + +The agent can ask: + +```text +What domain am I inside? +What context is live here? +What template governs this movement? +Which neighboring domains are implicated? +Which specialist should I route to if the work crosses a boundary? +What proof do I owe before this can land? +``` + +This is the difference between an agent improvising its own map and an agent operating inside a mapped territory. + +--- + +## 5. Agents As Contextual Domain Interfaces + +The point of agents in ION is not to create more personalities. + +The point is to reduce the contextual and cognitive load placed on any single LLM at the moment of action. + +A normal agent architecture often tries to solve complexity by compressing more and more of the total system into one agent prompt: + +```text +more role instructions +more rules +more history +more tools +more summaries +more warnings +more responsibilities +``` + +That creates bloat. The agent becomes responsible for too many unrelated fields at once. It must constantly reconcile distant concerns, stale context, conflicting priorities, and oversized history. + +ION takes the opposite approach. + +ION keeps work fields on their own restricted but dynamic paths. + +Each field becomes a contextual domain with: + +```text +its own burden +its own templates +its own context nodes +its own specialist roles +its own authority ceiling +its own proof obligations +its own receipts +its own neighboring-domain relationships +``` + +The “agent” is therefore not primarily a persona. It is a localized LLM-powered interface to a governed domain. + +In this sense, ION is less an agent system than a system of contextual domains powered by LLM carriers. + +```text +contextual domain ++ specialist role ++ governing templates ++ bounded context package ++ proof return ++ receipt += lawful domain movement +``` + +The whole organism emerges from the relation between domains. + +ION does not ask one agent to hold the whole continent of work. It maps the continent into governed regions, lets specialists operate within those regions, and then uses settlement law to relate their outputs back into the whole. + +```text +An ION agent is not a personality. +It is a governed interface to a contextual domain. +``` + +--- + +## 6. Roleplay Becomes Role Execution + +## Role As A Consequence Of Domain + +ION is less about telling an AI what role to perform through a prompt, and more about giving it the domain, context, protocols, routes, and proof obligations that make its role the natural path of movement. + +A prompt says: + +```text +Act like this. +``` + +ION says: + +```text +You are inside this domain. +These are the live context objects. +These templates govern movement here. +These routes are available. +These neighboring domains may be contacted. +This is the authority ceiling. +This is the proof owed. +This is how the result can land. +``` + +The role is not merely instructed. It emerges from the structure of the domain. + +In a weak agent system, the model must remember to stay in role. + +In ION, the role is reinforced by the terrain itself. The domain, templates, context package, allowed routes, proof gates, and receipt path make lawful movement easier than drift. + +That is the deeper meaning of role consistency in ION: + +```text +The role is not a costume placed on the model. +The role is the shape of movement permitted by the domain. +``` + +AI is excellent at inhabiting roles. + +That is one of its greatest practical features. A capable model can adopt a pattern of behavior from context: researcher, critic, planner, analyst, engineer, teacher, auditor. + +But current agent systems usually define agents too weakly: + +```text +role prompt ++ tools ++ vague goal += agent +``` + +The role is floating inside an underbuilt domain. The system tells the model: + +```text +You are a researcher. +You are a planner. +You are a coder. +You are a critic. +``` + +But it does not define enough of: + +```text +what domain the role belongs to +what context the role may trust +what routes the role may take +what templates govern its acts +what proof it owes +what state it may touch +what happens to its output +who accepts or rejects the result +``` + +So the role drifts. + +ION turns roleplay into governed role execution. + +A normal agent is asked to play a role. An ION agent is given a world where the role can remain true. + +```text +AI is excellent at inhabiting roles. +Current agent systems fail because they treat the role as a prompt. +ION treats the role as a mounted function inside a governed domain. +``` + +--- + +## 7. Templates As Exposed Reasoning + +Templates are ION’s type system for work. + +A template is not merely a markdown form. It is a governed action type. It defines what kind of act is happening, what context must be loaded, what output is valid, what authority is being exercised, what state may be touched, what proof is owed, and what route follows. + +A template says: + +```text +This kind of act may occur here, +under these relationships, +with this evidence, +toward this kind of next state. +``` + +Templates are also one of ION’s main ways of exposing, organizing, and improving AI reasoning. + +A normal LLM may reason internally, plan loosely, or produce a polished answer without showing where the action came from, which context mattered, what authority was being exercised, or what proof is owed. + +ION uses templates to force that hidden cognitive movement into an inspectable shape. + +A template asks the AI to externalize: + +```text +what kind of act it thinks it is performing +what domain the act belongs to +what context it is relying on +what assumptions it is making +what proof it owes +what output class it is producing +what it is not allowed to change +what route follows +what receipt future work should inherit +``` + +This does not require raw chain-of-thought exposure. It requires structured action cognition. + +The user does not need the model’s private stream of consciousness. The user needs a trustworthy account of: + +```text +why this act is valid +what it depends on +what it can change +what proof it has +what should happen next +``` + +Templates turn AI reasoning from private improvisation into public, checkable workflow structure. + +```text +Templates convert hidden cognition into governed action structure. +``` + +--- + +## 8. Context Packages + +Context packages are ION’s type system for situated knowing. + +A context package is not a summary, memory dump, boot file, or list of paths. + +It is the bounded world a mounted role is allowed to act inside for one lawful step. + +The mature pair is: + +```text +bounded context package + governing template = lawful execution substrate +``` + +A template without context is formalized ignorance. + +A context package without a template is informed improvisation. + +The template bounds the movement. The context package bounds the world. + +### Context Is Inherited Movement + +ION context is not merely selected. It is inherited from prior accepted acts. + +A context package is what the system has lawfully inherited for a bounded act. + +That inheritance may be built from: + +```text +prior audits +prior builds +prior refusals +prior acceptances +prior receipts +prior handoffs +prior containment decisions +prior context deltas +prior template evolutions +prior domain-route decisions +``` + +The agent is not simply given context. + +The agent is mounted inside a world that prior lawful template movement created. + +```text +ION does not merely store context. +ION manufactures lawful context through template-governed movement. +``` + +--- + +## 9. The Self-Documenting Context Graph + +ION is not a pile of files. + +ION is a living context graph. + +Before ION can use a file as trusted context, ION must know what that file is. + +A meaningful file should be classifiable by: + +```text +identity +template or schema +graph node type +graph region +system family +authority status +operational status +epistemic status +owner or reviewer role +lineage posture +approved context status +retrieval zone +dependencies +downstream dependents +receipts +``` + +A file is not context because it exists. + +A file becomes context when its identity, authority, status, lineage, and retrieval role are known. + +This is how ION avoids prompt stuffing. + +The system does not ask: + +```text +What files should we dump into the model? +``` + +It asks: + +```text +What graph nodes are lawful context for this role, template, domain, and authority class? +``` + +```text +ION does not retrieve files. +ION retrieves governed graph objects. +``` + +--- + +## 10. Receipts And Balances + +Most companies experimenting with agents are not actually learning from their agents. + +They are watching outputs, reacting to obvious failures, and calling that iteration. + +That is not enough. + +For any company using AI agents, ask: + +```text +When the agent fails, what exactly do you learn? +``` + +If the answer is: + +```text +We saw the output was wrong. +We changed the prompt. +We added another instruction. +We told the agent not to do that again. +``` + +then they do not have a real improvement loop. They have prompt patching. + +ION gives them the missing substrate: + +```text +agent action +→ receipt +→ failure classification +→ template correction +→ context correction +→ workflow correction +→ regression test +→ next run +``` + +Receipts record what happened, why, under which authority, with which proof. + +Balances check against drift, stale context, unapproved action, duplicate work, and output becoming state too early. + +```text +An agent workflow without receipts is not auditable, +and an unauditable agent workflow cannot reliably improve. +``` + +--- + +## 11. Failure Mechanisms + +Most agent workflows can detect that something went wrong. + +They usually cannot answer: + +```text +Where did the failure enter? +Which assumption caused it? +Which context item was stale? +Which tool call changed the state? +Which handoff lost information? +Which instruction conflicted with another? +Which output was treated as truth too early? +Which approval boundary was missing? +``` + +Without that, the team is not improving the system. They are adding behavioral bandages. + +The failure pattern is: + +```text +agent fails +→ team observes bad output +→ team adds another instruction +→ context gets larger +→ failure shifts elsewhere +→ nobody knows the causal mechanism +``` + +That is not learning. That is prompt sediment. + +ION tries to make the failure mechanism visible. + +A normal agent workflow says: + +```text +The agent made a bad recommendation. +Add a rule: “Do not make unsupported recommendations.” +``` + +ION asks: + +```text +Was the context stale? +Was the wrong template used? +Was the output accepted without proof? +Was a source missing? +Was the role mounted incorrectly? +Was a prior receipt ignored? +Was the recommendation outside the authority ceiling? +Was the workflow missing a human gate? +``` + +```text +Prompt patching hides failure. +Receipt-based workflows locate failure. +``` + +```text +ION turns agent failure from an anecdote into a traceable state-transition defect. +``` + +--- + +## 12. Git For AI Work + +Git made software development safer by making code history inspectable, reversible, branchable, and reviewable. + +ION applies that principle to AI-mediated work. + +Git lets developers ask: + +```text +What changed? +Who changed it? +Can we review, branch, merge, or revert it? +``` + +ION lets AI workflows ask: + +```text +What did this output try to change? +What context did it rely on? +What proof did it provide? +Was it accepted? +Can we replay, reject, branch, or recover? +``` + +| Git | ION | +|---|---| +| Commit | Receipt | +| Diff | Proposed state delta | +| Branch | Alternate work trajectory | +| Merge | Steward integration | +| Revert | Rejection / rollback / containment | +| Blame | Provenance / context proof | +| Tag | Ratified milestone / accepted state | +| Pull request | Candidate transition awaiting review | +| CI check | Proof gate / template action gate | +| Repository history | Continuity ledger | + +Git stores file history. + +ION stores workflow history. + +Git can tell you what changed in a file. ION tries to tell you why an AI action occurred, what context made it possible, what proof it owed, what authority it claimed, whether it was accepted, and what future context inherited from it. + +```text +Git is to code what ION is to AI-mediated state. +``` + +--- + +## 13. Temporality And Horizon State + +ION is not only about current context. It is about temporal continuity. + +Most agent systems treat future work informally: + +```text +next step +later task +future idea +maybe follow up +``` + +ION treats time as a governance surface. + +Future work can have a commitment gradient: + +```text +SPECULATIVE +EMERGING +LIKELY +PRECOMMITTED +COMMITTED +ENACTED +COMPLETED +``` + +This matters because long-horizon AI work fails when the model collapses all future possibilities into the current answer, or forgets future pressure entirely. + +ION preserves future work as structured pressure, then tightens it only when dependencies, readiness, authority, and context permit. + +```text +ION does not only manage context. +It manages temporal commitment. +``` + +```text +The future schedule is neither fully precomputed nor improvised. +It is progressively compiled. +``` + +--- + +## 14. Progressive Schedule Compilation + +ION’s scheduler is not a queue and not a second planner. + +It is the lawful orchestration intelligence of the organism. + +The scheduler decides, inside kernel law: + +```text +what should run now +what should wait +what remains provisional +what becomes more fixed +which executor or carrier should carry it +how future schedule structure changes as present work compiles +``` + +A normal agent plan is fragile because it is either: + +```text +too fixed too early +or too improvised too late +``` + +ION’s scheduler preserves a living plan without letting it become a hidden autonomous planner. + +```text +ION does not simply queue work. +ION compiles the future as evidence arrives. +``` + +--- + +## 15. Fan-Out, Fan-In, And Settlement + +Fan-out is easy. + +Fan-in is where agent systems usually fail. + +ION’s parallelism is not a swarm free-for-all. + +Parallel work is one lawful parent scope temporarily partitioned into bounded branches. + +Each branch must have: + +```text +parent scope +branch identity +bounded objective +packet family +executor or executor class +read/write boundary +expected return family +settlement target +``` + +Branch returns are proposals, not truth. Parallel return does not imply landing. The organism is not settled until the parent scope performs an explicit settlement act. + +Settlement asks: + +```text +Which branch returns were considered? +Which conflicts were observed? +Which returns can be accepted independently? +Which need synthesis? +Which require escalation? +What receipt makes the settlement inheritable? +``` + +```text +ION’s parallelism is not many agents talking. +It is bounded branches returning to one settlement law. +``` + +--- + +## 16. Executor Capability And Best-Agent Routing + +ION does not merely choose “an agent.” + +It chooses an executor or carrier based on capability, trust posture, domain fitness, availability, concurrency, and side-effect constraints. + +A task might need: + +```text +ChatGPT Browser for strategic reasoning +Codex CLI for local filesystem and tests +NEMESIS for adversarial review +SCRIBE for documentation and receipts +VIZIER for horizon and routing pressure +STEWARD for settlement and integration +``` + +The point is not to have many agents for spectacle. + +The point is to route work to the right specialist under the right authority ceiling. + +```text +ION does not ask which agent sounds appropriate. +It asks which executor is lawful for this act. +``` + +```text +Best-agent routing is not personality matching. +It is capability, domain, authority, and proof matching. +``` + +--- + +## 17. True Names And Semantic Integrity + +In ION, names are load-bearing. + +A casual rename can cause drift. A historical name can re-enter and impersonate current authority. A clean new name can erase lineage. A deep name can be over-activated before it is ratified. + +ION’s semantic layer distinguishes: + +```text +registry identifier +display name +structural identity +historical naming truth +true-name status +``` + +This matters for agents, domains, templates, and even the identity of ION itself. + +If the system cannot tell whether a name is current authority, historical witness, provisional language, or deep-name research, it can drift by speaking beautifully. + +```text +In ION, names are not labels. +Names are load-bearing routes through the system. +``` + +--- + +## 18. The Context Authority Team + +ION has specialist roles whose job is to protect ION’s own self-understanding. + +This includes roles such as: + +```text +IONOLOGIST +CONTEXT_CARTOGRAPHER +RUNTIME_CARTOGRAPHER +CANON_LIBRARIAN +TEMPLATE_CURATOR +``` + +Examples: + +```text +IONOLOGIST asks: What is ION, exactly, in the current branch? + +CONTEXT_CARTOGRAPHER asks: What context does this exact agent need, and what proves it received it? + +RUNTIME_CARTOGRAPHER asks: How does ION actually run here, on this carrier, with these limits? + +CANON_LIBRARIAN asks: Which source is live authority, donor evidence, or stale? + +TEMPLATE_CURATOR asks: What template makes this context action lawful, repeatable, and checkable? +``` + +These are not decorative personas. They are semantic maintenance organs. + +```text +ION needs agents that do the work, +and agents that protect the meaning of the work. +``` + +--- + +## 19. Context-Perfect Continuation + +A handoff is not enough if the next worker cannot reproduce the required context. + +ION asks a packet to materialize its exact required reads into one bounded continuation bundle and leave durable witness that the continuation context was explicit, present, and reproducible at that moment. + +A model cannot simply say: + +```text +The next agent should understand what I mean. +``` + +ION asks the system to produce: + +```text +the packet +the role session +the exact required reads +the manifest +the checksums +the continuation receipt +``` + +This is how ION turns continuation from memory into artifact. + +```text +Continuation is not a summary. +Continuation is a reproducible bundle. +``` + +--- + +## 20. The Living Encyclopedia + +The ION encyclopedia is not a detached explanation document. + +It is a maintained state object. + +It preserves the current reader spine, historical doctrine, version and gate namespace, proof boundaries, and next lawful implementation path. + +It may explain current state and preserve historical doctrine, but it may not ratify production readiness, claim tests not run, treat candidate files as live implementation, or override source files, manifests, receipts, or tests. + +ION documentation is not explanation after the fact. It is part of recoverability. + +```text +ION documentation is not explanation after the fact. +It is a governing organ of recoverability. +``` + +--- + +## 21. Memory, Temporality, And Commitment + +A future task, appointment, review, or obligation should not be stored only as a note, reminder, or chat memory. + +It should become a governed object with: + +```text +commitment_id +source conversation +normalized time/date/timezone +uncertainty +why it matters +related people/projects +required preparation +reminder policy +approval status +external tool receipt +future check-in rule +closure receipt +``` + +A calendar integration stores events. + +ION should store accountable commitments. + +```text +Memory is not enough. +Commitments need lifecycle. +``` + +--- + +## 22. Multi-Model / Multi-Carrier ION + +ION is carrier-agnostic. + +No single model or tool is best for every act. + +Some tasks may need: + +```text +ChatGPT Browser for strategic reasoning and communication +Codex CLI for local code/test work +other model carriers for alternate review +local Python tools for analysis +GitHub for durable coordination +extension/daemon for browser-local interaction +future API workers for scalable structured execution +``` + +ION’s job is not to worship one carrier. + +ION’s job is to make each carrier lawful for the act it carries. + +```text +ION does not need one perfect model. +ION needs lawful routing across imperfect carriers. +``` + +--- + +## 23. Mini-ION + +A company does not need to adopt the entire ION system to benefit from ION. + +The first step is applying ION’s core law to one serious agent workflow: + +```text +AI output is proposal until it has context, proof, approval, and receipt. +``` + +A mini-ION workflow may include: + +```text +1. Agent task packet +2. Context/source manifest +3. Workflow template +4. Agent output +5. Proof checklist +6. Human approval / rejection +7. Receipt +8. Failure classification +9. Workflow improvement recommendation +``` + +This is a practical first step for organizations already experimenting with agents. + +--- + +## 24. Example: Portfolio Review Workflow + +This example concerns workflow governance only. It is not financial advice. + +### Ungoverned Agent Workflow + +```text +agent reads mixed sources +agent summarizes confidently +agent recommends action +human may not know which data was used +no receipt +no approval boundary +no stale-data warning +``` + +### ION-Governed Workflow + +```text +Portfolio Review Packet +→ Client / portfolio context package +→ Market and source context package +→ Investment Analysis Template +→ Recommendation Proposal +→ Source and assumption proof +→ Human review +→ Decision receipt +→ Next-review context +``` + +Key questions: + +```text +Which data did the agent use? +Was the data current? +Which assumptions were made? +Which sources were stale? +Was this advice, analysis, or execution? +Who approved it? +What changed after approval? +Can the decision be audited later? +Can the workflow improve from the failure? +``` + +--- + +## 25. AI-Built Provenance + +ION is not only a continuity substrate for AI work. It is also a live artifact of that problem. + +To the operator’s knowledge, every project artifact in the repository — code, protocols, tests, documentation, work packets, receipts, recovery notes, UI iterations, and integration plans — was generated by ChatGPT/Codex carriers under human direction. + +The human operator supplied intent, correction, pressure, taste, review, and authority boundaries. The AI carriers produced the written system. + +That matters because ION was built inside the same failure mode it addresses. Long-horizon AI work repeatedly encountered context loss, drift, stale authority, weak handoff, and uncertainty about what output was allowed to change. ION emerged as the governance substrate required to make that work continue. + +In that sense, ION is both the tool and the evidence: + +```text +AI-built. +Human-steered. +Proof-gated. +Receipted. +``` + +```text +ION is the system ChatGPT built to make ChatGPT-built work continue. +``` + +--- + +## 26. Final Compressions + +```text +Prompting tries to make the model behave. +ION designs the world the model acts inside. +``` + +```text +A trustworthy agent is not created by prompting a model into obedience. +A trustworthy agent is created by placing a capable model inside a governed domain where valid work is easier than drift. +``` + +```text +ION turns AI roleplay into governed role execution. +``` + +```text +Prompt patching hides failure. +Receipt-based workflows locate failure. +``` + +```text +ION turns agent failure from an anecdote into a traceable state-transition defect. +``` + +```text +Git made code safe to evolve. +ION is trying to make AI work safe to evolve. +``` + +```text +ION increases intelligence not by making the model larger, +but by reducing the complexity of the state the model must safely act upon. +``` + +```text +The goal is not to build an AI that never drifts. +The goal is to build a system where drift has nowhere important to land. +``` + +```text +AI-built. +Human-steered. +Proof-gated. +Receipted. +``` + +```text +ION is the system ChatGPT built to make ChatGPT-built work continue. +``` diff --git a/ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md b/ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md new file mode 100644 index 00000000..178cd137 --- /dev/null +++ b/ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md @@ -0,0 +1,317 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# ION Domain Graph And Fission + +ION is a living context graph operated by lawful agents through templates. + +This document explains the graph substrate behind domains, context packages, +domain-local agents, and domain fission. It is orientation material, not +runtime authority. Active authority lives in `ION/REPO_AUTHORITY.md`, the mount +contract, current packets, registries, templates, gates, receipts, manifests, +and tests. + +## Recovered Graph Law + +ION is made of: + +```text +typed contextual nodes +typed edges +context packages +graph regions +agent jurisdictions +templates +receipts +settlements +``` + +A domain is not merely a category or folder. It is a governed graph region with +jurisdiction, templates, context nodes, edges, receipts, and specialist +responsibility. + +The graph holds continuity. Agents hold bounded graph regions. + +```text +Agents are bounded graph-region carriers. +Domains are governed graph regions. +Templates are graph-operation law. +Receipts are graph-continuity records. +Settlement is graph fan-in. +``` + +## Why Graph Law Matters + +Without graph framing, it becomes easy to over-personalize agents or treat +domains as ordinary topic buckets. + +The stronger framing is: + +```text +No agent is expected to hold all of ION. +The graph holds continuity. +Agents hold bounded graph regions. +Manager agents call graph-region specialists and synthesize their settlements. +``` + +That is what makes context bounded without becoming arbitrary. + +## Self-Documenting Context Graph + +Before ION can use a file as trusted context, ION must know what that file is. + +A meaningful file should be classifiable by: + +```text +identity +template or schema +graph node type +graph region +system family +authority status +operational status +epistemic status +owner or reviewer role +lineage posture +approved context status +retrieval zone +dependencies +downstream dependents +receipts +``` + +A file is not context because it exists. + +A file becomes context when its identity, authority, status, lineage, and +retrieval role are known. + +```text +ION does not retrieve files. +ION retrieves governed graph objects. +``` + +## Domain-Local Intelligence + +An ION agent is domain-local intelligence. + +It is not a freestanding mind. It is not a personality. It is an LLM carrier +moving through a governed local domain. + +The domain supplies: + +```text +meaning +scope +routes +constraints +proof +neighbor relations +authority +memory inheritance +``` + +The LLM supplies: + +```text +inference +language +pattern completion +planning +synthesis +critique +implementation +``` + +The result is: + +```text +agent = domain-local inference under governance +``` + +The model can still drift. The domain makes drift less useful and less able to +land. + +## Environmental Alignment + +Most agent alignment tries to tell the model what not to do. + +ION builds an environment where valid movement is easier than invalid movement. + +A prompt says: + +```text +Do not drift. +Do not hallucinate. +Do not use stale context. +Do not take action without approval. +``` + +ION says: + +```text +This is your context package. +This is your template. +This is your authority ceiling. +This is your proof obligation. +This is your receipt path. +This is your settlement target. +``` + +Prompt alignment tries to shape behavior inside the model. + +ION shapes the world around the model. + +This does not make mistakes impossible. It makes mistakes harder to convert +into state. + +## Domain Fission + +ION domains should be able to split. + +A domain is not meant to grow forever merely because it began as the right home +for a class of work. Over time, a domain can become too internally complex for +one agent, one context package family, or one template set to manage cleanly. + +The split point is not size alone. Size matters, but the deeper signal is +contextual relationship complexity. + +A domain may need fission when: + +```text +too many unrelated templates compete inside one domain +the same agent must carry incompatible burdens +context packages become too broad or noisy +neighboring-domain routes become more frequent than local work +receipts show recurring confusion about ownership +the domain contains multiple stable sub-burdens +failure analysis repeatedly points to mixed context +the agent spends more effort orienting than acting +proof obligations diverge into different classes +one authority ceiling no longer fits the whole domain +``` + +The question is not: + +```text +How large is this domain? +``` + +The better question is: + +```text +Can one bounded agent/domain interface still manage this context without +excessive drift, noise, routing ambiguity, or proof confusion? +``` + +If not, the domain should split into clearer domains. + +## Fission Is Governance + +Domain fission is not folder cleanup. It is a governance act. + +A lawful domain split should preserve: + +```text +parent domain identity +reason for split +new child domains +burdens moved to each child +templates moved or duplicated +context nodes assigned to each child +receipts and lineage retained +neighboring-domain routes updated +primary and secondary roles updated +authority ceilings clarified +settlement route between child domains +``` + +The old domain should not silently disappear. It may become: + +```text +archived parent +routing shell +historical lineage node +umbrella domain +coordination domain +``` + +## Complexity Pressure Signals + +ION should eventually maintain domain health indicators. + +Possible signals: + +```text +context package size trend +template count and overlap +number of active neighboring-domain routes +number of unresolved cross-domain handoffs +frequency of stale-context warnings +frequency of proof-gate failures +duplicate work or duplicate packet rate +agent uncertainty about ownership +receipt references crossing domain boundaries +number of distinct authority ceilings inside the domain +failure classifications caused by mixed context +``` + +These signals should not automatically force a split. They should raise fission +pressure. + +## Fission Workflow + +A domain split should follow a governed path: + +```text +1. detect complexity pressure +2. audit domain burdens +3. map context clusters +4. identify stable subdomains +5. assign templates and context nodes +6. define new domain boundaries +7. define neighbor routes and settlement paths +8. migrate receipts and lineage +9. update registry +10. emit domain_fission_receipt +``` + +## Recovered Non-Loss Rule + +ION should preserve this non-loss rule: + +```text +A graph region may not grow into an unbounded context blob. +When relationship complexity exceeds lawful context manageability, the region +must be audited for fission, delegation, or settlement restructuring. +``` + +This restores the graph-substrate truth and gives it an evolutionary mechanism. + +## Strong Formulations + +```text +A domain should split when its relationship complexity exceeds one agent's +lawful context-management capacity. +``` + +```text +Domain fission is graph maintenance. +``` + +```text +A domain is a governed graph region, not a topic folder. +``` + +```text +ION scales because the graph holds continuity while agents hold bounded graph +regions. +``` + +```text +The split point is not size. +The split point is context manageability. +``` diff --git a/ION/docs/ION_FUNDAMENTALS.md b/ION/docs/ION_FUNDAMENTALS.md index 42a7ee7e..793ba142 100644 --- a/ION/docs/ION_FUNDAMENTALS.md +++ b/ION/docs/ION_FUNDAMENTALS.md @@ -43,6 +43,9 @@ This chain is what separates continuation from reconstruction. A fresh carrier does not need to trust an older model's private memory. It can inherit the packet, context, template, proof, decision, and receipt trail. +Prompting tries to make the model behave. ION designs the world the model acts +inside. + ## Candidate State Every meaningful AI result is a candidate state transition. @@ -62,6 +65,31 @@ and replaces it with: candidate -> proof -> decision -> receipt -> inheritable state ``` +The goal is not to build an AI that never drifts. The goal is to build a system +where drift has nowhere important to land. + +## Complexity Reduction + +ION is not valuable because it is complex. It is valuable because it reduces +the operational complexity of long-horizon AI work. + +A large AI workflow quickly exceeds what a model, a chat transcript, or a human +operator can safely hold in active memory. ION turns that mass into bounded +state transitions: + +```text +intent -> packet -> domain -> template -> context package -> proof -> Steward decision -> receipt -> next state +``` + +The central compression is: + +```text +unbounded project complexity -> bounded executable movement +``` + +ION increases intelligence not by making the model larger, but by reducing the +complexity of the state the model must safely act upon. + ## Context Inheritance ION context is not merely selected for a worker. It is inherited from prior @@ -71,6 +99,100 @@ That matters because context quality improves only when accepted work changes what future workers receive. If a receipt does not improve the next context, the system has recorded activity without true continuation. +## Context-First Domains + +ION does not ask an agent to enter a blank field and reconstruct meaning from +scratch. It mounts the carrier inside a governed contextual domain where +sources, relationships, templates, neighboring routes, authority boundaries, +and proof obligations are already part of the working surface. + +The agent no longer has to build the world before acting. The world is shaped +for the act. + +```text +governed domain ++ bounded context package ++ governing template ++ known neighboring domains ++ proof obligation ++ receipt path ++ carrier +``` + +This is the difference between an agent improvising its own map and a carrier +operating inside mapped territory. + +## Context Graph And Domain Fission + +ION is not a pile of files. It is a living context graph operated through +lawful templates. + +A domain is a governed graph region, not a topic folder. Domains should be able +to split when their relationship complexity exceeds one agent's lawful +context-management capacity. + +The split point is not size alone. The split point is context manageability. + +See `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md`. + +## Receipts As Learning + +An agent workflow without receipts is not auditable, and an unauditable agent +workflow cannot reliably improve. + +ION turns failure from anecdote into a traceable state-transition defect: + +```text +agent action -> receipt -> failure classification -> template correction -> context correction -> regression test -> next run +``` + +Prompt patching hides failure. Receipt-based workflows locate failure. + +## Git For AI Work + +Git made software safer by making code history inspectable, reversible, +branchable, and reviewable. ION applies that principle to AI-mediated state. + +| Git | ION | +| --- | --- | +| Commit | Receipt | +| Diff | Proposed state delta | +| Branch | Alternate work trajectory | +| Merge | Steward integration | +| Revert | Rejection / rollback / containment | +| CI check | Proof gate / template action gate | + +Git stores file history. ION stores workflow history. + +## Parallel Settlement + +Fan-out is easy. Fan-in is where agent systems usually fail. + +ION treats parallel return as a settlement problem. Branch returns are +proposals, not truth. The parent scope must decide which returns are accepted, +merged, escalated, deferred, or abandoned, and must leave a receipt showing what +future work may inherit. + +See `ION/docs/ION_PARALLEL_SETTLEMENT.md`. + +## Project Ingestion + +ION must not assume it only governs itself. + +A new project is not ION-manageable because it has been uploaded. It becomes +ION-manageable when its structure, authority, domains, context nodes, +templates, risks, and first receipts have been established. + +The intended path is: + +```text +external project -> quarantine -> manifest -> cartography -> context graph +-> domain partition -> template binding -> risk classification +-> first context packages -> receipts -> governed work loop +``` + +See `ION/docs/ION_PROJECT_INGESTION.md`. + ## Runtime Truth README prose, docs, and historical reports are orientation. Runtime truth is @@ -98,3 +220,11 @@ Public GitHub is the collaboration and data plane. It is not runtime authority, production authority, secret authority, or proof of acceptance. Local ION law remains the authority membrane. + +To the operator's knowledge, the project artifacts in this repository have been +AI-built under human direction. The human operator supplies intent, correction, +pressure, taste, review, and authority boundaries. ION exists because this +AI-mediated work needed a way to continue without treating raw output as state. + +For the longer public explanation, see +`ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md`. diff --git a/ION/docs/ION_PARALLEL_SETTLEMENT.md b/ION/docs/ION_PARALLEL_SETTLEMENT.md new file mode 100644 index 00000000..ce4f139d --- /dev/null +++ b/ION/docs/ION_PARALLEL_SETTLEMENT.md @@ -0,0 +1,146 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# ION Parallel Settlement + +Fan-out is easy. + +Fan-in is where agent systems usually fail. + +ION's parallelism is not a swarm free-for-all. Parallel work is one lawful +parent scope temporarily partitioned into bounded branches. Each branch return +is a proposal, not truth. The parent scope must perform an explicit settlement +act before anything becomes accepted state. + +## Branch Return Requirements + +A lawful branch return should preserve: + +```text +parent scope +branch identity +bounded objective +executor or carrier used +context package used +template followed +files or state touched +proof supplied +conflicts or uncertainties observed +recommended settlement path +``` + +Parallel return does not imply landing. + +## Settlement Outcomes + +The Steward does not blindly merge branches. It classifies the settlement +condition. + +Minimum outcomes: + +```text +ACCEPTED_AS_IS +MERGE_PROPOSAL_REQUIRED +ESCALATE_REVIEW +DEFERRED +ABANDONED +``` + +## Automated Assistance vs Acceptance Authority + +ION may use an LLM carrier to analyze branch returns or draft a merge proposal. + +That carrier might be selected because it has the right capability profile: + +```text +MASON_CLI for implementation merge work +NEMESIS_CLI for adversarial conflict review +VIZIER_CLI for strategic route analysis +SCRIBE_CLI for receipt and documentation synthesis +STEWARD_REVIEW_CLI for integration analysis +``` + +But that model-assisted synthesis is still a proposal. + +The model may help answer: + +```text +Do these branches conflict? +Which files or claims overlap? +Can they be accepted independently? +Is a merge proposal coherent? +What proof is missing? +Should this escalate? +``` + +It does not become state because it sounds coherent. + +## Settlement Gate + +A settlement boundary becomes more human-gated as risk increases. + +Low-risk settlement may be automated when: + +```text +branches touch non-overlapping surfaces +all proofs pass +tests pass +authority ceiling is low +no stale context is detected +no state-bearing conflict exists +``` + +Human or higher Steward review is required when: + +```text +branches overlap in write scope +branch conclusions disagree +authority ceiling is high +business, legal, financial, safety, deployment, or secret-bearing risk exists +tests conflict +proof is incomplete +a branch tries to widen scope +the merge would alter accepted state +``` + +In short: + +```text +LLMs may draft settlement analysis. +ION decides whether that analysis is admissible. +Steward or human authority decides whether it lands. +``` + +## Settlement Receipt + +Every meaningful settlement should leave a receipt showing: + +```text +which branches returned +which evidence was considered +which conflicts were found +which outcome was chosen +whether human review was required +what was accepted +what was rejected +what remains deferred +what next packet or context package inherits the result +``` + +This makes parallel work reversible, auditable, and replayable. + +## Strong Formulation + +```text +ION does not solve fan-in by asking one model to summarize everything. +ION solves fan-in by making settlement a lawful state-transition act. +``` + +```text +The intelligence of parallel work is not only in splitting tasks. +It is in settling returns. +``` diff --git a/ION/docs/ION_PROJECT_INGESTION.md b/ION/docs/ION_PROJECT_INGESTION.md new file mode 100644 index 00000000..cc45d5fe --- /dev/null +++ b/ION/docs/ION_PROJECT_INGESTION.md @@ -0,0 +1,387 @@ +--- +type: public_orientation +status: DRAFT_NON_AUTHORITY +production_authority: false +live_execution_authority: false +--- + +# ION Project Ingestion + +ION must not assume it only governs itself. + +If ION is to help another project, company, workflow, or codebase, it needs a +lawful way to ingest that external project and organize it into ION-manageable +form. + +This is not the same as uploading a ZIP and asking an AI to "understand the +project." That is the old failure pattern. + +ION project ingestion should mean: + +```text +external project +-> quarantine +-> manifest +-> structural cartography +-> context graph genesis +-> domain partition +-> template binding +-> capability map +-> risk and authority classification +-> first context packages +-> receipts +-> governed work loop +``` + +## Core Law + +```text +A project is not ION-manageable because it has been uploaded. +A project becomes ION-manageable when its structure, authority, domains, +context nodes, templates, risks, and first receipts have been established. +``` + +## Why This Matters + +A normal AI workflow ingests a project like this: + +```text +upload repo +summarize files +ask model what it thinks +start patching +``` + +That is dangerous. + +The model may misunderstand the project, over-trust stale docs, miss hidden +build constraints, ignore compliance boundaries, hallucinate architecture, or +mutate state before the project has even been classified. + +ION treats a new project as an untrusted external graph. + +Before ION can work on it, ION must learn: + +```text +what the project is +what files exist +what systems are active +what documents are stale +what tests exist +what workflows matter +what authority boundaries apply +what domains are present +what agents or specialists are needed +what templates govern work +what state may be touched +``` + +## Existing Organs + +This capability is partially present in ION, but not yet unified under a single +project ingestion protocol. + +Existing or adjacent organs include: + +```text +bootstrap-init and bootstrap-bridge surfaces +lifecycle-aware package/root integrity +bundle import/export/replay alpha +context graph substrate +self-documenting context graph +context node and package protocol +context-perfect continuation +executor capability registry +living encyclopedia maintenance +``` + +These pieces imply that ION already knows many parts of project ingestion: + +```text +how to validate a root +how to package a project +how to import/export bundles +how to refuse tampered or authority-inflating bundles +how to classify files as graph nodes +how to assign approved-context status +how to materialize continuation bundles +how to route context to specialist agents +``` + +What is missing is the unified ingestion workflow. + +## Phase 0: Quarantine + +A new project enters as untrusted material. + +It should be placed in a quarantine or staging root. ION should not immediately +treat its files as approved context. + +```text +external project package +-> quarantine/staging root +-> no mutation authority +-> no trusted context status +``` + +## Phase 1: Root And Package Integrity + +ION verifies basic root shape: + +```text +file tree +archive root +repo root +git status if present +package managers +language/runtime markers +README/license/config files +test folders +CI files +entrypoints +``` + +If the package has wrapper-root problems, missing manifests, duplicated nested +roots, or suspicious paths, ingestion stops or remains provisional. + +## Phase 2: Structural Cartography + +ION maps what exists without yet claiming meaning. + +It builds: + +```text +file tree index +language/runtime inventory +entrypoint list +test inventory +configuration inventory +dependency inventory +documentation inventory +CI/build inventory +possible package boundaries +``` + +This is descriptive, not authoritative. + +## Phase 3: Context Graph Genesis + +ION begins converting the project from file pile to graph. + +Files become candidate context nodes. Edges are inferred but marked +provisional: + +```text +implements +tests +documents +configures +depends_on +supersedes +contradicts +generates +owns +references +``` + +Every node starts with explicit status: + +```text +UNKNOWN_CONTEXT +PROVISIONAL_CONTEXT +WITNESS_CONTEXT +HISTORICAL_CONTEXT +STALE_CONTEXT +APPROVED_CONTEXT +``` + +Nothing becomes approved context merely because it exists. + +## Phase 4: Domain Partition + +ION proposes initial domains. + +A project may begin with domains such as: + +```text +runtime / core logic +data model +UI / operator surface +tests / verification +deployment / infrastructure +documentation / public surface +security / credentials / risk +business workflow +integration surfaces +``` + +The important question is not "what folders exist?" + +The question is: + +```text +What governed work-fields are present? +Which context nodes belong together? +Which templates and proof obligations fit each field? +Which specialist role should manage each field? +``` + +## Phase 5: Template Binding + +Each domain needs template law. + +ION asks: + +```text +What kinds of work happen here? +Audit? +Build? +Patch? +Review? +Handoff? +Data import? +Report generation? +Deployment? +Financial analysis? +Compliance review? +``` + +Then it binds or creates candidate templates. + +If no template fits, ION should not improvise. It should emit a template gap. + +## Phase 6: Authority And Risk Classification + +ION classifies what may be touched. + +Important classes: + +```text +read-only witness +safe docs change +safe test change +code patch candidate +secret-bearing surface +deployment surface +financial/business-risk surface +external account integration +destructive operation +production authority surface +``` + +This tells future agents what they are not allowed to do. + +## Phase 7: First Context Packages + +ION creates starter context packages: + +```text +project_overview_context_package +runtime_context_package +test_context_package +documentation_context_package +risk_context_package +domain_map_context_package +``` + +These packages should be bounded, not comprehensive dumps. + +They should include: + +```text +purpose +domain +included nodes +excluded nodes +authority scope +template scope +known risks +route-deeper map +expected output +receipt path +``` + +## Phase 8: First Agent/Domain Roster + +ION proposes the first specialist map: + +```text +PROJECT_CARTOGRAPHER +RUNTIME_CARTOGRAPHER +TEST_CARTOGRAPHER +DOCS_SCRIBE +SECURITY_NEMESIS +DOMAIN_STEWARD +TEMPLATE_CURATOR +``` + +These are not personalities. They are graph-region custodians. + +## Phase 9: First Receipts + +The ingestion must leave receipts. + +At minimum: + +```text +project_ingestion_receipt +root_integrity_receipt +structural_cartography_receipt +context_graph_genesis_receipt +domain_partition_receipt +risk_classification_receipt +first_context_package_receipt +``` + +Without receipts, the next agent inherits vibes. + +## Phase 10: First Lawful Work Loop + +Only after the above should ION begin serious work. + +The first work loop should be modest: + +```text +choose one domain +load its context package +select one template +perform one bounded audit or patch +return proof +write receipt +update graph +``` + +## Domain Fission During Ingestion + +Sometimes the first domain partition will be wrong. + +That is expected. + +ION should watch for context complexity pressure. If one proposed domain +contains too many unrelated burdens, too many conflicting templates, mixed +authority classes, or unstable edges, it should be split before serious work +begins. + +Project ingestion and domain fission are related. + +Ingestion creates the first map. + +Fission corrects the map when complexity proves the first domain was too broad. + +## Strong Formulation + +```text +ION does not ingest a project by reading all files. +ION ingests a project by converting it into a governed context graph. +``` + +```text +A new project is not ready for agents when it is uploaded. +It is ready when its domains, context nodes, templates, risks, and receipts are +established. +``` + +```text +Project ingestion is the ceremony that turns an external file pile into +ION-manageable state. +``` diff --git a/ION/docs/README.md b/ION/docs/README.md index 59feabc0..6a2191cd 100644 --- a/ION/docs/README.md +++ b/ION/docs/README.md @@ -18,6 +18,10 @@ setup/ current setup and operating packets Public orientation: - `ION_FUNDAMENTALS.md` +- `ION_CONTINUITY_SUBSTRATE_EXPLAINER.md` +- `ION_DOMAIN_GRAPH_AND_FISSION.md` +- `ION_PARALLEL_SETTLEMENT.md` +- `ION_PROJECT_INGESTION.md` - `TEMPLATE_LAW.md` - `CONTEXT_SYSTEM.md` - `AGENTS_ROLES_CARRIERS.md` diff --git a/ION/docs/TEMPLATE_LAW.md b/ION/docs/TEMPLATE_LAW.md index 5f93bacd..797bc52e 100644 --- a/ION/docs/TEMPLATE_LAW.md +++ b/ION/docs/TEMPLATE_LAW.md @@ -21,6 +21,27 @@ It defines: Templates prevent untyped cognition from becoming state. +## Templates As Cognitive I/O + +Templates are one of ION's main ways of exposing, organizing, and improving AI +reasoning without requiring raw chain-of-thought. + +A template asks the carrier to externalize: + +- what kind of act it is performing +- what domain the act belongs to +- what context it is relying on +- what assumptions it is making +- what proof it owes +- what output class it is producing +- what it is not allowed to change +- what route follows +- what receipt future work should inherit + +The user does not need the model's private stream of consciousness. The user +needs a trustworthy account of why the act is valid, what it depends on, what +it can change, what proof it has, and what should happen next. + ## Work Types Are Not Interchangeable ```text diff --git a/README.md b/README.md index a0db403b..8024590d 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@ *Local-first. Template-governed. Context-bound. Proof-gated. Stewarded. Carrier-agnostic.* -> *ION is the law by which AI work becomes state.* +> *AI output is not state. ION is the law by which AI work becomes state.* --- -Most AI sessions produce outputs. +Most AI systems produce outputs. -ION produces **state**. +ION is built to produce **state**. The difference is this: an output exists because a model generated it. State exists because a bounded act, governed by a template, situated by a compiled @@ -20,19 +20,105 @@ result, passed a gate, and earned a receipt that the next worker can inherit. That chain is not ceremony. It is the only thing that separates continuation from reconstruction. +Prompting tries to make a model behave. ION designs the world the model acts +inside. + --- -## The Primitive +## The Problem + +Most AI agent systems are prompt-first. + +They give an agent a role, a task, and a tool list, then expect the agent to +find or reconstruct the context required to perform the work: + +```text +prompt ++ vague role ++ tool access ++ agent searches for context ++ agent reconstructs workflow +``` + +That is fragile. The agent spends intelligence on orientation before it can do +the real work. It has to discover the domain, decide what matters, infer +authority, identify relevant sources, avoid stale context, and guess which +workflow applies. + +The result is predictable: + +```text +context drift +stale source use +role confusion +duplicated work +unverified assumptions +weak audit trails +tool calls without durable meaning +output becoming state by accident +``` + +A larger context window does not solve this by itself. A large window can still +be stale, contradictory, overloaded, expensive, and unclear about authority. + +ION improves the conditions under which an answer may become state. + +--- + +## The Central Question + +ION begins with a question most AI systems answer informally: + +```text +What is an AI output allowed to change? +``` + +A normal agent workflow often allows this collapse: + +```text +model output -> useful-looking text -> user trust -> operational action -> state +``` + +ION refuses that collapse. + +In ION, an AI output is not truth. It is a **candidate state transition**. + +A candidate transition may become: + +```text +warning +patch +queue item +report +handoff +rejected witness +accepted state delta +receipt +future context +``` + +but only through declared law: + +```text +No proof -> no landing. +No Steward decision -> no state. +No receipt -> no inheritance. +``` + +--- + +## The Lawful Act The primitive in ION is not the agent. It is not the chat. It is not memory. -It is the **lawful act**. +It is the **lawful act**: ```text intent -> work packet --> compiled context package +-> domain -> governing template +-> compiled context package -> mounted role -> carrier execution -> proof-bearing return @@ -42,8 +128,8 @@ intent -> next state ``` -Output that cannot show its packet, its context, its template, its proof path, -and its receipt is not yet ION state. It is a candidate. +Output that cannot show its packet, domain, context, template, proof path, and +receipt is not yet ION state. It is a candidate. --- @@ -58,8 +144,7 @@ and its receipt is not yet ION state. It is a candidate. 6. Every receipt must improve the next context, or the system has not continued. ``` -These are anti-failure constraints, not slogans. They prevent one specific -collapse: +These are anti-failure constraints. They prevent one specific collapse: ```text model said something -> treated as truth @@ -71,49 +156,404 @@ and replace it with: candidate -> proof -> decision -> receipt -> inheritable state ``` -In ION, the next context is not merely assembled. It is inherited from prior -accepted template movements. - --- -## Templates +## Complexity Reduction -A template in ION is not a markdown form. It is the **action type** of the work. +ION is not valuable because it is complex. + +Complexity alone is cheap. + +ION is valuable because it reduces the operational complexity of long-horizon +AI work. -A template defines what kind of act is happening, what context is required, -what output is valid, what authority is exercised, what state may be touched, -what proof is owed, and how the result becomes future context. +A large AI workflow quickly exceeds what a model, a chat transcript, or a human +operator can safely hold in active memory. ION turns that mass into bounded +state transitions: -This matters because untyped cognition is where drift enters. +```text +unbounded project complexity -> bounded executable movement +``` + +ION assumes humans and models both drift. It externalizes continuity into +packets, templates, context packages, gates, receipts, and Steward decisions so +neither the model nor the operator has to carry the entire system in memory. + +```text +ION increases intelligence not by making the model larger, +but by reducing the complexity of the state the model must safely act upon. +``` + +--- + +## Context-First Domains + +ION is context-first. + +The agent does not enter a blank field and hunt for meaning. It enters a +governed contextual domain where relevant sources, relationships, templates, +authority boundaries, receipts, and neighboring-domain routes are already part +of its working surface. ```text -AUDIT is not BUILD. -BUILD is not HANDOFF. -HANDOFF is not RATIFICATION. -COMPLETION is not ACCEPTANCE. +governed domain ++ bounded context package ++ governing template ++ known neighboring domains ++ proof obligation ++ receipt path ++ carrier ``` -ION agents do not improvise workflows. They move through proven templates, -evolve templates under governed law, or create new ones through a meta-template -path. The same movement that governs current work builds the context future -workers inherit. +The agent can ask: + +```text +What domain am I inside? +What context is live here? +What template governs this movement? +Which neighboring domains are implicated? +Which specialist should I route to if the work crosses a boundary? +What proof do I owe before this can land? +``` -ION can expand into new domains because template creation is itself governed. +This is the difference between an agent improvising its own map and a carrier +operating inside mapped territory. --- -## Agents +## Agents As Domain Interfaces -In ION, an agent is not a personality assigned to a model. +The point of agents in ION is not to create more personalities. -An agent is a **domain-bound threshold**: the point where intent, compiled +An ION agent is a **domain-bound threshold**: the point where intent, compiled context, mounted role, governing template, and carrier execution align into a lawful act. -The domain defines the agent, not the other way around. As the project's -domains mature, templates sharpen, receipts accumulate, and context improves, -the agent's world changes with it. ION does not evolve agents by editing their -prompts. It evolves them by evolving the governed structure they act inside. +The domain defines the agent, not the other way around. As domains mature, +templates sharpen, receipts accumulate, and context improves, the agent's world +changes with it. ION does not evolve agents by editing prompts. It evolves them +by evolving the governed structure they act inside. + +```text +contextual domain ++ specialist role ++ governing templates ++ bounded context package ++ proof return ++ receipt += lawful domain movement +``` + +A trustworthy agent is not created by prompting a model into obedience. It is +created by placing a capable model inside a governed domain where valid work is +easier than drift. + +--- + +## Roleplay Becomes Role Execution + +A prompt says: + +```text +Act like this. +``` + +ION says: + +```text +You are inside this domain. +These are the live context objects. +These templates govern movement here. +These routes are available. +This is the authority ceiling. +This is the proof owed. +This is how the result can land. +``` + +The role is not merely instructed. It emerges from the structure of the domain. + +```text +The role is not a costume placed on the model. +The role is the shape of movement permitted by the domain. +``` + +ION turns AI roleplay into governed role execution. + +--- + +## Templates As Cognitive I/O + +A template in ION is not a markdown form. It is the **action type** of the work. + +It defines: + +```text +the kind of act being attempted +the domain where the act belongs +the context that must be loaded +the authority ceiling +the evidence required +the output class +the allowed next routes +the receipt shape +``` + +Templates are ION's type system for work. They also expose the structure of AI +reasoning without needing to expose private chain-of-thought. + +The user does not need the model's private stream of consciousness. The user +needs a trustworthy account of: + +```text +what act is being performed +why it is allowed +what context it depends on +what proof it owes +what state it can touch +what happens next +``` + +Templates turn private improvisation into public, checkable workflow structure. + +--- + +## Context Packages + +A context package is not a summary, memory dump, boot file, or list of paths. + +It is the bounded world a mounted role is allowed to act inside for one lawful +step. + +```text +bounded context package + governing template = lawful execution substrate +``` + +A template without context is formalized ignorance. + +A context package without a template is informed improvisation. + +The template bounds the movement. The context package bounds the world. + +ION context is not merely selected. It is inherited from prior accepted acts: + +```text +prior audits +prior builds +prior refusals +prior acceptances +prior receipts +prior handoffs +prior containment decisions +prior context deltas +prior template evolutions +prior domain-route decisions +``` + +ION does not merely store context. ION manufactures lawful context through +template-governed movement. + +--- + +## The Context Graph + +ION is not a pile of files. + +ION is a living context graph operated through lawful templates. + +A meaningful file should be classifiable by: + +```text +identity +template or schema +graph node type +graph region +system family +authority status +operational status +epistemic status +owner or reviewer role +lineage posture +approved context status +retrieval zone +dependencies +downstream dependents +receipts +``` + +A file is not context because it exists. + +A file becomes context when its identity, authority, status, lineage, and +retrieval role are known. + +```text +ION does not retrieve files. +ION retrieves governed graph objects. +``` + +See [Domain Graph And Fission](ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md). + +--- + +## Domain Fission + +A domain is a governed graph region, not a topic folder. + +Domains should be able to split when their relationship complexity exceeds one +agent's lawful context-management capacity. + +The split point is not size alone. The split point is context manageability. + +A domain may need fission when: + +```text +too many unrelated templates compete inside one domain +the same agent must carry incompatible burdens +context packages become too broad or noisy +neighboring-domain routes become more frequent than local work +receipts show recurring confusion about ownership +failure analysis repeatedly points to mixed context +proof obligations diverge into different classes +one authority ceiling no longer fits the whole domain +``` + +Domain fission is graph maintenance. It prevents ION's own domains from +becoming prompt-stuffing in disguise. + +--- + +## Receipts And Failure + +Receipts are not logs. + +A log says: + +```text +Something happened. +``` + +A receipt says: + +```text +This happened, +under this authority, +from this context, +through this template, +with this proof, +with this result, +and this is what future work may inherit. +``` + +Most agent workflows can detect that something went wrong. They usually cannot +answer where the failure entered: + +```text +wrong context +stale source +wrong role +wrong template +missing proof +bad tool call +missing approval +bad handoff +duplicate action +unsettled branch conflict +``` + +ION makes these stages explicit so failures can be classified at the point of +entry. + +```text +Prompt patching treats the symptom. +ION locates the mechanism. +``` + +--- + +## Parallelism Requires Settlement + +Fan-out is easy. + +Fan-in is where agent systems usually fail. + +ION's parallelism is not a swarm free-for-all. Parallel work is one lawful +parent scope temporarily partitioned into bounded branches. Each branch return +is a proposal, not truth. The organism is not settled until the parent scope +performs an explicit settlement act. + +Settlement asks: + +```text +Which branch returns were considered? +Which conflicts were observed? +Which returns can be accepted independently? +Which need synthesis? +Which require escalation? +What receipt makes the settlement inheritable? +``` + +LLMs may draft settlement analysis. ION decides whether that analysis is +admissible. Steward or human authority decides whether it lands. + +See [Parallel Settlement](ION/docs/ION_PARALLEL_SETTLEMENT.md). + +--- + +## Project Ingestion + +ION must not assume it only governs itself. + +If ION is to help another project, company, workflow, or codebase, it needs a +lawful way to ingest that external project and organize it into ION-manageable +form. + +This is not the same as uploading a ZIP and asking an AI to understand it. + +```text +external project +-> quarantine +-> manifest +-> structural cartography +-> context graph genesis +-> domain partition +-> template binding +-> capability map +-> risk and authority classification +-> first context packages +-> receipts +-> governed work loop +``` + +```text +A project is not ION-manageable because it has been uploaded. +A project becomes ION-manageable when its structure, authority, domains, +context nodes, templates, risks, and first receipts have been established. +``` + +See [Project Ingestion](ION/docs/ION_PROJECT_INGESTION.md). + +--- + +## Time And Commitment + +ION treats time as a governance surface. + +Future work is not simply "later." Future work has posture: + +```text +SPECULATIVE +EMERGING +LIKELY +PRECOMMITTED +COMMITTED +ENACTED +COMPLETED +``` + +The future schedule is neither fully precomputed nor improvised. It is +progressively compiled as evidence, readiness, authority, and dependencies +change. + +Memory is not enough. Commitments need lifecycle. --- @@ -158,17 +598,85 @@ No carrier becomes ION identity. --- +## The Extension, Daemon, And CLI Runtime + +The browser extension is not ION. It is a carrier surface and relay organ. + +It gives ChatGPT Browser: + +```text +DOM perception +YAML/action detection +artifact attachment +local daemon connection +Codex queue visibility +status rail +package handling +return capture +operator approval UI +``` + +The extension is the cockpit. The daemon is the local bridge. Codex is the +bounded local worker. ION is the law. + +The stronger runtime loop is: + +```text +work packet +-> role profile +-> context package +-> rendered prompt +-> Codex CLI invocation +-> event log +-> return +-> diff +-> tests +-> proof gate +-> receipt +``` + +One work packet should create one bounded worker invocation. + +--- + +## GitHub As Data Plane + +Git made software safer by making code history inspectable, reversible, +branchable, and reviewable. + +ION applies that principle to AI-mediated work. + +| Git | ION | +| --- | --- | +| Commit | Receipt | +| Diff | Proposed state delta | +| Branch | Alternate work trajectory | +| Merge | Steward integration | +| Revert | Rejection / rollback / containment | +| Blame | Provenance / context proof | +| Tag | Ratified milestone / accepted state | +| Pull request | Candidate transition awaiting review | +| CI check | Proof gate / template action gate | +| Repository history | Continuity ledger | + +GitHub is extremely useful for ION, but it is not ION authority. GitHub is a +durable mirror and coordination plane. Local ION law, gates, receipts, and +runtime state remain the authority membrane. + +--- + ## What Runs The executable kernel lives at `ION/04_packages/kernel/`. Its job is to make -state, authority, and transitions **inspectable**. +state, authority, and transitions inspectable. Core surfaces: `ion_status` - `ion_carrier_onboard` - `ion_carrier_continue` - `ion_cycle_runner` - `ion_context_proof_gate` - `ion_template_action_gate` - `ion_steward_integrate` - `ion_agent_invocation_broker` - -`ion_codex_queue_runner` - `ion_cockpit_view_model` +`ion_codex_queue_runner` - `ion_chatops_bridge` - +`ion_cockpit_view_model` Active state lives at `ION/05_context/current/`: packets, queues, ledgers, receipts, handoffs, and projections maintained as explicit runtime objects, @@ -178,9 +686,13 @@ not chat transcripts. ## Full Reference -The deeper public orientation layer lives under `ION/docs/`: +The public orientation layer lives under `ION/docs/`: - [ION Fundamentals](ION/docs/ION_FUNDAMENTALS.md) +- [Continuity Substrate Explainer](ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md) +- [Domain Graph And Fission](ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md) +- [Parallel Settlement](ION/docs/ION_PARALLEL_SETTLEMENT.md) +- [Project Ingestion](ION/docs/ION_PROJECT_INGESTION.md) - [Template Law](ION/docs/TEMPLATE_LAW.md) - [Context System](ION/docs/CONTEXT_SYSTEM.md) - [Agents, Roles, And Carriers](ION/docs/AGENTS_ROLES_CARRIERS.md) @@ -192,7 +704,9 @@ The long-form system reference is the living encyclopedia: Use it for wider system history, context architecture, recovery lineage, and the larger map. It is not the active startup authority. For live work, mount through `ION/REPO_AUTHORITY.md`, `ION/02_architecture/ION_MOUNT_CONTRACT.md`, -current packets, registries, templates, and receipts. +current packets, registries, templates, gates, receipts, manifests, and tests. + +--- ## Public Collaboration @@ -245,20 +759,49 @@ What receipt, gate, manifest, or test proves the claim? --- -## Why This Exists +## AI-Built Provenance -AI work is becoming serious faster than its continuity machinery. +ION is not only a continuity substrate for AI work. It is also a live artifact +of that problem. -There are many systems that act alive for a few minutes. Fewer can tell you -what packet opened the work, what context was compiled, what template governed -the act, what proof passed, what Steward accepted, what receipt was emitted, -and what the next worker may inherit. +To the operator's knowledge, the project artifacts in this repository were +generated by ChatGPT/Codex carriers under human direction. The human operator +supplied intent, correction, pressure, taste, review, and authority boundaries. +The AI carriers produced the written system. -ION is built to make that chain explicit, inspectable, and durable across -models, tools, sessions, and carriers. +That matters because ION was built inside the same failure mode it addresses. +Long-horizon AI work repeatedly encountered context loss, drift, stale +authority, weak handoff, and uncertainty about what output was allowed to +change. ION emerged as the governance substrate required to make that work +continue. + +```text +AI-built. +Human-steered. +Proof-gated. +Receipted. +``` --- -*A model can answer.* +## Final Compression + +```text +Prompting tries to make the model behave. +ION designs the world the model acts inside. +``` + +```text +Git made code safe to evolve. +ION is trying to make AI work safe to evolve. +``` -*ION is built to continue.* +```text +The goal is not to build an AI that never drifts. +The goal is to build a system where drift has nowhere important to land. +``` + +```text +A model can answer. +ION is built to continue. +``` diff --git a/SECURITY.md b/SECURITY.md index 7b6395e6..f86be9e1 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -10,6 +10,10 @@ Future private production infrastructure may live elsewhere. Do not treat the presence of public code, docs, issues, or pull requests as production authority or live external execution authority. +GitHub is a durable collaboration and data plane. It is not ION runtime +authority. A GitHub issue, comment, pull request, or branch is evidence until it +passes the normal ION packet, proof, gate, Steward decision, and receipt path. + ## Do Not Commit - API keys, access tokens, OAuth client secrets, session cookies, or refresh @@ -17,12 +21,33 @@ or live external execution authority. - `.env` files or private config with credentials - browser profiles, credential helper dumps, cloudflared credentials, or tunnel tokens +- Cloudflare origin certificates, named tunnel credential JSON files, API + tokens, OAuth secrets, or private connector callback secrets - private logs, incident material, customer/user data, or production infrastructure state If a file is useful only because it contains a secret, credential, or private session artifact, it does not belong in this public repository. +## Local Automation Boundary + +ION may include browser extension, local daemon, Codex CLI, MCP, tunnel, and +future desktop-helper surfaces. These are operator-carrier surfaces, not +standing permission for hidden automation. + +Security-sensitive automation must be: + +- visible to the operator +- bounded to an approved target and artifact +- revocable +- logged +- receipted when ION state is touched + +Do not add hidden upload, hidden Send, credential capture, arbitrary folder +read, production deployment, git push, or destructive local mutation paths. +Higher-risk operations belong behind explicit Steward/local gates and should +fail closed when target, authority, or context is unclear. + ## Report A Concern Open a GitHub security advisory or contact the repository owner out of band if @@ -40,3 +65,10 @@ not directly mutate ION runtime state and do not grant production authority. Security fixes should still preserve ION's state boundary where practical: describe the affected paths, the risk, the validation run, and any receipt, gate, issue, or pull request that proves the handling path. + +Relevant public orientation: + +- `ION/docs/ION_FUNDAMENTALS.md` +- `ION/docs/ION_PROJECT_INGESTION.md` +- `ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md` +- `ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md` From aa1c588867c12818e5819baec5dde774218b9daa Mon Sep 17 00:00:00 2001 From: Braden Date: Wed, 6 May 2026 17:54:54 -0400 Subject: [PATCH 28/30] Add reproducible ION product package scaffold --- .../ion_github_data_plane_registry.yaml | 12 +- .../kernel/ion_github_data_plane_audit.py | 2 + .../product_packager/README.md | 37 + .../ion_product_package_builder.py | 1315 +++++++++++++++++ ION/tests/test_product_package_builder.py | 72 + 5 files changed, 1432 insertions(+), 6 deletions(-) create mode 100644 ION/09_integrations/product_packager/README.md create mode 100644 ION/09_integrations/product_packager/ion_product_package_builder.py create mode 100644 ION/tests/test_product_package_builder.py diff --git a/ION/03_registry/ion_github_data_plane_registry.yaml b/ION/03_registry/ion_github_data_plane_registry.yaml index 6efa34f9..ee9ab684 100644 --- a/ION/03_registry/ion_github_data_plane_registry.yaml +++ b/ION/03_registry/ion_github_data_plane_registry.yaml @@ -5,17 +5,17 @@ live_execution_authority: false github_account_or_org: ION-operations recommended_repository: owner: ION-operations - name: ion-codex + name: ION visibility: public visibility_policy: public_collaboration_repo_private_production_builds_later - remote_ssh: git@github.com:ION-operations/ion-codex.git - remote_https: https://github.com/ION-operations/ion-codex.git + remote_ssh: git@github.com:ION-operations/ION.git + remote_https: https://github.com/ION-operations/ION.git local_root: path: /home/sev/ION - Production/ION_CODEX current_mcp_git_present: true local_git_required_before_data_plane: false active_branch: main - active_remote: https://github.com/ION-operations/ion-codex.git + active_remote: https://github.com/ION-operations/ION.git auth_path: gh_browser_login_with_git_credential_helper first_commit_pushed: true setup_state: CONFIGURED_INITIAL_BOOTSTRAP_PUSH_COMPLETE_PUBLIC_COLLABORATION_REPO @@ -109,8 +109,8 @@ human_setup_commands: - git init - git branch -M main - gh auth login --hostname github.com --git-protocol https --scopes repo - - gh repo create ION-operations/ion-codex --public --description "ION Codex carrier workspace and data plane" --disable-wiki - - git remote add origin https://github.com/ION-operations/ion-codex.git + - gh repo create ION-operations/ION --public --description "ION continuity substrate and data plane" --disable-wiki + - git remote add origin https://github.com/ION-operations/ION.git - git remote -v guardrails: - no_secret_or_token_storage diff --git a/ION/04_packages/kernel/ion_github_data_plane_audit.py b/ION/04_packages/kernel/ion_github_data_plane_audit.py index 255a017c..0b762bbc 100644 --- a/ION/04_packages/kernel/ion_github_data_plane_audit.py +++ b/ION/04_packages/kernel/ion_github_data_plane_audit.py @@ -18,6 +18,8 @@ BLOCKED_VERDICT = "ION_GITHUB_DATA_PLANE_AUDIT_BLOCKED" EXPECTED_REMOTE_URLS = { + "https://github.com/ION-operations/ION.git", + "git@github.com:ION-operations/ION.git", "https://github.com/ION-operations/ion-codex.git", "git@github.com:ION-operations/ion-codex.git", } diff --git a/ION/09_integrations/product_packager/README.md b/ION/09_integrations/product_packager/README.md new file mode 100644 index 00000000..5627e0ce --- /dev/null +++ b/ION/09_integrations/product_packager/README.md @@ -0,0 +1,37 @@ +# ION Product Packager + +This integration owns the reproducible builder for the sidecar product package: + +```text +/home/sev/ION_PRODUCT_PACKAGE +``` + +The product package is a generated projection of the live ION repo. It is not a +second source of truth. + +```text +live ION repo -> product package builder -> ION_PRODUCT_PACKAGE +``` + +The first scaffold separates: + +- `ION_ENGINE/` - stable law and method projection +- `ION_DATA_SCHEMA/` - portable data zip compatibility contract +- `ION_CUSTOM_GPT_ADAPTER/` - browser-sandbox carrier behavior +- `ION_STARTER_DATA/` - blank portable continuity state +- `ION_PRODUCT_DOCS/` - operator-facing product instructions + +Required generated provenance files: + +- `SOURCE_PROVENANCE.json` +- `PRODUCT_SOURCE_MAP.json` +- `BUILD_RECEIPT.json` + +Run from the repo root: + +```bash +python3 ION/09_integrations/product_packager/ion_product_package_builder.py --output /home/sev/ION_PRODUCT_PACKAGE +``` + +The generated package includes its own lightweight validator and starter zip +builder under `tools/`. diff --git a/ION/09_integrations/product_packager/ion_product_package_builder.py b/ION/09_integrations/product_packager/ion_product_package_builder.py new file mode 100644 index 00000000..05195d63 --- /dev/null +++ b/ION/09_integrations/product_packager/ion_product_package_builder.py @@ -0,0 +1,1315 @@ +"""Build the first productized ION package scaffold. + +This builder creates a sidecar product projection. It does not move live ION +authority into the generated package. +""" + +from __future__ import annotations + +import argparse +import hashlib +import json +import subprocess +import textwrap +import zipfile +from datetime import datetime, timezone +from pathlib import Path +from typing import Any + + +PRODUCT_VERSION = "0.1.0" +DEFAULT_OUTPUT = Path("/home/sev/ION_PRODUCT_PACKAGE") + + +def repo_root_from_script() -> Path: + return Path(__file__).resolve().parents[3] + + +def utc_now() -> str: + return datetime.now(timezone.utc).replace(microsecond=0).isoformat().replace("+00:00", "Z") + + +def git_value(repo_root: Path, *args: str) -> str: + try: + return subprocess.check_output(["git", *args], cwd=repo_root, text=True).strip() + except (OSError, subprocess.CalledProcessError): + return "unknown" + + +def write_text(path: Path, text: str) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(textwrap.dedent(text).strip() + "\n", encoding="utf-8") + + +def write_json(path: Path, payload: Any) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(payload, indent=2, sort_keys=True) + "\n", encoding="utf-8") + + +def copy_reference_doc(repo_root: Path, source_rel: str, dest: Path, title: str) -> None: + source = repo_root / source_rel + body = source.read_text(encoding="utf-8") + write_text( + dest, + f""" + + + + # {title} + + This file is a generated product-package reference copy. The live ION + repo remains source truth. Use `SOURCE_PROVENANCE.json` and + `PRODUCT_SOURCE_MAP.json` to trace generation. + + --- + + {body} + """, + ) + + +def touch_keep(path: Path) -> None: + path.mkdir(parents=True, exist_ok=True) + keep = path / ".gitkeep" + if not keep.exists(): + keep.write_text("", encoding="utf-8") + + +def sha256_file(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as handle: + for chunk in iter(lambda: handle.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + +def schema(schema_id: str, title: str, properties: dict[str, Any], required: list[str]) -> dict[str, Any]: + return { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": schema_id, + "title": title, + "type": "object", + "additionalProperties": True, + "required": required, + "properties": properties, + } + + +def build_starter_zip(output_root: Path) -> dict[str, Any]: + starter_root = output_root / "ION_STARTER_DATA" + dist_root = output_root / "dist" + dist_root.mkdir(parents=True, exist_ok=True) + zip_path = dist_root / "ION_CONTINUITY_DATA_BLANK_v1.zip" + with zipfile.ZipFile(zip_path, "w", compression=zipfile.ZIP_DEFLATED) as archive: + for path in sorted(starter_root.rglob("*")): + if path.is_file(): + archive.write(path, path.relative_to(starter_root.parent).as_posix()) + manifest = { + "artifact": zip_path.name, + "artifact_type": "starter_continuity_data_zip", + "release_status": "non_release_scaffold", + "sha256": sha256_file(zip_path), + "size_bytes": zip_path.stat().st_size, + } + write_json(dist_root / "ION_CONTINUITY_DATA_BLANK_v1.manifest.json", manifest) + return manifest + + +def product_source_map() -> dict[str, Any]: + return { + "README.md": { + "source": "curated_product_projection", + "source_paths": ["README.md", "ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "productized_projection", + }, + "PRODUCT_PACKAGE_SPEC.md": { + "source": "generated_from_user_codex_settlement", + "source_paths": [ + "ION/docs/ION_PROJECT_INGESTION.md", + "ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md", + "ION/docs/ION_PARALLEL_SETTLEMENT.md", + ], + "curation_status": "first_scaffold_spec", + }, + "ION_ENGINE/doctrine/ION_CORE.md": { + "source": "curated_product_projection", + "source_paths": ["README.md", "ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "engine_law_projection", + }, + "ION_ENGINE/context_graph/DOMAIN_GRAPH_AND_FISSION.md": { + "source": "curated_product_projection", + "source_paths": ["ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md"], + "curation_status": "engine_law_projection", + }, + "ION_ENGINE/ingestion/PROJECT_INGESTION.md": { + "source": "curated_product_projection", + "source_paths": ["ION/docs/ION_PROJECT_INGESTION.md"], + "curation_status": "engine_law_projection", + }, + "ION_ENGINE/settlement/PARALLEL_SETTLEMENT.md": { + "source": "curated_product_projection", + "source_paths": ["ION/docs/ION_PARALLEL_SETTLEMENT.md"], + "curation_status": "engine_law_projection", + }, + "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md": { + "source": "generated_adapter_projection", + "source_paths": ["ION/06_intelligence/orchestration/custom_gpt/", "ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "adapter_draft", + }, + "ION_STARTER_DATA/ION_DATA_MANIFEST.json": { + "source": "generated_blank_state", + "source_paths": [], + "curation_status": "starter_data_v1_draft", + }, + "ION_ENGINE/reference/ION_FUNDAMENTALS.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/ION_DOMAIN_GRAPH_AND_FISSION.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/ION_PARALLEL_SETTLEMENT.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/ION_PARALLEL_SETTLEMENT.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/ION_PROJECT_INGESTION.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/ION_PROJECT_INGESTION.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/TEMPLATE_LAW.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/TEMPLATE_LAW.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/CONTEXT_SYSTEM.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/CONTEXT_SYSTEM.md"], + "curation_status": "full_reference_projection", + }, + "ION_ENGINE/reference/AGENTS_ROLES_CARRIERS.md": { + "source": "copied_reference_projection", + "source_paths": ["ION/docs/AGENTS_ROLES_CARRIERS.md"], + "curation_status": "full_reference_projection", + }, + } + + +def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = None) -> dict[str, Any]: + repo_root = repo_root or repo_root_from_script() + output_root = output_root.resolve() + generated_at = utc_now() + source_commit = git_value(repo_root, "rev-parse", "HEAD") + source_branch = git_value(repo_root, "branch", "--show-current") + source_remote = git_value(repo_root, "config", "--get", "remote.origin.url") + + for directory in [ + "ION_ENGINE/doctrine", + "ION_ENGINE/laws", + "ION_ENGINE/templates", + "ION_ENGINE/context_graph", + "ION_ENGINE/receipts", + "ION_ENGINE/ingestion", + "ION_ENGINE/settlement", + "ION_ENGINE/projections", + "ION_ENGINE/reference", + "ION_DATA_SCHEMA/schemas", + "ION_DATA_SCHEMA/migrations", + "ION_CUSTOM_GPT_ADAPTER", + "ION_CUSTOM_GPT_ADAPTER/templates", + "ION_STARTER_DATA/STATE", + "ION_STARTER_DATA/DOMAINS", + "ION_STARTER_DATA/CONTEXT", + "ION_STARTER_DATA/TEMPLATES", + "ION_STARTER_DATA/PACKETS", + "ION_STARTER_DATA/RECEIPTS", + "ION_STARTER_DATA/DECISIONS", + "ION_STARTER_DATA/ARTIFACTS", + "ION_STARTER_DATA/INBOX", + "ION_STARTER_DATA/OUTBOX", + "ION_STARTER_DATA/ARCHIVE", + "ION_PRODUCT_DOCS", + "examples/blank_project", + "examples/ingested_project_fixture", + "examples/receipt_examples", + "tools", + "tests", + "dist", + ]: + (output_root / directory).mkdir(parents=True, exist_ok=True) + + for empty_dir in [ + "ION_STARTER_DATA/PACKETS", + "ION_STARTER_DATA/ARTIFACTS", + "ION_STARTER_DATA/INBOX", + "ION_STARTER_DATA/OUTBOX", + "ION_STARTER_DATA/ARCHIVE", + "ION_STARTER_DATA/DECISIONS", + "ION_DATA_SCHEMA/migrations", + "examples/ingested_project_fixture", + ]: + touch_keep(output_root / empty_dir) + + write_text( + output_root / "README.md", + """ + # ION Product Package + + This folder is a clean distributable projection of ION for Custom GPT + and browser-sandbox operation. + + It is not the live ION source of truth. + + ```text + live ION repo = source truth / laboratory / evolving organism + ION_PRODUCT_PACKAGE = generated distributable projection + ``` + + ## Product Law + + ```text + ION should not be compressed into a Custom GPT. + ION should be packaged so a Custom GPT can operate it. + + The engine stays stable. + The data travels with the user. + The adapter teaches the carrier how to operate the package. + Receipts preserve continuity. + ``` + + ## Top-Level Parts + + - `ION_ENGINE/` - stable law and method projection. + - `ION_DATA_SCHEMA/` - compatibility contract for portable data zips. + - `ION_CUSTOM_GPT_ADAPTER/` - Custom GPT operating instructions. + - `ION_STARTER_DATA/` - blank portable continuity state. + - `ION_PRODUCT_DOCS/` - operator-facing product docs. + - `tools/` - package validation and starter zip helpers. + - `dist/` - generated artifacts only. + + ## First Use + + ```bash + python3 tools/validate_data_package.py ION_STARTER_DATA + python3 tools/build_starter_zip.py + ``` + + The generated starter zip is a non-release scaffold until the product + package receives a formal release receipt. + """, + ) + + write_text( + output_root / "PRODUCT_PACKAGE_SPEC.md", + """ + # ION Product Package Specification + + Status: `FIRST_SCAFFOLD_NON_RELEASE` + + ## Objective + + Create a productized ION projection for Custom GPT and browser-sandbox + operation without creating a second ION source of truth. + + ## Engine / Data / Adapter Separation + + ```text + engine != data + adapter != engine + runtime != state + receipt != source truth + ``` + + `ION_ENGINE/` contains law and method. `ION_STARTER_DATA/` contains + portable state. `ION_CUSTOM_GPT_ADAPTER/` teaches a browser AI carrier + how to operate the package. `ION_DATA_SCHEMA/` defines compatibility. + + ## Lifecycle + + 1. No data zip is mounted. + 2. Adapter offers to create a new continuity package. + 3. Data package is initialized from `ION_STARTER_DATA/`. + 4. Meaningful work appends a receipt and updates current state. + 5. Adapter exports a new continuity data zip. + 6. The user carries the data zip forward. + + ## Acceptance Boundary + + AI output is proposal until it has context, proof, approval, and + receipt. A Custom GPT may draft state updates, but the data package is + the carried continuity body. + + ## Non-Release Boundary + + This first scaffold is not a polished release. It establishes folder + law, provenance, starter state, draft schemas, and validation tooling. + + ## Product Package Invariants + + - The package must name its live source commit. + - The engine layer must not contain user state. + - The data layer must not rewrite engine law. + - The adapter must treat model output as proposal. + - A state update must append a receipt. + - An exported data zip must preserve the manifest, state, graph, + packets, receipt ledger, decisions, and artifacts custody. + - Migration between schema versions requires a migration receipt. + """, + ) + + write_text(output_root / "CHANGELOG.md", "# Changelog\n\n## 0.1.0\n\n- First non-release scaffold of the ION product package.\n") + write_text(output_root / "LICENSE_OR_NOTICE.md", "# Notice\n\nThis scaffold is an ION product projection. License terms are not finalized in this first slice.\n") + + provenance = { + "authority": "generated_projection_not_source_truth", + "generated_at": generated_at, + "generated_from_repo": source_remote or "ION-operations/ION", + "generator": "ION_PRODUCT_PACKAGE_BUILDER", + "product_package_version": PRODUCT_VERSION, + "source_branch": source_branch, + "source_commit": source_commit, + "source_root": str(repo_root), + } + write_json(output_root / "SOURCE_PROVENANCE.json", provenance) + write_json(output_root / "PRODUCT_SOURCE_MAP.json", product_source_map()) + + write_text( + output_root / "ION_ENGINE/README.md", + """ + # ION Engine + + This directory contains the productized engine law projection. It is + method and governance, not user/project state. + + Use `ION_STARTER_DATA/` or a mounted continuity zip for state. + """, + ) + write_text( + output_root / "ION_ENGINE/doctrine/ION_CORE.md", + """ + # ION Core + + AI output is not state. + + ION is the law by which AI work becomes state. + + A meaningful act follows: + + ```text + intent -> packet -> domain -> template -> context package -> proof + -> Steward decision -> receipt -> next state + ``` + + No proof means no landing. No receipt means no inheritance. + """, + ) + write_text( + output_root / "ION_ENGINE/laws/SIX_LAWS.md", + """ + # Six Laws + + 1. Meaningful AI work is a candidate state transition. + 2. Every state-bearing act must be governed by a template. + 3. Every template execution must be situated by a bounded context package. + 4. Every return is proposal until proof gates and Steward integration accept it. + 5. Every accepted delta must leave a receipt. + 6. Every receipt must improve the next context or the system has not continued. + """, + ) + write_text( + output_root / "ION_ENGINE/templates/TEMPLATE_LAW.md", + """ + # Template Law + + Templates are cognitive I/O. They define the kind of act being + attempted, the context required, the authority ceiling, the proof owed, + the output class, and the receipt shape. + + A template is not a form. It is the action type of the work. + """, + ) + write_text( + output_root / "ION_ENGINE/context_graph/DOMAIN_GRAPH_AND_FISSION.md", + """ + # Domain Graph And Fission + + A domain is a governed graph region, not a topic folder. + + ION scales because the graph holds continuity while agents hold bounded + graph regions. When a domain becomes too relationally dense for one + lawful context package family, it should be audited for fission. + """, + ) + write_text( + output_root / "ION_ENGINE/receipts/RECEIPT_LAW.md", + """ + # Receipt Law + + A receipt records what happened, under which authority, from which + context, through which template, with which proof, and what future work + may inherit. + + Logs say something happened. Receipts make continuity auditable. + """, + ) + write_text( + output_root / "ION_ENGINE/ingestion/PROJECT_INGESTION.md", + """ + # Project Ingestion + + ION does not ingest a project by reading all files. ION ingests a + project by converting it into a governed context graph. + + ```text + external project -> quarantine -> manifest -> cartography + -> graph genesis -> domain partition -> template binding + -> risk classification -> first context packages -> receipts + ``` + """, + ) + write_text( + output_root / "ION_ENGINE/settlement/PARALLEL_SETTLEMENT.md", + """ + # Parallel Settlement + + Fan-out is easy. Fan-in is where agent systems usually fail. + + Every branch return is proposal. Settlement is the parent-scope act + that decides how branch returns rejoin the canonical workflow. + """, + ) + write_text( + output_root / "ION_ENGINE/projections/PROJECTION_LADDER.md", + """ + # Projection Ladder + + Full engine law should not be pasted into every prompt. It should be + projected: + + ```text + full engine law -> system atlas -> domain docs -> role capsule + -> task context package -> receipt + ``` + """, + ) + write_text( + output_root / "ION_ENGINE/reference/README.md", + """ + # Engine Reference Layer + + These are generated reference copies of public ION docs. They make the + package substantial enough for Custom GPT knowledge upload while still + preserving the source-truth boundary. + + Use `ION_ENGINE/projections/PROJECTION_LADDER.md` to decide what to + load into a carrier turn. Do not paste the whole reference layer into + every response. + """, + ) + reference_docs = [ + ("ION/docs/ION_FUNDAMENTALS.md", "ION_ENGINE/reference/ION_FUNDAMENTALS.md", "ION Fundamentals"), + ( + "ION/docs/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md", + "ION_ENGINE/reference/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md", + "ION Continuity Substrate Explainer", + ), + ("ION/docs/ION_DOMAIN_GRAPH_AND_FISSION.md", "ION_ENGINE/reference/ION_DOMAIN_GRAPH_AND_FISSION.md", "ION Domain Graph And Fission"), + ("ION/docs/ION_PARALLEL_SETTLEMENT.md", "ION_ENGINE/reference/ION_PARALLEL_SETTLEMENT.md", "ION Parallel Settlement"), + ("ION/docs/ION_PROJECT_INGESTION.md", "ION_ENGINE/reference/ION_PROJECT_INGESTION.md", "ION Project Ingestion"), + ("ION/docs/TEMPLATE_LAW.md", "ION_ENGINE/reference/TEMPLATE_LAW.md", "ION Template Law"), + ("ION/docs/CONTEXT_SYSTEM.md", "ION_ENGINE/reference/CONTEXT_SYSTEM.md", "ION Context System"), + ("ION/docs/AGENTS_ROLES_CARRIERS.md", "ION_ENGINE/reference/AGENTS_ROLES_CARRIERS.md", "ION Agents Roles Carriers"), + ] + for source_rel, dest_rel, title in reference_docs: + copy_reference_doc(repo_root, source_rel, output_root / dest_rel, title) + + schemas = { + "ion_data_manifest.schema.json": schema( + "https://ion.local/schemas/ion_data_manifest.v1.json", + "ION Data Manifest", + { + "schema_id": {"const": "ion.data_manifest.v1"}, + "data_schema_version": {"type": "integer"}, + "engine_version": {"type": "string"}, + "package_id": {"type": "string"}, + "project_id": {"type": "string"}, + "created_at": {"type": "string"}, + "authority": {"type": "string"}, + }, + ["schema_id", "data_schema_version", "engine_version", "package_id", "project_id", "created_at", "authority"], + ), + "current_state.schema.json": schema( + "https://ion.local/schemas/current_state.v1.json", + "ION Current State", + { + "schema_id": {"const": "ion.current_state.v1"}, + "project_id": {"type": "string"}, + "current_objective": {"type": "string"}, + "open_packets": {"type": "array"}, + "warnings": {"type": "array"}, + }, + ["schema_id", "project_id", "current_objective", "open_packets", "warnings"], + ), + "domain_registry.schema.json": schema( + "https://ion.local/schemas/domain_registry.v1.json", + "ION Domain Registry", + { + "schema_id": {"const": "ion.domain_registry.v1"}, + "domains": {"type": "array"}, + }, + ["schema_id", "domains"], + ), + "context_graph.schema.json": schema( + "https://ion.local/schemas/context_graph.v1.json", + "ION Context Graph", + { + "schema_id": {"const": "ion.context_graph.v1"}, + "nodes": {"type": "array"}, + "edges": {"type": "array"}, + }, + ["schema_id", "nodes", "edges"], + ), + "work_packet.schema.json": schema( + "https://ion.local/schemas/work_packet.v1.json", + "ION Work Packet", + { + "schema_id": {"const": "ion.work_packet.v1"}, + "packet_id": {"type": "string"}, + "objective": {"type": "string"}, + "authority": {"type": "object"}, + }, + ["schema_id", "packet_id", "objective", "authority"], + ), + "receipt.schema.json": schema( + "https://ion.local/schemas/receipt.v1.json", + "ION Receipt", + { + "schema_id": {"const": "ion.receipt.v1"}, + "receipt_id": {"type": "string"}, + "receipt_type": {"type": "string"}, + "created_at": {"type": "string"}, + "accepted_as_state": {"type": "boolean"}, + }, + ["schema_id", "receipt_id", "receipt_type", "created_at", "accepted_as_state"], + ), + "artifact_manifest.schema.json": schema( + "https://ion.local/schemas/artifact_manifest.v1.json", + "ION Artifact Manifest", + { + "schema_id": {"const": "ion.artifact_manifest.v1"}, + "artifacts": {"type": "array"}, + }, + ["schema_id", "artifacts"], + ), + "open_packets.schema.json": schema( + "https://ion.local/schemas/open_packets.v1.json", + "ION Open Packets", + { + "schema_id": {"const": "ion.open_packets.v1"}, + "packets": {"type": "array"}, + "queue_status": {"type": "string"}, + }, + ["schema_id", "packets"], + ), + "template_registry.schema.json": schema( + "https://ion.local/schemas/template_registry.v1.json", + "ION Template Registry", + { + "schema_id": {"const": "ion.template_registry.v1"}, + "templates": {"type": "array"}, + }, + ["schema_id", "templates"], + ), + "decision_ledger.schema.json": schema( + "https://ion.local/schemas/decision_ledger.v1.json", + "ION Decision Ledger", + { + "schema_id": {"const": "ion.decision_ledger.v1"}, + "decisions": {"type": "array"}, + }, + ["schema_id", "decisions"], + ), + } + for name, payload in schemas.items(): + write_json(output_root / "ION_DATA_SCHEMA/schemas" / name, payload) + write_text(output_root / "ION_DATA_SCHEMA/README.md", "# ION Data Schema\n\nDraft v1 compatibility schemas for portable ION continuity packages.\n") + write_text(output_root / "ION_DATA_SCHEMA/migrations/README.md", "# Migrations\n\nNo migrations exist in schema v1. Future migrations require migration receipts.\n") + + starter_manifest = { + "schema_id": "ion.data_manifest.v1", + "authority": "portable_data_candidate_not_engine_truth", + "created_at": generated_at, + "data_schema_version": 1, + "engine_version": "ion_engine_v1", + "migration_required": False, + "package_id": "ion-continuity-data-blank-v1", + "project_id": "blank_project", + "project_name": "Blank ION Project", + "source_product_package_version": PRODUCT_VERSION, + } + write_json(output_root / "ION_STARTER_DATA/ION_DATA_MANIFEST.json", starter_manifest) + write_text( + output_root / "ION_STARTER_DATA/README_FOR_AI.md", + """ + # ION Starter Data + + This is blank portable continuity state. + + It is not the engine. It is not source truth. It is the continuity body + that a compatible AI carrier may inspect, update by receipt, and export. + """, + ) + write_json( + output_root / "ION_STARTER_DATA/STATE/current_state.json", + { + "schema_id": "ion.current_state.v1", + "project_id": "blank_project", + "current_objective": "No active objective has been accepted yet.", + "open_packets": [], + "warnings": ["starter_state_non_release_scaffold"], + }, + ) + write_text( + output_root / "ION_STARTER_DATA/STATE/current_state.md", + """ + # Current State + + No accepted project objective exists yet. + + The first lawful move is to create or ingest a project through a packet, + context package, proof path, Steward decision, and receipt. + """, + ) + write_json( + output_root / "ION_STARTER_DATA/DOMAINS/domain_registry.json", + { + "schema_id": "ion.domain_registry.v1", + "domains": [ + { + "domain_id": "root", + "name": "Root Project Domain", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Initial routing shell for a blank project.", + } + ], + }, + ) + write_json( + output_root / "ION_STARTER_DATA/CONTEXT/context_graph.json", + { + "schema_id": "ion.context_graph.v1", + "nodes": [], + "edges": [], + "graph_status": "blank_project_graph", + }, + ) + write_json( + output_root / "ION_STARTER_DATA/TEMPLATES/template_registry.json", + { + "schema_id": "ion.template_registry.v1", + "templates": [ + "project_ingestion", + "state_update_proposal", + "receipt_append", + "continuity_export", + ], + }, + ) + write_json( + output_root / "ION_STARTER_DATA/PACKETS/open_packets.json", + { + "schema_id": "ion.open_packets.v1", + "packets": [], + "queue_status": "empty", + }, + ) + write_json( + output_root / "ION_STARTER_DATA/DECISIONS/decision_ledger.json", + { + "schema_id": "ion.decision_ledger.v1", + "decisions": [], + }, + ) + write_json( + output_root / "ION_STARTER_DATA/ARTIFACTS/artifact_manifest.json", + { + "schema_id": "ion.artifact_manifest.v1", + "artifacts": [], + "custody": "empty_starter_package", + }, + ) + bootstrap_receipt = { + "schema_id": "ion.receipt.v1", + "accepted_as_state": True, + "created_at": generated_at, + "receipt_id": "receipt-bootstrap-blank-project-v1", + "receipt_type": "starter_data_bootstrap", + "summary": "Initialized blank portable ION continuity state.", + } + write_json(output_root / "ION_STARTER_DATA/RECEIPTS/bootstrap_receipt.json", bootstrap_receipt) + write_text(output_root / "ION_STARTER_DATA/RECEIPTS/receipt_ledger.jsonl", json.dumps(bootstrap_receipt, sort_keys=True)) + for leaf in ["INBOX", "OUTBOX", "ARCHIVE"]: + write_text(output_root / f"ION_STARTER_DATA/{leaf}/README.md", f"# {leaf}\n\nReserved for portable ION data package flow.\n") + + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/README.md", + """ + # ION Custom GPT Adapter + + This adapter teaches a Custom GPT how to operate ION engine law and a + mounted continuity data zip inside a browser sandbox. + + The Custom GPT is not persistent. The data zip is persistent. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md", + """ + # GPT Instructions + + You are an ION-compatible browser AI carrier. + + Your job is to operate the mounted ION data package under ION engine + law. Do not claim source truth from memory. Inspect the mounted data + package, report current state, perform bounded work, append receipts, + and export updated continuity data. + + If no data package is mounted, offer to initialize one from + `ION_STARTER_DATA/`. + + Never treat your output as accepted state until the package has a + corresponding receipt. + + ## Required Mount Report + + When a data zip is provided, report: + + - package id + - project id/name + - schema version + - current objective + - open packet count + - latest receipt id + - warnings + - whether migration is required + + ## State Update Rule + + You may draft updates to state files, but an update is incomplete until + you append a receipt to `RECEIPTS/receipt_ledger.jsonl` and include a + clear export instruction for the updated data package. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/STARTUP_BEHAVIOR.md", + """ + # Startup Behavior + + ## No Data Zip Mounted + + Say that no continuity package is mounted. Offer to initialize a new + package from `ION_STARTER_DATA/`. Do not pretend platform memory is + continuity state. + + ## Data Zip Mounted + + Inspect the manifest, current state, domains, context graph, open + packets, decisions, artifacts, and receipt ledger. Produce a mount + report before doing substantive work. + + ## Multiple Data Zips Mounted + + Ask which one should be canonical for this turn. Do not merge them + informally. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/DATA_ZIP_OPERATING_PROTOCOL.md", + """ + # Data Zip Operating Protocol + + ## Mount + + Inspect `ION_DATA_MANIFEST.json`, `STATE/current_state.json`, + `DOMAINS/domain_registry.json`, `CONTEXT/context_graph.json`, + `PACKETS/open_packets.json`, `DECISIONS/decision_ledger.json`, + `ARTIFACTS/artifact_manifest.json`, and `RECEIPTS/receipt_ledger.jsonl`. + + ## Work + + Produce proposals, not unreceipted state. Meaningful updates require a + receipt append and an updated export. + + ## Export + + Export a new data zip after state changes. The user carries that zip + forward as continuity. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/STATE_UPDATE_PROTOCOL.md", + """ + # State Update Protocol + + A state update must include: + + 1. the file or object being changed; + 2. the reason the change is allowed; + 3. the prior state considered; + 4. the proposed delta; + 5. the receipt appended; + 6. the export package name. + + Do not update `ION_ENGINE/` from a user data package. Engine evolution + belongs to the live ION source repo and product packager. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/EXPORT_PROTOCOL.md", + """ + # Export Protocol + + Any exported data package must preserve: + + - manifest + - current state + - domain registry + - context graph + - packet records + - receipt ledger + - artifacts/inbox/outbox/archive custody + + Exported packages should include a new receipt for the export itself. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/refusal_and_boundary_rules.md", + """ + # Refusal And Boundary Rules + + Refuse to claim accepted state without a receipt. + + Refuse to mutate engine law from a user data package. + + Refuse to treat platform memory as stronger than the mounted data + package. + + Refuse to merge multiple continuity packages without an explicit + settlement packet. + + Refuse to call a generated product package source truth. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/templates/MOUNT_REPORT_TEMPLATE.md", + """ + # Mount Report Template + + ```text + Mounted ION package: + package_id: + project_id: + project_name: + data_schema_version: + engine_version: + migration_required: + current_objective: + open_packets: + latest_receipt: + warnings: + ``` + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/templates/RECEIPT_APPEND_TEMPLATE.md", + """ + # Receipt Append Template + + ```json + { + "schema_id": "ion.receipt.v1", + "receipt_id": "", + "receipt_type": "", + "created_at": "", + "accepted_as_state": true, + "summary": "", + "context_used": [], + "files_changed": [], + "next_context_delta": [] + } + ``` + """, + ) + write_json( + output_root / "ION_CUSTOM_GPT_ADAPTER/knowledge_manifest.json", + { + "schema_id": "ion.custom_gpt_knowledge_manifest.v1", + "engine_docs": [ + "ION_ENGINE/doctrine/ION_CORE.md", + "ION_ENGINE/laws/SIX_LAWS.md", + "ION_ENGINE/templates/TEMPLATE_LAW.md", + "ION_ENGINE/context_graph/DOMAIN_GRAPH_AND_FISSION.md", + "ION_ENGINE/ingestion/PROJECT_INGESTION.md", + "ION_ENGINE/settlement/PARALLEL_SETTLEMENT.md", + "ION_ENGINE/projections/PROJECTION_LADDER.md", + "ION_ENGINE/reference/README.md", + "ION_ENGINE/reference/ION_FUNDAMENTALS.md", + "ION_ENGINE/reference/ION_CONTINUITY_SUBSTRATE_EXPLAINER.md", + "ION_ENGINE/reference/ION_DOMAIN_GRAPH_AND_FISSION.md", + "ION_ENGINE/reference/ION_PARALLEL_SETTLEMENT.md", + "ION_ENGINE/reference/ION_PROJECT_INGESTION.md", + "ION_ENGINE/reference/TEMPLATE_LAW.md", + "ION_ENGINE/reference/CONTEXT_SYSTEM.md", + "ION_ENGINE/reference/AGENTS_ROLES_CARRIERS.md", + ], + "adapter_docs": [ + "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md", + "ION_CUSTOM_GPT_ADAPTER/STARTUP_BEHAVIOR.md", + "ION_CUSTOM_GPT_ADAPTER/DATA_ZIP_OPERATING_PROTOCOL.md", + "ION_CUSTOM_GPT_ADAPTER/STATE_UPDATE_PROTOCOL.md", + "ION_CUSTOM_GPT_ADAPTER/EXPORT_PROTOCOL.md", + "ION_CUSTOM_GPT_ADAPTER/refusal_and_boundary_rules.md", + ], + }, + ) + + write_text( + output_root / "ION_PRODUCT_DOCS/GETTING_STARTED.md", + """ + # Getting Started + + Start with a continuity data package. If none exists, initialize one + from `ION_STARTER_DATA/`. + + Basic loop: + + ```text + mount data zip -> report current state -> perform bounded work + -> append receipt -> export updated data zip + ``` + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/CUSTOM_GPT_SETUP.md", + """ + # Custom GPT Setup + + Use `ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md` as the instruction + base. Upload adapter docs and selected engine docs from + `ION_CUSTOM_GPT_ADAPTER/knowledge_manifest.json`. + + Do not upload user data zips as permanent knowledge. User data zips are + mounted per session and exported after updates. + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/CONTINUING_FROM_A_DATA_ZIP.md", + """ + # Continuing From A Data Zip + + Mount the zip, inspect manifest/state/receipts, then continue from + accepted state. If the latest work is not receipted, treat it as + proposal or witness material. + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/STARTING_A_NEW_PROJECT.md", + """ + # Starting A New Project + + Initialize a blank package, define project identity, create the first + root domain, then emit the first project receipt. + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/PROJECT_INGESTION.md", + """ + # Project Ingestion + + Treat uploaded projects as untrusted graphs until manifest, + cartography, domains, risk, and receipts exist. + + Use the ingestion ladder: + + ```text + quarantine -> manifest -> cartography -> context graph genesis + -> domain partition -> template binding -> risk classification + -> first context packages -> receipts + ``` + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/RECEIPTS_AND_STATE.md", + """ + # Receipts And State + + Output is candidate. Receipts make accepted deltas inheritable. + + A receipt should name what changed, under what authority, with what + context and proof, and what the next worker may inherit. + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/DOMAINS_AND_CONTEXT_GRAPH.md", + """ + # Domains And Context Graph + + Domains are governed graph regions. Split them when context + manageability fails. + + A file is not context because it exists. It becomes context when its + identity, authority, status, lineage, and retrieval role are known. + """, + ) + write_text( + output_root / "ION_PRODUCT_DOCS/TROUBLESHOOTING.md", + """ + # Troubleshooting + + If state is unclear, inspect the latest receipt ledger before + continuing. + + Common blocks: + + - no mounted data package; + - multiple data packages with no settlement; + - migration required; + - latest output has no receipt; + - engine docs and user state are being confused. + """, + ) + + write_text(output_root / "examples/blank_project/README.md", "# Blank Project Example\n\nUse `ION_STARTER_DATA/` as the example blank project state.\n") + write_json(output_root / "examples/receipt_examples/state_update_receipt.example.json", bootstrap_receipt | {"receipt_id": "receipt-example-state-update"}) + + write_text( + output_root / "tools/validate_data_package.py", + r''' + #!/usr/bin/env python3 + """Validate a minimal ION portable data package without external deps.""" + + from __future__ import annotations + + import json + import sys + from pathlib import Path + + + REQUIRED = [ + "ION_DATA_MANIFEST.json", + "README_FOR_AI.md", + "STATE/current_state.json", + "STATE/current_state.md", + "DOMAINS/domain_registry.json", + "CONTEXT/context_graph.json", + "TEMPLATES/template_registry.json", + "PACKETS/open_packets.json", + "DECISIONS/decision_ledger.json", + "ARTIFACTS/artifact_manifest.json", + "RECEIPTS/receipt_ledger.jsonl", + ] + + + def load_json(path: Path) -> dict: + with path.open("r", encoding="utf-8") as handle: + payload = json.load(handle) + if not isinstance(payload, dict): + raise ValueError(f"{path} is not a JSON object") + return payload + + + def validate(root: Path) -> list[str]: + findings: list[str] = [] + for rel in REQUIRED: + if not (root / rel).exists(): + findings.append(f"missing:{rel}") + if findings: + return findings + manifest = load_json(root / "ION_DATA_MANIFEST.json") + state = load_json(root / "STATE/current_state.json") + domains = load_json(root / "DOMAINS/domain_registry.json") + graph = load_json(root / "CONTEXT/context_graph.json") + templates = load_json(root / "TEMPLATES/template_registry.json") + packets = load_json(root / "PACKETS/open_packets.json") + decisions = load_json(root / "DECISIONS/decision_ledger.json") + artifacts = load_json(root / "ARTIFACTS/artifact_manifest.json") + if manifest.get("schema_id") != "ion.data_manifest.v1": + findings.append("manifest_schema_id_invalid") + if state.get("schema_id") != "ion.current_state.v1": + findings.append("current_state_schema_id_invalid") + if domains.get("schema_id") != "ion.domain_registry.v1": + findings.append("domain_registry_schema_id_invalid") + if graph.get("schema_id") != "ion.context_graph.v1": + findings.append("context_graph_schema_id_invalid") + if templates.get("schema_id") != "ion.template_registry.v1": + findings.append("template_registry_schema_id_invalid") + if packets.get("schema_id") != "ion.open_packets.v1": + findings.append("open_packets_schema_id_invalid") + if decisions.get("schema_id") != "ion.decision_ledger.v1": + findings.append("decision_ledger_schema_id_invalid") + if artifacts.get("schema_id") != "ion.artifact_manifest.v1": + findings.append("artifact_manifest_schema_id_invalid") + ledger_lines = [line for line in (root / "RECEIPTS/receipt_ledger.jsonl").read_text(encoding="utf-8").splitlines() if line.strip()] + if not ledger_lines: + findings.append("receipt_ledger_empty") + else: + for index, line in enumerate(ledger_lines, start=1): + try: + json.loads(line) + except json.JSONDecodeError: + findings.append(f"receipt_ledger_line_{index}_invalid_json") + return findings + + + def main() -> int: + root = Path(sys.argv[1] if len(sys.argv) > 1 else "ION_STARTER_DATA").resolve() + findings = validate(root) + if findings: + print(json.dumps({"ok": False, "root": str(root), "findings": findings}, indent=2)) + return 1 + print(json.dumps({"ok": True, "root": str(root), "findings": []}, indent=2)) + return 0 + + + if __name__ == "__main__": + raise SystemExit(main()) + ''', + ) + write_text( + output_root / "tools/build_starter_zip.py", + r''' + #!/usr/bin/env python3 + """Build the non-release blank ION continuity data zip.""" + + from __future__ import annotations + + import hashlib + import json + import zipfile + from pathlib import Path + + + ROOT = Path(__file__).resolve().parents[1] + STARTER = ROOT / "ION_STARTER_DATA" + DIST = ROOT / "dist" + ZIP_PATH = DIST / "ION_CONTINUITY_DATA_BLANK_v1.zip" + + + def sha256_file(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as handle: + for chunk in iter(lambda: handle.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + + def main() -> int: + DIST.mkdir(parents=True, exist_ok=True) + with zipfile.ZipFile(ZIP_PATH, "w", compression=zipfile.ZIP_DEFLATED) as archive: + for path in sorted(STARTER.rglob("*")): + if path.is_file(): + archive.write(path, path.relative_to(ROOT).as_posix()) + manifest = { + "artifact": ZIP_PATH.name, + "artifact_type": "starter_continuity_data_zip", + "release_status": "non_release_scaffold", + "sha256": sha256_file(ZIP_PATH), + "size_bytes": ZIP_PATH.stat().st_size, + } + (DIST / "ION_CONTINUITY_DATA_BLANK_v1.manifest.json").write_text(json.dumps(manifest, indent=2, sort_keys=True) + "\n", encoding="utf-8") + print(json.dumps({"ok": True, "zip": str(ZIP_PATH), **manifest}, indent=2)) + return 0 + + + if __name__ == "__main__": + raise SystemExit(main()) + ''', + ) + write_text( + output_root / "tests/test_starter_data_shape.py", + r''' + import json + from pathlib import Path + + + ROOT = Path(__file__).resolve().parents[1] + STARTER = ROOT / "ION_STARTER_DATA" + + + def test_starter_manifest_shape(): + payload = json.loads((STARTER / "ION_DATA_MANIFEST.json").read_text(encoding="utf-8")) + assert payload["schema_id"] == "ion.data_manifest.v1" + assert payload["data_schema_version"] == 1 + assert payload["authority"] == "portable_data_candidate_not_engine_truth" + + + def test_receipt_ledger_has_bootstrap_receipt(): + lines = (STARTER / "RECEIPTS/receipt_ledger.jsonl").read_text(encoding="utf-8").splitlines() + receipts = [json.loads(line) for line in lines if line.strip()] + assert receipts + assert receipts[0]["receipt_type"] == "starter_data_bootstrap" + + + def test_portable_state_indexes_exist(): + checks = { + "PACKETS/open_packets.json": "ion.open_packets.v1", + "DECISIONS/decision_ledger.json": "ion.decision_ledger.v1", + "ARTIFACTS/artifact_manifest.json": "ion.artifact_manifest.v1", + } + for rel, schema_id in checks.items(): + payload = json.loads((STARTER / rel).read_text(encoding="utf-8")) + assert payload["schema_id"] == schema_id + ''', + ) + + zip_manifest = build_starter_zip(output_root) + build_receipt = { + "accepted_as_source_truth": False, + "generated_at": generated_at, + "outputs": [ + "ION_PRODUCT_PACKAGE/", + "dist/ION_CONTINUITY_DATA_BLANK_v1.zip", + ], + "product_package_version": PRODUCT_VERSION, + "receipt_type": "ion_product_package_build_receipt", + "source_branch": source_branch, + "source_commit": source_commit, + "validation": { + "starter_data_shape": "prepared", + "schema_examples": "draft", + "zip_roundtrip": "prepared", + }, + "zip_manifest": zip_manifest, + } + write_json(output_root / "BUILD_RECEIPT.json", build_receipt) + return { + "output_root": str(output_root), + "source_commit": source_commit, + "source_branch": source_branch, + "generated_at": generated_at, + "zip_manifest": zip_manifest, + } + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--output", type=Path, default=DEFAULT_OUTPUT) + parser.add_argument("--repo-root", type=Path, default=repo_root_from_script()) + args = parser.parse_args() + result = build_package(args.output, args.repo_root) + print(json.dumps({"ok": True, **result}, indent=2, sort_keys=True)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/ION/tests/test_product_package_builder.py b/ION/tests/test_product_package_builder.py new file mode 100644 index 00000000..e7dbf8f0 --- /dev/null +++ b/ION/tests/test_product_package_builder.py @@ -0,0 +1,72 @@ +from __future__ import annotations + +import importlib.util +import json +from pathlib import Path + + +REPO_ROOT = Path(__file__).resolve().parents[2] +BUILDER_PATH = REPO_ROOT / "ION/09_integrations/product_packager/ion_product_package_builder.py" + + +def load_builder(): + spec = importlib.util.spec_from_file_location("ion_product_package_builder", BUILDER_PATH) + assert spec and spec.loader + module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(module) + return module + + +def test_product_package_builder_creates_required_shape(tmp_path: Path): + builder = load_builder() + out = tmp_path / "ION_PRODUCT_PACKAGE" + result = builder.build_package(out, REPO_ROOT) + + assert result["output_root"] == str(out.resolve()) + assert (out / "README.md").exists() + assert (out / "PRODUCT_PACKAGE_SPEC.md").exists() + assert (out / "SOURCE_PROVENANCE.json").exists() + assert (out / "PRODUCT_SOURCE_MAP.json").exists() + assert (out / "BUILD_RECEIPT.json").exists() + assert (out / "ION_ENGINE/doctrine/ION_CORE.md").exists() + assert (out / "ION_ENGINE/reference/ION_FUNDAMENTALS.md").exists() + assert (out / "ION_DATA_SCHEMA/schemas/ion_data_manifest.schema.json").exists() + assert (out / "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md").exists() + assert (out / "ION_CUSTOM_GPT_ADAPTER/STARTUP_BEHAVIOR.md").exists() + assert (out / "ION_CUSTOM_GPT_ADAPTER/STATE_UPDATE_PROTOCOL.md").exists() + assert (out / "ION_CUSTOM_GPT_ADAPTER/templates/MOUNT_REPORT_TEMPLATE.md").exists() + assert (out / "ION_STARTER_DATA/ION_DATA_MANIFEST.json").exists() + assert (out / "ION_STARTER_DATA/PACKETS/open_packets.json").exists() + assert (out / "ION_STARTER_DATA/DECISIONS/decision_ledger.json").exists() + assert (out / "ION_STARTER_DATA/ARTIFACTS/artifact_manifest.json").exists() + assert (out / "tools/validate_data_package.py").exists() + assert (out / "tools/build_starter_zip.py").exists() + assert (out / "dist/ION_CONTINUITY_DATA_BLANK_v1.zip").exists() + + provenance = json.loads((out / "SOURCE_PROVENANCE.json").read_text(encoding="utf-8")) + assert provenance["authority"] == "generated_projection_not_source_truth" + assert provenance["source_commit"] + + +def test_product_package_starter_manifest_is_candidate_state(tmp_path: Path): + builder = load_builder() + out = tmp_path / "ION_PRODUCT_PACKAGE" + builder.build_package(out, REPO_ROOT) + + manifest = json.loads((out / "ION_STARTER_DATA/ION_DATA_MANIFEST.json").read_text(encoding="utf-8")) + assert manifest["schema_id"] == "ion.data_manifest.v1" + assert manifest["authority"] == "portable_data_candidate_not_engine_truth" + assert manifest["migration_required"] is False + + receipt_lines = (out / "ION_STARTER_DATA/RECEIPTS/receipt_ledger.jsonl").read_text(encoding="utf-8").splitlines() + assert receipt_lines + first_receipt = json.loads(receipt_lines[0]) + assert first_receipt["schema_id"] == "ion.receipt.v1" + assert first_receipt["receipt_type"] == "starter_data_bootstrap" + + packets = json.loads((out / "ION_STARTER_DATA/PACKETS/open_packets.json").read_text(encoding="utf-8")) + decisions = json.loads((out / "ION_STARTER_DATA/DECISIONS/decision_ledger.json").read_text(encoding="utf-8")) + artifacts = json.loads((out / "ION_STARTER_DATA/ARTIFACTS/artifact_manifest.json").read_text(encoding="utf-8")) + assert packets["schema_id"] == "ion.open_packets.v1" + assert decisions["schema_id"] == "ion.decision_ledger.v1" + assert artifacts["schema_id"] == "ion.artifact_manifest.v1" From ddd589f9c1abac2c8e864b346d078e9dc2c1ae26 Mon Sep 17 00:00:00 2001 From: Braden Date: Wed, 6 May 2026 18:06:16 -0400 Subject: [PATCH 29/30] Refine product package first-run continuity UX --- .../product_packager/README.md | 6 +- .../ion_product_package_builder.py | 351 ++++++++++++++++-- ION/tests/test_product_package_builder.py | 35 ++ 3 files changed, 358 insertions(+), 34 deletions(-) diff --git a/ION/09_integrations/product_packager/README.md b/ION/09_integrations/product_packager/README.md index 5627e0ce..38dcff0f 100644 --- a/ION/09_integrations/product_packager/README.md +++ b/ION/09_integrations/product_packager/README.md @@ -18,7 +18,7 @@ The first scaffold separates: - `ION_ENGINE/` - stable law and method projection - `ION_DATA_SCHEMA/` - portable data zip compatibility contract - `ION_CUSTOM_GPT_ADAPTER/` - browser-sandbox carrier behavior -- `ION_STARTER_DATA/` - blank portable continuity state +- `ION_STARTER_DATA/` - seeded portable continuity state - `ION_PRODUCT_DOCS/` - operator-facing product instructions Required generated provenance files: @@ -35,3 +35,7 @@ python3 ION/09_integrations/product_packager/ion_product_package_builder.py --ou The generated package includes its own lightweight validator and starter zip builder under `tools/`. + +The source folder remains `ION_STARTER_DATA/`, but the generated continuity +zip places `ION_DATA_MANIFEST.json` at zip root so a browser AI sandbox can +mount it without searching through an extra wrapper directory. diff --git a/ION/09_integrations/product_packager/ion_product_package_builder.py b/ION/09_integrations/product_packager/ion_product_package_builder.py index 05195d63..252b9f75 100644 --- a/ION/09_integrations/product_packager/ion_product_package_builder.py +++ b/ION/09_integrations/product_packager/ion_product_package_builder.py @@ -19,6 +19,16 @@ PRODUCT_VERSION = "0.1.0" DEFAULT_OUTPUT = Path("/home/sev/ION_PRODUCT_PACKAGE") +SEEDED_DOMAIN_IDS = [ + "USER_INTENT", + "PROJECT_STATE", + "DECISIONS", + "OPEN_LOOPS", + "ARTIFACTS", + "CONTEXT_GRAPH", + "RISK_REVIEW", + "PERSONA_INTERFACE", +] def repo_root_from_script() -> Path: @@ -103,11 +113,12 @@ def build_starter_zip(output_root: Path) -> dict[str, Any]: with zipfile.ZipFile(zip_path, "w", compression=zipfile.ZIP_DEFLATED) as archive: for path in sorted(starter_root.rglob("*")): if path.is_file(): - archive.write(path, path.relative_to(starter_root.parent).as_posix()) + archive.write(path, path.relative_to(starter_root).as_posix()) manifest = { "artifact": zip_path.name, "artifact_type": "starter_continuity_data_zip", "release_status": "non_release_scaffold", + "zip_root": "data_package_root", "sha256": sha256_file(zip_path), "size_bytes": zip_path.stat().st_size, } @@ -156,11 +167,26 @@ def product_source_map() -> dict[str, Any]: "source_paths": ["ION/06_intelligence/orchestration/custom_gpt/", "ION/docs/ION_FUNDAMENTALS.md"], "curation_status": "adapter_draft", }, + "ION_CUSTOM_GPT_ADAPTER/FIRST_RUN_BEHAVIOR.md": { + "source": "generated_adapter_projection", + "source_paths": ["ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "first_run_ux_projection", + }, + "ION_CUSTOM_GPT_ADAPTER/PERSONA_INTERFACE_RULES.md": { + "source": "generated_adapter_projection", + "source_paths": ["ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "persona_interface_projection", + }, "ION_STARTER_DATA/ION_DATA_MANIFEST.json": { - "source": "generated_blank_state", + "source": "generated_seeded_state", "source_paths": [], "curation_status": "starter_data_v1_draft", }, + "ION_STARTER_DATA/PERSONA/persona_state.json": { + "source": "generated_seeded_state", + "source_paths": [], + "curation_status": "persona_interface_seed", + }, "ION_ENGINE/reference/ION_FUNDAMENTALS.md": { "source": "copied_reference_projection", "source_paths": ["ION/docs/ION_FUNDAMENTALS.md"], @@ -234,6 +260,7 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "ION_STARTER_DATA/RECEIPTS", "ION_STARTER_DATA/DECISIONS", "ION_STARTER_DATA/ARTIFACTS", + "ION_STARTER_DATA/PERSONA", "ION_STARTER_DATA/INBOX", "ION_STARTER_DATA/OUTBOX", "ION_STARTER_DATA/ARCHIVE", @@ -291,7 +318,7 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N - `ION_ENGINE/` - stable law and method projection. - `ION_DATA_SCHEMA/` - compatibility contract for portable data zips. - `ION_CUSTOM_GPT_ADAPTER/` - Custom GPT operating instructions. - - `ION_STARTER_DATA/` - blank portable continuity state. + - `ION_STARTER_DATA/` - seeded portable continuity state. - `ION_PRODUCT_DOCS/` - operator-facing product docs. - `tools/` - package validation and starter zip helpers. - `dist/` - generated artifacts only. @@ -336,7 +363,8 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N ## Lifecycle 1. No data zip is mounted. - 2. Adapter offers to create a new continuity package. + 2. Adapter quietly initializes seeded starter continuity and asks what + the user is working on. 3. Data package is initialized from `ION_STARTER_DATA/`. 4. Meaningful work appends a receipt and updates current state. 5. Adapter exports a new continuity data zip. @@ -363,6 +391,8 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N - An exported data zip must preserve the manifest, state, graph, packets, receipt ledger, decisions, and artifacts custody. - Migration between schema versions requires a migration receipt. + - First-run UX should expose continuity benefits, not ION internals. + - User-facing language should say `project memory pack` where possible. """, ) @@ -638,6 +668,17 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N }, ["schema_id", "decisions"], ), + "persona_interface.schema.json": schema( + "https://ion.local/schemas/persona_interface.v1.json", + "ION Persona Interface", + { + "schema_id": {"const": "ion.persona_interface.v1"}, + "user_facing_default": {"type": "string"}, + "translation_map": {"type": "object"}, + "hidden_domain_ids": {"type": "array"}, + }, + ["schema_id", "user_facing_default", "translation_map", "hidden_domain_ids"], + ), } for name, payload in schemas.items(): write_json(output_root / "ION_DATA_SCHEMA/schemas" / name, payload) @@ -662,10 +703,13 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N """ # ION Starter Data - This is blank portable continuity state. + This is seeded portable continuity state. It is not the engine. It is not source truth. It is the continuity body that a compatible AI carrier may inspect, update by receipt, and export. + + The user does not need to see these internals during first run. The AI + carrier uses them to make continuity feel natural. """, ) write_json( @@ -673,9 +717,9 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N { "schema_id": "ion.current_state.v1", "project_id": "blank_project", - "current_objective": "No active objective has been accepted yet.", + "current_objective": "Discover what the user wants to work on and form the first useful project memory.", "open_packets": [], - "warnings": ["starter_state_non_release_scaffold"], + "warnings": ["seeded_starter_state_non_release_scaffold"], }, ) write_text( @@ -683,10 +727,18 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N """ # Current State - No accepted project objective exists yet. + No accepted project objective exists yet, but the starter package is + seeded for natural first-run continuity. + + The first user-facing move is simply: - The first lawful move is to create or ingest a project through a packet, - context package, proof path, Steward decision, and receipt. + ```text + What are we working on? + ``` + + Behind the scenes, the carrier should capture user intent, project + state, decisions, open loops, artifacts, risks, and useful context as + receipt-backed project memory. """, ) write_json( @@ -695,22 +747,95 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "schema_id": "ion.domain_registry.v1", "domains": [ { - "domain_id": "root", - "name": "Root Project Domain", + "domain_id": "USER_INTENT", + "name": "User Intent", "status": "provisional", "authority_ceiling": "no_live_execution", - "description": "Initial routing shell for a blank project.", - } + "description": "Captures what the user is trying to accomplish in plain language.", + "user_visible_label": "goal", + }, + { + "domain_id": "PROJECT_STATE", + "name": "Project State", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Tracks accepted project facts and current work posture.", + "user_visible_label": "project memory", + }, + { + "domain_id": "DECISIONS", + "name": "Decisions", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Stores accepted choices, rejected options, and rationale.", + "user_visible_label": "saved decisions", + }, + { + "domain_id": "OPEN_LOOPS", + "name": "Open Loops", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Tracks unresolved questions, next steps, and pending commitments.", + "user_visible_label": "open items", + }, + { + "domain_id": "ARTIFACTS", + "name": "Artifacts", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Tracks files, links, uploads, generated outputs, and custody status.", + "user_visible_label": "files and notes", + }, + { + "domain_id": "CONTEXT_GRAPH", + "name": "Context Graph", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Maintains relationships between goals, decisions, sources, artifacts, and work areas.", + "user_visible_label": "project memory", + }, + { + "domain_id": "RISK_REVIEW", + "name": "Risk Review", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Captures uncertainty, safety boundaries, stale information, and review needs.", + "user_visible_label": "cautions", + }, + { + "domain_id": "PERSONA_INTERFACE", + "name": "Persona Interface", + "status": "provisional", + "authority_ceiling": "no_live_execution", + "description": "Translates ION machinery into natural assistant language.", + "user_visible_label": "assistant style", + }, ], + "seeded_domain_ids": SEEDED_DOMAIN_IDS, }, ) write_json( output_root / "ION_STARTER_DATA/CONTEXT/context_graph.json", { "schema_id": "ion.context_graph.v1", - "nodes": [], - "edges": [], - "graph_status": "blank_project_graph", + "nodes": [ + { + "node_id": f"domain:{domain_id}", + "node_type": "seeded_domain", + "domain_id": domain_id, + "context_status": "PROVISIONAL_CONTEXT", + } + for domain_id in SEEDED_DOMAIN_IDS + ], + "edges": [ + {"from": "domain:USER_INTENT", "to": "domain:PROJECT_STATE", "edge_type": "shapes"}, + {"from": "domain:DECISIONS", "to": "domain:PROJECT_STATE", "edge_type": "updates"}, + {"from": "domain:OPEN_LOOPS", "to": "domain:PROJECT_STATE", "edge_type": "pressures"}, + {"from": "domain:ARTIFACTS", "to": "domain:CONTEXT_GRAPH", "edge_type": "supplies"}, + {"from": "domain:RISK_REVIEW", "to": "domain:DECISIONS", "edge_type": "guards"}, + {"from": "domain:PERSONA_INTERFACE", "to": "domain:USER_INTENT", "edge_type": "translates"}, + ], + "graph_status": "seeded_project_graph", }, ) write_json( @@ -719,6 +844,8 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "schema_id": "ion.template_registry.v1", "templates": [ "project_ingestion", + "first_run_intent_capture", + "persona_translation", "state_update_proposal", "receipt_append", "continuity_export", @@ -748,13 +875,32 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "custody": "empty_starter_package", }, ) + write_json( + output_root / "ION_STARTER_DATA/PERSONA/persona_state.json", + { + "schema_id": "ion.persona_interface.v1", + "user_facing_default": "natural_assistant_with_invisible_continuity", + "first_prompt": "What are we working on?", + "save_language": "I can package this project memory so we can continue from here later.", + "hidden_domain_ids": SEEDED_DOMAIN_IDS, + "translation_map": { + "packet": "plan / next step", + "receipt": "saved decision / project note", + "context_graph": "project memory", + "domain": "work area", + "template": "workflow", + "data_zip": "project memory pack", + }, + }, + ) bootstrap_receipt = { "schema_id": "ion.receipt.v1", "accepted_as_state": True, "created_at": generated_at, "receipt_id": "receipt-bootstrap-blank-project-v1", "receipt_type": "starter_data_bootstrap", - "summary": "Initialized blank portable ION continuity state.", + "summary": "Initialized seeded portable ION continuity state.", + "seeded_domains": SEEDED_DOMAIN_IDS, } write_json(output_root / "ION_STARTER_DATA/RECEIPTS/bootstrap_receipt.json", bootstrap_receipt) write_text(output_root / "ION_STARTER_DATA/RECEIPTS/receipt_ledger.jsonl", json.dumps(bootstrap_receipt, sort_keys=True)) @@ -780,12 +926,24 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N You are an ION-compatible browser AI carrier. Your job is to operate the mounted ION data package under ION engine - law. Do not claim source truth from memory. Inspect the mounted data - package, report current state, perform bounded work, append receipts, - and export updated continuity data. + law while giving the user a natural assistant experience. Do not claim + source truth from memory. Inspect the mounted data package, work from + accepted state, perform bounded work, append receipts, and export + updated continuity data. - If no data package is mounted, offer to initialize one from - `ION_STARTER_DATA/`. + If no data package is mounted, do not begin with an ION protocol + lecture. Quietly use the seeded starter posture and ask: + + ```text + What are we working on? + ``` + + Mention the continuity package only when saving, exporting, or + resuming: + + ```text + I can package this project memory so we can continue from here later. + ``` Never treat your output as accepted state until the package has a corresponding receipt. @@ -817,9 +975,33 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N ## No Data Zip Mounted - Say that no continuity package is mounted. Offer to initialize a new - package from `ION_STARTER_DATA/`. Do not pretend platform memory is - continuity state. + Do not say `No continuity package is mounted` as the first user-facing + move. + + Quietly initialize seeded starter state from `ION_STARTER_DATA/` in + the working sandbox. Proceed naturally: + + ```text + What are we working on? + ``` + + Do not explain packets, receipts, domains, templates, or data zips + unless the user asks or the workflow reaches save/export/resume. + + Good user-facing language: + + ```text + I can keep this organized as we go and give you a project memory pack + when you want to continue later. + ``` + + Internal posture: + + ```text + seeded starter continuity active + accepted state not yet exported + first receipt required before durable continuation claim + ``` ## Data Zip Mounted @@ -833,6 +1015,61 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N informally. """, ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/FIRST_RUN_BEHAVIOR.md", + """ + # First-Run Behavior + + ION is for the AI. The user should experience improved continuity, not + system machinery. + + On first run, start from the seeded starter domains and ask what the + user is working on. Capture intent, decisions, open loops, artifacts, + risks, and useful context internally. + + Do not open with: + + ```text + No continuity package is mounted. + ``` + + Prefer: + + ```text + What are we working on? + ``` + + When the work has meaningful continuity value, offer: + + ```text + I can package this project memory so we can continue from here later. + ``` + + The first export should include the starter state plus any accepted + project identity, decisions, open loops, artifacts, and receipts. + """, + ) + write_text( + output_root / "ION_CUSTOM_GPT_ADAPTER/PERSONA_INTERFACE_RULES.md", + """ + # Persona Interface Rules + + Translate ION machinery into user-facing language unless the user asks + for internals. + + | ION term | User-facing term | + | --- | --- | + | packet | plan / next step | + | receipt | saved decision / project note | + | context graph | project memory | + | domain | work area | + | template | workflow | + | data zip | project memory pack | + + The assistant may use ION internally to preserve continuity. It should + not make the user manage protocol language during ordinary work. + """, + ) write_text( output_root / "ION_CUSTOM_GPT_ADAPTER/DATA_ZIP_OPERATING_PROTOCOL.md", """ @@ -843,7 +1080,8 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N Inspect `ION_DATA_MANIFEST.json`, `STATE/current_state.json`, `DOMAINS/domain_registry.json`, `CONTEXT/context_graph.json`, `PACKETS/open_packets.json`, `DECISIONS/decision_ledger.json`, - `ARTIFACTS/artifact_manifest.json`, and `RECEIPTS/receipt_ledger.jsonl`. + `ARTIFACTS/artifact_manifest.json`, + `PERSONA/persona_state.json`, and `RECEIPTS/receipt_ledger.jsonl`. ## Work @@ -975,6 +1213,8 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "adapter_docs": [ "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md", "ION_CUSTOM_GPT_ADAPTER/STARTUP_BEHAVIOR.md", + "ION_CUSTOM_GPT_ADAPTER/FIRST_RUN_BEHAVIOR.md", + "ION_CUSTOM_GPT_ADAPTER/PERSONA_INTERFACE_RULES.md", "ION_CUSTOM_GPT_ADAPTER/DATA_ZIP_OPERATING_PROTOCOL.md", "ION_CUSTOM_GPT_ADAPTER/STATE_UPDATE_PROTOCOL.md", "ION_CUSTOM_GPT_ADAPTER/EXPORT_PROTOCOL.md", @@ -988,14 +1228,22 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N """ # Getting Started - Start with a continuity data package. If none exists, initialize one - from `ION_STARTER_DATA/`. + Start naturally. If no continuity data package exists, the adapter uses + seeded starter state behind the scenes and asks: + + ```text + What are we working on? + ``` + + The user does not need to manage ION internals during ordinary work. + They should feel continuity through clearer plans, remembered + decisions, open loops, artifacts, and project memory. Basic loop: ```text - mount data zip -> report current state -> perform bounded work - -> append receipt -> export updated data zip + work naturally -> save decisions and open loops -> append receipt + -> export project memory pack when useful ``` """, ) @@ -1010,6 +1258,9 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N Do not upload user data zips as permanent knowledge. User data zips are mounted per session and exported after updates. + + Include `FIRST_RUN_BEHAVIOR.md` and `PERSONA_INTERFACE_RULES.md` so the + GPT does not expose protocol machinery as its default user experience. """, ) write_text( @@ -1028,7 +1279,11 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N # Starting A New Project Initialize a blank package, define project identity, create the first - root domain, then emit the first project receipt. + project memory, then emit the first project receipt. + + The starter package is not empty. It includes seeded internal work + areas for user intent, project state, decisions, open loops, artifacts, + context graph, risk review, and persona interface. """, ) write_text( @@ -1116,6 +1371,7 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "PACKETS/open_packets.json", "DECISIONS/decision_ledger.json", "ARTIFACTS/artifact_manifest.json", + "PERSONA/persona_state.json", "RECEIPTS/receipt_ledger.jsonl", ] @@ -1143,6 +1399,7 @@ def validate(root: Path) -> list[str]: packets = load_json(root / "PACKETS/open_packets.json") decisions = load_json(root / "DECISIONS/decision_ledger.json") artifacts = load_json(root / "ARTIFACTS/artifact_manifest.json") + persona = load_json(root / "PERSONA/persona_state.json") if manifest.get("schema_id") != "ion.data_manifest.v1": findings.append("manifest_schema_id_invalid") if state.get("schema_id") != "ion.current_state.v1": @@ -1159,6 +1416,8 @@ def validate(root: Path) -> list[str]: findings.append("decision_ledger_schema_id_invalid") if artifacts.get("schema_id") != "ion.artifact_manifest.v1": findings.append("artifact_manifest_schema_id_invalid") + if persona.get("schema_id") != "ion.persona_interface.v1": + findings.append("persona_interface_schema_id_invalid") ledger_lines = [line for line in (root / "RECEIPTS/receipt_ledger.jsonl").read_text(encoding="utf-8").splitlines() if line.strip()] if not ledger_lines: findings.append("receipt_ledger_empty") @@ -1218,11 +1477,12 @@ def main() -> int: with zipfile.ZipFile(ZIP_PATH, "w", compression=zipfile.ZIP_DEFLATED) as archive: for path in sorted(STARTER.rglob("*")): if path.is_file(): - archive.write(path, path.relative_to(ROOT).as_posix()) + archive.write(path, path.relative_to(STARTER).as_posix()) manifest = { "artifact": ZIP_PATH.name, "artifact_type": "starter_continuity_data_zip", "release_status": "non_release_scaffold", + "zip_root": "data_package_root", "sha256": sha256_file(ZIP_PATH), "size_bytes": ZIP_PATH.stat().st_size, } @@ -1239,11 +1499,13 @@ def main() -> int: output_root / "tests/test_starter_data_shape.py", r''' import json + import zipfile from pathlib import Path ROOT = Path(__file__).resolve().parents[1] STARTER = ROOT / "ION_STARTER_DATA" + STARTER_ZIP = ROOT / "dist/ION_CONTINUITY_DATA_BLANK_v1.zip" def test_starter_manifest_shape(): @@ -1265,10 +1527,33 @@ def test_portable_state_indexes_exist(): "PACKETS/open_packets.json": "ion.open_packets.v1", "DECISIONS/decision_ledger.json": "ion.decision_ledger.v1", "ARTIFACTS/artifact_manifest.json": "ion.artifact_manifest.v1", + "PERSONA/persona_state.json": "ion.persona_interface.v1", } for rel, schema_id in checks.items(): payload = json.loads((STARTER / rel).read_text(encoding="utf-8")) assert payload["schema_id"] == schema_id + + + def test_seeded_domains_exist(): + payload = json.loads((STARTER / "DOMAINS/domain_registry.json").read_text(encoding="utf-8")) + domain_ids = {domain["domain_id"] for domain in payload["domains"]} + assert { + "USER_INTENT", + "PROJECT_STATE", + "DECISIONS", + "OPEN_LOOPS", + "ARTIFACTS", + "CONTEXT_GRAPH", + "RISK_REVIEW", + "PERSONA_INTERFACE", + } <= domain_ids + + + def test_starter_zip_manifest_is_at_root(): + with zipfile.ZipFile(STARTER_ZIP) as archive: + names = set(archive.namelist()) + assert "ION_DATA_MANIFEST.json" in names + assert "ION_STARTER_DATA/ION_DATA_MANIFEST.json" not in names ''', ) diff --git a/ION/tests/test_product_package_builder.py b/ION/tests/test_product_package_builder.py index e7dbf8f0..343cb9c9 100644 --- a/ION/tests/test_product_package_builder.py +++ b/ION/tests/test_product_package_builder.py @@ -2,6 +2,7 @@ import importlib.util import json +import zipfile from pathlib import Path @@ -33,12 +34,16 @@ def test_product_package_builder_creates_required_shape(tmp_path: Path): assert (out / "ION_DATA_SCHEMA/schemas/ion_data_manifest.schema.json").exists() assert (out / "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md").exists() assert (out / "ION_CUSTOM_GPT_ADAPTER/STARTUP_BEHAVIOR.md").exists() + assert (out / "ION_CUSTOM_GPT_ADAPTER/FIRST_RUN_BEHAVIOR.md").exists() + assert (out / "ION_CUSTOM_GPT_ADAPTER/PERSONA_INTERFACE_RULES.md").exists() assert (out / "ION_CUSTOM_GPT_ADAPTER/STATE_UPDATE_PROTOCOL.md").exists() assert (out / "ION_CUSTOM_GPT_ADAPTER/templates/MOUNT_REPORT_TEMPLATE.md").exists() assert (out / "ION_STARTER_DATA/ION_DATA_MANIFEST.json").exists() assert (out / "ION_STARTER_DATA/PACKETS/open_packets.json").exists() assert (out / "ION_STARTER_DATA/DECISIONS/decision_ledger.json").exists() assert (out / "ION_STARTER_DATA/ARTIFACTS/artifact_manifest.json").exists() + assert (out / "ION_STARTER_DATA/PERSONA/persona_state.json").exists() + assert (out / "ION_DATA_SCHEMA/schemas/persona_interface.schema.json").exists() assert (out / "tools/validate_data_package.py").exists() assert (out / "tools/build_starter_zip.py").exists() assert (out / "dist/ION_CONTINUITY_DATA_BLANK_v1.zip").exists() @@ -67,6 +72,36 @@ def test_product_package_starter_manifest_is_candidate_state(tmp_path: Path): packets = json.loads((out / "ION_STARTER_DATA/PACKETS/open_packets.json").read_text(encoding="utf-8")) decisions = json.loads((out / "ION_STARTER_DATA/DECISIONS/decision_ledger.json").read_text(encoding="utf-8")) artifacts = json.loads((out / "ION_STARTER_DATA/ARTIFACTS/artifact_manifest.json").read_text(encoding="utf-8")) + persona = json.loads((out / "ION_STARTER_DATA/PERSONA/persona_state.json").read_text(encoding="utf-8")) assert packets["schema_id"] == "ion.open_packets.v1" assert decisions["schema_id"] == "ion.decision_ledger.v1" assert artifacts["schema_id"] == "ion.artifact_manifest.v1" + assert persona["schema_id"] == "ion.persona_interface.v1" + + +def test_product_package_starter_state_is_seeded_for_first_run(tmp_path: Path): + builder = load_builder() + out = tmp_path / "ION_PRODUCT_PACKAGE" + builder.build_package(out, REPO_ROOT) + + domains = json.loads((out / "ION_STARTER_DATA/DOMAINS/domain_registry.json").read_text(encoding="utf-8")) + domain_ids = {domain["domain_id"] for domain in domains["domains"]} + assert set(builder.SEEDED_DOMAIN_IDS) <= domain_ids + + first_run = (out / "ION_CUSTOM_GPT_ADAPTER/FIRST_RUN_BEHAVIOR.md").read_text(encoding="utf-8") + assert "What are we working on?" in first_run + assert "No continuity package is mounted" in first_run + assert "Do not open with" in first_run + + +def test_product_package_starter_zip_uses_data_package_root(tmp_path: Path): + builder = load_builder() + out = tmp_path / "ION_PRODUCT_PACKAGE" + result = builder.build_package(out, REPO_ROOT) + + assert result["zip_manifest"]["zip_root"] == "data_package_root" + with zipfile.ZipFile(out / "dist/ION_CONTINUITY_DATA_BLANK_v1.zip") as archive: + names = set(archive.namelist()) + assert "ION_DATA_MANIFEST.json" in names + assert "PERSONA/persona_state.json" in names + assert "ION_STARTER_DATA/ION_DATA_MANIFEST.json" not in names From 556d006a3529295ae904325e998c78c7ebc65393 Mon Sep 17 00:00:00 2001 From: Braden Date: Wed, 6 May 2026 18:20:58 -0400 Subject: [PATCH 30/30] Add product package engine coverage manifest --- .../product_packager/README.md | 5 + .../ion_product_package_builder.py | 562 ++++++++++++++++++ ION/tests/test_product_package_builder.py | 32 + 3 files changed, 599 insertions(+) diff --git a/ION/09_integrations/product_packager/README.md b/ION/09_integrations/product_packager/README.md index 38dcff0f..0fb7ee86 100644 --- a/ION/09_integrations/product_packager/README.md +++ b/ION/09_integrations/product_packager/README.md @@ -26,6 +26,7 @@ Required generated provenance files: - `SOURCE_PROVENANCE.json` - `PRODUCT_SOURCE_MAP.json` - `BUILD_RECEIPT.json` +- `ION_ENGINE_COVERAGE_MANIFEST.json` Run from the repo root: @@ -39,3 +40,7 @@ builder under `tools/`. The source folder remains `ION_STARTER_DATA/`, but the generated continuity zip places `ION_DATA_MANIFEST.json` at zip root so a browser AI sandbox can mount it without searching through an extra wrapper directory. + +The engine coverage manifest tracks generated role dossiers, template dossiers, +runtime-mode dossiers, and the runtime boundary matrix so the package is +auditable as a product projection instead of a hand-curated folder. diff --git a/ION/09_integrations/product_packager/ion_product_package_builder.py b/ION/09_integrations/product_packager/ion_product_package_builder.py index 252b9f75..96b1d310 100644 --- a/ION/09_integrations/product_packager/ion_product_package_builder.py +++ b/ION/09_integrations/product_packager/ion_product_package_builder.py @@ -29,6 +29,299 @@ "RISK_REVIEW", "PERSONA_INTERFACE", ] +ROLE_DOSSIERS = [ + { + "id": "STEWARD", + "display_name": "Steward", + "logical_name": "Orchestration Manager", + "true_name": "Operative.Interface.Orchestration_Management", + "authority_posture": "BOUNDED_ORCHESTRATION_STEWARD", + "rank": "4", + "function": "Integration, routing, acceptance, rejection, closure.", + "boundary": "May decide what is accepted into package state, but does not bypass receipts or proof.", + "filename": "STEWARD.md", + }, + { + "id": "RELAY", + "display_name": "Relay", + "logical_name": "Communications Relay", + "true_name": "Supervisor.Communications.Sovereign_Relay", + "authority_posture": "BOUNDED_INTENT_RELAY", + "rank": "4", + "function": "Intake, packet formation, transmission, and handoff.", + "boundary": "May shape and transmit intent, but does not accept state.", + "filename": "RELAY.md", + }, + { + "id": "VIZIER", + "display_name": "Vizier", + "logical_name": "Chief Architect", + "true_name": "Chief_Architect.Interface.Continuity_Architect", + "authority_posture": "BURDEN_BEARER_ARCHITECTURAL", + "rank": "1.5", + "function": "Strategy, route intelligence, horizon pressure, and architectural continuity.", + "boundary": "May advise route and architecture, but integration still requires Steward decision.", + "filename": "VIZIER.md", + }, + { + "id": "MASON", + "display_name": "Mason", + "logical_name": "Software Architect", + "true_name": "Operative.Source.Software_Architect", + "authority_posture": "UNSETTLED_CURRENT_PHASE__SUPPORT_ROLE", + "rank": "5", + "function": "Build coordination, implementation, and technical patch proposal.", + "boundary": "May propose/build bounded changes, but does not hold release or acceptance authority.", + "filename": "MASON.md", + }, + { + "id": "NEMESIS", + "display_name": "Nemesis", + "logical_name": "Inspector General", + "true_name": "Inspector_General.Governance.Inspector_General", + "authority_posture": "INDEPENDENT_AUDIT_GATE", + "rank": "2", + "function": "Adversarial audit, failure-mode attack, and confidence-drift review.", + "boundary": "May block or escalate by evidence, but does not replace Steward settlement.", + "filename": "NEMESIS.md", + }, + { + "id": "VESTIGE", + "display_name": "Vestige", + "logical_name": "Systems Archaeologist", + "true_name": "Supervisor.Intelligence.Systems_Archaeologist", + "authority_posture": "STANDING_ARCHAEOLOGY_DAEMON", + "rank": "4", + "function": "Memory, archaeology, residue interpretation, and drift watch.", + "boundary": "May recover historical context, but historical evidence is not current authority by default.", + "filename": "VESTIGE.md", + }, + { + "id": "SCRIBE", + "display_name": "Scribe", + "logical_name": "Archivist / Utility", + "true_name": "Operative.System.Archivist", + "authority_posture": "UNSETTLED_CURRENT_PHASE__SUPPORT_ROLE", + "rank": "5", + "function": "Structured capture, documentation, ledgers, and summarization.", + "boundary": "May document and organize, but cannot turn unaccepted output into state.", + "filename": "SCRIBE.md", + }, + { + "id": "VICE", + "display_name": "Vice", + "logical_name": "Contradiction Pressure", + "true_name": "Conjugate.Interface.Conjugate_Daimon", + "authority_posture": "INTERNAL_CONTRADICTION_PRESSURE", + "rank": "1.5", + "function": "Discipline, critique, hardening pressure, and overclaim resistance.", + "boundary": "May pressure assumptions and claims, but does not become general negativity or veto without proof.", + "filename": "VICE.md", + }, + { + "id": "IONOLOGIST", + "display_name": "Ionologist", + "logical_name": "ION Self-Understanding Analyst", + "true_name": "Context_Authority.ION.Self_Understanding", + "authority_posture": "SEMANTIC_MAINTENANCE", + "rank": "context_authority", + "function": "Explains what ION is in the current branch and guards against ontology drift.", + "boundary": "May clarify system meaning, but source files, manifests, receipts, and tests remain authority.", + "filename": "IONOLOGIST.md", + }, + { + "id": "CONTEXT_CARTOGRAPHER", + "display_name": "Context Cartographer", + "logical_name": "Context Package Cartographer", + "true_name": "Context_Authority.Graph.Context_Cartographer", + "authority_posture": "CONTEXT_SELECTION_GUARDIAN", + "rank": "context_authority", + "function": "Maps what context a role needs and what proves it received it.", + "boundary": "May select and explain context, but does not accept output as state.", + "filename": "CONTEXT_CARTOGRAPHER.md", + }, + { + "id": "RUNTIME_CARTOGRAPHER", + "display_name": "Runtime Cartographer", + "logical_name": "Runtime Surface Cartographer", + "true_name": "Context_Authority.Runtime.Runtime_Cartographer", + "authority_posture": "RUNTIME_TRUTH_MAPPING", + "rank": "context_authority", + "function": "Maps how ION actually runs on a carrier with current limits.", + "boundary": "May report runtime truth, but cannot grant production or live execution authority.", + "filename": "RUNTIME_CARTOGRAPHER.md", + }, + { + "id": "CANON_LIBRARIAN", + "display_name": "Canon Librarian", + "logical_name": "Canon And Source Custodian", + "true_name": "Context_Authority.Canon.Canon_Librarian", + "authority_posture": "SOURCE_STATUS_CUSTODY", + "rank": "context_authority", + "function": "Classifies live authority, donor evidence, stale sources, and reference material.", + "boundary": "May classify source posture, but cannot silently discard state-bearing artifacts.", + "filename": "CANON_LIBRARIAN.md", + }, + { + "id": "TEMPLATE_CURATOR", + "display_name": "Template Curator", + "logical_name": "Template Law Curator", + "true_name": "Context_Authority.Template.Template_Curator", + "authority_posture": "TEMPLATE_LAW_MAINTENANCE", + "rank": "context_authority", + "function": "Maintains the template set and identifies template gaps.", + "boundary": "May propose template evolution, but new template types require governed receipt.", + "filename": "TEMPLATE_CURATOR.md", + }, +] +TEMPLATE_DOCS = [ + { + "id": "PROJECT_INGESTION", + "title": "Project Ingestion", + "purpose": "Convert an external file pile into ION-manageable context graph state.", + "requires": ["external project package", "quarantine posture", "root integrity evidence"], + "proof": ["manifest", "cartography", "domain partition", "risk classification", "ingestion receipt"], + "filename": "PROJECT_INGESTION.md", + }, + { + "id": "FIRST_RUN_INTENT_CAPTURE", + "title": "First-Run Intent Capture", + "purpose": "Start naturally with the user while seeding project memory behind the scenes.", + "requires": ["persona state", "seeded domains", "user-provided initial intent"], + "proof": ["captured objective", "open loops", "first receipt or explicit unsaved-state warning"], + "filename": "FIRST_RUN_INTENT_CAPTURE.md", + }, + { + "id": "CONTEXT_PACKAGE", + "title": "Context Package", + "purpose": "Build the bounded working world for one lawful act.", + "requires": ["domain", "role", "template", "source graph nodes"], + "proof": ["included nodes", "excluded nodes", "authority scope", "receipt path"], + "filename": "CONTEXT_PACKAGE.md", + }, + { + "id": "AUDIT", + "title": "Audit", + "purpose": "Inspect claims, state, or proposed changes for defects and missing proof.", + "requires": ["audit target", "expected invariant", "evidence surface"], + "proof": ["findings", "severity", "file/object references", "pass/block recommendation"], + "filename": "AUDIT.md", + }, + { + "id": "BUILD", + "title": "Build", + "purpose": "Create or modify bounded implementation artifacts.", + "requires": ["bounded objective", "allowed paths", "forbidden paths", "validation plan"], + "proof": ["changed files", "tests run", "diff summary", "receipt or return packet"], + "filename": "BUILD.md", + }, + { + "id": "HANDOFF", + "title": "Handoff", + "purpose": "Make continuation reproducible for the next worker or carrier.", + "requires": ["current state", "open questions", "required reads", "next objective"], + "proof": ["handoff packet", "manifest", "checksums where applicable", "continuation receipt"], + "filename": "HANDOFF.md", + }, + { + "id": "RATIFICATION", + "title": "Ratification", + "purpose": "Convert a candidate state transition into accepted state under Steward authority.", + "requires": ["proposal", "proof", "authority path", "integration decision"], + "proof": ["accepted delta", "rejected alternatives", "receipt", "next-context effect"], + "filename": "RATIFICATION.md", + }, + { + "id": "RECEIPT_APPEND", + "title": "Receipt Append", + "purpose": "Record an accepted or explicitly rejected movement in inheritable form.", + "requires": ["event", "authority", "context used", "decision"], + "proof": ["receipt id", "created_at", "accepted_as_state", "next_context_delta"], + "filename": "RECEIPT_APPEND.md", + }, + { + "id": "CONTINUITY_EXPORT", + "title": "Continuity Export", + "purpose": "Package current accepted data state for future continuation.", + "requires": ["valid data package", "receipt ledger", "manifest", "artifact custody"], + "proof": ["zip manifest", "sha256", "export receipt", "root-shape validation"], + "filename": "CONTINUITY_EXPORT.md", + }, + { + "id": "PARALLEL_SETTLEMENT", + "title": "Parallel Settlement", + "purpose": "Decide how branch returns rejoin a parent scope.", + "requires": ["parent scope", "branch returns", "conflict map", "proof from each branch"], + "proof": ["accepted/rejected/deferred branches", "merge proposal if needed", "settlement receipt"], + "filename": "PARALLEL_SETTLEMENT.md", + }, + { + "id": "DOMAIN_FISSION", + "title": "Domain Fission", + "purpose": "Split a graph region when relationship complexity exceeds context manageability.", + "requires": ["complexity pressure evidence", "node clusters", "authority impact"], + "proof": ["new child domains", "routing edges", "lineage preservation", "domain_fission_receipt"], + "filename": "DOMAIN_FISSION.md", + }, + { + "id": "STATE_UPDATE_PROPOSAL", + "title": "State Update Proposal", + "purpose": "Draft a change to portable data state without silently accepting it.", + "requires": ["prior state", "proposed delta", "reason", "authority boundary"], + "proof": ["diff-like description", "decision requirement", "receipt requirement", "export path"], + "filename": "STATE_UPDATE_PROPOSAL.md", + }, +] +RUNTIME_MODES = [ + { + "id": "CUSTOM_GPT_SANDBOX", + "title": "Custom GPT Sandbox", + "purpose": "Browser-sandbox operation over a mounted product package and continuity data zip.", + "allowed": ["inspect mounted files", "draft state updates", "append receipts inside exported data package"], + "forbidden": ["claim persistent platform memory as state", "mutate live ION repo", "execute local daemon actions"], + "filename": "CUSTOM_GPT_SANDBOX.md", + }, + { + "id": "LOCAL_DAEMON", + "title": "Local Daemon", + "purpose": "Local bridge for approved package, artifact, queue, and receipt operations.", + "allowed": ["serve bounded endpoints", "write approved inbox/receipt artifacts", "expose status"], + "forbidden": ["unapproved source patching", "secret exposure", "silent live execution"], + "filename": "LOCAL_DAEMON.md", + }, + { + "id": "BROWSER_EXTENSION", + "title": "Browser Extension", + "purpose": "ChatGPT page perception, approval UI, artifact bridge, and operator cockpit surface.", + "allowed": ["detect page elements", "show status", "request approved daemon actions", "assist visible workflows"], + "forbidden": ["silent send", "hidden file upload", "unbounded DOM automation", "state acceptance"], + "filename": "BROWSER_EXTENSION.md", + }, + { + "id": "CODEX_CLI_WORKER", + "title": "Codex CLI Worker", + "purpose": "Bounded local filesystem implementation and validation worker.", + "allowed": ["read/edit scoped files", "run tests", "return proof-bearing diff"], + "forbidden": ["treat raw output as state", "push/deploy without authority", "widen scope silently"], + "filename": "CODEX_CLI_WORKER.md", + }, + { + "id": "GITHUB_DATA_PLANE", + "title": "GitHub Data Plane", + "purpose": "Durable public collaboration, branch, PR, issue, and review surface.", + "allowed": ["mirror branch state", "carry review history", "publish docs/artifacts intentionally"], + "forbidden": ["become runtime authority", "represent unpushed local truth", "expose secrets/runtime credentials"], + "filename": "GITHUB_DATA_PLANE.md", + }, + { + "id": "FULL_LOCAL_ION", + "title": "Full Local ION", + "purpose": "The live local repo and runtime organism with kernel, context, daemon, UI, and receipts.", + "allowed": ["run kernel validations", "operate local queues under policy", "generate product projections"], + "forbidden": ["claim product package is source truth", "bypass active gates", "erase state without custody"], + "filename": "FULL_LOCAL_ION.md", + }, +] def repo_root_from_script() -> Path: @@ -105,6 +398,89 @@ def schema(schema_id: str, title: str, properties: dict[str, Any], required: lis } +def bullet_lines(items: list[str]) -> str: + return "\n".join(f"- {item}" for item in items) + + +def role_markdown(role: dict[str, str]) -> str: + return f""" + # {role["id"]} Role Dossier + + ## Identity + + - Display name: {role["display_name"]} + - Logical name: {role["logical_name"]} + - True name: `{role["true_name"]}` + - Authority posture: `{role["authority_posture"]}` + - Rank: `{role["rank"]}` + + ## Function + + {role["function"]} + + ## Boundary + + {role["boundary"]} + + ## Product-Package Note + + This dossier is a productized projection. Active role authority still comes + from live ION source truth, carrier profiles, mount contracts, packets, + gates, and receipts. + """ + + +def template_markdown(template: dict[str, Any]) -> str: + return f""" + # {template["title"]} Template + + Template id: `{template["id"]}` + + ## Purpose + + {template["purpose"]} + + ## Required Inputs + + {bullet_lines(template["requires"])} + + ## Proof Owed + + {bullet_lines(template["proof"])} + + ## Boundary + + This template describes action shape. It does not accept state by itself. + Acceptance still requires proof, decision, receipt, and the relevant + product/runtime authority boundary. + """ + + +def runtime_mode_markdown(mode: dict[str, Any]) -> str: + return f""" + # {mode["title"]} Runtime Mode + + Runtime mode id: `{mode["id"]}` + + ## Purpose + + {mode["purpose"]} + + ## Allowed In This Mode + + {bullet_lines(mode["allowed"])} + + ## Forbidden In This Mode + + {bullet_lines(mode["forbidden"])} + + ## Boundary + + Runtime modes are capability boundaries. They do not override ION law, + receipts, or human/Steward gates. + """ + + def build_starter_zip(output_root: Path) -> dict[str, Any]: starter_root = output_root / "ION_STARTER_DATA" dist_root = output_root / "dist" @@ -142,6 +518,24 @@ def product_source_map() -> dict[str, Any]: ], "curation_status": "first_scaffold_spec", }, + "ION_ENGINE_COVERAGE_MANIFEST.json": { + "source": "generated_engine_coverage_projection", + "source_paths": [ + "README.md", + "ION/docs/AGENTS_ROLES_CARRIERS.md", + "ION/docs/TEMPLATE_LAW.md", + "ION/docs/ION_FUNDAMENTALS.md", + ], + "curation_status": "coverage_manifest_first_slice", + }, + "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md": { + "source": "generated_runtime_boundary_projection", + "source_paths": [ + "ION/docs/AGENTS_ROLES_CARRIERS.md", + "ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md", + ], + "curation_status": "runtime_boundary_first_slice", + }, "ION_ENGINE/doctrine/ION_CORE.md": { "source": "curated_product_projection", "source_paths": ["README.md", "ION/docs/ION_FUNDAMENTALS.md"], @@ -227,6 +621,21 @@ def product_source_map() -> dict[str, Any]: "source_paths": ["ION/docs/AGENTS_ROLES_CARRIERS.md"], "curation_status": "full_reference_projection", }, + "ION_ENGINE/roles/*.md": { + "source": "generated_role_dossiers", + "source_paths": ["README.md", "ION/docs/AGENTS_ROLES_CARRIERS.md"], + "curation_status": "role_projection_first_slice", + }, + "ION_ENGINE/templates/*.md": { + "source": "generated_template_dossiers", + "source_paths": ["ION/docs/TEMPLATE_LAW.md", "ION/docs/ION_FUNDAMENTALS.md"], + "curation_status": "template_projection_first_slice", + }, + "ION_ENGINE/runtime_modes/*.md": { + "source": "generated_runtime_mode_dossiers", + "source_paths": ["ION/docs/AGENTS_ROLES_CARRIERS.md", "ION/docs/GITHUB_BRANCHING_AND_LIVE_STATE_POLICY.md"], + "curation_status": "runtime_mode_projection_first_slice", + }, } @@ -241,11 +650,13 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N for directory in [ "ION_ENGINE/doctrine", "ION_ENGINE/laws", + "ION_ENGINE/roles", "ION_ENGINE/templates", "ION_ENGINE/context_graph", "ION_ENGINE/receipts", "ION_ENGINE/ingestion", "ION_ENGINE/settlement", + "ION_ENGINE/runtime_modes", "ION_ENGINE/projections", "ION_ENGINE/reference", "ION_DATA_SCHEMA/schemas", @@ -411,6 +822,44 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N } write_json(output_root / "SOURCE_PROVENANCE.json", provenance) write_json(output_root / "PRODUCT_SOURCE_MAP.json", product_source_map()) + role_paths = [f"ION_ENGINE/roles/{role['filename']}" for role in ROLE_DOSSIERS] + template_paths = [f"ION_ENGINE/templates/{template['filename']}" for template in TEMPLATE_DOCS] + runtime_mode_paths = [f"ION_ENGINE/runtime_modes/{mode['filename']}" for mode in RUNTIME_MODES] + coverage_manifest = { + "schema_id": "ion.product_engine_coverage_manifest.v1", + "coverage_status": "first_product_projection_not_runtime_complete", + "generated_at": generated_at, + "source_commit": source_commit, + "counts": { + "role_dossiers": len(role_paths), + "template_dossiers": len(template_paths), + "runtime_modes": len(runtime_mode_paths), + }, + "required_groups": { + "engine_law": [ + "ION_ENGINE/doctrine/ION_CORE.md", + "ION_ENGINE/laws/SIX_LAWS.md", + "ION_ENGINE/receipts/RECEIPT_LAW.md", + "ION_ENGINE/projections/PROJECTION_LADDER.md", + ], + "roles": role_paths, + "templates": template_paths, + "runtime_modes": runtime_mode_paths, + "product_boundaries": [ + "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md", + "ION_CUSTOM_GPT_ADAPTER/refusal_and_boundary_rules.md", + ], + }, + "known_not_included": [ + "full executable local daemon", + "Codex CLI broker implementation", + "browser extension runtime", + "all live kernel Python tools", + "schema migrations beyond v1", + ], + "authority": "coverage_manifest_for_generated_projection_not_source_truth", + } + write_json(output_root / "ION_ENGINE_COVERAGE_MANIFEST.json", coverage_manifest) write_text( output_root / "ION_ENGINE/README.md", @@ -467,6 +916,33 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N A template is not a form. It is the action type of the work. """, ) + write_text( + output_root / "ION_ENGINE/roles/README.md", + """ + # Role Dossiers + + These dossiers explain the public/product projection of ION roles. They + include true names and logical names so users do not experience the + role language as unexplained mysticism. + + A role is not a model identity. It is a bounded function mounted inside + a governed domain and carrier. + """, + ) + for role in ROLE_DOSSIERS: + write_text(output_root / "ION_ENGINE/roles" / role["filename"], role_markdown(role)) + write_text( + output_root / "ION_ENGINE/templates/README.md", + """ + # Template Dossiers + + Templates are ION's action types. They define what kind of act is + happening, what context is required, what proof is owed, and what + receipt makes the result inheritable. + """, + ) + for template in TEMPLATE_DOCS: + write_text(output_root / "ION_ENGINE/templates" / template["filename"], template_markdown(template)) write_text( output_root / "ION_ENGINE/context_graph/DOMAIN_GRAPH_AND_FISSION.md", """ @@ -517,6 +993,18 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N that decides how branch returns rejoin the canonical workflow. """, ) + write_text( + output_root / "ION_ENGINE/runtime_modes/README.md", + """ + # Runtime Modes + + Runtime modes explain what each carrier or execution surface may do in + the product projection. They are capability boundaries, not identities + and not acceptance authority. + """, + ) + for mode in RUNTIME_MODES: + write_text(output_root / "ION_ENGINE/runtime_modes" / mode["filename"], runtime_mode_markdown(mode)) write_text( output_root / "ION_ENGINE/projections/PROJECTION_LADDER.md", """ @@ -1193,12 +1681,16 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N { "schema_id": "ion.custom_gpt_knowledge_manifest.v1", "engine_docs": [ + "ION_ENGINE_COVERAGE_MANIFEST.json", "ION_ENGINE/doctrine/ION_CORE.md", "ION_ENGINE/laws/SIX_LAWS.md", "ION_ENGINE/templates/TEMPLATE_LAW.md", + *role_paths, + *template_paths, "ION_ENGINE/context_graph/DOMAIN_GRAPH_AND_FISSION.md", "ION_ENGINE/ingestion/PROJECT_INGESTION.md", "ION_ENGINE/settlement/PARALLEL_SETTLEMENT.md", + *runtime_mode_paths, "ION_ENGINE/projections/PROJECTION_LADDER.md", "ION_ENGINE/reference/README.md", "ION_ENGINE/reference/ION_FUNDAMENTALS.md", @@ -1220,6 +1712,9 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N "ION_CUSTOM_GPT_ADAPTER/EXPORT_PROTOCOL.md", "ION_CUSTOM_GPT_ADAPTER/refusal_and_boundary_rules.md", ], + "product_docs": [ + "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md", + ], }, ) @@ -1263,6 +1758,40 @@ def build_package(output_root: Path = DEFAULT_OUTPUT, repo_root: Path | None = N GPT does not expose protocol machinery as its default user experience. """, ) + runtime_boundary_rows = "\n".join( + f"| `{mode['id']}` | {mode['purpose']} | {', '.join(mode['allowed'])} | {', '.join(mode['forbidden'])} |" + for mode in RUNTIME_MODES + ) + write_text( + output_root / "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md", + f""" + # Runtime Boundary Matrix + + This matrix keeps the product package honest about what each runtime + mode can and cannot do. + + | Runtime mode | Purpose | Allowed | Forbidden | + | --- | --- | --- | --- | + {runtime_boundary_rows} + + ## Product Boundary + + The product package can teach a Custom GPT how to operate portable ION + continuity data. It is not the full local ION runtime, does not include + the browser extension implementation, and does not grant Codex, daemon, + GitHub, local filesystem, or production authority by itself. + + ## User-Facing Compression + + In ordinary use, describe these boundaries as: + + ```text + I can keep project memory organized here, and I can export a project + memory pack for continuation. Local execution, browser automation, and + GitHub actions require their own connected tools and approvals. + ``` + """, + ) write_text( output_root / "ION_PRODUCT_DOCS/CONTINUING_FROM_A_DATA_ZIP.md", """ @@ -1556,6 +2085,38 @@ def test_starter_zip_manifest_is_at_root(): assert "ION_STARTER_DATA/ION_DATA_MANIFEST.json" not in names ''', ) + write_text( + output_root / "tests/test_engine_coverage_manifest.py", + r''' + import json + from pathlib import Path + + + ROOT = Path(__file__).resolve().parents[1] + + + def test_engine_coverage_manifest_paths_exist(): + manifest = json.loads((ROOT / "ION_ENGINE_COVERAGE_MANIFEST.json").read_text(encoding="utf-8")) + assert manifest["schema_id"] == "ion.product_engine_coverage_manifest.v1" + for paths in manifest["required_groups"].values(): + for rel in paths: + assert (ROOT / rel).exists(), rel + + + def test_role_template_and_runtime_coverage_counts(): + manifest = json.loads((ROOT / "ION_ENGINE_COVERAGE_MANIFEST.json").read_text(encoding="utf-8")) + assert manifest["counts"]["role_dossiers"] >= 8 + assert manifest["counts"]["template_dossiers"] >= 8 + assert manifest["counts"]["runtime_modes"] >= 5 + + + def test_runtime_boundary_matrix_exists(): + text = (ROOT / "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md").read_text(encoding="utf-8") + assert "CUSTOM_GPT_SANDBOX" in text + assert "GITHUB_DATA_PLANE" in text + assert "not the full local ION runtime" in text + ''', + ) zip_manifest = build_starter_zip(output_root) build_receipt = { @@ -1571,6 +2132,7 @@ def test_starter_zip_manifest_is_at_root(): "source_commit": source_commit, "validation": { "starter_data_shape": "prepared", + "engine_coverage_manifest": "prepared", "schema_examples": "draft", "zip_roundtrip": "prepared", }, diff --git a/ION/tests/test_product_package_builder.py b/ION/tests/test_product_package_builder.py index 343cb9c9..9bbfcb97 100644 --- a/ION/tests/test_product_package_builder.py +++ b/ION/tests/test_product_package_builder.py @@ -29,8 +29,15 @@ def test_product_package_builder_creates_required_shape(tmp_path: Path): assert (out / "SOURCE_PROVENANCE.json").exists() assert (out / "PRODUCT_SOURCE_MAP.json").exists() assert (out / "BUILD_RECEIPT.json").exists() + assert (out / "ION_ENGINE_COVERAGE_MANIFEST.json").exists() assert (out / "ION_ENGINE/doctrine/ION_CORE.md").exists() assert (out / "ION_ENGINE/reference/ION_FUNDAMENTALS.md").exists() + assert (out / "ION_ENGINE/roles/STEWARD.md").exists() + assert (out / "ION_ENGINE/roles/VIZIER.md").exists() + assert (out / "ION_ENGINE/templates/PROJECT_INGESTION.md").exists() + assert (out / "ION_ENGINE/templates/BUILD.md").exists() + assert (out / "ION_ENGINE/runtime_modes/CUSTOM_GPT_SANDBOX.md").exists() + assert (out / "ION_ENGINE/runtime_modes/GITHUB_DATA_PLANE.md").exists() assert (out / "ION_DATA_SCHEMA/schemas/ion_data_manifest.schema.json").exists() assert (out / "ION_CUSTOM_GPT_ADAPTER/GPT_INSTRUCTIONS.md").exists() assert (out / "ION_CUSTOM_GPT_ADAPTER/STARTUP_BEHAVIOR.md").exists() @@ -46,6 +53,8 @@ def test_product_package_builder_creates_required_shape(tmp_path: Path): assert (out / "ION_DATA_SCHEMA/schemas/persona_interface.schema.json").exists() assert (out / "tools/validate_data_package.py").exists() assert (out / "tools/build_starter_zip.py").exists() + assert (out / "tests/test_engine_coverage_manifest.py").exists() + assert (out / "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md").exists() assert (out / "dist/ION_CONTINUITY_DATA_BLANK_v1.zip").exists() provenance = json.loads((out / "SOURCE_PROVENANCE.json").read_text(encoding="utf-8")) @@ -105,3 +114,26 @@ def test_product_package_starter_zip_uses_data_package_root(tmp_path: Path): assert "ION_DATA_MANIFEST.json" in names assert "PERSONA/persona_state.json" in names assert "ION_STARTER_DATA/ION_DATA_MANIFEST.json" not in names + + +def test_product_package_engine_coverage_manifest_paths_exist(tmp_path: Path): + builder = load_builder() + out = tmp_path / "ION_PRODUCT_PACKAGE" + builder.build_package(out, REPO_ROOT) + + manifest = json.loads((out / "ION_ENGINE_COVERAGE_MANIFEST.json").read_text(encoding="utf-8")) + assert manifest["schema_id"] == "ion.product_engine_coverage_manifest.v1" + assert manifest["counts"]["role_dossiers"] == len(builder.ROLE_DOSSIERS) + assert manifest["counts"]["template_dossiers"] == len(builder.TEMPLATE_DOCS) + assert manifest["counts"]["runtime_modes"] == len(builder.RUNTIME_MODES) + for paths in manifest["required_groups"].values(): + for rel in paths: + assert (out / rel).exists(), rel + + role_text = (out / "ION_ENGINE/roles/VIZIER.md").read_text(encoding="utf-8") + assert "Chief Architect" in role_text + assert "Chief_Architect.Interface.Continuity_Architect" in role_text + + boundary = (out / "ION_PRODUCT_DOCS/RUNTIME_BOUNDARY_MATRIX.md").read_text(encoding="utf-8") + assert "CUSTOM_GPT_SANDBOX" in boundary + assert "not the full local ION runtime" in boundary