2026-03-21 11:10:31 +00:00
|
|
|
module dappco.re/go/agent
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
|
|
|
|
|
go 1.26.0
|
|
|
|
|
|
|
|
|
|
require (
|
2026-03-26 09:37:01 +00:00
|
|
|
dappco.re/go/core v0.8.0-alpha.1
|
refactor: migrate core/agent to Core primitives — reference implementation
Phase 1: go-io/go-log → core.Fs{}, core.E(), core.Error/Info/Warn
Phase 2: strings/fmt → core.Contains, core.Sprintf, core.Split etc
Phase 3: embed.FS → core.Mount/core.Embed, core.Extract
Phase 4: cmd/main.go → core.Command(), c.Cli().Run(), no cli package
All packages migrated:
- pkg/lib (Codex): core.Mount, core.Extract, Result returns, AX comments
- pkg/setup (Codex): core.Fs, core.E, fixed missing lib helpers
- pkg/brain (Codex): Core primitives, AX comments
- pkg/monitor (Codex): Core string/logging primitives
- pkg/agentic (Codex): 20 files, Core primitives throughout
- cmd/main.go: pure Core CLI, no fmt/log/filepath/strings/cli
Remaining stdlib: path/filepath (Core doesn't wrap OS paths),
fmt.Sscanf/strings.Map (no Core equivalent).
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-22 06:13:41 +00:00
|
|
|
dappco.re/go/core/api v0.2.0
|
2026-03-22 01:27:48 +00:00
|
|
|
dappco.re/go/core/process v0.3.0
|
2026-03-29 20:15:58 +00:00
|
|
|
forge.lthn.ai/core/mcp v0.4.8
|
2026-03-16 11:10:33 +00:00
|
|
|
github.com/gin-gonic/gin v1.12.0
|
2026-03-22 01:27:48 +00:00
|
|
|
github.com/gorilla/websocket v1.5.3
|
2026-03-16 11:10:33 +00:00
|
|
|
github.com/modelcontextprotocol/go-sdk v1.4.1
|
2026-03-21 11:10:31 +00:00
|
|
|
github.com/stretchr/testify v1.11.1
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
|
|
|
)
|
|
|
|
|
|
2026-03-29 20:15:58 +00:00
|
|
|
require (
|
|
|
|
|
dappco.re/go/core/forge v0.2.0
|
|
|
|
|
forge.lthn.ai/core/go-ws v0.2.5
|
|
|
|
|
)
|
feat: Forge CLI commands — issue, PR, and repo operations
New commands via go-forge library:
issue/get, issue/list, issue/comment
pr/get, pr/list, pr/merge
repo/get, repo/list
Enables CLI-driven Forge interaction for dispatch automation.
Agent can now read issues, create PRs, merge, and list repos
without MCP.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-22 14:07:25 +00:00
|
|
|
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
require (
|
2026-03-22 03:41:07 +00:00
|
|
|
dappco.re/go/core/io v0.2.0 // indirect
|
|
|
|
|
dappco.re/go/core/log v0.1.0 // indirect
|
2026-03-29 20:15:58 +00:00
|
|
|
forge.lthn.ai/core/api v0.1.5 // indirect
|
|
|
|
|
forge.lthn.ai/core/go v0.3.3 // indirect
|
|
|
|
|
forge.lthn.ai/core/go-ai v0.1.12 // indirect
|
|
|
|
|
forge.lthn.ai/core/go-io v0.1.7 // indirect
|
|
|
|
|
forge.lthn.ai/core/go-log v0.0.4 // indirect
|
|
|
|
|
forge.lthn.ai/core/go-process v0.2.9 // indirect
|
|
|
|
|
forge.lthn.ai/core/go-rag v0.1.11 // indirect
|
|
|
|
|
forge.lthn.ai/core/go-webview v0.1.6 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
github.com/99designs/gqlgen v0.17.88 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
|
|
|
github.com/agnivade/levenshtein v1.2.1 // indirect
|
|
|
|
|
github.com/andybalholm/brotli v1.2.0 // indirect
|
|
|
|
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
github.com/bmatcuk/doublestar/v4 v4.10.0 // indirect
|
refactor: migrate core/agent to Core primitives — reference implementation
Phase 1: go-io/go-log → core.Fs{}, core.E(), core.Error/Info/Warn
Phase 2: strings/fmt → core.Contains, core.Sprintf, core.Split etc
Phase 3: embed.FS → core.Mount/core.Embed, core.Extract
Phase 4: cmd/main.go → core.Command(), c.Cli().Run(), no cli package
All packages migrated:
- pkg/lib (Codex): core.Mount, core.Extract, Result returns, AX comments
- pkg/setup (Codex): core.Fs, core.E, fixed missing lib helpers
- pkg/brain (Codex): Core primitives, AX comments
- pkg/monitor (Codex): Core string/logging primitives
- pkg/agentic (Codex): 20 files, Core primitives throughout
- cmd/main.go: pure Core CLI, no fmt/log/filepath/strings/cli
Remaining stdlib: path/filepath (Core doesn't wrap OS paths),
fmt.Sscanf/strings.Map (no Core equivalent).
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-22 06:13:41 +00:00
|
|
|
github.com/buger/jsonparser v1.1.2 // indirect
|
2026-03-22 01:27:48 +00:00
|
|
|
github.com/bytedance/gopkg v0.1.4 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/bytedance/sonic v1.15.0 // indirect
|
|
|
|
|
github.com/bytedance/sonic/loader v0.5.0 // indirect
|
|
|
|
|
github.com/casbin/casbin/v2 v2.135.0 // indirect
|
|
|
|
|
github.com/casbin/govaluate v1.10.0 // indirect
|
|
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
|
|
|
github.com/cloudwego/base64x v0.1.6 // indirect
|
|
|
|
|
github.com/coreos/go-oidc/v3 v3.17.0 // indirect
|
2026-03-21 11:10:31 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
|
|
|
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
|
|
|
|
|
github.com/gin-contrib/authz v1.0.6 // indirect
|
|
|
|
|
github.com/gin-contrib/cors v1.7.6 // indirect
|
|
|
|
|
github.com/gin-contrib/expvar v1.0.3 // indirect
|
|
|
|
|
github.com/gin-contrib/gzip v1.2.5 // indirect
|
|
|
|
|
github.com/gin-contrib/httpsign v1.0.3 // indirect
|
|
|
|
|
github.com/gin-contrib/location/v2 v2.0.0 // indirect
|
|
|
|
|
github.com/gin-contrib/pprof v1.5.3 // indirect
|
|
|
|
|
github.com/gin-contrib/secure v1.1.2 // indirect
|
|
|
|
|
github.com/gin-contrib/sessions v1.0.4 // indirect
|
|
|
|
|
github.com/gin-contrib/slog v1.2.0 // indirect
|
|
|
|
|
github.com/gin-contrib/sse v1.1.0 // indirect
|
|
|
|
|
github.com/gin-contrib/static v1.1.5 // indirect
|
|
|
|
|
github.com/gin-contrib/timeout v1.1.0 // indirect
|
|
|
|
|
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
|
|
|
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
github.com/go-openapi/jsonpointer v0.22.5 // indirect
|
|
|
|
|
github.com/go-openapi/jsonreference v0.21.5 // indirect
|
|
|
|
|
github.com/go-openapi/spec v0.22.4 // indirect
|
|
|
|
|
github.com/go-openapi/swag/conv v0.25.5 // indirect
|
|
|
|
|
github.com/go-openapi/swag/jsonname v0.25.5 // indirect
|
|
|
|
|
github.com/go-openapi/swag/jsonutils v0.25.5 // indirect
|
|
|
|
|
github.com/go-openapi/swag/loading v0.25.5 // indirect
|
|
|
|
|
github.com/go-openapi/swag/stringutils v0.25.5 // indirect
|
|
|
|
|
github.com/go-openapi/swag/typeutils v0.25.5 // indirect
|
|
|
|
|
github.com/go-openapi/swag/yamlutils v0.25.5 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
|
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
|
|
|
github.com/go-playground/validator/v10 v10.30.1 // indirect
|
|
|
|
|
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
github.com/goccy/go-json v0.10.6 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/goccy/go-yaml v1.19.2 // indirect
|
|
|
|
|
github.com/google/jsonschema-go v0.4.2 // indirect
|
|
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
|
|
|
github.com/gorilla/context v1.1.2 // indirect
|
|
|
|
|
github.com/gorilla/securecookie v1.1.2 // indirect
|
|
|
|
|
github.com/gorilla/sessions v1.4.0 // indirect
|
|
|
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
|
|
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2026-03-15 15:43:31 +00:00
|
|
|
github.com/mailru/easyjson v0.9.2 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
refactor: migrate core/agent to Core primitives — reference implementation
Phase 1: go-io/go-log → core.Fs{}, core.E(), core.Error/Info/Warn
Phase 2: strings/fmt → core.Contains, core.Sprintf, core.Split etc
Phase 3: embed.FS → core.Mount/core.Embed, core.Extract
Phase 4: cmd/main.go → core.Command(), c.Cli().Run(), no cli package
All packages migrated:
- pkg/lib (Codex): core.Mount, core.Extract, Result returns, AX comments
- pkg/setup (Codex): core.Fs, core.E, fixed missing lib helpers
- pkg/brain (Codex): Core primitives, AX comments
- pkg/monitor (Codex): Core string/logging primitives
- pkg/agentic (Codex): 20 files, Core primitives throughout
- cmd/main.go: pure Core CLI, no fmt/log/filepath/strings/cli
Remaining stdlib: path/filepath (Core doesn't wrap OS paths),
fmt.Sscanf/strings.Map (no Core equivalent).
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-22 06:13:41 +00:00
|
|
|
github.com/ollama/ollama v0.18.2 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
2026-03-21 11:10:31 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2026-03-15 15:43:31 +00:00
|
|
|
github.com/qdrant/go-client v1.17.1 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/quic-go/qpack v0.6.0 // indirect
|
|
|
|
|
github.com/quic-go/quic-go v0.59.0 // indirect
|
2026-03-17 19:12:06 +00:00
|
|
|
github.com/redis/go-redis/v9 v9.18.0 // indirect
|
2026-03-15 15:43:31 +00:00
|
|
|
github.com/segmentio/asm v1.2.1 // indirect
|
2026-03-14 13:42:30 +00:00
|
|
|
github.com/segmentio/encoding v0.5.4 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
github.com/sosodev/duration v1.4.0 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
github.com/swaggo/files v1.0.1 // indirect
|
|
|
|
|
github.com/swaggo/gin-swagger v1.6.1 // indirect
|
|
|
|
|
github.com/swaggo/swag v1.16.6 // indirect
|
|
|
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
|
|
|
github.com/ugorji/go/codec v1.3.1 // indirect
|
|
|
|
|
github.com/vektah/gqlparser/v2 v2.5.32 // indirect
|
|
|
|
|
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
|
|
|
|
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
|
2026-03-14 13:38:58 +00:00
|
|
|
go.mongodb.org/mongo-driver/v2 v2.5.0 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.67.0 // indirect
|
|
|
|
|
go.opentelemetry.io/otel v1.42.0 // indirect
|
|
|
|
|
go.opentelemetry.io/otel/metric v1.42.0 // indirect
|
|
|
|
|
go.opentelemetry.io/otel/sdk v1.42.0 // indirect
|
|
|
|
|
go.opentelemetry.io/otel/trace v1.42.0 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
|
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
2026-03-15 15:28:58 +00:00
|
|
|
golang.org/x/arch v0.25.0 // indirect
|
|
|
|
|
golang.org/x/crypto v0.49.0 // indirect
|
|
|
|
|
golang.org/x/mod v0.34.0 // indirect
|
|
|
|
|
golang.org/x/net v0.52.0 // indirect
|
|
|
|
|
golang.org/x/oauth2 v0.36.0 // indirect
|
|
|
|
|
golang.org/x/sync v0.20.0 // indirect
|
|
|
|
|
golang.org/x/sys v0.42.0 // indirect
|
|
|
|
|
golang.org/x/text v0.35.0 // indirect
|
|
|
|
|
golang.org/x/tools v0.43.0 // indirect
|
refactor: migrate core/agent to Core primitives — reference implementation
Phase 1: go-io/go-log → core.Fs{}, core.E(), core.Error/Info/Warn
Phase 2: strings/fmt → core.Contains, core.Sprintf, core.Split etc
Phase 3: embed.FS → core.Mount/core.Embed, core.Extract
Phase 4: cmd/main.go → core.Command(), c.Cli().Run(), no cli package
All packages migrated:
- pkg/lib (Codex): core.Mount, core.Extract, Result returns, AX comments
- pkg/setup (Codex): core.Fs, core.E, fixed missing lib helpers
- pkg/brain (Codex): Core primitives, AX comments
- pkg/monitor (Codex): Core string/logging primitives
- pkg/agentic (Codex): 20 files, Core primitives throughout
- cmd/main.go: pure Core CLI, no fmt/log/filepath/strings/cli
Remaining stdlib: path/filepath (Core doesn't wrap OS paths),
fmt.Sscanf/strings.Map (no Core equivalent).
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-22 06:13:41 +00:00
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260319201613-d00831a3d3e7 // indirect
|
|
|
|
|
google.golang.org/grpc v1.79.3 // indirect
|
feat: merge go-agent + go-agentic + php-devops into unified agent repo
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00
|
|
|
google.golang.org/protobuf v1.36.11 // indirect
|
|
|
|
|
)
|